@charset "utf-8";



.wx-sky-video {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.wx-sky-video.is-active {
  opacity: 1;
  visibility: visible;
}

.wx-sky-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.wx-sky-video-el.is-visible {
  opacity: 1;
}

.wx-sky-video-scrim {
  display: none;
}


.wx-page.wx-atmosphere[data-wx-theme$="-day"].wx-has-sky-video .wx-sky-video-scrim {
  display: block;
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(7, 17, 31, 0) 0%,
    rgba(7, 17, 31, 0.06) 42%,
    rgba(7, 17, 31, 0.2) 100%
  );
}


.wx-page.wx-has-sky-video > header {
  position: relative;
  z-index: 100;
}

.wx-page.wx-has-sky-video .wx-hero,
.wx-page.wx-has-sky-video .wx-dashboard,
.wx-page.wx-has-sky-video .site-footer {
  position: relative;
  z-index: 1;
}

.wx-page.wx-has-sky-video {
  background-image: none !important;
  background-color: var(--wx-sky-solid, #1a6fd4); 
}

.wx-page.wx-has-sky-video .wx-hero {
  background-image: none !important;
  background-color: transparent !important;
}

.wx-page.wx-has-sky-video .wx-hero-overlay {
  display: none !important;
}


.wx-sky-video.is-reduced-motion .wx-sky-video-el {
  opacity: 0;
}

.wx-sky-video.is-reduced-motion {
  background-size: cover;
  background-position: center;
  background-image: var(--wx-sky-poster, none);
}
