html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: #f7edde;
}

.willow_splash {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: #f7edde;
  color: #6b786c;
  touch-action: pan-y;
}

.willow_splash_track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 260ms ease;
}

.willow_splash_track.is_dragging {
  transition: none;
}

.willow_splash_slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f7edde;
}

.willow_splash_slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.willow_splash_controls {
  position: fixed;
  right: 0;
  bottom: max(38px, env(safe-area-inset-bottom));
  left: 0;
  z-index: 5;
  display: grid;
  justify-items: center;
  gap: 14px;
  pointer-events: none;
}

.willow_splash_progress {
  display: grid;
  grid-template-columns: repeat(3, 44px);
  width: 132px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #dbe4d6;
}

.willow_splash_progress span {
  display: block;
  height: 100%;
  background: transparent;
}

.willow_splash_progress span.is_active {
  border-radius: 999px;
  background: #3c664f;
}

.willow_splash_skip {
  min-width: 120px;
  height: 30px;
  border: 0;
  background: transparent;
  color: #6b786c;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  pointer-events: auto;
}

@media (min-width: 540px) {
  .willow_splash {
    right: auto;
    left: 50%;
    width: 390px;
    max-width: 100%;
    transform: translateX(-50%);
  }

  .willow_splash_controls {
    right: auto;
    left: 50%;
    width: 390px;
    max-width: 100%;
    transform: translateX(-50%);
  }
}
