
.navbar-quiz-result-config-margin-top {
    margin-top: 48px;
}

.quiz-result-container {
    position: relative;
    width: 100%;
    min-height: 100%;
    height: 100%;
}

.quiz-result-image-container {
    min-height: 40vh;
    width: 100%;
    background-color: var(--qp-color-blue-note);
}

.quiz-result-image-container.small {
    min-height: 35vh;
}

.quiz-result-image {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: 260px;
    object-fit: cover;
}

@media screen and (max-height: 728px) {
    .navbar-quiz-result-config-margin-top {
        margin-top: 0;
    }
    .quiz-result-image-container {
        min-height: 30vh;
        width: 100%;
        background-color: var(--qp-color-blue-note);
        object-fit: cover;
    }
    .quiz-result-image-container.small {
        min-height: 24vh;
    }
    .quiz-result-image {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        max-height: 260px;
    }
}

.quiz-result-content-padding {
    padding: 0 24px;
}

.quiz-result-card-body {
    position: relative;
    flex-grow: 1;
    min-height: 178px;
    overflow: scroll;

    width: 100%;
    height: 100%;
    background-color: var(--qp-color-light-grey);
    padding: 0 16px;

    padding-top: 32px;
    border-radius: 32px 32px 0 0;
}

.quiz-result-card-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    padding: 0 0 24px 0;
    margin-bottom: 0;
}

/*.quiz-result-data-block {*/
/*    position: relative;*/
/*    flex-grow: 1;*/
/*    min-height: 178px;*/
/*    overflow: scroll;*/
/*}*/


.quiz-result-bottom-buttons-container {
    display: flex;
    flex-direction: column;
    min-height: 96px;
    margin-top: auto;
    align-items: center;
}

.quiz-result-stats-card {
    width: 100%;
    border-radius: 8px;
    background-color: white;
    padding: 16px;
    gap: 32px;
    text-align: left;
}

.quiz-result-stats-card-item-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: var(--qp-color-dark-grey);
}

.quiz-result-stats-card-item-thumbs {
    width: 24px;
    height: 24px;
}

.quiz-result-stats-card-item-value {
    font-size: 28px;
    font-weight: 700;
    height: 32px;
    line-height: 32px;
    color: var(--qp-color-blue-note);
    margin-bottom: 0;
}

.quiz-result-height-transition {
    transition: min-height 300ms ease-in-out;
}

.quiz-result-bottom-buttons-container {
    height: 96px;
    min-height: 96px;
    margin-top: auto;
}

.quiz-result-bottom-buttons-container.expanded {
    height: 140px;
    min-height: 140px;
    margin-top: auto;
}

.quiz-result-content-container {
    position: relative;
    min-height: 178px;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.quiz-result-card-data-container {
    flex: 1;
}

.quiz-result-card-data-block {
    height: 100%;
}

.quiz-result-image-content-success {
    content: url('/images/other/quiz-result-success.png');
}

/* DESKTOP CLASSES AND MEDIA QUERIES */
@media (min-width: 992px) {
    .quiz-result-image-content-success {
        content: url('/images/other/quiz-result-success-desktop.png');
    }

    .navbar-quiz-result-config-margin-top {
        margin-top: 0;
    }

    .quiz-result-content-container {
        display: flex;
        flex-direction: row;
    }

    .quiz-result-image-container {
        position: relative;
        min-height: 100vh;
        width: 50%;
    }

    .quiz-result-card-data-container {
        display: flex;
        flex-direction: column;
        width: 50%;
        height: 100vh;
        background-color: var(--qp-color-light-grey);
    }

    .quiz-result-card-data-block {
        width: 100%;
        max-height: 524px;
        margin: auto;
        padding: 0 56px;
        background-color: var(--qp-color-light-grey);
    }

    .quiz-result-image-container.small {
        min-height: 100vh;
    }

    .quiz-result-image {
        max-height: unset;
    }
}
/* DESKTOP CLASSES AND MEDIA QUERIES -eof- */