.modal {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1000;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  max-width: 90%;
  max-height: 80vh;
  color: #000;
  position: relative;
  border-radius: 1rem;
  background-color: #fff;
  overflow-y: auto;
  padding: 2rem;
  transform: translateY(-20px);
  transition: transform 0.25s ease;
}
.modal-content p:last-child {
  margin: 0 !important;
}
.modal-content .modal_ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.modal-content .list-heading {
  color: #249d93;
  font-weight: 800;
}

.modal.show .modal-content {
  transform: translateY(0);
}

button.open-modal {
  border-color: transparent !important;
  background-color: transparent !important;
  cursor: pointer;
  padding: 0;
}
.modal-single-box button.open-modal {
  width: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: 0 0 0 1px #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0 1rem;
}
button.open-modal i {
  font-size: 1.825rem;
  padding: 0.425rem;
}

.close-button {
  font-size: 2rem;
  color: #000;
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}

.modal-single-box {
  height: 3.625rem;
}

/*# sourceMappingURL=modal.css.map */
