#imageWindow {
 position: fixed;
 display: none;
 left: 15px;
 top: 95px;
/* border-radius: 8px 8px 0px 0px; */
 box-shadow: 0 0 15px rgba(0,0,0,.4);
 z-index: 10;
}

#imageWindow img {
 display: block;
 width: 100%;
 height: auto;
 object-fit: contain;
}

#imageHeader {
 height: auto;
 background: #0086E6;
/* border-radius: 8px 8px 0px 0px; */
 color: white;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-weight: bold;
 cursor: move;
 padding: 2px 10px;
 font-family: Arial;
 font-size: 12px;
}

#closeBtn {
 background: #0086E6;
 cursor: pointer;
 font-weight: bold;
 font-size: 14px;
}

class zoom {
 aspect-ratio: 4 / 3;
 object-fit: cover;
}
