@charset "UTF-8";
[data-micromodal-trigger] {
  cursor: pointer;
}

.modal__overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
}

.modal__container {
  overflow: auto;
  box-sizing: border-box;
  width: 100%;
  max-width: 800px;
  max-height: 100vh;
  padding: 30px;
  border-radius: 16px;
  background-color: #fff;
}
.modal__container h5 {
  font-size: 24px;
  margin: 0 0 10px 0;
  text-align: center;
}
.modal__container img {
  max-width: 100%;
}

.modal__close {
  border: 0;
  background: transparent;
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  line-height: 1.5;
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: rgba(0, 0, 0, 0.8);
}

#new_register_modal .flex,
#login_modal .flex {
  display: flex;
  align-items: baseline;
  text-align: center;
}
#new_register_modal .flex .client,
#login_modal .flex .client {
  width: 50%;
}
#new_register_modal .flex .client span, #new_register_modal .flex .client a,
#login_modal .flex .client span,
#login_modal .flex .client a {
  /*
  border-radius: 8px;
  background: #1453FF;

   */
}
#new_register_modal .flex .creator,
#login_modal .flex .creator {
  width: 50%;
}
#new_register_modal .flex .creator span, #new_register_modal .flex .creator a,
#login_modal .flex .creator span,
#login_modal .flex .creator a {
  /*
  border-radius: 8px;
  background: #DA1725;
   */
}
#new_register_modal .flex img,
#login_modal .flex img {
  width: auto;
  max-width: 100%;
  height: auto;
}
#new_register_modal .flex span, #new_register_modal .flex a,
#login_modal .flex span,
#login_modal .flex a {
  font-size: 12px;
  display: block;
  cursor: pointer;
  text-align: left;
  color: #FFF;
}

@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=modal.css.map */