#_imgzoom {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 0px;
    top: 0px;
    width:100%;
    height:100%;
    text-align:center;
    z-index: 99999;
    background-color:var(--modalcover);
    transition:  .5s;
}

#_imgzoom_content{
    width:300px;
    height:300px;
    opacity: 0;
    transition:  .5s;
    position:relative;
    top:50%;
    /*margin-top:-25px;*/
    margin-left: auto;
    margin-right:auto;
    background-color: #fff;
    border:1px solid #fff;
    text-align:center;
    cursor: zoom-out;
    -webkit-box-shadow: 0px 0px 25px 13px rgba(0,0,0,0.21);
    -moz-box-shadow: 0px 0px 25px 13px rgba(0,0,0,0.21);
    box-shadow: 0px 0px 25px 13px rgba(0,0,0,0.21);
    padding:1vw;
}

._imgzoom_lens {
    cursor: zoom-in;
}
