

.bf78r__modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(44, 35, 43, 0.8);
        /* варіація --bf78r__main_dark */
        backdrop-filter: blur(6px);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .bf78r__loader-wrapper {
        background: var(--bf78r__main_white);
        padding: 30px 40px;
        border-radius: 14px;
        border: 1px solid var(--bf78r__main_border_color);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        max-width: 340px;
        width: 100%;
        font-family: var(--bf78r__font_family), sans-serif;
        color: var(--bf78r__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;
        }
    }

    .bf78r__spinner {
        width: 36px;
        height: 36px;
        border: 4px solid var(--bf78r__pastel_white);
        border-top: 4px solid var(--bf78r__main_color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    ._lang__modal_message_loading {
        font-size: 16px;
        font-weight: 500;
        color: var(--bf78r__dark_accent);
        margin: 0;
    }

    ._lang__modal_message_success {
        font-size: 18px;
        font-weight: bold;
        color: var(--bf78r__info);
        margin: 0;
    }

    .bf78r__spinner-dots {
        display: flex;
        gap: 8px;
        align-items: flex-end;
        height: 24px;
    }

    .bf78r__spinner-dots span {
        width: 8px;
        height: 8px;
        background-color: var(--bf78r__main_color);
        border-radius: 50%;
        display: inline-block;
        animation: bounce 1s infinite ease-in-out;
    }

    .bf78r__spinner-dots span:nth-child(2) {
        animation-delay: 0.2s;
    }

    .bf78r__spinner-dots span:nth-child(3) {
        animation-delay: 0.4s;
    }

    @keyframes bounce {

        0%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-10px);
        }
    }
.bf78rcf-overlay-box {
    background-color: rgba(0, 0, 0, 0.733); 
    backdrop-filter: blur(2px);
    border-radius: 0.5rem;
  }

.bf78rcf-form-wrapper input,
  .bf78rcf-form-wrapper textarea,
  .bf78rcf-form-wrapper select {
    font-size: 1rem;
    border: 1px solid var(--bf78r__main_border_color);
    background-color: var(--bf78r__pastel_white);
    color: var(--bf78r__main_dark);
  }

  .bf78rcf-form-wrapper input:focus,
  .bf78rcf-form-wrapper textarea:focus,
  .bf78rcf-form-wrapper select:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--bf78r__light_color);
    border-color: var(--bf78r__light_color);
  }

  .bf78rcf-form-wrapper .bf78r__primary-button {
    margin-top: 1rem;
  }















