.modal {
  z-index: 20;
  display: none;
  position: fixed;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  padding: 30px;
  cursor: auto;
  text-align: left;
}
.modal.modal-active {
  display: flex;
  z-index: 501;
}
.modal .modal-content-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  max-height: 90%;
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 5px;
  overflow-y: auto;
}
.modal .modal-content-container #modal-content {
  padding-top: 10px;
  word-wrap: break-word;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  padding: 0 10px;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

html.modal-open {
  overflow: hidden;
}
/*# sourceMappingURL=modal.css.map */