#modal_container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(1px);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
}
#modal_container .modal-dialog {
  margin: 10vh auto;
  width: 90%;
  max-width: 650px;
  max-height: 80vh;
  background: #fefefe;
  border-radius: 1.2rem;
  padding: 45px 25px;
  opacity: 0;
  transform: translateY(50%);
  scale: 0.5;
  transition: 0.2s ease;
}
#modal_container .modal-dialog.modal-sm {
  max-width: 450px;
}
#modal_container .modal-dialog.modal-md {
  max-width: 650px;
}
#modal_container .modal-dialog.modal-lg {
  max-width: 950px;
}
#modal_container .modal-dialog.modal-lg {
  max-width: 1150px;
}
#modal_container .modal-dialog.modal-xl {
  max-width: 1450px;
}
#modal_container .modal-dialog.modal-fullscreen {
  max-width: 1920px;
}
#modal_container .modal-dialog #modal_close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #fefefe;
  width: 48px;
  height: 48px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  cursor: pointer;
}
#modal_container .modal-dialog #modal_body {
  height: 100%;
  max-height: calc(80vh - 90px);
}
#modal_container .modal-dialog #modal_body::-webkit-scrollbar {
  display: none;
}
#modal_container.show {
  display: block;
  opacity: 1;
  pointer-events: all;
  z-index: 10;
}
#modal_container.show .modal-dialog {
  transform: translateY(0);
  opacity: 1;
  scale: 1;
}

.modal-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 100;
  display: none;
  justify-content: center;
  align-items: center;
}
.modal-overlay.show {
  display: block;
}
.modal-overlay .modal-modal {
  position: relative;
  width: 90%;
  max-width: 90%;
  max-height: 80vh;
  margin: 10vh auto;
  border-radius: 8px;
  background: #fefefe;
  padding: 15px;
  overflow-x: hidden;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modal-overlay .modal-modal::-webkit-scrollbar {
  display: none;
}
.modal-overlay .modal-modal > .title {
  font-size: 1.2rem;
  font-weight: bold;
}
.modal-overlay .modal-modal .modal-close {
  border: none;
  appearance: none;
  outline: none;
  background: transparent;
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 22px;
  color: #656565;
  cursor: pointer;
  position: sticky;
  margin-left: auto;
  float: right;
  z-index: 99;
  background: #fefefe;
  padding: 15px;
}
.modal-overlay .modal-modal .modal-close:hover {
  color: #212121;
}/*# sourceMappingURL=Modal.css.map */