﻿#zoomimage_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.80);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#zoomimage_content {
    position: relative;
    display: inline-block;
}
#zoomimage_overlay.show_flex {
    display: flex;
}
#zoomimage_img {
    max-width: 88vw;
    max-height: 88vh;
}
#zoomimage_close {
    position: absolute;
    top: -42px;
    right: 0px;
    font-size: 35px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}
