<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

.ehro9__modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(44, 35, 43, 0.8);
        /* Ð²Ð°Ñ€Ñ–Ð°Ñ†Ñ–Ñ --ehro9__main_dark */
        backdrop-filter: blur(6px);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .ehro9__loader-wrapper {
        background: var(--ehro9__main_white);
        padding: 30px 40px;
        border-radius: 14px;
        border: 1px solid var(--ehro9__main_border_color);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        max-width: 340px;
        width: 100%;
        font-family: var(--ehro9__font_family), sans-serif;
        color: var(--ehro9__pastel_dark);
        animation: modalFadeIn 0.3s ease-out;
        text-align: center;
    }

    @keyframes modalFadeIn {
        from {
            transform: scale(0.95);
            opacity: 0;
        }

        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    .ehro9__spinner {
        width: 36px;
        height: 36px;
        border: 4px solid var(--ehro9__pastel_white);
        border-top: 4px solid var(--ehro9__main_color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    ._lang__modal_message_loading {
        font-size: 16px;
        font-weight: 500;
        color: var(--ehro9__dark_accent);
        margin: 0;
    }

    ._lang__modal_message_success {
        font-size: 18px;
        font-weight: bold;
        color: var(--ehro9__info);
        margin: 0;
    }

    .ehro9__spinner-dots {
        display: flex;
        gap: 8px;
        align-items: flex-end;
        height: 24px;
    }

    .ehro9__spinner-dots span {
        width: 8px;
        height: 8px;
        background-color: var(--ehro9__main_color);
        border-radius: 50%;
        display: inline-block;
        animation: bounce 1s infinite ease-in-out;
    }

    .ehro9__spinner-dots span:nth-child(2) {
        animation-delay: 0.2s;
    }

    .ehro9__spinner-dots span:nth-child(3) {
        animation-delay: 0.4s;
    }

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

        40% {
            transform: translateY(-10px);
        }
    }
.ehro9__custom-hero-image {
        max-height: 1000px;
        object-fit: cover;
    }

















</pre></body></html>