.bg-status {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-repeat: no-repeat;
}

.review-page .bg-status,
body.dashboard .bg-status {
    background-image: radial-gradient(at center bottom, hsla(52, 100%, 89%, 0.97) 0%, transparent 55%),
        radial-gradient(at left bottom, hsl(48, 59%, 93%) 0%, transparent 50%),
        radial-gradient(at right bottom, #ffffff 0%, transparent 50%),
        radial-gradient(at right top, hsl(193, 70%, 91%) 0%, transparent 55%),
        radial-gradient(at left top, hsl(48, 59%, 93%) 0%, transparent 55%);
}

.review-page.incorrect .bg-status,
body.info-page .bg-status, body.plans .bg-status, .login-register-page, .version-one-tiktok {
    background-image: radial-gradient(at center bottom, hsl(330deg 83.65% 94.71%) 0%, transparent 55%),
        radial-gradient(at left bottom, hsl(48, 59%, 93%) 0%, transparent 50%),
        radial-gradient(at right bottom, #ffffff 0%, transparent 50%),
        radial-gradient(at right top, hsl(193, 70%, 91%) 0%, transparent 55%),
        radial-gradient(at left top, hsl(48, 59%, 93%) 0%, transparent 55%);
}

.review-page.correct .bg-status {
    background-image: radial-gradient(at center bottom, hsl(91.29deg 100% 88.7%) 0%, transparent 55%),
        radial-gradient(at left bottom, hsl(48, 59%, 93%) 0%, transparent 50%),
        radial-gradient(at right bottom, #ffffff 0%, transparent 50%),
        radial-gradient(at right top, hsl(193, 70%, 91%) 0%, transparent 55%),
        radial-gradient(at left top, hsl(48, 59%, 93%) 0%, transparent 55%);
}

body.toefl-test .bg-status,
.landing-page .tests-comparison {
    background-image: radial-gradient(at right bottom, hsla(54, 100%, 93%, 0.97) 0%, transparent 55%),
        radial-gradient(at left bottom, hsl(48, 59%, 93%) 0%, transparent 50%),
        radial-gradient(at right top, hsl(90, 100%, 94%) 0%, transparent 55%),
        radial-gradient(at left top, hsl(48, 59%, 93%) 0%, transparent 55%);
}

body.landing-page .bg-status,
body.terms .bg-status,
body.privacy .bg-status,
body.refund .bg-status {
    background-image: radial-gradient(at center bottom, hsla(52, 100%, 89%, 0.97) 0%, transparent 55%),
        radial-gradient(at right bottom, hsla(54, 100%, 93%, 0.97) 0%, transparent 55%),
        radial-gradient(at left bottom, hsl(48, 59%, 93%) 0%, transparent 50%),
        radial-gradient(at right top, hsl(90, 100%, 94%) 0%, transparent 55%),
        radial-gradient(at left top, hsl(48, 59%, 93%) 0%, transparent 55%);
}

body.version-two-tiktok {
    background: #000;
    color: #fff;
}

body.version-two-tiktok .paragraph {
    color: #fff;
}

/* body.toefl-test.green .bg-status {
    background-image: radial-gradient(at right bottom, hsla(54, 100%, 93%, 0.97) 0%, transparent 55%),
        radial-gradient(at left bottom, hsl(48, 59%, 93%) 0%, transparent 50%),
        radial-gradient(at right top, hsl(92, 100%, 93%) 0%, transparent 55%),
        radial-gradient(at left top, hsl(48, 59%, 93%) 0%, transparent 55%);
}

body.toefl-test.pink .bg-status {
    background-image: radial-gradient(at right bottom, hsla(54, 100%, 93%, 0.97) 0%, transparent 55%),
        radial-gradient(at left bottom, hsl(48, 59%, 93%) 0%, transparent 50%),
        radial-gradient(at right top, hsl(330deg 83.65% 94.71%) 0%, transparent 55%),
        radial-gradient(at left top, hsl(48, 59%, 93%) 0%, transparent 55%);
} */

.landing-page .eyes {
    position: absolute;
    top: 0;
    left: 0;
}

.eyes.first {
    animation: headMovementWide 4.5s infinite ease-out;
}

.eyes.second {
    animation: headMovementWide 7s 0.5s infinite ease-out;
}

.eyes.third {
    animation: headMovementWide 6s 1s infinite ease-out;
}

.eyes.fourth {
    animation: headMovementWide 15s 1.5s infinite ease-out;
}

@keyframes headMovementWide {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(4px, -5px) rotate(-16deg);
    }

    50% {
        transform: translate(-16px, 8px) rotate(-6deg);
    }

    75% {
        transform: translate(16px, -8px) rotate(16deg);
    }
}

form .eye-invisible, form .eye {
    cursor: pointer;
}

.eyes .eye-white {
    position: absolute;
    width: 22px;
    height: 37px;
    background-color: #fff;
    border-radius: 50%;
    transform-origin: center;
}

.eyes.first .eye-white {
    animation: blink 5s infinite;
}

.eyes.second .eye-white {
    animation: blink 5s 0.5s infinite;
    background-color: rgb(255, 51, 51)
}

.eyes.third .eye-white {
    animation: blink 5s 1s infinite;
}

.eyes.fourth .eye-white {
    animation: blink 5s 1.5s infinite;
}

@keyframes blink {

    0%,
    85%,
    100% {
        transform: scaleY(1);
    }

    87% {
        transform: scaleY(0);
    }

    89% {
        transform: scaleY(1);
    }

    91% {
        transform: scaleY(0);
    }

    93% {
        transform: scaleY(1);
    }
}

.eyes .eye-white.left {
    top: 0;
    left: 0;
}

.eyes .eye-white.right {
    top: 0;
    left: 26px;
}

.eyes .eye-black {
    width: 10px;
    height: 12px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
}

.eyes.first .eye-black {
    animation: eyeMovement 5s infinite;
}

.eyes.second .eye-black {
    animation: eyeMovement 4s 0.5s infinite;
}

.eyes.third .eye-black {
    animation: eyeMovement 5s 1s infinite;
}

.eyes.fourth .eye-black {
    animation: eyeMovement 5s 1.5s infinite;
}

@keyframes eyeMovement {

    0%,
    20% {
        transform: translate(0, 0);
    }

    25%,
    45% {
        transform: translate(5px, -4px);
    }

    50%,
    70% {
        transform: translate(-4px, 2px);
    }

    75%,
    95% {
        transform: translate(1px, -1px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.eyes .eye-black.left {
    top: 13px;
    left: 10px;
}

.eyes .eye-black.right {
    top: 13px;
    left: 28px;
}

.landing-page .dark-question:first-of-type {
    animation: darkReveal1 9s ease-in-out infinite;
}

.landing-page .dark-question:nth-of-type(2) {
    animation: darkReveal2 6s 1.5s ease-in-out infinite;
}

.landing-page .dark-question:nth-of-type(3) {
    animation: darkReveal3 8s 1s ease-in-out infinite;
}

@keyframes darkReveal1 {

    0%,
    100% {
        opacity: 0.5;
        transform: rotate(-3deg) translateY(-7px) scale(1);
    }

    50% {
        opacity: 1;
        transform: rotate(-1deg) translateY(-7px) scale(1.3);
        color: #ff6635;
    }
}

@keyframes darkReveal2 {

    0%,
    100% {
        opacity: 0.5;
        transform: rotate(3deg) translateY(14px) scale(1);
    }

    50% {
        opacity: 1;
        transform: rotate(0deg) translateY(14px) scale(1.2);
    }
}

@keyframes darkReveal3 {

    0%,
    100% {
        opacity: 0.5;
        transform: rotate(-5deg) translateY(50px) scale(1);
    }

    50% {
        opacity: 1;
        transform: rotate(0deg) translateY(50px) scale(1.1);
    }
}

.landing-page .next-button-container {
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e5e5e5;
}

.landing-page .highlighted-weak {
    background: #ff6635;
    color: white;
}

.landing-page .highlighted-strong {
    background-color: #abff53;
    color: #255a01;
}

.landing-page .espresso-card {
    border-radius: 20px;
    padding: 32px;
    background: #fff;
}

.landing-page .university-logos-wrapper {
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 9%, rgb(0, 0, 0) 91%, rgba(0, 0, 0, 0) 100%);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.landing-page .university-logos {
    width: max-content;
    animation: scroll 70s linear infinite;
    transform: translateX(-0px);
}

.landing-page .university-logos li {
    padding: 0 30px;
}

.landing-page .university-logos li img {
    display: block;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.faq-question {
    cursor: pointer;
}

.faq-question .faq-icon {
    transition: transform 0.3s ease-in-out;
}

.faq-question .faq-icon.rotate-180 {
    transform: rotate(180deg);
}

/* mobile */
@media screen and (max-width: 768px) {

    .review-page .bg-status,
    body.dashboard .bg-status {
        background-image: radial-gradient(at right bottom, hsla(52, 100%, 89%, 0.97) 0%, transparent 55%),
            radial-gradient(at left bottom, hsl(48, 59%, 93%) 0%, transparent 50%),
            radial-gradient(at right top, #ffffff 0%, transparent 55%),
            radial-gradient(at left top, hsl(48, 59%, 93%) 0%, transparent 55%);
        background-position: 20% 20%;
        background-size: 120% 120%;
    }

    .review-page.correct .bg-status {
        background-image: radial-gradient(at right bottom, hsl(91.29deg 100% 88.7%) 0%, transparent 55%),
            radial-gradient(at left bottom, hsl(48, 59%, 93%) 0%, transparent 50%),
            radial-gradient(at right top, #ffffff 0%, transparent 55%),
            radial-gradient(at left top, hsl(48, 59%, 93%) 0%, transparent 55%);
        background-position: 20% 20%;
        background-size: 120% 120%;
    }

    .review-page.incorrect .bg-status {
        background-image: radial-gradient(at right bottom, hsl(330deg 83.65% 94.71%) 0%, transparent 55%),
            radial-gradient(at left bottom, hsl(48, 59%, 93%) 0%, transparent 50%),
            radial-gradient(at right top, #ffffff 0%, transparent 55%),
            radial-gradient(at left top, hsl(48, 59%, 93%) 0%, transparent 55%);
        background-position: 20% 20%;
        background-size: 120% 120%;
    }

    .nice-spacing--p-56,
    .nice-spacing--p-32 {
        padding: 16px !important;
    }

    body.toefl-test .nice-spacing--mr-56 {
        margin-right: 4px !important;
    }

    .nice-app-header {
        padding: 4px !important;
    }

    body.toefl-test .nice-command-bar {
        margin: 0;
        margin-bottom: 16px;
    }
}

.review-page .sections-container .question-item {
    border-radius: 20px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: none;
}

.nice-app-header__logo {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nice-app-header__logo img {
    width: 84px;
    height: 84px;
    max-width: 84px;
}

.toefl-test .nice-app-header__logo img {
    width: 60px;
    height: 60px;
    max-width: 60px;
}

.nice-app-header {
    background-color: transparent;
    height: auto;
}

.review-page .nice-app-header, .dashboard .nice-app-header {
    padding: 0;
    padding-bottom: var(--nice-space-40);
    gap: var(--nice-space-32);    
}

@media (max-width: 768px) {
    .review-page .review-page-logo-name {
        display: none;
    }
}

.review-page .nice-tab-group {
    padding: 6px;
    border-radius: 999px;
    border-bottom-right-radius: 0;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 3px, #ececec 3px, #f8f8f8 5px);
}

@media (max-width: 768px) {
    .review-page .nice-tab-group {
        border-radius: 999px;
        justify-content: center;
    }
}

.review-page .nice-tab {
    transition: none;
    padding: 14px 16px;
    color: #000000;
    font-weight: 400;
    border: none;
}

.review-page .nice-tab--active,
.review-page .nice-tab--active:hover:not(.nice-tab--disabled):not(.nice-tab--toggle) {
    background: #000000;
    color: #fff;
    border-radius: 999px;
}

.review-page .filter-tabs-wrapper {
    border-radius: 999px;
    border-top-right-radius: 0;
    padding: 6px;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 3px, #ececec 3px, #f8f8f8 5px);
}

@media (max-width: 768px) {
    .review-page .filter-tabs-container {
        justify-content: center;
        margin-top: 8px;
    }

    .review-page .filter-tabs-wrapper {
        border-radius: 999px;
    }
}

.review-page .analytics-button,
.dashboard .analytics-button {
    display: none;
}

.nice-app-header__right-block {
    gap: 32px;
}

@media (max-width: 768px) {

    .nice-app-header__right-block {
        padding-right: 8px;
        gap: 24px
    }

    .review-page .analytics-button,
    .dashboard .analytics-button {
        display: block;
        position: fixed;
        left: 16px;
        bottom: 16px;
        z-index: 10;
    }
}

.review-page .filter-tab {
    background: #ffffff;
    border-radius: 999px;
    padding: 6px;
    cursor: pointer;
}

.review-page .filter-tab--active {
    background-color: #000000;
    color: #fff;
}

.review-page .filter-tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-right: 3px;
}

.review-page .filter-tab-icon {
    background-color: #fef16c;
    color: #070600;
    padding: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-page .filter-tab-icon.correct {
    background-color: #abff53;
    color: #255a01;
}

.review-page .filter-tab-icon.incorrect {
    background-color: #ff6635;
    color: #fff;
}

.review-page .sections-container .question-incorrect .highlighted-sentence {
    background-color: #ff6635;
    color: #fff;
}

.review-page .sections-container .question-incorrect .highlighted-sentence.correct {
    background-color: #abff53;
    color: #255a01;
}

.review-page .sections-container .extra-controller {
    cursor: pointer;
}

.review-page .sections-container .caret-icon {
    transition: rotate 0.3s ease-in-out;
    transform: rotate(-90deg);
}

.review-page .sections-container .extra-wrapper.collapsed {
    display: none;
}

.review-page .sections-container .scores-container {
    padding: 10px 16px;
    background: white;
    border-radius: 8px;
}

.details-container span:nth-child(odd) {
    min-width: 42px;
}

.review-page .section-summary {
    cursor: pointer;
}

.review-page .section-summary .card-impact {
    padding: 2.5px 10.5px;
    border-radius: 999px;
    justify-self: end;
}

.review-page .legend-item,
.review-page .legend-item-radar {
    cursor: pointer;
}

.review-page .score-gauge-container,
.dashboard .score-gauge-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px) {

    .review-page .nice-side-panel,
    .dashboard .nice-side-panel {
        background-image: radial-gradient(at right bottom, #ffffff 0%, transparent 55%),
            radial-gradient(at left bottom, hsla(52, 100%, 89%, 0.97) 0%, transparent 50%),
            radial-gradient(at right top, hsl(193, 70%, 91%) 0%, transparent 55%),
            radial-gradient(at left top, hsl(48, 59%, 93%) 0%, transparent 55%);
        width: 100%;
        box-shadow: none;
        padding: 4px !important;
        max-width: 100%;
    }

    .review-page .nice-side-panel__header-container,
    .dashboard .nice-side-panel__header-container {
        padding-right: 16px;
        margin-bottom: 24px;
        align-items: center;
    }

    .review-page .nice-scrim,
    .dashboard .nice-scrim {
        background-color: transparent !important;
    }
}

.dashboard .dashboard-logo-name {
    font: var(--nice-type-title-2);
    font-weight: 700 !important;
}

@media (max-width: 768px) {
    .dashboard .dashboard-logo-name {
        display: none;
    }
}

.dashboard .sidebar,
.review-page .sidebar {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M0 10 Q 10 0, 20 10 T 40 10' stroke='white' stroke-width='0.5' stroke-opacity='0.8' fill='none'/%3E%3Cpath d='M0 20 Q 10 10, 20 20 T 40 20' stroke='white' stroke-width='0.5' stroke-opacity='0.8' fill='none'/%3E%3Cpath d='M0 30 Q 10 20, 20 30 T 40 30' stroke='white' stroke-width='0.5' stroke-opacity='0.8' fill='none'/%3E%3Cpath d='M0 40 Q 10 30, 20 40 T 40 40' stroke='white' stroke-width='0.5' stroke-opacity='0.8' fill='none'/%3E%3C/svg%3E");
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {

    .dashboard .sidebar,
    body:not(.landing-page) .review-page .sidebar {
        position: absolute;
        left: -9999px;
        opacity: 0;
        pointer-events: none;
    }

    .landing-page .review-page .review-block {
        position: absolute;
        left: -9999px;
        opacity: 0;
        pointer-events: none;
    }

    .landing-page .nice-spacing--mx-56 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

.dashboard .sidebar-content,
.review-page .sidebar-content {
    position: relative;
    z-index: 1;
}

.schedule {
    grid-template-areas:
        "header header"
        "content content";
    grid-template-rows: auto 1fr;
}

.schedule-header {
    grid-area: header;
}

.schedule-year {
    cursor: pointer;
    transition: color 0.2s;
}

.schedule-year.active {
    color: var(--nice-color-text-default);
    background-color: #fef16c;
    padding: 2px var(--nice-space-16);
    border-radius: 999px;
    align-self: flex-start;
}

.schedule-grid-container {
    grid-area: content;
    grid-template-rows: auto 1fr;
}

.schedule-week-header {
    grid-template-columns: 40px repeat(7, 1fr);
}

.schedule-week-header span {
    text-align: center;
    font: var(--nice-type-body-3);
}

.schedule-scroll-wrapper {
    overflow-y: scroll;
    height: 180px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    transition: height 0.3s ease-in-out;
}

.schedule-row {
    grid-template-columns: 40px repeat(7, 1fr);
}

.schedule-activity-cell {
    cursor: pointer;
    transition: transform 0.1s ease;
}

.schedule-activity-cell:hover:not(.empty) {
    transform: scale(1.05);
}

.schedule-activity-circle {
    border-radius: 25px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: var(--nice-space-4);
    gap: var(--nice-space-8);
}

.schedule-activity-circle.unstarted,
.schedule-activity-circle.future {
    background-color: var(--nice-color-grey-3);
    color: var(--nice-color-text-secondary);
}

.schedule-activity-circle.completed {
    background-color: #abff53;
    color: #255a01;
}

.schedule-activity-circle.incompleted {
    background-color: #ff6635;
    color: var(--nice-color-white);
}

.schedule-activity-day {
    font-size: 14px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.schedule-activity-score {
    font-size: 12px;
    background: var(--nice-color-background-default);
    padding: var(--nice-space-4);
    border-radius: 50%;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nice-button--full {
    width: 100%;
}

.schedule-test-details {
    grid-column: 1 / -1;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M0 10 Q 10 0, 20 10 T 40 10' stroke='white' stroke-width='0.5' stroke-opacity='0.8' fill='none'/%3E%3Cpath d='M0 20 Q 10 10, 20 20 T 40 20' stroke='white' stroke-width='0.5' stroke-opacity='0.8' fill='none'/%3E%3Cpath d='M0 30 Q 10 20, 20 30 T 40 30' stroke='white' stroke-width='0.5' stroke-opacity='0.8' fill='none'/%3E%3Cpath d='M0 40 Q 10 30, 20 40 T 40 40' stroke='white' stroke-width='0.5' stroke-opacity='0.8' fill='none'/%3E%3C/svg%3E"),
        radial-gradient(at top left, #d7f1f8 0%, transparent 70%),
        radial-gradient(at top right, #eff8f0 0%, transparent 70%),
        radial-gradient(at bottom left, #f1fde2 0%, transparent 70%),
        radial-gradient(at bottom right, hsla(52, 100%, 89%, 0.97) 0%, transparent 70%);
    border-radius: 16px;
    padding: var(--nice-space-16);
    margin: 0 var(--nice-space-12);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.schedule-test-details.active {
    opacity: 1;
    margin: var(--nice-space-12);
}

@media (max-width: 768px) {
    .schedule-test-details {
        width: 100%;
    }

    .schedule-test-details.active {
        margin: 12px 0;
    }
}

.schedule-test-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--nice-space-24);
}

.manage-card-buttons {
    display: inline-flex;
    gap: var(--nice-space-16);
}

.schedule-test-details-close,
.view-test-button,
.start-test-button {
    background: none;
    border: 1px solid #d5d5d5;
    color: #1c1c1c;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: background-color 0.2s ease;
    font-size: 12px;
}

.schedule-test-details-content {
    position: relative;
    align-items: baseline;
}

.nice-button--light {
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--nice-color-grey-3);
    transition: all 0.2s ease-in-out;
}

.nice-button--light:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.score-gauge-container svg {
    overflow: visible !important;
    clip-path: none !important;
}

.today-test-card {
    position: relative;
    background: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    background-color: white;
    border-radius: 999px;
    padding: 6px;
}

.today-test-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.today-test-card .section-icon {
    background-color: #fef16c;
    color: #070600;
    padding: 12px;
}

.today-test-card .section-icon.in-progress {
    background-color: #abff53;
}

.today-test-container {
    padding: 12px;
    border-radius: 36px;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 3px, #ececec 3px, #f8f8f8 5px);
}

.card-wrapper .section-label {
    text-align: center;
    color: var(--nice-color-text-secondary);
}

.today-test-card .section-arrow {
    border: 1px solid var(--nice-color-grey-3);
    min-width: 52px;
    min-height: 52px;
}

.today-test-card .nice-button--secondary.section-arrow .label-button {
    color: var(--nice-color-text-secondary);
}

.breakdown-card {
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: var(--nice-space-16);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.9);
    gap: 4px;
}

.breakdown-card .card-arrow {
    position: absolute;
    top: -5px;
    right: -7px;
    z-index: 1;
    background: rgba(255, 255, 255, 0.7);
    border: 3px solid rgb(238 240 223);
    color: #495057;
}

.breakdown-card .card-arrow:hover {
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid rgb(238 240 223);
}

@media (max-width: 768px) {
    .breakdown-card .card-arrow {
        right: 0;
    }
}

.breakdown-card .card-header {
    width: 100%;
    margin-bottom: var(--nice-space-8);
    color: var(--nice-color-text-secondary);
}

.breakdown-card .card-impact {
    padding: 2.5px 10.5px;
    border-radius: 999px;
    align-self: flex-start;
}

.card-impact.success {
    background-color: #abff53;
    color: #255a01;
}

@media (max-width: 768px) {
    .card-impact {
        min-width: 81px;
    }
}

.card-impact.danger {
    background-color: #ff6635;
    color: #ffffff;
}

.card-impact.warning {
    background-color: rgb(232 237 235);
    color: #1c1c1c;
}


/* .dashboard .sections-wrapper {
    background-color: #ffefcc;
}

.sections-wrapper .nice-card {
    background-color: #fef3d3;
}

.sections-wrapper .nice-card:hover {
    background-color: #723e0a;
    color: #ffffff;
}

.sections-wrapper .nice-card:hover h4 {
    color: #fcf2cc;
} */

.toefl-test h1,
.toefl-test h2,
/* .toefl-test h3, */
.toefl-test h4,
/* .toefl-test label, */
.toefl-test li,
.toefl-test p,
.toefl-test ul {
    color: #1c0e00;
}

button.nice-chip.nice-tag--teal:hover {
    background-color: var(--nice-color-teal-05);
}

.nice-avatar {
    background: transparent;
    border: 1px solid #1c0e00;
    color: #1c0e00;
}

.toefl-test .nice-command-bar,
.landing-page .nice-command-bar {
    padding: 6px;
    border-radius: 999px;
    margin: 0 56px;
    margin-top: 16px;
    background: transparent;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 3px, #ececec 3px, #f8f8f8 5px);
    height: 64px;
    border-top: none;
}

.landing-page .nice-command-bar {
    margin-top: 0;
}

.toefl-test .nice-command-bar p,
.landing-page .nice-command-bar .active-tab {
    color: #fff;
    background-color: #1c0e00;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 400 !important;
    cursor: default;
}

.toefl-test .nice-command-bar a,
.landing-page .nice-command-bar p {
    font-weight: 400 !important;
}

.landing-page .nice-command-bar p {
    cursor: pointer;
}

.toefl-test .nice-command-bar a:hover {
    color: #1c0e00;
}

.toefl-test .nice-command-bar svg,
.landing-page .nice-command-bar svg {
    margin: 0 3px;
}

.toefl-test .next-button,
.landing-page .next-button {
    background-color: #9e0059;
    border-color: #9e0059;
}

.toefl-test .next-button:hover,
.landing-page .next-button:hover {
    background-color: #e3007c;
    border-color: #e3007c;
}

@media (max-width: 768px) {

    .toefl-test .next-button,
    .landing-page .next-button {
        width: 100%;
    }

    .landing-page .nice-command-bar {
        margin: 0;
        margin-bottom: 16px;
        flex-direction: column;
    }
}

.landing-page .analytics-container {
    background-image: radial-gradient(at center bottom, hsl(330deg 83.65% 94.71%) 0%, transparent 55%), radial-gradient(at left bottom, hsl(48, 59%, 93%) 0%, transparent 50%), radial-gradient(at right bottom, #ffffff 0%, transparent 50%), radial-gradient(at right top, hsl(193, 70%, 91%) 0%, transparent 55%), radial-gradient(at left top, hsl(48, 59%, 93%) 0%, transparent 55%);
}

.landing-page .tab-list .tab-item {
    cursor: pointer;
}

.landing-page .tab-list .tab-item.tab-item--active {
    cursor: default;
}

.landing-page .tab-list .tab-item .tab-details {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    margin-top: 0 !important;
    transition: max-height 500ms ease, opacity 500ms ease, margin-top 500ms ease;
}

.landing-page .nice-divider {
    background-color: #ece9dd;
}

.landing-page .tab-list .tab-item.tab-item--active .tab-details {
    max-height: 350px;
    opacity: 1;
    margin-top: 16px !important;
}

.landing-page .tab-list .tab-title {
    display: inline-block;
    transition: font-size 500ms ease, font-weight 500ms ease, line-height 500ms ease, color 500ms ease;
    will-change: font-size, font-weight, line-height, color;
}

.landing-page .label-comparison {
    position: absolute;
    top: 16px;
    right: 16px;
    text-align: center;
    color: #fff;
    background-color: #000;
    padding: 8px 12px;
    border-radius: 999px;
    z-index: 1;
}

.landing-page .toefl-sentence .inserted-sentence-toefl {
    background: #000;
    color: #fff;
}

.landing-page .insertion-marker-toefl {
    font-size: 30px;
    cursor: pointer;
}

.nice-radio {
    font: var(--nice-type-body-2);
    align-items: flex-start;
    display: inline-flex;
}

.insertion-marker,
.fake-insertion-marker {
    cursor: pointer;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 4px;
    background-color: #9e0059;
    text-align: center;
    line-height: 16px;
    border-radius: 50%;
}

.fake-insertion-marker {
    cursor: default;
}

.insertion-marker.selected {
    background-color: #4caf50;
}

.insertion-marker:hover {
    background-color: #90caf9;
}

.inserted-sentence {
    background-color: #fff9c4;
    display: inline;
    margin-left: 4px;
}

.highlighted-sentence {
    background-color: #fff9c4;
    display: inline;
}

.nice-scrim {
    background-color: rgba(30, 30, 30, 0.5);
    opacity: 1;
    z-index: 1000;
}

.nice-toggle span {
    background: #d2c7a1bf;
}

.audio-progress-bar {
    width: 100%;
    height: 5px;
    background: #f0f0f0;
    position: relative;
}

.audio-progress {
    width: 0;
    height: 100%;
    background-color: #9e0059;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.1s linear;
}

.question-timer {
    width: 100%;
    height: 3px;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 0;
}

.timer-progress-background {
    height: 100%;
    background-color: #e3007c;
}

.timer-progress-white {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #FFFFFF;
    width: 0%;
}

.questions-container {
    transition: all 0.5s ease-in-out;
    position: relative;
}

@media (max-width: 768px) {
    .toefl-test .questions-container {
        position: fixed;
        bottom: 0;
        overflow: scroll;
        max-height: 40vh;
        border-radius: 16px;
        background: repeating-linear-gradient(-45deg, transparent, transparent 3px, #ececec 3px, #f8f8f8 5px);
        padding-top: 16px;
    }

    .toefl-test .questions-container .label-question,
    .toefl-test .questions-container .goto-from-intro-text,
    .toefl-test .questions-container .tag-timer {
        width: calc(100vw - 72px);
    }

    .toefl-test.listening .questions-container {
        max-height: 85vh;
    }

    .toefl-test.writing .questions-container {
        max-height: 60vh;
    }

    .toefl-test .questions-container .form-wrapper {
        padding-left: 32px;
        padding-right: 32px;
        border-radius: 16px;
    }

    .toefl-test .article-container {
        margin-bottom: 41vh;
    }

    .toefl-test.listening .article-container {
        margin-bottom: 86vh;
    }

    .toefl-test.writing .article-container {
        margin-bottom: 61vh;
    }
}

#timer-container p {
    margin-bottom: 1.25em;
}

.tag-timer {
    background-color: transparent;
    position: relative;
}

.tag-timer-progress {
    height: 100%;
    width: 100%;
    border-radius: var(--nice-radii-4);
    position: absolute;
    top: 0;
    left: 0;
    z-index: var(--nice-layers-10);
}

.nice-tag--green .tag-timer-progress {
    background-color: var(--nice-color-green-05);
}

.nice-tag--pink .tag-timer-progress {
    background-color: var(--nice-color-pink-05);
}

.tag-timer-stage {
    z-index: var(--nice-layers-20);
    white-space: nowrap;
}

.section-timer {
    z-index: var(--nice-layers-20);
}

.paragraph svg {
    vertical-align: middle;
    color: #e3007c;
}

.nice-color--coffee {
    color: #723e0a;
}

.nice-background--coffee {
    background-color: #7b4b2a;
}

.nice-background--coffee:hover {
    background-color: #6e4226;
}

.nice-button--primary.nice-border--coffee {
    border-color: #7b4b2a;
}

.nice-button--primary.nice-border--coffee:hover {
    border-color: #6e4226;
}

.nice-background--milk {
    background-color: #ffe6b6;
}

.nice-button.nice-background--milk {
    color: #000000;
}

.nice-border--milk {
    border-color: #ffe6b6;
}

.hero-bullets li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.hero-bullets li:last-child {
    margin-bottom: 0;
}

.nice-icon__wrapper--xl {
    padding: var(--nice-space-16);
}

.progress-bar {
    width: 100%;
    height: 8px;
    border-radius: var(--nice-radii-8);
    background-color: #f7f1e4;
    background-color: #e9e9e7;
    box-shadow: inset 0px 0px 0px 1px #f5f0de;
    box-shadow: inset 0px 0px 0px 1px #d8dddb;
    position: relative;
}

.progress-bar .max-value {
    position: absolute;
    top: -20px;
    right: 0;
    height: 100%;
    font-size: 13px;
}

.progress-bar .label {
    position: absolute;
    top: 13px;
    left: 0;
    height: 100%;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.progress-bar .progress {
    width: 0;
    height: 100%;
    background-color: #ffc02e;
    box-shadow: inset 0px 0px 0px 1px #feb919;
    border-radius: var(--nice-radii-8);
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.1s linear;
    z-index: 1;
}

.progress-bar .regress {
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.1s linear;
    z-index: 1;
    border-radius: var(--nice-radii-8);
    background-image: repeating-linear-gradient(-45deg,
            transparent,
            transparent 3px,
            black 3px,
            black 5px);
}

.progress-bar .previous {
    width: 0;
    height: 100%;
    background-color: #fcd375;
    box-shadow: inset 0px 0px 0px 1px #f8cd6b;
    border-radius: var(--nice-radii-8);
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.1s linear;
    z-index: 2;
}

.progress-bar .previous .diff {
    position: absolute;
    top: -20px;
    left: 100%;
    height: 100%;
    font-size: 13px;
    color: #000000;
    padding-left: 3px;
    font-family: 'Montserrat', sans-serif;
}

.nice-select .nice-select__control {
    width: 100%;
    border-radius: var(--nice-radii-4);
    font: var(--nice-type-body-2);
}

/* calculate scores progress bar */
.progress-bar-segmented {
    display: flex;
    height: 16px;
    overflow: hidden;
}

.progress-segment {
    flex: 1;
    height: 100%;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
    border-right: 1px solid #ffffff;
}

.progress-segment:last-child {
    border-right: none;
}

.progress-segment.completed {
    background-color: #ffc02e;
    box-shadow: inset 0px 0px 0px 1px #feb919;
}

.progress-labels {
    display: flex;
    justify-content: space-around;
    padding: 0 10px;
}

.progress-labels span {
    flex: 1;
    text-align: center;
}

@media (max-width: 768px) {
    .hidden-on-mobile {
        display: none;
    }
}

@media (min-width: 768px) {
    .hidden-on-desktop {
        display: none;
    }
}

/* tiktok */
.tiktok-container {
    width: 430px;
    height: 932px;
    margin: 10px auto;
    border: 1px solid #e0e0e0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.version-one-tiktok .tiktok-container .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 350px;
    background-image: radial-gradient(at left top, hsl(48, 59%, 93%) 0%, transparent 50%), radial-gradient(at right top, hsl(193, 70%, 91%) 0%, transparent 55%),
        linear-gradient(to bottom, hsl(48, 59%, 93%) 0%, rgba(216, 241, 248, 0) 100%);
    z-index: 10;
    pointer-events: none;
}

.version-two-tiktok .tiktok-container .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 350px;
    background-image: radial-gradient(at left top, hsl(0, 0%, 100%) 0%, transparent 5%), radial-gradient(at right top, hsl(0, 0%, 100%) 0%, transparent 45%),
        linear-gradient(to bottom, hsl(0, 0%, 100%) 0%, rgba(216, 241, 248, 0) 100%);
    z-index: 10;
    pointer-events: none;
}

.tiktok-container .countdown-center {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    pointer-events: none;
}

.tiktok-container .countdown-anim {
    font-family: 'MontserratBlack', sans-serif;
    font-size: 250px;
    color: #713604;
    width: 100%;
    text-align: center;
    animation: fly-in 0.8s cubic-bezier(.4, 1.7, .6, .97);
    user-select: none;
    pointer-events: none;
    text-shadow: 0px 10px 15px rgba(0, 0, 0, 0.25);
}

body.version-two-tiktok .tiktok-container .countdown-anim {
    color: #fff;
}

@keyframes fly-in {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.7);
    }

    40% {
        opacity: 1;
        transform: translateY(-10px) scale(1.1);
    }

    60% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.tiktok-container .scroll-content {
    position: absolute;
    top: 150px;
    /* Контейнер для скролла начинается под шапкой */
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100% - 150px);
    /* и занимает всё оставшееся место */
    overflow-y: auto;
    /* Отступ сверху (932px / 2 - 150px) = 316px, чтобы текст начался с середины */
    padding: 316px 30px 10px 10px;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
    transition: opacity ease-in-out 1.5s;
}

.tiktok-container .scroll-content::-webkit-scrollbar {
    display: none;
}

.tiktok-container .content-hidden {
    opacity: 0;
}

.tiktok-container .content-visible {
    opacity: 1;
    transition: opacity ease-in-out 1.5s;
}

.tiktok-container .section-title {
    color: #713604;
    text-align: center;
    margin-top: 60px;
    font-size: 50px !important;
}

.tiktok-container .company-name {
    color: #713604;
    text-align: center;
    margin-top: 20px;
}

body.version-two-tiktok .tiktok-container .section-title, body.version-two-tiktok .tiktok-container .company-name {
    color: #000;
}

.tiktok-container .maskot-bounce {
    animation: bounce 0.6s ease-out;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-15px);
    }

    50% {
        transform: translateY(-10px);
    }

    70% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

.tiktok-container .article-title {
    text-align: center;
}

.tiktok-container .toefl-title,
.tiktok-container .toefl-title-number,
.tiktok-container .toefl-title-text {
    font-family: 'MontserratBlack', sans-serif;
    font-size: 50px;
    color: #0eb2ab;
    text-align: center;
}

.tiktok-container .nice-table tr:first-child .nice-table-cell {
    border-top: none;
}

.tiktok-container .nice-table .nice-table-cell.nice--dark {
    background-color: var(--nice-color-background-default);
}

.can-enlarge {
    cursor: pointer;
}

.image-enlarger .modal-content {
    margin: auto;
    display: block;
    max-height: 95vh;
    height: auto;
    object-fit: contain;
}

.image-enlarger .nice-modal__close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: var(--nice-color-white);
    background-color: transparent;
}
