.popup-button-container-b1976115 {
    display: inline-block;
    width: 100%;
}

.popup-btn-b1976115 {
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.popup-modal-overlay-b1976115 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

body.admin-bar .popup-modal-overlay-b1976115 {
    top: var(--wp-admin--admin-bar--height, 32px);
    height: calc(100% - var(--wp-admin--admin-bar--height, 32px));
}
@media screen and (max-width: 782px) {
    body.admin-bar .popup-modal-overlay-b1976115 {
        top: 46px;
        height: calc(100% - 46px);
    }
}

.popup-modal-content-b1976115 {
    position: relative;
    background-color: #ffffff;
    box-sizing: border-box;
    max-height: 90vh;
    overflow-y: auto;
    animation: popupModalScaleIn_b1976115 0.3s cubic-bezier(0.1, 0.8, 0.25, 1);
}

.popup-close-b1976115 {
    position: absolute;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10;
    transition: all 0.2s ease-in-out;
}

.popup-close-b1976115 svg {
    display: block;
    transition: fill 0.2s ease-in-out;
}

.popup-inner-content-b1976115 {
    width: 100%;
    word-break: break-word;
}

body.popup-open-b1976115 {
    overflow: hidden;
}

@keyframes popupModalScaleIn_b1976115 {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
