/* MZ Lightbox */

#mz-overlay
{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999999;
}

#mz-overlay.active
{
  display: flex;
  align-items: center;
  justify-content: center;
}

#mz-overlay img
{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}

#mz-close
{
  position: fixed;
  top: 30px;
  right: 30px;
  cursor: pointer;
  z-index: 9999999;
  height: 20px !important;
  width: 20px !important;
  opacity: 0.6;
}

#mz-close:hover
{
  opacity: 1;
}

#mz-prev,
#mz-next
{
  position: fixed;
  top: 0;
  bottom: 0;
  width: 15%;
  cursor: pointer;
  z-index: 9999998;
}

#mz-prev
{
  left: 0;
}

#mz-next
{
  right: 0;
}

@media screen and (max-width: 740px)
{

  #mz-prev,
  #mz-next
  {
    display: none;
  }
}