@charset "UTF-8";
/* SCSS */
/* SCSS */
/* ===== Usage ===== */
.quiz {
    padding: 1rem;
}

.quiz-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--clr-neutral-70);
    margin-bottom: 1rem;
}

@media only screen and (min-width: 576px) {
    .quiz-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 768px) {
    .quiz-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.quiz-category {
    border-bottom: 1px solid var(--clr-neutral-60);
    padding-bottom: 1rem;
}

    .quiz-category .forum-scroller__container {
        background: none;
        border: none;
        margin-top: 0;
    }

    .quiz-category .top__contributors-header {
        padding: 0.5rem;
        padding-bottom: 0;
    }

.quiz-main {
    display: flex;
    flex-direction: column;
    justify-self: center;
    gap: 1rem;
}

    .quiz-main[data-view-mode=single] .countdown-timer {
        display: flex !important;
        justify-content: center;
        align-items: center;
        position: static;
        scale: 1;
        height: 36px;
        width: 36px;
        margin-bottom: 0;
        transform: translate(0, 0);
        flex-shrink: 0;
        align-self: start;
    }

        .quiz-main[data-view-mode=single] .countdown-timer .circle-container__score {
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

            .quiz-main[data-view-mode=single] .countdown-timer .circle-container__score p {
                font-size: 12px !important;
            }

.quiz-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media only screen and (min-width: 576px) {
    .quiz-top {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

        .quiz-top > *:first-child {
            grid-column: span 2;
        }
}

@media only screen and (min-width: 768px) {
    .quiz-top {
        grid-template-columns: 1fr 1fr 1fr;
        align-items: start;
    }

        .quiz-top > *:first-child {
            grid-column: span 2;
        }
}

@media only screen and (min-width: 1168px) {
    .quiz-top {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        align-items: center;
    }

        .quiz-top > *:first-child {
            grid-column: span 2;
            grid-row: span 2;
        }
}

.quiz-top__wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-categories {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.quiz-categories__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    border: 1px solid var(--clr-neutral-70);
    background-color: var(--clr-white);
    border-radius: 0.5rem;
}

.quiz-categories__icon {
    width: 36px;
    height: 36px;
}

.quiz-categories__title {
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}

.quiz-component {
    margin: 1rem 0;
    background: var(--clr-surface);
    border-radius: 0.5rem;
    border: 1px solid var(--clr-neutral-70);
    padding: 1.5rem 1rem;
    box-shadow: 0 2px 8px var(--clr-neutral-80);
    position: relative;
}

    .quiz-component a {
        color: currentColor !important;
    }

.quiz-component__content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

    .quiz-component__content > * {
        grid-column: span 2;
    }

    .quiz-component__content form {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1rem;
        align-items: center;
    }

        .quiz-component__content form > * {
            grid-column: span 2;
        }

.quiz-component__image {
    width: 100%;
    max-height: 500px;
    border-radius: 0.5rem;
    -o-object-fit: cover;
    object-fit: cover;
}

@media only screen and (min-width: 768px) {
    .quiz-component__image {
        max-height: 600px;
    }
}

.quiz-component__image-credits {
    font-size: 12px;
    color: var(--clr-neutral-50);
}

.quiz-component__head {
    position: absolute;
    top: 0;
    left: 1rem;
    transform: translateY(-50%);
    background: var(--clr-surface);
    border: 1px solid var(--clr-neutral-50);
    border-radius: 0.5rem;
    padding: 0.25rem 0.75rem;
    color: var(--clr-neutral-50);
    font-size: 14px;
    font-weight: 600;
}

.quiz-component__title {
    grid-column: 2;
    font-size: 1.25rem;
    font-weight: 600;
}

.quiz-component__options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-component__options--grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 1rem;
}

    .quiz-component__options--grid .quiz-component__option-text {
        margin-left: 1rem !important;
        text-align: center;
    }

.quiz-component__options .quiz-component__option {
    display: flex;
    position: relative;
}

.quiz-component__options input[type=radio],
.quiz-component__options input[type=checkbox] {
    display: none;
}

.quiz-component__options label {
    border: 1px solid var(--clr-neutral-70);
    background-color: var(--clr-white);
    border-radius: 0.5rem;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

    .quiz-component__options label:hover {
        background-color: var(--clr-neutral-85);
    }

    .quiz-component__options label::before {
        content: "";
        position: absolute;
        left: 0.5rem;
        top: 0.75rem;
        width: 1rem;
        height: 1rem;
        border: 3px solid var(--clr-neutral-70);
        border-radius: 50%;
        background-color: var(--clr-white);
        transition: background-color 0.3s ease, border-color 0.3s ease;
    }

.quiz-component__options input[type=radio] + label::before {
    background-color: var(--clr-white);
    border: 4px solid var(--clr-neutral-70);
}

.quiz-component__options input[type=radio]:checked + label::before {
    background-color: var(--clr-info);
    border: 4px solid var(--clr-neutral-80);
}

.quiz-component__options input[type=checkbox] + label::before {
    border-radius: 0.325rem;
}

.quiz-component__options input[type=checkbox]:checked + label::before {
    background-color: var(--clr-info);
    border-color: var(--clr-neutral-80);
    content: "✔";
    color: var(--clr-white);
    font-size: 0.75rem;
    text-align: center;
    line-height: 0.5rem;
}

.quiz-component__options .quiz-component__option-image {
    aspect-ratio: 3/2;
    -o-object-fit: cover;
    object-fit: cover;
}

.quiz-component__options .quiz-component__option-text {
    font-size: 14px;
    font-weight: 600;
    padding: 0.75rem;
    margin-bottom: 0;
    margin-left: 2rem;
}

.quiz-component__options input[type=radio]:checked + label,
.quiz-component__options input[type=checkbox]:checked + label {
    background-color: var(--clr-info);
    border-color: var(--clr-info);
    color: var(--clr-always-white);
}

.quiz-component__correct, .quiz-component__incorrect {
    position: relative;
    background-color: var(--clr-white) !important;
    color: var(--clr-black) !important;
}

    .quiz-component__correct::before, .quiz-component__incorrect::before {
        content: "";
        position: absolute;
        right: 0.625rem;
        top: 0.75rem;
        width: 2rem;
        height: 2rem;
        background-size: contain;
        background-repeat: no-repeat;
        background: var(--clr-surface);
        border-radius: 100%;
    }

    .quiz-component__correct::after, .quiz-component__incorrect::after {
        content: "";
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
        width: 1.5rem;
        height: 1.5rem;
        background: var(--clr-surface);
        padding: 0.125rem;
        border-radius: 100%;
        animation: blink 1.5s infinite;
    }

@keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
        scale: 1.3;
    }

    100% {
        opacity: 0;
        scale: 1;
    }
}

.quiz-component__correct::after {
    content: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"  viewBox="0 0 122.88 122.88" enable-background="new 0 0 122.88 122.88" xml:space="preserve"><g><path fill="%236BBE66" d="M34.388,67.984c-0.286-0.308-0.542-0.638-0.762-0.981c-0.221-0.345-0.414-0.714-0.573-1.097 c-0.531-1.265-0.675-2.631-0.451-3.934c0.224-1.294,0.812-2.531,1.744-3.548l0.34-0.35c2.293-2.185,5.771-2.592,8.499-0.951 c0.39,0.233,0.762,0.51,1.109,0.827l0.034,0.031c1.931,1.852,5.198,4.881,7.343,6.79l1.841,1.651l22.532-23.635 c0.317-0.327,0.666-0.62,1.035-0.876c0.378-0.261,0.775-0.482,1.185-0.661c0.414-0.181,0.852-0.323,1.3-0.421 c0.447-0.099,0.903-0.155,1.356-0.165h0.026c0.451-0.005,0.893,0.027,1.341,0.103c0.437,0.074,0.876,0.193,1.333,0.369 c0.421,0.161,0.825,0.363,1.207,0.604c0.365,0.231,0.721,0.506,1.056,0.822l0.162,0.147c0.316,0.313,0.601,0.653,0.85,1.014 c0.256,0.369,0.475,0.766,0.652,1.178c0.183,0.414,0.325,0.852,0.424,1.299c0.1,0.439,0.154,0.895,0.165,1.36v0.23 c-0.004,0.399-0.042,0.804-0.114,1.204c-0.079,0.435-0.198,0.863-0.356,1.271c-0.16,0.418-0.365,0.825-0.607,1.21 c-0.238,0.377-0.518,0.739-0.832,1.07l-27.219,28.56c-0.32,0.342-0.663,0.642-1.022,0.898c-0.369,0.264-0.767,0.491-1.183,0.681 c-0.417,0.188-0.851,0.337-1.288,0.44c-0.435,0.104-0.889,0.166-1.35,0.187l-0.125,0.003c-0.423,0.009-0.84-0.016-1.241-0.078 l-0.102-0.02c-0.415-0.07-0.819-0.174-1.205-0.31c-0.421-0.15-0.833-0.343-1.226-0.575l-0.063-0.04 c-0.371-0.224-0.717-0.477-1.032-0.754l-0.063-0.06c-1.58-1.466-3.297-2.958-5.033-4.466c-3.007-2.613-7.178-6.382-9.678-9.02 L34.388,67.984L34.388,67.984z M61.44,0c16.96,0,32.328,6.883,43.453,17.987c11.104,11.125,17.986,26.493,17.986,43.453 c0,16.961-6.883,32.329-17.986,43.454C93.769,115.998,78.4,122.88,61.44,122.88c-16.961,0-32.329-6.882-43.454-17.986 C6.882,93.769,0,78.4,0,61.439C0,44.48,6.882,29.112,17.986,17.987C29.112,6.883,44.479,0,61.44,0L61.44,0z M96.899,25.981 C87.826,16.907,75.29,11.296,61.44,11.296c-13.851,0-26.387,5.611-35.46,14.685c-9.073,9.073-14.684,21.609-14.684,35.458 c0,13.851,5.611,26.387,14.684,35.46s21.609,14.685,35.46,14.685c13.85,0,26.386-5.611,35.459-14.685s14.684-21.609,14.684-35.46 C111.583,47.59,105.973,35.054,96.899,25.981L96.899,25.981z"/></g></svg>');
}

.quiz-component__incorrect::after {
    content: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 122.88 122.879" enable-background="new 0 0 122.88 122.879" xml:space="preserve"><g><path fill="%23FF4141" d="M61.44,0c16.96,0,32.328,6.882,43.453,17.986c11.104,11.125,17.986,26.494,17.986,43.453 c0,16.961-6.883,32.328-17.986,43.453C93.769,115.998,78.4,122.879,61.44,122.879c-16.96,0-32.329-6.881-43.454-17.986 C6.882,93.768,0,78.4,0,61.439C0,44.48,6.882,29.111,17.986,17.986C29.112,6.882,44.48,0,61.44,0L61.44,0z M73.452,39.152 c2.75-2.792,7.221-2.805,9.986-0.026c2.764,2.776,2.775,7.292,0.027,10.083L71.4,61.445l12.077,12.25 c2.728,2.77,2.689,7.256-0.081,10.021c-2.772,2.766-7.229,2.758-9.954-0.012L61.445,71.541L49.428,83.729 c-2.75,2.793-7.22,2.805-9.985,0.025c-2.763-2.775-2.776-7.291-0.026-10.082L51.48,61.435l-12.078-12.25 c-2.726-2.769-2.689-7.256,0.082-10.022c2.772-2.765,7.229-2.758,9.954,0.013L61.435,51.34L73.452,39.152L73.452,39.152z M96.899,25.98C87.826,16.907,75.29,11.296,61.44,11.296c-13.851,0-26.387,5.611-35.46,14.685 c-9.073,9.073-14.684,21.609-14.684,35.459s5.611,26.387,14.684,35.459c9.073,9.074,21.609,14.686,35.46,14.686 c13.85,0,26.386-5.611,35.459-14.686c9.073-9.072,14.684-21.609,14.684-35.459S105.973,35.054,96.899,25.98L96.899,25.98z"/></g></svg>');
}

.quiz-component__correct {
    border-color: #6bbe66 !important;
    background-color: #6bbe66 !important;
    color: var(--clr-white) !important;
}

.quiz-component__incorrect {
    border-color: #ff4141 !important;
    background-color: #ff4141 !important;
    color: var(--clr-white) !important;
}

.quiz-component__view-results {
    color: var(--clr-always-white);
    background-color: var(--clr-secondary);
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .quiz-component__view-results:not(:disabled):hover {
        background-color: var(--clr-primary-2);
    }

    .quiz-component__view-results:disabled {
        cursor: not-allowed;
        background: var(--clr-neutral-80);
    }

.quiz-component .countdown-timer {
    display: none;
}

.quiz-component .circle-container {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(25%, -25%);
    scale: 0.5;
}

.quiz-component .circle-container__score p {
    font-size: 1.25rem;
}

.quiz-component--highlight {
    animation: highlight 2s ease-in-out;
}

@keyframes highlight {
    0% {
        background-color: transparent;
    }

    50% {
        background-color: rgba(255, 236, 179, 0.5);
    }

    100% {
        background-color: transparent;
    }
}

.quiz-component .reveal-answer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media only screen and (min-width: 576px) {
    .quiz-component .reveal-answer {
        flex-direction: row;
        gap: 0.75rem;
    }
}

.quiz-component .reveal-answer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .quiz-component .reveal-answer-wrapper > h3 {
        font-size: 18px;
        font-weight: 600;
    }

.quiz-component .reveal-answer__wrapper {
    width: 100%;
    position: absolute;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--clr-surface);
    padding: 1rem;
    border: 1px solid var(--clr-neutral-70);
    border-radius: 0.5rem;
}

.quiz-component .reveal-answer__image {
    border-radius: 0.5rem;
    overflow: hidden;
}

@media only screen and (min-width: 576px) {
    .quiz-component .reveal-answer__image {
        width: 50%;
    }

        .quiz-component .reveal-answer__image > * {
            display: flex;
            height: 100%;
        }
}

.quiz-component .reveal-answer__title {
    font-size: 14px;
    font-weight: 600;
}

.quiz-component .reveal-answer__description {
    font-size: 14px;
}

.quiz-component .reveal-answer__content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .quiz-component .reveal-answer__content p {
        margin-bottom: 0 !important;
    }

@media only screen and (min-width: 576px) {
    .quiz-component .reveal-answer__content {
        width: 100%;
    }
}

.quiz-component .reveal-answer__content input::-moz-placeholder, .quiz-component .reveal-answer__content textarea::-moz-placeholder {
    color: var(--clr-neutral-50);
}

.quiz-component .reveal-answer__content input::placeholder,
.quiz-component .reveal-answer__content textarea::placeholder {
    color: var(--clr-neutral-50);
}

.quiz-answers {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background-image: url("/assets/img/quiz-result-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left bottom;
    padding: 1rem;
    color: var(--clr-always-white);
    border-radius: 0.5rem;
}

.quiz-answers__title {
    font-size: 1.5rem;
    font-weight: 600;
}

.quiz-answers__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--clr-surface);
    padding: 1rem;
    color: var(--clr-black);
    border-radius: 0.5rem;
}

    .quiz-answers__content p {
        margin-bottom: 0 !important;
        line-height: 1.2;
    }

.quiz-answers__subtitle {
    font-size: 1.25rem;
    line-height: 1.25rem;
    font-weight: 600;
}

.quiz-answers__description {
    font-size: 14px;
    font-weight: 500;
}

.quiz-answers__image {
    border-radius: 0.5rem;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.quiz-answers__image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.quiz-answers__main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-answers__footer {
    display: flex;
    justify-content: space-between;
}

    .quiz-answers__footer a {
        color: var(--clr-always-white) !important;
        font-weight: 600;
        text-decoration: none;
    }

        .quiz-answers__footer a:hover {
            text-decoration: underline;
        }

    .quiz-answers__footer .social-icons {
        display: flex;
        gap: 1rem;
    }

        .quiz-answers__footer .social-icons svg {
            width: 28px;
            height: 28px;
            color: var(--clr-white);
            transition: all 0.3s ease;
        }

            .quiz-answers__footer .social-icons svg:hover {
                color: var(--clr-primary-2);
            }

.quiz-answers__average {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-answers__average-title {
    font-size: 1.25rem;
}

.quiz-answers__others h4 {
    font-size: 14px;
}

.quiz-answers__results-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 0.75rem;
}

.quiz-answers__results-list--loading .quiz-answers__result-item .result-bar {
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
    height: 48px;
}

    .quiz-answers__results-list--loading .quiz-answers__result-item .result-bar::before, .quiz-answers__results-list--loading .quiz-answers__result-item .result-bar::after {
        display: none;
    }

.quiz-answers__results-list--loading .quiz-answers__result-item .result-title,
.quiz-answers__results-list--loading .quiz-answers__result-item .result-score {
    display: none;
}

.quiz-answers__result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
}

    .quiz-answers__result-item .result-bar {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: start;
        padding: 0.5rem;
        border-radius: 4px;
        background: var(--clr-neutral-80);
        overflow: hidden;
        width: 100%;
    }

        .quiz-answers__result-item .result-bar::before {
            content: "";
            position: absolute;
            left: 0;
            bottom: -1px;
            height: 4px;
            width: var(--result-percentage);
            background-color: rgb(107, 190, 102);
            transition: width 1s ease-out;
            z-index: 1;
        }

        .quiz-answers__result-item .result-bar::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -1px;
            height: 4px;
            width: 100%;
            background-color: var(--clr-neutral-80);
            transition: width 1s ease-out;
        }

    .quiz-answers__result-item .result-title {
        position: relative;
        font-weight: 600;
        font-size: 14px;
        z-index: 1;
    }

    .quiz-answers__result-item .result-score {
        position: relative;
        display: flex;
        gap: 0.5rem;
        align-items: center;
        z-index: 1;
    }

        .quiz-answers__result-item .result-score .result-count {
            color: var(--clr-neutral-40);
            font-size: 0.875rem;
        }

        .quiz-answers__result-item .result-score .result-percentage {
            min-width: 4rem;
            font-size: 14px;
            text-align: right;
            font-weight: 600;
            color: var(--clr-success);
        }

.quiz-share {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: var(--clr-surface);
    border: 1px solid var(--clr-neutral-70);
    box-shadow: 0 2px 8px var(--clr-neutral-80);
    border-radius: 0.75rem;
}

.quiz-share__title {
    font-size: 1rem;
    font-weight: 600;
}

.quiz-share textarea {
    font-size: 14px;
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    resize: vertical;
    min-height: 60px;
}

.quiz-share-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
    animation: wave 1s infinite;
}

    .quiz-share-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .quiz-share-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .quiz-share-item:nth-child(3) {
        animation-delay: 0.3s;
    }

    .quiz-share-item:nth-child(4) {
        animation-delay: 0.4s;
    }

    .quiz-share-item:nth-child(5) {
        animation-delay: 0.5s;
    }

    .quiz-share-item:nth-child(6) {
        animation-delay: 0.6s;
    }

    .quiz-share-item:nth-child(7) {
        animation-delay: 0.7s;
    }

    .quiz-share-item:nth-child(8) {
        animation-delay: 0.8s;
    }

    .quiz-share-item:nth-child(9) {
        animation-delay: 0.9s;
    }

    .quiz-share-item:nth-child(10) {
        animation-delay: 1s;
    }

    .quiz-share-item:hover {
        transform: scale(1.1);
    }

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-0.25rem);
    }
}

.quiz-share .social-icons {
    display: flex;
    gap: 1rem;
}

.quiz-counter {
    height: 4px;
    background: var(--clr-neutral-80);
    border-radius: 2px;
    flex: 1;
}

.quiz-counter__wrapper {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    padding: 0.5rem;
    background: var(--clr-surface);
    border: 1px solid var(--clr-neutral-70);
    border-radius: 0.25rem;
    position: sticky;
    top: 0;
    z-index: 1;
}

.quiz-counter__correct {
    background-color: #6bbe66 !important;
}

.quiz-counter__incorrect {
    background-color: #ff4141 !important;
}

.quiz-counter__answered {
    background-color: var(--clr-warning) !important;
}

.quiz-counter__pending {
    background-color: #f5c842 !important;
}

.quiz-counter__partial {
    background-color: #ff9933 !important;
}

.result-component {
    display: none;
    flex-direction: column;
    background: var(--clr-surface);
    border: 1px solid var(--clr-neutral-70);
    border-radius: 0.5rem;
    overflow: hidden;
    padding: 0.5rem;
    gap: 0.75rem;
}

.result-component__correct:before, .result-component__incorrect:before {
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    background: var(--clr-surface);
    padding: 0.125rem;
    border-radius: 100%;
    animation: blink 1.5s infinite;
}

.result-component__correct:before {
    content: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"  viewBox="0 0 122.88 122.88" enable-background="new 0 0 122.88 122.88" xml:space="preserve"><g><path fill="%236BBE66" d="M34.388,67.984c-0.286-0.308-0.542-0.638-0.762-0.981c-0.221-0.345-0.414-0.714-0.573-1.097 c-0.531-1.265-0.675-2.631-0.451-3.934c0.224-1.294,0.812-2.531,1.744-3.548l0.34-0.35c2.293-2.185,5.771-2.592,8.499-0.951 c0.39,0.233,0.762,0.51,1.109,0.827l0.034,0.031c1.931,1.852,5.198,4.881,7.343,6.79l1.841,1.651l22.532-23.635 c0.317-0.327,0.666-0.62,1.035-0.876c0.378-0.261,0.775-0.482,1.185-0.661c0.414-0.181,0.852-0.323,1.3-0.421 c0.447-0.099,0.903-0.155,1.356-0.165h0.026c0.451-0.005,0.893,0.027,1.341,0.103c0.437,0.074,0.876,0.193,1.333,0.369 c0.421,0.161,0.825,0.363,1.207,0.604c0.365,0.231,0.721,0.506,1.056,0.822l0.162,0.147c0.316,0.313,0.601,0.653,0.85,1.014 c0.256,0.369,0.475,0.766,0.652,1.178c0.183,0.414,0.325,0.852,0.424,1.299c0.1,0.439,0.154,0.895,0.165,1.36v0.23 c-0.004,0.399-0.042,0.804-0.114,1.204c-0.079,0.435-0.198,0.863-0.356,1.271c-0.16,0.418-0.365,0.825-0.607,1.21 c-0.238,0.377-0.518,0.739-0.832,1.07l-27.219,28.56c-0.32,0.342-0.663,0.642-1.022,0.898c-0.369,0.264-0.767,0.491-1.183,0.681 c-0.417,0.188-0.851,0.337-1.288,0.44c-0.435,0.104-0.889,0.166-1.35,0.187l-0.125,0.003c-0.423,0.009-0.84-0.016-1.241-0.078 l-0.102-0.02c-0.415-0.07-0.819-0.174-1.205-0.31c-0.421-0.15-0.833-0.343-1.226-0.575l-0.063-0.04 c-0.371-0.224-0.717-0.477-1.032-0.754l-0.063-0.06c-1.58-1.466-3.297-2.958-5.033-4.466c-3.007-2.613-7.178-6.382-9.678-9.02 L34.388,67.984L34.388,67.984z M61.44,0c16.96,0,32.328,6.883,43.453,17.987c11.104,11.125,17.986,26.493,17.986,43.453 c0,16.961-6.883,32.329-17.986,43.454C93.769,115.998,78.4,122.88,61.44,122.88c-16.961,0-32.329-6.882-43.454-17.986 C6.882,93.769,0,78.4,0,61.439C0,44.48,6.882,29.112,17.986,17.987C29.112,6.883,44.479,0,61.44,0L61.44,0z M96.899,25.981 C87.826,16.907,75.29,11.296,61.44,11.296c-13.851,0-26.387,5.611-35.46,14.685c-9.073,9.073-14.684,21.609-14.684,35.458 c0,13.851,5.611,26.387,14.684,35.46s21.609,14.685,35.46,14.685c13.85,0,26.386-5.611,35.459-14.685s14.684-21.609,14.684-35.46 C111.583,47.59,105.973,35.054,96.899,25.981L96.899,25.981z"/></g></svg>');
}

.result-component__incorrect:before {
    content: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 122.88 122.879" enable-background="new 0 0 122.88 122.879" xml:space="preserve"><g><path fill="%23FF4141" d="M61.44,0c16.96,0,32.328,6.882,43.453,17.986c11.104,11.125,17.986,26.494,17.986,43.453 c0,16.961-6.883,32.328-17.986,43.453C93.769,115.998,78.4,122.879,61.44,122.879c-16.96,0-32.329-6.881-43.454-17.986 C6.882,93.768,0,78.4,0,61.439C0,44.48,6.882,29.111,17.986,17.986C29.112,6.882,44.48,0,61.44,0L61.44,0z M73.452,39.152 c2.75-2.792,7.221-2.805,9.986-0.026c2.764,2.776,2.775,7.292,0.027,10.083L71.4,61.445l12.077,12.25 c2.728,2.77,2.689,7.256-0.081,10.021c-2.772,2.766-7.229,2.758-9.954-0.012L61.445,71.541L49.428,83.729 c-2.75,2.793-7.22,2.805-9.985,0.025c-2.763-2.775-2.776-7.291-0.026-10.082L51.48,61.435l-12.078-12.25 c-2.726-2.769-2.689-7.256,0.082-10.022c2.772-2.765,7.229-2.758,9.954,0.013L61.435,51.34L73.452,39.152L73.452,39.152z M96.899,25.98C87.826,16.907,75.29,11.296,61.44,11.296c-13.851,0-26.387,5.611-35.46,14.685 c-9.073,9.073-14.684,21.609-14.684,35.459s5.611,26.387,14.684,35.459c9.073,9.074,21.609,14.686,35.46,14.686 c13.85,0,26.386-5.611,35.459-14.686c9.073-9.072,14.684-21.609,14.684-35.459S105.973,35.054,96.899,25.98L96.899,25.98z"/></g></svg>');
}

@keyframes blink {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

.result-component__answer {
    display: flex;
    font-weight: 600;
    gap: 0.25rem;
}

.result-component__image img {
    min-width: 250px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0.25rem;
}

.result-component__main {
    display: flex;
    flex-direction: column;
}

.result-component__head {
    font-size: 18px;
    font-weight: 600;
}

.result-component__description {
    font-size: 14px;
    color: var(--clr-neutral-30);
}

.circle-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    --size: 80px;
    --half-size: calc(var(--size) / 2);
    --stroke-width: 8px;
    --radius: calc((var(--size) - var(--stroke-width)) / 2);
    --circumference: calc(var(--radius) * 3.1416 * 2);
    --progress: 57; /* Set progress percentage */
}

    .circle-container p {
        margin-bottom: 0 !important;
    }

.circle-container__score {
    position: absolute;
    left: var(--half-size);
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

    .circle-container__score p {
        font-weight: 600;
        margin-bottom: 0;
    }

.circle-container__score-info {
    font-weight: 500;
    font-size: 15px;
}

.circle-container-progress {
    width: var(--size);
    height: var(--size);
    max-height: 80px;
    display: flex;
    flex-shrink: 0;
}

    .circle-container-progress circle {
        cx: var(--half-size);
        cy: var(--half-size);
        r: var(--radius);
        stroke-width: var(--stroke-width);
        fill: none;
        stroke-linecap: round;
    }

.circle-container__bg {
    stroke: #ddd;
}

.circle-container__fg {
    transform: rotate(-90deg);
    transform-origin: var(--half-size) var(--half-size);
    stroke: #ff9900;
    stroke-dasharray: var(--circumference);
    stroke-dashoffset: calc(var(--circumference) * (1 - var(--progress) / 100));
    transition: stroke-dashoffset 0.3s linear;
}

.global-countdown-timer__wrapper {
    position: sticky;
    top: 62px;
    right: 0.5rem;
    align-self: end;
    z-index: 1;
    background-color: var(--clr-white);
    border: 1px solid var(--clr-neutral-80);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
}

.global-countdown-timer__time {
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

    .global-countdown-timer__time strong {
        font-size: 20px;
    }

.authorization-prompt {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--clr-neutral-85);
    border: 1px solid var(--clr-neutral-70);
    border-radius: 0.5rem;
}

.authorization-prompt__title {
    font-size: 14px;
    margin-bottom: 0 !important;
}

.authorization-prompt input {
    width: 100%;
}

.quiz-component--loading {
    min-height: 500px;
    pointer-events: none;
}

.quiz-component .skeleton {
    background: linear-gradient(110deg, var(--clr-neutral-85) 8%, var(--clr-neutral-80) 18%, var(--clr-neutral-85) 33%);
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
}

.quiz-component--loading .quiz-component__head {
    width: 60px;
    height: 20px;
    display: block;
    margin-bottom: 15px;
}

.quiz-component--loading .quiz-component__title {
    width: 80%;
    height: 30px;
    margin-bottom: 20px;
}

.quiz-component--loading .quiz-component__image-wrapper {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
}

.quiz-component--loading .quiz-component__option {
    width: 100%;
    height: 60px;
    border-radius: 8px;
}

@keyframes shine {
    to {
        background-position-x: -200%;
    }
}
