.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  width: 100%;
  height: var(--ks-nav-height);
  background: var(--color-nav-bg);
  border-bottom: 1px solid var(--ks-color-neutral-divider);
  box-shadow: none;
}

.browser-iphone .top-nav {
  transform: scale(var(--iphone-ui-inverse-scale));
  transform-origin: top center;
  will-change: transform;
}

.top-nav-inner {
  width: min(calc(100vw - (var(--ks-page-margin-desktop) * 2)), var(--ks-container-max));
  margin-inline: auto;
  box-sizing: border-box;
  height: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  cursor: pointer;
}

[data-home-logo="true"] {
  cursor: pointer;
}

.logo-svg {
  display: block;
  background-color: currentColor;
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  flex: 0 0 auto;
}

.logo-svg--ks {
  -webkit-mask-image: url("/assets/ks_logo.svg");
  mask-image: url("/assets/ks_logo.svg");
  aspect-ratio: 74.89 / 43.35;
}

.logo-svg--wordmark {
  -webkit-mask-image: url("/assets/kindsteps_logo.svg");
  mask-image: url("/assets/kindsteps_logo.svg");
  aspect-ratio: 360 / 72;
}

.logo-svg--word {
  -webkit-mask-image: url("/assets/kindsteps_word.svg");
  mask-image: url("/assets/kindsteps_word.svg");
  aspect-ratio: 360 / 72;
}

.kindsteps-logo,
.bird-corner,
.ks-blue-text-logo,
.ks-short-logo {
  width: 175px;
  height: 35px;
  color: var(--color-button-primary);
}

.ks-short-logo,
.bird-corner {
  width: 60px;
  height: 35px;
}

.logo-link .bird-corner {
  height: 35px;
}

.logo-link .kindsteps-logo {
  display: none;
}

.logo-link .ks-blue-text-logo {
  display: none;
}

.logo-link .ks-short-logo {
  display: block;
  align-self: center;
  width: 43px;
  height: 25px;
  max-height: 25px;
}

.logo-link .bird-corner {
  display: none;
}

.top-nav-actions {
  display: flex;
  align-items: center;
  gap: 35px;
  flex-wrap: nowrap;
  flex: 0 1 auto;
  min-width: 0;
}

.top-nav.top-nav--sheet-open .top-nav-signin,
.top-nav.top-nav--sheet-open .join-trigger,
.top-nav.top-nav--sheet-open .v-divider,
.top-nav.top-nav--sheet-open .top-inline-links {
  display: none;
}

.top-nav-actions .btn + .btn {
  margin-left: 0;
}

.top-nav-actions .top-nav-signin + .btn {
  margin-left: 0;
}

.top-nav-actions > .v-divider {
  display: none;
}

.btn {
  min-height: var(--ks-button-height);
  border-radius: var(--ks-radius-pill);
  border: 1px solid var(--ks-color-neutral-border);
  padding: 0 14px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
  transition:
    background-color var(--ks-transition-fast),
    color var(--ks-transition-fast),
    border-color var(--ks-transition-fast),
    box-shadow var(--ks-transition-fast);
}

.btn-outline {
  background: var(--ks-color-neutral-surface);
  color: var(--ks-color-primary-500);
  border-color: var(--ks-color-neutral-border);
}

.top-nav-signin {
  height: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ks-color-primary-500);
  box-shadow: none;
  font-size: 14px;
  font-weight: 400;
}

.top-nav-actions > .join-trigger {
  min-height: 25px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
  background: var(--ks-color-primary-500);
  border-color: var(--ks-color-primary-500);
  color: var(--color-nav-bg);
}

.top-nav-actions > .join-trigger:hover,
.top-nav-actions > .join-trigger:focus-visible {
  background: var(--ks-color-primary-500);
  border-color: var(--ks-color-primary-500);
  color: var(--color-nav-bg);
}

.btn-primary {
  background: var(--ks-color-primary-500);
  border-color: var(--ks-color-primary-500);
  color: #ffffff;
}

.btn-outline:hover {
  background: var(--ks-color-primary-500);
  color: #ffffff;
  border-color: var(--ks-color-primary-500);
}

.top-nav-signin:hover {
  background: transparent;
  color: var(--ks-color-primary-500);
  border-color: transparent;
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--ks-color-primary-600);
  color: #ffffff;
  border-color: var(--ks-color-primary-500);
}

.see-video-tab,
.mobile-video-tab-ghost {
  --ks-video-tab-fill: rgba(107, 114, 128, 0.5);
}

.see-video-tab {
  position: fixed;
  top: var(--ks-video-tab-top);
  right: var(--ks-video-tab-edge-inset);
  z-index: 45;
  width: var(--ks-video-tab-width);
  height: var(--ks-video-tab-height);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111827;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  cursor: pointer;
  box-shadow: none;
  transition: opacity 180ms ease;
  overflow: visible;
  opacity: 1;
  transform: translateY(0);
}

.see-video-tab__image-stack {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.see-video-tab__image-stack::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: var(--ks-video-tab-image-height);
  background: var(--ks-video-tab-fill);
  -webkit-mask-image: url("../assets/side_tab.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
  -webkit-mask-size: contain;
  mask-image: url("../assets/side_tab.svg");
  mask-repeat: no-repeat;
  mask-position: center bottom;
  mask-size: contain;
  pointer-events: none;
  z-index: 1;
}

.see-video-tab__backing {
  display: none;
}

.see-video-tab__image {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: var(--ks-video-tab-image-height);
  object-fit: contain;
  object-position: center;
  transition: opacity 500ms ease;
  opacity: 0;
  pointer-events: none;
}

.see-video-tab__close-icon {
  position: absolute;
  top: var(--ks-video-tab-close-top);
  left: var(--ks-video-tab-close-left);
  width: var(--ks-video-tab-close-size);
  height: var(--ks-video-tab-close-size);
  object-fit: contain;
  object-position: center;
  pointer-events: auto;
  filter: grayscale(1) brightness(0.55);
  opacity: 0.2;
  z-index: 2;
}

.see-video-tab[hidden] {
  display: none;
}

.see-video-tab.is-delayed-enter {
  animation: see-video-tab-delayed-enter 1500ms cubic-bezier(0.42, 0, 0.58, 1) forwards;
}

.see-video-tab.is-sliding-up {
  animation: see-video-tab-slide-up 1500ms forwards;
}

.see-video-tab.is-returning {
  animation: see-video-tab-return 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.see-video-tab:hover,
.see-video-tab:focus-visible {
  opacity: 1;
}

.see-video-tab.is-active {
  opacity: 0;
  pointer-events: none;
}

.see-video-tab.is-scroll-reset,
.see-video-tab.is-scroll-reset:hover,
.see-video-tab.is-scroll-reset:focus-visible {
  background: transparent;
}

.see-video-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111111;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
}

.see-video-nav-link__icon,
.top-sheet-see-video__icon {
  width: 16px;
  height: 16px;
  border: 1px solid #111111;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.see-video-nav-link__arrow,
.top-sheet-see-video__arrow {
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 5px solid #111111;
  transform: translateX(1px);
}

.see-video-tab__icon:not(.see-video-tab__icon--close):hover,
.see-video-tab__icon:not(.see-video-tab__icon--close):focus-visible,
.see-video-nav-link:hover .see-video-nav-link__icon,
.see-video-nav-link:focus-visible .see-video-nav-link__icon,
.top-sheet-see-video:hover .top-sheet-see-video__icon,
.top-sheet-see-video:focus-visible .top-sheet-see-video__icon {
  background: transparent;
  border-color: #111111;
}

.see-video-tab__icon:not(.see-video-tab__icon--close):hover .see-video-tab__arrow,
.see-video-tab__icon:not(.see-video-tab__icon--close):focus-visible .see-video-tab__arrow,
.see-video-nav-link:hover .see-video-nav-link__arrow,
.see-video-nav-link:focus-visible .see-video-nav-link__arrow,
.top-sheet-see-video:hover .top-sheet-see-video__arrow,
.top-sheet-see-video:focus-visible .top-sheet-see-video__arrow {
  border-left-color: #111111;
}

.time-search-active .see-video-nav-link,
.time-search-active .top-sheet-see-video,
.time-search-active .top-inline-links a {
  color: #ffffff;
}

.time-search-active .see-video-tab,
.time-search-active .mobile-video-tab-ghost {
  --ks-video-tab-fill: #ffb703;
}

.time-search-active .see-video-tab__backing,
.time-search-active .mobile-video-tab-ghost .see-video-tab__backing {
  display: block;
  background: #ffffff;
}

.time-search-active .see-video-tab__close-icon,
.time-search-active .mobile-video-tab-ghost .see-video-tab__close-icon {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.time-search-active .top-inline-links a:hover,
.time-search-active .top-inline-links a:focus-visible,
.time-search-active .map-go-back-inline:hover,
.time-search-active .map-go-back-inline:focus-visible {
  color: #ffffff;
}

.time-search-active .see-video-nav-link__icon,
.time-search-active .top-sheet-see-video__icon {
  border-color: #ffffff;
  background: transparent;
}

.time-search-active .see-video-nav-link__arrow,
.time-search-active .top-sheet-see-video__arrow {
  border-left-color: #ffffff;
}

.time-search-active .see-video-nav-link:hover .see-video-nav-link__icon,
.time-search-active .see-video-nav-link:focus-visible .see-video-nav-link__icon,
.time-search-active .top-sheet-see-video:hover .top-sheet-see-video__icon,
.time-search-active .top-sheet-see-video:focus-visible .top-sheet-see-video__icon {
  background: transparent;
}

.time-search-active .see-video-nav-link:hover .see-video-nav-link__arrow,
.time-search-active .see-video-nav-link:focus-visible .see-video-nav-link__arrow,
.time-search-active .top-sheet-see-video:hover .top-sheet-see-video__arrow,
.time-search-active .top-sheet-see-video:focus-visible .top-sheet-see-video__arrow {
  border-left-color: #ffffff;
}

.stopwatch-search-active .see-video-nav-link,
.stopwatch-search-active .top-sheet-see-video,
.stopwatch-search-active .top-inline-links a {
  color: #ff6b6b;
}

.stopwatch-search-active .see-video-tab__image,
.stopwatch-search-active .mobile-video-tab-ghost .see-video-tab__image {
  transition: none;
  opacity: 0;
}

.stopwatch-search-active .see-video-tab,
.stopwatch-search-active .mobile-video-tab-ghost {
  --ks-video-tab-fill: #ff6b6b;
}

.stopwatch-search-active .see-video-tab__image--base,
.stopwatch-search-active .mobile-video-tab-ghost .see-video-tab__image--base {
  opacity: 1;
}

.stopwatch-search-active .see-video-tab__image--highlight,
.stopwatch-search-active .mobile-video-tab-ghost .see-video-tab__image--highlight {
  opacity: 0;
}

.stopwatch-search-active .see-video-tab.is-highlighted .see-video-tab__image--base,
.stopwatch-search-active .mobile-video-tab-ghost.is-highlighted .see-video-tab__image--base {
  opacity: 1;
}

.stopwatch-search-active .see-video-tab.is-highlighted .see-video-tab__image--highlight,
.stopwatch-search-active .mobile-video-tab-ghost.is-highlighted .see-video-tab__image--highlight {
  opacity: 0;
}

.stopwatch-search-active .top-inline-links a:hover,
.stopwatch-search-active .top-inline-links a:focus-visible,
.stopwatch-search-active .map-go-back-inline:hover,
.stopwatch-search-active .map-go-back-inline:focus-visible {
  color: #ff6b6b;
}

.screensaver-127-active .see-video-nav-link,
.screensaver-127-active .top-sheet-see-video,
.screensaver-127-active .top-inline-links a {
  color: #ffb703;
}

.screensaver-127-active .see-video-tab__image,
.screensaver-127-active .mobile-video-tab-ghost .see-video-tab__image {
  transition: none;
}

.screensaver-127-active .see-video-tab__image--base,
.screensaver-127-active .mobile-video-tab-ghost .see-video-tab__image--base {
  opacity: 0;
}

.screensaver-127-active .see-video-tab__image--highlight,
.screensaver-127-active .mobile-video-tab-ghost .see-video-tab__image--highlight {
  opacity: 1;
}

.screensaver-127-active .see-video-tab.is-highlighted .see-video-tab__image--base,
.screensaver-127-active .mobile-video-tab-ghost.is-highlighted .see-video-tab__image--base {
  opacity: 0;
}

.screensaver-127-active .see-video-tab.is-highlighted .see-video-tab__image--highlight,
.screensaver-127-active .mobile-video-tab-ghost.is-highlighted .see-video-tab__image--highlight {
  opacity: 1;
}

.screensaver-127-active .top-inline-links a:hover,
.screensaver-127-active .top-inline-links a:focus-visible,
.screensaver-127-active .map-go-back-inline:hover,
.screensaver-127-active .map-go-back-inline:focus-visible {
  color: #ffb703;
}

.screensaver-127-active .see-video-nav-link__icon,
.screensaver-127-active .top-sheet-see-video__icon {
  border-color: #ffb703;
  background: transparent;
}

.screensaver-127-active .see-video-nav-link__arrow,
.screensaver-127-active .top-sheet-see-video__arrow {
  border-left-color: #ffb703;
}

.screensaver-127-active .see-video-nav-link:hover .see-video-nav-link__icon,
.screensaver-127-active .see-video-nav-link:focus-visible .see-video-nav-link__icon,
.screensaver-127-active .top-sheet-see-video:hover .top-sheet-see-video__icon,
.screensaver-127-active .top-sheet-see-video:focus-visible .top-sheet-see-video__icon {
  border-color: #ffb703;
  background: transparent;
}

.screensaver-127-active .see-video-nav-link:hover .see-video-nav-link__arrow,
.screensaver-127-active .see-video-nav-link:focus-visible .see-video-nav-link__arrow,
.screensaver-127-active .top-sheet-see-video:hover .top-sheet-see-video__arrow,
.screensaver-127-active .top-sheet-see-video:focus-visible .top-sheet-see-video__arrow {
  border-left-color: #ffb703;
}

.stopwatch-search-active .see-video-nav-link__icon,
.stopwatch-search-active .top-sheet-see-video__icon {
  border-color: #ff6b6b;
  background: transparent;
}

.stopwatch-search-active .see-video-nav-link__arrow,
.stopwatch-search-active .top-sheet-see-video__arrow {
  border-left-color: #ff6b6b;
}

.stopwatch-search-active .see-video-nav-link:hover .see-video-nav-link__icon,
.stopwatch-search-active .see-video-nav-link:focus-visible .see-video-nav-link__icon,
.stopwatch-search-active .top-sheet-see-video:hover .top-sheet-see-video__icon,
.stopwatch-search-active .top-sheet-see-video:focus-visible .top-sheet-see-video__icon {
  border-color: #ff6b6b;
  background: transparent;
}

.stopwatch-search-active .see-video-nav-link:hover .see-video-nav-link__arrow,
.stopwatch-search-active .see-video-nav-link:focus-visible .see-video-nav-link__arrow,
.stopwatch-search-active .top-sheet-see-video:hover .top-sheet-see-video__arrow,
.stopwatch-search-active .top-sheet-see-video:focus-visible .top-sheet-see-video__arrow {
  border-left-color: #ff6b6b;
}

.stopwatch-search-active .top-sheet-overlay {
  background: transparent;
}

.screensaver-127-active .top-sheet-overlay {
  background: transparent;
}

.stopwatch-search-active .top-sheet {
  background: #ff6b6b;
  box-shadow: none;
}

.screensaver-127-active .top-sheet {
  background: #ffb703;
  box-shadow: none;
}

.stopwatch-search-active .top-sheet-links a,
.stopwatch-search-active .top-sheet-links a:hover,
.stopwatch-search-active .top-sheet-links a:focus-visible {
  color: #e6f6fb;
  background: transparent;
  transition: none;
}

.screensaver-127-active .top-sheet-links a,
.screensaver-127-active .top-sheet-links a:hover,
.screensaver-127-active .top-sheet-links a:focus-visible {
  color: #00a1ce;
  background: transparent;
  transition: none;
}

.stopwatch-search-active .top-sheet-bottom-grabber,
.stopwatch-search-active .top-sheet-prompt,
.stopwatch-search-active .top-sheet-brand .kindsteps-logo {
  color: #ff6b6b;
  background: transparent;
}

.screensaver-127-active .top-sheet-bottom-grabber,
.screensaver-127-active .top-sheet-prompt,
.screensaver-127-active .top-sheet-brand .kindsteps-logo {
  color: #00a1ce;
  background: transparent;
}

.stopwatch-search-active .top-sheet-bottom-grabber {
  background: var(--ks-sheet-handle-fill);
  height: var(--ks-sheet-handle-height);
}

.screensaver-127-active .top-sheet-bottom-grabber {
  background: var(--ks-sheet-handle-fill);
  height: var(--ks-sheet-handle-height);
}

.stopwatch-search-active .top-sheet-prompt {
  color: #e6f6fb;
}

.screensaver-127-active .top-sheet-prompt {
  color: #00a1ce;
}

.time-search-active .see-video-tab__image,
.time-search-active .mobile-video-tab-ghost .see-video-tab__image {
  transition: none;
}

.time-search-active .see-video-tab__image--base,
.time-search-active .mobile-video-tab-ghost .see-video-tab__image--base {
  opacity: 0;
}

.time-search-active .see-video-tab__image--highlight,
.time-search-active .mobile-video-tab-ghost .see-video-tab__image--highlight {
  opacity: 1;
}

.top-sheet-see-video {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border-top: 1px solid rgba(17, 24, 39, 0.16);
  border-bottom: 1px solid rgba(17, 24, 39, 0.16);
}

.signup-flow[hidden] {
  display: none;
}

.signup-flow {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.signup-flow__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.18);
}

.signup-flow__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
}

.signup-flow__phone {
  width: 100%;
  min-height: 100dvh;
  background: #ffffff;
  color: #111827;
  padding: calc(env(safe-area-inset-top, 0px) + 30px) var(--space-lg) calc(env(safe-area-inset-bottom, 0px) + 32px);
  display: flex;
  flex-direction: column;
}

.signup-flow__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  margin-bottom: 35px;
}

.signup-flow__logo {
  width: 165px;
  height: 33px;
  color: var(--color-button-primary);
}

.signup-flow__header-controls {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.signup-flow__header-divider {
  display: none;
}

.signup-flow__close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(17, 24, 39, 0.78);
  font-size: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex: 0 0 auto;
}

.signup-flow__close-glyph {
  position: relative;
  width: 22px;
  height: 22px;
  display: inline-block;
}

.signup-flow__close-glyph::before,
.signup-flow__close-glyph::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 1px;
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  height: 20px;
  transform-origin: center center;
}

.signup-flow__close-glyph::before {
  transform: rotate(45deg);
}

.signup-flow__close-glyph::after {
  transform: rotate(-45deg);
}

.signup-step {
  flex: 1 1 auto;
}

.signup-step__content {
  width: min(100%, 390px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.signup-step__title {
  margin: 0 0 40px;
  text-align: center;
  color: #111827;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.signup-step__subtitle {
  margin: -18px 0 28px;
  text-align: center;
  color: #5b6473;
  font-size: 1rem;
  line-height: 1.45;
}

.signup-field-label {
  display: block;
  margin-bottom: 5px;
  color: #444c59;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  align-self: flex-start;
}

.signup-field-label--section {
  margin-top: 20px;
}

.signup-required-mark {
  color: #d93025;
  font-weight: 700;
}

.signup-required-mark.is-complete {
  color: #111827;
}

.signup-input {
  width: 100%;
  height: 35px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(17, 24, 39, 0.42);
  border-radius: 4px;
  padding: 0 18px;
  background: #ffffff;
  background-clip: padding-box;
  color: #111827;
  font-size: 1rem;
  outline: none;
  box-shadow: none;
  transition: border-color 160ms ease;
}

.signup-input:focus {
  border-color: var(--color-button-primary);
  outline: none;
  box-shadow: none;
}

.signup-input.is-invalid,
.signup-input.is-invalid:focus {
  border-color: #d93025;
  box-shadow: none;
  background: #fff1f4;
}

.signup-entry-form,
.signup-details-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.signup-entry-form {
  gap: 0;
}

.signup-details-form {
  gap: 0;
}

.signup-name-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  width: 100%;
}

.signup-name-field {
  min-width: 0;
}

.signup-terms {
  margin: 20px 4px 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.signup-terms--details {
  margin-top: 28px;
}

.signup-inline-link,
.signup-inline-button {
  color: #3669b9;
  font-weight: 700;
  text-decoration: none;
}

.signup-inline-button {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.signup-primary-btn {
  width: 100%;
  height: 40px;
  margin-top: 20px;
  border: 0;
  border-radius: 999px;
  background: var(--color-button-primary);
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.signup-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 30px 0;
  color: #111827;
  font-size: 1rem;
  width: 100%;
}

.signup-divider > span:first-child,
.signup-divider > span:last-child {
  display: block;
  height: 1px;
  background: rgba(17, 24, 39, 0.2);
  width: 100%;
}

.signup-divider__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  padding: 0;
}

.signup-google-btn {
  width: auto;
  min-width: 0;
  height: 40px;
  margin: 0 auto;
  padding: 0 20px;
  border: 1px solid rgba(17, 24, 39, 0.42);
  border-radius: 999px;
  background: #ffffff;
  color: #5b6473;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 500;
  cursor: pointer;
}

.signup-google-btn__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.signup-google-btn__icon {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.signup-password-wrap {
  position: relative;
  width: 100%;
}

.signup-input--password {
  padding-right: 84px;
}

.signup-input--password.is-invalid,
.signup-input--password.is-invalid:focus {
  border-color: #d93025;
  box-shadow: none;
}

.signup-password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #3669b9;
  font-size: 1rem;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
}

.signup-password-help,
.signup-password-error {
  width: 100%;
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
  font-family: inherit;
}

.signup-password-error {
  color: #d93025;
  min-height: 1.2em;
}

.signup-name-error {
  width: 100%;
  margin: 8px 0 0;
  min-height: 1.2em;
  color: #d93025;
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
}

.signup-phone-preview {
  width: 100%;
  margin: 8px 0 0;
  min-height: 1.2em;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
}

.signup-helper,
.signup-business {
  margin: 30px 0 0;
  text-align: center;
  color: #1f2937;
  font-size: 0.98rem;
  line-height: 1.45;
}

.signup-business {
  margin-top: 30px;
  padding-top: 0;
}

.signup-languages {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  color: #6b7280;
  font-size: 0.88rem;
}

.signup-back-btn {
  border: 0;
  background: transparent;
  color: #3669b9;
  font-size: 0.98rem;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px;
  cursor: pointer;
}

.signup-back-btn--header {
  margin: 0;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  visibility: visible;
  color: #111827;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  padding: 0;
}

.signup-flow .signup-flow__close:hover,
.signup-flow .signup-flow__close:focus-visible,
.signup-flow .signup-inline-link:hover,
.signup-flow .signup-inline-link:focus-visible,
.signup-flow .signup-inline-button:hover,
.signup-flow .signup-inline-button:focus-visible,
.signup-flow .signup-back-btn:hover,
.signup-flow .signup-back-btn:focus-visible {
  opacity: 0.82;
}

.login-flow[hidden] {
  display: none;
}

.login-flow {
  position: fixed;
  inset: 0;
  z-index: 141;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.login-flow__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.18);
}

.login-flow__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
}

.login-flow__phone {
  width: 100%;
  min-height: 100dvh;
  background: #ffffff;
  color: #111827;
  padding: calc(env(safe-area-inset-top, 0px) + 30px) var(--space-lg) calc(env(safe-area-inset-bottom, 0px) + 32px);
  display: flex;
  flex-direction: column;
}

.login-flow__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  margin-bottom: 35px;
}

.login-flow__logo {
  width: 165px;
  height: 33px;
  color: var(--color-button-primary);
}

.login-flow__header-controls {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.login-flow__header-divider {
  display: none;
}

.login-flow__close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(17, 24, 39, 0.78);
  font-size: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex: 0 0 auto;
}

.login-flow__close-glyph {
  position: relative;
  width: 22px;
  height: 22px;
  display: inline-block;
}

.login-flow__close-glyph::before,
.login-flow__close-glyph::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 1px;
  width: 3px;
  height: 20px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center center;
}

.login-flow__close-glyph::before {
  transform: rotate(45deg);
}

.login-flow__close-glyph::after {
  transform: rotate(-45deg);
}

.login-step__content {
  width: min(100%, 390px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-step__title {
  width: 100%;
  margin: 0 0 28px;
  text-align: left;
  color: #111827;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.login-google-btn {
  width: auto;
  min-width: 0;
  height: 40px;
  padding: 0 20px;
  border: 1px solid rgba(17, 24, 39, 0.42);
  border-radius: 999px;
  background: #ffffff;
  color: #5b6473;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 500;
  cursor: pointer;
}

.login-google-btn__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.login-google-btn__icon {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.login-terms {
  width: 100%;
  margin: 20px 0 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
}

.login-inline-link,
.login-inline-button {
  color: #3669b9;
  font-weight: 700;
  text-decoration: none;
}

.login-inline-button,
.login-forgot-btn,
.login-back-btn {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.login-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 30px 0;
  color: #111827;
  font-size: 1rem;
  width: 100%;
}

.login-divider > span:first-child,
.login-divider > span:last-child {
  display: block;
  height: 1px;
  width: 100%;
  background: rgba(17, 24, 39, 0.2);
}

.login-divider__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
}

.login-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-input {
  width: 100%;
  height: 35px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(17, 24, 39, 0.42);
  border-radius: 4px;
  padding: 0 18px;
  background: #ffffff;
  background-clip: padding-box;
  color: #111827;
  font-size: 1rem;
  outline: none;
  box-shadow: none;
  transition: border-color 160ms ease;
}

.login-input::placeholder {
  color: #6b7280;
}

.login-input:focus {
  border-color: var(--color-button-primary);
  outline: none;
  box-shadow: none;
}

.login-input.is-invalid,
.login-input.is-invalid:focus {
  border-color: #d93025;
  box-shadow: none;
}

.login-password-wrap {
  position: relative;
  width: 100%;
}

.login-input--password {
  padding-right: 84px;
}

.login-password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #3669b9;
  font-size: 1rem;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
}

.login-forgot-btn {
  margin-top: -4px;
  align-self: flex-start;
  color: #3669b9;
  font-size: 0.92rem;
  font-weight: 700;
}

.login-primary-btn {
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--color-button-primary);
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.login-helper {
  margin: 34px 0 0;
  text-align: center;
  color: #1f2937;
  font-size: 0.98rem;
  line-height: 1.45;
}

.login-back-btn--header {
  margin: 0;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  padding: 0;
}

.login-flow .login-flow__close:hover,
.login-flow .login-flow__close:focus-visible,
.login-flow .login-inline-link:hover,
.login-flow .login-inline-link:focus-visible,
.login-flow .login-inline-button:hover,
.login-flow .login-inline-button:focus-visible,
.login-flow .login-forgot-btn:hover,
.login-flow .login-forgot-btn:focus-visible,
.login-flow .login-back-btn:hover,
.login-flow .login-back-btn:focus-visible {
  opacity: 0.82;
}

.forgot-flow[hidden] {
  display: none;
}

.forgot-flow {
  position: fixed;
  inset: 0;
  z-index: 142;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.forgot-flow__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.18);
}

.forgot-flow__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
}

.forgot-flow__phone {
  width: 100%;
  min-height: 100dvh;
  background: #ffffff;
  color: #111827;
  padding: calc(env(safe-area-inset-top, 0px) + 30px) var(--space-lg) calc(env(safe-area-inset-bottom, 0px) + 32px);
  display: flex;
  flex-direction: column;
}

.forgot-flow__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  margin-bottom: 35px;
}

.forgot-flow__logo {
  width: 165px;
  height: 33px;
  color: var(--color-button-primary);
}

.forgot-flow__header-actions {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.forgot-flow__signin-btn {
  border: 0;
  background: transparent;
  color: #6b7280;
  font-size: 15px;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
}

.forgot-flow__join-btn {
  height: 40px;
  padding: 0 20px;
  border: 2px solid var(--color-button-primary);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-button-primary);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.forgot-step__content {
  width: min(100%, 390px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.forgot-step__content[hidden] {
  display: none;
}

.forgot-step__title {
  width: 100%;
  margin: 0 0 28px;
  text-align: left;
  color: #111827;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.forgot-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.forgot-input {
  width: 100%;
  height: 35px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(17, 24, 39, 0.42);
  border-radius: 4px;
  padding: 0 18px;
  background: #ffffff;
  background-clip: padding-box;
  color: #111827;
  font-size: 1rem;
  outline: none;
  box-shadow: none;
  transition: border-color 160ms ease;
}

.forgot-input::placeholder {
  color: #6b7280;
}

.forgot-input:focus {
  border-color: var(--color-button-primary);
  outline: none;
  box-shadow: none;
}

.forgot-input.is-invalid,
.forgot-input.is-invalid:focus,
.follow-search-input.is-invalid,
.follow-search-input.is-invalid:focus,
.send-sheet-search input.is-invalid,
.send-sheet-search input.is-invalid:focus {
  border-color: #d93025;
  box-shadow: none;
}

.forgot-copy {
  width: 100%;
  margin: 0;
  color: #1f2937;
  font-size: 0.92rem;
  line-height: 1.4;
  text-align: left;
}

.forgot-copy--secondary {
  color: #6b7280;
  margin-top: 24px;
}

.forgot-copy--options {
  margin-bottom: 22px;
}

.forgot-code-copy {
  width: 100%;
  margin-bottom: 28px;
}

.forgot-code-copy__line {
  margin: 0;
  color: #1f2937;
  font-size: 0.92rem;
  line-height: 1.4;
  text-align: left;
}

.forgot-primary-btn {
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--color-button-primary);
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.forgot-back-btn {
  border: 0;
  background: transparent;
  color: #6b7280;
  font-size: 15px;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  align-self: center;
}

.forgot-link-btn {
  border: 0;
  background: transparent;
  color: #1667c7;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
  align-self: flex-start;
}

.forgot-link-btn--bottom {
  margin-top: 8px;
}

.forgot-options-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.forgot-option {
  width: 100%;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 14px;
  cursor: pointer;
}

.forgot-option__radio {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--color-button-primary);
}

.forgot-option__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.forgot-option__title,
.forgot-option__detail {
  color: #1f2937;
  font-size: 0.92rem;
  line-height: 1.35;
  text-align: left;
}

.forgot-flow .forgot-flow__signin-btn:hover,
.forgot-flow .forgot-flow__signin-btn:focus-visible,
.forgot-flow .forgot-flow__join-btn:hover,
.forgot-flow .forgot-flow__join-btn:focus-visible,
.forgot-flow .forgot-back-btn:hover,
.forgot-flow .forgot-back-btn:focus-visible,
.forgot-flow .forgot-link-btn:hover,
.forgot-flow .forgot-link-btn:focus-visible {
  opacity: 0.82;
}

.auth-flow-footer {
  display: none;
}

html.theme-dark .signup-flow__backdrop,
html.theme-dark .login-flow__backdrop,
html.theme-dark .forgot-flow__backdrop {
  background: rgba(2, 8, 20, 0.58);
}

html.theme-dark .signup-flow__phone,
html.theme-dark .login-flow__phone,
html.theme-dark .forgot-flow__phone {
  background: #1b2940;
  color: #eef4fb;
}

html.theme-dark .signup-flow__logo,
html.theme-dark .login-flow__logo,
html.theme-dark .forgot-flow__logo,
html.theme-dark .auth-flow-footer__logo {
  color: var(--ks-color-primary-500);
}

html.theme-dark .signup-flow__close,
html.theme-dark .login-flow__close,
html.theme-dark .signup-back-btn--header,
html.theme-dark .login-back-btn--header,
html.theme-dark .forgot-flow__signin-btn,
html.theme-dark .forgot-back-btn,
html.theme-dark .auth-flow-footer__copyright,
html.theme-dark .auth-flow-footer__link,
html.theme-dark .signup-languages,
html.theme-dark .signup-helper,
html.theme-dark .signup-business,
html.theme-dark .login-helper,
html.theme-dark .forgot-copy,
html.theme-dark .forgot-copy--secondary,
html.theme-dark .forgot-code-copy__line,
html.theme-dark .forgot-option__title,
html.theme-dark .forgot-option__detail {
  color: #d7e2ef;
}

html.theme-dark .signup-step__title,
html.theme-dark .login-step__title,
html.theme-dark .forgot-step__title,
html.theme-dark .signup-field-label,
html.theme-dark .login-terms,
html.theme-dark .login-divider,
html.theme-dark .signup-divider {
  color: #ffffff;
}

html.theme-dark .signup-terms,
html.theme-dark .signup-phone-preview,
html.theme-dark .login-terms,
html.theme-dark .forgot-copy--secondary {
  color: #c4d2e3;
}

html.theme-dark .signup-inline-link,
html.theme-dark .signup-inline-button,
html.theme-dark .login-inline-link,
html.theme-dark .login-inline-button,
html.theme-dark .login-forgot-btn,
html.theme-dark .forgot-link-btn {
  color: #9fd7f0;
}

html.theme-dark .signup-input,
html.theme-dark .login-input,
html.theme-dark .forgot-input {
  background: #22324a;
  border-color: rgba(231, 239, 248, 0.22);
  color: #ffffff;
}

html.theme-dark .signup-input::placeholder,
html.theme-dark .login-input::placeholder,
html.theme-dark .forgot-input::placeholder {
  color: #d7e2ef;
}

html.theme-dark .signup-input:focus,
html.theme-dark .login-input:focus,
html.theme-dark .forgot-input:focus {
  border-color: rgba(159, 215, 240, 0.9);
}

html.theme-dark .signup-password-toggle,
html.theme-dark .login-password-toggle {
  color: #9fd7f0;
}

html.theme-dark .signup-primary-btn,
html.theme-dark .login-primary-btn,
html.theme-dark .forgot-primary-btn,
html.theme-dark .forgot-flow__join-btn {
  background: #22324a;
  border: 1px solid rgba(255, 255, 255, 0.92);
  color: #ffffff;
}

html.theme-dark .signup-google-btn,
html.theme-dark .login-google-btn {
  background: #22324a;
  border-color: rgba(255, 255, 255, 0.92);
  color: #ffffff;
}

html.theme-dark .signup-divider > span:first-child,
html.theme-dark .signup-divider > span:last-child,
html.theme-dark .login-divider > span:first-child,
html.theme-dark .login-divider > span:last-child {
  background: rgba(231, 239, 248, 0.22);
}

html.theme-dark .auth-flow-footer {
  background: #132033 !important;
  border-top-color: rgba(231, 239, 248, 0.12);
}

.auth-flow-footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-flow-footer__copyright {
  color: #111827;
  font-size: 0.88rem;
  line-height: 1.2;
  white-space: nowrap;
}

.auth-flow-footer__columns {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.auth-flow-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.auth-flow-footer__link {
  color: #374151;
  font-size: 0.88rem;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

html.desktop-auth-page,
html.desktop-auth-page body {
  background: #f5f3ee;
}

.mobile-video-overlay[hidden] {
  display: none;
}

.mobile-video-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(107, 114, 128, 0.3);
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  overflow: hidden;
}

.video-only-window body {
  background: #000000;
  overflow: hidden;
}

.video-only-window .top-nav,
.video-only-window .top-sheet-overlay,
.video-only-window .top-sheet,
.video-only-window .see-video-tab,
.video-only-window .follow-kindness,
.video-only-window main,
.video-only-window footer,
.video-only-window .bottom-sheet,
.video-only-window .sheet-overlay,
.video-only-window .send-sheet,
.video-only-window .send-sheet-overlay {
  display: none !important;
}

.video-only-window .mobile-video-overlay {
  display: flex !important;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.video-only-window .mobile-video-stage {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  transform: none;
  transition: none;
  overflow: hidden;
  filter: none;
}

.video-only-window .mobile-video-shell {
  left: 0;
  width: 100%;
}

.video-only-window .mobile-video-tab-ghost {
  display: none !important;
}

.mobile-video-stage {
  position: absolute;
  top: 0;
  left: -28px;
  width: calc(100vw + 28px);
  height: 100dvh;
  transform: translateX(calc(100vw + 28px));
  transition: transform 1000ms cubic-bezier(0.12, 0.78, 0.22, 1);
  overflow: visible;
  filter: drop-shadow(0 4px 10px rgba(15, 23, 42, 0.14));
}

.mobile-video-overlay.open .mobile-video-stage {
  transform: translateX(0);
}

.mobile-video-overlay.without-tab-motion .mobile-video-tab-ghost {
  display: none;
}

.mobile-video-shell {
  position: absolute;
  top: 0;
  left: 28px;
  width: calc(100% - 28px);
  height: 100dvh;
  background: #000000;
  overflow: hidden;
  z-index: 2;
  --mobile-video-ui-color: #000000;
  --mobile-video-ui-divider: rgba(0, 0, 0, 0.82);
  --mobile-video-ui-progress: rgba(0, 0, 0, 0.4);
  touch-action: none;
}

.mobile-video-tab-ghost {
  position: absolute;
  top: var(--ks-video-tab-top);
  right: calc(100% - var(--ks-video-tab-width) - var(--ks-video-tab-edge-inset));
  z-index: 1;
  width: var(--ks-video-tab-width);
  height: var(--ks-video-tab-height);
  padding: 0;
  box-shadow: none;
  background: transparent;
  border-radius: 0;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 1;
  visibility: visible;
  overflow: visible;
}

.mobile-video-tab-ghost::after {
  display: none;
}

@media (max-width: 1023px) {
}

@media (max-width: 767px) {
  .see-video-tab {
    right: 0;
  }

  .mobile-video-tab-ghost {
    right: calc(100% - var(--ks-video-tab-width));
  }
}

@media (max-height: 760px) {
  .see-video-tab {
    top: calc(var(--ks-video-tab-top) - 48px);
  }

  .mobile-video-tab-ghost {
    top: calc(var(--ks-video-tab-top) - 48px);
  }
}

.mobile-video-shell.is-light-controls {
  --mobile-video-ui-color: #ffffff;
  --mobile-video-ui-divider: rgba(255, 255, 255, 0.82);
  --mobile-video-ui-progress: rgba(255, 255, 255, 0.55);
}

.mobile-video-player {
  width: calc(100dvh + 8px);
  height: calc(100vw + 8px);
  object-fit: cover;
  background: #000000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: center center;
}

.mobile-video-filmtext {
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
  width: 125px;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.mobile-video-filmtext__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 125px;
  height: auto;
  display: block;
  transform: translate3d(0, 100%, 0);
  will-change: transform;
  backface-visibility: hidden;
  opacity: 0.75;
}

.mobile-video-bekind {
  position: absolute;
  top: 0;
  right: 50px;
  bottom: 0;
  width: 18.75%;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.mobile-video-bekind__image {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  transform: translate3d(0, 100%, 0);
  will-change: transform;
  backface-visibility: hidden;
}

.mobile-video-topbar {
  position: absolute;
  top: calc(env(safe-area-inset-top, 0px) + 14px);
  right: 30px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mobile-video-topbar__divider {
  width: 1px;
  height: 22px;
  background: var(--mobile-video-ui-divider);
  flex: 0 0 auto;
}

.mobile-video-close {
  width: 27px;
  height: 27px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--mobile-video-ui-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.mobile-video-close-glyph {
  position: relative;
  width: 13px;
  height: 13px;
  display: inline-block;
  flex: 0 0 auto;
}

.mobile-video-close-glyph::before,
.mobile-video-close-glyph::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center center;
}

.mobile-video-recording-pill {
  position: absolute;
  top: calc(env(safe-area-inset-top, 0px) + 14px);
  left: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--mobile-video-ui-color);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 1;
}

.mobile-video-recording-pill__dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #f23434;
  box-shadow: 0 0 10px rgba(242, 52, 52, 0.7);
  animation: mobile-video-record-pill-pulse 1.2s steps(1, end) infinite;
}

.mobile-video-recording-pill__label {
  opacity: 1;
  position: relative;
}

.mobile-video-recording-pill__label::before {
  content: "[";
  margin-right: 0.08em;
}

.mobile-video-recording-pill__label::after {
  content: "]";
  margin-left: 0.08em;
}

.mobile-video-close-glyph::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-video-close-glyph::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-video-lyrics {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 75px;
  height: 150px;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.mobile-video-lyric-band {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 48px;
  overflow: hidden;
  opacity: 1 !important;
  filter: none !important;
}

.mobile-video-lyric-band--top {
  top: 35px;
}

.mobile-video-lyric-band--bottom {
  top: 83px;
}

.mobile-video-lyric-track {
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  flex-wrap: nowrap;
  max-width: none;
  transform: translate3d(-200%, 0, 0);
  will-change: transform;
  opacity: 1 !important;
  filter: none !important;
}

.mobile-video-letter {
  display: inline-block;
  min-width: 0.22em;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  background: none !important;
  border: 0 !important;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: none;
  transform-origin: center center;
  text-shadow: none;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  will-change: transform;
}

.mobile-video-prepro {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 18px);
  z-index: 3;
  color: #ffffff;
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.mobile-video-prepro[hidden] {
  display: none;
}

.mobile-video-prepro__record {
  display: inline-block;
  margin-bottom: 12px;
}

.mobile-video-prepro__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.1fr;
  gap: 18px;
  align-items: end;
}

.mobile-video-prepro__col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-video-prepro__line {
  display: flex;
  gap: 14px;
  white-space: nowrap;
}

.mobile-video-prepro__line--big {
  font-size: 20px;
  letter-spacing: 0.06em;
}

.mobile-video-prepro__line--blink {
  animation: mobile-video-prepro-blink 0.8s steps(1, end) infinite;
}

.mobile-video-letter--space {
  min-width: 0.55em;
}

.mobile-video-controls {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(env(safe-area-inset-top, 0px) + 74px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1500ms cubic-bezier(0.18, 0.92, 0.18, 1), transform 1500ms cubic-bezier(0.18, 0.92, 0.18, 1);
}

.mobile-video-controls.is-hidden {
  opacity: 0;
  transform: translateY(-28px);
  pointer-events: none;
}

.mobile-video-control-btn {
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: transparent;
  color: var(--mobile-video-ui-color);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none;
  padding: 0;
}

.mobile-video-control-btn--primary {
  width: 74px;
  height: 74px;
  background: transparent;
  border: 3px solid var(--mobile-video-ui-color);
  color: var(--mobile-video-ui-color);
  font-size: 34px;
}

.mobile-video-control-btn--ghost {
  opacity: 0.98;
}

.mobile-video-control-btn--label {
  width: auto;
  min-width: 54px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.mobile-video-control-btn--nav {
  width: 54px;
  height: 54px;
}

.mobile-video-toggle-label {
  position: relative;
  width: 26px;
  height: 30px;
  display: inline-block;
}

.mobile-video-toggle-label::before,
.mobile-video-toggle-label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-video-toggle-label::before {
  left: 7px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid var(--mobile-video-ui-color);
}

.mobile-video-control-btn--primary.is-paused .mobile-video-toggle-label::before,
.mobile-video-control-btn--primary.is-paused .mobile-video-toggle-label::after {
  left: auto;
  border: 0;
  width: 7px;
  height: 28px;
  border-radius: 999px;
  background: var(--mobile-video-ui-color);
}

.mobile-video-control-btn--primary.is-paused .mobile-video-toggle-label::before {
  left: 5px;
}

.mobile-video-control-btn--primary.is-paused .mobile-video-toggle-label::after {
  right: 5px;
}

.mobile-video-icon {
  position: relative;
  width: 26px;
  height: 26px;
  display: inline-block;
}

.mobile-video-icon::before,
.mobile-video-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-video-icon--prev::before,
.mobile-video-icon--next::before {
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

.mobile-video-icon--prev::before {
  left: 4px;
  border-right: 16px solid var(--mobile-video-ui-color);
}

.mobile-video-icon--prev::after {
  left: 1px;
  width: 3px;
  height: 22px;
  background: var(--mobile-video-ui-color);
}

.mobile-video-icon--next::before {
  right: 4px;
  border-left: 16px solid var(--mobile-video-ui-color);
}

.mobile-video-icon--next::after {
  right: 1px;
  width: 3px;
  height: 22px;
  background: var(--mobile-video-ui-color);
}

.mobile-video-controls__row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.mobile-video-progress {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.mobile-video-progress__time {
  color: var(--mobile-video-ui-color);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.mobile-video-progress__bar {
  width: 100%;
  appearance: none;
  height: 4px;
  background: var(--mobile-video-ui-progress);
  border-radius: 999px;
  outline: none;
}

.mobile-video-progress__bar::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--mobile-video-ui-color);
}

.mobile-video-progress__bar::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 999px;
  background: var(--mobile-video-ui-color);
}

.mobile-video-reel {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 48px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: Helvetica, Arial, sans-serif;
  color: #ffffff;
  pointer-events: none;
}

.mobile-video-branding {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
}

.mobile-video-branding[hidden] {
  display: none;
}

.mobile-video-branding__bottomline {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  padding-right: 0;
  transform: translate3d(0, 0, 0);
  transition: none;
  will-change: auto;
}

.mobile-video-branding__ks-logo {
  width: auto;
  height: 20px;
  object-fit: contain;
  flex: 0 0 auto;
}

.mobile-video-branding__divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.72);
  flex: 0 0 auto;
}

.mobile-video-branding__time,
.mobile-video-branding__fps {
  color: #ffffff;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  flex: 0 0 auto;
}

.mobile-video-branding__wordmark {
  position: static;
  width: 150px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
  display: block;
  margin-left: auto;
  margin-right: 0;
}

.mobile-video-panel-toggle {
  position: static;
  z-index: 5;
  width: auto;
  height: 27px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--mobile-video-ui-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-video-panel-toggle__label {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mobile-video-ui-color);
}

.mobile-video-panel-toggle:hover,
.mobile-video-panel-toggle:focus-visible,
.mobile-video-close:hover,
.mobile-video-close:focus-visible {
  cursor: pointer;
}

.mobile-video-panel-toggle:hover .mobile-video-panel-toggle__label,
.mobile-video-panel-toggle:focus-visible .mobile-video-panel-toggle__label {
  color: var(--mobile-video-ui-color);
  font-weight: 900;
}

.mobile-video-close:hover .mobile-video-close-glyph::before,
.mobile-video-close:hover .mobile-video-close-glyph::after,
.mobile-video-close:focus-visible .mobile-video-close-glyph::before,
.mobile-video-close:focus-visible .mobile-video-close-glyph::after {
  background: var(--mobile-video-ui-color);
}

.mobile-video-reel[hidden] {
  display: none;
}

.mobile-video-reel__box {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0;
  padding: 10px 12px;
  background: transparent;
}

.mobile-video-reel__topline,
.mobile-video-reel__bottomline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 1;
  flex-wrap: wrap;
}

.mobile-video-reel__divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.55);
  flex: 0 0 auto;
}

.mobile-video-reel__hline {
  width: calc(100% + 24px);
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
  margin: 8px -12px;
}

.mobile-video-reel__clip,
.mobile-video-reel__storyline,
.mobile-video-reel__fps,
.mobile-video-reel__edit,
.mobile-video-reel__frames,
.mobile-video-reel__time {
  white-space: nowrap;
}

.mobile-video-reel__storyline {
  width: 100%;
}

.mobile-video-reel__time,
.mobile-video-reel__fps,
.mobile-video-reel__frames,
.mobile-video-reel__edit {
  font-weight: 700;
  letter-spacing: 0.12em;
}

@keyframes mobile-video-record-pulse {
  0%, 49% {
    opacity: 1;
  }

  50%, 100% {
    opacity: 0.35;
  }
}

@keyframes see-video-tab-slide-up {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(calc(-84% - 210px));
  }

  100% {
    transform: translateY(calc(-100% - 340px));
  }
}

@keyframes see-video-tab-return {
  0% {
    transform: translateX(calc(100% + 12px));
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes see-video-tab-delayed-enter {
  from {
    opacity: 0;
    transform: translateY(-36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mobile-video-record-pill-pulse {
  0%, 49% {
    opacity: 1;
    transform: scale(1);
  }

  50%, 100% {
    opacity: 0.38;
    transform: scale(0.94);
  }
}

@keyframes mobile-video-prepro-blink {
  0%, 49% {
    opacity: 1;
  }

  50%, 100% {
    opacity: 0.4;
  }
}


.v-divider {
  width: var(--divider-width);
  height: var(--divider-height);
  margin-inline: var(--space-lg);
  background: var(--color-divider);
  flex: 0 0 auto;
}

.top-inline-links {
  display: none;
}

.top-inline-links a {
  color: #111111;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
}

.map-go-back-inline,
.map-go-back-divider {
  display: none !important;
}

.top-inline-links a:hover {
  color: #111111;
}

.top-inline-links .link-divider {
  display: none;
}

.time-search-active .top-inline-links .link-divider,
.time-search-active .map-go-back-divider {
  background: rgba(255, 255, 255, 0.58);
}

.stopwatch-search-active .top-inline-links .link-divider,
.stopwatch-search-active .map-go-back-divider {
  background: rgba(255, 107, 107, 0.58);
}

.icon-btn {
  border: 0;
  background: transparent;
  padding: var(--space-xs);
  min-width: 36px;
  min-height: 36px;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.hamburger {
  width: var(--hamburger-width);
  display: grid;
  gap: var(--hamburger-line-gap);
}

.hamburger span {
  height: var(--hamburger-line-height);
  background: var(--ks-color-primary-500);
  border-radius: 99px;
}

.top-menu-hamburger {
  position: relative;
  width: 27px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.top-menu-hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ks-color-primary-500);
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease;
  transform-origin: center center;
  will-change: transform;
}

.time-search-active .hamburger span,
.time-search-active .top-menu-hamburger span {
  background: #ffffff;
}

.stopwatch-search-active .hamburger span,
.stopwatch-search-active .top-menu-hamburger span {
  background: #ff6b6b;
}

.screensaver-127-active .hamburger span,
.screensaver-127-active .top-menu-hamburger span {
  background: #ffb703;
}

.top-menu-hamburger span:first-child {
  top: 50%;
  transform: translateY(-4px) rotate(0deg);
}

.top-menu-hamburger span:last-child {
  top: 50%;
  transform: translateY(4px) rotate(0deg);
}

.top-menu-btn[aria-expanded="true"] .top-menu-hamburger span:first-child {
  animation: ks-nav-hamburger-top-close 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.bottom-menu-btn[aria-expanded="true"] .top-menu-hamburger span:first-child {
  animation: ks-nav-hamburger-top-close 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.top-menu-btn[aria-expanded="true"] .top-menu-hamburger span:last-child {
  animation: ks-nav-hamburger-bottom-close 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.bottom-menu-btn[aria-expanded="true"] .top-menu-hamburger span:last-child {
  animation: ks-nav-hamburger-bottom-close 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.top-menu-btn[aria-expanded="false"] .top-menu-hamburger span:first-child,
.bottom-menu-btn[aria-expanded="false"] .top-menu-hamburger span:first-child {
  animation: none;
  transform: translateY(-4px) rotate(0deg);
}

.top-menu-btn[aria-expanded="false"] .top-menu-hamburger span:last-child,
.bottom-menu-btn[aria-expanded="false"] .top-menu-hamburger span:last-child {
  animation: none;
  transform: translateY(4px) rotate(0deg);
}

.top-menu-btn.is-closing .top-menu-hamburger span:first-child,
.bottom-menu-btn.is-closing .top-menu-hamburger span:first-child {
  animation: ks-nav-hamburger-top-open 750ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.top-menu-btn.is-closing .top-menu-hamburger span:last-child,
.bottom-menu-btn.is-closing .top-menu-hamburger span:last-child {
  animation: ks-nav-hamburger-bottom-open 750ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes ks-nav-hamburger-top-close {
  0% {
    transform: translateY(-4px) rotate(0deg);
  }

  48% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(0) rotate(45deg);
  }
}

@keyframes ks-nav-hamburger-bottom-close {
  0% {
    transform: translateY(4px) rotate(0deg);
  }

  48% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(0) rotate(-45deg);
  }
}

@keyframes ks-nav-hamburger-top-open {
  0% {
    transform: translateY(0) rotate(45deg);
  }

  52% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-4px) rotate(0deg);
  }
}

@keyframes ks-nav-hamburger-bottom-open {
  0% {
    transform: translateY(0) rotate(-45deg);
  }

  52% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(4px) rotate(0deg);
  }
}

.top-sheet-overlay {
  position: fixed;
  top: var(--ks-nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 85;
}

.time-search-active .top-sheet-overlay {
  background: transparent;
}

.top-sheet {
  --top-sheet-base-y: -100%;
  --top-sheet-drag-y: 0px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 75vh;
  background: #ffffff;
  z-index: 105;
  transform: translateY(calc(var(--top-sheet-base-y) + var(--top-sheet-drag-y)));
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom-left-radius: var(--ks-shell-radius-card-lg);
  border-bottom-right-radius: var(--ks-shell-radius-card-lg);
  box-shadow: none;
  overflow: visible;
  pointer-events: none;
  visibility: hidden;
  touch-action: none;
  display: flex;
  flex-direction: column;
}

.top-sheet-links {
  overflow: hidden;
  border-bottom-left-radius: var(--ks-shell-radius-card-lg);
  border-bottom-right-radius: var(--ks-shell-radius-card-lg);
}

.top-sheet.open {
  --top-sheet-base-y: 0px;
  pointer-events: auto;
  visibility: visible;
  box-shadow: none;
}

.top-sheet.closing {
  transition: transform 0.75s cubic-bezier(0.12, 0.72, 0.2, 1);
  visibility: visible;
  pointer-events: none;
}

.top-sheet-bar {
  position: relative;
  height: 75px;
  border-bottom: 0;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-sheet-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.top-sheet-brand .kindsteps-logo {
  width: 165px;
  height: 33px;
  max-width: 165px;
}

.top-sheet-close {
  display: none;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
}

.top-sheet-close__glyph {
  position: relative;
  width: 12px;
  height: 12px;
  display: inline-block;
}

.top-sheet-close__glyph::before,
.top-sheet-close__glyph::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  transform-origin: center center;
}

.top-sheet-close__glyph::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.top-sheet-close__glyph::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.screensaver-127-active .top-sheet-close__glyph::before,
.screensaver-127-active .top-sheet-close__glyph::after {
  background: #ffb703;
}

.top-sheet-links a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 var(--space-lg);
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none;
  color: var(--ks-color-primary-500);
  position: relative;
  font-weight: 600;
  --ripple-dot-color: var(--ks-color-primary-500);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.top-sheet-links a + a {
  border-top: 0 !important;
}

.top-sheet-links a:hover {
  color: var(--ks-color-primary-600);
  background: var(--ks-color-primary-tint);
}

.time-search-active .top-sheet {
  background: var(--ks-color-accent-yellow);
  box-shadow: none;
}

.time-search-active .top-sheet-links a {
  color: #ffffff;
  background: transparent;
  transition: none;
}

.time-search-active .top-sheet-links a:hover,
.time-search-active .top-sheet-links a:focus-visible {
  color: #ffffff;
  background: transparent;
}

.menu-label {
  display: inline-block;
}

.top-sheet-links .menu-dots,
.sheet-links .menu-dots {
  display: none !important;
}

.top-sheet-bottom-handle {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: max-content;
  color: inherit;
}

.top-sheet-bottom-grabber {
  width: var(--ks-sheet-handle-width);
  height: var(--ks-sheet-handle-height);
  background: var(--ks-sheet-handle-fill);
  border-radius: var(--ks-sheet-handle-radius);
  box-shadow: var(--ks-shadow-sheet-handle);
  display: block;
}

.time-search-active .top-sheet-bottom-grabber {
  background: var(--ks-sheet-handle-fill);
  height: var(--ks-sheet-handle-height);
}

.top-sheet-prompt {
  margin: 0;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 400;
  color: #1e293b;
  text-align: center;
  order: -1;
}

.time-search-active .top-sheet-prompt {
  color: #ffffff;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.menu-dots {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 16px;
  width: 152px;
  height: 50px;
  overflow: visible;
}

.menu-dots i {
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ripple-dot-color);
  opacity: 0;
}

/* Stone */
.menu-dots i:first-child {
  transform: translate(0, -50%);
}

/* Arc trails: each arc is smaller and fades while next arc begins */
.menu-dots i:nth-child(n + 2) {
  background: transparent;
  border-top: 2px solid var(--ripple-dot-color);
  border-left: 2px solid var(--ripple-dot-color);
  border-right: 2px solid var(--ripple-dot-color);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  height: auto;
  top: 50%;
}

.menu-dots i:nth-child(2) { width: 44px; height: 14px; transform: translate(6px, -50%); }
.menu-dots i:nth-child(3) { width: 34px; height: 11px; transform: translate(48px, -50%); }
.menu-dots i:nth-child(4) { width: 26px; height: 8px; transform: translate(82px, -50%); }
.menu-dots i:nth-child(5) { width: 20px; height: 6px; transform: translate(108px, -50%); }

.is-rippling .menu-dots i:first-child {
  animation: stone-skip 2.6s linear both;
}

.is-rippling .menu-dots i:nth-child(2) {
  animation: arc-fade-1 2.6s linear both;
}

.is-rippling .menu-dots i:nth-child(3) {
  animation: arc-fade-2 2.6s linear both;
}

.is-rippling .menu-dots i:nth-child(4) {
  animation: arc-fade-3 2.6s linear both;
}

.is-rippling .menu-dots i:nth-child(5) {
  animation: arc-fade-4 2.6s linear both;
}

@keyframes stone-skip {
  0% { opacity: 0; transform: translate(0px, -50%); }
  5% { opacity: 1; transform: translate(0px, -50%); }
  12% { transform: translate(18px, calc(-50% - 10px)); }
  20% { transform: translate(42px, -50%); }
  28% { transform: translate(56px, calc(-50% - 8px)); }
  35% { transform: translate(76px, -50%); }
  43% { transform: translate(88px, calc(-50% - 6px)); }
  50% { transform: translate(104px, -50%); }
  57% { transform: translate(114px, calc(-50% - 4px)); }
  64% { transform: translate(126px, -50%); }
  100% { opacity: 0; transform: translate(140px, -50%); }
}

@keyframes arc-fade-1 {
  0%, 8% { opacity: 0; }
  10%, 22% { opacity: 0.95; }
  32% { opacity: 0.45; }
  42%, 100% { opacity: 0; }
}

@keyframes arc-fade-2 {
  0%, 24% { opacity: 0; }
  27%, 37% { opacity: 0.8; }
  47% { opacity: 0.35; }
  57%, 100% { opacity: 0; }
}

@keyframes arc-fade-3 {
  0%, 39% { opacity: 0; }
  42%, 50% { opacity: 0.65; }
  58% { opacity: 0.3; }
  68%, 100% { opacity: 0; }
}

@keyframes arc-fade-4 {
  0%, 53% { opacity: 0; }
  56%, 63% { opacity: 0.5; }
  70% { opacity: 0.2; }
  80%, 100% { opacity: 0; }
}

.top-menu-btn {
  transition: background-color 180ms ease;
  margin-left: 16px;
}

.top-menu-btn:hover {
  background: transparent;
}

.top-menu-btn:hover .hamburger span {
  background: var(--ks-color-primary-600);
}

.time-search-active .top-menu-btn:hover .hamburger span {
  background: #ffffff;
}

.stopwatch-search-active .top-menu-btn:hover .hamburger span {
  background: #ff6b6b;
}

.screensaver-127-active .top-menu-btn:hover .hamburger span {
  background: #ffb703;
}

@media (max-width: 767px) {
  .signup-flow__backdrop {
    display: none;
  }

  .top-nav-inner {
    position: relative;
    width: var(--ks-home-shell-fluid);
    padding: 0;
    box-sizing: border-box;
  }

  .logo-link {
    align-self: center;
    height: 100%;
    margin-left: 0;
    padding-left: 0;
    gap: 0;
    overflow: visible;
    flex: 0 1 clamp(78px, 21vw, 106px);
    width: clamp(78px, 21vw, 106px);
    min-width: 78px;
  }

  .kindsteps-logo,
  .bird-corner,
  .ks-blue-text-logo,
  .ks-short-logo {
    width: 175px;
    height: 35px;
    display: none;
  }

  .top-sheet-brand .kindsteps-logo {
    display: block !important;
    width: 165px;
    height: 33px;
    max-width: 165px;
  }

  .logo-link .ks-short-logo {
    display: block !important;
    align-self: center;
    width: 43px;
    height: 25px;
    max-height: 25px;
    max-width: 43px;
  }

  .top-nav-actions {
    gap: 32px;
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: 0;
    position: relative;
    padding-right: calc(32px + 27px + 32px);
  }

  .top-nav-actions .btn + .btn {
    margin-left: 0;
  }

  .top-nav-actions .top-nav-signin + .btn {
    margin-left: 0;
  }

  .top-nav-actions > .v-divider {
    display: none;
  }

  .btn {
    padding: 0 12px;
  }

  .top-nav-signin {
    padding: 0;
    font-size: 14px;
    font-weight: 400;
  }

  .top-nav-actions > .join-trigger {
    min-height: 25px;
    padding: 0 12px;
    font-size: 14px;
  }

  .top-menu-btn {
    padding: 0;
    width: 27px;
    min-width: 27px;
    height: 16px;
    min-height: 16px;
    justify-items: start;
    position: absolute;
    right: 36px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
  }

  .top-sheet-close {
    right: 30px;
  }
}

html.theme-dark .top-nav {
  background: var(--ks-theme-nav-fill);
  border-bottom-color: rgba(230, 238, 248, 0.08);
}

html.theme-dark .logo-link,
html.theme-dark .top-nav a,
html.theme-dark .top-nav button,
html.theme-dark .top-inline-links a,
html.theme-dark .top-nav-signin {
  color: var(--ks-theme-nav-text);
}

html.theme-dark .logo-link .ks-short-logo,
html.theme-dark .logo-link .bird-corner,
html.theme-dark .logo-link .kindsteps-logo,
html.theme-dark .logo-link .ks-blue-text-logo {
  color: var(--ks-color-primary-500);
}

html.theme-dark .top-inline-links a:hover,
html.theme-dark .top-inline-links a:focus-visible,
html.theme-dark .top-nav-signin:hover,
html.theme-dark .top-nav-signin:focus-visible {
  color: #ffffff;
}

html.theme-dark .see-video-nav-link__icon,
html.theme-dark .top-sheet-see-video__icon {
  border-color: #ffffff;
}

html.theme-dark .see-video-nav-link__arrow,
html.theme-dark .top-sheet-see-video__arrow {
  border-left-color: #ffffff;
}

html.theme-dark .top-menu-hamburger span,
html.theme-dark .hamburger span {
  background: #ffffff;
}

html.theme-dark .top-menu-btn:hover .hamburger span,
html.theme-dark .top-menu-btn:hover .top-menu-hamburger span {
  background: rgba(255, 255, 255, 0.92);
}

html.theme-dark .btn-outline {
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  border-color: rgba(230, 238, 248, 0.18);
}

html.theme-dark .btn-primary {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--ks-theme-nav-fill);
}

html.theme-dark .btn-primary:hover,
html.theme-dark .btn-primary:focus-visible {
  background: rgba(255, 255, 255, 0.94);
  border-color: #ffffff;
  color: var(--ks-theme-nav-fill);
}

html.theme-dark .top-nav .join-trigger,
html.theme-dark .top-nav .join-trigger:hover,
html.theme-dark .top-nav .join-trigger:focus-visible {
  background: var(--ks-color-primary-500);
  border-color: var(--ks-color-primary-500);
  color: var(--ks-theme-nav-fill);
}

html.theme-dark .top-sheet {
  background: #101827;
}

html.theme-dark .top-sheet-links {
  background: #101827;
}

html.theme-dark .top-sheet-close__glyph::before,
html.theme-dark .top-sheet-close__glyph::after,
html.theme-dark .top-sheet-prompt,
html.theme-dark .top-sheet-links a,
html.theme-dark .menu-label {
  color: #eef4fb;
  background-color: transparent;
}

html.theme-dark .top-sheet-links a {
  --ripple-dot-color: rgba(238, 244, 251, 0.92);
}

html.theme-dark .top-sheet-links a:hover,
html.theme-dark .top-sheet-links a:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

html.theme-dark .menu-dots i {
  background: rgba(238, 244, 251, 0.88);
  border-top-color: rgba(238, 244, 251, 0.88);
  border-left-color: rgba(238, 244, 251, 0.88);
  border-right-color: rgba(238, 244, 251, 0.88);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .top-nav-inner {
    position: relative;
  }

  .top-nav-actions {
    gap: 32px;
    position: relative;
    padding-right: calc(36px + 27px + 32px);
  }

  .top-menu-btn {
    padding: 0;
    width: 27px;
    min-width: 27px;
    height: 16px;
    min-height: 16px;
    justify-items: start;
    position: absolute;
    right: 36px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
  }
}

@media (max-width: 430px) {
  .top-nav-inner {
    column-gap: 8px;
  }

  .logo-link {
    flex-basis: clamp(74px, 20vw, 98px);
    width: clamp(74px, 20vw, 98px);
    min-width: 74px;
  }

  .logo-link .ks-short-logo {
    width: 43px;
    height: 25px;
    max-height: 25px;
  }

  .top-nav-actions .btn + .btn,
  .top-nav-actions .top-nav-signin + .btn {
    margin-left: 0;
  }

  .top-nav-actions > .join-trigger {
    padding: 0 10px;
  }
}

@media (max-width: 390px) {
  .top-nav-inner {
    column-gap: 6px;
  }

  .logo-link {
    flex-basis: clamp(70px, 19vw, 92px);
    width: clamp(70px, 19vw, 92px);
    min-width: 70px;
  }

  .logo-link .ks-short-logo {
    width: 43px;
    height: 25px;
    max-height: 25px;
  }

  .top-nav-signin {
    font-size: 14px;
    font-weight: 400;
  }

  .top-nav-actions > .join-trigger {
    min-height: 25px;
    padding: 0 9px;
    font-size: 14px;
  }
}


@media (min-width: 575px) and (max-width: 1023px) {
  .desktop-auth-page .top-nav,
  .desktop-auth-page .see-video-tab,
  .desktop-auth-page .follow-kindness,
  .desktop-auth-page .track-kindness-page,
  .desktop-auth-page .page-shell,
  .desktop-auth-page .bottom-nav,
  .desktop-auth-page .top-sheet,
  .desktop-auth-page .top-sheet-overlay,
  .desktop-auth-page .bottom-sheet,
  .desktop-auth-page .sheet-overlay,
  .desktop-auth-page .send-sheet,
  .desktop-auth-page .send-sheet-overlay,
  .desktop-auth-page .mobile-video-overlay {
    display: none !important;
  }

  .signup-flow__backdrop,
  .login-flow__backdrop,
  .forgot-flow__backdrop {
    display: none;
  }

  .signup-flow__panel {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 24px 180px;
  }

  .signup-flow__phone {
    width: 425px;
    max-width: 425px;
    min-height: 570px;
    border-radius: var(--ks-shell-radius-card-lg);
    border: 1px solid var(--color-card-border);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.11);
  }

  .login-flow__panel,
  .forgot-flow__panel {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 24px 180px;
  }

  .login-flow__phone,
  .forgot-flow__phone {
    width: 425px;
    max-width: 425px;
    min-height: 570px;
    border-radius: var(--ks-shell-radius-card-lg);
    border: 1px solid var(--color-card-border);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.11);
  }

  .auth-flow-footer {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    box-sizing: border-box;
    align-items: flex-start;
    justify-content: center;
    gap: 18px 20px;
    margin: 0;
    padding: 20px 24px 26px;
    background: #ffffff !important;
    border-top: 1px solid rgba(17, 24, 39, 0.1);
  }

  .auth-flow-footer__logo {
    width: 75px;
    height: 15px;
    color: #111827;
    cursor: pointer;
  }

  .auth-flow-footer__columns {
    width: min(100%, 720px);
    gap: 20px;
  }

  .auth-flow-footer__column {
    width: min(100%, 240px);
  }

  .logo-link {
    width: auto;
    flex: 0 0 auto;
    overflow: hidden;
  }

  .logo-link .ks-short-logo {
    display: block !important;
    align-self: center;
    width: 43px;
    height: 25px;
    max-height: 25px;
  }

  .logo-link .kindsteps-logo,
  .logo-link .bird-corner {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .desktop-auth-page .top-nav,
  .desktop-auth-page .see-video-tab,
  .desktop-auth-page .follow-kindness,
  .desktop-auth-page .track-kindness-page,
  .desktop-auth-page .page-shell,
  .desktop-auth-page .bottom-nav,
  .desktop-auth-page .top-sheet,
  .desktop-auth-page .top-sheet-overlay,
  .desktop-auth-page .bottom-sheet,
  .desktop-auth-page .sheet-overlay,
  .desktop-auth-page .send-sheet,
  .desktop-auth-page .send-sheet-overlay,
  .desktop-auth-page .mobile-video-overlay {
    display: none !important;
  }

  .signup-flow__backdrop,
  .login-flow__backdrop,
  .forgot-flow__backdrop {
    display: none;
  }

  .signup-flow__panel {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px 180px;
  }

  .login-flow__panel,
  .forgot-flow__panel {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px 180px;
  }

  .signup-flow__phone,
  .login-flow__phone,
  .forgot-flow__phone {
    width: 425px;
    max-width: 425px;
    min-height: 570px;
    border-radius: calc(var(--radius-md) * 0.6);
    border: 1px solid var(--color-card-border);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.11);
    padding: 22px 20px 24px;
  }

  .signup-step,
  .login-step__content,
  .forgot-step__content {
    flex: 1 1 auto;
  }

  .signup-step__content,
  .login-step__content,
  .forgot-step__content {
    min-height: 100%;
  }

  .login-step__content,
  .forgot-step__content {
    justify-content: flex-start;
  }

  .login-step__content {
    min-height: auto;
  }

  .signup-step__content {
    justify-content: flex-start;
    gap: 0;
  }

  .login-form,
  .forgot-form,
  .forgot-options-form {
    flex: 1 1 auto;
  }

  .login-form {
    flex: 0 0 auto;
  }

  .login-helper {
    margin-top: 20px;
    padding-top: 0;
  }

  #forgot-step-request .forgot-back-btn,
  #forgot-step-code .forgot-link-btn--bottom,
  #forgot-step-options .forgot-link-btn--bottom {
    margin-top: auto;
    padding-top: 30px;
  }

  .signup-flow__header,
  .login-flow__header,
  .forgot-flow__header {
    margin-bottom: 24px;
  }

  .auth-flow-footer {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    gap: 18px 20px;
    margin: 0;
    padding: 20px 24px 26px;
    background: #ffffff !important;
    border-top: 1px solid rgba(17, 24, 39, 0.1);
  }

  .auth-flow-footer__logo {
    width: 75px;
    height: 15px;
    color: #111827;
  }

  .auth-flow-footer__columns {
    width: min(100%, 1180px);
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .auth-flow-footer__column {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: auto;
  }

  .logo-link {
    width: auto;
    flex: 0 0 auto;
    overflow: hidden;
  }

  .logo-link .ks-short-logo {
    display: block !important;
    align-self: center;
    width: 43px;
    height: 25px;
    max-height: 25px;
  }

  .logo-link .kindsteps-logo,
  .logo-link .bird-corner {
    display: none !important;
  }

  .top-inline-links {
    display: inline-flex;
    align-items: center;
    margin-left: 0;
    gap: 32px;
  }

  .top-inline-links a {
    font-size: 14px;
    font-weight: 400;
  }

  .top-inline-links .link-divider {
    display: none;
  }

  .top-nav-actions > .v-divider {
    display: none;
  }

  .top-nav-actions {
    gap: 32px;
  }

  .top-menu-btn {
    display: none;
  }
}

@media (min-width: 1024px) and (max-width: 1320px) {
  .top-inline-links {
    display: none;
  }

  .top-nav-actions {
    gap: 32px;
  }

  .top-menu-btn {
    display: inline-grid;
    padding: 0;
    width: 27px;
    min-width: 27px;
    height: 16px;
    min-height: 16px;
    justify-items: start;
    margin-left: 0;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
  }
}

@media (min-width: 1400px) {
  .auth-flow-footer {
    align-items: center;
    justify-content: center;
    padding: 18px 24px 18px;
  }

  .auth-flow-footer__columns {
    width: min(100%, 1540px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    flex-wrap: nowrap;
  }

  .auth-flow-footer__column,
  .auth-flow-footer__column--left,
  .auth-flow-footer__column--right {
    display: contents;
    width: auto;
  }

  .auth-flow-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 20px;
    white-space: nowrap;
  }

  .auth-flow-footer__link {
    margin-right: 20px;
  }

  .auth-flow-footer__column > .auth-flow-footer__link:last-child,
  .auth-flow-footer__columns > .auth-flow-footer__link:last-child {
    margin-right: 0;
  }
}

@media (min-width: 1024px) and (max-width: 1399px) {
  .signup-flow__panel,
  .login-flow__panel,
  .forgot-flow__panel {
    justify-content: flex-start;
    padding: 40px 24px 180px;
  }

  .auth-flow-footer {
    align-items: flex-start;
    justify-content: center;
    gap: 18px 20px;
  }

  .auth-flow-footer__columns {
    width: min(100%, 720px);
    gap: 20px;
  }

  .auth-flow-footer__column {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: min(100%, 240px);
  }
}

@media (max-width: 359px) {
  .btn {
    font-size: 0.8rem;
  }

  .kindsteps-logo,
  .bird-corner,
  .ks-blue-text-logo,
  .ks-short-logo {
    width: 175px;
    height: 35px;
  }

  .v-divider {
    margin-inline: var(--space-sm);
  }
}
