
body {
    background-color: #F7F7F7 !important;
    font-family: Outfit, serif;
    /*-ms-overflow-style: none; !* for Internet Explorer, Edge *!*/
    /*scrollbar-width: none; !* for Firefox *!*/
}

*::-webkit-scrollbar {
    /*display: none; !* for Chrome, Safari, and Opera *!*/
    /*-webkit-appearance: none;*/
    /*width: 0;*/
    /*height: 0;*/
}

.accessibility-font {
    font-family: 'EasyReading', sans-serif !important;
}

.never-outline, .never-outline:focus-visible, .never-outline:hover {
    border: none;
    outline: none;
}

a {
    color: #006EFF;
    text-decoration: none;
    background-color: transparent;
}

a.blue {
    color: #006EFF !important;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: #0889ce;
    /*text-decoration: underline;*/
}

p {
    margin-bottom: 0;
}

textarea:focus-visible {
    outline: none;
}

img.disabled {
    opacity: 0.4;
    pointer-events: none;
}
.navbar-onboarding-config-margin-top {
    margin-top: 48px;
}

.navbar-main-config-margin-top {
    margin-top: 20px;
}

.navbar-main-config-margin-top  > div.container{
    padding-top: 24px;
}

.nav-bar-padding {
    padding: 0;
}

.carousel-container {
    position: relative;
    min-height: 30vh;
    height: 30vh;
    width: 100%;
}

.carousel-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qp-tabbar-min-height {
    min-height: var(--qp-settings-tabbar-height);
}

.qp-tabbar-padding-bottom {
    padding-bottom: var(--qp-settings-tabbar-height);
}

.qp-content-padding {
    padding: 0 24px;
}

.qp-content-padding-16 {
    padding: 0 16px;
}

.qp-main-content-padding {
    padding: 0 16px var(--qp-settings-tabbar-height) 16px;
}

.qp-main-content-padding-no-tabbar {
    padding: 0 16px 32px 16px;
}

.qp-page-content-padding-bottom {
    padding-bottom: 32px;
    transition: padding-bottom 0.2s linear;
}

.qp-page-content-with-sticky-button-padding-bottom {
    padding-bottom: var(--qp-settings-tabbar-height);
    transition: padding-bottom 0.2s linear;
}

.qp-page-content-with-sticky-button-no-tabbar-padding-bottom {
    padding-bottom: 0;
    transition: padding-bottom 0.2s linear;
}

.no-padding {
    padding: 0;
}

.qp-navbar {
    margin-top: 40px;
    height: 103px;
    background-color: red;
}

.qp-page-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
    color: var(--qp-color-blue-note);
}

.qp-text-link {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
}

.qp-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    color: var(--qp-color-blue-note);
}

.qp-text-bold {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: var(--qp-color-blue-note);
}

.qp-text-medium {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: var(--qp-color-blue-note);
}

.qp-text-medium-bold {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: var(--qp-color-blue-note);
}

.qp-text-semi-bold {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: var(--qp-color-blue-note);
}

.qp-text-small {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--qp-color-blue-note);
}

.qp-text-thin {
    font-size: 16px;
    font-weight: 200;
    line-height: 20px;
    color: var(--qp-color-blue-note);
}

.qp-text-regular {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: var(--qp-color-blue-note);
}

.qp-background-gray {
    background-color: var(--qp-color-light-grey);
}

.qp-available-height {
    flex-grow: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.qp-card {
    width: 100%;
    border-radius: 8px;
    background-color: white;
    padding: 8px;
    overflow: hidden;
}

.qp-section-title {
    padding-left: 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 29px;
    margin-bottom: 8px;
    color: var(--qp-color-blue-note);
}

.qp-bottom-sheet-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    padding: 12px 0 12px 0;
    margin-bottom: 0;
}

.qp-progress {
    height: 8px;
    background-color: var(--qp-color-medium-light-grey);
}
.qp-progress > div.progress-bar {
    width: 0;
    height: 8px;
    border-radius: 6px;
    background-color: var(--qp-color-light-blue);
    transition: all 0.5s ease-in-out;
}

.indeterminate-progress-bar {
    height: 3px;
    background-color: var(--qp-color-light-grey);
    width: 100%;
    overflow: hidden;
    transition: height 0.1s;
}

.indeterminate-progress-bar-hidden {
    height: 0;
}

.indeterminate-progress-bar-value {
    width: 100%;
    height: 100%;
    background-color: var(--qp-color-super-light-blue);
    animation-name: progressBarIndeterminateAnimation;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    transform-origin: 0 50%;
    transform:  translateX(0) scaleX(0);
}

@keyframes progressBarIndeterminateAnimation {
    0% {
        transform:  translateX(0) scaleX(0);
    }
    40% {
        transform:  translateX(0) scaleX(0.4);
    }
    100% {
        transform:  translateX(100%) scaleX(0.5);
    }
}

/* */
.btn-qp-quiz-answer {
    background-color: white !important;
    border-color: var(--qp-color-blue-note) !important;
    box-shadow: none !important;
}
.btn-qp-quiz-answer:hover {
    background-color: white !important;
    border-color: var(--qp-color-blue-note) !important;
    box-shadow: none !important;
}
.btn-qp-quiz-answer.disabled, .btn-qp-quiz-answer:disabled {
    background-color: white !important;
    border-color: var(--qp-color-blue-note) !important;
    box-shadow: none !important;
    opacity: 0.4;
}

/* */
.btn-qp-quiz-answer.correct {
    background-color: var(--qp-color-green) !important;
    border-color: var(--qp-color-green) !important;
    opacity: 1 !important;
}
.btn-qp-quiz-answer.correct > div {
    display: none;
}
.btn-qp-quiz-answer.correct:after {
    content: url('/images/app/button-answer-feedback-correct.png');
}

/* */
.btn-qp-quiz-answer.wrong {
    background-color: var(--qp-color-red) !important;
    border-color: var(--qp-color-red) !important;
    opacity: 1 !important;
}
.btn-qp-quiz-answer.wrong > div {
    display: none;
}
.btn-qp-quiz-answer.wrong:after {
    content: url('/images/app/button-answer-feedback-wrong.png');
}

/* */
.btn-qp-quiz-answer.active {
    color: white;
    background-color: var(--qp-color-light-blue) !important;
    border-color: var(--qp-color-light-blue) !important;
}

/* */
.prefix-checkmark-items-list {
    list-style-type: none;
    margin: 0;
    padding: 0
}

.prefix-checkmark-items-list > li {
    font-size: 18px;
    display: flex;
    width: 100%;
}

.prefix-checkmark-items-list > li:before {
    content: url('/images/app/icon-check.svg');
    margin-right: 8px;
}

.prefix-checkmark-items-list > li:not(:last-child) {
    margin-bottom: 16px;
}

@media screen and (max-height: 728px) {
    .prefix-checkmark-items-list > li:not(:last-child) {
        margin-bottom: 8px;
    }
}
/* */

/* */
.segmented-control-container {
    height: 56px;
    margin: -16px -16px 12px -16px;
}

.segmented-control-container > ul {
    height: calc(100% - 4px);
}

.segmented-control-container > ul > li {
    display: flex;
    flex-direction: column;
    width: 33.3%;
    cursor: pointer;
}

.segmented-control-container li > p {
    font-size: 18px;
    font-weight: 400;
    height: 24px;
    line-height: 24px;
    color: var(--qp-color-blue-note);
    margin: auto;
}

.segmented-control-bottom-bar {
    width: 33.3%;
    transition: all 0.2s ease-out;
    transform: translateX(0);
}
.segmented-control-bottom-bar.no-animation {
    transition: none;
    transform: translateX(0);
}

.segmented-control-bottom-bar > div {
    min-width: calc(100% - 32px);
    width: 90%;
    height: 4px;
    border-radius: 32px;
    margin: 0 auto;
    background-color: var(--qp-color-blue-note);
}

.segmented-control-container:has(> ul > li.active) > ul > li.active > p {
    font-weight: 700;
    cursor: pointer;
    pointer-events: none;
}
/* */

/* */
.goto-section-arrow-btn {
    height: 30px !important;
    flex: 0;
}
.goto-section-arrow-btn > img {
    width: 24px;
    height: 24px;
    object-fit: cover;
}
.goto-section-arrow-btn,
.goto-section-arrow-btn:active,
.goto-section-arrow-btn:focus,
.goto-section-arrow-btn:hover,
.goto-section-arrow-btn:focus-visible,
.goto-section-arrow-btn:disabled,
.goto-section-arrow-btn > img:focus-visible {
    outline: none;
    border: none;
}
/* */

.qp-close-sheet {
    position: absolute;
    right: 16px;
    top: 12px;
    width: 24px;
    height: 24px;
    border: none;
    padding: 0;
    z-index: 10001;
    background-color: transparent;
}
.qp-close-sheet:after {
    content: url('/images/app/icon-close-circle.svg');
}

.qp-close-sheet:disabled {
    opacity: 0.4;
}

.no-animation {
    transition: none !important;
    /*transform: translateX(0) !important;*/
}

/* */
.btn-qp-quiz-answer {
    background-color: white !important;
    border-color: var(--qp-color-blue-note) !important;
    box-shadow: none !important;
    height: 48px !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
}
.btn-qp-quiz-answer:hover {
    background-color: white !important;
    border-color: var(--qp-color-blue-note) !important;
    box-shadow: none !important;
}
.btn-qp-quiz-answer.disabled, .btn-qp-quiz-answer:disabled {
    background-color: white !important;
    border-color: var(--qp-color-blue-note) !important;
    box-shadow: none !important;
    opacity: 0.4;
}

/* */
.btn-qp-quiz-answer.correct {
    background-color: var(--qp-color-green) !important;
    border-color: var(--qp-color-green) !important;
    opacity: 1 !important;
}
.btn-qp-quiz-answer.correct > div {
    display: none;
}
.btn-qp-quiz-answer.correct:after {
    content: url('/images/app/button-answer-feedback-correct.png');
}
.btn-qp-quiz-answer.btn-qp-quiz-answer-feedback-big.correct:after {
    content: url('/images/app/button-answer-feedback-big-correct.png');
    transform: scale(2);
}

/* */
.btn-qp-quiz-answer.wrong {
    background-color: var(--qp-color-red) !important;
    border-color: var(--qp-color-red) !important;
    opacity: 1 !important;
}
.btn-qp-quiz-answer.wrong > div {
    display: none;
}
.btn-qp-quiz-answer.wrong:after {
    content: url('/images/app/button-answer-feedback-wrong.png');
}
.btn-qp-quiz-answer.btn-qp-quiz-answer-feedback-big.wrong:after {
    content: url('/images/app/button-answer-feedback-big-wrong.png');
    transform: scale(2);
}

/* */
.btn-qp-quiz-answer.active {
    color: white;
    background-color: var(--qp-color-light-blue) !important;
    border-color: var(--qp-color-light-blue) !important;
}


/* DESKTOP CLASSES AND MEDIA QUERIES */
@media screen and (min-width: 992px) {

    .qp-main-content-padding {
        padding: 0 16px 32px 16px;
    }

    .qp-page-content-padding-bottom {
        padding-bottom: 0;
    }

    .qp-page-content-with-sticky-button-padding-bottom {
        padding-bottom: 0;
    }

    .qp-page-content-with-sticky-button-no-tabbar-padding-bottom {
        padding-bottom: 0;
        transition: none;
    }

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

.numerated-list {
    list-style: none;
    counter-reset: list-counter;
}

.numerated-list li {
    counter-increment: list-counter;
    position: relative;
    padding-left: 30px;
}

.numerated-list li::before {
    content: counter(list-counter) ". ";
    position: absolute;
    left: 0;
}