/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 09 2026 | 10:56:51 */
.custom-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-inner {
    background: #fff;
    width: 500px;
    max-width: 90%;
    margin: 0;
    padding: 20px;
    position: relative;
    border-radius: 6px;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 0;
    cursor: pointer;
    width: 20px;
    height: 20px;
    background: url(https://dominiosdelujo.com/wp-content/uploads/2026/04/close-svgrepo-com.svg) no-repeat;
    background-size: cover;
    z-index: 5;
}