html.native-lightbox-lock,
html.native-lightbox-lock body {
  overflow: hidden;
}

html.native-lightbox-open .cookie-banner {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate3d(0, 16px, 0) !important;
}

html.native-lightbox-ready .native-lightbox-trigger {
  cursor: pointer;
}

html.native-lightbox-ready .native-lightbox-trigger:focus-visible {
  outline: 3px solid var(--colors--primary--600);
  outline-offset: 5px;
}

.native-lightbox-modal {
  position: fixed;
  z-index: 5000;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(0, 20, 30, .82);
  opacity: 0;
  transition: opacity 220ms ease;
}

.native-lightbox-modal.is-open {
  display: flex;
}

.native-lightbox-modal.is-visible {
  opacity: 1;
}

.native-lightbox-dialog {
  position: relative;
  width: min(1040px, 100%);
  max-height: calc(100dvh - 64px);
  border-radius: var(--border-radius--br-5);
  background: #001824;
  box-shadow: 0 32px 70px rgba(0, 18, 30, .35);
  transform: translate3d(0, 18px, 0) scale(.98);
  transition: transform 240ms ease;
}

.native-lightbox-modal.is-visible .native-lightbox-dialog {
  transform: translate3d(0, 0, 0) scale(1);
}

.native-lightbox-title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.native-lightbox-close {
  position: absolute;
  z-index: 2;
  top: -56px;
  right: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--colors--neutral--100);
  border-radius: var(--border-radius--br-3);
  background: var(--colors--neutral--white);
  color: var(--font-color--text-title);
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.native-lightbox-close::before,
.native-lightbox-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.native-lightbox-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.native-lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.native-lightbox-close:hover {
  border-color: var(--colors--primary--600);
  background: var(--colors--primary--600);
  color: var(--colors--neutral--white);
  transform: scale(.96);
}

.native-lightbox-close:focus-visible {
  outline: 3px solid var(--colors--primary--300);
  outline-offset: 3px;
}

.native-lightbox-frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #001824;
  border-radius: var(--border-radius--br-5);
  overflow: hidden;
}

.native-lightbox-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media screen and (max-width: 767px) {
  .native-lightbox-modal {
    padding: 18px;
  }

  .native-lightbox-dialog {
    max-height: calc(100dvh - 36px);
    border-radius: var(--border-radius--br-4);
  }

  .native-lightbox-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    box-shadow: 0 8px 20px rgba(0, 18, 30, .22);
  }

  .native-lightbox-frame-wrap {
    border-radius: var(--border-radius--br-4);
  }
}

@media (prefers-reduced-motion: reduce) {
  .native-lightbox-modal,
  .native-lightbox-dialog,
  .native-lightbox-close {
    transition-duration: 1ms !important;
  }
}
