
body{
    margin: 0;
    font-size: 18px;
    background-color: rgb(93,159,234);
    font-family: 'Arial Nova', sans-serif;
    font-weight: 400;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}

.custom-box{
    max-width: 600px;
    background-color: #ffffff;
    margin:20px auto;
    padding: 30px;
    animation: fadeInRight 1s ease;
}
@keyframes fadeInRight{
    0%{
        transform: translateX(40px);
        opacity: 0;
    }
    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}
.custom-box::before,
.custom-box::after{
    content: '';
    clear: both;
    display: table;
}
.custom-box.hide{
    display: none;
}       

.brief-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.brief-box h2{
    font-size: 22px;
    color: #18045e;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 20px;
    text-align: left;
}
.brief-box h4{
    font-size: 16px;
    color: #18045e;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 20px;
    text-align: left;
}

.brief-box p{
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 22px;
    color: #000000;
    font-weight: 500;
    text-align: left;
}

.brief-box p span{
    font-weight: 500;
}



.brief-box .btn{
    margin-top: 10px;
    background-color: rgb(93,159,234);
    font-size: 18px;
    color: white;
}

.btn{
    padding: 15px 45px;
    border:none;
    font-family: 'Arial Nova', sans-serif;
    font-size: 18px;
    cursor: pointer;
    display: inline-block;
}


/*
.theme-box{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.theme-box h3{
    font-size: 18px;
    color: #18045e;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 15px;
    text-align: left;
   }
    
.theme-box p{
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 22px;
    color: #000000;
    font-weight: 500;
    text-align: left;
}

.theme-box p span{
    font-weight: 500;
}

.theme-box .btn{
    margin-top: 20px;
    background-color: rgb(93,159,234);
    font-size: 18px;
    color: white;
}

.btn{
    padding: 15px 45px;
    border:none;
    font-family: 'Arial Nova', sans-serif;
    font-size: 18px;
    cursor: pointer;
    display: inline-block;
}

*/
.quiz-box{
    background-color: rgb(93,159,234);
    text-align: center;
}

.quiz-box .question-number,
.quiz-box .question-text,
.quiz-box .option-container,
.quiz-box .next-question-btn,
.quiz-box .answers-indicator{
    width: 100%;
    float: left;
}

.quiz-box .question-number{
    font-size: 12px;
    color: white;
    line-height: 28px;
    margin-top: -15px;
    margin-bottom: 15px;
}

.quiz-box .question-text h4{
    font-size: 12px;
    color: #110675;
    line-height: 28px;
    margin: 0;
}

.quiz-box .question-text{
    background-color: white;
    margin: 0;
    font-size: 18px;
    color: #000000;
    line-height: 28px;
    font-weight: 500;
    padding: 20px 10px;
    margin-bottom: 2%;
}

.quiz-box .question-text img{
    max-width: 100%;
    display: block;
    margin-top: 15px;
}

.quiz-box .option-container .option{
    max-width: 80%;
    margin: 10px 10px 10px 50px;
    background-color: white;
    padding: 13px 15px;
    font-size: 18px;
    line-height: 20px;
    color: #000000;
    margin-bottom: 5px;
    cursor: pointer;
    text-transform: none;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
    position: relative;
    overflow: hidden;
}  

.quiz-box .option-container .option.already-answered{
pointer-events: none;
}

@keyframes fadeIn{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
} 

.quiz-box .option-container .option.correct::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    animation: slideInLeft .5s ease forwards
}

@keyframes slideInLeft{
    0%{
        transform: translateX(-100%);
    }
    100%{
        transform: translateX(0%);
    }
}

.quiz-box .option-container .option.wrong::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    animation: slideInLeft .5s ease forwards
}

.quiz-box .option-container .option.wrong{
    color: #ffffff;
    background-color: #f44e3f;
}

.quiz-box .option-container .option.correct{
    color: #ffffff;
    background-color: #4a8d3c;
}

.quiz-box .btn{
    margin-top: 20px;
    background-color: white;
    font-size: 18px;
    color: black;
} 

.result-box{
    text-align: center;
}

.result-box.hide{
    display: none;
}

.result-box h1{
    font-size: 24px;
    line-height: 24px;
    color: #18045e;
}

.result-box a{
    font-size: 24px;
    line-height: 42px;
    color: #1428dd;
}

.result-box table{
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
}

.result-box table td{
    border:1px solid #cccccc;
    padding: 8px 15px;
    font-weight: 500;
    color: #000000;
    width: 50%;
    text-align: left;
    font-size: 18px;

}
.result-box .btn{
    margin-top: 2px;
    background-color: rgb(93,159,234);
    font-size: 18px;
    color: white;
}

@media(max-width: 767px){
    .result-box .btn{
        margin-bottom: 15px;
    }
    body{
        padding: 15px;
    }
}

.center {
    margin-left: auto;
    margin-right: auto;
    display: block
}

.module-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    background-color: white;
    text-align: left;
    font-size: 17px;
    color: black;
}

.module-box .btn{
    margin-top: 20px;
    background-color: rgb(93,159,234);
    font-size: 18px;
    color: white;
    align-items: center;
}