@charset "UTF-8";
.modal__overlay {
  background: rgba(234, 96, 1, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}

.modal__container {
  background-color: #fff;
  max-width: 1120px;
  width: 90%;
  max-height: 80vh;
  height: 80vh;
  padding: 30px 25px;
  position: relative;
}

.modal__close {
  background-color: #EA6001;
  border: 1px solid #EA6001;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  width: 46px;
  height: 46px;
  position: absolute;
  top: 15px;
  right: 12px;
  z-index: 1;
  transition: background 0.3s, color 0.3s;
}
.modal__close:before {
  content: "✕";
}
.modal__close:hover {
  background-color: #fff;
  color: #EA6001;
}

.modal__content {
  height: 100%;
  overflow-y: auto;
  position: relative;
  z-index: 0;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes modalSlideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes modalSlideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: modalFadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: modalSlideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: modalFadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: modalSlideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

@media (min-width: 768px){
  .modal__container {
    padding: 30px;
  }
}

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