#review-page {
    background-image: url(../images/assets/bg-review-pages.webp);
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    height: 100vh;
    overflow: auto;
}

.modal-primary-wrap .close-modal img {
    width: 32px;
    height: 32px;
}

.modal-primary-wrap .close-modal {
    position: absolute;
    right: 16px;
    top: 8px;
    width: fit-content;
    z-index: 10;
}

.modal-primary-body h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #1E1E1E;
}

.modal-primary-body p {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: #444444;
}

.header-page-default {
    background: #fff;
    height: 96px;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 56px;
    position: relative;
    display: flex;
}

.header-page-default .btn-back-header {
    position: absolute;
    left: 56px;
    background: transparent;
}

.header-page-default .btn-back-header img {
    width: 40px;
    height: 40px;
}

.header-page-default h1 {
    font-weight: 700;
    font-size: 1.875vw;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #0A0A0A;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.header-page-default .info-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    align-items: center;
    position: absolute;
    right: 56px;
}

.header-page-default .gems-info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.header-page-default .gems-info .icon-gems-default {
    width: 28px;
    height: 28px;
}

.header-page-default .gems-info span {
    font-weight: 800;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    vertical-align: middle;
    text-transform: uppercase;
    color: #001F3F;
}

.header-page-default .info-wrapper .icon-info  {
    width: 40px;
    height: 40px;
}

.footer-navigation-default {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 76px;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 0 56px;
    align-items: center;
    justify-content: center;
    z-index: 0;
    gap: 12px;
    display: flex;
}

.footer-navigation-default .back-btn {
    margin-right: auto;
}

.footer-navigation-default .next-btn {
    margin-left: auto;
}

.footer-navigation-default button {
    padding: 8px 32px;
    font-size: 18px;
    font-weight: 600;
    color: #0A0A0A;
    border: 4px solid transparent;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
}

.footer-navigation-default button.next-btn {
    background: #6F42C1;
    border: 4px solid #8762CB;
    color: #fff;
}

.footer-navigation-default button.try-again-btn {
    background: #EA2C2B;
    border-color: transparent;
    color: #fff;
}

.footer-navigation-default button:disabled,
.footer-navigation-default button[disabled] {
    color: #C2C2C2;
    border: 4px solid #d1d1d1;
    background: #E5E5E5;
    cursor: default;
}

.footer-navigation-default.success {
    background: #96C4DA;
}


.footer-navigation-default.success .next-btn {
    background: #5898B8;
    border-color: transparent;
}

.footer-navigation-default.failed {
    background: #FFC9C9;
}

.footer-navigation-default.failed .next-btn:disabled,
.footer-navigation-default.failed .next-btn {
    display: none;
}

.footer-navigation-default.failed .try-again-btn {
    display: block;
}

.footer-navigation-default .try-again-btn {
    display: none;
}


.footer-navigation-default.success .gems-and-progress {
    display: flex;
}

.footer-navigation-default.failed .try-again-footer {
    display: flex;
}

@media (max-width: 1023px) {
    .header-page-default {
        height: 64px;
        padding: 0 16px;
    }

    .header-page-default .btn-back-header {
        left: 16px;
    }

    .header-page-default .info-wrapper {
        right: 16px;
    }

    .header-page-default .btn-back-header img {
        height: 32px;
        width: 32px;
    }

    .header-page-default h1 {
        font-size: 14px;
    }

    .header-page-default .gems-info .icon-gems-default {
        width: 20px;
        height: 20px;
    }

    .header-page-default .gems-info span {
        font-weight: 600;
        font-size: 14px;
        line-height: 100%;
        letter-spacing: 0;
        text-align: center;
        vertical-align: middle;
        text-transform: uppercase;
        color: #001F3F;
    }

    .header-page-default .info-wrapper .icon-info  {
        width: 24px;
        height: 24px;
    }

    .footer-navigation-default{
        padding:0 14px;
        height: 64px;
        gap:12px;
        background: rgba(22, 22, 22, 0.80);
    }
    
    .footer-navigation-default button{
        width: 100%;
        text-transform: uppercase;
        font-size:14px;
    }
    
    .modal-primary-body h3 {
        font-size: 16px;
    }
    
    .modal-primary-body p {
        font-size: 14px;
    }
}