/* Shared section layout primitives. */

.site-section {
  position: relative;
  box-sizing: border-box;
}

.site-section--screen {
  min-height: 100vh;
  overflow: visible;
}

.site-section--auto {
  min-height: auto;
}

html.vl-scroll-lock-active,
html.vl-scroll-lock-active body {
  overscroll-behavior: none;
}

.solutions-overlay-stage {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: transparent;
}

.vl-edge-exit-target {
  --vl-edge-exit-opacity: 1;
  --vl-edge-exit-y: 0px;
  --vl-edge-exit-blur: 0px;
  --vl-edge-exit-clip-top: 0%;
  --vl-edge-exit-clip-bottom: 0%;
}

.vl-edge-exit-target.is-vl-edge-exiting {
  animation: none !important;
  opacity: var(--vl-edge-exit-opacity) !important;
  transform: translate3d(0, var(--vl-edge-exit-y), 0) !important;
  filter: blur(var(--vl-edge-exit-blur)) !important;
  clip-path: inset(var(--vl-edge-exit-clip-top) 0 var(--vl-edge-exit-clip-bottom) 0) !important;
  will-change: opacity, transform, filter, clip-path;
}

.vl-scroll-lock-indicator {
  --vl-scroll-lock-progress: 0;
  --vl-scroll-lock-active-color: var(--vl-red);
  --vl-scroll-lock-complete-color: #8c929c;
  --vl-scroll-lock-bg: rgba(255, 255, 255, 0.7);

  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 50%;
  appearance: none;
  background:
    linear-gradient(var(--vl-scroll-lock-bg), var(--vl-scroll-lock-bg)) padding-box,
    conic-gradient(
      var(--vl-scroll-lock-complete-color) 0turn calc(var(--vl-scroll-lock-progress) * 1turn),
      var(--vl-scroll-lock-active-color) calc(var(--vl-scroll-lock-progress) * 1turn) 1turn
    ) border-box;
  box-shadow: 0 10px 25px rgba(233, 29, 37, 0.16);
  color: var(--vl-scroll-lock-active-color);
  font: inherit;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.vl-scroll-lock-indicator.is-vl-scroll-lock-indicator-active {
  cursor: pointer;
  pointer-events: auto;
}

.vl-scroll-lock-indicator:focus-visible {
  outline: 2px solid var(--vl-scroll-lock-active-color);
  outline-offset: 4px;
}

.vl-scroll-lock-indicator::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 31px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%) rotate(-45deg);
}

.vl-scroll-lock-indicator i {
  font-size: 16px;
}

.vl-scroll-lock-indicator.is-vl-scroll-lock-indicator-complete {
  color: var(--vl-scroll-lock-complete-color);
}
