 .popup_wrapper {
    overflow: hidden;
    display: block;
    z-index: inherit;
}
 .popup_mask {
    content: " ";
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background: #000;
    background: rgba(150,50,0,0.4);
}
.brown_border {
    border: 5px solid #b5510e !important;
    border-radius: 10px;
    box-shadow: 0 0 20px #f8ffb2;
    padding:4px;
    background-color: #f0f0f0 !important;
}
.popup_window {
    display: block;
    position: fixed;
    left: 1%;
    top: 1%;
    right:1%;
    bottom: 1%;
    overflow: hidden;
    padding: 0px 0px;
    /*cursor: move;*/
    z-index: 2000;
}
.imgNormal {
    margin: 0 auto;
    display: block;
    cursor:zoom-in; 
    object-fit: cover;
    max-height: 100%;
    overflow: scroll;
}
.imgcenter {
    display: block;
    margin:auto;
    vertical-align: middle;
    max-width: 98% !important;
    min-height: 98% !important;
    object-fit: contain;
}
.imgfull {
    display: block;
    margin:auto;
    vertical-align: middle;
    box-shadow: 0 0 20px rgba(150,50,0,1);
    object-fit: contain;
}
.imgUnzoomed {
    display: block;
    margin:auto;
    border: 5px solid #b5510e;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(150,50,0,1);
    /*max-width: 98% !important;*/
    min-height: 98% !important;
    max-height: 98% !important;
    object-fit: contain;
    cursor: zoom-in;
    z-index: 9999;
}
.imgZoomed {
    display: block;
    margin:auto;
    border: 5px solid #b5510e;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(150,50,0,1);
    max-width: 3000px !important;
    min-height: 3000px !important;
    cursor: move;
}
.square {
    width:100%; height: 0;
    padding-bottom:100%;
    position: relative;
}
.inner {
    width:100%; height: 100%;
    position: absolute;
    display: inline-block;
}
