 
 
#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}


.zoomModalimg {
  display: none;
  position: fixed;
  z-index: 999999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  padding: 60px 0;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
}
.zoomModalimg::before {
  background-color: rgba(0,0,0,0.9);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%; 
  height: 100%; 
  min-height: 100vh;
  z-index: 999;
  content: "";
  position: fixed;
}
.mac_ele {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-content: center;
  -webkit-align-content: center;
  -moz-align-content: center;
  -ms-align-content: center;
  height: 100%;
}
.modal-content-zoom {
  margin: 0 auto;
  display: block;
  max-width: 700px;
  position: relative;
  z-index: 9999;
  width: 800px;
  
}
.modal-content-zoom img {
  border-radius: 10px;
  width: 100%;
}
 
@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.closeZoomImg {
  position: absolute;
  top: -16px;
  right: -16px;
  color: #333;
  font-size: 36px;
  font-weight: 400;
  transition: 0.3s;
  background: #fff;
  width: 35px;
  height: 35px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  z-index: 999999;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.closeZoomImg:hover,
.closeZoomImg:focus {
  color: #848484;
  text-decoration: none;
  cursor: pointer;
}
 .adminBar {
  z-index: 99999 !important;
}
.zoomscroll {
    overflow: hidden;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 767px){
  .closeZoomImg {
      top: -12px;
      right: -6px;
  }
  .modal-content-zoom {
    width: 100%;
  }
}

@media only screen and (max-width: 700px){
  .modal-content-zoom {
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
    padding: 15px
  }
  .closeZoomImg {
    top: 5px;
    right: 9px;
  }
}