main {
    min-height: 100vh;
}

#quizModal .modal-dialog{
    max-width: 650px;
}
#quizModal .modal-content{
    border-radius: 6px;
}
#quizModal .close{
    position: absolute;
    right: -15px;
    top: -15px;
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
#quizModal .modal-body{
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 10px;
    background-image: url("../../images/slider-index/s4.jpg");
    background-position: center;
    background-size: cover;
    border-radius: 5px;
}
#quizModal .modal-body:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    border-radius: 6px;
    backdrop-filter: blur(3px);
}

#quizModal .modal-body .quizContent{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.85);
    border-radius: 5px;
    padding: 10px;
    z-index: 1;
}
#quizModal .caption{
    text-align: center;
    line-height: 1.2;
    background-color: rgba(20, 20, 20, 0.85);
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    z-index: 1;
}
#quizModal .caption h4{
    color: #FFF;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 2px;
}
#quizModal .caption span{
    color: #ddd;
    font-size: 16px;
    font-weight: 500;
}

#quizModal .questionText{
    line-height: 1.3;
    font-size: 26px;
    color: #fecc00;
    text-align: center;
    font-weight: 600;
    padding: 10px 0;
    background-color: #4444;
    border-radius: 5px;
    margin-bottom: 20px;
}
#quizModal .answerContainer{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#quizModal .answerContainer .item-question{
    display: flex;
    flex-direction: column;
    color: #fecc00;
    font-size: 20px;
    line-height: 1.3;
    font-weight: bold;
    background-color: #333;
    padding: 8px 10px;
    border: 1px solid #444;
    border-radius: 5px;
    cursor: pointer;
}

#quizModal .answerContainer .item-question span{
    color: #eee;
    font-size: 14px;
    font-weight: 400;
}
#quizModal .answerContainer .item-question:hover{
    background-color: #fecc00;
    color: #333;
    border-color: #fecc00;
}
#quizModal .answerContainer .item-question:hover span{
    color: #333;
}

#quizModal .form-container{
    max-width: 400px;
    margin: 10px auto 0 auto;
}

#quizModal .form-container label{
    color: #fecc00;
}

.panel-GDPRQ{
    background-color: #333;
    padding: 10px;
    border-radius: 5px;
    color: #fff;
}
.panel-GDPRQ > .info{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}
.panel-GDPRQ > .info .text{
    line-height: 1.2;
    font-size: 14px;
}
.panel-GDPRQ > .info > .btn{
    width: 100%;
}
.panel-GDPRQ-check{
    display: flex;
    justify-content: center;
}
.panel-GDPRQ-check > .form-check{
    margin-bottom: 0;
}
.panel-GDPRQ-check .form-check-label{
    font-size: 14px;
}

.quiz-win{
    display: flex;
    flex-direction: column;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    padding: 15px 25px;
    margin-bottom: 15px;
}
.quiz-win .icon{
    height: 100px;
    width: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    margin: 10px 0;
    color: #333;
    background: #fecc00;
}
.quiz-win .icon i{
    font-size: 50px;
}
.quiz-win h4{
    font-size: 22px;
    margin-bottom: 10px;
}
@media (max-width: 992px) {
    #quizModal .close {
        right: -5px;
        top: -45px;
    }
    #quizModal .questionText {
        font-size: 24px;
    }
    #quizModal .answerContainer .item-question{
        padding: 10px;
    }
}