.modal {
  z-index: 99;
}

.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;
}

.modal .overlay .container {
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
  position: relative;
}

.modal .overlay .container button.close {
  background-color: rgba(0, 0, 0, 0);
  background-image: url('/wp-content/themes/cseior/assets/images/close.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  display: block;
  height: 10px;
  outline: none;
  padding: 0;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 10px;
}

@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 .2s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"].modal .container {
  animation: mmslideIn .2s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"].modal .overlay {
  animation: mmfadeOut .2s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"].modal .container {
  animation: mmslideOut .2s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide.modal .container,
.micromodal-slide.modal .overlay {
  will-change: transform;
}

#sign-in-modal.micromodal-slide.modal .container {
  width: 380px;
}