html.modal-open {
  overflow-y: hidden;
}
html.modal-open body {
  overflow: hidden;
}
html body > #modal {
  display: none;
  z-index: 999;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
}
html body > #modal.modal-enter {
  display: block;
  animation-fill-mode: both;
  animation-name: modal-enter;
  animation-duration: 0.5s;
  animation-timing-function: ease;
}
html body > #modal.modal-enter > .modal-content {
  animation-fill-mode: both;
  animation-name: modal-content-enter;
  animation-duration: 0.5s;
  animation-delay: 0s;
  animation-timing-function: ease;
}
html body > #modal.modal-enter.modal-leave {
  animation-fill-mode: both;
  animation-name: modal-leave;
  animation-duration: 0.5s;
  animation-timing-function: ease;
}
html body > #modal.modal-enter.modal-leave > .modal-content {
  animation-fill-mode: both;
  animation-name: modal-content-leave;
  animation-duration: 0.5s;
  animation-delay: 0s;
  animation-timing-function: ease;
}
html body > #modal > .modal-close {
  display: block;
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
}
html body > #modal > .modal-close::before {
  content: "";
  position: absolute;
  background-color: #000000;
  -webkit-transform: translate(15px, 0px) rotate(-45deg);
  -ms-transform: translate(15px, 0px) rotate(-45deg);
  transform: translate(15px, 0px) rotate(-45deg);
  width: 2px;
  height: 30px;
}
html body > #modal > .modal-close::after {
  content: "";
  position: absolute;
  background-color: #000000;
  -webkit-transform: translate(15px, 0px) rotate(45deg);
  -ms-transform: translate(15px, 0px) rotate(45deg);
  transform: translate(15px, 0px) rotate(45deg);
  width: 2px;
  height: 30px;
}
html body > #modal > .modal-content {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 30px;
  -webkit-overflow-scrolling: touch;
}
html body > #modal > .modal-content > .modal-content-img {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
html body > #modal > .modal-content > .modal-content-img > img {
  position: absolute;
  visibility: hidden;
  width: 0px;
  height: 0px;
}
@keyframes modal-enter {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal-leave {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes modal-content-enter {
  0% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes modal-content-leave {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.95);
  }
}
