@charset "UTF-8";
/**************************\
  Basic Modal Styles
\**************************/
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 98;
}
.modal__container {
  max-width: 80%;
  max-height: 100vh;
  border-radius: 8px;
  overflow-y: auto;
  box-sizing: border-box;
  z-index: 99;
}
.modal__header {
  display: flex;
  padding: 1rem;
  justify-content: space-between;
  align-items: center;
}
.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1;
  box-sizing: border-box;
}
.modal__close {
  background: transparent;
  border: 0;
  margin-left: 1rem;
}
.modal__header .modal__close:before {
  content: "✕";
}
.modal__content {
  padding: 1rem;
  line-height: 1.5;
}
.modal__footer {
  padding: 0 1rem 1rem;
}
.modal__btn {
  cursor: pointer;
  border-radius: 9999px !important;
  padding: 0.8em 1em !important;
  margin: 8px 0 0 0;
  min-width: 80px;
  text-transform: none;
  text-decoration: none !important;
  overflow: visible;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
}

.modal__container {
  background-color: #fff;
  border: 1px solid #999;
}
.modal__header {
  border-bottom: 1px solid #999;
}
.modal__title {
  color: #00449e;
}
.modal__content {
  color: rgba(0, 0, 0, 0.8);
}
.modal__btn {
  background: none;
  border: 1px solid rgb(203, 213, 225);
  color: rgba(0, 0, 0, 0.8);
}
.modal__btn:focus, .modal__btn:hover {
  background: rgba(0, 0, 0, 0.05);
}
.modal__btn-primary {
  border: none;
  background-color: #4f46e5;
  color: #fff;
}
.modal__btn-primary:focus, .modal__btn-primary:hover {
  background: #2f28c5;
}

.dark .modal__container {
  background-color: #1e293b;
}
.dark .modal__title {
  color: #fff;
}
.dark .modal__content {
  color: rgba(255, 255, 255, 0.8);
}
.dark .modal__btn {
  background: none;
  border: 1px solid rgb(203, 213, 225);
  color: rgba(255, 255, 255, 0.8);
}
.dark .modal__btn:focus, .dark .modal__btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.dark .modal__btn-primary {
  border: none;
  background-color: #4f46e5;
  color: #fff;
}
.dark .modal__btn-primary:focus, .dark .modal__btn-primary:hover {
  background: #2f28c5;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  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: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}/*# sourceMappingURL=plugins.css.map */