:root {
    --logo-size: 150px;
    --logo-games-size: 60px;
    --menu-height: 50px;
    --primary: #fe0000;
    --terceira: #fe0000;
    --btnColor: #ffffff;
    --textColor: #fff;
    --background: #020505;
    --backgroundSecondary: #0e0606;
    --backgroundInverted: #ffffff14;
    --backgroundTransparent: #0c0b0b;
    --borderColorTransparent: #ffffff1f;
    --corGreen: #45ff5e;
    --corRed: #ff1f1f;
    --widthGlobal: 1040px;
}

* {
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    border-radius: 15px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 15px;
}

[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(--background);
    color: var(--textColor);
    margin: 0;
}

h1,
h2,
h3 {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 14px;
}

header .container-menu {
    display: flex;
    column-gap: 10px;
    padding: 10px 20px;
    max-width: 720px;
    margin: 0 auto;
    justify-items: start;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    min-height: 80px;
}

header h1 {
    color: var(--primary);
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
    row-gap: 11px;
}

header .container-menu>h1>span {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 5px;
    align-items: center;
}

header .container-menu>h1>span>span {
    font-size: 10px;
}

.app {
    padding: 30px 20px 10px 20px;
}

.app {
    max-width: 720px;
    margin: 0 auto;
}

.app_head {
    width: 100%;
    background: var(--backgroundTransparent);
    padding: 14px 10px;
    color: var(--textColor);
    border-radius: 4px;
    margin-bottom: 6px;
    position: relative;
    border: 1px solid transparent;
    text-align: center;
    font-size: 17px;
}

header .logo {
    max-width: var(--logo-games-size);
    border-radius: 5px;
}


#voltar {
    display: inline-flex;
    position: relative;
    padding: 8px 10px;
    background: var(--borderColorTransparent);
    color: var(--textColor);
    border-radius: 50px;
    gap: 5px;
}

a#voltar svg {
    width: 20px;
    height: 20px;
}

a#voltar span {
    font-size: 14px;
}

.app_content {
    display: grid;
    gap: 1rem;
    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: var(--background);
    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);
    color: var(--btnColor) !important;
    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(--textColor);
    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 {
    max-width: 650px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
    list-style: none;
    padding: 0;
}

nav {
    padding: 8px 0;
}

.menu_item.active a {
    color: var(--primary);
}

.menu_item a {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 2px;
    color: #fff;
    padding: 7px 3px;
    transition: all 100ms ease-in-out;
}

.homeBtn a {
    background: var(--primary);
    border-radius: 50px;
    width: 60px;
    height: 60px;
    margin: -30px auto 0 auto;
    color: #ffffff !important;
    padding: 9px;
    position: absolute;
    left: 8px;
}

.menu_item.homeBtn.secondary {
    position: relative;
}

.homeBtn a i {
    font-size: 18px;
    display: flex;
}

.menu_item a span {
    text-transform: uppercase;
    font-size: 8px;
}

@media screen and (max-width: 380px) {

    .menu_item a span {
        display: none;
    }
}

a.sair {
    color: #fff;
    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;
}

a.depositar {
    display: inline-flex;
    padding: 12px 8px;
    background: var(--primary);
    color: var(--btnColor);
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    column-gap: 9px;
    border-radius: 6px;
    margin: 30px 0 10px 0;
    text-transform: capitalize;
    font-weight: 600;
    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: #0f0f0f;
    border-bottom: 1px solid #222;
    border-left: 0px;
    border-top: 0px;
    border-right: 0px;
}

footer {
    background: #0f0f0f;
    border-top: 1px solid #222;
    z-index: 99;
    border-radius: 15px 15px 0 0;
}

.kpopup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    overflow: auto;
    background-color: #000000d9;
}

@media screen and (min-width: 768px) {

    .kpopup-content {
        max-height: 60vh;
        border-radius: 20px;
        max-width: 500px;
        margin: auto auto;
    }

    .kpopup-content::-webkit-scrollbar {
        width: 0;
    }
}

.kpopup iframe {
    border: none !important;
}

.kpopup-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    overflow: auto;
    z-index: 1000;
    width: 100%;
    height: 100%;
}

.close-btn-popup {
    display: flex;
    cursor: pointer;
    border-radius: 50px;
    position: absolute;
    right: 10px;
    top: 8px;
    background: #000000;
    padding: 0 12px;
    width: 45px;
    height: 45px;
    z-index: 50;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.close-btn-popup i {
    display: inline-block;
    transform: scaleX(1.15);
    font-size: 14px;
    color: #fff;
}

.close-btn-popup:hover,
.close-btn-popup:focus {
    color: var(--background);
    text-decoration: none;
    cursor: pointer;
}

a {
    cursor: pointer;
}

.actions-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.balance {
    background: #ffffff29;
    padding: 8px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    min-width: 100px;
}

.balance {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.balance i {
    font-size: 14px !important;
}

@media screen and (max-width: 370px) {

    .balance {
        font-size: 10px;
    }

    .balance i {
        font-size: 10px !important;
    }

    span.nome-jogo {
        font-size: 10px !important;
    }

    a#voltar span {
        font-size: 12px;
    }

    a#voltar svg {
        width: 15px;
        height: 15px;
    }
}

@keyframes girar {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.girando {
    animation: girar 1s linear infinite;
}

.actions-menu i {
    display: inline-flex;
}


@media screen and (max-width: 380px) {
    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: 390px) {
    header .container-menu>h1>.nome-jogo {
        display: none;
    }

    header .logo {
        max-width: 85px !important;
    }
}


@media screen and (max-width: 345px) {
    header .logo {
        max-width: 75px !important;
    }

    a#voltar>span {
        width: 0;
        visibility: hidden;
        opacity: 0;
        margin-left: -5px;
        transition: visibility 0s, width 300ms ease-in-out;
    }
}

@media screen and (max-width: 330px) {
    header .logo {
        max-width: 65px !important;
    }
}

@media screen and (max-width: 320px) {
    header .logo {
        /* display: none !important; */
    }
}

.actions-menu i {
    font-size: 12px !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;
}

header h1>span {
    margin-bottom: -10px;
}

.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;
}

.svgPix {
    width: 20px;
    height: 20px;
    fill: var(--btnColor);
}

#secaoBronze .app_head h2 i {
    background: linear-gradient(90deg, #b6895f, #cf9f72);
}

#secaoBronze .app_head h2>div {
    background: linear-gradient(90deg, #b6895f, #cf9f72);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

#secaoPrata .app_head h2 i {
    background: linear-gradient(90deg, #c0c0c0, #dcdcdc);
}

#secaoPrata .app_head h2>div {
    background: linear-gradient(90deg, #c0c0c0, #dcdcdc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

#secaoOuro .app_head h2 i {
    background: linear-gradient(90deg, #ffd52c, #fff458);
}

#secaoOuro .app_head h2>div {
    background: linear-gradient(90deg, #ffd52c, #fff458);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

span.bronze {
    background: linear-gradient(90deg, #b6895f, #cf9f72);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

span.prata {
    background: linear-gradient(90deg, #c0c0c0, #dcdcdc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

span.ouro {
    background: linear-gradient(90deg, #ffd52c, #fff458);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.container-perfil.desktop {
    display: flex;
    color: #fff;
    font-size: 13px;
    text-transform: capitalize;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 13px;
    row-gap: 5px;
}

span.nome-nivel {
    font-weight: 600;
    font-size: 11px;
}

span.nome-perfil>span {
    font-size: 11px;
}

span.nome-nivel>span {
    font-size: 13px;
}

span.nome-perfil {
    font-size: 13px;
}

div#secaoBronze i,
div#secaoPrata i,
div#secaoOuro i {
    color: #000;
}

.container-plano {
    position: relative;
}

.menu_item {
    position: relative;
}

.menu_item.active:before {
    opacity: .3;
    transform: translate3d(0, 0, 0);
}

.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;
}

li.menu_item.active a>span {
    font-weight: 600;
}

li.menu_item a>span {
    transition: all 400ms ease-in-out;
}

.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: 'Inter' !important;
    font-size: 14px !important;
    text-wrap: balance !important;
}

.onesignal-customlink-subscribe {
    padding: 14px 15px !important;
    color: #fff !important;
    font-family: 'Inter', 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: 'Inter', sans-serif !important;
}

#onesignal-slidedown-container #onesignal-slidedown-dialog .slidedown-button {
    padding: 9px 15px !important;
}

div#onesignal-slidedown-dialog {
    padding: 13px 20px !important;
}

/* #onesignal-popover-container.slide-down, #onesignal-slidedown-container.slide-down {
    top: auto!important;
    bottom: 0!important;
}

#onesignal-popover-container #onesignal-popover-dialog, #onesignal-popover-container #onesignal-slidedown-dialog, #onesignal-slidedown-container #onesignal-popover-dialog, #onesignal-slidedown-container #onesignal-slidedown-dialog {
    border-bottom-left-radius: 0!important;
    border-bottom-right-radius: 0!important;
    border-top-left-radius: 8px!important;
    border-top-right-radius: 8px!important;
} */

.baixarBtn:after {
    content: "Novidade 🔥";
    /* Suportado em todos os navegadores modernos */
    position: absolute;
    font-size: 10px;
    /* Responsivo, com fallback abaixo */
    font-family: 'Inter', Arial, sans-serif;
    /* Fallback para Arial */
    top: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    /* Prefixo para Safari antigo */
    -ms-transform: translateX(-50%);
    /* Prefixo para IE */
    transform: translateX(-50%);
    /* Centraliza horizontalmente */
    width: -webkit-max-content;
    /* Prefixo para Safari */
    width: -moz-max-content;
    /* Prefixo para Firefox */
    width: max-content;
    /* Ajusta ao conteúdo */
    max-width: 100px;
    /* Limita largura */
    margin: 0;
    padding: 4px 8px;
    background: var(--primary, #007bff);
    /* Fallback para variável CSS */
    color: #fff;
    /* Contraste */
    -webkit-border-radius: 50px;
    /* Prefixo para navegadores antigos */
    -moz-border-radius: 50px;
    /* Prefixo para Firefox antigo */
    border-radius: 50px;
    display: -webkit-inline-box;
    /* Fallback para flex em Safari antigo */
    display: -ms-inline-flexbox;
    /* Fallback para IE */
    display: inline-flex;
    -webkit-box-align: center;
    /* Prefixo para Safari */
    -ms-flex-align: center;
    /* Prefixo para IE */
    align-items: center;
    -webkit-box-pack: center;
    /* Prefixo para Safari */
    -ms-flex-pack: center;
    /* Prefixo para IE */
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    /* Evita quebra de linha */
    -webkit-box-sizing: border-box;
    /* Prefixo para navegadores antigos */
    -moz-box-sizing: border-box;
    /* Prefixo para Firefox antigo */
    box-sizing: border-box;
    z-index: 1;
    /* Evita sobreposição */
}

@media screen and (max-width: 380px) {
    .menu_item a span {
        font-size: 10px;
    }
}

.popupOverlay {
    background-color: #121214;
    z-index: 20;
    border-radius: 4px;
    overflow: hidden;
    height: auto;
}

body.popup-open:before {
    content: "";
    background: #000000cf;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

}

.popup-container-main {
    position: fixed;
    top: 20px;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.popupContent {
    height: 100%;
    background: #121214;
    overflow: hidden;
    padding: 40px 30px;
}

.popupContent {
    max-width: 450px;
    margin: 0 auto;
}

.headerPopup {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 20px;
    align-content: center;
}

.headerPopup h3 {
    font-size: 20px;
}

.headerPopup h3>b {
    font-size: 20px;
    color: var(--primary);
}

.headerPopup h3>span {
    display: block;
    font-size: 11px;
    margin: 6px 0 0 0;
    font-weight: 500;
    color: #ffffff82;
}

.popupContent ul {
    list-style: decimal;
    padding: 0 0 0 20px;
    display: flex;
    flex-direction: column;
    row-gap: 14px;
    margin: 0;
}

.popupContent .content p:not(:last-child) {
    margin: 0 0 20px 0;
}

button.fecharPopup {
    margin: 20px 0 0 0;
    background: #29ff8a;
    color: #000000 !important;
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
    border-radius: 4px;
    padding: 13px 20px;
    max-width: 210px;
}

.popupContent .content {
    display: flex;
    margin: 30px 0 0 0;
    flex-direction: column;
    align-items: center;
}

.tutorialMidia {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tutorialMidia img {
    width: 100%;
}

body.fullscreen button#fullscreenButton {
    position: absolute;
    top: 20px;
    z-index: 9999;
    right: 20px;
    background: #fff;
    width: 40px !important;
    height: 40px !important;
    color: #000 !important;
}

div#containerIframe.fullscreen {
    position: fixed;
    padding: 10px 0 0 0 !important;
    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);
}

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: #1a1a1a;
    padding: 3px 8px;
    font-weight: 600;
    color: var(--btnColor) !important;
    text-transform: capitalize;
    align-items: center;
    justify-content: center;
}

button#fullscreenButton.fullscreen.active {
    width: auto !important;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 30px;
}

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;
}

/* Menu */
.menu__item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    color: var(--textColor);
    font-weight: 600;
    text-decoration: none;
    font-size: 17px;
    transition: all 300ms ease-in-out;
}

@media screen and (min-width: 890px) {
    a.menu__item.active {
        background: var(--primary);
        color: #fff !important;
        border-radius: 10px;
    }

    a.menu__item:hover {
        color: #fff;
        background: #ffffff14;
        border-radius: 10px;
    }

    .menu__item {
        padding: 15px 18px !important;
    }
}

ul.menu__box {
    background: var(--backgroundTransparent);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    z-index: 50;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    list-style-type: none;
    margin: 0;
    padding: 30px 20px;
}

ul.menu__box i {
    display: inline-flex;
}

.submemuContainer {
    margin: 10px 0 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.legendSubmenu {
    font-size: 13px;
    font-weight: 600;
    color: var(--terceira);
}

@media screen and (min-width: 890px) {

    footer {
        display: none;
    }

    ul.menu__box {
        position: fixed;
        left: 0;
        top: 0;
        width: 280px;
        bottom: 0;
        gap: 5px;
        justify-content: flex-start;
        padding: 25px 15px 25px 15px;
    }

    ul.menu__box>li,
    ul.menu__box>div {
        width: 100%;
    }

    ul.menu__box a {
        padding: 6px 15px 6px 0;
    }

    .containerGrid .app {
        width: 100%;
        padding: 30px 20px;
    }

    .containerGrid .primarySection {
        max-width: calc(100% - 280px);
        margin: 0 0 0 290px;
    }

    ul.menu__box {
        background: var(--background);
        border: 1px solid var(--borderColorTransparent);
        border-left: 0;
        border-bottom: 0;
        border-top: 0;
    }

    header {
        background: var(--background);
        border: 1px solid var(--borderColorTransparent);
        border-image: none;
    }

    .container-menu {
        padding: 12px 20px 12px 310px !important;
        max-width: 100% !important;
    }

    .containerLogoDesktop img {
        max-width: 140px;
        width: 100%;
    }

    .container-perfil {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 10px 0 45px 0;
    }

    span.balance {
        background: #ffffff38;
        padding: 6px 10px;
        border-radius: 40px;
        font-size: 13px;
    }

    div#mainContainerTool {
        width: 100%;
    }

    .containerLogoMobile {
        display: none;
    }

    .rodapeContainer {
        max-width: calc(100% - 300px);
        margin: 0 0 0 300px;
    }

    .sectionInterna {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 890px) {
    .container-perfil.desktop {
        display: none;
    }

    .legendSubmenu {
        text-align: center;
    }

    .menu__item {
        padding: 9px 22px;
        font-size: 18px;
    }

    .containerLogoDesktop {
        display: none;
    }

    ul.menu__box {
        align-items: center;
    }

    .keroMenuAtivo body,
    .keroMenuAtivo html {
        overflow: hidden !important;
    }

    .keroMenuAtivo .container-menu>h1>span {
        opacity: 0;
    }

    .menu__box {
        width: 100%;
    }

    .menu__box li {
        display: block;
        width: 100%;
    }

    .menu__box {
        position: fixed;
        top: 90px;
        visibility: hidden;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 800ms ease, transform 600ms ease;
        left: 0;
        right: 0;
        bottom: 73px;
        padding: 0;
        margin: 0;
    }

    .keroMenuAtivo .menu__box {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0s;
    }

    .menu__box>li,
    .menu__box>div {
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 200ms ease, transform 300ms ease;
        transition-delay: 400ms;
        /* só após o menu aparecer */
    }

    .keroMenuAtivo .menu__box>li,
    .keroMenuAtivo .menu__box>div {
        opacity: 1;
        transform: translateY(0);
    }


    .menu__item {
        justify-content: flex-start;
    }

    .social div,
    .ferramentas div {
        text-align: left;
    }


    .menu__item {
        justify-content: center;
    }

    .social div,
    .ferramentas div {
        text-align: center;
    }


    html.keroMenuAtivo {
        overflow: hidden;
    }

    li#menuToggle.menuOpen i:before {
        content: "\e4cd";
    }

    li#menuToggle.menuClose i:before {
        content: "\ea33";
    }

    footer li.menu_item {
        transition: all 100ms ease-in-out;
    }

    footer li.menu_item.secondary.notVisible {
        visibility: hidden;
    }

    footer li.menu_item a>span {
        transition: all 100ms ease-in-out;
    }

    .container-menu a {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }
}

header h1>div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.containerPrimary {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

span.user {
    position: absolute;
    bottom: 25px;
}

span.user span {
    font-size: 14px;
}

a.menu__item.active {
    background: var(--primary);
    color: #fff !important;
    font-weight: 600;
}

.numero {
    transition: opacity 0.2s ease, background-color 0.2s ease;
}

.notyf__toast--success .notyf__message {
    color: #000 !important;
}

.notyf__toast--success i {
    color: #000 !important;
}

button.notyf__dismiss-btn {
    margin: 0 !important;
}

.notyf__message {
    font-size: 13px;
    font-weight: 500;
}

@media screen and (min-width: 890px) {

    .container-menu.nivel-bronze {
        display: none;
    }

}

a.menu__item {
    width: 100%;
}


div#installApp {
    cursor: pointer;
    width: 100%;
}

div#installApp img {
    width: 100%;
    border: 1px solid #ffffff47;
    border-radius: 10px;
}

.installAppInterno {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 35px 40px 35px;
}

span.saldoConta {
    font-size: 12px;
    background: #ffffff2e;
    border-radius: 50px;
    padding: 8px 14px;
    color: #fff;
}

a:-webkit-any-link:focus-visible {
    outline: none !important;
}

button.abrirDeposito {
    background: var(--primary);
    color: var(--btnColor);
    appearance: none !important;
    border: 2px solid transparent;
    position: relative;
    margin: 0;
    border-radius: 50px;
    padding: 5px 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

span.pixIcone {
    font-size: 9px;
    font-weight: 600;
    position: absolute;
    top: -10px;
    right: -2px;
    background: #ffe800;
    color: #000000;
    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;
}


button.botaoDeposito.abrirDeposito {
    animation: luzes 2s linear infinite;
}

@keyframes luzes {
    0% {
        box-shadow: 0 0 10px -10px var(--primary);
    }

    90% {
        box-shadow: 0 0 0 10px transparent;
    }

    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}