﻿/* Arquivo de sobreposição para o desenvolvedor */
.section.ganhadores .painel-busca {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-bottom: 2rem;
    right: 11px;
    position: relative;
}

.section.ganhadores .pesquisar {
    font-size: 1.5rem;
    line-height: 1.7rem;
    color: var(--c-white);
    margin: 0px 0 10px 0;
    font-family: 'DIN Pro', Arial, sans-serif;
    font-weight: 600;
}

.section.ganhadores .input-group>.custom-select:not(:last-child),
.section.ganhadores .input-group>.form-control:not(:last-child) {
    padding: 1.1rem 2rem 1rem 2rem;
    height: auto;
    border-radius: 100rem;
    border: 0rem solid var(--c-yellow1);
    margin: 0rem 0rem 0rem 0rem;
    font-size: 1.3rem;
    line-height: 1;
    transform: none;
    font-weight: 400;
    color: var(--c-bluedark1);
    background: var(--c-white);
}

.section.ganhadores .input-group-append {
    margin-left: -50px;
    z-index: 1;
}

/* vLibras - Ajuste */
@media (max-width: 991px){
    div[vw] {
        /*top: 12%!important; */
    }   
}

/*Tab oculto*/
#ganhadores .tab {
    display: none;
}


/*Arquivo que sobrescreve a roleta em Produção (Deixar comentado em protótipo)*/
/* Section GIRAR ROLETA */
/*.section#girar {
    position: relative;
    background: url(../img/bkg2_1920.webp) center center no-repeat;
    background-size: cover;
}
@media (max-width: 991px){
    .section#girar {
        position: relative;
        background: url(../img/bkg2_991.webp) center center no-repeat;
        background-size: cover;
    }
}

.section#girar .roleta-premios {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.section#girar .roleta-premios .base {
    position: relative;
    z-index: 1;
    width: 100%;
}

@keyframes setaRoleta {
    0% {
        transform: translateX(0) rotate(90deg);
    }

    50% {
        transform: translateX(-10%) rotate(90deg);
    }

    100% {
        transform: translateX(0) rotate(90deg);
    }
}

.section#girar .roleta-premios .seta {
    position: absolute;
    z-index: 4;
    width: 14%;
    top: 32%;
    left: 90%;
    transform: rotate(90deg);
    transition: all 1s ease-in-out;
}

.section#girar .roleta-premios .seta.active {
    animation-name: setaRoleta;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes botaoGirar {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.section#girar .roleta-premios .botao-girar {
    position: absolute;
    z-index: 4;
    width: 18%;
    top: 35.5%;
    left: 41.1%;
    animation-name: botaoGirar;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    transition: all 0.5s ease-in-out;
}

.section#girar .roleta-premios .botao-girar.disable {
    animation-name: none;
}

.section#girar .roleta-premios .botao-girar:hover {
    animation-name: none;
    transform: scale(1);
}

.section#girar .roleta-premios .botao-girar .botao {
    position: absolute;
    top: -7%;
    left: 0;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.section#girar .roleta-premios .botao-girar.disable .botao {
    top: -2%;
    cursor: default;
}

.section#girar .roleta-premios .botao-girar .botao .circulo {
    position: relative;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.section#girar .roleta-premios .botao-girar .botao .texto {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.section#girar .roleta-premios .botao-girar.disable .botao .texto {
    opacity: 0;
}


.section#girar .roleta-premios .botao-girar:hover .botao {
    top: -2%;
}

.section#girar .roleta-premios .botao-girar .sombra {
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.section#girar .roleta-premios .marcador {
    position: absolute;
    z-index: 3;
    top: 15.3%;
    left: 49.9%;
    width: 46%;
    transform: rotate(90deg);
}

@keyframes marcadorRoleta {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

.section#girar .roleta-premios .marcador img {
    opacity: 0;
    width: 100%;
    transition: all 1s ease-in-out;
}

.section#girar .roleta-premios .marcador.active img {
    opacity: 0;
    animation-name: marcadorRoleta;
    animation-duration: 1.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
}

.section#girar .roleta-premios .premios {
    position: absolute;
    z-index: 2;
    top: 4%;
    left: 4.9%;
    width: 90.4%;
}

@keyframes rodaRoletaImagemPremio1 {
    0% {
        transform: rotate(0);
    }

    15% {
        transform: rotate(-15deg);
    }

    100% {
        transform: rotate(1080deg);
    }
}

@keyframes rodaRoletaPremioTv {
    0% {
        transform: rotate(0);
    }

    15% {
        transform: rotate(-15deg);
    }

    100% {
        transform: rotate(1050deg);
    }
}

@keyframes rodaRoletaImagemPremio2 {
    0% {
        transform: rotate(0);
    }

    15% {
        transform: rotate(-15deg);
    }

    100% {
        transform: rotate(1020deg);
    }
}

@keyframes rodaRoletaPremioCelular {
    0% {
        transform: rotate(0);
    }

    15% {
        transform: rotate(-15deg);
    }

    100% {
        transform: rotate(990deg);
    }
}

@keyframes rodaRoletaImagemPremio3 {
    0% {
        transform: rotate(0);
    }

    15% {
        transform: rotate(-15deg);
    }

    100% {
        transform: rotate(960deg);
    }
}

@keyframes rodaRoletaPremioMochila {
    0% {
        transform: rotate(0);
    }

    15% {
        transform: rotate(-15deg);
    }

    100% {
        transform: rotate(930deg);
    }
}

@keyframes rodaRoletaImagemPremio4 {
    0% {
        transform: rotate(0);
    }

    15% {
        transform: rotate(-15deg);
    }

    100% {
        transform: rotate(900deg);
    }
}

@keyframes rodaRoletaPremioKitChurrasco {
    0% {
        transform: rotate(0);
    }

    15% {
        transform: rotate(-15deg);
    }

    100% {
        transform: rotate(870deg);
    }
}

@keyframes rodaRoletaImagemPremio5 {
    0% {
        transform: rotate(0);
    }

    15% {
        transform: rotate(-15deg);
    }

    100% {
        transform: rotate(840deg);
    }
}

@keyframes rodaRoletaPremioEsmerilhadeira {
    0% {
        transform: rotate(0);
    }

    15% {
        transform: rotate(-15deg);
    }

    100% {
        transform: rotate(810deg);
    }
}

@keyframes rodaRoletaImagemPremio6 {
    0% {
        transform: rotate(0);
    }

    15% {
        transform: rotate(-15deg);
    }

    100% {
        transform: rotate(780deg);
    }
}

@keyframes rodaRoletaPremioCooler {
    0% {
        transform: rotate(0);
    }

    15% {
        transform: rotate(-15deg);
    }

    100% {
        transform: rotate(750deg);
    }
}

.section#girar .roleta-premios .premios .roda {
    width: 100%;
}

.section#girar .roleta-premios .premios .roda.animate {
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
    transition: all 0.3s ease-in-out;
}

.section#girar .roleta-premios .premios .roda.imagem-premio1 {
    animation-name: rodaRoletaImagemPremio1;
}

.section#girar .roleta-premios .premios .roda.premio-tv {
    animation-name: rodaRoletaPremioTv;
}

.section#girar .roleta-premios .premios .roda.imagem-premio2 {
    animation-name: rodaRoletaImagemPremio2;
}

.section#girar .roleta-premios .premios .roda.premio-celular {
    animation-name: rodaRoletaPremioCelular;
}

.section#girar .roleta-premios .premios .roda.imagem-premio3 {
    animation-name: rodaRoletaImagemPremio3;
}

.section#girar .roleta-premios .premios .roda.premio-mochila {
    animation-name: rodaRoletaPremioMochila;
}

.section#girar .roleta-premios .premios .roda.imagem-premio4 {
    animation-name: rodaRoletaImagemPremio4;
}

.section#girar .roleta-premios .premios .roda.premio-kit-churrasco {
    animation-name: rodaRoletaPremioKitChurrasco;
}

.section#girar .roleta-premios .premios .roda.imagem-premio5 {
    animation-name: rodaRoletaImagemPremio5;
}

.section#girar .roleta-premios .premios .roda.premio-esmerilhadeira {
    animation-name: rodaRoletaPremioEsmerilhadeira;
}

.section#girar .roleta-premios .premios .roda.imagem-premio6 {
    animation-name: rodaRoletaImagemPremio6;
}

.section#girar .roleta-premios .premios .roda.premio-cooler {
    animation-name: rodaRoletaPremioCooler;
}

.section#girar .roleta-premios .premios .imagens {
    display: none;
    overflow: hidden;
}

.section#girar .roleta-premios .premios .imagens img {
    position: absolute;
    left: -5555;
    width: 20px;
}

.section#girar .nao-ganhou .titulo, .section#girar .ganhou .titulo {
    padding: 0px;
    margin-bottom: 2rem;
    font-size: 3.2rem;
    font-style: italic;
    line-height: 1;
    text-transform: uppercase;
    font-family: 'PFDinTextPro', Arial, sans-serif;
    font-weight: 900;
    letter-spacing: 0px;
    color: var(--c-white);
    text-align: center;
    background: none !important;
    text-shadow: -5px 3px 0px #570010;
}

.section#girar .nao-ganhou .titulo.big, .section#girar .ganhou .titulo.big {
    font-size: 5.2rem;
}

.section#girar .nao-ganhou .btn, .section#girar .ganhou .btn {
    text-decoration: none !important;
}

.section#girar .nao-ganhou .btn:hover, .section#girar .ganhou .btn:hover, .section#girar .nao-ganhou .btn:focus, .section#girar .ganhou .btn:focus {
   color: var(--c-red1);
}*/