/* version=3.0.4 */
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=REM:wght@100;200;300;400;500;600;700;800;900&display=swap');
html {
    overflow: hidden;
}

:root {
        --first-color: #fff4e6;         /* Laranja muito claro */
    --second-color: #ffa94d;        /* Laranja médio */
    --third-color: #ff922b;         /* Laranja vivo */
    --fourth-color: #FF6101;        /* Laranja intenso */
    --fifth-color: #e85d04;         /* Laranja queimado */
    --sixth-color: #d9480f;         /* Laranja escuro */
    --seventh-color: #f76707;       /* Laranja vibrante */
    --eighth-color: #ff6b00;        /* Laranja avermelhado */
    --ninth-color: #ffb347;         /* Laranja pastel */
    --tenth-color: #cc5803;         /* Laranja terroso */
    --eleventh-color: #f97316;      /* Laranja médio-claro */
    --twelfth-color: #fd7e14;       /* Laranja forte */
    --thirteenth-color: #994d00;    /* Laranja escuro queimado */
    --fourteenth-color: #ff8c00;    /* Laranja outonal */
    --fifteenth-color: #ffc078;     /* Laranja claro suave */
    --sixteenth-color: #ffd43b;     /* Amarelo-alaranjado */
    --seventeenth-color: #e8590c;   /* Laranja denso */
    --eighteenth-color: #b34700;    /* Laranja escuro sólido */
    --nineteenth-color: #a33c00;    /* Laranja puxado para marrom */
    --twentieth-color: #803300;     /* Marrom alaranjado */
    --twenty-first-color: #4d2600;  /* Marrom escuro com toque de laranja */
}



body {
    background: black;
    background-position: top;
    background-size: cover;
    overflow: auto;
    padding-bottom: 1vw;
}

/* Animação do giro do degradê */
.premio {
    overflow: hidden;
}

/* Efeito de brilho em movimento */

.premio::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 200%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateY(-50%);
    animation: shine 10s infinite;
}

.acumulado {
    overflow: visible;
}

.acumulado::before {
    display: none;
}

/* Definindo o delay para cada item (intervalo entre animações) */
.proximos .linha .premio:nth-child(1)::before {
    animation-delay: 0s;
    /* Nenhum intervalo para o primeiro */
}

.proximos .linha .premio:nth-child(2)::before {
    animation-delay: 1s;
    /* Intervalo de 0.5 segundos para o segundo */
}

.proximos .linha .premio:nth-child(3)::before {
    animation-delay: 2s;
    /* Intervalo de 1 segundo para o terceiro */
}

.proximos .linha .premio:nth-child(4)::before {
    animation-delay: 3s;
    /* Intervalo de 1.5 segundos para o quarto */
}

.proximos .linha .premio:nth-child(5)::before {
    animation-delay: 4s;
    /* Intervalo de 2 segundos para o quinto */
}

/* Animação do brilho indo da esquerda para a direita */
@keyframes shine {
    0% {
        opacity: 0;
        left: -200%;
    }

    5% {
        opacity: 1.0;
        left: -100%;
    }

    10% {
        opacity: 1.0;
        left: 100%;
    }

    15% {
        left: 200%;
        opacity: 0;
    }

    100% {
        left: 200%;
        opacity: 0;
    }
}

#comprar {}

#comprar .qtd-bt {
    background: white;
    color: var(--fourth-color);
    border: 0.15vw solid var(--fourth-color);
}

#comprar .bt-comprar{
    background: green;
}
#comprar .bt-menos-mais {
    background: var(--twenty-first-color);
    color: white;
}

.cartela {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.cartela .numero {
    width: 19%;
    position: relative;
}

.cartela .numero:nth-child(2),
.cartela .numero:nth-child(3),
.cartela .numero:nth-child(4),
.cartela .numero:nth-child(5),
.cartela .numero:nth-child(6) {
    margin-top: 2.3vw !important;
    position: relative;
}

.cartela .numero:nth-child(2)::before,
.cartela .numero:nth-child(3)::before,
.cartela .numero:nth-child(4)::before,
.cartela .numero:nth-child(5)::before,
.cartela .numero:nth-child(6)::before {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--first-color);
    background: var(--eighth-color);
    border-radius: 0.5vw;
    top: -2.4vw;
}

.coluna-direita .bilhete-melhores-cartelas.zoom-cartela-1 .numero:nth-child(2)::before,
.coluna-direita .bilhete-melhores-cartelas.zoom-cartela-1 .numero:nth-child(3)::before,
.coluna-direita .bilhete-melhores-cartelas.zoom-cartela-1 .numero:nth-child(4)::before,
.coluna-direita .bilhete-melhores-cartelas.zoom-cartela-1 .numero:nth-child(5)::before,
.coluna-direita .bilhete-melhores-cartelas.zoom-cartela-1 .numero:nth-child(6)::before {
    top: -2.5vw !important;
}

.zoom-cartela-1 .cartela .numero:nth-child(2),
.zoom-cartela-1 .cartela .numero:nth-child(3),
.zoom-cartela-1 .cartela .numero:nth-child(4),
.zoom-cartela-1 .cartela .numero:nth-child(5),
.zoom-cartela-1 .cartela .numero:nth-child(6) {
    margin-top: 2.5vw !important;
}

.coluna-direita .bilhete-melhores-cartelas.zoom-cartela-2 .numero {
    width: 17.9% !important;
}

.coluna-direita .bilhete-melhores-cartelas.zoom-cartela-2 .numero:nth-child(2)::before,
.coluna-direita .bilhete-melhores-cartelas.zoom-cartela-2 .numero:nth-child(3)::before,
.coluna-direita .bilhete-melhores-cartelas.zoom-cartela-2 .numero:nth-child(4)::before,
.coluna-direita .bilhete-melhores-cartelas.zoom-cartela-2 .numero:nth-child(5)::before,
.coluna-direita .bilhete-melhores-cartelas.zoom-cartela-2 .numero:nth-child(6)::before {
    top: -1.9vw !important;
}

.zoom-cartela-2 .cartela .numero:nth-child(2),
.zoom-cartela-2 .cartela .numero:nth-child(3),
.zoom-cartela-2 .cartela .numero:nth-child(4),
.zoom-cartela-2 .cartela .numero:nth-child(5),
.zoom-cartela-2 .cartela .numero:nth-child(6) {
    margin-top: 1.8vw !important;
}

.cartela .numero:nth-child(2)::before {
    content: "S";
}

.cartela .numero:nth-child(3)::before {
    content: "O";
}

.cartela .numero:nth-child(4)::before {
    content: "R";
}

.cartela .numero:nth-child(5)::before {
    content: "T";
}

.cartela .numero:nth-child(6)::before {
    content: "E";
}

.coluna-direita .bilhete-melhores-cartelas .cartela {
    height: auto !important;
}

.cartelas-compradas {
    background-image: none;
    background: var(--fourth-color);
    color: white;
}

.esquerda .premios .premio .value {
    margin-top: 0.5vw !important;
}

.esquerda .premios .acumulado .label {
    font-size: 1.2vw;
    padding-right: 1vw;
}
.esquerda .centro .sorteio-bolas .info .box .value {
    padding-top: 2.3vw;
}

.proximos .linha:first-child {
    background: rgba(255, 255, 255, 1.0);
    margin-bottom: 0.5vw;
}

.proximos .info .label {
    color: var(--fourth-color);
}

.proximos .info:nth-child(1) .value,
.proximos .info .value {
    color: black;
}

.proximos .premio {
    background: var(--fourth-color);
    border: 0.2vw solid var(--first-color);
    color: white;
}

.proximos .acumulado {
    
}

.espera .relogio {
    height: auto;
    padding: 1vw;
    width: calc(100% - 4vw);
    background: var(--fourth-color);
    border-radius: 2vw;
    font-family: 'REM', sans-serif;
    margin: auto;
}

.espera .relogio .numero {
    color: var(--fourth-color);
    border-color: black;
    background: black;
    font-weight: 600;
}

.espera .relogio .doispontos {
    color: black;
}

.proximos {
    width: 100%;
    padding: 2vw 2vw 0
}

.proximos .linha:first-child {
    background: rgba(255, 255, 255, 1.0);
    margin-bottom: 0.5vw;
}

.proximos .info .label {
    color: var(--fourth-color);
}

.proximos .info:nth-child(1) .value,
.proximos .info .value {
    color: black;
}

.proximos .premio {
    background: var(--fourth-color);
    border: 0.2vw solid var(--first-color);
}

.premiado-cartelas .cartela .numero:nth-child(2),
.premiado-cartelas .cartela .numero:nth-child(3),
.premiado-cartelas .cartela .numero:nth-child(4),
.premiado-cartelas .cartela .numero:nth-child(5),
.premiado-cartelas .cartela .numero:nth-child(6) {
    margin-top: 3.6vw !important;
}

.premiado-cartelas .cartela .numero:nth-child(2)::before,
.premiado-cartelas .cartela .numero:nth-child(3)::before,
.premiado-cartelas .cartela .numero:nth-child(4)::before,
.premiado-cartelas .cartela .numero:nth-child(5)::before,
.premiado-cartelas .cartela .numero:nth-child(6)::before {
    margin-top: -0.8vw;
}

.premiado .cartela .numero {
    width: 19.3% !important;
}

.principal {
    padding-top: 60px;
}

#modal-cartelas-compradas .cartela .numero:nth-child(2)::before,
#modal-cartelas-compradas .cartela .numero:nth-child(3)::before,
#modal-cartelas-compradas .cartela .numero:nth-child(4)::before,
#modal-cartelas-compradas .cartela .numero:nth-child(5)::before,
#modal-cartelas-compradas .cartela .numero:nth-child(6)::before {
    top: -1.8vw;
}

#modal-cartelas-compradas .cartela .numero {
    width: 17% !important;
}

.esquerda .premios .premio {
    border: 0.2vw solid var(--fifth-color);
    border-radius: 1vw;
    background: var(--sixth-color);
}

.esquerda .premios .premio-ativo {
    border: 0.2 solid var(--sixteenth-color);
    box-shadow:
        0 0 5px cyan,
        /* Brilho mais suave */
        0 0 10px cyan,
        /* Brilho médio */
        0 0 20px cyan,
        /* Brilho forte */
        0 0 20px cyan,
        /* Brilho mais intenso */
        0 0 20px cyan;
    /* Efeito neon */
}

.esquerda .premios .premio .label {
    width: 80%;
    margin: auto;
    margin-top: -0.6vw;
    height: 3.2vw;
    background-color: var(--seventh-color);
    border-radius: 1vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.esquerda .premios .acumulado {
    border-color: var(--twenty-first-color);
    box-shadow:
        0 0 5px cyan,
        /* Brilho mais suave */
        0 0 10px cyan,
        /* Brilho médio */
        0 0 20px cyan,
        /* Brilho forte */
        0 0 20px cyan,
        /* Brilho mais intenso */
        0 0 20px cyan;
    /* Efeito neon */
}

.esquerda .premios .acumulado .label {
    color: var(--first-color);
}

.esquerda .premios .acumulado .value {
    margin-top: 0.5vw !important;
    color: yellow;
}

.esquerda .premios .acumulado .value::before{
    display: none;
}
.esquerda .premios .acumulado-desativo {
    box-shadow: none;
    background: var(--eighteenth-color);
}

.premios .acumulado-desativo .acumulado-numero {
    color: var(--twentieth-color);
}

.premios .acumulado .acumulado-numero {
    right: -1vw;
    top: 3.3vw;
}

.star {
    right: -1vw;
    top: 3.3vw;
    right: -1vw;
    top: -1vw;
}
.premios .acumulado .acumulado-numero {
    right: -1vw;
    top: -1vw;
}

.esquerda .premios .acumulado {}

.proximos .info .value {
    font-size: 2.5vw;
    line-height: 4vw;
}

@media (orientation: portrait) {
    .ganhadores-final img.ganhadores,
    .ganhadores-final img.logo-doou{
        display: none!important;
    }
    .ganhadores-final .box-amarelo{
        padding-top: 3vw;
        width: 90%;
        margin: 4vw auto;
        padding-bottom: 2vw;
    }
    .proximos .info .value {
        font-size: 4vw;
    }

    .principal {
        padding-top: 10px;
    }

    .premiado-cartelas .cartela .numero:nth-child(2),
    .premiado-cartelas .cartela .numero:nth-child(3),
    .premiado-cartelas .cartela .numero:nth-child(4),
    .premiado-cartelas .cartela .numero:nth-child(5),
    .premiado-cartelas .cartela .numero:nth-child(6) {
        margin-top: 6vw !important;
    }

    .premiado-cartelas .cartela .numero:nth-child(2)::before,
    .premiado-cartelas .cartela .numero:nth-child(3)::before,
    .premiado-cartelas .cartela .numero:nth-child(4)::before,
    .premiado-cartelas .cartela .numero:nth-child(5)::before,
    .premiado-cartelas .cartela .numero:nth-child(6)::before {
        margin-top: 0.2vw;
    }

    .esquerda .premios {
        height: 13vw;
    }

    .esquerda .premios .premio {
        border: 0.5vw solid var(--fifth-color);
        border-radius: 2vw;
        background: var(--sixth-color);
    }

    .esquerda .premios .acumulado .label {
        font-size: 2.2vw;
    }

    .esquerda .premios .premio .value {
        font-size: 3.5vw;
    }

    .esquerda .premios .premio-ativo {
        border: 1vw solid var(--sixteenth-color);
        box-shadow:
            0 0 5px cyan,
            /* Brilho mais suave */
            0 0 10px cyan,
            /* Brilho médio */
            0 0 20px cyan,
            /* Brilho forte */
            0 0 20px cyan,
            /* Brilho mais intenso */
            0 0 20px cyan;
        /* Efeito neon */
    }

    .esquerda .premios .premio .label {
        width: 80%;
        margin: auto;
        margin-top: -0.6vw;
        height: 5vw;
        background-color: var(--seventh-color);
        border-radius: 1vw;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .esquerda .premios .acumulado {
        border: 1vw solid var(--sixteenth-color);
    }
    .esquerda .premios .acumulado .label {
        color: var(--first-color);
    }

    .esquerda .premios .acumulado-desativo {
        box-shadow: none;
        box-shadow: none;
    }

    


    .premios .acumulado-desativo .acumulado-numero {
        color: var(--twentieth-color);
    }

    .premios .acumulado .acumulado-numero {
        right: -3vw;
        top: -1vw;
    }

    .star {
        right: -3vw;
        top: -1vw;
    }

    .premiado .cartela .numero {
        width: 19.7% !important;
    }

    .espera {
        padding: 2vw 0;
        height: auto;
        background: none;

    }

    .espera .relogio {
        height: auto;
        padding: 2vw;
        width: calc(100% - 4vw);
        background: var(--fourth-color);
        border-radius: 2vw;
        font-family: 'REM', sans-serif;
    }

    .espera .relogio .numero {
        color: var(--fourth-color);
        border-color: black;
        background: black;
        font-weight: 600;
    }

    .espera .relogio .doispontos {
        color: black;
    }

    .proximos {
        width: 100%;
        padding: 2vw 2vw 0
    }

    .proximos .linha:first-child {
        background: rgba(255, 255, 255, 1.0);
        margin-bottom: 0.5vw;
    }

    .proximos .info .label {
        color: var(--fourth-color);
    }

    .proximos .info:nth-child(1) .value,
    .proximos .info .value {
        color: black;
    }

    .proximos .premio {
        background: var(--fourth-color);
        border: 0.4vw solid var(--first-color);
    }

    .cartela .numero:nth-child(2),
    .cartela .numero:nth-child(3),
    .cartela .numero:nth-child(4),
    .cartela .numero:nth-child(5),
    .cartela .numero:nth-child(6) {
        margin-top: 6vw !important;
        position: relative;
    }

    .coluna-direita {
        padding: 1vw 3vw;
    }

    .coluna-direita .bilhete-melhores-cartelas.zoom-cartela-2 .cartela-25,
    .coluna-direita .bilhete-melhores-cartelas.zoom-cartela-1 .cartela-25 {
        height: auto !important;
    }

    .cartela .numero:nth-child(2)::before,
    .cartela .numero:nth-child(3)::before,
    .cartela .numero:nth-child(4)::before,
    .cartela .numero:nth-child(5)::before,
    .cartela .numero:nth-child(6)::before {
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--first-color);
        background: var(--eighth-color);
        border-radius: 1vw;
        top: -5.8vw;
    }

    .coluna-direita .bilhete-melhores-cartelas.zoom-cartela-1 .numero:nth-child(2)::before,
    .coluna-direita .bilhete-melhores-cartelas.zoom-cartela-1 .numero:nth-child(3)::before,
    .coluna-direita .bilhete-melhores-cartelas.zoom-cartela-1 .numero:nth-child(4)::before,
    .coluna-direita .bilhete-melhores-cartelas.zoom-cartela-1 .numero:nth-child(5)::before,
    .coluna-direita .bilhete-melhores-cartelas.zoom-cartela-1 .numero:nth-child(6)::before {
        top: -8.8vw !important;
    }

    .zoom-cartela-1 .cartela .numero:nth-child(2),
    .zoom-cartela-1 .cartela .numero:nth-child(3),
    .zoom-cartela-1 .cartela .numero:nth-child(4),
    .zoom-cartela-1 .cartela .numero:nth-child(5),
    .zoom-cartela-1 .cartela .numero:nth-child(6) {
        margin-top: 9vw !important;
    }

    .coluna-direita .bilhete-melhores-cartelas.zoom-cartela-2 .numero:nth-child(2)::before,
    .coluna-direita .bilhete-melhores-cartelas.zoom-cartela-2 .numero:nth-child(3)::before,
    .coluna-direita .bilhete-melhores-cartelas.zoom-cartela-2 .numero:nth-child(4)::before,
    .coluna-direita .bilhete-melhores-cartelas.zoom-cartela-2 .numero:nth-child(5)::before,
    .coluna-direita .bilhete-melhores-cartelas.zoom-cartela-2 .numero:nth-child(6)::before {
        top: -4.4vw !important;
    }

    .zoom-cartela-2 .cartela .numero:nth-child(2),
    .zoom-cartela-2 .cartela .numero:nth-child(3),
    .zoom-cartela-2 .cartela .numero:nth-child(4),
    .zoom-cartela-2 .cartela .numero:nth-child(5),
    .zoom-cartela-2 .cartela .numero:nth-child(6) {
        margin-top: 4.4vw !important;
    }

    .cartela .numero:nth-child(2)::before {
        content: "S";
    }

    .cartela .numero:nth-child(3)::before {
        content: "O";
    }

    .cartela .numero:nth-child(4)::before {
        content: "R";
    }

    .cartela .numero:nth-child(5)::before {
        content: "T";
    }

    .cartela .numero:nth-child(6)::before {
        content: "E";
    }

    .coluna-direita .bilhete-melhores-cartelas .cartela {
        height: auto !important;
    }

    .cartelas-compradas {
        background-image: none;
        background: var(--fourth-color);
        color: white;

    }

    #modal-cartelas-compradas .cartela .numero:nth-child(2)::before,
    #modal-cartelas-compradas .cartela .numero:nth-child(3)::before,
    #modal-cartelas-compradas .cartela .numero:nth-child(4)::before,
    #modal-cartelas-compradas .cartela .numero:nth-child(5)::before,
    #modal-cartelas-compradas .cartela .numero:nth-child(6)::before {
        top: -4.5vw;
    }

    #modal-cartelas-compradas .cartela .numero {
        width: 19% !important;
    }
}

.esquerda .centro .sorteio-bolas .bolas .bola-1 {
    z-index: 90;
}

.animaBolaPrincipal {
    animation: bolaAnimate 1s ease;
    z-index: 91;
}

@keyframes bolaAnimate {
    0% {
        transform: scale(5.0) rotate(0deg);
    }

    100% {
        transform: scale(1.0) rotate(360deg);
    }
}

h1.premio-title {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    font-size: 2.5rem;
    font-weight: bold;
    font-family: myriad;
    text-transform: uppercase;
    background: linear-gradient(0deg, #ff0000, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: rotate(-5deg);
    -webkit-text-stroke: 0 #000;
}
.ganhadores-final .box-amarelo .box-ganhador .nome{
    color: yellow;
    font-weight: 900;
    width: 100%;
    font-size: 22px;
    height: auto;
    padding: 10px;
}
.ganhadores-final.show {
    height: 100vh;
    overflow: auto;
}

.ganhadores-final::before {
    content: "GANHADORES";
}

.h-100 {
    overflow-x: hidden;
}

.header {
    background-image: none;
    background-color: black;
    border-bottom: 1px solid #333;
}

.ganhadores-final .box-amarelo {
    border: 0.4vw var(--eleventh-color) solid;
    background-color: rgba(0, 0, 0, 0.9);
}

.ganhadores-final .box{
    position: relative;
}
.ganhadores-final .box:first-child::before{
    content: "";
    position: absolute;
    background-image: url('./logo-sortida.png');
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center;
    bottom: 0;
    left: 0;
    height: 10vw;
    width: 100%;
}

@media (orientation: portrait) {

    .ganhadores-final::before {
        top: 4vw;
        color: transparent;
        /* deixa o centro vazio */
        -webkit-text-stroke: 1px yellow;
        /* cor e espessura do contorno */
        font-weight: 900;
    }
}

.coluna-direita .bilhete-melhores-cartelas .cartela .cupom,
.coluna-direita .bilhete-melhores-cartelas .cartela .doador,
.coluna-direita .lista-melhores-cartelas .topo,
.premiado .cartela .doador,
.premiado .cartela .rodape {
    background: var(--fifth-color);
    color: white;
}

.esquerda .centro .sorteio-bolas .info .box .value {
    background: var(--fifth-color);
}

.esquerda .centro .sorteio-bolas .info .box .label {
    background: black;
    color: var(--fifteenth-color);
}

.esquerda .painel-numeros .numero {
    background: var(--fifteenth-color);
}

.esquerda .painel-numeros .sorteado,
.coluna-direita .lista-melhores-cartelas .corpo .faltam span {
    background: var(--seventeenth-color);
    color: white;
}

.esquerda .painel-numeros .ultimo {
    background: yellow;
    color: red;

}

.esquerda .premios .premio-desativo .label,
.esquerda .premios .premio-desativo .value {
    color: #a1a1a1;
}

.esquerda .premios .premio-desativo {
    background: var(--eighteenth-color);
}

.esquerda .premios .premio-desativo .label {
    background: var(--twentieth-color);
}

.coluna-direita .lista-melhores-cartelas .corpo .doador {
    color: var(--fifth-color);
    overflow: hidden;   
}
.coluna-direita .lista-melhores-cartelas .corpo .doador .bg-branco{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 2px;
}
.premiado .cartela .sorteado {
    background: var(--seventeenth-color);
}

.cartela .sorteado {
    background: var(--seventeenth-color) !important;
}

.esquerda .painel-numeros {
    background-color: rgba(0, 0, 0, 0.5);
}

.esquerda .premios .acumulado-desativo {
    border: 0.2vw solid var(--fifth-color);
    background-image: none;
    background: var(--eighteenth-color);
    color: #a1a1a1;
}
.esquerda .premios .acumulado-desativo .label{
    background: var(--twentieth-color);
    color: #a1a1a1;
}
.esquerda .premios .acumulado-desativo .value{
    color: #a1a1a1!important;
}
.esquerda .premios .acumulado-ativo {
    background-image: none;
    background: red;
}
@media (orientation: portrait) {
    .esquerda .premios .acumulado-desativo {
        border: 0.5vw solid var(--fifth-color);
    }
    .ganhadores-final .box:first-child::before{
        display: none;
    }
}
.ganhadores-final .box-amarelo .box-ganhador {
    height: auto;
    border: 2px solid var(--fourth-color);
    border-radius: 1vw;
    margin: 2vw;
    padding: 2vw;
    box-shadow: 0 0 5px yellow, 0 0 10px yellow, 0 0 20px yellow, 0 0 20px yellow, 0 0 20px yellow;
    background: var(--sixth-color);
    position: relative;
    padding-top: 40px;
    width: 80%;
    max-width: 300px;
}

.ganhadores-final.show {
    padding-top: 5vw;
}

.ganhadores-final .box-amarelo .box-ganhador .codigo{
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    text-align: center;
    margin: 0 10%;
    background: red;
    border-radius: 0 0 10px 10px;
    background-color: #2b2b2b;
    color: white;
    font-size: 24px;
    padding: 0;
    height: 40px;
}
.ganhadores-final .box-amarelo .box-ganhador .valor {
    color: white;
}

.premiado .janela .box {
    color: white;
    background: var(--fourth-color)!important;
}
.cartelas-compradas span{
    color: white;   
}
.header .navbar-brand {
    background: url(logo-sortida.png) left top no-repeat !important;
    background-size: auto 80% !important;
    color: transparent !important;
    width: 207px !important;
    height: 40px !important;
    display: block;
}
.main{
    background-image: none!important;
}
.bilhete-melhores-cartelas{
    background-image: none!important;
    background: #1D1D1D;
}
.menu-overlay, .menu-overlay .main-menu, .menu-overlay.menu-open .main-menu {
    background: #1D1D1D;
    background-size: 100% !important;
}

.main-menu .text-default-secondary {
    color: var(--fourth-color)!important;
    font-size: 13px !important;
    font-weight: 500 !important;
}
.menu-overlay .main-menu .menu-container .nav-pills {
    padding-top: 25px;
    border-top: 1px solid #414141;
}
.menu-overlay .main-menu .menu-container .nav-pills .nav-item .nav-link {
    font-weight: 500;
}
.main-menu .menu-container .nav-pills .nav-item .nav-link.active {
    background: var(--fourth-color) !important;
    color: white !important;
}
.main-menu hr{
    display: none!important;
}
.main-menu button#btn-sair {
    background: var(--fourth-color)!important;
    color: white!important;
    font-weight: 700 !important;
    transition: 0.5s !important;
    border-radius: 25px !important;
    padding: 10px 25px !important;
    border: none !important;
}
.menu-overlay .main-menu .menu-container .nav-pills .nav-item .nav-link .arrow{
    color: var(--fourth-color)!important;
}
.coluna-direita .bilhete-melhores-cartelas .cartela .cupom, .coluna-direita .bilhete-melhores-cartelas .cartela .doador{
    background: black!important;
}
.coluna-direita .bilhete-melhores-cartelas .cartela .cupom, .coluna-direita .bilhete-melhores-cartelas .cartela .doador, .coluna-direita .lista-melhores-cartelas .topo, .premiado .cartela .doador, .premiado .cartela .rodape{
    background: black!important;
    color: white!important;
}
.btn-success{
    background: var(--eighth-color);
    color: white;
    border: none;
}
.alert-info{
    background-color: var(--fifteenth-color);
    border: none;
    color: var(--fourth-color);
    margin-top: 10px;
}
.main .main-container{
    margin: 10px;
    padding: 20px 10px;
}
.logo-doou{
    display: none;
}
h4#saldo{
    display: flex;
    gap: 4px;
}
.bt-help{
    font-size: 14px;   
}
.loader-display{
    color: var(--fourth-color);
    background: #1D1D1D;
}

.loader-display h4{
    color: var(--fourth-color);
}
.btn-primary{
    background: var(--fourth-color);
    color: white;
    border: none;
}
.btn-primary:hover{
    opacity: 0.8;
}
.avatar.rounded-circle,
.logo-loading .rounded-circle{
    border-radius: 0!important;
}
.especial{
    border: 2px solid var(--fourth-color);
    background: linear-gradient(to bottom, white, var(--fifteenth-color));
    position: relative;
}
.super.especial{
    border: 2px solid red;
    background: linear-gradient(to bottom, white, #ffa7a2);
    position: relative;
}
.nome-sala {
    width: 150px;
}
.login-box .btn-success, .btn-success:active, .btn-success:focus {
    width: 200px !important;
    background: var(--fourth-color) !important;
    color: white!important;
    font-weight: 700 !important;
    transition: 0.5s !important;
    border-radius: 25px !important;
    padding: 10px 25px !important;
    margin-bottom: 10px !important;
}
.login-page .login-box a{
	color: var(--fourth-color) !important;
}
.login-page{
	background: black!important;
}
form#sign_in h2.font-weight-normal.mb-5 {
    color: var(--fourth-color) !important;
    background: white !important;
    padding: 10px 20px !important;
    text-align: center !important;
    border-radius: 25px !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    margin-bottom: 10px !important;
}
.float-label .form-control-label {
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 22px;
    margin: 0;
    font-size: 15px;
    line-height: 20px;
    color: #000000;
    font-size: 15px;
    transition: ease all 0.5s;
    -webkit-transition: ease all 0.5s;
    -ms-transition: ease all 0.5s;
    -moz-transition: ease all 0.5s;
    z-index: 0;
}
form#sign_in label.form-control-label.text-white {
    width: 100%;
    text-align: center;
}

form#sign_in input#input-password, form#sign_in input#input-codigo-acesso {
    text-align: center !important;
}
form#sign_in a{
	text-align: center;
    color: var(--fourth-color);
    width: 100%;
    display: flex;
    justify-content: center;
    font-weight: 600;
}
.btn-login {
    width: 200px !important;
    background: var(--fourth-color)!important;
    color: var(--white) !important;
    font-weight: 700;
    transition: 0.5s;
}
body:has(form#sign_in) {
  background-color: black;
}
html:has(form#sign_in) {
  overflow: auto;
}
.footer.no-bg-shadow{
	margin-bottom: 120px !important;
}
form#sign_in a{
    width: 100% !important;
    text-align: center;
   
}
form#sign_in{
    background: url(imgs-sistema/logo-sortida.png) center top no-repeat !important;
    padding-top: 90px;
}
.login-page .login-box .logo{
    background: url(imgs-sistema/logo-sortida.png) center top no-repeat !important;
    text-align: center !important;
    padding-top: 47px;
    background-size: 60% !important;
    height: 50px;
}
.login-page .login-box .logo b {
    display: none !important;
}
.login-page #sign_in{
    background-image: none!important;
    padding-top: 0!important;
}