#custom-popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 0px;
    background: #fff;
    box-shadow: 0 0 0px rgba(0,0,0,0);
    z-index: 1000;
    text-align: center;
}

#custom-popup #custom-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
	color:#d7aa64;
	font-size: 2.0em;
}

#custom-popup img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0px;
}

@media screen and (max-width: 600px) {
    /* Adjust for smaller screens */
    #custom-popup {
        width: 80%;
        max-width: 300px; /* Limit max width for smaller screens */
        padding: 0px;
    }
}
