.mono_modal {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 100vw;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  z-index: -1;
  transition: all 500ms;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mono_modal--open {
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  align-items: center;
  animation: fade-in 1s;
  z-index: 5000;
  opacity: 1;
}
.mono_modal--close {
  background: none;
  position: absolute;
  right: 0;
}
.mono_modal-content {
  position: relative !important;
  width: fit-content;
  height: 80%;
  width: 80%;
}
@media (min-width: 1440px) {
  .mono_modal-content {
    width: auto;
  }
}
.mono_modal-content img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
@media (min-width: 1440px) {
  .mono_modal-content img {
    object-fit: cover;
  }
}
.mono_modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
}
.mono_modal__shield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}
.mono_modal__content {
  position: relative;
  background-color: white;
  border-radius: 20px;
  max-height: 80vh;
  max-width: 80vw;
  width: auto;
  height: auto;
  min-width: 20vw;
  min-height: 20vh;
  padding: 40px;
}
.mono_modal__content-inner {
  width: 100%;
  height: 100%;
}