/* GENERAL */

.project-code {

    position: absolute;

    top: 160px;

    font-family: var(--ft-ff-light);

    left: 60px;

    color: #999999;

}



.logo-quiz {

    position: absolute;

    left: 60px;

    top: 60px;

    width: 8%;

}



/* INTRO */

.quiz-intro{

position: absolute;

    top: 50%;

    left: 50%;

    -ms-transform: translate(-50%, -50%);

    transform: translate(-50%, -50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    margin: 0 auto;

    width: 60%;

    text-align: left;

    background: transparent;

}

.quiz-intro-title {

    font-family: var(--ft-ff-regular);

    font-size: 70px;

    margin-bottom: 150px;

    color: white;

    font-weight: normal;

    position: relative;

    right: -50px;

    top: 25px;

    width: 1390px;

}

.quiz-intro-msg {

    font-family: var(--ft-ff-regular);

    font-size: 30px;

    color: white;

    line-height: 1.4;

    text-align: center;

}

.quiz-intro-msg-1,.quiz-intro-msg-2 {

    margin-bottom: 26px;

}



.quiz-intro-msg span {

    background-color: #fff;

    padding: 5px;

    color: var(--clr-primary);

}

.quiz-intro-description{

    color: black;

    text-align: center;

    padding-inline: 170px;

    font-size: 30px;

    line-height: 40px;

}

.quiz-intro-btn {

    margin-top: 80px;

    padding: 10px 25px;

    background-color: #f5bfce;

    color: #671af4;

    font-family: var(--ft-ff-regular);

    font-weight: bold;

    font-size: 30px;

    border: none;

    cursor: pointer;



}

.quiz-intro-btn p {

    font-size: 32px;

}

.quiz-intro-btn:hover {

 

}



/* TIME IS UP POPUP */

.quiz-timeisup {

    position: absolute;

    top: 0;

    left: 0;

    z-index: 9;

    width: 100%;

    height: 100%; 

    background-color: rgba(0,0,0,0.8);

}

.quiz-timeisup-container {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 800px;

    height: 500px;

    background-color: #eaeaea;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 20px;

    gap: 20px;

    text-align: center;

}

.quiz-timeisup-container .quiz-timeisup-title {

    font-family: var(--ft-ff-bold);

    font-size: 62px;

}



.quiz-timeisup-container .quiz-timeisup-description {

    font-family: var(--ft-ff-regular);

    font-size: 28px;

}



.quiz-timeisup-container .results-try-again-btn {

    color: var(--clr-text-light);

    font-family: var(--ft-ff-bold);

    border: 3px solid var(--clr-text-dark);

    font-size: 26px;

    background: var(--clr-text-dark);

    padding: 12px 24px;

    cursor: pointer;

}

.quiz-timeisup-container .results-try-again-btn:hover {

    background-color: var(--clr-text-light);

    color: var(--clr-text-dark);

    border: 3px solid var(--clr-text-dark);

}



/* TIMER */

.quiz-counter {

    color: var(--clr-text-light);

    font-family: var(--ft-ff-regular);

    border: 3px solid white;

    font-size: 26px;

    background: #671af4;

    padding: 12px 24px;

    max-width: 120px;

    width: 120px;

}



/* QUIZ */

.quiz{

    position: relative;

    width: 80%;

    height: 100%;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    padding-top: 65px;

    z-index: 1;

}

.quiz .question-area{

    display: none;

    height: 100%;

    width: 100%;

}

.quiz .question-area.active{

    display: flex;

    position: relative;

    flex-direction: column;

    flex-wrap: nowrap;

    align-content: center;

    justify-content: flex-start;

    align-items: center;

}

.question-area .primary-btn.validate-btn,

.question-area .clear-answer-btn {

    font-size: 26px;

    position: relative;

    float: right;

    padding: 10px 25px;

    background-color: #f5bfce;

    color: #671af4;

    font-family: var(--ft-ff-regular);

    font-weight: bold;

    border: none;

    cursor: pointer;

    border: 3px solid #f5bfce;

}

.question-area .primary-btn.validate-btn:hover,

.question-area .clear-answer-btn:hover {

    color: #f5bfce;

    background-color: #671af4;

    border: 3px solid white;

}



.question-area .submit-btn {

    margin-top: 80px;

    color: var(--clr-text-light);

    font-family: var(--ft-ff-bold);

    border: 3px solid var(--clr-text-dark);

    font-size: 26px;

    background: var(--clr-text-dark);

    padding: 12px 24px;

    cursor: pointer;

}



.quiz .question{

    position: relative;

    width: 62%;

    color: var(--clr-primary);

    top: 140px;

    /* background: var(--clr-primary);*/

}



.quiz .question p{

    margin: 0;

    font-size: 30px;

    color: white;

    font-family: var(--ft-ff-regular);

    line-height: 34px;

    text-transform: uppercase;

}



.quiz .question span{

    position: relative;

    left: 440px;

    font-size: 24px;

    font-family: var(--ft-ff-regular);

    text-transform: uppercase;

}



.question-instruction{

    position: relative;

    width: 100%;

    display: block;

    font-size: 20px;

    top: 110px;

    font-family: var(--ft-ff-bold);

    color: #193160;

    display: none !important;

}



.quRECENZIEmit-instruction {

    position: absolute;

    right: 125px;

    bottom: 160px;

    line-height: normal;

    width: 330px;

    color: #4f60d0;

    font-family: var(--ft-ff-regular);

    font-size: 19px;

    text-align: center;

}



.quiz .quiz-answers{

    position: relative;

    width: 62%;

    height: auto;

    top: 160px;

}



.quiz .quiz-answers .answer{

    position: relative;

    width: 100%;

    min-height: 70px;

    background-color: white;

    margin: 15px auto;

    cursor: pointer;

    color: var(--clr-primary);

    padding: 10px 12px;

    display: flex;

    flex-direction: row;

    flex-wrap: nowrap;

    align-items: center;

    border: 2px solid white;

    box-sizing: border-box;

}



/* .quiz .quiz-answers .answer.clicked .answer-circle{

  background-color: var(--clr-text-dark)

} */



.quiz .quiz-answers .answer.clicked{

    font-weight: bold;

    background-color: transparent;

    border: 3px solid white;

    color: white;

}



.quiz .quiz-answers .answer p{

    position: relative;

    width: 100%;

    word-wrap: break-word;

    line-height: 25px;

    padding-right: 25px;

    margin: 5px;

    font-family: var(--ft-ff-light);

    font-size: 24px;

}



.quiz .quiz-answers .answer .answer-circle{

    position: absolute;

    width: 30px;

    height: 30px;

    border-radius: 50%;

    /* background: white;

    border: 2px solid white; */

    left: -50px;

    display: none !important;

}



.quiz .quiz-answers .answer.right {

    background: #f3c255;

    border: none;

}

.quiz .quiz-answers .answer.wrong {

    /* background: red; */

    opacity: 0.3;

}



.quiz-pagination .quiz-page.right {

    background-color: #f3c255 !important;

}

.quiz-pagination .quiz-page.wrong {

    /* background-color: #FF0F1C !important; */

    background: white !important;

    border: 2px solid white;

    color: var(--clr-primary) !important;

}



.quiz .quiz-answers .answer .answer-circle.right{

    background-image: url(../../assets/images/icons/icon-right.png) !important;

    background-size: contain !important;

}

.quiz .quiz-answers .answer .answer-circle.wrong{

    background-image: url(../../assets/images/icons/icon-wrong.png) !important;

    background-size: contain !important;

}



/* NAVIGATION */

.quiz-navigation {

    position: absolute;

    z-index: 9;

    bottom: 40px;

    left: 50%;

    transform: translate(-50%);

    display: flex;

    align-content: center;

    align-items: center;

    justify-content: flex-start;

    width: 100%;

    padding: 0 80px;

    gap: 50px;

}

.quiz-navigation .quiz-navigation-btns {

    display: flex;

    align-items: center;

    gap: 16px;

}

.quiz-navigation .quiz-pagination {

    display: flex;

    gap: 10px;

}

.quiz-navigation .quiz-nav {

    font-size: 26px;

    padding: 10px 25px;

    background-color: #f5bfce;

    color: #671af4;

    font-family: var(--ft-ff-regular);

    font-weight: bold;

    border: none;

    cursor: pointer;

    border: 3px solid #f5bfce;

}

.quiz-navigation .quiz-nav:hover {

    color: #f5bfce;

    background-color: #671af4;

    border: 3px solid white;

}



.quiz-navigation .quiz-pagination .quiz-page {

    font-size: 26px;

    color: #fff;

    background-color: var(--clr-secondary);

    font-weight: bold;

    font-family: var(--ft-ff-regular);

    padding: 8px;

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

}

.quiz-navigation .quiz-pagination .quiz-page.inactive {

    cursor: inherit;

}



.quiz-navigation .quiz-pagination .quiz-page.active:has(.wrong, .right) {

    color: white;

    border: 3px solid #193160;

}



.quiz-navigation .quiz-pagination .quiz-page .answer-circle{

    position: absolute;

    width: 25px;

    height: 25px;

    top: -14px;

    right: 12px;

    background-repeat: no-repeat;

    background-size: contain;

}



/* FEEDBACK */

.quiz-feedback-overlay{

    background-color: black;

    z-index: 1;

    opacity: 0.85;

}

.quiz-feedback{

    position: absolute;

    width: 900px;

    height: 500px;

    top: 180px;

    background-color: white;

    border-radius: 20px;

    left: 270px;

    z-index: 1;

}



.quiz-feedback .close-feedback{

    position: absolute;

    width: 40px;

    right: 10px;

    top: 10px;

    cursor: pointer;

    transition: transform 0.25s ease;

}



.quiz-feedback .close-feedback:hover{

    transform: scale(1.1); 

}



.quiz-feedback .feedback-title{

    position: absolute;

    top: 50px;

    width: 100%;

    text-align: center;

}

.quiz-feedback .feedback-title.right{

    color: var(--primary);

}

.quiz-feedback .feedback-title.wrong{

    color: #000f64;

}

.question-area .feedback .feedback-title{

    color: white;

    position: absolute;

    bottom: 60px;

    font-size: 32px;

}



.question-area .feedback .feedback-title.right{

    right: 80px;

}

.question-area .feedback .feedback-title.wrong{

    right: 60px;

}



.quiz-feedback .feedback-text{

    position: absolute;

    top: 140px;

    width: 100%;

    text-align: center;

    color: #777;

}



.quiz-feedback .feedback-btn{

    position: absolute;

    bottom: 80px;

    left: 352px;

}



/* REVIEW */

.quiz-results {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 50px;

}



.quiz-results .results-summary {

    display: block;

    position: relative;

    width: 100%;

    text-align: center;

}

.quiz-results .results-summary .results-title {

    font-family: var(--ft-ff-regular);

    font-weight: bold;

    font-size: 42px;

    position: relative;

    display: block;

    color: white;

    top: 30px;

}



.quiz-results .results-summary .results-title span {

    font-weight: bold;

    background-color: var(--clr-primary);

    color: #fff;

    padding: 6px;

}



.quiz-results .results-table-title {

    position: relative;

    display: block;

    font-family: var(--ft-ff-regular);

    font-size: 60px;

    text-align: left;

    color: white;

    top: 130px;

    left: -617px;

}



.quiz-results .results-summary .results-description {

    font-family: var(--ft-ff-regular);

    font-size: 32px;

    color: white;

    position: relative;

}

.quiz-results .results-summary .results-description span{

    font-weight: bold;

    background-color: var(--clr-primary);

    color: #fff;

    padding: 6px;

}



.quiz-results .results-list {

    width: 1320px;

    display: flex;

    flex-direction: row;



    /* enable for feedbackType: 'table' */

    /* flex-direction: column; */



    flex-wrap: wrap;

    align-content: center;

    justify-content: flex-start;



    /* enable for feedbackType: 'simple' */

    align-items: flex-start;



    /* enable for feedbackType: 'table' */

    /* align-items: center; */



    gap: 20px;

    padding: 30px;

    position: relative;

    top: 70px;

    right: 100px;

}





.quiz-results .results-list .list-first-column,.quiz-results .results-list .list-second-column {

    display: flex;

    flex-wrap: nowrap;

    flex-direction: column;

    align-content: center;

    justify-content: center;

    align-items: center;

    gap: 20px;

}



.quiz-results .results-list .results-item{

    display: inline-flex;

    flex-direction: row;

    flex-wrap: nowrap;

    align-content: center;

    justify-content: center;

    align-items: center;

    border: 1px solid #000;



    /* enable for feedbackType: 'table' */

    justify-content: flex-start;

    width: 620px;

}



.quiz-results .results-list .results-item.right{

    background-color: #f3c255;

    border: 1px solid #f3c255;

}



.quiz-results .results-list .results-item.wrong{

    background-color: white;

    border: 1px solid white;

}



.quiz-results .results-list .results-item .results-item-description {

    margin-left: 10px;

    font-size: 22px;

    color: var(--clr-primary);

    font-family: var(--ft-ff-regular);

    font-weight: bold;

}



.quiz-results .results-list .results-item .results-item-description .bold{

    font-family: var(--ft-ff-bold);

    font-size: 18px;

    cursor: pointer;

}



.quiz-results .results-list .results-item .feedback-icon.right{

    padding: 10px;

    display: flex;

    justify-content: center;

    align-items: center;

}



.quiz-results .results-list .results-item .feedback-icon.wrong{

    padding: 10px;

    display: flex;

    justify-content: center;

    align-items: center;

}



.quiz-results .results-list .results-item .results-item-question {

    font-size: 26px;

    color: var(--clr-primary);

    font-weight: bold;

    font-family: var(--ft-ff-regular);

    padding: 8px;

    width: 250px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

}

.quiz-results .results-nav {

    display: flex;

    align-items: center;

    justify-content: flex-start;

    width: 100%;

    padding: 0 80px;

    gap: 10px;

    position: relative;

    bottom: 30px;

}



.quiz-results .results-nav .btn-review-quiz,

.quiz-results .results-nav .results-try-again-btn,

.quiz-results .results-nav .quiz-btn-submit {

    margin-top: 80px;

    position: relative;

    left: 150px;

    font-size: 26px;

    padding: 10px 25px;

    background-color: #f5bfce;

    color: #671af4;

    font-family: var(--ft-ff-regular);

    font-weight: bold;

    border: none;

    cursor: pointer;

    border: 3px solid #f5bfce;



}

.quiz-results .results-nav .btn-review-quiz:hover,

.quiz-results  .results-nav .results-try-again-btn:hover,

.quiz-results .results-nav .quiz-btn-submit:hover {

    color: #f5bfce;

    background-color: #671af4;

    border: 3px solid white;

}



.quiz-results-feedback{

    position: relative;

    top: 130px;

}

.final-score{

    position: absolute;

    right: 736px;

    bottom: 380px;

    font-family: 'AzoSans Black';

    font-size: 30px;

    text-align: center;

    width: 141px;

    height: 52px;

    color: white;

}

.quiz-navigation .quiz-pagination .quiz-page.review.right{

    /* border: 4px solid #6ea114; */

    background-color: #6ea114;

    color: white;

}

.quiz-navigation .quiz-pagination .quiz-page.review.right.active{

    border: 4px solid #193160;

    background-color: white;

}

.quiz-navigation .quiz-pagination .quiz-page.review.wrong{

    /* border: 4px solid #dc4232; */

    background-color: #dc4232;

    color: white;

}

.quiz-navigation .quiz-pagination .quiz-page.review.wrong.active{

    border: 4px solid #193160;

    background-color: white;

}



/* DEFAULT */

.exit-quiz{

    position: absolute;

    right: 220px;

    width: 30px;

    cursor: pointer;

    top: 110px;

    transition: transform 0.25s ease;

}



.exit-quiz:hover {

    transform: scale(1.1);   

}



/* .feedback{

    position: absolute;

    bottom: 20%;

    left: 50%;

    transform: translate(-50%, -50%);

    text-align: center;

    font-size: 25px;

} */

 .feedback{

    position: absolute;

    bottom: 0px;

    right: -200px;

    width: 80%;

    text-align: left;

    background: url(../../assets/images/background/feedback-bg.webp);

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    height: 50%;

    z-index: -1;

    -webkit-user-drag: none;

 }

 .feedback.--anim{

    -webkit-animation:slide-in-bottom .5s cubic-bezier(.25,.46,.45,.94) both;animation:slide-in-bottom .5s cubic-bezier(.25,.46,.45,.94) both

 }



.feedback-question-mark{

    display: none;

    position: absolute;

    right: 30px;

    top: 15px;

    width: 312px;

    height: auto;

    z-index: 0;

    -webkit-user-drag: none;

}



.question-num{

    position: absolute;

    left: 60px;

    top: 55px;

    font-size: 160px;

    color: white;

    font-family: var(--ft-ff-regular);

}



@-webkit-keyframes slide-in-bottom{0%{-webkit-transform:translateY(1000px);transform:translateY(1000px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes slide-in-bottom{0%{-webkit-transform:translateY(1000px);transform:translateY(1000px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}