.basicLightbox {
  opacity: .01;
  z-index: 1000;
  will-change: opacity;
  background: #000c;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  transition: opacity .4s;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.basicLightbox--visible {
  opacity: 1;
}

.basicLightbox__placeholder {
  z-index: 1;
  will-change: transform;
  max-width: 100%;
  transition: transform .4s;
  transform: scale(.9);
}

.basicLightbox__placeholder > iframe:first-child:last-child, .basicLightbox__placeholder > img:first-child:last-child, .basicLightbox__placeholder > video:first-child:last-child {
  max-width: 95%;
  max-height: 95%;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0;
}

.basicLightbox__placeholder > iframe:first-child:last-child, .basicLightbox__placeholder > video: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--iframe .basicLightbox__placeholder, .basicLightbox--img .basicLightbox__placeholder, .basicLightbox--video .basicLightbox__placeholder {
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.basicLightbox--visible .basicLightbox__placeholder {
  transform: scale(1);
}

[data-lightbox] {
  position: relative;
}

.lightbox-close {
  z-index: 99;
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: -4rem;
  right: -1rem;
}

.lightbox-close:before, .lightbox-close:after {
  content: "";
  background: currentColor;
  width: 50%;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  left: 25%;
  transform: rotate(45deg);
}

.lightbox-close:after {
  transform: rotate(-45deg);
}

.basicLightbox__placeholder {
  width: 100%;
}

.newsletter-signup-success, [class*="newsletter-signup-error"], [data-newsletter="success"] .newsletter-signup-intro, [data-newsletter*="error"] .newsletter-signup-intro, [data-newsletter="success"] form {
  display: none;
}

[data-newsletter="success"] .newsletter-signup-success, [data-newsletter="error-unsubscribed"] .newsletter-signup-error-unsubscribed, [data-newsletter="error-exists"] .newsletter-signup-error-exists, [data-newsletter="error-invalid"] .newsletter-signup-error-invalid, [data-newsletter="error-unknown"] .newsletter-signup-error-unknown {
  display: block;
}

[data-newsletter] input[type="email"]:focus {
  outline: none;
}
/*# sourceMappingURL=newsletter.css.map */
