/* modal.style.css v0.0.6 */
html,
body {
  -webkit-font-smoothing: antialiased;
}
.basicLightbox {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000000b3;
  opacity: 0.01;
  transition: opacity 0.4s ease;
  z-index: 9999999;
  will-change: opacity;
}
.oneModal--close {
  background-color: transparent !important;
  color: white !important;
  right: 5px !important;
  top: 5px !important;
}
#oneModal--frame {
  border-radius: 12px !important;
  border-width: 0 !important;
  max-width: 480px !important;
  width: calc(100vw - 40px) !important;
}
.basicLightbox--visible {
  opacity: 1;
}
.basicLightbox__placeholder {
  max-width: 100%;
  transform: scale(0.9);
  transition: transform 0.4s ease;
  z-index: 1;
  will-change: transform;
}
.basicLightbox__placeholder > img:first-child:last-child,
.basicLightbox__placeholder > video:first-child:last-child,
.basicLightbox__placeholder > iframe:first-child:last-child {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 95%;
  max-height: 95%;
}
.basicLightbox__placeholder > video:first-child:last-child,
.basicLightbox__placeholder > iframe:first-child:last-child {
  pointer-events: auto;
}
.basicLightbox__placeholder > img:first-child:last-child,
.basicLightbox__placeholder > video:first-child:last-child {
  width: auto;
  height: auto;
}
.basicLightbox--img .basicLightbox__placeholder,
.basicLightbox--video .basicLightbox__placeholder,
.basicLightbox--iframe .basicLightbox__placeholder {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.basicLightbox--visible .basicLightbox__placeholder {
  transform: scale(1);
}
.basicLightbox iframe {
  border: 0;
  height: 90vh;
}
.basicLightbox__placeholder {
  max-width: 95%;
}
.basicLightbox__placeholder :last-child {
  box-sizing: content-box;
  max-height: calc(100vh - 136px);
  max-width: calc(100% - 16px);
  overflow-y: auto;
  width: 600px;
}
.basicLightbox.oneModal--banner {
  background: transparent;
  bottom: 0;
  height: auto;
  top: auto;
  z-index: 9999998;
}
.basicLightbox.oneModal--banner .basicLightbox__placeholder {
  margin: 0 8px 8px;
  max-width: 100%;
  width: 100%;
}
.basicLightbox.oneModal--banner .basicLightbox__placeholder :last-child {
  border-radius: 4px;
  max-height: 100vh;
  width: 100%;
}
.basicLightbox.oneModal--banner .basicLightbox__placeholder iframe {
  margin-bottom: -4px;
}
.basicLightbox.oneModal--loading {
  visibility: hidden;
}
.basicLightbox .oneModal--close {
  background: #8b0000;
  border-radius: 50%;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  height: 1.6rem;
  justify-content: center;
  margin: 0;
  padding: 0;
  position: absolute;
  right: -0.35rem;
  top: -0.35rem;
  width: 1.6rem;
}
