body.ozxerp-popup-open {
    overflow: hidden;
}

.ozxerp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(16, 12, 16, 0.58);
    z-index: 99998;
}

.ozxerp-popup{
    position:fixed;
    width:min(92vw,520px);
    box-shadow:0 30px 80px rgba(0,0,0,0.25);
    border-radius:18px;
    z-index:99999;
    overflow:hidden;
    border:1px solid rgba(120,40,60,0.08);
    background:#ffffff;
}

@keyframes ozxerpPopIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.ozxerp-position-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ozxerp-position-slide-right {
    right: 20px;
    bottom: 20px;
}

.ozxerp-position-slide-left {
    left: 20px;
    bottom: 20px;
}

.ozxerp-position-bottom-bar {
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: min(96vw, 760px);
}

.ozxerp-popup-inner{
padding:24px 28px 24px;
}

.ozxerp-close{
position:absolute;
top:12px;
right:14px;
width:32px;
height:32px;
border-radius:50%;
border:none;
background:#f5f5f5;
font-size:18px;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
opacity:.7;
transition:all .2s ease;
}

.ozxerp-close:hover{
opacity:1;
background:#eee;
}

.ozxerp-close:hover {
    opacity: 1;
}

/* Popup Logo */

/* Popup Logo */

.ozxerp-popup-logo{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:14px;
    max-height:70px;
    overflow:hidden;
}

.ozxerp-popup-logo img{
    max-width:90px;
    max-height:60px;
    width:auto;
    height:auto;
    object-fit:contain;
}

.ozxerp-urgency {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #ffeee7;
    color: #861f41;
    font-size: 12px;
    font-weight: 700;
}

.ozxerp-popup h3{
    margin:0 0 8px;
    font-size:22px;
    font-weight:700;
    line-height:1.3;
}

.ozxerp-popup p{
    margin:0 0 16px;
    font-size:14px;
    line-height:1.6;
    color:#666;
}

.ozxerp-form {
    display: grid;
    gap: 14px;
    margin-bottom: 16px;
}

.ozxerp-form input{
    width:100%;
    padding:12px 14px;
    border-radius:8px;
    border:1px solid #ddd;
    font-size:14px;
    background:#fafafa;
}

.ozxerp-form input:focus{
    border-color:#861f41;
    background:#fff;
    box-shadow:0 0 0 2px rgba(134,31,65,0.08);
}

.ozxerp-form button{
    border:0;
    padding:14px;
    font-size:15px;
    font-weight:600;
    border-radius:10px;
    cursor:pointer;
    transition:all .2s ease;
}

.ozxerp-form button:hover{
transform:translateY(-1px);
box-shadow:0 6px 16px rgba(0,0,0,.2);
}

.ozxerp-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.ozxerp-action-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 44px;
    padding: 11px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid #f0d9df;
    background: #fff7f3;
    color: #861f41;
}

.ozxerp-trust-line {
    font-size: 12px;
    opacity: 0.75;
    margin-top: 6px;
}

.ozxerp-response {
    min-height: 20px;
    margin-bottom: 12px;
    font-size: 14px;
}

@media (max-width: 767px) {
    .ozxerp-popup {
        width: 100%;
        max-width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        top: auto !important;
        transform: none !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
        animation: ozxerpMobileSheet 0.25s ease;
    }

    @keyframes ozxerpMobileSheet {
        0% {
            opacity: 0;
            transform: translateY(30px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .ozxerp-popup-inner {
        padding: 24px 18px 18px;
    }

    .ozxerp-popup h3 {
        font-size: 22px;
    }

    .ozxerp-actions {
        flex-direction: column;
    }

    .ozxerp-action-btn {
        width: 100%;
    }
}
@keyframes ozxerpFadeUp{
0%{
opacity:0;
transform:translate(-50%,-60%);
}

100%{
opacity:1;
transform:translate(-50%,-50%);
}
}

.ozxerp-position-center{
animation:ozxerpFadeUp .3s ease;
}