.fd-success-popup {
    position: fixed;

    inset: 0;

    background: rgba(2, 6, 23, .78);

    backdrop-filter: blur(4px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    z-index: 999999;

    opacity: 0;
    visibility: hidden;

    transition: .35s ease;
}

.fd-success-popup.active {
    opacity: 1;
    visibility: visible;
}

/* CARD */

.fd-success-popup-inner {
    width: 100%;
    max-width: 520px;

    background: #ffffff;

    padding: 52px 42px;

    text-align: center;

    border-radius: 22px;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, .35);
}

/* CHECK */

.fd-success-check {
    width: 88px;
    height: 88px;

    margin: 0 auto 26px;

    border-radius: 50%;

    background: #2563eb;

    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2.7rem;
    font-weight: 700;
}

/* TITLE */

.fd-success-popup h4 {
    margin: 0 0 14px;

    color: #0f172a;

    font-size: 2.2rem;
    line-height: 1.05;
    font-weight: 800;
}

/* TEXT */

.fd-success-popup p {
    margin: 0;

    color: #64748b;

    font-size: 1rem;
    line-height: 1.8;
}