.text-important {
    color: var(--sf-header-orange);
}

.text-standard {
    color: var(--sf-bright-red);
}

.text-important, .text-standard {
    font-size: clamp(18px,1.3vw,22px);
}

    .text-important.centered, .text-standard.centered {
        text-align: center;
    }


body {
}

/*.sf-modal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 20px;
    z-index: 10;
}*/

    .sf-modal.hidden, .sf-modal-overlay.hidden {
        display: none;
    }

.sf-modal-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(256, 256, 256, 0.5);
    backdrop-filter: blur(3px);
    z-index: 3;
}

.limit-modal {
    display: grid;
    place-items: center;
    gap: 40px;
    background-color: var(--sf-white);
    padding: 50px;
    border-radius: 30px;
}


.limit-modal {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    max-width: 80%;
    width: 400px;
}

    .limit-modal h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #e74c3c;
    }

    .limit-modal p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .limit-modal .error-code {
        font-size: 0.9rem;
        color: #7f8c8d;
        margin-bottom: 1.5rem;
    }

    .limit-modal .btn {
        display: inline-block;
        background-color: #3498db;
        color: #ffffff;
        text-decoration: none;
        padding: 0.75rem 1.5rem;
        border-radius: 4px;
        transition: background-color 0.3s ease;
    }

        .limit-modal .btn:hover {
            background-color: #2980b9;
        }


.text-important {
    color: var(--sf-soft-red);
}

.sf-loader-container {
    text-align: center;
    /*padding: 12px;*/
    padding-top: 10vh;
}

.sf-timeline .sf-loader-container {
    padding-top: 0;
}

.sf-loader-container p {
    font-size: clamp(22px, 2vw, 32px);
    font-weight: 700;
    text-align: center;
}

        .sf-loader-container p:nth-child(1) {
            color: var(--sf-dark-blue);
            margin-bottom: 28px;
        }

        .sf-loader-container p:nth-child(2) {
            color: var(--sf-soft-red);
            margin-bottom: 8px;
        }

    .sf-loader-container img {
        width: 246px;
        margin: 0 auto;
    }

html[dir="rtl"] .sf-loader-container img {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.sf-icon {
    margin-inline-end: 4px;
}

.mblock-12 {
    margin-block: 12px;
}