:root {
  --sg-video-custom-fallback-bg-start: #f2f6fb;
  --sg-video-custom-fallback-bg-end: #dde7f3;
  --sg-video-custom-fallback-surface: rgb(255 255 255 / 45%);
  --sg-video-custom-fallback-border: rgb(8 30 64 / 8%);
  --sg-video-custom-fallback-play-color: rgb(10 24 46 / 72%);
  --sg-video-custom-fallback-play-shadow: rgb(6 18 37 / 25%);
}

[data-bs-theme=dark] {
  --sg-video-custom-fallback-bg-start: #0b1930;
  --sg-video-custom-fallback-bg-end: #132741;
  --sg-video-custom-fallback-surface: rgb(255 255 255 / 9%);
  --sg-video-custom-fallback-border: rgb(255 255 255 / 12%);
  --sg-video-custom-fallback-play-color: rgb(236 243 255 / 78%);
  --sg-video-custom-fallback-play-shadow: rgb(0 0 0 / 42%);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-bs-theme=light]) {
    --sg-video-custom-fallback-bg-start: #0b1930;
    --sg-video-custom-fallback-bg-end: #132741;
    --sg-video-custom-fallback-surface: rgb(255 255 255 / 9%);
    --sg-video-custom-fallback-border: rgb(255 255 255 / 12%);
    --sg-video-custom-fallback-play-color: rgb(236 243 255 / 78%);
    --sg-video-custom-fallback-play-shadow: rgb(0 0 0 / 42%);
  }
}
.sg-video__link:hover .sg-video__svg-inner {
  animation: pulse 1.4s linear infinite;
}
.sg-video__link:hover .sg-video__image {
  transform: scale(1.1);
}

.sg-video__read-more-arrow {
  transform: rotate(180deg);
}

.sg-video__read-more-text {
  display: none;
}

.collapse:not(.show) + .sg-video__read-more .sg-video__read-less-text {
  display: none;
}
.collapse:not(.show) + .sg-video__read-more .sg-video__read-more-text {
  display: inline-flex;
}
.collapse:not(.show) + .sg-video__read-more .sg-video__read-more-arrow {
  transform: none;
}

.sg-video__image {
  transition: transform 0.3s ease;
}
.sg-video__image--shorts {
  height: calc(100vh - var(--sg-video-ui-height, 10vh));
  aspect-ratio: 9/16;
  -o-object-fit: cover;
     object-fit: cover;
  width: auto;
}

.sg-video__list-item {
  padding-left: 0 !important;
  text-indent: 0 !important;
}
.sg-video__list-item::before {
  content: none !important;
  display: none !important;
}

.sg-video__svg svg {
  display: block;
  transform: translateX(1px);
}
.no-lightbox .sg-video__svg {
  display: none !important;
}

.sg-video__svg-inner {
  align-items: center;
  display: flex;
  justify-content: center;
  line-height: 0;
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sg-video__image-container--custom-fallback {
  aspect-ratio: 16/9;
  background: linear-gradient(145deg, var(--sg-video-custom-fallback-bg-start) 0%, var(--sg-video-custom-fallback-bg-end) 100%);
  border: 1px solid var(--sg-video-custom-fallback-border);
}
.sg-video__image-container--custom-fallback .overflow-hidden {
  align-items: center;
  background: radial-gradient(circle at 18% 18%, var(--sg-video-custom-fallback-surface) 0%, transparent 35%), radial-gradient(circle at 82% 82%, var(--sg-video-custom-fallback-surface) 0%, transparent 32%);
  display: flex;
  height: 100%;
  justify-content: center;
}
.sg-video__image-container--custom-fallback .sg-video__image--custom-fallback {
  display: none;
}
.sg-video__image-container--custom-fallback .sg-video__svg-inner {
  background-color: transparent !important;
  box-shadow: none !important;
  color: var(--sg-video-custom-fallback-play-color);
  opacity: 0.95;
  padding: 0 !important;
}
.sg-video__image-container--custom-fallback .sg-video__svg svg {
  filter: drop-shadow(0 0.35rem 1.2rem var(--sg-video-custom-fallback-play-shadow));
  height: clamp(4rem, 12vw, 6.5rem);
  width: clamp(4rem, 12vw, 6.5rem);
  transform: none;
}

.basicLightbox {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0.01;
  transition: opacity 0.4s ease;
  z-index: 1020;
  will-change: opacity;
}
.basicLightbox .lightbox__close-container .btn-close {
  background-color: #fff;
}
.basicLightbox--visible {
  opacity: 1;
  pointer-events: auto;
}
.basicLightbox__placeholder {
  max-width: 100%;
  transform: scale(0.9);
  transition: transform 0.4s ease;
  z-index: 1;
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
}
.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;
  inset: 0;
  margin: auto;
}
.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);
}

iframe.sg-video-iframe,
.basicLightbox .sg-cookie-optin-iframe-consent {
  width: 100%;
  height: auto;
  max-width: 900px;
  aspect-ratio: 16/9;
}

iframe.sg-video-youtube-shorts-iframe {
  aspect-ratio: 9/16;
  max-height: calc(100vh - var(--sg-video-ui-height, 10vh));
}
iframe.sg-video-youtube-shorts-iframe.sg-video-iframe {
  height: calc(100vh - var(--sg-video-ui-height, 10vh));
  width: auto;
  margin: 0 auto;
}

.basicLightbox .sg-cookie-optin-iframe-consent {
  pointer-events: all;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}
/*# sourceMappingURL=../SourceMaps/main.min.css.map */