@font-face {
    font-family: 'Poppins Semibold';

    src: url('fontface/poppins/Poppins-SemiBold.ttf') format('truetype');
}

body {
    margin: 0 auto;
}


body, .main {
    overflow: hidden;
}

.bg,
.main {
    width: 1080px;
    height: 1920px;
    margin: 0 auto;
    left: 0;
    right: 0;
    position: absolute;
    overflow: hidden;
}

.main {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.bg {
    z-index: 1000;
}

#nome {
    top: 700px;
}

#siteEmpresa {
    top: 900px;
}

#termos {
    display: none;
}

#checkbox {
    width: 90px;
    height: 90px;
    border-radius: 100px;
    position: absolute;
    left: 190px;
    top: 1080px;
    background-color: #028055;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer 
}

#checkbox:not(.checked) > img {
    display: none;
}

#checkbox.checked > img {
    display: block;
    transform: scale(1.5);
    animation-name: scale;
    animation-duration: .5s;
    animation-fill-mode: forwards;
}

#btnContinuar {
    width: auto;
    height: 70px;
    border: none;
    outline: none;
    padding: 0;
    background-color: transparent;
    position: absolute;
    cursor: pointer;
}

#btnContinuar:disabled {
    opacity: .6;
}


.btn-solucoes {
    /*position: absolute;*/
    cursor: pointer;
    display: none;
}

.areaSolucoes {
    top: 450px;
    left: 110px;
    position: absolute;
}

.btn-solucoes.show {
    display: block;
}

#btn-boletoParcelado {
    margin-bottom: 50px;
}

#btn-antifraude {
    margin-bottom: 50px;
}

#btn-gateway {
    margin-bottom: 50px;
}

#btn-pix {
    margin-bottom: 50px;
}


.popup {
    width: 1080px;
    height: 1920px;
    position: absolute;
    z-index: 1005;
    left: 0;
    top: 0;
    align-items: center;
    display: none;
    background-color: rgba(0, 0, 0, .8);
    opacity: 0;
}

.popup.show {
    display: flex;
    animation-name: alpha;
    animation-duration: .4s;
    animation-fill-mode: forwards;
}

.popup > img {
    width: 980px;
    margin: 0 auto;
}


.btn-close-popup {
    position: absolute;
    right: 60px;
    top: 480px;
    cursor: pointer;
}


#btn-sim {
    position: absolute;
    left: 230px;
    top: 680px;
    cursor: pointer;
}

#btn-nao {
    position: absolute;
    left: 230px;
    top: 870px;
    cursor: pointer;
}

#telaFinalSim,
#telaFinalNao {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

#telaFinalSim.show,
#telaFinalNao.show {
    display: block;
    animation-name: alpha;
    animation-duration: .4s;
    animation-fill-mode: forwards;
}


.spinner {
    display: none;
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    vertical-align: text-bottom;
    border: 0.50em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    color: #028055;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}

.spinner.is-loading {
    display: inline-block;
}

@keyframes scale {
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes alpha {
    100% {
        opacity: 1;
    }
}

@keyframes spinner-border {
    100% {
        transform: rotate(360deg);
    }
}