

/* Start:/local/components/izzum/quiz/templates/.default/style.css?17788440331494*/
.quiz {
    margin-top: 20px;
    user-select: none;
    -webkit-user-select: none;
}

.quiz-question {
    font-size: 24px;
    margin-bottom: 20px;
}

.quiz-answers {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quiz-answers button {
    padding: 12px;
    cursor: pointer;
    background: #ddd;
    border-radius: 50px;
    transition: 0.3s;
}
.quiz-answers button:hover {color: #fff;background-color: #FF4200;}

.quiz-timer {
    margin-bottom: 20px;
    font-size: 18px;
}

.quiz-result {
    font-size: 28px;
    font-weight: bold;
}

.quiz-top {
    margin-bottom: 20px;
}

.quiz-timer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 18px;
}

.quiz-progress-text {
    white-space: nowrap;
    font-weight: 600;
}

.quiz-progress {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: #e5e7eb;
    overflow: hidden;
}

.quiz-progress-bar {
    width: 100%;
    height: 100%;
    background: #111;
    transition: width 1s linear;
}
.quiz-progress-bar.progress-green {background-color: #28a745;}
.quiz-progress-bar.progress-yellow {background-color: #ffc107;}
.quiz-progress-bar.progress-red {background-color: #dc3545;}

.quiz-result-text {margin-top: 30px;}

.quiz-next {
    margin-top: 30px;
}

.quiz-next:disabled {
    opacity: .5;
    cursor: not-allowed;
}

@media (max-width: 767px) {
    .quiz-question {font-size: 20px;line-height: 1.4;}
}
/* End */
/* /local/components/izzum/quiz/templates/.default/style.css?17788440331494 */
