.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0,0,0,0.5);
}
.micromodal-slide .modal__container {
  background: #fff;
  margin: 5vh auto;
  padding: 2rem;
  max-width: 500px;
  border-radius: 8px;
  position: relative;
}
.micromodal-slide .modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.micromodal-slide .modal__title {
  margin: 0;
  font-size: 1.5rem;
}
.micromodal-slide .modal__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.micromodal-slide .modal__content {
  margin-top: 1rem;
}