body {
    background: #000;
    color: #fff;
    overflow:hidden;
    user-select: none;
    font-family: 'Roboto','Helvetica Neue', Arial;
    font-weight: 300;
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 100vh;
}

*[data-active="0"]{
    display:none;
    opacity: 0;
    transition: all 0.3s;
}

*[data-active="1"]{
    display:block;
    opacity: 1;
    transition: all 0.3s;
}

.no-mouse{
    pointer-events: none;
}

section{
    width: 360px;
    height: 840px;
    overflow:hidden;
    background-image: url('../img/bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

#query header, #restart header, #intro header{
    margin:20px auto;
    text-align: center;
}

#query header img, #restart header img, #intro header img{
    width:210px;
}

#query .content, #restart .content, #intro .content{
    width: 270px;
    margin: 0 auto;
}

#intro .content .content-header{
    margin-top: 60px;
    font-family: 'Roboto Condensed', 'Helvetica Neue', Arial;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
#intro .content .content-header .brim{
    padding-right:10px;
}
#intro .content .content-header .brim img{
    width:65px;
}

#intro .content .content-body{
    padding-top: 18px;
    font-size: 10px;
    line-height: 18px;
}

.button{
    border: 5px solid #0F1923; 
    background: #FF4655;
    outline: 1px solid #FF4655;
    width: 220px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-family: 'Roboto Condensed', 'Helvetica Neue', Arial;
    font-weight: 700;
    font-size: 19px;
    position: absolute;
    bottom:110px;
    left:50%;
    transform: translateX(-50%);
}


#form header, #sprays header{
    margin:20px auto;
    text-align: center;

}

#form header img, #sprays header img{
    width:100px;
}

#form header div, #sprays header div{
    font-family: 'Roboto Condensed', 'Helvetica Neue', Arial;
    font-weight: 700;
    font-size: 19px;
    padding-top: 30px;
}

#sprays .spray-list{
    margin-top: 78px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#sprays .spray-list .spray-card{
    text-align: center;
}

#sprays .spray-list .spray-card img{
    width: 100px;
    height: 100px;
    border: 10px solid #0F1923; 
    background: #FF4655;
    outline: 1px solid #fff;
    opacity: 0.5;
}

#sprays .spray-list .spray-card img.active{
    box-shadow: 0px 0px 20px #ff4655;
    opacity: 1;
}

#sprays .spray-list .spray-card .input{
    color:#FF4655;
    border-bottom: 2px solid #FF4655;
    font-family: 'Roboto Condensed', 'Helvetica Neue', Arial;
    font-weight: 700;
    font-size: 11px;
    line-height: 20px;
    padding: 10px 5px 0 5px;
    text-align: center;
}

#sprays .counter{
    position: fixed;
    top:0;
    left:0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 25, 35,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    color:#FF4655;
    font-family: 'Roboto Condensed', 'Helvetica Neue', Arial;
    font-weight: 700;
    font-size: 250px;
    pointer-events: none;
    transition: all 0.3s;
    pointer-events: none;
    z-index: 100;
}

#sprays .time {
    background: url('../img/time_bg.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100vw;
    height: 44px;
    position: absolute;
    bottom: 110px;
    color:#FF4655;
    font-family: 'Roboto Condensed', 'Helvetica Neue', Arial;
    font-weight: 700;
    text-align: center;
    font-size: 20px;
    line-height: 44px;
    transition: all 0.3s;
}

#sprays .time.done {
    bottom: 222px;
    color: #fff;
}

#sprays .aviso{
    width: 80vw;
    font-size: 12px;
    color:#FF4655;
    font-family: 'Roboto Condensed', 'Helvetica Neue', Arial;
    font-weight: 700;
    text-align: center;
    position: absolute;
    left:50%;
    transform: translateX(-50%);
    bottom: 110px;
}

.numberkeyboard{
    position: fixed;
    background-color: #0F1923;
    border: 1px solid #fff;
    width:90vw;
    height: 184px;
    left:50%;
    transform: translateX(-50%);
    bottom: 90px;
    transition: all 0.3s;
    overflow: hidden;
}

.numberkeyboard.closed{
    height: 0;
    border:none;
}

.numberkeyboard ul{
    display: flex;
    width:100%;
    list-style: none;
    flex-wrap: wrap;
    padding:0;
}

.numberkeyboard ul li{
    width:25%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.numberkeyboard ul li:active{
    background-color: #FF4655;
}

#sprays input[type="number"], #sprays input[type="number"]::placeholder{
    color: #FF4655;
    font-family: 'Roboto Condensed', 'Helvetica Neue', Arial;
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    width: 100%;
    border: none;
    background: none;
    padding-bottom: 5px;
    outline: none;
    width: 120px;
}



#form .content .prize{
    color:#fff;
    font-family: 'Roboto', 'Helvetica Neue', Arial;
    font-weight: 500;
    text-align: center;
    font-size: 12px;
}

#form .content .prize img{
    width: 118px;
    margin-top: 15px;
}

#form .content{
    width: 80vw;
    margin: 80px auto;
    
}

#form .time{
    color:#FFF;
    font-family: 'Roboto Condensed', 'Helvetica Neue', Arial;
    font-weight: 700;
    font-size: 20px;
    line-height: 44px;
}
#form input[type="tel"],
#form input[type="text"],
#form input[type="email"]{
    color:#FFF;
    font-family: 'Roboto Condensed', 'Helvetica Neue', Arial;
    font-weight: 500;
    font-size: 14px;
    width: 100%;
    border:none;
    background: none;
    border-bottom:2px solid #FF4655;
    padding-bottom: 5px;
    margin: 5px 0;
    outline: none;
}
#form input[type="tel"]::placeholder,
#form input[type="text"]::placeholder,
#form input[type="email"]::placeholder{
    color:#FFF;
}

.checkbox{
    margin-top: 10px;
}

.checkbox .state{
    color:#FFF;
    font-family: 'Roboto', 'Helvetica Neue', Arial;
    font-weight: 500;
    font-size: 14px;
}

.termos_a, .termos_a:hover, .termos_a:active, .termos_a:visited{
    color:#FFF;
    font-family: 'Roboto', 'Helvetica Neue', Arial;
    font-weight: 500;
    font-size: 14px;
    color:#FF4655;
    text-decoration: none;
    position: relative;
    right: 14px;
}

.pretty .state label:before {
    border-color: #FF4655 !important;
}
.pretty.p-default input:checked~.state label:after {
    background-color: #FF4655 !important;
}

#restart .content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 430px;
}

#restart .top{
    color:#FFF;
    font-family: 'Roboto Condensed', 'Helvetica Neue', Arial;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    margin-bottom: 60px;
    line-height: 30px;
}

#restart .bottom{
    color:#FFF;
    font-family: 'Roboto Condensed', 'Helvetica Neue', Arial;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
}

#restart .js-abrir-query{
    bottom: 290px;
    font-size: 16px;
    border: 0;
    background: 0;
}


.termos{
    position: absolute;
    top: 0;
    left: 0;
    /* width: 90%; */
    height: 90%;
    overflow: scroll;
    margin: 20px;
    font-size: 10px;
    background: #0F1923;
    padding: 10px;
    border: 1px solid;
}

.termos .button{
    position: static;
    transform: translate(0);
    margin: 30px auto 0;
}

#query .content {
    margin-top: 60px;
    font-size: 12px;
    font-family: 'Roboto Condensed', 'Helvetica Neue', Arial;
    font-weight: 700;
    text-transform: uppercase;
}

#query .content form div{
    margin-bottom:30px;
}

#query .content form select{
    width: 270px;
    height: 30px;
    font-family: 'Roboto Condensed', 'Helvetica Neue', Arial;
    outline: none;
}

#query .js-enviar-query{
  /*  bottom: 220px; */
}

.select2-container{
    font-family: 'Roboto Condensed', 'Helvetica Neue', Arial;
    color: #0F1923;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
    background: #FF4655;
}

.ok{
    font-weight: 700;
    color:#FF4655
}


.del{
    font-weight: 700;
}

.warning{
    font-size: 12px;
    padding-top: 20px;
    font-weight: 700;
    color: #FF4655;
}

.skip{
    text-align: center;
    position: absolute;
    top: 40px;
    right: 20px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Roboto Condensed';
}