@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&display=swap");
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";

@font-face {
    font-family: "MotleyForces";
    src: url("../fonts/MotleyForcesRegular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

:root {
    --white: #fff;
    --black: #141720;
    --bgLight: #f4f9fc;
    --bgDark: #ff00f8;
    --bgDark2: #4b4b4b;
    --borderColor: #e4e6eb;
    --gray: #5e627f;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    --gameButton: -149.5%;
    --background-category: #fff;
    --background-dark-category: #fff;
    --font-category: #000;
    --bgMain: #46a3ff;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scrollbar-width: thin;
}

body {
    color: var(--black);
    background: var(--bgMain);
    font-weight: 500;
    font-size: 15px;
}

.rtl {
    direction: rtl;
    overflow-x: hidden !important;
}

.dark-mode {
    color: var(--white);
    background: var(--bgDark);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--gray);
    -webkit-box-shadow: 0 0 0px 1000px var(--black) inset;
    box-shadow: 0 0 0px 1000px var(--black) inset;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
}

h1 {
    font-size: 64px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

a {
    text-decoration: none;
}

.justify-center {
    justify-content: center;
    max-width: 100%;
}

p {
    margin-bottom: 15px;
    color: #fff;
}

p1{
    margin: 0 auto;
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: justify;
    max-width: 97%;
    display: flex;
    justify-content: center;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    margin-bottom: 2.3em;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.footer-box .img-fluid{
    max-width: 20%;
}

.social-links {
    justify-content: center;
    display: flex;
    gap: 10px;
}


.text-white {
    --tw-text-opacity: 1;
    max-width: 30%;
    text-align: justify;
    background-color: #000000ab;
    margin-top: 1em;
}

@media (min-width: 992px){
.ps-lg-5 {
    padding-left: 3rem !important;
    display: table-cell;
}}
.btn:focus {
    -webkit-box-shadow: 0 0 0 0rem black;
    box-shadow: 0 0 0 0rem black;
}

button {
    background: none;
    border: none;
    padding: 0;
}

i {
    font-size: 16px;
}

.rtl .form-select {
    background-position-x: 10px !important;
}

a.btn-custom2 {
    width: 100%;
    line-height: 2.4;
    height: 35px;
    display: inline-block;
    text-align: center;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 600;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.dark-mode a.btn-custom2 {
    background: var(--bgDark2);
}

.btn-custom2.btnMyBets {
    font-size: 12px;
    align-items: center;
    display: flex;
    justify-content: center;
}

a.btn-custom {
    line-height: 2.4;
    height: 35px;
    display: inline-block;
    text-align: center;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 600;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.btn-custom {
    width: 120px;
    height: 35px;
    display: inline-block;
    text-align: center;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 600;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

#disqus_thread {
    margin: 45px 0px;
}

.btn-custom i {
    margin-right: 5px;
}

.btn-custom.light {
    background: var(--primary);
    color: var(--black);
}

.btn-custom.light:hover {
    background: var(--bgDark2);
    color: var(--white);
}

.dark-mode .btn-custom.light {
    background: var(--bgDark2);
    color: var(--white);
}

.dark-mode .btn-custom.light:hover {
    background: var(--primary);
    color: var(--white);
}

.form-check label {
    cursor: pointer;
    color: var(--gray);
}

.form-check .form-check-input {
    border-radius: 3px;
    border: 1px solid var(--borderColor);
    cursor: pointer;
    background-color: transparent;
    margin-top: 2px;
}

.form-check .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check .form-check-input:focus {
    -webkit-box-shadow: 0 0 0 0rem var(--black);
    box-shadow: 0 0 0 0rem var(--black);
}

.header-text h5 {
    text-transform: capitalize;
    color: var(--primary);
}

.header-text h3,
.header-text h2 {
    text-transform: capitalize;
}

.header-text p {
    max-width: 500px;
}

.dark-mode .header-text p {
    color: var(--white);
}

.bottom-bar {
    padding: 10px 15px;
    background: var(--white);
    -webkit-box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    color: var(--bgDark);
    visibility: hidden;
    opacity: 0;
}

.bottom-bar button {
    width: 100%;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    font-size: 14px;
    font-weight: 500;
}
.bottom-bar a {
    width: 100%;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    font-size: 14px;
    font-weight: 500;
    display: grid;
}

.dark-mode .bottom-bar a {
    color: #fff;
}

.logo-dark {
    display: none;
}

.dark-mode .logo-dark {
    display: block;
}

.logo-light {
    display: block;
}

.dark-mode .logo-light {
    display: none;
}

.owl-prev {
    position: absolute;
    top: 77px;
    width: 15px;
    height: 50px;
    align-items: center;
    display: flex;
    font-size: 50px !important;
    left: 0px;
}

.owl-next {
    position: absolute;
    top: 77px;
    width: 15px;
    height: 50px;
    align-items: center;
    display: flex;
    font-size: 50px !important;
    right: 0px;
}

.bottom-bar button i,
.bottom-bar a i {
    display: block;
}

.bottom-bar button:hover {
    color: var(--primary);
}

.dark-mode .bottom-bar {
    background: var(--bgDark2);
    color: var(--white);
}

.dark-mode .bottom-bar button,
.dark-mode .bottom-bar a {
    color: var(--white) !important;
}

.dark-mode .bottom-bar a:hover,
.dark-mode .bottom-bar button:hover {
    color: var(--primary) !important;
}

.notify-popup {
    display: flex;
    position: relative;
    width: 100%;
    height: 37px;
    background-color: var(--primary);
    text-align: center;
    justify-content: space-between;
    align-items: center;
    transition: height 0.5s ease; /* Adiciona uma transio suave para a altura */
    overflow: hidden; /* Impede que o conteúdo transborde durante a animação */
}

.notify-popup.closed {
    height: 0; /* Quando fechado, define a altura como 0 */
}

.btn-notify-popup {
    max-height: 22px;
    align-items: center;
    display: flex;
    margin-left: 11px;
    font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
}

.btn-outline-light:hover {
    color: var(--primary);
}

.close-notify-popup {
    padding-right: 1%;
    cursor: pointer;
}

.content-notify-popup {
    display: flex;
    flex-direction: row;
}

.navbar {
    background: transparent;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    min-height: 70px;
    max-height: 70px;
}

.navbar .navbar-brand {
    font-size: 34px;
    color: var(--bgDark);
    font-weight: 700;
    display: inline-block;
}

.navbar-brand {
    padding: 0;
}

.navbar .navbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar .dropdown .dropdown-menu {
    background: var(--white);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    border: none;
    border-radius: 18px;
    z-index: 9999;
    top: 100%;
    visibility: hidden;
    opacity: 0;
    display: block;
    user-select: none;
}

.navbar .dropdown .dropdown-menu li {
    padding: 0.3rem;
}

.navbar .dropdown .dropdown-menu-block {
    display: block;
}

.navbar .dropdown .dropdown-menu a {
    color: var(--black);
    text-transform: capitalize;
    font-weight: 500;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.navbar .dropdown .dropdown-menu a.active {
    color: var(--white) !important;
}

.navbar .dropdown .dropdown-menu a:hover {
    background: var(--primary);
    color: var(--white);
}

.navbar .dropdown .dropdown-menu .dropdown-toggle::after {
    position: absolute;
    right: 15px;
    top: 50%;
    bottom: 50%;
    margin: auto;
}

.navbar .dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    margin-bottom: 0;
    margin-top: 1px;
}

.navbar .dropdown2 .dropdown-menu2 {
    visibility: hidden !important;
    opacity: 0 !important;
    margin-left: 1px;
    left: 100%;
    top: 10px;
}

.navbar .dropdown2:hover .dropdown-menu2 {
    visibility: visible !important;
    opacity: 1 !important;
    margin-bottom: 0;
    top: 0;
}

.navbar .navbar-toggler {
    position: absolute;
    right: 15px;
    top: 12px;
}

.navbar .navbar-toggler i {
    color: var(--primary);
    font-size: 18px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.navbar .navbar-toggler i:hover {
    color: var(--primary);
}

.navbar .navbar-toggler:focus {
    -webkit-box-shadow: 0 0 0 0rem;
    box-shadow: 0 0 0 0rem;
}

.navbar .nav-item {
    margin: 0 15px;
    padding: 5px 0;
}

.navbar .nav-item .nav-link {
    text-transform: uppercase;
    font-weight: 600;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.navbar .navbar-text .night-mode {
    width: 35px !important;
    text-align: center;
    margin-right: 5px;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}

.navbar .navbar-text .night-mode i {
    margin-right: 0;
}

.navbar .navbar-text .night-mode:hover {
    color: var(--white);
}

.navbar .night-mode {
    width: 100% !important;
    height: 100% !important;
    display: flex;
    align-items: center;
}

.navbar .night-mode p {
    margin: 0;
    padding: 5px 10px;
}

.navbar .night-mode img {
    width: 100%;
    max-width: 40px;
    height: 100%;
}

.dark-mode .navbar .night-mode .mode-melzinha {
    display: none;
}

.navbar .night-mode .tex-mode-melzinha {
    display: flex;
}

.dark-mode .navbar .night-mode .tex-mode-melzinha {
    display: none;
}

.navbar .night-mode .mode-problems {
    display: none;
}

.dark-mode .navbar .night-mode .mode-problems {
    display: block;
}

.navbar .night-mode .tex-mode-problems {
    display: none;
}

.dark-mode .navbar .night-mode .tex-mode-problems {
    display: flex;
}

.navbar .navbar-text .btn-custom {
    width: 110px;
    height: 35px;
    margin: 10px;
    text-transform: capitalize;
    border-radius: 18px;
    align-items: center;
    justify-content: center;
    display: flex !important;
}

.navbar .navbar-text .deposit {
    background: none !important;
    border: 2px solid var(--primary);
    color: black;
}

.dark-mode .navbar .navbar-text .deposit {
    color: white;
}

.navbar .navbar-text {
    gap: 10px;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar .navbar-text .user-dropdown .dropdown-toggle {
    position: relative;
    background: var(--bgLight);
    border-radius: 18px;
    margin-right: 5px;
    width: 35px;
    height: 35px;
    text-align: center;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.dark-mode .navbar .navbar-text .user-dropdown .dropdown-toggle {
    color: white;
}

.navbar .navbar-text .user-dropdown .dropdown-toggle::after {
    display: none;
}

.navbar .navbar-text .user-dropdown .dropdown-toggle:hover {
    background: var(--primary);
    color: var(--white);
}

.navbar .navbar-text .user-dropdown .dropdown-menu {
    top: 117%;
    right: 0;
}

.navbar .navbar-text .user-dropdown .dropdown-menu i {
    width: 20px;
    margin-right: 5px;
}

.navbar .navbar-text .user-dropdown .dropdown-menu a {
    font-weight: 500;
}

.navbar .navbar-text .notification-panel {
    position: relative;
    display: inline-block;
    width: auto;
    position: relative;
}

.navbar .navbar-text .notification-panel .dropdown-toggle {
    position: relative;
    background: var(--bgLight);
    border-radius: 18px;
    margin-right: 5px;
    width: 35px;
    height: 35px;
    text-align: center;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.dark-mode .navbar .navbar-text .notification-panel .dropdown-toggle {
    color: white;
}

.navbar .navbar-text .notification-panel .dropdown-toggle::after {
    display: none;
}

.navbar .navbar-text .notification-panel .dropdown-toggle .count {
    display: block;
    color: var(--white);
    background: var(--primary);
    text-align: center;
    min-width: 18px;
    height: 18px;
    border-radius: 3px;
    padding: 2px;
    line-height: 1;
    position: absolute;
    top: -5px;
    right: -18px;
}

.navbar .navbar-text .notification-panel .dropdown-toggle:hover {
    background: var(--primary);
    color: var(--white);
}

.navbar .navbar-text .notification-panel .dropdown-box {
    overflow-y: scroll;
    width: 100%;
    height: 100%;
}

.navbar .navbar-text .notification-panel .dropdown-box::-webkit-scrollbar {
    width: 3px;
    height: 100%;
}

.navbar
    .navbar-text
    .notification-panel
    .dropdown-box::-webkit-scrollbar-track {
    background: var(--white);
    border-radius: 100px;
}

.navbar
    .navbar-text
    .notification-panel
    .dropdown-box::-webkit-scrollbar-thumb {
    background: var(--borderColor);
    border-radius: 6px;
}

.navbar
    .navbar-text
    .notification-panel
    .dropdown-box::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.navbar .navbar-text .notification-panel:hover .notification-dropdown {
    visibility: visible;
    opacity: 1;
    top: 42px;
}

.navbar .navbar-text .notification-panel .notification-dropdown {
    background: var(--white);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    width: 275px;
    max-height: 325px;
    overflow: hidden;
    padding-bottom: 40px;
    padding-top: 0;
    padding-left: 0;
    position: absolute;
    right: 0;
    top: 52px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.navbar .navbar-text .notification-panel .notification-dropdown li {
    border-bottom: 1px solid var(--borderColor);
}

.navbar .navbar-text .notification-panel .notification-dropdown li a {
    color: var(--black);
    background: none;
    padding: 10px 10px 15px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: normal;
    -webkit-transform: 0.4s;
    transform: 0.1s;
}

.image-nav-problems {
    max-width: 50px;
    max-height: 50px;
    width: 50px;
    height: 50px;
    border-radius: 500px;
    border-style: solid;
    border-width: 3px;
    border-color: rgb(23 219 78);
    overflow: visible;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    cursor: pointer;
}

.image-nav-problems img {
    max-width: 100%;
    max-height: 100%;
}

.balance-problems {
    display: flex;
    align-items: center;
    background-color: var(--bgMain);
    width: 100px;
    min-width: 100px;
    max-width: 100px;
    min-height: 15px;
    height: 15px;
    margin: 0px 0px 0px 5px;
    z-index: 3;
    border-radius: 50px;
    align-self: center;
    padding: 10px;
}

.balance-problems img {
    width: 15px;
}

.dark-mode #balance-problems {
    background-color: var(--bgDark);
}

.balance-problems div {
    font-size: 12px;
    font-weight: 900;
    color: rgb(255, 255, 255);
    margin: 0px 0px 0px 5px;
}

.navbar .navbar-text .notification-panel .notification-dropdown li a:active,
.navbar .navbar-text .notification-panel .notification-dropdown li a:focus,
.navbar .navbar-text .notification-panel .notification-dropdown li a:hover {
    background: var(--bgLight);
}

.navbar .navbar-text .notification-panel .notification-dropdown li a i {
    background: var(--primary);
    border-radius: 3px;
    padding-top: 10px;
    width: 35px;
    height: 35px;
    text-align: center;
    margin-right: 10px;
    color: var(--white);
}

.navbar .navbar-text .notification-panel .notification-dropdown li a p {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--black);
}

.navbar .navbar-text .notification-panel .notification-dropdown .text {
    width: calc(100% - 50px);
    margin-left: auto;
}

.navbar .navbar-text .notification-panel .notification-dropdown .clear-all {
    color: var(--primary);
    text-transform: capitalize;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    padding: 7px 10px 6px 15px;
    margin-bottom: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.navbar .navbar-text .notification-panel .notification-dropdown .clear-all a {
    color: var(--primary);
}

.wrapper .content .banner-section {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.top-cont {
    margin-top: 70px !important;
}

.wallet {
    display: flex;
    width: 100px;
    border-radius: 18px;
    text-align: center;
    justify-content: center;
    user-select: none;
}

.deposit {
    border-radius: 10px;
    width: 300px;
    height: 35px;
    text-align: center;
}

.deposit button {
    width: 100%;
    height: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.balance-problems-dashboard {
    background: none;
}

.notification-dropdown {
    z-index: 9999;
}

.deposit .dropdown-menu {
    z-index: 9999;
}

.dark-mode .deposit {
    color: white;
}

.rtl .navbar .navbar-text .user-dropdown .dropdown-menu {
    left: 0;
    right: auto;
}

.rtl .navbar .navbar-text .user-dropdown .dropdown-menu a {
    text-align: right;
}

.rtl .navbar .navbar-text .notification-panel .notification-dropdown {
    left: 0;
    right: auto;
}

.rtl .navbar .navbar-text .notification-panel .notification-dropdown li a i {
    margin-right: 0;
    margin-left: 10px;
}

.dark-mode .navbar .navbar-brand,
.dark-mode .navbar .nav-item .nav-link {
    color: var(--white);
}

.dark-mode .navbar .navbar-brand:hover,
.dark-mode .navbar .nav-item .nav-link:hover {
    color: var(--primary);
}

.dark-mode .navbar .dropdown .dropdown-menu {
    background: var(--bgDark);
}

.dark-mode .navbar .dropdown .dropdown-menu a {
    color: var(--white);
}

.dark-mode .navbar .navbar-text .notification-panel .dropdown-toggle,
.dark-mode .navbar .navbar-text .user-dropdown .dropdown-toggle,
.dark-mode .navbar .navbar-text .btn-custom {
    background: var(--bgDark2);
}

.dark-mode .navbar .navbar-text .notification-panel .dropdown-toggle:hover,
.dark-mode .navbar .navbar-text .user-dropdown .dropdown-toggle:hover,
.dark-mode .navbar .navbar-text .btn-custom:hover {
    background: var(--primary);
}

.dark-mode .navbar .navbar-text .notification-panel .notification-dropdown {
    background: var(--bgDark);
}

.dark-mode .navbar .navbar-text .notification-panel .notification-dropdown li {
    border-bottom: 1px solid var(--bgDark2);
}

.dark-mode
    .navbar
    .navbar-text
    .notification-panel
    .notification-dropdown
    li
    a {
    color: var(--white);
}

.dark-mode
    .navbar
    .navbar-text
    .notification-panel
    .notification-dropdown
    li
    a:hover {
    background: var(--bgDark2);
}

.dark-mode
    .navbar
    .navbar-text
    .notification-panel
    .notification-dropdown
    li
    a
    p {
    color: var(--white);
}

.btn-check:focus + .btn-secondary,
.btn-secondary:focus {
    background-color: rgb(123, 32, 197);
}

.btn-secondary:hover {
    background-color: rgb(123, 32, 197);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.home-section {
    height: 100vh;
    background: url(../../../uploads/logo/loginImage.png);
    background-size: cover;
    background-position: center bottom;
}

.home-section .text-box h1 {
    font-size: 80px;
    text-transform: uppercase;
}

.home-section .text-box h5 {
    color: var(--gray);
    text-transform: capitalize;
}

.container-section-login {
    display: grid;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.login-section {
    height: 90vh;
    width: 90vw;
    display: flex;
    overflow-x: hidden;
    background: white;
    border-radius: 10px;
}

.container-form {
    width: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.container-form > div {
    width: 100%;
    display: flex;
    justify-content: center;
}

.container-form > div:nth-child(1) {
    flex-direction: column;
}

.container-form h1 {
    display: flex;
    justify-content: center;
    margin: 0;
    font-weight: 700;
    font-size: 90px;
}

.container-form p {
    display: flex;
    justify-content: center;
}

.container-form form {
    width: 60%;
}

.container-form .form-register {
    width: 90%;
}

.login-section .form-register .input-box .form-select {
    color: black;
}

.container-form form .input-login {
    background: #f2f2f2 !important;
    border-radius: 13px !important;
    padding: 0px 15px !important;
    caret-color: none !important;
}

.container-form form .btn-custom {
    height: 52px;
    background: #1c1c1c;
    border-radius: 13px;
}

.container-form form .btn-custom:hover {
    background: var(--primary);
}

.container-form form .input-login:focus {
    border: 0 !important;
}

.links .form-check {
    display: flex;
    align-items: center;
    gap: 5px;
}

.container-img-login {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container-form-image {
    width: 50%;
}

.modal .text-box,
.login-section .text-box {
    /*background: url(../../../uploads/logo/loginImage.png);*/
    background-size: cover;
}

.modal .overlay,
.login-section .overlay {
    background-color: rgba(0, 0, 0, 0.4);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.modal .overlay .text,
.login-section .overlay .text {
    text-align: center;
    width: 100%;
}

.modal .overlay .text h2,
.login-section .overlay .text h2 {
    text-transform: capitalize;
    color: var(--white);
}

.modal .overlay .text a,
.login-section .overlay .text a {
    color: var(--primary);
    text-transform: capitalize;
}

.modal h4,
.login-section h4 {
    text-transform: capitalize;
    position: relative;
    padding-left: 15px;
    margin-bottom: 0;
}

.modal h4::before,
.login-section h4::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 16px;
    left: 0px;
    bottom: 7px;
    margin: auto;
    background: var(--primary);
}

.modal form,
.login-section form {
    margin: auto;
}

.login-section .form-register {
    max-width: 550px;
}

.modal form .input-box label,
.login-section form .input-box label {
    margin-bottom: 0px;
    text-transform: capitalize;
}

.form-control {
    background: white !important;
    color: black !important;
}

.form-control:focus {
    background: white !important;
    color: black;
}

.modal form .input-box .form-select,
.modal form .input-box .form-control,
.login-section form .input-box .form-select,
.login-section form .input-box .form-control {
    height: 50px;
    border-radius: 0px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--borderColor);
    padding: 10px;
    padding-left: 1px;
    padding-right: 1px;
    caret-color: var(--primary);
    color: var(--black);
}

.login-section form .input-box .form-select {
    color: #ffffff;
}

.modal form .input-box .form-select:focus,
.modal form .input-box .form-control:focus,
.login-section form .input-box .form-select:focus,
.login-section form .input-box .form-control:focus {
    color: var(--black);
    -webkit-box-shadow: 0 0 0 0rem var(--white);
    box-shadow: 0 0 0 0rem var(--white);
    border-bottom: 1px solid var(--primary);
}

.modal form .input-box .form-select::-webkit-input-placeholder,
.modal form .input-box .form-control::-webkit-input-placeholder,
.login-section form .input-box .form-select::-webkit-input-placeholder,
.login-section form .input-box .form-control::-webkit-input-placeholder {
    color: var(--gray);
}

.modal form .input-box .form-select:-ms-input-placeholder,
.modal form .input-box .form-control:-ms-input-placeholder,
.login-section form .input-box .form-select:-ms-input-placeholder,
.login-section form .input-box .form-control:-ms-input-placeholder {
    color: var(--gray);
}

.modal form .input-box .form-select::-ms-input-placeholder,
.modal form .input-box .form-control::-ms-input-placeholder,
.login-section form .input-box .form-select::-ms-input-placeholder,
.login-section form .input-box .form-control::-ms-input-placeholder {
    color: var(--gray);
}

.modal form .input-box .form-select::placeholder,
.modal form .input-box .form-control::placeholder,
.login-section form .input-box .form-select::placeholder,
.login-section form .input-box .form-control::placeholder {
    color: var(--gray);
}

.modal form .input-box .form-select,
.login-section form .input-box .form-select {
    background-image: url(../images/icon/downward-arrow.png);
    border: 1px solid transparent;
}

.modal form .input-box .form-select option,
.login-section form .input-box .form-select option {
    background: var(--black);
    color: var(--gray);
}

.container-divi {
    display: flex;
    justify-content: space-between;
    padding: 0;
}

.dropdown-menu {
    max-width: 85rem;
}

.dropdown-menu.show {
    display: grid;
}

.bar-category-footer {
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
    align-self: flex-start;
    min-width: 0px;
    min-height: 1px;
    max-height: 1px;
    height: 1px;
    flex-grow: 1;
    width: calc(100% - 0px);
    margin-left: 0px;
    margin-top: 2px;
    margin-right: 0px;
    margin-bottom: 2px;
    z-index: 5;
}

.grid-container {
    background-color: rgba(51, 14, 84, 0.9);
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    border-radius: 15px;
}

.btn-perfil {
    border-radius: 30px;
    -webkit-transition: all 250ms ease;
    transition: all 250ms ease;
    border: none;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: Nunito;
    font-weight: 800;
    font-size: 16px;
    box-sizing: border-box;
    padding: 0;
    background: transparent;
    color: #eff0f7;
    height: 48px;
    width: 48px;
    margin-right: 12px;
    margin-left: 2px;
    background: white;
    border-radius: 30px;
    height: 34px;
    width: 34px;
}

.btn-perfil i {
    color: #46a3ff;
}

.grid-container-posts {
    display: grid;
    gap: 10px;
    grid-auto-flow: dense;
}

.grid-item-post {
    position: relative;
    display: flex;
    max-width: 500px;
    max-height: 300px;
}

.grid-item-post img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-position: center;
    object-fit: cover;
}

.grid-item-post-small {
    grid-column: span 1;
}

.grid-item-post-medium {
    grid-column: span 2;
}

.grid-item-post-complete {
    grid-column: span 3;
}

.grid-item-post .card-box-blog {
    padding: 16px;
}

.table-ranking tr th > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.table-ranking tr th > div > div:first-child {
    justify-content: center;
    align-items: center;
    font-size: 38px;
}

.table-ranking tr th > div > article {
    display: flex;
    min-width: 90px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 6px;
}

.table-ranking tr th > div > article img {
    width: 65px;
    height: 65px;
    border-radius: 100%;
    padding: 0;
    margin: 0;
    border: white solid 3px;
}

.table tr .title-ranking {
    font-size: 30px;
    display: flex;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.blogdetails {
    max-width: 50% !important;
}

.blogdetails h1,
h2,
h3,
h4 {
    margin: 0;
}

.blogdetails .profile-post {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-post .data-profile-post {
    color: black;
    margin: 0;
    padding: 0;
    padding-top: 9px;
}

.blogdetails .title-post h1 {
    color: black;
    font-size: 51px;
    font-weight: 600;
    opacity: 1;
}

.blogdetails .subtitle-post h3 {
    color: black;
    font-weight: 600;
    font-size: 21px;
    opacity: 1;
}

.blogdetails .text-blog-details {
    color: black !important;
}

.blogdetails .text-blog-details p,
h1,
h2,
h3,
h4,
h5,
span {
    opacity: 0.7;
    margin: 0;
    padding: 0;
}

.img-profile-post {
    max-width: 50px;
    border-radius: 30px;
}

.name-profile-post {
    color: black !important;
    font-size: 30px;
    padding: 0;
    margin: 0;
}

.text-blog-details img {
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}

.person-card-blog {
    border-radius: 20px 20px 0 0;
    width: fit-content;
    padding: 8px 12px;
    position: relative;
}

.person-card-blog p {
    background: black;
    color: white !important;
    border-radius: 10px;
    padding: 4px 12px;
    font-size: 14px !important;
}

.other-blogs {
    background: white;
    color: black;
    opacity: 1;
    border-radius: 10px;
    padding: 20px;
    margin-top: 15px;
}

.other-blogs h3 {
    color: black;
    opacity: 1 !important;
    margin-bottom: 30px;
}

.grid-item {
    color: white;
    padding: 4px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.grid-item:hover {
    transform: translateY(-4px);
}

.content-games {
    margin-bottom: 50px;
}

.button-nav-types {
    position: fixed;
    top: 22px;
    left: 10px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    z-index: 999999;
    transition: transform 0.2s ease-in-out;
    transform: rotate(90deg);
}

.active-nav {
    width: 0px !important;
}

.cont-active-nav {
    margin-left: 10px !important;
    width: calc(100% - 10px) !important;
}

.rotate-btn-nav {
    transform: rotate(-90deg);
}

.container-edits {
    display: none;
    position: fixed;
    inset: 0px;
    z-index: 1200;
}

.container-edits > div:first-of-type {
    position: fixed;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    inset: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-tap-highlight-color: transparent;
    z-index: -1;
}

.container-edits-banner {
    display: none;
    position: fixed;
    inset: 0px;
    z-index: 1200;
}

.container-edits-banner > div:first-of-type {
    position: fixed;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    inset: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-tap-highlight-color: transparent;
    z-index: -1;
}

.container-edit-photo {
    width: 400px;
    overflow: hidden overlay;
    background: rgb(26, 27, 40);
    scrollbar-width: thin;
    scrollbar-color: rgb(170, 173, 190) transparent;
    transition: transform 225ms cubic-bezier(0, 0, 0.2, 1) 0ms;
    color: rgb(249, 250, 255);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 10px -5px,
        rgba(0, 0, 0, 0.14) 0px 16px 24px 2px,
        rgba(0, 0, 0, 0.12) 0px 6px 30px 5px;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1 0 auto;
    z-index: 1200;
    position: fixed;
    outline: 0px;
    top: 0;
    right: 0;
}

.container-edit-banner {
    width: 400px;
    overflow: hidden overlay;
    background: rgb(26, 27, 40);
    scrollbar-width: thin;
    scrollbar-color: rgb(170, 173, 190) transparent;
    transition: transform 225ms cubic-bezier(0, 0, 0.2, 1) 0ms;
    color: rgb(249, 250, 255);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 10px -5px,
        rgba(0, 0, 0, 0.14) 0px 16px 24px 2px,
        rgba(0, 0, 0, 0.12) 0px 6px 30px 5px;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1 0 auto;
    z-index: 1200;
    position: fixed;
    outline: 0px;
    top: 0;
    right: 0;
}

.top-edit-photo {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
}

.top-edit-photo > div {
    width: 30%;
    display: flex;
    justify-content: center;
}

.top-edit-photo > div:first-of-type {
    justify-content: flex-start;
}

.top-edit-photo > div:nth-of-type(3) {
    justify-content: end;
}

.top-edit-banner {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
}

.top-edit-banner > div {
    width: 30%;
    display: flex;
    justify-content: center;
}

.top-edit-banner > div:first-of-type {
    justify-content: flex-start;
}

.top-edit-banner > div:nth-of-type(3) {
    justify-content: end;
}

.container-images-photo {
    display: flex;
    flex-direction: row;
    padding: 16px;
    height: 100%;
    overflow: hidden;
}

.container-images-photo > div {
    width: 100%;
    position: relative;
    overflow-y: overlay;
    scrollbar-width: thin;
    scrollbar-color: rgb(170, 173, 190) transparent;
    padding: 2px;
}

.container-images-banner {
    display: flex;
    flex-direction: row;
    padding: 16px;
    height: 100%;
    overflow: hidden;
}

.container-images-banner > div {
    width: 100%;
    position: relative;
    overflow-y: overlay;
    scrollbar-width: thin;
    scrollbar-color: rgb(170, 173, 190) transparent;
    padding: 2px;
}

.images-photo {
    display: flex;
    width: 100%;
    height: 100%;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
}

.image-photo {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.07);
    margin: 8px;
    overflow: hidden;
    border-radius: calc(10px);
    cursor: pointer;
}

.image-photo .check-edit {
    width: 100px;
    height: 100px;
    border-width: 3px;
    border-style: solid;
    border-color: rgb(74, 240, 167);
    position: absolute;
    border-radius: 8px;
    display: none;
}

.image-photo .check-edit.active-edit {
    display: block;
}

.image-photo > span > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    position: absolute;
    right: -3px;
    top: -3px;
    background: rgb(74, 240, 167);
    border-radius: 0px 8px 0px 18px;
}

.image-photo > span > span > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-photo img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.images-banner {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-banner {
    background-color: rgba(255, 255, 255, 0.07);
    margin: 8px;
    overflow: hidden;
    border-radius: calc(10px);
    cursor: pointer;
}

.image-banner .check-edit {
    width: 275px;
    height: 116px;
    border-width: 3px;
    border-style: solid;
    border-color: rgb(74, 240, 167);
    position: absolute;
    border-radius: 8px;
    display: none;
}

.image-banner .check-edit.active-edit {
    display: block;
}

.image-banner > span > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    position: absolute;
    right: -3px;
    top: -3px;
    background: rgb(74, 240, 167);
    border-radius: 0px 8px 0px 18px;
}

.image-banner > span > span > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-banner img {
    object-fit: cover;
    min-width: 275px;
    max-width: 275px;
    min-height: 114px;
    max-height: 114px;
}

.game-tile > .tags {
    position: absolute;
    z-index: 4;
    left: 0px;
    top: 0px;
    opacity: 1;
    transition: opacity 0.2s linear 0s;
    height: 27px;
    pointer-events: none;
}

#sidebar-home {
    width: 50px;
    position: fixed;
    left: 0;
    bottom: 0;
    height: calc(100% - 70px);
    background-color: var(--bgMain);
    transition: width 0.2s;
    z-index: 999;
    border-right: 1px solid rgba(20, 23, 32, 0.25);
    overflow-y: auto;
    scrollbar-width: none;
    padding-bottom: 20px;
}

.dark-mode #sidebar-home {
    background-color: var(--bgDark);
}

#sidebar-home:hover {
    width: 200px;
    scrollbar-width: thin;
}

#sidebar-home hr {
    margin: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-width: 0;
    border-style: solid;
    border-bottom-width: thin;
    margin-top: 8px;
    margin-bottom: 8px;
    margin-left: 16px;
    margin-right: 16px;
}

.container-about {
    margin-top: 100px !important;
    margin-left: 85px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 20px;
}

.container-about h1,
h2 {
    font-family: Brutal, Brutal_Medium, Arial, sans-serif;
    font-size: 2.4em;
    padding-bottom: 0.5em;
    font-weight: bold;
    color: black !important;
    margin: 0;
}

.container-about h2 {
    font-size: 2em;
}

.container-about p {
    font-family: Brutal, Brutal_Medium, Arial, sans-serif;
    color: white;
}

.container-about span {
    font-family: Brutal, Brutal_Medium, Arial, sans-serif;
    font-weight: bold;
}

.icon {
    display: flex;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
    min-height: 42.5px;
}

.icon:hover {
    background-color: #354dff;
}

.icon span {
    display: none;
    margin-left: 10px;
    transition: visibility 0s, opacity 0.3s, all 0.2s ease-in-out;
}

.icon:hover span {
    transform: translate(8px, 0);
}

#sidebar-home:hover .icon span {
    display: inline;
    color: white !important;
    opacity: 1;
}

.btn-footer {
    display: flex;
}

.btn-footer {
    display: flex;
    gap: 10px;
}

.btn-category-footer {
    display: flex;
    min-width: 150px;
    max-width: 150px;
    min-height: 40px;
    max-height: 40px;
    background-color: rgb(123, 32, 197);
    border-radius: 50px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.btn-category-footer:hover {
    transition: 0.4s;
    transform: scale(1.1);
}

.btn-footer-right a {
    background-color: #d103d5;
}

.btn-footer .btn-category-footer p {
    padding: 10px;
    color: white;
    font-size: 14px;
    font-weight: 900;
    margin: 0;
}

.footer-problems {
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    display: flex;
    align-items: flex-end;
    bottom: 0px;
    width: 100%;
    min-height: 110px;
    z-index: 9;
    justify-content: center;
}

.footer-problems > div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-img-footer {
    width: 140px;
    display: flex;
    justify-content: center;
}

.container-img-footer a {
    width: 100%;
    height: 100%;
}

.img-footer {
    width: 100%;
    transition: transform 0.5s ease;
}

.img-footer:hover {
    transition: 0.4s;
    transform: scale(1.1);
}

.money-xp {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-left: 50px;
}

.money-xp > div {
    margin: 0px 0px 0px 5px;
}

.xp-image {
    position: absolute;
    left: -19px;
    top: -14px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    color: white;
    font-size: 12px;
    background-repeat: no-repeat;
    background-size: cover;
}

.progress {
    width: 100%;
    min-height: 25px;
    max-height: 25px;
    height: 25px;
    border-style: solid;
    border-width: 2px;
    border-color: rgb(23 219 78);
    background-color: rgb(255, 255, 255);
    color: white;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 4px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.progress::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.6),
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
    pointer-events: none;
}

.mission-details > div {
    display: flex;
    width: 100% !important;
}

.mission-details .progress {
    min-height: 30px;
    max-height: 30px;
    height: 30px;
}

.money-xp .progress {
    min-height: 20px;
    max-height: 20px;
}

.progresso-missao {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: rgb(55, 175, 255);
    overflow: visible;
    border-radius: 50px;
    padding: 8px;
    opacity: 1;
    align-self: center;
    width: 100%;
    min-height: 45px;
    flex-grow: 1;
    height: max-content;
    margin: 0px;
    z-index: 6;
}

.progresso-missao-concluido {
    background-color: rgb(167, 167, 167);
}

.progress-bar {
    background: rgb(23 219 78);
    font-size: 15px;
    color: rgb(93, 93, 93);
}

.progress-bar > div {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 11px;
    font-family: cursive, sans-serif;
    font-weight: 700;
}

.progress-daily {
    margin: 50px 10px;
    position: relative;
    width: calc(100% - 20px);
    overflow: visible;
    background: #02254a;
    padding: 10px;
    border: 8px solid #014984;
}

.progress-daily.progress::before {
    display: none;
}

.overflow-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.overflow-container .progress-bar {
    position: absolute;
    pointer-events: auto;
    height: 100%;
}

.item-daily {
    width: 85px;
    height: 75px;
    transform: translate(-37%, -52%);
    cursor: pointer;
}

.item-daily img {
    width: 100%;
    height: 100%;
}

.item-daily-1 {
    position: absolute;
    left: 19%;
}

.item-daily-2 {
    position: absolute;
    left: 38%;
}

.item-daily-3 {
    position: absolute;
    left: 57%;
}

.item-daily-4 {
    position: absolute;
    left: 76%;
}

.item-daily-5 {
    position: absolute;
    left: 95%;
}

.recompensa {
    display: flex;
    align-items: center;
    background-color: rgba(250, 181, 21, 0.85);
    overflow: visible;
    border-radius: 50px 0px 0px 50px;
    padding: 0px 0px 0px 10px;
    opacity: 1;
    align-self: center;
    min-width: 95px;
    max-width: 95px;
    order: 1;
    min-height: 30px;
    width: 130px;
    flex-grow: 1;
    height: max-content;
    margin: 0px -10px 0px 0px;
    margin-left: -5px;
    z-index: 4;
}

.recompensa h3 {
    white-space: pre-wrap;
    overflow: visible;
    font-family: var(--font_default);
    font-size: 14px;
    font-weight: 900;
    color: rgb(255, 255, 255);
    line-height: 1.4;
    border-radius: 0px;
    opacity: 1;
    min-width: 0px;
    order: 1;
    min-height: 0px;
    height: max-content;
    flex-grow: 0;
    flex-shrink: 0;
    width: auto;
    margin: 0px;
    z-index: 2;
    padding-right: 15px;
}

.level-number {
    background-color: #fab515;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 4px 0px;
    overflow: visible;
    justify-content: center;
    border-radius: 500px;
    padding: 6px;
    opacity: 1;
    align-self: center;
    min-width: 40px;
    max-width: 40px;
    min-height: 40px;
    width: 40px;
    flex-grow: 1;
    height: 40px;
    margin: 0px;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: -9px;
    border: 4px solid #3a3945;
}

.level-number span {
    font-weight: 900;
    font-size: 20px;
    color: white;
}

.trofeu {
    background-color: #fab515;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 4px 0px;
    overflow: visible;
    justify-content: center;
    border-radius: 500px;
    padding: 6px;
    opacity: 1;
    align-self: center;
    min-width: 40px;
    max-width: 40px;
    order: 2;
    min-height: 40px;
    width: 40px;
    flex-grow: 1;
    height: max-content;
    margin: 0px;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trofeu span {
    color: white;
    font-size: 19px;
    font-weight: 700;
}

.int-tf {
    display: flex;
    color: rgb(255, 255, 255);
    border-radius: 4px;
    padding: 5px;
    opacity: 1;
    align-self: center;
    min-width: 30px;
    max-width: 30px;
    order: 1;
    min-height: 30px;
    max-height: 30px;
    height: 30px;
    flex-grow: 1;
    width: 30px;
    margin: 0px;
    z-index: 2;
}

.item-divi a {
    color: white;
    font-size: 20px;
    font-weight: 900 !important;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.4;
}

.left-div {
    width: 30%;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: start;
}

.center-div {
    width: 30%;
    display: flex;
    justify-content: center;
}

.right-div {
    width: 30%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.container-quest {
    background: white;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    border-radius: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: all 0.25s ease-out, opacity 0.25s ease-in,
        margin-left 0.25s ease-out, clip-path 0.15s ease-out;
}

.container-quest li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px;
    padding: 4px;
    background: white;
    border-radius: 10px;
    padding: 10px;
}

.container-quest > div {
    margin: 10px;
}

.vermais-mission {
    color: white;
    border: white solid 2px;
    border-radius: 8px;
    padding: 5px;
    margin: 12px;
}

.container-quest-details {
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
    transition: all 0.25s ease-out, opacity 0.25s ease-in,
        margin-left 0.25s ease-out, clip-path 0.15s ease-out;
    margin-right: 30px;
    gap: 15px;
}

.info-mission {
    color: white;
}

.container-quest-details li {
    display: flex;
    justify-content: space-between;
    background-color: rgb(255, 255, 255);
    overflow: visible;
    gap: 10px;
    border-radius: 15px;
    padding: 10px;
    opacity: 1;
    align-self: flex-start;
    min-width: 0px;
    min-height: 85px;
    height: max-content;
    flex-grow: 0;
    flex-shrink: 0;
    width: calc(100% + 0px);
    margin: 0px;
    z-index: 2;
}

.mission-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10%;
    margin-left: 20px;
}

.container-quest-details li > div:first-child {
    width: 88%;
}

.text-quest {
    width: 60%;
    display: flex;
    flex-direction: column;
    color: rgb(93, 93, 93);
}

.mission-details .text-quest {
    width: 100%;
    font-size: 14px;
    font-weight: 700;
}

.complete-quest {
    display: flex;
    justify-content: center;
    width: 20%;
    align-items: center;
}

.recompensa-quest {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 20%;
    align-items: center;
}

.mission-details .recompensa-quest {
    background-color: rgb(220, 220, 220);
    overflow: visible;
    justify-content: flex-start;
    border-radius: 10px;
    padding: 8px;
    opacity: 1;
    align-self: flex-start;
    min-width: 280px;
    min-height: 40px;
    height: max-content;
    flex-grow: 0;
    flex-shrink: 0;
    width: calc(100% + 0px);
    margin: 5px 0px 0px;
    z-index: 4;
}

.recompensa-quest > div {
    display: flex;
    gap: 4px;
}

.recompensa-quest span {
    font-size: 14px;
    font-weight: 700;
    color: rgb(93, 93, 93);
    line-height: 1.4;
}

.recompensa-quest p {
    font-size: 14px;
    font-weight: 400;
    color: rgb(9 23 71);
    margin: 0;
    padding: 0;
}

.center-game {
    display: flex;
    justify-content: space-between;
}

.description-game {
    background-color: #212233;
    color: white;
    border-radius: 0px 0px 10px 10px;
    padding: 10px;
    margin-top: 19em;
    display: none;
}

.modal form .input-box textarea.form-control,
.login-section form .input-box textarea.form-control {
    height: 150px;
    border-radius: 10px;
}

.geral-list {
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(212px, 1fr));
    justify-items: center;
}

.modal form .links,
.login-section form .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}

.modal form .links .form-check label,
.login-section form .links .form-check label {
    cursor: pointer;
    color: var(--gray);
}

.modal form .links .form-check .form-check-input,
.login-section form .links .form-check .form-check-input {
    border-radius: 0px;
    border: 1px solid var(--primary);
    cursor: pointer;
    background-color: transparent;
    margin-top: 2px;
}

.modal form .links .form-check .form-check-input:checked,
.login-section form .links .form-check .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.modal form .links .form-check .form-check-input:focus,
.login-section form .links .form-check .form-check-input:focus {
    -webkit-box-shadow: 0 0 0 0rem var(--black);
    box-shadow: 0 0 0 0rem var(--black);
}

.modal form .links a,
.login-section form .links a {
    color: var(--primary);
}

.container-problems {
    position: relative;
}

.problems {
    position: absolute;
    bottom: 21px;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    transition: transform 0.5s ease-in-out;
}

.problems:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.modal form .links a:hover,
.login-section form .links a:hover {
    color: var(--primary);
}

.modal form .bottom,
.login-section form .bottom {
    margin-top: 20px;
    text-align: center;
    color: var(--gray);
}

.modal form .bottom a,
.login-section form .bottom a {
    color: var(--primary);
}

.modal form .bottom a:hover,
.login-section form .bottom a:hover {
    color: var(--primary);
}

.dark-mode .modal form .input-box .form-select,
.dark-mode .modal form .input-box .form-control,
.dark-mode .login-section form .input-box .form-control {
    border-bottom: 1px solid var(--gray);
    color: var(--white);
}

.dark-mode .modal form .input-box .form-select,
.dark-mode .modal form .input-box .form-control::-webkit-input-placeholder,
.dark-mode
    .login-section
    form
    .input-box
    .form-control::-webkit-input-placeholder {
    color: var(--white);
}

.dark-mode .modal form .input-box .form-select,
.dark-mode .modal form .input-box .form-control:-ms-input-placeholder,
.dark-mode .login-section form .input-box .form-control:-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .modal form .input-box .form-select,
.dark-mode .modal form .input-box .form-control::-ms-input-placeholder,
.dark-mode .login-section form .input-box .form-control::-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .modal form .input-box .form-select,
.dark-mode .modal form .input-box .form-control::placeholder,
.dark-mode .login-section form .input-box .form-control::placeholder {
    color: var(--white);
}

.dark-mode .modal form .links .form-check label,
.dark-mode .modal form .bottom,
.dark-mode .login-section form .links .form-check label,
.dark-mode .login-section form .bottom {
    color: var(--white);
}

.container-modal-follow {
    background: #1a1b28;
    color: white;
}

.container-modal-follow .modal-title {
    color: white;
}

.dark-mode .modal-content {
    background: var(--bgDark2);
}

.rtl .login-section h4 {
    padding-right: 15px;
}

.rtl .login-section h4::before {
    left: auto;
    right: 0px;
}

.rtl .login-section .links .form-check .form-check-input {
    float: right;
}

.rtl .login-section .links .form-check label {
    margin-right: 20px;
}

.modal-header {
    border-bottom: none;
}

.btn-close:focus {
    -webkit-box-shadow: 0 0 0 0rem var(--borderColor);
    box-shadow: 0 0 0 0rem var(--borderColor);
}

.container-mission {
    margin-left: 60px;
    margin-right: 10px;
    margin-top: 80px !important;
}

.container-mission h1 {
    display: flex;
    justify-content: center;
    color: #23517f;
}

.rtl .modal h4 {
    padding-right: 15px;
}

.rtl .modal h4::before {
    left: auto;
    right: 0px;
}

.rtl .modal .modal-header .btn-close {
    margin-right: auto;
    margin-left: 0;
}

#makeDeposit .input-box label {
    margin-bottom: 5px;
    text-transform: capitalize;
}

#makeDeposit .input-box .form-select,
#makeDeposit .input-box .form-control {
    height: 40px;
    border-radius: 3px;
    background-color: var(--white);
    border: none;
    border: 1px solid var(--borderColor);
    padding: 10px;
    caret-color: var(--primary);
    color: var(--black);
}

.dark-mode #makeDeposit .input-box .form-control {
    background: var(--bgDark) !important;
    color: var(--white) !important;
    border: 1px solid var(--primary);
}

#makeDeposit .input-box .form-select:focus,
#makeDeposit .input-box .form-control:focus {
    color: var(--black);
    -webkit-box-shadow: 0 0 0 0rem var(--white);
    box-shadow: 0 0 0 0rem var(--white);
    border: 1px solid var(--primary);
}

#makeDeposit .input-box .form-select::-webkit-input-placeholder,
#makeDeposit .input-box .form-control::-webkit-input-placeholder {
    color: var(--gray);
}

#makeDeposit .input-box .form-select:-ms-input-placeholder,
#makeDeposit .input-box .form-control:-ms-input-placeholder {
    color: var(--gray);
}

#makeDeposit .input-box .form-select::-ms-input-placeholder,
#makeDeposit .input-box .form-control::-ms-input-placeholder {
    color: var(--gray);
}

#makeDeposit .input-box .form-select::placeholder,
#makeDeposit .input-box .form-control::placeholder {
    color: var(--gray);
}

#makeDeposit .input-box .form-select {
    background-image: url(../images/icon/downward-arrow.png);
    border: 1px solid transparent;
}

#makeDeposit .input-box .form-select option {
    background: var(--black);
    color: var(--gray);
}

#makeDeposit .input-box textarea.form-control {
    height: 150px;
    border-radius: 10px;
}

#userPanelSideBar .remove-class-btn {
    margin-top: 5px;
}

.container-dashboard-newsletter {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.container-newsletter-profile {
    width: 100%;
    display: flex;
    gap: 10px;
    color: white;
}

.image-newsletter-profile {
    max-width: 250px;
    border: solid 3px #313131;
}

.image-newsletter-profile img {
    width: 100%;
}

.container-text-newsletter-profile {
    display: flex;
    flex-direction: column;
}

.top-profile {
    background: rgb(123, 32, 197);
    border-radius: 18px;
    margin-bottom: 25px;
}

.box-level {
    margin-top: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(254, 170, 45);
    overflow: visible;
    justify-content: flex-start;
    border-radius: 10px;
    padding: 0px 6px 0px 0px;
    align-self: flex-start;
    min-width: 0px;
    min-height: 0px;
    height: max-content;
    flex-grow: 0;
    flex-shrink: 0;
    width: auto;
}

.box-level .icon-level {
    padding-left: 6px;
}

.box-level .text-level {
    padding: 2px 6px;
    overflow: visible;
    font-size: 12px;
    font-weight: 900;
    color: rgb(255, 255, 255);
    line-height: 1.4;
    align-self: center;
    min-width: 0px;
    min-height: 0px;
    width: max-content;
    flex-grow: 0;
    height: max-content;
    margin: 0px;
}

.container-pontos-profile {
    display: flex;
    justify-content: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pontos-profile {
    width: 90%;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: visible;
    justify-content: flex-start;
    border-radius: 50px;
    padding: 6px 12px 6px 6px;
    opacity: 1;
    align-self: flex-start;
    min-width: 100px;
    order: 4;
    min-height: 30px;
    height: max-content;
    flex-grow: 0;
    flex-shrink: 0;
    margin: 0px;
    z-index: 3;
}

.recompensa-profile {
    display: flex;
    font-size: 14px;
    justify-content: center;
    color: white;
    border-left: solid white 1px;
    padding-left: 12px;
}

.money-profile {
    display: flex;
    gap: 10px;
    width: 35%;
    font-size: 14px;
    color: white;
    padding: 0 10px;
}

.money-profile i {
    padding-top: 3px;
}

.money-profile p {
    margin: 0;
    padding: 0;
}

.modal-follow {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-profile {
    padding-top: 8px;
    margin-top: 8px;
    padding-bottom: 8px;
    gap: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
}

.btn-profile-item {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: visible;
    justify-content: center;
    border-radius: 10px;
    opacity: 1;
    align-self: flex-start;
    min-width: 35px;
    max-width: 35px;
    order: 1;
    min-height: 35px;
    width: 35px;
    flex-grow: 1;
    height: max-content;
    margin: 0px;
    z-index: 6;
}

.btn-profile-item button {
    display: flex;
    color: rgb(255, 255, 255);
    border-radius: 4px;
}

.type-conquista {
    display: none;
}

.container-blog {
    max-width: 1230px;
}

.container-top-blog {
    position: relative;
    padding-top: 49.49%;
}

.top-blog {
    display: grid;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    grid-gap: 12px;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    height: 100%;
    grid-template-rows: 1fr;
    grid-template-columns: 1.25fr;
}

.top-blog > div:first-child {
    grid-row: span 2;
}

.top-blog > div:not(:first-child) {
    display: block;
    grid-column: 2;
}

.top-blog > div > div {
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    height: 100%;
    position: relative;
    background-size: 0;
    overflow: hidden;
}

.gradiant-blog::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(
        to top,
        rgba(0, 0, 0, 1.7) 0%,
        rgba(0, 0, 0, 0) 100%
    );
}

.gradiant-blog > a {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
}

.top-blog > div > div ul {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 24px 48px 0 24px;
    display: flex;
    flex-direction: column;
    z-index: 2;
    list-style: none;
}

.top-blog > div > div ul h2 {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    color: #fff !important;
    line-height: 120% !important;
}

.top-blog > div > div ul span {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    color: #fff !important;
    line-height: 120% !important;
}

.top-blog > div > div ul span p {
    color: #fff !important;
}

.leftbar {
    width: 300px;
    height: 640px;
    border-radius: 15px;
    margin: 25px 50px;
    overflow-y: auto;
    position: relative;
    left: 0;
    padding-top: 2px;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 1029;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    overflow-y: auto;
}

.leftbar::-webkit-scrollbar {
    width: 0px;
}

.leftbar .remove-class-btn {
    width: 100%;
    margin: auto;
    padding-top: 4px;
}

.leftbar ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.leftbar ul.main::-webkit-scrollbar {
    width: 0px;
}

.leftbar li a {
    position: relative;
    display: block;
    width: 100%;
    font-weight: 600;
    color: white;
    text-transform: capitalize;
    padding: 7.5px 15px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.leftbar li a i {
    margin-right: 5px;
    width: 24px;
}

.leftbar li a.active,
.leftbar li a:hover {
    background: var(--primary);
    color: var(--white);
}

.leftbar li a.active .count,
.leftbar li a:hover .count {
    color: var(--white);
}

.leftbar li a .count {
    color: var(--gray);
    font-size: 14px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.leftbar .dropdown-toggle::after {
    position: absolute;
    right: 15px;
    top: 50%;
    bottom: 50%;
    margin: auto;
}

.leftbar .top button {
    width: 100%;
}

.leftbar .profile {
    display: flex;
    text-align: center;
}

.leftbar .profile h5,
h4 {
    color: white;
}

.leftbar .profile img {
    padding: 10px;
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.leftbar .profile button {
    text-align: center;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    width: 35px;
    border-radius: 100px;
}

.leftbar .profile button i {
    margin-right: 0;
}

.leftbar .top {
    padding-top: 0px !important;
}

.leftbar {
    padding-top: 0;
}

.right-add {
    width: 300px;
    height: 600px;
    background-color: rgb(123, 32, 197);
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
    margin-right: 2%;
    margin-top: 80px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.bottom-add {
    margin-top: 8px;
    width: 922px;
    height: 78px;
    background-color: rgb(123, 32, 197);
    background-size: cover;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.container-profile {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.card-profile {
    width: min(100%, 1200px);
    position: relative;
}

.container-img-profile {
    width: 100px;
    padding-left: 10px;
    display: flex;
    max-height: 40px;
    justify-content: center;
}

.search-profile {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(33, 34, 51, 0.9);
    position: relative;
    height: 60px;
    box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2),
        0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}

.img-nav-profile {
    width: 45px;
    border-radius: 5px;
    margin: 15px;
}

.input-profile {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 40px;
}

.input-profile > form > div {
    border-radius: 30px;
    fill: rgb(170, 173, 190);
    height: 40px;
    position: relative;
    padding-top: 8px;
    background-color: rgb(55, 57, 82);
    border-color: transparent;
    border-style: solid;
    border-width: 1px;
    width: 460px;
}

.input-profile input {
    background: transparent;
    margin-left: 12px;
    outline: 0px;
    color: rgb(249, 250, 255);
    width: 100% !important;
    border-width: 0px;
    box-shadow: 0px 0px;
    font-family: Nunito, Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 700;
    margin-bottom: 17px;
    font-size: 16px;
    min-width: 30px;
    padding: 4px 4px 4px 0px;
    padding-top: 0px;
    padding-left: 4px;
}

.input-profile > form > div > div {
    position: absolute;
    right: 0px;
    top: 0;
}

.close-input-profile {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    outline: 0px;
    border: 0px;
    margin: 0px -2px 0px 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    text-align: center;
    flex: 0 0 auto;
    font-size: 1.5rem;
    border-radius: 50%;
    overflow: visible;
    color: rgb(255, 255, 255);
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    padding: 4px;
    visibility: hidden;
}

.close-input-profile {
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 0;
    inset: 0px;
    border-radius: inherit;
}

.search-input-profile {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    outline: 0px;
    border: 0px;
    margin: 0px -2px 0px 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    text-align: center;
    flex: 0 0 auto;
    font-size: 1.5rem;
    border-radius: 50%;
    overflow: visible;
    color: rgb(255, 255, 255);
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    padding: 2px;
    padding: 0px;
    margin: 1px 8px;
}

.search-input-profile:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.search-input-profile > div {
    color: rgb(170, 173, 190);
    height: 36px;
    width: 36px;
    padding: 0px;
    margin: 0px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.banner-profile {
    width: 100%;
    height: 350px;
    position: relative;
}

.banner-profile:hover .banner-image-hover {
    opacity: 0.5;
}

.banner-profile img {
    object-fit: cover;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: fill;
    cursor: pointer;
}

.banner-cam-profile {
    width: 82px;
    height: 34px;
    color: #2f3148;
    border-radius: 30px;
    background: #eff0f7;
    position: absolute;
    bottom: 10px;
    right: 10px;
    justify-content: center;
    align-items: center;
    display: none;
    align-content: center;
    justify-content: center;
    gap: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

.banner-profile:hover .banner-cam-profile-hover {
    display: flex;
}

.banner-cam-profile p {
    margin: 0;
    padding: 0;
}

.img-profile {
    width: 150px;
    height: 150px;
    top: 280px;
    border-radius: 10px;
    position: absolute;
    overflow: hidden;
    border: 5px solid rgb(12, 13, 20);
    left: 16px;
    background: #0c0d14;
}

.img-profile img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
}

.img-profile:hover .img-profile-hover {
    opacity: 0.5;
    cursor: pointer;
}

.cam-profile {
    width: 34px;
    height: 34px;
    color: #2f3148;
    border-radius: 30px;
    background: #eff0f7;
    position: absolute;
    bottom: 10px;
    right: 10px;
    -webkit-box-pack: center;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.img-profile:hover .cam-profile-hover {
    display: flex;
}

.cam-profile .far {
    font-size: 20px;
}

.princ-profile {
    display: flex;
    justify-content: space-between;
    height: 100px;
    width: calc(100% - 166px);
    margin-left: 166px;
    padding-top: 20px;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
}

.select-type-mission {
    display: flex;
    justify-content: center;
}

.select-type-mission > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-diarias {
    background-color: rgb(255, 255, 255);
    overflow: visible;
    justify-content: center;
    border-radius: 50px 0px 0px 50px;
    opacity: 1;
    align-self: center;
    min-width: 0px;
    max-width: 190px;
    order: 1;
    min-height: 50px;
    width: 0px;
    flex-grow: 1;
    height: max-content;
    margin: 0px;
    z-index: 2;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.mission-diarias:hover {
    transform: scale(1.1);
}

.bar-divi {
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 0px;
    opacity: 1;
    align-self: center;
    min-width: 1px;
    max-width: 1px;
    order: 2;
    min-height: 50px;
    max-height: 50px;
    width: 1px;
    flex-grow: 1;
    height: 50px;
    margin: 0px 10px;
    z-index: 3;
}

.mission-conquistas {
    background-color: rgb(255, 255, 255);
    overflow: visible;
    justify-content: center;
    border-radius: 0px 50px 50px 0px;
    opacity: 1;
    align-self: center;
    min-width: 0px;
    max-width: 190px;
    order: 4;
    min-height: 50px;
    width: 0px;
    flex-grow: 1;
    height: max-content;
    margin: 0px;
    z-index: 2;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.mission-conquistas:hover {
    transform: scale(1.1);
}

.name-profile {
    padding-left: 20px;
    display: flex;
}

.name-profile h2 {
    display: flex;
    align-items: center;
    font-size: 24px;
    margin: 0;
    font-weight: 700;
    color: white !important;
    line-height: 130%;
    opacity: 1;
}

.edit-profile {
    display: flex;
    gap: 10px;
    width: auto;
    padding: 0px;
    margin-right: 16px;
    margin-top: 0px;
}

.edit-profile .btn-primary:hover {
    background: none;
    border-color: white;
}
.edit-profile .btn-primary:focus {
    background: none;
    border-color: white;
}

.edit-profile .form-control {
    color: black !important;
    background: white;
}

.edit-profile .form-control::placeholder {
    color: black !important;
}

.edit-profile .form-control:hover {
    background: white;
}

.edit-profile > button {
    display: flex;
    flex-direction: row;
    gap: 3px;
    width: auto;
    border-radius: 30px;
    transition: all 250ms ease 0s;
    border: 1px solid rgb(135, 138, 158);
    cursor: pointer;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    box-sizing: border-box;
    padding: 8px 16px;
    background: transparent;
    color: rgb(239, 240, 247);
    height: 50px;
}

.edit-profile .modal-content {
    background: rgb(26, 27, 40);
    color: white;
}

.edit-profile .modal-content h1 {
    color: white;
}

.edit-profile .modal .modal-content .modal-footer {
    border: none;
}

.edit-profile .modal-content .btn-primary {
    background: white;
}

.edit-profile .btn-primary:hover {
    color: white;
}

div#gameContainer {
    width: 100%;
    position: relative;
}

.btn-form-edit-profile {
    color: black !important;
}

.follows-you {
    color: white;
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.cont-profile {
    display: flex;
}

.cont-profile aside {
    width: 250px;
}

.cont-profile-navigation {
    flex: 1 1 0%;
    background: rgb(26, 27, 40);
    margin-bottom: 16px;
    border-radius: 10px;
    margin-left: 16px;
    padding: 16px;
}

.options-profile {
    border-radius: 10px;
    background: #1a1b28;
    margin-bottom: 16px;
    padding: 16px;
}

.options-profile h6 {
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.options-profile > div {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.options-profile .option-profile {
    width: 100%;
    color: #666a7f;
    display: flex;
    flex-direction: row;
    margin-left: 4px;
    margin-bottom: 16px;
}

.container-dashboard-profile {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.container-dashboard-games {
    display: grid;
    flex-flow: wrap;
    box-sizing: border-box;
    content-visibility: visible;
    padding: 0px;
    width: 100%;
    gap: 6px;
    margin: 0px;
    grid-template-columns: repeat(4, 1fr);
}

.option-profile {
    display: flex;
}

.option-profile i {
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    fill: currentcolor;
    width: 40px;
    height: 40px;
    color: rgb(102, 106, 127);
}

.icon-option-profile {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dados-option-profile {
    padding-left: 8px;
    color: #666a7f;
}

.dados-option-profile label {
    font-size: 14px;
    font-weight: 700;
}

.dados-option-profile > div {
    font-size: 20px;
    font-weight: 700;
    color: #f9faff;
    padding-left: 4px;
}

.left-games {
    height: calc(104px);
    top: 12px;
    background-position: 50% center;
    background-repeat: no-repeat;
    width: 50px;
    color: transparent;
    border: 0px;
    position: absolute;
    z-index: 1;
    outline: none 0px;
    opacity: 0;
    border-radius: 0px;
    transition: opacity 0.25s ease 0s, background-color 0.25s ease 0s;
    background-color: rgba(0, 0, 0, 0.7);
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMzIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTMuMjM3IDE3LjIzN3YtMi40NzRsMTQgMTRjLjY4NC42ODMuNjg0IDEuNzkgMCAyLjQ3NGExLjc0OCAxLjc0OCAwIDAxLTIuNDc0IDBsLTE0LTE0YTEuNzQ4IDEuNzQ4IDAgMDEwLTIuNDc0bDE0LTE0YTEuNzQ4IDEuNzQ4IDAgMDEyLjQ3NCAwYy42ODQuNjgzLjY4NCAxLjc5IDAgMi40NzRsLTE0IDE0eiIgZmlsbD0iI0VGRjFGMSIvPjwvc3ZnPg==);
    left: 0px;
}

.bloco-content:hover .left-games {
    opacity: 1;
}

.left-games:hover {
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.right-games {
    height: calc(100px + 4px);
    top: 12px;
    -webkit-background-position: 50%;
    background-position: 50%;
    background-repeat: no-repeat;
    width: 50px;
    color: transparent;
    border: 0;
    position: absolute;
    z-index: 1;
    outline-color: initial;
    outline-style: none;
    outline-width: 0;
    opacity: 0;
    border-radius: 0;
    -webkit-transition: opacity 0.25s ease, background-color 0.25s ease;
    transition: opacity 0.25s ease, background-color 0.25s ease;
    background-color: rgba(0, 0, 0, 0.7);
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMzIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0Ljc2MyAxNy4yMzd2LTIuNDc0bC0xNCAxNGExLjc0OCAxLjc0OCAwIDAwMCAyLjQ3NGMuNjgzLjY4NCAxLjc5LjY4NCAyLjQ3NCAwbDE0LTE0YTEuNzQ4IDEuNzQ4IDAgMDAwLTIuNDc0bC0xNC0xNEExLjc1IDEuNzUgMCAwMC43NjMgMy4yMzdsMTQgMTR6IiBmaWxsPSIjRUZGMUYxIi8+PC9zdmc+);
    right: 0px;
}

.btn-games-menor {
    top: 50px;
}

.bloco-content:hover .right-games {
    opacity: 1;
}

.right-games:hover {
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.category-profile-navigation {
    display: flex;
    justify-content: space-evenly;
    list-style: none;
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
}

.category-profile-navigation li a {
    cursor: pointer;
    user-select: none;
    color: white;
}

.category-types {
    display: flex;
    height: 120px;
    width: 94%;
    margin-right: 6%;
}

.category-list {
    display: flex;
    width: 100%;
    justify-content: start;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.category-itens {
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 4px 0px;
    overflow: visible;
    justify-content: start;
    border-radius: 20px;
    opacity: 1;
    transition: min-height 200ms ease 0s, min-width 200ms ease 0s,
        max-width 200ms ease 0s;
    align-self: center;
    min-width: 195px;
    max-width: 195px;
    order: 1;
    min-height: 60px;
    width: 200px;
    flex-grow: 1;
    height: max-content;
    margin: 0px;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.container-ad {
    display: flex;
    justify-content: center;
}

.ad-Props {
    display: flex;
    justify-content: center;
    color: white;
    font-size: 24px;
    align-items: center;
    overflow: visible;
    border-radius: 15px;
    opacity: 1;
    align-self: center;
    min-width: 600px;
    order: 10;
    min-height: 100px;
    height: max-content;
    flex-grow: 0;
    flex-shrink: 0;
    width: 100%;
    margin: 15px 0px 10px 0px;
    z-index: 7;
    background-image: url(../images/ad-banner.jpg);
    background-color: rgba(255, 255, 255, 0);
    background-position: center; /* Centraliza a imagem no continer */
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.category-itens:hover {
    transition: 0.4s;
    transform: scale(1.1);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}

.category-itens a {
    white-space: pre-wrap;
    overflow: visible;
    font-family: var(--font_default);
    font-size: 22px;
    font-weight: 900;
    color: rgb(255, 255, 255);
    text-align: center;
    line-height: 1.4;
    border-radius: 0px;
    opacity: 1;
    align-self: flex-start;
    min-width: 0px;
    order: 1;
    min-height: 0px;
    height: max-content;
    flex-grow: 0;
    flex-shrink: 0;
    width: calc(100% + 0px);
    margin: 0px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-itens a:hover {
    color: white !important;
}

.dark-mode .category-itens {
    color: white;
}

.dark-mode .caregory-itens {
}

.dark-mode .category-itens:hover {
    background-color: var(--background-dark-category);
    color: var(--primary);
}

.rtl .leftbar .dropdown-toggle::after {
    right: auto;
    left: 15px;
}

.rtl.dark-mode .leftbar {
    border-right: none;
    border-left: 1px solid var(--bgDark2);
}

.rtl.dark-mode .rightbar {
    border-left: none;
    border-right: 1px solid var(--bgDark2);
}

.dark-mode .leftbar {
    background: var(--bgDark);
    border-right: 1px solid var(--bgDark2);
}

.dark-mode .leftbar li a {
    color: var(--white);
}

.dark-mode .leftbar li a .count {
    color: var(--borderColor);
}

.dark-mode .leftbar li a.active,
.dark-mode .leftbar li a:hover {
    background: var(--primary);
    color: var(--white);
}

.dark-mode .leftbar .profile button {
    background: var(--bgDark2);
    color: var(--white);
}

.dark-mode .leftbar .profile button:hover {
    background: var(--primary);
}

.rightbar {
    width: 250px;
    height: 90%;
    position: absolute;
    right: 0;
    padding: 5px;
    padding-top: 0;
    background: var(--white);
    border-radius: 0px;
    z-index: 1029;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    overflow-y: auto;
}

.rightbar::-webkit-scrollbar {
    width: 0px;
}

.rightbar .remove-class-btn {
    width: 100%;
    margin: auto;
    padding-top: 4px;
}

.rightbar .top button {
    width: 100%;
}

.rightbar .input-box {
    margin-bottom: 5px;
}

.rightbar .input-box label {
    margin-bottom: 0px;
    text-transform: capitalize;
    display: none;
}

.rightbar .input-box .form-select,
.rightbar .input-box .form-control {
    height: 35px;
    border-radius: 0px;
    background-color: var(--white);
    border-radius: 3px;
    border: 1px solid var(--borderColor);
    padding: 4px 8px;
    caret-color: var(--primary);
    color: var(--black);
}

.rightbar .input-box .form-select:focus,
.rightbar .input-box .form-control:focus {
    color: var(--black);
    -webkit-box-shadow: 0 0 0 0rem var(--white);
    box-shadow: 0 0 0 0rem var(--white);
    border: 1px solid var(--primary);
}

.rightbar .input-box .form-select::-webkit-input-placeholder,
.rightbar .input-box .form-control::-webkit-input-placeholder {
    color: var(--gray);
}

.rightbar .input-box .form-select:-ms-input-placeholder,
.rightbar .input-box .form-control:-ms-input-placeholder {
    color: var(--gray);
}

.rightbar .input-box .form-select::-ms-input-placeholder,
.rightbar .input-box .form-control::-ms-input-placeholder {
    color: var(--gray);
}

.rightbar .input-box .form-select::placeholder,
.rightbar .input-box .form-control::placeholder {
    color: var(--gray);
}

.recom {
    gap: 0 !important;
}

.rightbar .input-box .form-select {
    background-image: url(../images/icon/downward-arrow.png);
    border: 1px solid var(--borderColor);
    color: var(--gray);
}

.rightbar .input-box .form-select option {
    background: var(--white);
    color: var(--gray);
}

.rightbar .input-box textarea.form-control {
    height: 150px;
    border-radius: 10px;
}

.rightbar .bet-box {
    background: var(--bgLight);
    padding: 15px;
    border-radius: 3px;
    color: var(--gray);
}

.banner-divi .logo-banner {
    width: 25%;
    padding: 1rem 0;
}

.banner-divi .modal-content {
    background: var(--bgMain);
}

.banner-divi .modal-content h1 {
    color: white;
}

.banner-divi .modal-content .container-quest {
    background: var(--bgMain);
}

.dropdown {
    margin-left: 60px;
}

.rightbar .bet-box p {
    margin-bottom: 5px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.rightbar .bet-box i {
    color: var(--primary);
    margin-right: 5px;
}

.rightbar .bet-box .close-btn i {
    margin-right: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    color: var(--gray);
}

.rightbar .bet-box .close-btn i:hover {
    color: var(--primary);
}

.rightbar .bet-box .badge {
    background: var(--bgDark);
    color: var(--white);
    font-size: 14px;
}

.rightbar .inc-dec button {
    width: 35px;
    background: var(--primary);
}

.rightbar .inc-dec input {
    height: 35px;
    border: 1px solid var(--borderColor);
    border-right: 0;
    border-left: 0;
}

.rightbar .inc-dec input:focus {
    color: var(--black);
    -webkit-box-shadow: 0 0 0 0rem var(--white);
    box-shadow: 0 0 0 0rem var(--white);
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
}

.rightbar .inc-dec input::-webkit-input-placeholder {
    color: var(--gray);
}

.rightbar .inc-dec input:-ms-input-placeholder {
    color: var(--gray);
}

.rightbar .inc-dec input::-ms-input-placeholder {
    color: var(--gray);
}

.rightbar .inc-dec input::placeholder {
    color: var(--gray);
}

.rightbar .dropdown .dropdown-menu {
    background: var(--white);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    border: none;
    top: 100%;
    right: 0;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-top: 11px;
}

.rightbar .dropdown .dropdown-menu a {
    color: var(--black);
    text-transform: capitalize;
    font-weight: 500;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.rightbar .dropdown .dropdown-menu a:hover {
    background: var(--primary);
    color: var(--white);
}

.rightbar .dropdown .dropdown-toggle::after {
    display: none;
}

.rightbar .dropdown label {
    font-size: 14px;
}

.rightbar .dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    margin-bottom: 0;
    margin-top: 1px;
}

.dark-mode .rightbar {
    background: var(--bgDark);
}

.dark-mode .rightbar li a {
    background: var(--bgDark);
    color: var(--white);
}

.dark-mode .rightbar .top {
    border-bottom: 1px solid var(--bgDark2);
    border-bottom: none;
}

.dark-mode .rightbar .bet-box {
    background: var(--bgDark2);
    color: var(--white);
}

.dark-mode .rightbar .bet-box .close-btn i {
    color: var(--white);
}

.dark-mode .rightbar .bet-box .close-btn i:hover {
    color: var(--primary);
}

.dark-mode .rightbar .input-box .form-select,
.dark-mode .rightbar .input-box .form-control {
    background: var(--bgDark2);
    border: 1px solid var(--bgDark2);
    color: var(--white);
}

.dark-mode .rightbar .input-box .form-select:focus,
.dark-mode .rightbar .input-box .form-control:focus {
    color: var(--white);
}

.dark-mode .rightbar .input-box .form-select::-webkit-input-placeholder,
.dark-mode .rightbar .input-box .form-control::-webkit-input-placeholder {
    color: var(--white);
}

.dark-mode .rightbar .input-box .form-select:-ms-input-placeholder,
.dark-mode .rightbar .input-box .form-control:-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .rightbar .input-box .form-select::-ms-input-placeholder,
.dark-mode .rightbar .input-box .form-control::-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .rightbar .input-box .form-select::placeholder,
.dark-mode .rightbar .input-box .form-control::placeholder {
    color: var(--white);
}

.dark-mode .rightbar .dropdown .dropdown-toggle {
    color: var(--white);
}

.dark-mode .rightbar .dropdown .dropdown-menu {
    background: var(--bgDark);
}

.dark-mode .rightbar .inc-dec button {
    width: 35px;
    background: var(--primary);
}

.dark-mode .rightbar .inc-dec input {
    background: var(--bgDark2);
    border: 1px solid var(--bgDark2);
    color: var(--white);
}

.dark-mode .rightbar .inc-dec input:focus {
    color: var(--white);
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
}

.dark-mode .rightbar .inc-dec input::-webkit-input-placeholder {
    color: var(--white);
}

.dark-mode .rightbar .inc-dec input:-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .rightbar .inc-dec input::-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .rightbar .inc-dec input::placeholder {
    color: var(--white);
}

.bet-box-disable {
    background: #b2babf94 !important;
}
.dark-mode .bet-box-disable {
    background: #607e91d9 !important;
}

.wrapper {
    display: -webkit-box;
    background: #0c0d14;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.wrapper .content {
    width: calc(100% - 500px);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-right: 1px solid var(--borderColor);
}

.dark-mode .wrapper .content {
    border-right: 1px solid var(--bgDark2);
}

.modal {
    z-index: 999999 !important;
}

.container_skitter,
.skitter {
    width: 100% !important;
    max-width: 100% !important;
    height: 300px !important;
}

.image_main,
.image {
    height: 100% !important;
}

.container-follow_users {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.container-follow_users .img-seguidores {
    padding: 2px 4px;
    border-radius: 4px;
    background-position: center;
    background-size: cover;
}

.follow_users {
    display: flex;
    padding: 4px 8px;
    align-items: center;
    gap: 5px;
    color: white;
}

.follow_users p {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.follow_users img {
    max-width: 40px;
    border-radius: 20px;
    border: solid 2px;
}

.skitter.with-dots {
    margin-bottom: 0;
}

.label_skitter {
    padding-bottom: 80px;
    padding-left: 50px;
}

.label_skitter p {
    padding: 0;
}

.label_skitter h2 {
    color: var(--white);
}

.rtl .leftbar {
    left: auto;
    right: 0;
}

.rtl .rightbar {
    right: auto;
    left: 0;
}

.rtl .rightbar .dropdown .dropdown-menu {
    right: auto;
    left: 0;
}

.rtl .label_skitter {
    padding-left: 0;
    padding-right: 50px;
}

.categories {
    background: var(--white);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
}

.categories a {
    color: var(--bgDark);
    display: inline-block;
    padding: 7.5px 15px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.categories a i {
    margin-right: 5px;
}

.categories a:hover,
.categories a.active {
    border-bottom: 2px solid var(--primary);
    color: var(--primary);
}

.categories::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.rtl .categories a i {
    margin-right: 0;
    margin-left: 5px;
}

.dark-mode .categories {
    background: var(--bgDark2);
}

.dark-mode .categories a {
    color: var(--white);
}

.dark-mode .categories a:hover,
.dark-mode .categories a.active {
    border-bottom: 2px solid var(--primary);
    color: var(--primary);
}

.table-parent {
    margin: 5px;
}

.table {
    margin-bottom: 10px;
    border-radius: 12px !important;
    overflow: hidden;
    border: none;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}

.table tbody > tr:nth-of-type(even) > * {
    --bs-table-accent-bg: var(--white);
    color: var(--black);
    border: 1px solid var(--borderColor) !important;
}

.table tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: var(--white);
    color: var(--black);
    border: 1px solid var(--borderColor) !important;
}

.table thead {
    background: #014283;
    text-transform: capitalize;
}

.table tbody {
    border: none;
}

.table tr {
    border: none;
}

.table tr th {
    border: none !important;
    padding: 7.5px 15px;
    color: var(--white);
    font-weight: 500;
}

.table tr th:first-child {
    border-top-left-radius: 5px;
    border-top-left-radius: 0px;
}

.table tr th:last-child {
    border-top-right-radius: 5px;
    border-top-right-radius: 0px;
}

.table tr td {
    color: var(--gray);
    border: none !important;
    text-transform: capitalize;
    font-weight: 500;
    padding: 7.5px 15px;
}

.table tr td button {
    background: var(--bgLight);
    color: var(--black);
    width: 100%;
    font-weight: 500;
    padding: 5px 8px;
    margin: 0 2px;
    border-radius: 3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.table tr td button:hover {
    background: var(--primary);
    color: var(--white);
}

.table tr td:first-child {
    border-bottom-left-radius: 5px;
    border-bottom-left-radius: 0px;
}

.table tr td:last-child {
    border-bottom-right-radius: 5px;
    border-bottom-right-radius: 0px;
}

.table tr img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.table a {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    color: var(--gray);
}

.table a:hover {
    color: var(--primary);
}

.table p {
    margin: 0px;
}

.table p span {
    margin-left: 10px;
    color: var(--primary);
}

.table .action-btn {
    width: 35px;
}

.table > :not(:first-child) {
    border-top: 0px solid currentColor;
}

.dark-mode .table thead {
    background: var(--bgDark2);
}

.dark-mode .table tbody > tr:nth-of-type(even) > * {
    --bs-table-accent-bg: var(--bgDark2);
    color: var(--white);
    border: 1px solid var(--bgDark) !important;
}

.dark-mode .table tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: var(--bgDark2);
    color: var(--white);
    border: 1px solid var(--bgDark) !important;
}

.dark-mode .table a {
    color: var(--white);
}

.dark-mode .table a:hover {
    color: var(--primary);
}

.dark-mode .table tr td button {
    background: var(--bgDark);
    color: var(--white);
}

.dark-mode .table tr td button:hover {
    background: var(--primary);
}

.live-matches {
    margin: 15px;
    margin-bottom: 15%;
}

.live-matches .box {
    text-align: center;
    background: var(--white);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    color: var(--black);
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 2px;
    height: 100%;
}

.live-matches .box .text {
    background: var(--bgLight);
    height: 50px;
    width: 50px;
    border-radius: 100px;
    margin: auto;
    padding-top: 15px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.live-matches .box img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.live-matches .box .team {
    text-align: center;
}

.live-matches .box .team img {
    margin: auto;
    margin-bottom: 15px;
}

.live-matches .box .team p {
    font-size: 13px;
}

.live-matches .prediction button {
    background: var(--black);
}

.live-matches .btn-light {
    background: var(--bgLight);
    width: 100%;
    height: 35px;
    border-radius: 3px;
    margin: 2px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.navbar {
    padding: 0;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.live-matches .btn-light:focus {
    -webkit-box-shadow: 0 0 0 0rem rgba(211, 212, 213, 0.5);
    box-shadow: 0 0 0 0rem rgba(211, 212, 213, 0.5);
}

.live-matches .btn-light:hover {
    background: var(--primary);
    color: var(--white);
}

.rtl .live-matches {
    direction: ltr;
}

.rtl .live-matches .box {
    direction: rtl;
}

.dark-mode .live-matches .box {
    background: var(--bgDark2);
    color: var(--white);
}

.dark-mode .live-matches .box h5 {
    color: var(--white);
}

.dark-mode .live-matches .btn-light {
    background: var(--bgDark);
    color: var(--white);
}

.dark-mode .live-matches .btn-light:hover {
    background: var(--primary);
}

.not-bet {
    display: flex;
    flex-direction: column;
    margin: 10px;
    padding: 10px;
    background: #606060;
    border-radius: 8px;
}

.not-bet .text-not-bet {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
}

.not-bet .sub-text-not-bet {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
}

.wrapper .user-panel {
    padding: 0 15px;
    width: calc(100% - 250px);
    margin: 0;
    margin-left: auto !important;
}

.rtl .wrapper .user-panel {
    margin-left: 0 !important;
    margin-right: auto;
}

.user-panel form {
    background: var(--white);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    padding: 15px;
    border-radius: 5px;
}

.user-panel form .input-box label {
    margin-bottom: 0px;
    text-transform: capitalize;
    display: none;
}

.user-panel form .input-box .form-select,
.user-panel form .input-box .form-control {
    height: 40px;
    border-radius: 0px;
    background-color: var(--white);
    border-radius: 3px;
    border: 1px solid var(--borderColor);
    padding: 4px 8px;
    caret-color: var(--primary);
    color: var(--black);
}

.user-panel form .input-box .form-select:focus,
.user-panel form .input-box .form-control:focus {
    color: var(--black);
    -webkit-box-shadow: 0 0 0 0rem var(--white);
    box-shadow: 0 0 0 0rem var(--white);
    border: 1px solid var(--primary);
}

.user-panel form .input-box .form-select::-webkit-input-placeholder,
.user-panel form .input-box .form-control::-webkit-input-placeholder {
    color: var(--gray);
}

.user-panel form .input-box .form-select:-ms-input-placeholder,
.user-panel form .input-box .form-control:-ms-input-placeholder {
    color: var(--gray);
}

.user-panel form .input-box .form-select::-ms-input-placeholder,
.user-panel form .input-box .form-control::-ms-input-placeholder {
    color: var(--gray);
}

.user-panel form .input-box .form-select::placeholder,
.user-panel form .input-box .form-control::placeholder {
    color: var(--gray);
}

.user-panel form .input-box .form-select {
    background-image: url(../images/icon/downward-arrow.png);
    border: 1px solid var(--borderColor);
    color: var(--gray);
}

.user-panel form .input-box .form-select option {
    background: var(--white);
    color: var(--gray);
}

.user-panel form .input-box textarea.form-control {
    height: 150px;
    border-radius: 10px;
}

.user-panel form .input-box .fa-paperclip {
    position: absolute;
    background: var(--white);
    width: 100px;
    height: 36px;
    color: var(--primary);
    text-align: center;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    padding-top: 12px;
    margin-left: 1px;
    margin-top: 1px;
}

.user-panel form .btn-custom {
    height: 38px;
}

.user-panel .deposit-box {
    text-align: center;
    border-radius: 5px;
    background: var(--white);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    cursor: pointer;
}

.user-panel .deposit-box img {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.user-panel .deposit-box p {
    padding: 5px 5px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0;
}

.user-panel .deposit-box:hover h5 {
    color: var(--primary);
}

.user-panel .toggle-user-panel-sidebar {
    background: var(--primary);
    color: var(--white);
    width: 35px;
}

.user-panel .toggle-user-panel-sidebar i {
    margin-right: 0;
}

.rtl .user-panel form .input-box .fa-paperclip {
    margin-right: 1px;
    border-radius: 3px;
}

.dark-mode .user-panel .deposit-box {
    background: var(--bgDark2);
}

.dark-mode .user-panel .deposit-box p {
    color: var(--white);
}

.dark-mode .user-panel form {
    background: var(--bgDark2);
}

.dark-mode .user-panel form .input-box .form-control,
.dark-mode .user-panel form .input-box .form-select {
    background-color: var(--bgDark);
    border: 1px solid var(--bgDark);
    color: var(--white);
}

.dark-mode .user-panel form .input-box .form-control::-webkit-input-placeholder,
.dark-mode .user-panel form .input-box .form-select::-webkit-input-placeholder {
    color: var(--white);
}

.dark-mode .user-panel form .input-box .form-control:-ms-input-placeholder,
.dark-mode .user-panel form .input-box .form-select:-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .user-panel form .input-box .form-control::-ms-input-placeholder,
.dark-mode .user-panel form .input-box .form-select::-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .user-panel form .input-box .form-control::placeholder,
.dark-mode .user-panel form .input-box .form-select::placeholder {
    color: var(--white);
}

.dark-mode .user-panel form .input-box .form-control:focus,
.dark-mode .user-panel form .input-box .form-select:focus {
    border: 1px solid var(--primary);
}

.dark-mode .user-panel form .input-box .fa-paperclip {
    background: var(--bgDark);
}

.dark-mode .user-panel .bet-history-search-bar .input-group .form-control {
    background: var(--bgDark);
    border: 1px solid var(--bgDark);
    color: var(--white);
}

.dark-mode
    .user-panel
    .bet-history-search-bar
    .input-group
    .form-control::-webkit-input-placeholder {
    color: var(--white);
}

.dark-mode
    .user-panel
    .bet-history-search-bar
    .input-group
    .form-control:-ms-input-placeholder {
    color: var(--white);
}

.dark-mode
    .user-panel
    .bet-history-search-bar
    .input-group
    .form-control::-ms-input-placeholder {
    color: var(--white);
}

.dark-mode
    .user-panel
    .bet-history-search-bar
    .input-group
    .form-control::placeholder {
    color: var(--white);
}

.dark-mode
    .user-panel
    .bet-history-search-bar
    .input-group
    .form-control:focus {
    border: 1px solid var(--primary);
}

.dark-mode .form-check .form-check-input {
    border: 1px solid var(--gray);
}

.dark-mode .form-check .form-check-input:checked {
    border-color: var(--primary);
}

.dark-mode .form-check label {
    color: var(--white);
}

p > .team-name {
    flex-direction: row;
}

p > .team-name > span {
    color: var(--white);
}

.content-sports .banner-img {
    margin: 1%;
}

.content-sports .banner-section {
    max-width: 86%;
}

.thumbs {
    display: flex;
    gap: 2px;
    align-items: center;
}

.thumbs p {
    margin: 0;
}

.bet-history-search-bar .input-group .form-control {
    border: none;
    height: 40px;
    padding: 15px;
    caret-color: var(--primary);
    border: 1px solid var(--borderColor);
    border-right: none;
}

.bet-history-search-bar .input-group .form-control:focus {
    color: var(--bgDark);
    background-color: #fff;
    border-color: var(--primary);
    outline: 0;
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.bet-history-search-bar .input-group button {
    background: var(--primary);
    color: var(--white);
    height: 40px;
    width: 40px;
    border: none;
    border-radius: 3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.bet-history-search-bar .input-group button:hover {
    background: var(--bgDark);
}

.highlights {
    background: url(../images/banner.jpg);
}

.highlights .box {
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    color: var(--black);
    padding: 15px;
    height: 100%;
    color: var(--white);
}

.highlights .box .text {
    background: var(--bgLight);
    height: 50px;
    width: 50px;
    border-radius: 100px;
    margin: auto;
    padding-top: 15px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.highlights .box img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

.highlights .box .team p {
    font-size: 13px;
}

.highlights h5,
.highlights h4 {
    color: var(--white);
}

.highlights .prediction button {
    background: var(--black);
}

.highlights .btn-light {
    background: var(--bgLight);
    width: 100%;
    height: 35px;
    border-radius: 3px;
    margin: 2px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.highlights .btn-light:hover {
    background: var(--primary);
    color: var(--white);
}

.inbox-wrapper {
    background: var(--white);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.inbox-wrapper .top-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid var(--borderColor);
}

.inbox-wrapper .top-bar .user {
    width: 60px;
    height: 60px;
    border-radius: 100px;
    margin-right: 10px;
}

.inbox-wrapper .top-bar .name {
    font-weight: 600;
    font-size: 18px;
}

.inbox-wrapper .top-bar .close-btn {
    width: 35px;
    height: 35px;
    border-radius: 3px;
    background: var(--bgLight);
    border: none;
    padding-top: 3px;
    color: var(--primary);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.inbox-wrapper .top-bar .close-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.inbox-wrapper .chats {
    padding: 30px 15px 10px 15px;
    height: 500px;
    overflow-y: auto;
    position: relative;
}

.inbox-wrapper .chats::-webkit-scrollbar {
    width: 4px;
    height: 100%;
}

.inbox-wrapper .chats::-webkit-scrollbar-track {
    background: var(--bgLight);
}

.inbox-wrapper .chats::-webkit-scrollbar-thumb {
    background: var(--borderColor);
    border-radius: 0px;
}

.inbox-wrapper .chats::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.inbox-wrapper .chats .chat-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    margin-bottom: 20px;
}

.inbox-wrapper .chats .chat-box .img {
    margin-left: 10px;
    min-width: 30px;
    min-height: 30px;
}

.inbox-wrapper .chats .chat-box .img img {
    width: 30px;
    height: 30px;
    border-radius: 3px;
}

.inbox-wrapper .chats .chat-box .text-wrapper .text {
    padding: 10px;
    background: var(--bgLight);
    border-radius: 3px;
    float: right;
    margin-bottom: 5px;
    max-width: 300px;
}

.inbox-wrapper .chats .chat-box .text-wrapper .text p {
    margin-bottom: 0;
}

.inbox-wrapper .chats .chat-box .text-wrapper .time {
    font-size: 10px;
    display: inline-block;
    width: 100%;
    text-align: right;
}

.inbox-wrapper .chats .chat-box .text-wrapper .attachment {
    display: block;
}

.inbox-wrapper .chats .chat-box .text-wrapper .attachment img {
    max-width: 100px;
    border-radius: 3px;
}

.inbox-wrapper .chats .opposite-side {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
}

.inbox-wrapper .chats .opposite-side .img {
    margin-left: 0;
    margin-right: 10px;
}

.inbox-wrapper .chats .opposite-side .text-wrapper .text {
    float: left;
}

.inbox-wrapper .chats .opposite-side .text-wrapper .time {
    text-align: left;
}

.inbox-wrapper .img-preview {
    background: var(--bgLight);
    display: inline-block;
    position: relative;
    left: 0px;
    bottom: 5px;
    max-width: 100px;
    border-radius: 3px;
}

.inbox-wrapper .img-preview img {
    width: 100%;
    height: auto;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.inbox-wrapper .img-preview .img-info {
    padding: 0 5px;
}

.inbox-wrapper .img-preview .img-info span {
    font-size: 12px;
}

.inbox-wrapper .img-preview .img-info span.size {
    color: var(--gray);
    font-size: 10px;
}

.inbox-wrapper .img-preview button.delete {
    position: absolute;
    right: -10px;
    top: -10px;
    background: var(--bgLight);
    width: 20px;
    height: 20px;
    border-radius: 20px;
    text-align: center;
    border: none;
}

.inbox-wrapper .img-preview button.delete i {
    font-size: 14px;
    color: var(--primary);
}

.inbox-wrapper .typing-area {
    background: var(--white);
    border-top: 1px solid var(--borderColor);
    padding: 20px;
}

.inbox-wrapper .typing-area .input-group {
    border-radius: 3px;
    overflow: hidden;
}

.inbox-wrapper .typing-area .input-group .form-control {
    height: 40px;
    background: var(--bgLight);
    border-radius: 0;
    border: none;
    font-size: 13px;
    color: var(--gray);
    padding: 7px;
}

.inbox-wrapper .typing-area .input-group .form-control:focus {
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    border: none;
}

.inbox-wrapper .typing-area .input-group .send-file-btn {
    position: relative;
    background: var(--bgLight);
    border: none;
    width: 40px;
    height: 100%;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    text-align: center;
    color: var(--gray);
}

.inbox-wrapper .typing-area .input-group .send-file-btn i {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    position: relative;
}

.inbox-wrapper .typing-area .input-group .send-file-btn:hover i {
    color: var(--primary);
}

.inbox-wrapper .typing-area .input-group .send-file-btn .form-control {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.inbox-wrapper .typing-area .input-group button {
    width: 50px;
    border: none;
    background: var(--primary);
    border: none;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.inbox-wrapper .typing-area .input-group button i {
    color: var(--white);
    font-size: 16px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.game-play-grid {
    margin-left: 8%; 
    margin-top: 26rem;
    margin-bottom: 2rem;
    justify-items: start;
}

.dark-mode .inbox-wrapper {
    background: var(--bgDark2);
}

.dark-mode .inbox-wrapper .top-bar {
    border-bottom: 1px solid var(--gray);
}

.dark-mode .inbox-wrapper .chats .chat-box .text-wrapper .text {
    background: var(--bgDark);
}

.dark-mode .inbox-wrapper .top-bar .close-btn {
    background: var(--bgDark);
}

.dark-mode .inbox-wrapper .top-bar .close-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.dark-mode .inbox-wrapper .typing-area {
    background: var(--bgDark2);
    border-top: 1px solid var(--gray);
}

.dark-mode .inbox-wrapper .img-preview {
    background: var(--bgDark);
}

.dark-mode .inbox-wrapper .typing-area .input-group .form-control {
    background: var(--bgDark);
    color: var(--white);
}

.dark-mode
    .inbox-wrapper
    .typing-area
    .input-group
    .form-control::-webkit-input-placeholder {
    color: var(--white);
}

.dark-mode
    .inbox-wrapper
    .typing-area
    .input-group
    .form-control:-ms-input-placeholder {
    color: var(--white);
}

.dark-mode
    .inbox-wrapper
    .typing-area
    .input-group
    .form-control::-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .inbox-wrapper .typing-area .input-group .form-control::placeholder {
    color: var(--white);
}

.dark-mode .inbox-wrapper .typing-area .input-group .send-file-btn {
    background: var(--bgDark);
    color: var(--white);
}

.dark-mode .inbox-wrapper .typing-area .input-group .send-file-btn:hover {
    color: var(--primary);
}

.dark-mode .inbox-wrapper .chats::-webkit-scrollbar-track {
    background: var(--bgDark2);
}

.dark-mode .inbox-wrapper .chats::-webkit-scrollbar-thumb {
    background: var(--bgDark);
    border-radius: 0px;
}

.dark-mode .inbox-wrapper .chats::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.live-apost {
    color: red;
}

.table p .data-apost {
    color: var(--white);
}

.rtl .inbox-wrapper .top-bar .user {
    margin-right: 0;
    margin-left: 10px;
}

.rtl .inbox-wrapper .chats .chat-box .img {
    margin-left: 0;
    margin-right: 10px;
}

.rtl .inbox-wrapper .chats .chat-box .text-wrapper .text {
    float: left;
}

.rtl .inbox-wrapper .chats .chat-box .text-wrapper .time {
    text-align: left;
}

.rtl .inbox-wrapper .chats .opposite-side .img {
    margin-right: 0;
    margin-left: 10px;
}

.rtl .inbox-wrapper .chats .opposite-side .text-wrapper .text {
    float: right;
}

.rtl .inbox-wrapper .chats .opposite-side .text-wrapper .time {
    text-align: right;
}

.banner-section {
    margin: 0 auto;
    margin-top: 1em;
    margin-bottom: 2%;
    border-radius: 15px;
    display: flex;
    justify-content: center;
}

.carousel-control-prev {
    justify-content: start;
    margin-left: 10px;
}

.carousel-control-next {
    justify-content: end;
    margin-right: 10px;
}

.banner-img {
    max-width: 1680px;
    margin: 0 8%;
}

.banner-img img {
    width: 100%;
    border-radius: 15px;
}

.background-banner {
    width: 80%;
}

.banner-section .overlay {
    padding: 174px 0 100px 0;
    background: rgba(0, 0, 0, 0.4);
}

.banner-section h3 {
    text-transform: capitalize;
    color: var(--white);
}

.left-bar-sport {
    overflow: auto;
}

.faq-section {
    padding: 100px 0;
}

.faq-section .accordion-item {
    background: none;
    border: none;
    margin: 15px 0;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    background: var(--white);
    border-radius: 5px;
}

.faq-section .accordion-button {
    background: var(--white);
    border-radius: 5px !important;
    padding-left: 0px;
    font-size: 18px;
    font-weight: 600;
    padding: 15px;
    padding-right: 40px;
    text-transform: uppercase;
    color: var(--bgDark);
}

.faq-section .accordion-button:focus {
    z-index: 3;
    border-color: var(--primary);
    outline: 0;
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.faq-section .accordion-button::after {
    background-image: url(../images/icon/plus.png);
    background-size: cover;
    position: absolute;
    right: 15px;
    height: 24px;
    width: 24px;
    background-position: center;
}

.faq-section .accordion-body {
    padding: 15px;
    padding-top: 5px;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--primary);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url(../images/icon/minus.png);
}

.rtl .faq-section .accordion-button {
    padding-right: 15px;
    padding-left: 40px;
    text-align: right;
}

.rtl .faq-section .accordion-button::after {
    right: auto;
    left: 15px;
}

.dark-mode .faq-section .accordion-button,
.dark-mode .faq-section .accordion-item {
    background: var(--bgDark2);
    color: var(--white);
}

.dark-mode .faq-section .accordion-body {
    color: var(--white);
}

.times-sport {
    display: flex;
    gap: 20px;
    flex-direction: row;
}

.times-sport span {
    display: flex;
    align-items: center;
}

.category-apost div {
    display: flex;
    justify-content: center;
}

.container .footer-container {
    justify-content: space-between;
}

.container .footer-text {
    width: 40%;
}

.container .footer-small {
    width: 15%;
}

@keyframes fa-blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
    }
}
.fa-blink {
    -webkit-animation: fa-blink 0.75s linear infinite;
    -moz-animation: fa-blink 0.75s linear infinite;
    -ms-animation: fa-blink 0.75s linear infinite;
    -o-animation: fa-blink 0.75s linear infinite;
    animation: fa-blink 0.75s linear infinite;
}

.footer-section {
    /*background: url(../images/footer.jpg);*/
    background-size: cover;
    background-position: center top;
    margin-top: 50px;
    margin-top: auto;
}

.footer-section .overlay {
    background: rgba(0, 0, 0, 0.8);
    padding: 25px 0 0 0;
}

.footer-section .footer-box {
    margin: 2px 28px 20px 22px;
    max-width: 94%;
    margin-left: 3%;
    margin-right: 3%;
    text-align: justify;
}

.footer-section .footer-box .navbar-brand {
    font-size: 24px;
    color: var(--white);
    font-weight: 700;
    display: inline-block;
}

.footer-section .footer-box .navbar-brand img {
    width: 118px;
}



.footer-section .footer-box h5 {
    text-transform: uppercase;
    color: var(--white);
}

.footer-section .footer-box a {
    text-decoration: none;
    color: var(--white);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.footer-section .footer-box a:hover {
    color: var(--primary);
}

.footer-section .footer-box ul {
    padding-left: 0;
    margin-bottom: 0;
    text-align: start;
}

.footer-section .footer-box ul li {
    list-style: none;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-section .footer-box ul li i {
    display: inline-block;
    width: 20px;
}

.social-links {
    display: flex;
}

.footer-section .footer-box .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    text-align: center;
    margin-right: 10px;
    border-radius: 3px;
    background: var(--primary);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.footer-section .footer-box .social-links a i {
    color: var(--white);
}

.footer-section .footer-box .social-links a:hover {
    background: var(--bgDark);
}

.footer-section .footer-box .input-group {
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}

.footer-section .footer-box .input-group .form-control {
    border: none;
    height: 40px;
    padding: 15px;
    caret-color: var(--primary);
}

.footer-section .footer-box .input-group .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.footer-section .footer-box .input-group button {
    background: var(--primary);
    color: var(--white);
    height: 40px;
    width: 40px;
    border: none;
    border-radius: 3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.footer-section .footer-box .input-group button:hover {
    background: var(--bgDark);
}

.footer-section .footer-bottom {
    color: var(--white);
}

.footer-section .footer-bottom .copyright a {
    color: var(--primary);
}

.footer-section .footer-bottom .language {
    text-align: right;
    color: var(--white);
}

.footer-section .footer-bottom .language a {
    color: var(--primary);
    margin-right: 15px;
}

.rtl .footer-section .footer-box .input-group .form-control {
    border-top-right-radius: 3px !important;
    border-bottom-right-radius: 3px !important;
}

.rtl .footer-section .footer-box .input-group button {
    border-top-left-radius: 3px !important;
    border-bottom-left-radius: 3px !important;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.rtl .footer-section .footer-box .social-links a {
    margin-right: 0;
    margin-left: 10px;
}

.rtl .footer-section .footer-bottom .language a {
    margin-right: 0;
    margin-left: 15px;
}

.dark-mode .footer-section .footer-box .navbar-brand,
.dark-mode .footer-section .footer-box p,
.dark-mode .footer-section .footer-box a,
.dark-mode .footer-section .footer-box ul li {
    color: var(--white);
}

.dark-mode .footer-section .footer-box a:hover {
    color: var(--primary);
}

.dark-mode .footer-section .footer-box .social-links a:hover {
    background: var(--bgDark);
}

.dark-mode .footer-section .footer-box .input-group .form-control {
    background: var(--bgDark);
    color: #fff;
}

.dark-mode
    .footer-section
    .footer-box
    .input-group
    .form-control::-webkit-input-placeholder {
    color: var(--white);
}

.dark-mode
    .footer-section
    .footer-box
    .input-group
    .form-control:-ms-input-placeholder {
    color: var(--white);
}

.dark-mode
    .footer-section
    .footer-box
    .input-group
    .form-control::-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .footer-section .footer-box .input-group .form-control::placeholder {
    color: var(--white);
}

.dark-mode .footer-section .footer-box .input-group button:hover {
    background: var(--primary);
}

.dark-mode .footer-section p {
    color: var(--white);
}

.navbar .navbar-text .notification-panel {
    display: flex;
    flex-direction: row;
    gap: 3%;
}

.container-times-sport {
    border-top: 1px solid black !important;
}

.container-times-sport > td > .apost-match {
    flex-direction: column;
    gap: 8px;
}

.container-times-sport > td > .apost-match button {
    font-size: small;
}

.content .table-parent .table tbody .container-times-sport > td {
    border: 0 !important;
}

.content
    .table-parent
    .table
    tbody
    .container-times-sport
    > td:not(:last-child) {
    border-right: 1px solid black !important;
}

.card-box-blog p {
    color: black;
}

.subtitle-card-box {
    padding: 11px 12px;
    color: #333;
    border-radius: 0px 20px 20px 0;
    min-width: 245px;
}

.subtitle-card-box h2 p {
    font-size: 28px;
}

.subtitle-card-box span {
    vertical-align: middle;
}

.title-card-box {
    grid-column: 2;
    margin: 4px 0 0;
    word-wrap: break-word;
}

.title-card-box p {
    font-size: 30px;
}

.image-card-box {
    margin: 0;
    grid-column: 1;
    grid-row: 1 / span 5;
}

.image-card-box > a > div {
    box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.1);
    background-color: #ccc;
    background-position: 50%;
    background-size: cover;
    overflow: hidden;
    padding-top: 56.25%;
    position: relative;
    width: 100%;
    border-radius: 12px;
}

.image-card-box > a > div > picture {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: inherit;
}

.image-card-box > a > div > picture > img {
    color: transparent;
    height: 100%;
    width: 100%;
    border-radius: inherit;
}

.data-card-box {
    width: fit-content;
    color: black;
    display: flex;
    padding: 8px 12px;
    gap: 10px;
    position: relative;
    align-items: center;
}

.data-card-box span {
    white-space: nowrap;
}

.blog-section {
    padding: 100px 0;
    margin-bottom: 100px;
}

.blog-section .box {
    background: var(--bgColor2);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    bottom: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    padding: 30px;
}

.blog-section .box .img-box img {
    border-radius: 10px;
}

.blog-section .box:hover {
    bottom: 10px;
}

.blog-section .box .text-box {
    margin-top: 15px;
}

.blog-section .box .text-box .title {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    color: var(--white);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.blog-section .box .text-box .title:hover {
    color: var(--primary);
}

.blog-section .box .text-box .category {
    background: var(--primary);
    color: var(--black);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 15px;
}

.blog-section .box .text-box .date-author {
    margin-top: 15px;
}

.blog-section .box .text-box .date-author span i {
    font-size: 16px;
    color: var(--primary);
    margin-right: 5px;
}

.flex {
    display: flex;
}

.rtl .blog-section .box .text-box .date-author .author i {
    margin-right: 0;
    margin-left: 5px;
}

.rtl .blog-section .box .text-box .date-author span.float-end {
    float: left !important;
}

.blog-details {
    color: white;
    padding: 100px 0 0 0;
    max-width: calc(80%);
    margin: 0 auto;
}

.blog-details .img-box {
    margin-bottom: 15px;
}

.blog-details .img-box img {
    border-radius: 3px;
}

.blog-details .blog-box {
    margin-bottom: 50px;
}

.blog-details .blog-box:last-child {
    margin-bottom: 0;
}

.blog-details .blog-box .text-box {
    margin-top: 15px;
}

.blog-details .blog-box .text-box .title {
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 700;
    color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.blog-details .blog-box .text-box .category {
    background: var(--bgDark);
    color: var(--white);
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 15px;
}

.blog-details .blog-box .text-box .date-author {
    margin-top: 15px;
    margin-bottom: 15px;
}

.blog-details .blog-box .text-box .date-author span i {
    font-size: 16px;
    color: var(--primary);
    margin-right: 5px;
}

.blog-details .blog-box .text-box .read-more {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.blog-details .related-post {
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.blog-details .related-post .img-box {
    width: 40%;
    margin-right: 15px;
}

.blog-details .related-post .text-box {
    width: 60%;
}

.blog-details .related-post .title {
    display: block;
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 700;
    color: black;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.blog-details .related-post .title h3,
h4 {
    opacity: 1 !important;
}

.blog-details .related-post .title h4 {
    color: black;
}

.blog-details .related-post .category {
    background: var(--bgDark);
    color: var(--white);
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 5px;
}

.blog-details .side-box {
    background: var(--white);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 3px;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}

.blog-details .side-box h5 {
    text-transform: capitalize;
    margin-bottom: 15px;
}

.blog-details .side-box .links {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.blog-details .side-box .links li {
    margin-bottom: 10px;
}

.blog-details .side-box .links li a {
    color: var(--gray);
    text-transform: capitalize;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.blog-details .side-box .links li a:hover {
    color: var(--primary);
}

.blog-details .side-box .links li:last-child {
    margin-bottom: 0;
}

.blog-details .input-group .form-control {
    border: none;
    height: 40px;
    padding: 15px;
    caret-color: var(--primary);
    border: 1px solid var(--borderColor);
    border-right: none;
}

.blog-details .input-group .form-control:focus {
    color: var(--bgDark);
    background-color: #fff;
    border-color: var(--primary);
    outline: 0;
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.blog-details .input-group button {
    background: var(--primary);
    color: var(--white);
    height: 40px;
    width: 40px;
    border: none;
    border-radius: 3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.blog-details .input-group button:hover {
    background: var(--bgDark);
}

.dark-mode .blog-details .blog-box .text-box .title {
    color: var(--white);
}

.dark-mode .blog-details .blog-box .text-box .title:hover {
    color: var(--primary);
}

.dark-mode .blog-details .blog-box .text-box .category {
    background: var(--primary);
}

.dark-mode .blog-details .blog-box .text-box .read-more {
    color: var(--primary);
}

.dark-mode .blog-details .input-group .form-control {
    background: var(--bgDark);
    border: 1px solid var(--bgDark);
    color: var(--white);
}

.dark-mode .blog-details .input-group .form-control:focus {
    border: 1px solid var(--primary);
}

.dark-mode .blog-details .input-group .form-control::-webkit-input-placeholder {
    color: var(--white);
}

.dark-mode .blog-details .input-group .form-control:-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .blog-details .input-group .form-control::-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .blog-details .input-group .form-control::placeholder {
    color: var(--white);
}

.dark-mode .blog-details .side-box {
    background: var(--bgDark2);
}

.dark-mode .blog-details .side-box .links li a {
    color: var(--white);
}

.dark-mode .blog-details .side-box .links li a:hover {
    color: var(--primary);
}

.rtl .blog-details .blog-box .text-box .date-author .author i {
    margin-right: 0;
    margin-left: 5px;
}

.rtl .blog-details .blog-box .text-box .date-author span.float-end {
    float: left !important;
}

.rtl .blog-details .related-post .img-box {
    margin-right: 0;
    margin-left: 15px;
}

.rtl .blog-details .input-group .form-control {
    border-right: 1px solid var(--borderColor);
    border-left: none;
    border-top-right-radius: 3px !important;
    border-bottom-right-radius: 3px !important;
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
}

.rtl .blog-details .input-group .form-control:focus {
    border: 1px solid var(--primary);
    border-left: none;
}

.rtl .blog-details .input-group button {
    border-top-left-radius: 3px !important;
    border-bottom-left-radius: 3px !important;
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

div .tag-blog {
    background: #051eff;
    color: white !important;
    width: fit-content;
    display: flex;
    justify-content: space-evenly;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 15px !important;
}

div .tag-blog span {
    color: white !important;
}

.blog-list .blog-box .text-box {
    margin-top: 0;
}

.blog-list h2 {
    padding: 0;
}

.blog-list p {
    margin: 0;
}

.blog-list a {
    color: white;
}

.pagination {
    border-radius: 10px;
    overflow: hidden;
    padding: 5px 0;
}

.pagination .page-link {
    border: none;
    background: var(--white);
    color: var(--bgDark);
    text-align: center;
    padding: 7 16px;
    margin: 0 10px;
    border-radius: 3px !important;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    font-size: 14px;
    font-weight: 500;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.pagination .page-item:hover .page-link,
.pagination .page-item.active .page-link {
    background: var(--primary);
    color: var(--white);
}

.pagination .page-item.disabled .page-link {
    background: var(--white);
    color: var(--bgDark);
}

.pagination .page-link:focus {
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 109, 253, 0.211);
    box-shadow: 0 0 0 0rem rgba(13, 109, 253, 0.211);
}

.pagination-content {
    justify-content: center;
    display: flex;
    margin-top: 30px;
}

.dark-mode .pagination .page-link {
    background: var(--bgDark2);
    color: var(--white);
}

.dark-mode .pagination .page-item.disabled .page-link {
    background: var(--bgDark2);
    color: var(--white);
}

.content-sports {
    height: 90vh;
    overflow-y: auto;
}

.testimonial-section {
    padding: 100px 0;
}

.testimonial-section .header-text p {
    margin: auto;
}

.testimonial-section .review-box {
    background: var(--white);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    margin-bottom: 2px;
}

.testimonial-section .review-box .quote {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 24px;
    color: var(--primary);
}

.testimonial-section .review-box .upper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-section .review-box .upper .img-box {
    margin-right: 15px;
}

.testimonial-section .review-box .upper .img-box img {
    width: 80px;
    height: 80px;
    border-radius: 100px;
}

.testimonial-section .review-box .upper .client-info h5 {
    text-transform: capitalize;
}

.testimonial-section .review-box .upper .client-info span {
    color: var(--primary);
}

.testimonial-section .owl-dots {
    display: block;
    text-align: center;
}

.testimonial-section .owl-dots .owl-dot {
    width: 7px;
    height: 7px;
    background: var(--primary);
    margin: 0 2px;
    border-radius: 5px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.testimonial-section .owl-dots .owl-dot.active {
    width: 21px;
}

.rtl .testimonial-section {
    direction: ltr;
}

.rtl .testimonial-section .review-box {
    direction: rtl;
}

.rtl .testimonial-section .review-box .upper .img-box {
    margin-right: 0;
    margin-left: 15px;
}

.rtl .testimonial-section .review-box .quote {
    right: auto;
    left: 30px;
}

.dark-mode .testimonial-section .review-box {
    background: var(--bgDark2);
}

.dark-mode .testimonial-section .review-box h5,
.dark-mode .testimonial-section .review-box p {
    color: var(--white);
}

.ul-container-toppage-game {
    margin-block-end: 0;
    padding: 10px 0px;
    overflow: hidden;
    overflow-x: scroll;
    width: 100%;
    white-space: nowrap;
    list-style: none;
    transform: translateZ(0);
    scroll-padding: 50px 50px 50px 50px;
    scrollbar-width: none;
    margin: 0;
}

.container-toppage-game {
    list-style: none;
    display: inline-block;
    box-sizing: border-box;
    vertical-align: middle;
    position: relative;
}

.container-toppage-game a {
    border-radius: calc(8px + 2px);
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    box-sizing: border-box;
    display: block;
    contain: layout;
    z-index: 0;
    -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.5, 0, 0.1, 1);
    transition: transform 0.1s cubic-bezier(0.5, 0, 0.1, 1);
    transition-delay: 0s;
    background-color: rgba(255, 255, 255, 0.07);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    position: relative;
    margin-left: 0;
    margin-top: 0;
    width: 100%;
    height: 100%;
}

.container-toppage-game a:hover {
    border-radius: calc(10px);
    border-width: 2px;
    border-style: solid;
    border-color: rgb(104, 66, 255);
    box-shadow: rgba(0, 0, 0, 0.57) 0px 0px 7px 1px;
    transition: border-color 0.2s ease-in-out;
}

.container-toppage-game a img {
    -webkit-transition: opacity 0.3s cubic-bezier(0.5, 0, 0.1, 1);
    transition: opacity 0.3s cubic-bezier(0.5, 0, 0.1, 1);
    transition-delay: 0ms;
    z-index: 1;
    border-radius: 8px;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    color: transparent;
}

.container-toppage-game > div {
    display: grid;
    height: 100%;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 4px 4px;
}

.game-name {
    opacity: 0;
    color: rgb(255, 255, 255);
    position: absolute;
    bottom: 5px;
    margin-bottom: 8px;
    margin-left: 8px;
    z-index: 4;
    font-size: 11.2px;
    font-weight: 700;
    width: calc(100% - 16px);
    height: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
}

.container-toppage-game a:hover .game-name {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

.game-tile:hover .game-name {
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

@media (min-width: 0px) {
    .container-toppage-game {
        width: calc((100vw - 76px) / 1.1);
        height: calc(
            ((((100vw - (76px)) / 1.1) - 4px) * 0.5617977528089888) + 4px
        );
    }

    .right-games,
    .left-games {
        height: calc(((((100vw - (76px)) / 1.1) - 4px) * 0.5617977528089888));
    }

    .right-games.btn-games-menor,
    .left-games.btn-games-menor {
        height: calc(
            ((((100vw - (76px)) / 2.25) - 4px) * 0.5617977528089888) + 4px
        );
    }
}

@media (min-width: 600px) {
    .container-toppage-game {
        width: calc((100vw - 76px) / 1.6);
        height: calc(
            ((((100vw - (76px)) / 1.6) - 4px) * 0.5617977528089888) + 4px
        );
    }

    .right-games,
    .left-games {
        height: calc(((((100vw - (76px)) / 1.6) - 4px) * 0.5617977528089888));
    }

    .right-games.btn-games-menor,
    .left-games.btn-games-menor {
        height: calc(
            ((((100vw - (76px)) / 3.25) - 4px) * 0.5617977528089888) + 4px
        );
    }
}

@media (min-width: 800px) {
    .container-toppage-game {
        width: calc((100vw - 76px) / 2.1);
        height: calc(
            ((((100vw - (76px)) / 2.1) - 4px) * 0.5617977528089888) + 4px
        );
    }

    .right-games,
    .left-games {
        height: calc(((((100vw - (76px)) / 2.1) - 4px) * 0.5617977528089888));
    }

    .right-games.btn-games-menor,
    .left-games.btn-games-menor {
        height: calc(
            ((((100vw - (76px)) / 4.25) - 4px) * 0.5617977528089888) + 4px
        );
    }
}

@media (min-width: 1000px) {
    .container-toppage-game {
        width: calc((100vw - 76px) / 2.6);
        height: calc(
            ((((100vw - (76px)) / 2.6) - 4px) * 0.5617977528089888) + 4px
        );
    }

    .right-games,
    .left-games {
        height: calc(((((100vw - (76px)) / 2.6) - 4px) * 0.5617977528089888));
    }

    .right-games.btn-games-menor,
    .left-games.btn-games-menor {
        height: calc(
            ((((100vw - (76px)) / 5.25) - 4px) * 0.5617977528089888) + 4px
        );
    }
}

@media (min-width: 1200px) {
    .container-toppage-game {
        width: calc((100vw - 76px) / 3.1);
        height: calc(
            ((((100vw - (76px)) / 3.1) - 4px) * 0.5617977528089888) + 4px
        );
    }

    .right-games,
    .left-games {
        height: calc(((((100vw - (76px)) / 3.1) - 4px) * 0.5617977528089888));
    }

    .right-games.btn-games-menor,
    .left-games.btn-games-menor {
        height: calc(
            ((((100vw - (76px)) / 6.25) - 4px) * 0.5617977528089888) + 4px
        );
    }
}

@media (min-width: 1700px) {
    .container-toppage-game {
        width: calc((100vw - 76px) / 3.6);
        height: calc(
            ((((100vw - (76px)) / 3.6) - 4px) * 0.5617977528089888) + 4px
        );
    }

    .right-game,
    .left-gamess {
        height: calc(((((100vw - (76px)) / 3.6) - 4px) * 0.5617977528089888));
    }

    .right-games.btn-games-menor,
    .left-games.btn-games-menor {
        height: calc(
            ((((100vw - (76px)) / 7.25) - 4px) * 0.5617977528089888) + 4px
        );
    }
}

@media (min-width: 1910px) {
    .container-toppage-game {
        width: calc((100vw - 216px) / 3.6);
        height: calc(
            ((((100vw - (216px)) / 3.6) - 4px) * 0.5617977528089888) + 4px
        );
    }

    .right-games,
    .left-games {
        height: calc(((((100vw - (216px)) / 3.6) - 4px) * 0.5617977528089888));
    }

    .right-games.btn-games-menor,
    .left-games.btn-games-menor {
        height: calc(
            ((((100vw - (216px)) / 7.25) - 4px) * 0.5617977528089888) + 4px
        );
    }
}

@media (min-width: 2100px) {
    .container-toppage-game {
        width: calc((100vw - 216px) / 4.1);
        height: calc(
            ((((100vw - (216px)) / 4.1) - 4px) * 0.5617977528089888) + 4px
        );
    }

    .right-games,
    .left-games {
        height: calc(((((100vw - (216px)) / 4.1) - 4px) * 0.5617977528089888));
    }

    .right-games.btn-games-menor,
    .left-games.btn-games-menor {
        height: calc(
            ((((100vw - (216px)) / 8.25) - 4px) * 0.5617977528089888) + 4px
        );
    }
}

@media (max-width: 991px) {
    .bottom-bar {
        opacity: 1;
        visibility: visible;
    }

    .leftbar {
        left: -100%;
        display: none;
        position: absolute;
        min-width: 0%;
        max-width: 250px !important;
    }

    .user-panel {
        min-width: 50%;
    }

    .leftbar.active {
        left: 0;
        padding-bottom: 85px;
        display: block;
        max-width: 100%;
        max-height: calc(100% - 154px) !important;
    }

    .rightbar {
        display: none;
        -webkit-transition: opacity 0s;
        transition: opacity 0s;
    }

    .right-bar-open {
        opacity: 1;
        display: block;
    }

    .rtl .leftbar {
        left: auto;
        right: -100%;
    }

    .rtl .leftbar.active {
        right: 0;
    }

    .rtl .rightbar {
        right: auto;
        left: -100%;
    }

    .rtl .rightbar.active {
        left: 0;
    }

    .wrapper .content {
        width: calc(100% - 0px) !important;
    }

    .categories a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .table tbody {
        padding: 10px;
    }

    .table tr {
        border-bottom: 1px solid var(--borderColor);
    }

    .table tr td {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        border: none !important;
        padding: 2px 10px;
    }

    .table tr td:nth-child(2) {
        display: block;
    }

    .table tr td:first-child {
        padding-top: 10px;
    }

    .table tr td:last-child {
        padding-bottom: 10px;
    }

    .table .btn-group {
        width: 100%;
    }

    .table tbody > tr:nth-of-type(even) > * {
        border: 0px solid var(--primary) !important;
    }

    .table tbody > tr:nth-of-type(odd) > * {
        border: 0px solid var(--primary) !important;
    }

    .dark-mode .table tbody tr {
        border-bottom: 1px solid var(--bgDark);
    }

    .dark-mode .table tbody > tr:nth-of-type(even) > * {
        border: 0px solid var(--primary) !important;
    }

    .dark-mode .table tbody > tr:nth-of-type(odd) > * {
        border: 0px solid var(--primary) !important;
    }
}

@media (max-width: 768px) {
    h1,
    h2 {
        font-size: 36px;
    }

    .navbar .nav-item {
        margin: 0;
        padding: 0;
    }

    .navbar .dropdown .dropdown-menu {
        display: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .rtl .navbar .navbar-brand {
        margin-right: 35px;
    }

    .rtl .navbar .navbar-text {
        left: 15px;
    }

    .login-section .overlay {
        padding: 50px 0;
    }

    .login-section .overlay .text h2 {
        font-size: 36px;
    }

    .login-section .form-wrapper {
        padding: 50px 0;
    }

    .navbar .navbar-text .btn-login {
        display: none !important;
    }

    .btn-perfil {
        display: flex;
        margin-right: -3em;
    }

    .description-game {
        background-color: #212233;
        color: white;
        border-radius: 0px 0px 10px 10px;
        padding: 10px;
        margin-top: 25.3em;
        max-width: 100%;
        margin-left: 0.5px;
        display: block;
    }

    img, video {
        max-width: 90%;
        height: auto;
    }

    #sidebar-home {
        width: 0;
    }

    #sidebar-home.active-nav-mobile {
        width: 180px;
    }

    #sidebar-home.active-nav-mobile span {
        display: flex;
    }

    .geral-list {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }

    .all-games .game-tile {
        min-width: 90px;
        max-width: 90px;
        height: 64px;
    }

    .container-all-games {
        margin: 0 auto !important;
    }

    .right-add {
        display: none;
    }

    .bottom-add {
        display: none;
    }

    .blogdetails {
        max-width: 90% !important;
    }

    .grid-container-posts {
        display: flex;
        flex-direction: column;
    }

    .subtitle-card-box h2 p {
        font-size: 18px;
    }

    .title-card-box p {
        font-size: 11px !important;
    }
}

@media (max-width: 575px) {
    .pagination .page-item:nth-of-type(n + 6):not(.active):not(:last-of-type) {
        display: none;
    }

    .navbar {
        padding: 0;
    }

    .label_skitter {
        padding-bottom: 50px;
        padding-left: 20px;
    }

    .rtl .label_skitter {
        padding-right: 20px;
        padding-left: 0;
    }

    .leftbar,
    .rightbar {
        width: 100%;
    }

    .banner-divi .dropdown {
        display: none;
    }

    .recompensa {
        display: none;
    }
}

.contact-section {
    padding: 100px 0;
}

.contact-section .header-text {
    margin-bottom: 30px;
}

.contact-section .text-box {
    background: white;
    padding: 52px;
    border-radius: 8px;
    margin: 53px;
}

.contact-section .header-text p {
    max-width: 450px;
}

.contact-section .info-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
}

.contact-section .info-box .icon-box {
    background: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 3px;
    text-align: center;
    padding-top: 10px;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}

.contact-section .info-box .icon-box i {
    color: var(--primary);
    font-size: 16px;
}

.contact-section .info-box .text {
    width: calc(100% - 80px);
    padding-left: 15px;
}

.contact-section .info-box .text p {
    margin-bottom: 0;
    margin-right: auto;
}

.contact-section .info-box .text h5 {
    margin-bottom: 5px;
}

.contact-section form h4 {
    text-transform: capitalize;
    margin-bottom: 15px;
}

.contact-section form .input-box label {
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.contact-section form .input-box .form-select,
.contact-section form .input-box .form-control {
    height: 40px;
    border-radius: 3px;
    background-color: var(--white);
    border: 1px solid var(--white);
    padding: 8px;
    padding-left: 12px;
    font-weight: normal;
    caret-color: var(--primary);
    color: var(--gray);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}

.contact-section form .input-box .form-select:focus,
.contact-section form .input-box .form-control:focus {
    color: var(--gray);
    -webkit-box-shadow: 0 0 0 0rem var(--white);
    box-shadow: 0 0 0 0rem var(--white);
    border: 1px solid var(--primary);
}

.contact-section form .input-box .form-select::-webkit-input-placeholder,
.contact-section form .input-box .form-control::-webkit-input-placeholder {
    color: var(--gray);
}

.contact-section form .input-box .form-select:-ms-input-placeholder,
.contact-section form .input-box .form-control:-ms-input-placeholder {
    color: var(--gray);
}

.contact-section form .input-box .form-select::-ms-input-placeholder,
.contact-section form .input-box .form-control::-ms-input-placeholder {
    color: var(--gray);
}

.contact-section form .input-box .form-select::placeholder,
.contact-section form .input-box .form-control::placeholder {
    color: var(--gray);
}

.contact-section form .input-box .form-select {
    background-image: url(../images/icon/downward-arrow.png);
}

.contact-section form .input-box .form-select option {
    background: var(--white);
    color: var(--gray);
}

.contact-section form .input-box textarea.form-control {
    height: 150px;
    border-radius: 3px;
}

.contact-section .btn-custom {
    height: 40px;
}

.rtl .contact-section .info-box .text {
    padding-left: 0;
    padding-right: 15px;
}

.not-found {
    height: 100vh;
}

.not-found .text-box img {
    width: 300px;
}

.not-found .text-box a {
    color: var(--primary);
    text-transform: capitalize;
}

.dark-mode .contact-section .info-box .icon-box {
    background: var(--bgDark2);
}

.dark-mode .contact-section form .input-box .form-select,
.dark-mode .contact-section form .input-box .form-control {
    background-color: var(--bgDark2);
    border: 1px solid var(--bgDark2);
    color: var(--white);
}

.dark-mode
    .contact-section
    form
    .input-box
    .form-select::-webkit-input-placeholder,
.dark-mode
    .contact-section
    form
    .input-box
    .form-control::-webkit-input-placeholder {
    color: var(--white);
}

.dark-mode .contact-section form .input-box .form-select:-ms-input-placeholder,
.dark-mode
    .contact-section
    form
    .input-box
    .form-control:-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .contact-section form .input-box .form-select::-ms-input-placeholder,
.dark-mode
    .contact-section
    form
    .input-box
    .form-control::-ms-input-placeholder {
    color: var(--white);
}

.dark-mode .contact-section form .input-box .form-select::placeholder,
.dark-mode .contact-section form .input-box .form-control::placeholder {
    color: var(--white);
}

.dark-mode .contact-section form .input-box .form-select:focus,
.dark-mode .contact-section form .input-box .form-control:focus {
    border: 1px solid var(--primary);
}

/*# sourceMappingURL=style.css.map */
.policy {
    padding: 60px;
}

.login-section form .input-box .form-select option {
    border-radius: 3px;
    background-color: #f4f9fc;
    padding: 8px;
    padding-left: 12px;
    font-weight: normal;
    caret-color: var(--primary);
    color: var(--gray);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}

.line-h22 {
    line-height: 2.2;
}

.modal-body form .input-box .form-select option {
    border-radius: 3px;
    background-color: #f4f9fc;
    padding: 8px;
    padding-left: 12px;
    font-weight: normal;
    caret-color: var(--primary);
    color: var(--gray);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}

.feature-wrapper.add-fund .card-type-1 {
    border-radius: 10px;
    background-position: bottom;
    background-repeat: no-repeat;
    box-shadow: none;
    padding: 25px 25px;
}

.feature-wrapper .card-type-1 {
    border-radius: 10px;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    box-shadow: none;
}

.dark-mode .feature-wrapper.add-fund .card-type-1 {
    background: var(--bgDark2);
}

.card-type-1.card {
    align-items: center;
    height: 100%;
    padding: 50px 15px;
    border: 0;
    border-radius: 4px;
    box-shadow: none;
}

.feature-wrapper {
    position: relative;
    top: -70px;
}

.top-0 {
    top: 0 !important;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-section .overlay .row {
    display: flex;
    justify-content: space-between;
}

.footer-section .overlay .row .footer-text {
    width: 35%;
}

.footer-section .overlay .row .footer-links {
    width: 15%;
}

.footer-section .overlay .row .footer-email {
    width: 25%;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.line-h51 {
    line-height: 51px;
}

.dark-mode .payment-info .list-group-item {
    color: #fff;
}

.w-15 {
    width: 15%;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: #ffffff;
    border: 1px solid #e4e6eb;
    height: 100%;
}

.dark-mode .input-group-text {
    color: #fffff6;
    background-color: var(--bgDark);
    border: 1px solid #233645;
}

.text--danger,
.text-danger {
    color: #e74c3c !important;
}

.container-custom {
    margin-top: 20px;
    margin-left: 20px;
}

.dark-mode .card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: var(--bgDark2);
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

.dark-mode .card-js input {
    background-color: #294056;
}

.wh-200-150 {
    width: 200px;
    height: 150px;
}

.user-panel .form {
    background: var(--white);
    -webkit-box-shadow: var(--shadow);
    border-radius: 5px;
    padding: 0px;
}

.btn-w145 {
    width: 145px;
    height: 35px;
    display: inline-block;
    text-align: center;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 600;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

a:hover {
    color: #ffffff;
}

.image-input {
    position: relative;
    width: 100%;
    min-height: 300px;
    background: #f0f8ff;
}

.image-input #image {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}

.image-input #image-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 70px 100px;
    z-index: 5;
    opacity: 0.3;
    cursor: pointer;
    background-color: #fff;
    font-size: 25px;
    border: 2px dashed #000;
    margin: auto;
    text-align: center;
}

.image-input .preview-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 150px;
}

.card.secbg.form-block .nav-tabs {
    border-bottom: 1px solid var(--primary);
}

.card.secbg.form-block .nav-tabs .nav-link {
    margin-bottom: -1px;
}

.card.secbg.form-block .nav-tabs .nav-link:focus,
.card.secbg.form-block .nav-tabs .nav-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.dark-mode .card.secbg.form-block .nav-tabs .nav-link:focus,
.dark-mode .card.secbg.form-block .nav-tabs .nav-link:hover {
    border-color: var(--primary);
    color: #fff;
    isolation: isolate;
}

.dark-mode .card.secbg.form-block .nav-tabs .nav-link {
    color: #fff;
}

.dark-mode .image-input {
    background: var(--bgDark);
}

.card.secbg.form-block .nav-tabs .nav-link.active {
    color: #fff !important;
    background-color: var(--primary);
    border-color: var(--primary);
}

.card.secbg.form-block .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #141720;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
}

.new-file-upload {
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: initial;
    overflow: hidden;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #5f76e8;
    cursor: pointer;
}

#upload {
    opacity: 0;
    cursor: pointer;
}

.new-file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
}

.submit-btn button {
    background: limegreen;
    padding: 9px 13px;
    border-radius: 50%;
    color: white;
    border: 1px solid limegreen;
    transition: background 0.1s ease;
}

.chat-box.scrollable.position-relative.scroll-height {
    background: #f7f5f5;
    padding: 10px;
    margin-top: 15px;
}

ul.chat-list.list-style-none {
    padding-left: 15px;
    padding-right: 15px;
    list-style: none;
}

.chat-img {
    padding-top: 9px;
    margin-right: 5px;
    vertical-align: top;
}

li.chat-item.list-style-none.replied.mt-3.text-sm-end {
    display: flex;
    flex-direction: row-reverse;
}

.dark-mode .chat-box.scrollable.position-relative.scroll-height {
    background: var(--bgDark2);
    padding: 10px;
    margin-top: 15px;
}

.modal .modal-content .modal-footer {
    border-top: 1px solid rgb(255 255 255);
    padding: 0rem !important;
}

.dark-mode .modal .modal-content .modal-footer {
    border-top: 1px solid rgb(41 64 86);
    padding: 0rem !important;
}

.dark-mode .btn-secondary {
    color: #e4ecf1;
    background-color: #121b23;
    border-color: #121b23;
}

#ref-label .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #fff;
    background-color: var(--primary);
}

#ref-label .nav-pills .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
}

.bg-warning {
    background-color: #f39c12 !important;
}

.w-90 {
    width: 90%;
}

.copytext {
    cursor: pointer;
    color: #ffffff !important;
    background-color: var(--primary) !important;
}
#Notiflix-Icon-Success,
#Notiflix-Icon-Failure,
#Notiflix-Icon-Warning,
#Notiflix-Icon-Info {
    fill: #fff !important;
}
[v-cloak] {
    display: none;
}

.dark-mode .table tbody > tr > * {
    border: 1px solid #5e627f !important;
}

.all-markets {
    margin: 15px;
    margin-bottom: 50px;
}

.all-markets-questions {
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
}
.all-markets .search-bar {
    background: var(--white);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
}

.all-markets .search-bar a {
    color: var(--bgDark);
    display: inline-block;
    padding: 7.5px 15px;
    font-weight: 600;
    white-space: nowrap;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.all-markets .search-bar a i {
    margin-right: 5px;
}

.all-markets .search-bar a:hover,
.all-markets .search-bar a.active {
    color: var(--primary);
}

.all-markets .search-bar .input-group {
    width: 300px;
    margin-left: auto;
}

.all-markets .search-bar .input-group .form-control {
    border: none;
    height: 35px;
    padding: 15px;
    caret-color: var(--primary);
    border: 1px solid var(--borderColor);
    border-right: none;
}

.all-markets .search-bar .input-group .form-control:focus {
    color: var(--bgDark);
    background-color: var(--white);
    border-color: var(--primary);
    outline: 0;
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.all-markets .search-bar .input-group button {
    background: var(--primary);
    color: var(--white);
    height: 35px;
    width: 40px;
    border: none;
    border-radius: 3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.all-markets .search-bar .input-group button:hover {
    background: var(--bgDark);
}

.all-markets .accordion-body button.disabled:hover {
    background: var(--bgLight);
    color: var(--black);
    position: relative;
    cursor: auto;
}

.all-markets .accordion-item {
    background: none;
    border: none;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    background: var(--white);
    border-radius: 3px !important;
}

.all-markets .accordion-button {
    background: var(--white);
    border-top-right-radius: 3px !important;
    border-top-left-radius: 3px !important;
    padding-left: 0px;
    font-size: 15px;
    font-weight: 500;
    padding: 10px;
    padding-right: 40px;
    text-transform: capitalize;
    color: var(--bgDark);
}

.all-markets .accordion-button i {
    color: var(--bgDark);
    margin-right: 5px;
    position: relative;
    top: 4px;
}

.all-markets .accordion-button:focus {
    z-index: 3;
    border-color: var(--primary);
    outline: 0;
    -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.all-markets .accordion-button::after {
    background-image: url(../images/icon/plus.png);
    background-size: cover;
    position: absolute;
    right: 15px;
    height: 24px;
    width: 24px;
    background-position: center;
}

.all-markets .accordion-body {
    padding: 10px;
}

.all-markets .accordion-body button {
    background: var(--bgLight);
    color: var(--black);
    width: 100%;
    font-weight: 500;
    padding: 5px 8px;
    margin: 0 2px;
    border-radius: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.all-markets .accordion-body button:hover {
    background: var(--primary);
    color: var(--white);
}

.all-markets .accordion-button:not(.collapsed) {
    color: var(--primary);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.all-markets .accordion-button:not(.collapsed) i {
    color: var(--primary);
}

.all-markets .accordion-button:not(.collapsed)::after {
    background-image: url(../images/icon/minus.png);
}

.loadingScreen {
    display: flex;
    justify-content: center;
}

.dark-mode .all-markets .search-bar {
    background: var(--bgDark2);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}

.dark-mode .all-markets .search-bar a {
    color: var(--white);
}

.dark-mode .all-markets .search-bar a:hover,
.dark-mode .all-markets .search-bar a.active {
    color: var(--white);
}

.dark-mode .all-markets .search-bar .input-group {
    caret-color: var(--primary);
}

.dark-mode .all-markets .search-bar .input-group .form-control {
    background: var(--bgDark);
    border: 1px solid var(--bgDark);
    color: var(--white);
}

.dark-mode .all-markets .search-bar .input-group:focus {
    color: var(--white);
    background-color: var(--white);
    border-color: var(--primary);
}

.dark-mode .all-markets .search-bar button {
    background: var(--primary);
    color: var(--white);
}

.dark-mode .all-markets .search-bar button:hover {
    background: var(--bgDark);
}

.dark-mode .accordion-item {
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    background: var(--bgDark2);
}

.dark-mode .accordion-button {
    background: var(--bgDark2);
    color: var(--white);
}

.dark-mode .accordion-button i {
    color: var(--white);
}

.dark-mode .accordion-button:focus {
    border-color: var(--primary);
}

.dark-mode .accordion-button::after {
    background-image: url(../images/icon/plus.png);
}

.dark-mode .accordion-body button {
    background: var(--bgDark);
    color: var(--white);
}

.dark-mode .accordion-body button:hover {
    background: var(--primary);
    color: var(--white);
}

.dark-mode .accordion-button:not(.collapsed) {
    color: var(--white);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.dark-mode .accordion-button:not(.collapsed) i {
    color: var(--white);
}

.dark-mode .accordion-button:not(.collapsed)::after {
    background-image: url(../images/icon/minus.png);
}

.rtl .all-markets .search-bar a i {
    margin-right: 0;
    margin-left: 5px;
}

.rtl .all-markets .input-group .form-control {
    border: 1px solid var(--borderColor);
    border-radius: 3px !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-left: none;
}

.rtl .all-markets .input-group .form-control:focus {
    border-color: var(--primary);
    border-left: none;
}

.rtl .all-markets .input-group button {
    border-radius: 0;
    border-top-left-radius: 3px !important;
    border-bottom-left-radius: 3px !important;
}

.rtl .all-markets .accordion-button {
    padding-right: 15px;
    padding-left: 40px;
    text-align: right;
}

.rtl .all-markets .accordion-button i {
    margin-right: 0;
    margin-left: 5px;
}

.rtl .all-markets .accordion-button::after {
    right: auto;
    left: 15px;
}

@media (max-width: 767px) {
    .service-table tr td:nth-child(2),
    #service-table tr td:nth-child(2) {
        display: flex;
    }

    .table tbody tr td {
        text-align: right !important;
    }

    .table tbody tr {
        display: block;
    }

    .table tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: end;
        padding-left: 25px;
    }

    .table tbody tr td:last-child {
        border: none;
    }

    .table tbody tr td::before {
        content: attr(data-label);
        font-family: "Roboto", sans-serif;
        font-size: 15px;
        font-weight: 500;
    }
}
.modal-custom-content {
    position: relative;
    /* display: flex; */
    /* flex-direction: column; */
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1pxsolidrgba (0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
    align-content: flex-start;
}
.dark-mode .modal-custom-content {
    background: var(--bgDark2);
}
.modal .modal-custom-content .modal-footer {
    border-top: 1px solid rgb(255 255 255);
    padding: 0rem !important;
}

.dark-mode .modal .modal-custom-content .modal-footer {
    border-top: 1px solid rgb(41 64 86);
    padding: 0rem !important;
}

.table thead .w-10 {
    width: 40px !important;
}
.table tr td button.disabled {
    background: var(--bgLight);
    color: var(--black);
    position: relative;
    cursor: auto;
}

.table tr td button.disabled i {
    position: absolute;
    top: -4px;
    right: -2px;
    font-size: 14px;
    color: var(--bgDark);
}

.table tr td button.downgrade {
    background: rgba(255, 0, 0, 0.1);
}

.table tr td button.downgrade:hover {
    background: var(--primary);
    color: var(--white);
}

.table tr td button.upgrade {
    background: rgba(0, 128, 0, 0.1);
}

.table tr td button.upgrade:hover {
    background: var(--primary);
    color: var(--white);
}

/* dark mode */

.dark-mode .table tr td button.disabled {
    background: var(--bgDark);
    color: var(--white);
}

.dark-mode .table tr td button.disabled i {
    color: var(--white);
}

.dark-mode .table tr td button.downgrade {
    background: rgb(167 88 88 / 32%);
}
.dark-mode .table tr td button.downgrade:hover {
    background: var(--primary);
    color: var(--white);
}

.dark-mode .table tr td button.upgrade {
    background: rgba(0, 128, 0, 0.2);
}

.dark-mode .table tr td button.upgrade:hover {
    background: var(--primary);
    color: var(--white);
}

.live-matches .downgrade-mobile {
    background: rgb(167 88 88 / 32%) !important;
}
.dark-mode .live-matches .downgrade-mobile {
    background: rgb(167 88 88 / 32%) !important;
}
.dropdown-item.active {
    color: #ffffff;
    text-decoration: none;
    background-color: var(--primary);
}

.dropdown-item {
    border-radius: 18px;
}

.dashboard__card-icon i {
    font-size: 24px !important;
}
.dashboard__card-icon img {
    max-width: 24px;
}
.dashboard__card,
.deposit-group,
.post__item-content .post-creator {
    display: flex;
    flex-wrap: wrap;
}

div[class*="col"]:nth-of-type(4n + 1) .dashboard__card {
    background: #ffffff;
}
.dark-mode div[class*="col"]:nth-of-type(4n + 1) .dashboard__card {
    background: var(--bgDark2);
}

div[class*="col"]:nth-of-type(4n + 1) .dashboard__card-icon {
    color: #ff3653;
}

.dashboard__card-icon,
.dashboard-link,
.feature-item_icon,
.counter-item_icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

div[class*="col"]:nth-of-type(4n + 1) .dashboard__card .view-btn {
    color: #ff3653;
}

div[class*="col"]:nth-of-type(4n + 2) .dashboard__card {
    background: #ffffff;
}
.dark-mode div[class*="col"]:nth-of-type(4n + 2) .dashboard__card {
    background: var(--bgDark2);
}

div[class*="col"]:nth-of-type(4n + 2) .dashboard__card-icon {
    color: #9f09ff;
}

div[class*="col"]:nth-of-type(4n + 2) .dashboard__card .view-btn {
    color: #9f09ff;
}

div[class*="col"]:nth-of-type(4n + 3) .dashboard__card {
    background: #ffffff;
}
.dark-mode div[class*="col"]:nth-of-type(4n + 3) .dashboard__card {
    background: var(--bgDark2);
}

div[class*="col"]:nth-of-type(4n + 3) .dashboard__card-icon {
    color: #465aff;
}

div[class*="col"]:nth-of-type(4n + 3) .dashboard__card .view-btn {
    color: #465aff;
}

div[class*="col"]:nth-of-type(4n + 4) .dashboard__card {
    background: #ffffff;
}
.dark-mode div[class*="col"]:nth-of-type(4n + 4) .dashboard__card {
    background: var(--bgDark2);
}

div[class*="col"]:nth-of-type(4n + 4) .dashboard__card-icon {
    color: var(--brand-color);
}

div[class*="col"]:nth-of-type(4n + 4) .dashboard__card .view-btn {
    color: var(--brand-color);
}

.dashboard__card {
    background: linear-gradient(-45deg, #0f054c 0%, #22196d 100%);
    padding: 30px;
    border-radius: 10px;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1399px) and (min-width: 1200px) {
    .dashboard__card {
        padding: 25px;
    }
}

.dashboard__card-content .price {
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    color: #233645;
}
.dark-mode .dashboard__card-content .price {
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    color: #ffffff;
}

@media (max-width: 1399px) {
    .dashboard__card-content .price {
        font-size: 15px;
    }
}

.dashboard__card-content .info {
    color: #233645;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
}
.dark-mode .dashboard__card-content .info {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 1399px) and (min-width: 1200px) {
    .dashboard__card-content .info {
        font-size: 13px;
    }
}

.dashboard__card-icon {
    color: #f1f3f4;
    background: #f1f3f4;
    font-size: 36px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    text-shadow: 2px 3px 5px;
    box-shadow: 0 3px 12px 3px rgba(255, 255, 255, 0.15);
}
.dark-mode .dashboard__card-icon {
    color: #233645;
    background: var(--bgDark);
    font-size: 36px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    text-shadow: none;
    box-shadow: none;
}

@media (max-width: 1399px) and (min-width: 992px) {
    .dashboard__card-icon {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }
}

@media (max-width: 1399px) and (max-width: 450px) {
    .dashboard__card-icon {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }
}

.dashboard-section {
    position: relative;
    overflow: hidden;
}

.dashboard-section .shape1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.1;
}

.dashboard-section .shape1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dashboard-section .container {
    position: relative;
    z-index: 1;
}
.apexcharts-canvas {
    position: relative;
    user-select: none;
    max-width: 800px;
}

.bloco {
    position: relative;
    padding: 10px;
    max-width: 1241px;
    margin: 0 auto;
    width: 100%;
}

.pic {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.game-button-demo {
    position: relative;
    background-color: #111111;
    color: #ffffff;
    width: 6rem;
    height: 2.3rem;
    bottom: 75%;
    left: 25%;

    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.carousel-content .game-button-demo {
    position: static;
}

.game-button-play {
    position: relative;
    background-color: var(--primary);
    color: #ffffff;
    width: 6rem;
    height: 2.3rem;
    bottom: 67%;
    left: 25%;

    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.container-game-imp{
    height: 30rem !important;
}

.carousel-content .game-button-play {
    position: static;
}

.game-list {
    display: flex;
    flex-wrap: wrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
    gap: 7px;
    justify-content: flex-start;
}

.game-popular {
    margin-left: 0;
    max-width: 94%;
}

.popular-content {
    margin: 0 auto;
}

.owl-carousel .owl-item {
    display: flex;
    justify-content: center;
}

.game-tile:hover .game-button-demo {
    opacity: 1 !important;
}

.game-tile:hover .game-button-play {
    opacity: 1 !important;
}

.button-image-popular .game-button-play,
.button-image-popular .game-button-demo {
    opacity: 1 !important;
}

.game-tile {
    position: relative;
    max-width: 215px;
    min-width: 215px;
    max-height: 120px;
}

.game-list .game-tile:hover > img {
    transition: filter 0.2s ease-in-out;
    filter: brightness(20%);
}

.owl-item .game-tile:hover > img {
    filter: brightness(100%);
}

.game-tile .btn:hover {
    color: #ffffff;
}

.filter {
    display: flex !important;
    flex-wrap: wrap;
    gap: 5px;
    padding-top: 10px;
    padding-bottom: 15px;
}

.filter h3 {
    color: white !important;
    opacity: 1;
}

.icon.seta {
    text-align: center;
    font-size: 45px;
    color: #4c4c4c;
    width: 50px;
    height: 50px;
    background: transparent;
    margin: auto;
    float: none;
    display: block;
    opacity: 0;
    animation: anima-seta 900ms ease infinite;
}
@keyframes anima-seta {
    to {
        opacity: 1;
        transform: translateY(18px);
    }
}

.x-filtro {
    position: absolute;
    display: none;
    top: 11px;
    right: 20px;
    cursor: pointer;
}

.x-fitro:hover {
    display: block;
}

.search-box {
    position: relative;
    width: 200px;
}

.select-box {
    position: relative;
    width: 200px;
}

.fa-search {
    cursor: pointer;
    position: absolute;
    top: 11px;
    left: 10px;
}

.dark-mode .fa-search i {
    color: var(--white);
}

.icon-radius {
    border-radius: 19px;
}

.carousel-inner {
    border-radius: 12px;
}

.carousel-item img {
    max-height: 540px;
}

.search-box input {
    padding-left: 30px;
    border-radius: 19px;
    text-align: start;
    padding-right: 40px;
    background: rgb(126, 97, 155);
    color: white;
}

.form-control::placeholder {
    color: white;
    font-size: 11px;
}

.form-control:focus::placeholder {
    color: white;
}

.form-control:focus {
    background: rgb(126, 97, 155);
    color: white;
}

.form-control {
    background: rgb(126, 97, 155);
    color: white;
}

.dark-mode .search-box input {
    background-color: var(--bgDark2);
}

.dark-mode .select-box select {
    background-color: var(--bgDark2);
    color: white;
}

.dark-mode ::placeholder {
    color: var(--white);
}

.dark-mode input[type="text"] {
    color: var(--white);
}

.language-dropdown .flag-icon {
    font-size: 25px;
    clip-path: circle();
}

.language-dropdown button {
    position: relative;
    bottom: 0.2px;
}

.play-center {
    bottom: 60.5%;
}

.bloco-header {
    display: flex;
    font-size: 16px;
    border-bottom: solid rgba(255, 255, 255, 0.25);
    margin-bottom: 1%;
}

.bloco-content .titulo {
    text-align: left;
    font-size: 22px;
    font-weight: 900;
    color: white;
    flex-grow: 1;
    text-transform: uppercase;
}

.titulo {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.game-list-inline {
    flex-wrap: nowrap;
    overflow: hidden;
}

.scroll-button {
    position: absolute;
    width: 10px;
    height: 142px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 5px;
    cursor: pointer;
    margin: 0;
    padding: 0;
    z-index: 2;
}

.scroll-button i {
    color: black;
}

.scroll-right {
    top: calc(28% - 0px);
    right: -3;
    background: white;
}

.scroll-left {
    top: calc(28% - 0px);
    left: -6px;
    display: none;
    background: white;
}

.more-games-fade {
    position: absolute;
    width: 15px;
    height: calc(75% + 0px);
    top: 49px;
    filter: blur(10px);
    z-index: 1;
}

.dark-mode .more-games-fade {
    position: absolute;
    width: 20px;
    height: calc(70% + 8px);
    top: 45px;
    filter: blur(7px);
    z-index: 1;
}

.more-games-fade-right {
    background-image: linear-gradient(to right, rgba(24, 24, 24, 0.7), #181818);
    right: 3px;
}

.more-games-fade-left {
    background-image: linear-gradient(to left, rgba(24, 24, 24, 0.7), #181818);
    left: -12px;
}

.ver-todos-link {
    font-size: 17px;
    color: white;
}

.ver-todos-link:hover {
    color: black;
}

.dark-mode .ver-todos-link:hover {
    color: white;
}

.bloco-content {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    width: calc(100% - 60px);
    margin-left: 60px;
    overflow: hidden;
}

.bloco-filter {
    position: relative;
    padding: 10px;
    max-width: 1035px;
    margin-top: 10px;
    width: calc(100% - 60px);
    margin-left: 60px;
}

.bloco-search {
    position: relative;
    padding: 10px;
    margin: 0 auto;
    width: 100%;
}

.bloco-search .titulo {
    text-align: left;
    font-size: 18px;
    flex-grow: 1;
    text-transform: uppercase;
}

.select-box .inverted-out {
    background-image: linear-gradient(45deg, transparent 50%, white 50%),
        linear-gradient(133deg, white 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1em + 1px),
        calc(100% - 15.3px) calc(1em + 1px), calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 19px;
}

.game-view {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.game-popular {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 20px;
}

.game-popular .game-tile {
    max-width: 400px;
    max-height: 230px;
}

.text-image-popular .button-image-popular .game-button-play {
    font-size: 14px;
    font-weight: 700;
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius: 8px;
}

.text-image-popular .button-image-popular .game-button-demo {
    font-size: 14px;
    font-weight: 700;
    align-items: center;
    display: flex;
    justify-content: center;
    background: none;
    border: white solid 1px;
    border-radius: 8px;
}

.text-image-popular {
    position: absolute;
    top: 70;
    left: 10%;
    width: 100%;
    height: 79%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    flex-direction: column;
}

.title-cont-popular {
    color: white;
    font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.cont-image-popular p {
    color: white;
    font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 0;
}

.carousel-content .pic {
    background: linear-gradient(
        270deg,
        rgba(16, 20, 25, 0) 30%,
        rgba(16, 20, 25, 0.7) 95%
    );
}

.button-image-popular {
    display: flex;
    height: 19%;
    gap: 10px;
    margin-bottom: 10%;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    color: #000;
}

.popup-content {
    border-radius: 5px;
    height: 85% !important;
    position: absolute;
    cursor: pointer;
}

.popup-content .modal-svg {
    width: 60px;
    height: 60px;
    position: relative;
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.modal-svg .closePopupBanner {
    width: 16px;
    color: #fff;
}

.imgPopup {
    width: 500px;
    height: 100%;
}

.closedPopupBanner {
    display: none;
}

.btn-popular {
    position: absolute;
}

.wallet-text {
    margin-bottom: 0px;
}

.group-button-game {
    display: flex;
    gap: 15px;
    margin-right: 4%;
}

.aswift_2_host {
    height: 0;
}

.group-button-game button,
.group-button-game a {
    color: white;
    font-size: 16px;
}

.game-frame-div {
    max-width: 922px;
}

.ads-game-left {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ads-game-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 26em;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
}

.game-frame {
    margin-left: 60px;
    margin-top: 100px;
    width: calc(100% - 70px);

}

.game-frame iframe {
    height: 518px;
    width: 922px;
    border: none;
    position: relative;
}

.game-info {
    background-color: #212233;
}

.btn-info-game {
    color: white;
}

.title_game {
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding: 5px;
}

.title_game .title_name {
    margin-right: auto;
    text-align: left;
    font-size: 22px;
    font-weight: 900;
    color: white;
    flex-grow: 1;
    text-transform: uppercase;
}

.title_game .full_img i {
    color: white;
    width: 35px;
    height: 31px;
    background-color: rgb(123, 32, 197);
    font-size: 25px;
    margin-right: 1px;
    padding-top: 4px;
}

.title_game .back_img a {
    padding: 0;
    border: 0;
}

.title_game .back_img i {
    color: white;
    width: 35px;
    height: 31px;
    background-color: rgb(123, 32, 197);
    font-size: 25px;
    padding-top: 4px;
}

.cont-image-popular {
    width: 40%;
}

.pix-qrcode {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* ===== Scrollbar CSS ===== */

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--bgDark2);
    border-radius: 10px;
}

@media (min-width: 768px) and (max-width: 992px){
    .img-footer {
        width: 100%;
        transition: transform 0.5s ease;
        margin-left: -11em;
    }

    .right-div {
        width: 51%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin-left: -10em;
    }
}

@media (min-width: 992px) and (max-width: 1250px){
    .img-footer {
        width: 100%;
        transition: transform 0.5s ease;
        margin-left: -2em;
    }

    .right-div {
        width: 38%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin-left: -10em;
    }
}

@media (min-width: 768px) {
    .footer-section .footer-box {
        margin: 2px 28px 20px 22px;
        max-width: 94%;
        margin-left: 3%;
        margin-right: 3%;
        text-align: justify;
    }
    .col-md-6 {
        flex: 0 0 auto;
        width: 100%;
        max-width: 81%;
        margin-left: 5%;
        margin-right: 5%;
    }
}

@media (min-width: 1000px) {
    .navbar-brand {
        width: 25%;
    }

    .navbar-text {
        justify-content: end;
    }
}


@media (max-width: 1250px) {
    .game-list {
        display: flex;
        flex-wrap: nowrap;
        -ms-overflow-style: none;
        scrollbar-width: none;
        scroll-behavior: smooth;
        overflow-x: scroll !important;
        overflow-y: hidden !important;
        gap: 15px;
        justify-content: flex-start;
        padding-top: 10px;
        padding-bottom: 15px;
    }

    .bloco-search .game-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .bloco-details {
        flex-wrap: wrap;
        justify-content: center;
    }

    .scroll-right {
        display: none !important;
    }

    .scroll-left {
        display: none !important;
    }

    *::-webkit-scrollbar {
        width: 6px !important;
    }
}

@media (max-width: 1024px) {
    .banner-img {
        margin: 0;
    }
    .filter {
        flex-wrap: nowrap;
    }
    .search-box input {
        font-size: 12px;
    }
    .text-option {
        font-size: 12px;
    }

    .list-popular .container {
        padding-left: 20px;
        margin-left: 22px;
    }
    .wrapper .content .banner-section {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    .right-add {
        display: none;
    }

    .game-frame {
        margin: 0 auto;
        width: 100%;
    }

    .container-form-image {
        display: none;
    }

    .container-form {
        width: 100%;
    }

    .container-form form {
        min-width: 288px;
        width: auto;
    }

    .container-form h1 {
        font-size: 60px;
    }

    .login-section {
        height: auto;
        padding: 30px 0;
    }

    .container-section-login {
        height: auto;
    }

    .container-form .form-register {
        width: 100%;
    }

    .container-dashboard-profile {
        grid-template-columns: repeat(3, 1fr);
    }

    .item-daily {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 768px) {
    .imgPopup {
        width: 450px;
    }

    .game-list {
        gap: 30px;
    }

    .text-white{
        --tw-text-opacity: 1;
        max-width: 91%;
        text-align: justify;
        background-color: #000000ab;
    }

    p {
        margin: 0 auto;
        margin-top: 0;
        margin-bottom: 1rem;
        text-align: justify;
        max-width: 97%;
        margin-left: 1.5% !important;
    }

    p1{

        margin: 0 auto;
        margin-top: 0;
        margin-bottom: 1rem;
        text-align: justify;
        max-width: 97%;
    }

    .game-list-inline {
        display: grid;
        gap: 10px;
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .game-list-inline > * {
        flex: 1;
        height: 100%; /* Ajusta a altura automaticamente */
    }


    .footer-section .overlay .row {
        flex-direction: column;
    }

    .footer-section .overlay .row .footer-text {
        width: 100%;
    }

    .footer-section .overlay .row .footer-links {
        width: 100%;
    }

    .footer-section .overlay .row .footer-email {
        width: 100%;
    }

    .container .footer-container {
        flex-direction: column;
    }

    .container .footer-text {
        width: 100%;
    }


    .container .footer-small {
        width: 100%;
    }

    .owl-next {
        width: 30;
        right: -26px;
    }

    .navbar .navbar-text .notification-panel .notification-dropdown {
        -webkit-transition: 0s;
        transition: 0s;
    }

    .notification-dropdown {
        display: none;
    }

    .bloco-content {
        margin-left: 7px;
        margin-top: 5%;
        width: calc(100% - 7px);
    }

    .right-games {
        display: none !important;
    }

    .left-games {
        display: none !important;
    }

    .game-frame iframe {
        width: 768px;
    }

    .row {
        margin: 0 auto;
    }

    .contact-section .text-box {
        background: white;
        padding: 10px;
        border-radius: 8px;
        margin: 0;
    }

    .contact-section .text-box p {
        font-size: 12px;
    }

    .person-card-blog {
        padding: 5px 8px;
    }

    .data-card-box {
        padding: 5px 8px;
    }

    div .tag-blog {
        font-size: 11px !important;
    }

    .data-card-box span {
        font-size: 11px;
    }

    .subtitle-card-box {
        padding: 5px 8px;
    }

    .subtitle-card-box h2 p {
        font-size: 18px !important;
    }

    .subtitle-card-box span {
        font-size: 14px !important;
    }
}

@media (max-width: 560px) {
    .navbar {
        height: 50px;
    }

    .banner-divi .logo-banner {
        width: 100% !important;
        padding-left: 1rem;
    }

    .break-div {
        display: flex;
        flex-direction: column !important;
    }

    .navbar .navbar-brand {
        width: 50%;
    }

    .imgPopup {
        width: 350px;
    }

    .content-notify-popup {
        font-size: small;
    }

    .btn-notify-popup {
        font-size: small;
    }

    .banner-section {
        margin-left: 1%;
    }

    .text-image-popular .button-image-popular .game-button-play {
        font-size: 12px;
    }

    .text-image-popular .button-image-popular .game-button-demo {
        font-size: 12px;
    }

    .light {
        display: none;
    }

    .upcomingBtn {
        display: block;
    }

    .liveBtn {
        display: block;
    }

    .btn-custom.backBtnSport {
        margin-bottom: 4px;
        display: block;
    }

    .toggle-user-panel-sidebar {
        display: block;
    }

    .navbar .navbar-text .btn-custom {
        font-size: 0.8rem;
        width: 40px;
        height: 30px;
        margin-top: 5px;
    }

    .navbar .navbar-text .btn-login {
        width: 80px;
    }

    .navbar .navbar-toggler {
        margin-top: 5px;
    }

    .more-games-fade-left {
        left: 3px;
    }

    .banner-section {
        height: 136px;
    }

    .carousel-item img {
        height: 100%;
    }

    .wrapper .content .banner-section .carousel .carousel-inner {
        height: 100%;
    }

    .wrapper .content .banner-section .carousel .carousel-inner .carousel-item {
        width: 98%;
        height: 100%;
    }

    .carousel-indicators {
        margin-bottom: 0px;
    }

    .game-tile {
        max-height: 96px;
        min-width: 135px;
        max-width: 135px;
    }

    .game-button-demo {
        width: 4rem;
        bottom: 95%;
    }

    .game-button-play {
        width: 4rem;
        bottom: 85%;
    }

    .game-tile .game-button-demo {
        margin-right: 40px;
    }

    .play-center {
        bottom: 65%;
    }

    .nav-container {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    .navbar-nav {
        flex-direction: row;
        width: 100%;
        justify-content: space-around;
        font-size: 0.8rem;
    }

    .wallet-text {
        display: none;
        margin-bottom: 0px;
    }

    .more-games-fade-right {
        right: 1%;
    }

    .filter {
        gap: 10px;
    }

    .navbar .dropdown .dropdown-menu {
        left: -68;
    }

    .category-types {
        height: 100%;
        justify-content: start;
    }

    .category-list {
        justify-content: start;
        margin-left: 3%;
        flex-wrap: wrap;
        gap: 15px;
    }

    .bloco-header {
        margin-bottom: 4%;
    }

    .category-itens {
        height: 40px;
        min-height: 40px;
        min-width: 90px;
        width: 90px;
    }

    .ad-Props {
        min-width: 100%;
        max-width: none;
        margin-right: 7px;
        min-height: 50px;
    }

    .btn-footer {
        flex-wrap: wrap;
    }

    .btn-footer .btn-category-footer {
        min-width: 110px;
        max-width: 110px;
        min-height: 25px;
        max-height: 25px;
    }

    .btn-footer .btn-category-footer p {
        padding: 0;
        font-size: 10px;
        font-weight: 700;
    }

    .btn-footer-right {
        display: flex;
        justify-content: end;
    }

    .footer-problems > div {
        width: 30%;
    }

    .image-nav-problems {
        min-width: 40px;
        max-width: 40px;
        min-height: 40px;
        max-height: 40px;
    }

    .category-itens a {
        font-size: 10px;
    }

    .bloco-content .titulo {
        font-size: 18px;
    }

    .balance-problems {
        min-width: 80px;
        max-width: 80px;
        margin: 0;
    }

    .balance-problems img {
        width: 18px;
    }

    .balance-problems div {
        font-size: 12px;
    }

    .category-types {
        height: 125;
        padding: 0;
        margin: 0;
    }

    .recompensa {
        width: 90px;
        min-width: 90px;
        min-width: 90px;
    }

    .recompensa h3 {
        font-size: 10px;
    }

    .item-divi a {
        font-size: 16px;
    }

    .list-popular {
        margin-left: 0;
    }

    .list-popular .container {
        margin-left: 0;
    }

    .owl-prev {
        width: 30;
        left: 6px;
        top: 86px;
    }

    .owl-next {
        right: -12px;
        width: 30;
        top: 86px;
    }

    .text-image-popular {
        top: 60;
    }

    .cont-image-popular p {
        margin-bottom: 0;
        width: 50%;
    }

    .title-cont-popular {
        padding-top: 6%;
        margin-bottom: 0;
    }

    .button-image-popular {
        margin-bottom: 0;
    }

    .deposit {
        width: 60% !important;
    }

    .container-fluid {
        padding: 0;
        max-width: 100%;
        justify-content: space-between !important;
        display: flex;
        flex-wrap: inherit;
        align-items: center;
    }

    img, video {
        max-width: 100%;
        height: auto;
    }
}

.navbar .night-mode {
    width: 100% !important;
    height: 100% !important;
    display: flex;
    align-items: center;
    margin-left: -24px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    margin-bottom: 1.3em;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

a .img-footer-banner{
    width: 18%;
}

.navbar>.container-fluid
{
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}


.img-nav {
    max-width: 100%;
    height: auto;
    margin-left: 1em;
}

.img-footer {
    width: 100%;
    transition: transform 0.5s ease;
    margin-left: -1em;
}

.game-play-grid {
    margin-left: 8%;
    margin-top: 30px;
    justify-items: center;
}


.ads-game-right{
    margin-top: 1em;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
}

.footer-section .footer-bottom .copyright a {
    color: var(--primary);
    justify-content: center !important;
}
    .footer-box h5 {
        justify-content: center;
        display: flex;
    }

    .footer-box ul {
        display: flex;
        flex-direction: column;
        align-content: center;
        flex-wrap: wrap;
    }

    .footer-text .footer-box > ul > li {
        width: 100%;
        display: flex;
    }

    .footer-text .footer-box > ul > li i {
        padding-top: 7px;
    }

    .footer-text .footer-box .navbar-brand {
        justify-content: center;
        display: flex;
    }

    .footer-links .footer-box > ul > li {
        width: 100%;
        justify-content: center;
        display: flex;
    }

    .social-links {
        justify-content: center;
        display: flex;
        gap: 10px;
    }

    .language {
        display: flex;
        justify-content: center;
    }

    .game-frame iframe {
        width: 540px;
    }

    .game-list:not(.geral-list) {
        grid-auto-flow: column;
    }

    .cont-profile {
        flex-direction: column;
    }

    .container-dashboard-profile {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cont-profile-navigation {
        margin-left: 10px;
        margin-right: 10px;
    }

    .category-profile-navigation {
        font-size: 1rem;
        padding-left: 0;
    }

    .input-profile > form > div {
        width: 240px;
    }

    .input-profile {
        transform: translate(0, -50%);
        right: 0;
        left: auto;
    }

    .input-profile input {
        margin-left: 0;
    }

    .container-img-profile {
        width: 75px;
    }

    .cont-profile aside {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        display: flex;
        justify-content: space-between;
    }

    .banner-profile {
        height: 175px;
    }

    .banner-profile img {
        object-fit: cover;
    }

    .img-profile {
        width: 125px;
        height: 125px;
        top: 135px;
    }

    .name-profile {
        padding: 0;
    }

    .edit-profile {
        margin: 0;
    }

    .edit-profile > button {
        height: 35px;
    }

    .options-profile {
        padding: 8px;
        width: 49%;
    }

    .princ-profile {
        padding-top: 8px;
        justify-content: normal;
        flex-direction: column;
    }

    .container-dashboard-games {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }

    .container-edit-photo {
        width: 100%;
    }

    .container-edit-banner {
        width: 100%;
    }

    .top-blog > div:not(:first-child) {
        grid-column: 1;
    }

    .top-blog > div:first-child {
        grid-row: span 1;
    }

    .container-top-blog {
        padding-top: 188%;
    }

    .top-blog > div > div ul h2 {
        font-size: 18px;
    }

    .card-box-blog {
        grid-template-columns: none;
    }

    .subtitle-card-box {
        grid-column: 1;
    }

    .title-card-box {
        grid-column: 1;
    }

    .title-card-box p {
        font-size: 18px;
        margin: 0;
    }

    .blog-details .related-post {
        flex-direction: column;
    }

    .blog-details .related-post .img-box {
        width: 100%;
    }

    .blog-details .related-post .text-box {
        width: 100%;
    }

    .grid-item-post {
        flex-direction: column;
        max-height: 100%;
    }

    .table-ranking thead tr {
        display: flex;
        flex-direction: column;
    }

    .table-ranking tbody tr {
        display: flex;
    }

    .table-ranking tbody tr td {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .table-ranking tbody tr td:nth-child(1) {
        width: 20%;
    }

    .table-ranking tbody tr td:nth-child(2) {
        width: 60%;
    }

    .table-ranking tbody tr td:nth-child(3) {
        width: 20%;
    }

    .table-ranking thead tr .first-ranking {
        order: 1;
    }

    .table-ranking thead tr .second-ranking {
        order: 2;
    }

    .table-ranking thead tr .tree-ranking {
        order: 3;
    }

    .container-mission {
        margin-left: 10px;
    }


@media (max-width: 426px) {
    .item-daily {
        width: 45px;
        height: 45px;
    }

    .progress-daily {
        padding: 8px;
        border: 5px solid #014984;
    }
}

@media (max-width: 400px) {
    .content-notify-popup {
        font-size: 12px;
    }

    .btn-notify-popup {
        font-size: 10px;
    }

    .game-frame iframe {
        width: 400px;
    }
}

@media (max-width: 376px) {
    .game-tile {
        max-width: 121px;
    }

    .owl-next {
        right: 0;
        width: 15;
    }

    .owl-prev {
        left: 4px;
        width: 15;
    }
}

@media (max-width: 370px) {
    .navbar .navbar-text .night-mode {
        display: none !important;
    }
}

@media (max-width: 357px) {
    .cont-image-popular p {
        font-size: 12px;
    }

    .content-notify-popup {
        font-size: 10px;
    }

    .btn-notify-popup {
        font-size: 8px;
    }

    .item-daily {
        width: 40px;
        height: 40px;
    }
}
