#vpopup-overlay {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
#vpopup-container {
    position: relative;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    max-width: 90%;
	overflow: hidden;
/*     max-height: min(1100px, 90vh); */
}
#vpopup-container img {
    max-width: 100%;
    max-height: min(1100px, 90vh);
    height: auto;
    display: block;
}
#vpopup-close {
    position: absolute;
    top: 5px; 
    right: 10px;
    background: transparent;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #000;
}
.vpopup-cta {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}