#dmucustompopup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 100vw;
    height: 100vh;
}

#dmucustompopup .popup-content {
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 792px;
    max-width: 75%;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

#dmucustompopup .popup-content img {
    max-width: 100%;
    height: auto;
}

#dmucustompopup .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
#dmucustompopup #close-popup {
    position: absolute;
    right: 0;
    top: 0;
    background: #000000;
    color: #ffffff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    border: none;
    transform: translate(50%, -50%);
}

#dmucustompopup #close-popup:hover {
    background: #0d406d;
}
