.modal {
  display: none;
  position: absolute;
  z-index: 1000;
}
.modal.is-open {
  display: block;
}
.modal .modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: end;
}
@media (min-width: 640px) {
  .modal .modal__overlay {
    align-items: center;
  }
}
.modal .modal__overlay .modal__container {
  background-color: #fff;
  padding: 32px;
  max-height: 100vh;
  overflow-y: auto;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0px 20px 24px -4px rgba(0, 0, 0, 0.08), 0px 8px 8px -4px rgba(0, 0, 0, 0.03);
  width: 100%;
}
@media (min-width: 640px) {
  .modal .modal__overlay .modal__container {
    align-items: center;
    width: auto;
    max-width: 80vw;
  }
}
.modal .modal__overlay .modal__container .modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.modal .modal__overlay .modal__container .modal__header:before {
  background-color: #000;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin-right: 10px;
}
.modal .modal__overlay .modal__container .modal__header .modal__title {
  margin-top: 0;
  margin-bottom: 0;
  box-sizing: border-box;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  flex-grow: 1;
}
.modal .modal__overlay .modal__container .modal__header .modal__close {
  border: 0;
  width: 32px;
  height: 32px;
  background: url(../../Icons/ui-icons/close.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 32px;
  padding: 0px !important;
  cursor: pointer;
  transition-duration: 500ms;
}
.modal .modal__overlay .modal__container .modal__header .modal__close:hover {
  transform: rotate(90deg);
  transition-duration: 500ms;
}
.modal .modal__overlay .modal__container .modal__buttons {
  display: flex;
  gap: 16px;
}

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