:root{
    --custom-color: #2C7A38;
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;;
}

img{
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

h1, h2, h3, h4, h5, h6{
    font-weight: 700;
}

li{
    list-style: none;
    color: #181818;
}

.h-100p{
    height: 100%;
}

body{
    height: 100dvh;
    min-height: 500px;
}

body > *{
    height: 100%;
}

#screen,
#screen > *{
    height: 100%;
}

#screen > *{
    padding-block: 25px;
}

#left{
    display: flex;
    flex-direction: column;
    align-items:center;
    gap: 25px;
}

#toolbar-section{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
}

#toolbar{
    background-color: #181818;
    border-radius: 7px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.toolbar-item{
    height: 50px;
    aspect-ratio: 1; 
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;        
}

.toolbar-item span{
    font-size: 32px;
}

.toolbar-item.active{
    background-color: #363636;
    transition: .3s;
}

#center{
    background-color: #F7F7F7;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding-inline: 25px;  
}

#center::-webkit-scrollbar {
    width: 6px;
}

#center::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#center::-webkit-scrollbar-thumb {
    background: #c3c3c3;
    border-radius:100px;
}

#title-section{
    margin-top: 10px;
    margin-bottom: 50px;
}

#event_title{
    color: var(--custom-color);
}

#tag-page{
    background: #363636;
    color: #fff;
    width: max-content;
    display: flex;
    gap:15px;
    align-items: center;
    padding: 5px 12px;
    border-radius: 4px;
}

#right{
    display: flex;
    align-items: end;
}

#qrcode-section{
    text-align: center;
}

.item-slider{
    margin-bottom: 50px;
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover,
.slick-arrow{
    position: fixed;
    top: auto !important;
    left: auto !important;
    bottom: 0px;
    background-color: #181818;
    height: 50px;
    width: 50px;
    border-radius: 7px;   
}

.slick-next{
    right: calc(8.3333% + 30px);
    z-index: 999999;
}

.slick-prev{
    right: calc(8.3333% + 100px);
    z-index: 999999;
}

.slick-next:before{
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.slick-prev:before {
    content: "\f053";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.slick-disabled{
    background-color: #ACACAC !important;
}

#question{
    display: flex;
    gap:15px;
    font-size: 1.75rem;
    font-weight: 700; 
    margin-bottom: 15px;
}

.qtd-answer{
    border: 1px solid var(--custom-color);
    width: max-content;
    font-size: .8rem;
    font-weight: 600;
    padding: 4px 12px;
    color: var(--custom-color);
    border-radius: 5px;
    margin-bottom: 35px;
}

.multiplechoice-answer{
    margin-top: 50px;
}

.multiplechoice-answer-title{
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.multiplechoice-answer-qtd{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.bar{
    height: 15px;
    background-color: var(--custom-color);
    border-radius: 3px;
}

.percentage{
    color: var(--custom-color);
}

.answer{
    border-bottom: 1px solid #e5e5e5;
    padding: 25px 15px 10px 0px;
}

.answer-date{
    text-align: end;
    font-size: .8rem;
    color: #c3c3c3;
    margin-top: 10px;
}

.answer .icon-peson{
    margin-top: 5px;
    font-size: 35px;
    color: #363636;
}

.customer-name{
    font-size: .9rem;
    margin-top: 10px;
    color: #363636;
}

.customer-answer{
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.75;
}

.btn-refreash{
    position: fixed;
    top: 0;
    left: 0px;
}

#btn-refreash{
    position: fixed;
    bottom: 25px;
    right: calc(8.3333% + 170px);
    height: 50px;
    min-width: 150px;
    display: flex;
    align-items: center;
    gap:10px;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////////// */

.body-mobile{
    background-color: #F7F7F7;
}

.translate-container{
    max-width: 700px;
}

#main-mobile{
    max-width: 700px;
    height: 100svh;
    overflow-y: auto;
    background-color: #ffffff;
    padding: 25px 20px;
    height: 100%;
}

.form-control{
    min-height: 45px;
}

.form-check-input{
    height: 20px;
    width: 20px;
}

.btn{
    height: 45px;
}

.btn-custom{
    background-color: var(--custom-color);
    color: #fff;
    transition: .2s;
}

.btn-custom:hover{
    border: 1px solid var(--custom-color);
    background-color: #fff;
    color: var(--custom-color);
    transition: .2s;
}

.color-custom{
    color: var(--custom-color);
}


#header{
    margin-top: -15px;
    height: fit-content;
    margin-bottom: 35px;
}

#home #btn-section{
    min-height: 400px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap:25px;
}

#btn-section .btn{
    font-size: 1.15rem;
    height: 65px;
}

.powered-by{
    font-size: .9rem;
}

#customer_name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 20ch;
}

.btn-back{
    height: 45px;
    width: 45px;
}

#questions{
    display: flex;
    flex-direction: column;
    gap:15px;
}
#questions .btn{
    font-size: 1.15rem;
    height: 60px;
}

.question-number{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 4px;
    min-width: 35px;
    min-height: 35px;
    margin-right: 15px;
}

.btn-custom:hover  .question-number{
    border: 1px solid var(--custom-color);
}

.question-title{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-custom:disabled {
    background-color: var(--custom-color) !important;
    color: #ffffff !important;
    cursor: not-allowed !important;
    opacity: 0.4 !important;
}

.question_title{
    margin-top: 50px;
    font-size: 1.25rem;
    font-weight: 700;
}

::placeholder {
    color: #dddddd !important; /* ou qualquer outra cor */
}