@charset "UTF-8";

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.modal img {
  position: absolute;
  inset: 0;
  max-width: 90%;
  height: 90%;
  max-height: 90%;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal__banner {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 90%;
  max-width: 700px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.modal__banner img {
  position: static;
  max-width: 100%;
  height: 90%;
  max-height: 90%;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 700px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.modal__video-inner {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.modal__video-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
}
.modal__close::before, .modal__close::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 44px;
  height: 2px;
  content: "";
  background: #FFF;
}
.modal__close::before {
  -webkit-transform: translate(0, -50%) rotate(-45deg);
          transform: translate(0, -50%) rotate(-45deg);
}
.modal__close::after {
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
}
/*# sourceMappingURL=map/modal.css.map */