#wlp-modal-backdrop {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    z-index: 9999;
}

#wlp-modal-backdrop.wlp-open {
    display: flex;
}

#wlp-modal {
    position: relative;
    max-width: 560px;
    width: calc(100% - 2rem);
    background: var(--wp--preset--color--bg-neutral);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    overflow: hidden;
}

#wlp-modal-header {
    padding: 18px 22px;
    font-weight: 600;
    text-align: left;
}

#wlp-modal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px 16px;
}

#wlp-modal-icon img {
    max-width: 100px;
    height: auto;
    display: block;
}

#wlp-modal-body {
    padding: 0 22px 22px 22px;
    line-height: 1.5;
    text-align: center;
	margin-bottom: 30px !important;
}

#wlp-modal-body b {
	margin-bottom: 20px !important;
}

#wlp-modal-actions {
    display: flex;
    gap: 10px;
    padding: 0 22px 32px 22px;
    justify-content: center;
}

#wlp-modal .wlp-close-x {
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
    color: #444;
}

#wlp-modal .wlp-close-x:hover {
    color: #000;
}

@media (prefers-reduced-motion: no-preference) {
    #wlp-modal-backdrop.wlp-open {
        animation: wlpFade .18s ease-out;
    }

    #wlp-modal {
        transform: translateY(8px);
        animation: wlpRise .18s ease-out;
    }

    @keyframes wlpFade {
        from {
            opacity: 0
        }
        to {
            opacity: 1
        }
    }
    @keyframes wlpRise {
        from {
            opacity: .96;
            transform: translateY(16px)
        }
        to {
            opacity: 1;
            transform: translateY(0)
        }
    }
}