.flex-img-popup-con {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #00000099;
    display: none;
    align-items: center;
    justify-content: center;
    overflow: overlay;
}

.flex-img-popup-con span {
    position: absolute;
    top: 22px;
    right: 52px;
    width: 50px;
    height: 50px;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding-top: 4px;
    cursor: pointer;
    color: #fff;
}

.flex-img-popup-con img {
    max-height: 80vh;
    max-width: 80vw;
    width: auto;
    height: auto;
    cursor: zoom-in;
}

.flex-img-popup-con img.zoomin-set {
    max-height: initial;
    max-width: initial;
    cursor: zoom-out;
}