#id-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    display: none;
    background-color: rgba(0, 0, 0, 0.7);
}

#id-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: #fff;
    display: none;
    max-width: 90%; /* Default max-width */
}

#id-popup img {
    max-width: 100%;
    height: auto;
}

#id-popup .mobile-image {
    display: none;
}

#id-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: red;
    font-size: 32px;
    width: 40px;
    height: 40px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    line-height: 1;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}



@media (max-width: 767px) {
    #id-popup .desktop-image {
        display: none;
    }
    #id-popup .mobile-image {
        display: block;
    }
    #id-popup {
        width: 80vw;
    }
}