/* POPUP RESPONSIVE */

.rgp-popup-overlay {
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.75);
    z-index:99999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}
.rgp-popup {
    width:100%;
    background:#ffffff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 18px 40px rgba(0,0,0,0.5);
    position:relative;
    max-height:100%;
    display:flex;
    flex-direction:column;
}
.rgp-popup-close {
    position:absolute;
    top:10px;
    right:12px;
    background:transparent;
    border:none;
    color:#333;
    font-size:26px;
    cursor:pointer;
    line-height:1;
}
.rgp-popup-image-wrapper img {
    width:100%;
    height:auto;
    display:block;
}
.rgp-popup-content {
    padding:18px 22px 22px;
    font-size:16px;
    line-height:1.5;
}
.rgp-popup-content p:last-child {
    margin-bottom:0;
}

/* Tablet */
@media (max-width: 1024px){
    .rgp-popup {
        max-width:90% !important;
    }
}

/* Smartphone */
@media (max-width: 768px){
    .rgp-popup-overlay {
        padding:10px;
    }
    .rgp-popup {
        max-width:100% !important;
        border-radius:10px;
    }
    .rgp-popup-content {
        padding:15px 16px 18px;
        font-size:15px;
    }
}
