.pw-modal-open {
    overflow: hidden;
}

.pw-on-request-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pw-on-request-modal.is-visible {
    display: flex;
}

.pw-on-request-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
}

.pw-on-request-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    padding: 32px;
    background: #fff;
    color: #111;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

.pw-on-request-dialog h2 {
    margin: 0 0 14px;
    font-size: 26px;
    line-height: 1.2;
}

.pw-on-request-dialog p {
    margin: 0 0 24px;
    color: #555;
    font-size: 15px;
    line-height: 1.55;
}

.pw-on-request-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 36px;
    height: 36px;
    padding: 0;
    background: transparent;
    color: #111;
    border: 0;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

.pw-on-request-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.pw-on-request-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 18px;
    text-decoration: none !important;
    cursor: pointer;
}

.pw-on-request-contact {
    background: #111;
    color: #fff !important;
}

.pw-on-request-continue {
    border: 0;
}

@media (max-width: 600px) {
    .pw-on-request-dialog {
        padding: 28px 20px 22px;
    }

    .pw-on-request-actions {
        flex-direction: column;
    }

    .pw-on-request-actions .btn {
        width: 100%;
    }
}