.modal-container {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(2rem);
  z-index: 500;
  top: 0;
  left: 0;
  overflow-y: auto;
  padding: 4rem 0;
}
.modal-container .modal-wrap {
  padding-top: 1rem;
  border-radius: 20px;
  margin: 0 auto;
  width: 80%;
  margin-top: 100%;
  position: relative;
  padding-bottom: 20rem;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  z-index: 600;
}
@media (max-width: 768px) {
  .modal-container .modal-wrap {
    width: calc(100% - 40px);
  }
  .modal-container .modal-wrap .img-flex {
    padding: 0;
  }
}
.modal-container .modal-close {
  display: block;
  position: absolute;
  bottom: 0;
  color: white;
  background-color: #1D1D1D;
}/*# sourceMappingURL=modal.css.map */