@font-face {
    font-family: 'Dystopian';
    src: url('./fonts/Dystopian-Regular.eot');
    src: url('./fonts/Dystopian-Regular.eot?#iefix') format('embedded-opentype'),
        url('./fonts/Dystopian-Regular.woff2') format('woff2'),
        url('./fonts/Dystopian-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Dystopian';
    src: url('./fonts/Dystopian-Bold.eot');
    src: url('./fonts/Dystopian-Bold.eot?#iefix') format('embedded-opentype'),
        url('./fonts/Dystopian-Bold.woff2') format('woff2'),
        url('./fonts/Dystopian-Bold.woff') format('woff'),
        url('./fonts/Dystopian-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: bold;
    font-display: swap;
}

@font-face {
    font-family: 'Dystopian';
    src: url('./fonts/Dystopian-Black.eot');
    src: url('./fonts/Dystopian-Black.eot?#iefix') format('embedded-opentype'),
        url('./fonts/Dystopian-Black.woff2') format('woff2'),
        url('./fonts/Dystopian-Black.woff') format('woff'),
        url('./fonts/Dystopian-Black.ttf') format('truetype');
    font-weight: 800;
    font-style: bold;
    font-display: swap;
}

@font-face {
    font-family: 'Qualy';
    src: url('./fonts/Qualy.eot');
    src: url('./fonts/Qualy.eot?#iefix') format('embedded-opentype'),
        url('./fonts/Qualy.woff2') format('woff2'),
        url('./fonts/Qualy.woff') format('woff'),
        url('./fonts/Qualy.ttf') format('truetype'),
        url('./fonts/Qualy.svg#Qualy') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    border-radius: 0;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 0;
}

[type=button]:focus,
[type=submit]:focus,
button:focus {
    outline: none !important;
}

body,
html {
    overflow-x: hidden;
}

.scroll-left {
    opacity: 0;
    transition: 0.5s all;
    transform: translate3d(-30px, 0, 0);
}

.scroll-right {
    opacity: 0;
    transition: 0.5s all;
    transform: translate3d(30px, 0, 0);
}

.scroll-bottom {
    opacity: 0;
    transition: 0.5s all;
    transform: translate3d(0, 80px, 0);
}

.scroll-top {
    opacity: 0;
    transition: 0.5s all;
    transform: translate3d(0, -80px, 0);
}

.ativo {
    opacity: 1;
    transition: 0.5s all;
    transform: translate3d(0, 0, 0);
}

:focus {
    outline: none !important;
}

body {
    padding: 0 0 115px 0;
    background: var(--backgroundColor);
    color: var(--white);
    margin: 0;
}

h1,
h2,
h3 {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 14px;
}

header .container-menu {
    display: flex;
    column-gap: 10px;
    justify-items: start;
    padding: 10px 20px;
    max-width: 720px;
    margin: 0 auto;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.menuPrimarySection {
    display: flex;
    gap: 6px;
    flex-direction: row;
    align-items: center;
}

header h1 {
    color: var(--primary);
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    column-gap: 15px;
    row-gap: 11px;
}

.nome-jogo {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    row-gap: 3px;
}

.nome-jogo>span {
    font-size: 10px;
    color: #fff;
}

.app {
    padding: 15px 20px 15px 20px;
}

.app {
    max-width: 720px;
    margin: 0 auto;
}

i {
    display: inline-flex;
}

.app_head {
    width: 100%;
    background: rgb(255 255 255 / 15%);
    padding: 14px 10px;
    color: #fff;
    border-radius: 4px;
    margin-bottom: 6px;
    position: relative;
    border: 1px solid transparent;
    text-align: center;
    font-size: 17px;
}

header .logo {
    max-width: var(--logo-size);
    border-radius: 5px;
}

@media screen and (max-width: 370px) {
    header .logo {
        max-width: calc(var(--logo-size) - 30%);
    }
}

@media screen and (max-width: 460px) {
    header .logo {
        width: 100%;
        max-width: calc(var(--logo-size) - 30%);
    }
}

#voltar {
    position: relative;
}

.app_content {
    display: grid;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 10px 0 5px 0;
    border: 2px solid transparent;
}

.app_head span {
    animation: fadeInOut 1.6s infinite ease-in-out;
}

.app_coluna {
    background: rgb(255 255 255 / 8%);
    color: var(--primary);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px 8px;
    border-radius: 10px;
    height: 100%;
    transition: all 1s;
}

button {
    background: var(--primary);
    margin: 10px 0 0 0;
    padding: 14px 21px;
    width: 100%;
    appearance: none !important;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
}

button:disabled {
    opacity: 0.45;
    color: var(--white);
    background: #020b0b;
    border: 2px solid var(--primary);
    color: #fff !important;
}

.casa {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.casa .frame {
    width: 100%;
    height: 35em;
    border: 1px solid #2c2c2c;
    border-radius: 15px;
    margin-top: 1em;
}

.app_head.active {
    border: 2px solid #06da6a;
    animation: fadeInOut 1.3s infinite ease-in-out;
}


/* Animações */

@keyframes fadeInOut {
    0% {
        opacity: 0
    }

    25% {
        opacity: 1
    }

    75% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

footer {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

footer ul {
    --cols: 4;
    /* fallback */
    max-width: 650px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(var(--cols), 1fr);
    gap: 10px;
    list-style: none;
    padding: 0;
    text-align: center;
}

nav {
    padding: 6px 0;
}

.menu_item {
    position: relative;
}

.menu_item a {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #fff;
    padding: 6px;
}

.menu_item:before {
    transition: .24s;
    filter: blur(10px);
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    background-color: var(--primary);
    border-radius: 50%;
    bottom: -60%;
    content: "";
    display: block;
    left: 0;
    height: 48px;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 48px;
    z-index: -1;
}

.menu_item.active:before {
    opacity: .3;
    transform: translate3d(0, 0, 0);
}

.menu_item a span {
    text-transform: uppercase;
}

@media screen and (max-width: 690px) {
    .menu_item a span {
        font-size: 9px;
    }
}

@media screen and (min-width: 690px) {
    .menu_item a span {
        font-size: 11px;
    }

}

a.sair {
    color: #fff;
    padding: 20px 0;
    margin: 0 0 0 auto;
    display: inline-flex;
}

a.sair i {
    color: #fff;
    font-size: 20px;
}

.container_deposito {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin: 30px 0 10px 0;
    gap: 10px;
}

a.depositar {
    display: inline-flex;
    padding: 12px 16px;
    background: var(--primary);
    color: var(--btnColor);
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    column-gap: 9px;
    border-radius: 6px;
    text-transform: none;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
}

a.sacar {
    display: inline-flex;
    padding: 12px 16px;
    background: #ffffff;
    color: #000000;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    column-gap: 9px;
    border-radius: 6px;
    text-transform: none;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
}

a.depositar img {
    width: 26px;
    filter: contrast(0) brightness(2) invert(1);
}

input[type="submit"] {
    cursor: pointer;
    appearance: auto;
}

header {
    background: #000000;
    border: 2px solid;
    border-image: linear-gradient(90deg, #00000078, var(--primary), #00000078) 1;
    border-left: 0px;
    border-top: 0px;
    border-right: 0px;
}

footer {
    background: #00000078;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 2px solid;
    border-image: linear-gradient(90deg, #00000078, var(--primary), #00000078) 1;
    border-left: 0px;
    border-bottom: 0px;
    border-right: 0px;
    z-index: 2;
}

.kpopup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    overflow: auto;
    background-color: #000000d9;
}

.kpopup iframe {
    border: none !important;
}

.kpopup-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--backgroundColor);
    overflow: auto;
    z-index: 1000;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 790px) {
    .kpopup-content {
        max-width: 490px;
        overflow: hidden;
        margin: auto;
        max-height: 60vh;
        border-radius: 8px;
    }
}

.close-btn-popup {
    border-radius: 50px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    background: var(--primary);
    color: var(--svgColor);
    padding: 4px;
    z-index: 50;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.close-btn-popup i {
    transform: scaleX(1.15);
    font-size: 14px;
    color: var(--svgColor);
    display: flex;
}

.close-btn-popup:hover,
.close-btn-popup:focus {
    color: var(--black);
    text-decoration: none;
    cursor: pointer;
}

a {
    cursor: pointer;
}

.actions-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}


@media screen and (max-width: 450px) {
    header .slogan {
        display: none;
    }
}


@media screen and (min-width: 360px) and (max-width: 390px) {
    header .container-menu>h1>.nome-jogo {
        font-size: 12px;
    }

    header .container-menu>h1>.nome-jogo>span {
        font-size: 9px;
    }
}


@media screen and (max-width: 360px) {
    header .container-menu>h1>.nome-jogo {
        display: none;
    }

    header .logo {
        max-width: 105px !important;
    }
}


.actions-menu i {
    font-size: 19px !important;
    color: #fff;
}

@keyframes sinalizar {
    0% {
        transform: rotate(0deg) scale(1.1);
    }

    25% {
        transform: rotate(10deg) scale(1.1);
    }

    50% {
        transform: rotate(-10deg) scale(1.1);
    }

    75% {
        transform: rotate(10deg) scale(1.1);
    }

    100% {
        transform: rotate(-10deg) scale(1.1);
    }
}

.novidade {
    display: inline-block;
    transform: rotate(0deg) scale(1.1);
    animation: sinalizar 1.3s infinite ease-in-out;
}

.actions-menu>a:nth-child(1) {
    position: relative;
}


.actions-menu>a:nth-child(1):after {
    position: absolute;
    top: -20px;
    right: -7px;
    font-size: 14px;
    font-weight: 800;
    font-family: "Dystopian", sans-serif;
    color: var(--primary);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.avisos .destacar {
    background: var(--primary) !important;
}

.svgPix {
    width: 18px;
    height: 18px;
    fill: var(--svgColor) !important;
}

#svgSacar {
    width: 16px;
    height: 16px;
}

.ganho .svgPix {
    fill: var(--svgColorGanhos) !important;
}

span.logo_keroup {
    font-weight: 500;
}

@media screen and (max-width: 520px) {
    span.logo_keroup {
        font-size: 24px;
        text-transform: capitalize;
    }
}

@media screen and (min-width: 520px) {
    span.logo_keroup {
        font-size: 34px;
        text-transform: capitalize;
    }
}

span.logo_keroup {
    font-family: 'Qualy', sans-serif;
}

.app .logo_keroup {
    display: block;
    text-align: center;
}

.app_coluna .azul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    color: #1070ed;
    text-transform: capitalize;
}

.app_coluna .azul:after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #1070ed;
    margin: 0 0 0 5px;
    border-radius: 1px;
}

.app_coluna .empate {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-transform: capitalize;
}

.app_coluna .empate:after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #ffffff;
    margin: 0 0 0 5px;
    border-radius: 1px;
}

.app_coluna .vermelha,
.app_coluna .vermelho {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    color: #d30202;
    text-transform: capitalize;
}

.app_coluna .vermelha:after,
.app_coluna .vermelho:after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #d30202;
    margin: 0 0 0 5px;
    border-radius: 1px;
}

a#androidTuto,
a#iosTuto {
    background-color: var(--buttonBackground);
}

.app * {
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -webkit-touch-callout: none;
}


@media screen and (min-width: 690px) {
    .casa {
        max-width: 1040px;
    }
}

div#containerIframe.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #080909a1;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 10px 0 0 0;
}

iframe#iframeIA.fullscreen {
    height: calc(100vh - 90px);
    margin: 0;
}

button#fullscreenButton {
    display: flex;
    gap: 5px;
    margin: 0;
    border-radius: 5px;
    width: auto;
    font-size: 13px;
    background: var(--primary);
    padding: 3px 8px;
    font-weight: 600;
    color: var(--btnColor);
    text-transform: capitalize;
    position: absolute;
    right: 20px;
    top: 15px;
}

button#fullscreenButton.fullscreen.active {
    width: auto !important;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;
}

button#fullscreenButton i {
    display: inline-flex;
}

div#containerIframe {
    position: relative;
    padding: 20px 20px 0 20px;
}

.app_coluna .roleta {
    text-align: center;
}

button#fullscreenButton i {
    animation: none;
    transition: none;
    transform: none;
}

span.nome-perfil {
    font-size: 14px;
    text-transform: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 5px;
}

span.nome-perfil span {
    font-size: 12px;
    color: var(--white);
}

.container_responsabilidade img {
    width: 100%;
    max-width: 195px;
}

.container_responsabilidade {
    padding: 25px 20px 0 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.container_responsabilidade img {
    width: 100%;
    max-width: 195px;
}

.onesignal-customlink-explanation {
    color: #fff !important;
    text-align: center !important;
    font-weight: 600 !important;
    font-family: 'Montserrat' !important;
    font-size: 14px !important;
    text-wrap: balance !important;
}

.onesignal-customlink-subscribe {
    padding: 14px 15px !important;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif !important;
}

.onesignal-customlink-container {
    min-height: auto !important;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.state-subscribed {
    display: none !important;
}


.containerNotificacoes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    /* z-index: 50; */
    position: relative;
    padding: 0 20px;
    max-width: 720px;
    margin: 14px auto 0 auto;
}

.containerNotificacoes h3 {
    width: 100%;
    text-align: center;
    font-size: 15px;
}

.slidedown-body-icon {
    width: auto !important;
    height: auto !important;
}

.slidedown-body-icon img {
    max-width: 40px !important;
    width: 100% !important;
    height: auto !important;
}

div#slidedown-body {
    margin: 0 0 5px 0 !important;
}

div#slidedown-body * {
    font-family: 'Montserrat', sans-serif !important;
}

#onesignal-slidedown-container #onesignal-slidedown-dialog .slidedown-button {
    padding: 9px 15px !important;
}

div#onesignal-slidedown-dialog {
    padding: 13px 20px !important;
}

button#onesignal-slidedown-cancel-button {
    display: none !important;
}

#onesignal-slidedown-container #onesignal-slidedown-dialog .slidedown-button.primary {
    background: var(--primary) !important;
    font-family: 'Montserrat', sans-serif !important;
}

@media screen and (min-width: 690px) {
    footer {
        max-width: 450px;
        margin: 0 auto;
        border-radius: 90px;
        border: none;
        bottom: 20px;
        overflow: hidden;
    }

}

.containerResponsabilidade {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 40px 20px 15px 20px;
}

.containerResponsabilidade {
    opacity: 0.8;
}

.containerResponsabilidade svg {
    width: 190px;
    height: auto;
}

@media screen and (max-width: 690px) {
    li.menu_item.bloqueado a:before {
        content: "🔥👀";
        position: absolute;
        top: -25px;
        font-size: 13px;
        text-transform: uppercase;
        text-align: center;
        background: var(--primary);
        border-radius: 50px;
        padding: 3px 5px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

}


.menu_item.active a {
    color: var(--primary);
    font-weight: 600;
}

/* 
#containerGanhos {
    max-width: 100%;
    height: max-content;
    overflow: -moz-hidden-unscrollable;
    white-space: nowrap;
    margin: 8px 0 15px 0;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    #containerGanhos {
        max-width: 100%;
    }
}

div#ganhos {
    display: inline-flex;
    gap: 10px;
    position: relative;
    animation: animacaoGanhos 400s linear infinite;
    -webkit-animation: animacaoGanhos 400s linear infinite;
    white-space: nowrap;
    cursor: default;
    min-height: 42px;
} */

div#ganhos {
    will-change: transform;
}

/* Animação com prefixo para compatibilidade */
@-webkit-keyframes animacaoGanhos {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes animacaoGanhos {
    0% {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.ganho {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    padding: 12px 15px;
    border-radius: 8px;
    background-color: var(--backgroundGanhos);
    /* filter: brightness(1) contrast(0.8); */
    justify-content: center;
}

.ganho>span.nome {
    font-size: 13px;
    font-weight: 700;
}

span.nomeJogo {
    font-size: 12px;
}

.ganho b {
    font-size: 12px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--primary);
}

.ganho b.par {
    font-size: 13px;
}

.ganho span.textoComplemento {
    font-size: 13px;
    color: #ffffff7d;
}

div#containerGanhos {
    margin: 13px 0;
}

.containerTermosPolitica {
    font-size: 13px;
    color: #ffffff;
    margin: 15px 0 0 0;
    text-align: center;
    text-wrap: balance;
}

.containerTermosPolitica i {
    font-size: 13px;
    color: #ffffff;
    margin: 0 4px;
    font-style: normal;
}

.containerTermosPolitica a {
    font-size: 13px;
    color: var(--primary);
}

.containerLinksRodape {
    display: flex;
    max-width: 720px;
    margin: 25px auto 0 auto;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: .6;
}

.containerLinksRodape a {
    font-size: 13px;
    color: #fff;
}



.pulsar-resultados {
    text-align: center;
    border-radius: 50%;
    margin: 10px 3px 0px 8px;
    height: 7px;
    width: 7px;
    transform: scale(1);
    margin-top: 0px;
}

.online.pulsar-resultados {
    background: #1ee800;
    box-shadow: 0 0 0 0 rgb(154 239 166);
    animation: pulse-online 1s infinite;
}

.telegram.pulsar-resultados {
    background: #00bae8;
    box-shadow: 0 0 0 0 rgb(154, 219, 239);
    animation: pulse-telegram 1s infinite;
}

.offline.pulsar-resultados {
    background: #e80000 !important;
    box-shadow: 0 0 0 0 rgb(239, 154, 154) !important;
    animation: pulse-offline 1s infinite !important;
}


@keyframes pulse-offline {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(230, 80, 80, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@keyframes pulse-online {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgb(133 230 80 / 70%);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@keyframes pulse-telegram {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgb(80 230 230 / 70%);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

form#loginForm * {
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    -o-user-select: none !important;
}


span.nomeUsuario {
    font-size: 11px;
    text-transform: capitalize;
    font-weight: 500;
    color: #fff;
}


#saldoBalance {
    background: #ffffff29;
    padding: 8px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

#saldoBalance {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    min-width: 95px;
}

#saldoBalance i {
    font-size: 12px !important;
}

a#voltar {
    height: 35px;
    width: 35px;
    background: #ffffff29;
    border-radius: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

a#voltar svg {
    width: 25px;
    height: 25px;
}

@media screen and (max-width: 370px) {

    #saldoBalance {
        font-size: 10px;
    }

    #saldoBalance i {
        font-size: 10px !important;
    }

    span.nome-jogo {
        font-size: 10px !important;
    }

    a#voltar {
        min-width: 30px;
        height: 30px;
        width: 30px;
    }

    a#voltar svg {
        min-width: 20px;
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 390px) {
    span.nomeUsuario {
        display: none;
    }
}

@keyframes girar {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.girando {
    animation: girar 1s linear infinite;
}

.notyf__toast--success .notyf__message {
    font-size: 13px;
    color: #000;
    font-weight: 600;
}

button.notyf__dismiss-btn {
    margin: 0 !important;
}

.notyf__toast--success i {
    color: #000 !important;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    box-shadow: 0 0 0px 1000px transparent inset !important;
    -webkit-text-fill-color: var(--white) !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Mantém o mesmo estilo quando focado */
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    box-shadow: 0 0 0px 1000px transparent inset !important;
    -webkit-text-fill-color: var(--white) !important;
}

.banners {
    user-select: none;
}

@media screen and (max-width: 335px) {
    li.menu_item>a>span {
        display: none;
    }
}

#item-Carteira {
    position: relative;
}

#item-Carteira .badge-pending {
    position: absolute;
    top: -2px;
    right: -5px;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #e11d48;
    color: #fff;
    font-size: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
}

.welcome-media {
    display: flex;
    justify-content: center;
}

.boasVindasContainer h3 {
    font-size: 16px;
    text-wrap: balance;
}

@media screen and (max-width: 420px) {
    .boasVindasContainer h3 {
        font-size: 16px;
    }
}


.close-btn-popup-boasVindas {
    cursor: pointer;
    padding: 0px;
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: center;
}

.headerBoasVindas {
    display: flex;
    gap: 5px;
    padding: 0 0 25px 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

span.close-btn-popup-boasVindas i {
    font-size: 15px;
    color: var(--primary);
}

button.btn.js-nao-mostrar {
    background: transparent;
    color: #fff;
    font-size: 14px;
    text-transform: none;
    font-weight: 600;
    padding: 0;
}

@media screen and (min-width: 790px) {
    .kpopup-content.boasVindas {
        max-height: 95% !important;
        overflow: auto;
    }
}

.boasVindasContainer {
    padding: 30px 20px;
}

.kpopup-content.boasVindas {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--backgroundColor);
    overflow: auto;
    z-index: 1000;
    width: 85%;
    height: 85%;
    margin: auto;
}

.kpopup.boasVindas {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    overflow: auto;
    background-color: #00000061;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.kpopup-content.boasVindas::-webkit-scrollbar {
    width: 0px;
}

.botoesActions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 25px;
    row-gap: 10px;
    justify-content: center;
    margin: 10px 0 0 0;
}

#abrirJogo {
    width: auto !important;
    margin: 0;
}

.kpopup-content.boasVindas {
    border: 1px solid var(--primary);
    border-radius: 10px;
}

button#abrirBoasVindas {
    animation: luzes 2s linear infinite;
}

button#abrirBoasVindas {
    border-radius: 100px;
    position: relative;
    z-index: 1;
    opacity: 1;
    transition: 0.5s;
    width: auto !important;
    background: var(--primary);
    color: var(--btnColor);
    padding: 12px 5px !important;
    margin: 0;
    font-weight: 600;
}

button#abrirBoasVindas>span {
    font-size: 13px !important;
}

@keyframes luzes {
    0% {
        box-shadow: 0 0 10px -20px var(--primary);
    }

    90% {
        box-shadow: 0 0 0 20px transparent;
    }

    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

@keyframes AnimationName {
    0% {
        background-position: 0%
    }

    50% {
        background-position: 50%
    }

    100% {
        background-position: 100%
    }
}

button#abrirBoasVindas i {
    font-size: 13px;
}

span.close-btn-popup-boasVindas {
    gap: 12px;
    background: #181818;
    border-radius: 50px;
    padding: 10px 16px;
}

.titleSectionHelper {
    display: inline-flex;
    gap: 15px;
    align-items: center;
    max-width: 400px;
}

.titleSectionHelper span {
    font-size: 16px;
    font-weight: 600;
    text-wrap: balance;
}

.titleSectionHelper i {
    font-size: 30px;
}

.sectionAulas {
    display: grid;
    grid-template-columns: 1fr 145px;
    align-items: center;
    margin: 25px 0 0 0;
    gap: 15px;
}

.welcome-media iframe {
    border: 1px solid #ffffff59 !important;
    border-radius: 5px;
}

button#abrirDeposito {
    position: relative;
    margin: 0;
    border-radius: 50px;
    padding: 5px 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--btnColor);
}

span.pixIcone {
    font-size: 9px;
    font-weight: 600;
    position: absolute;
    top: -10px;
    right: -2px;
    background: #ffe800;
    color: var(--btnColor);
    padding: 3px 5px;
    border-radius: 50px;
    gap: 2px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

span.pixIcone svg {
    width: 10px;
    height: 10px;
}