.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: 0.15s;
  overflow-y: scroll;
}

.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.modal .close {
  position: absolute;
  z-index: 1;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.modal .close::before {
  content: none;
  font-size: 3rem;
  display: block;
  margin-top: -100px;
  color: #fff;
}

.modal .background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  border: none;
  background-color: #000;
  opacity: 0.7;
  cursor: pointer;
}

.modal .modal-body {
  position: relative;
  width: 60%;
  max-width: 400px;
  height: auto;
  z-index: 11;
}

@media screen and (max-width: 767px) {
  .modal .modal-body {
    width: 90%;
  }
}
.modal .modal-body .splide__track figcaption {
  color: #fff;
  margin-top: 0.3em;
}

.splide__arrow--prev {
  left: -4em;
}

.splide__arrow--next {
  right: -4em;
}

@media screen and (max-width: 767px) {
  .splide__arrow--prev {
    left: 1em;
  }
  .splide__arrow--next {
    right: 1em;
  }
}/*# sourceMappingURL=modal.css.map */