

::selection{
    color: #fff;
    background: #007bff;
}

.info_box.activeInfo,
.quiz_box.activeQuiz,
.result_box.activeResult{
    opacity: 1;
    width: 100%;
    pointer-events: auto;
}

.qr_img{
    height: 40px;
    width: 40px;
}

.infotxt{
    margin-bottom: 6px;
}

.pt-2{

    margin-bottom: 10px;
    font-size: 13px;
}

.qr_info{
    display: flex;
    gap: 10px;
    background: white;
    padding: 15px 12px;
    border-radius: 15px;
    flex-direction: row;
    align-items: center;
    box-shadow: none;
    border: solid 1px #f3f1f1;
}

.info_box{
    opacity: 0;
    pointer-events: none;
}

.info_box .info-title{
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 5px 5px 0 0;
    font-size: 20px;
    font-weight: 600;
}


.info_box .info-list .info{
    margin: 5px 0;
    font-size: 15px;
}

.info_box .info-list .info span{
    font-weight: 600;
    color: #007bff;
}



.quiz_box{
    width: 550px;
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
}


.left-t{
    display: flex;
    align-items: center;
    gap: 5px;
}

.timer{
    background: #10b981;
    color: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-size: 10px;
    padding: 5px 6px;
    border-radius: 8px;
}

.que{
    background: #10b981;
    color: white;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    padding: 5px 6px;
    border-radius: 8px;
    padding-left: 10px;
}

.que_p{
font-size: 14px;
font-weight: bold;
}

section{
 padding: 30px 0px 15px 0px;
}

section .que_text{
    font-size: 20px;
    font-weight: 600;
}

section .option_list{
    padding: 22px 0px 0px 0px;
    display: block;
}

section .option_list .option{
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 17px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section .option_list .option:last-child{
    margin-bottom: 0px;
}



section .option_list .option.correct{
    color: #fff;
    background: #10b981;

}

section .option_list .option.incorrect{
    color: #fff;
    background: #ff5724;

}

section .option_list .option.disabled{
    pointer-events: none;
}

section .option_list .option .icon{
    height: 26px;
    width: 26px;
    border: 2px solid transparent;
    border-radius: 50%;
    text-align: center;
    font-size: 13px;
    pointer-events: none;
    transition: all 0.3s ease;
    line-height: 24px;
}
.option_list .option .icon.tick{
    color: #10b981;
    border-color: var(--tw-ring-offset-color);
    background: #d4edda;
}

.option_list .option .icon.cross{
    color: #ff5724;
    background: #f8d7da;
    border-color: #ffffff;
}

footer{
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .total_que span{
    display: flex;
    user-select: none;
}

footer .total_que span p{
    font-weight: 500;
    padding: 0 5px;
}

footer .total_que span p:first-child{
    padding-left: 0px;
}

footer button{
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}



footer button.show{
    opacity: 1;
    pointer-events: auto;
}

.result_box{
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.blockcc{
    display: block !important;
}

.disnone{
    display: none !important;
}

.dn{
    display: none;
}

.db{
    display: block;
}

#imageicon{
    height: 80px;
    width: 80px;
}

.res{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    margin-top: 50px;
}

.m_10{
    margin-bottom: 25px;
}

.mb_10{
    margin-bottom: 10px;
}

.result_box .complete_text{
    font-size: 20px;
    font-weight: 500;
}

.result_box .score_text span{
    display: flex;
    margin: 10px 0;
    font-weight: 500;
    font-size: 16px;


}

.result_box .score_text span p{
    padding: 0 4px;

}

#q_bt{
margin-top: 100px;
}

#q_bt_sec{
    background: var(--swiper-theme-color);
    width: 100%;
    padding: 12px 0px;
    color: white;
    border-radius: 6px;
    border-bottom: solid 3px #ffda25;
}


