/* [project]/components/layout/header.css [app-client] (css) */
.site-header-logo-link {
  flex-shrink: 0;
  align-items: center;
  max-width: 160px;
  height: 44px;
  display: inline-flex;
  overflow: hidden;
}

.site-header-logo {
  object-fit: contain;
  object-position: left center;
  width: auto;
  max-width: 100%;
  height: 100%;
  display: block;
}

@media (min-width: 640px) {
  .site-header-logo-link {
    max-width: 180px;
    height: 48px;
  }
}

@media (min-width: 1024px) {
  .site-header-logo-link {
    max-width: 200px;
  }
}

/* [project]/components/sections/app-icon.css [app-client] (css) */
@keyframes app-icon-shine-sweep {
  0% {
    opacity: 0;
    transform: translateX(-140%)rotate(24deg);
  }

  10% {
    opacity: .95;
  }

  85% {
    opacity: .35;
  }

  100% {
    opacity: 0;
    transform: translateX(270%)rotate(24deg);
  }
}

.app-icon-shine-bar {
  pointer-events: none;
  background: linear-gradient(90deg, #0000 0%, #ffffff1f 28%, #ffffffeb 50%, #ffffff1f 72%, #0000 100%);
  width: 44%;
  height: 124%;
  animation: .68s cubic-bezier(.33, .12, .18, 1) forwards app-icon-shine-sweep;
  position: absolute;
  top: -12%;
  left: 0;
}

/* [project]/components/ui/animated-scene-visual.css [app-client] (css) */
.scene-aspect-app-promo {
  aspect-ratio: 795 / 575;
}

@media (min-width: 768px) {
  .scene-aspect-app-promo {
    aspect-ratio: 880 / 575;
  }
}

/* [project]/components/ui/bottom-sheet.css [app-client] (css) */
@keyframes bottom-sheet-up {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes bottom-sheet-down {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(100%);
  }
}

@keyframes bottom-sheet-in {
  from {
    opacity: 0;
    transform: translateY(18px)scale(.96);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

@keyframes bottom-sheet-out {
  from {
    opacity: 1;
    transform: translateY(0)scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(12px)scale(.98);
  }
}

@keyframes bottom-sheet-backdrop-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes bottom-sheet-backdrop-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.bottom-sheet-backdrop {
  overscroll-behavior: contain;
  height: 100vh;
  animation: .28s ease-out bottom-sheet-backdrop-in;
}

.bottom-sheet-backdrop.closing {
  pointer-events: none;
  animation: .24s ease-in forwards bottom-sheet-backdrop-out;
}

.bottom-sheet-panel {
  max-height: 92vh;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  animation: .28s ease-out bottom-sheet-up;
  position: relative;
  box-shadow: 0 40px 90px -24px #000c;
}

@media (min-width: 640px) {
  .bottom-sheet-panel--dark:after {
    content: "";
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(to top, #0000008c 0%, #0000 100%);
    height: 4rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

.bottom-sheet-progress {
  background: #00000012;
  flex-shrink: 0;
  height: 2px;
  position: relative;
  overflow: hidden;
}

.bottom-sheet-progress-bar {
  transform-origin: 0;
  background: linear-gradient(90deg,
    var(--witdeal-accent, #25f482) 0%,
    color-mix(in srgb, var(--witdeal-accent, #25f482) 55%, #fff) 100%);
  will-change: transform;
  width: 100%;
  height: 100%;
  display: block;
  transform: scaleX(0);
}

.bottom-sheet-panel--dark .bottom-sheet-progress {
  background: #ffffff14;
}

.bottom-sheet-top-btn {
  animation: .2s ease-out bottom-sheet-top-btn-in;
}

@keyframes bottom-sheet-top-btn-in {
  from {
    opacity: 0;
    transform: translateY(-3px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bottom-sheet-panel.closing {
  animation: .24s ease-in forwards bottom-sheet-down;
}

@supports (height: 100dvh) {
  .bottom-sheet-backdrop {
    height: 100dvh;
  }

  .bottom-sheet-panel {
    max-height: 92dvh;
  }
}

@media (min-width: 640px) {
  .bottom-sheet-panel {
    max-height: 92vh;
    padding-bottom: 0;
    animation: .32s cubic-bezier(.22, 1, .36, 1) bottom-sheet-in;
  }

  .bottom-sheet-panel.closing {
    animation: .2s ease-in forwards bottom-sheet-out;
  }

  @supports (height: 100dvh) {
    .bottom-sheet-panel {
      max-height: 92dvh;
    }
  }
}

.bottom-sheet-body {
  scrollbar-width: thin;
  scrollbar-color: #0000004d transparent;
}

.bottom-sheet-body::-webkit-scrollbar {
  width: 10px;
}

.bottom-sheet-body::-webkit-scrollbar-track {
  background: none;
}

.bottom-sheet-body::-webkit-scrollbar-thumb {
  background: #00000047 padding-box padding-box;
  border: 3px solid #0000;
  border-radius: 9999px;
}

.bottom-sheet-body::-webkit-scrollbar-thumb:hover {
  background: #00000073 padding-box padding-box;
}

.bottom-sheet-panel--dark .bottom-sheet-body {
  scrollbar-color: #ffffff4d transparent;
}

.bottom-sheet-panel--dark .bottom-sheet-body::-webkit-scrollbar-thumb {
  background: #ffffff47 padding-box padding-box;
}

.bottom-sheet-panel--dark .bottom-sheet-body::-webkit-scrollbar-thumb:hover {
  background: #ffffff80 padding-box padding-box;
}

@media (prefers-reduced-motion: reduce) {
  .bottom-sheet-panel, .bottom-sheet-panel.closing, .bottom-sheet-backdrop, .bottom-sheet-backdrop.closing {
    animation: none;
  }

  .bottom-sheet-backdrop.closing {
    opacity: 0;
  }
}

/* [project]/components/sections/seller-consult-fab.css [app-client] (css) */
.seller-fab {
  --fab-bg: var(--witdeal-primary, #361f97);
  --fab-ink: #fff;
  --fab-ring: #fff;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 60;
  cursor: pointer;
  background: radial-gradient(120% 120% at 30% 22%,
    color-mix(in srgb, var(--fab-bg) 78%, #fff) 0%,
    var(--fab-bg) 58%);
  width: 68px;
  height: 68px;
  color: var(--fab-ink);
  box-shadow: inset 0 1px 0 #ffffff4d,
    inset 0 -2px 6px -2px #00000038,
    0 0 0 3px var(--fab-ring),
    0 0 0 9px #ffffff29,
    0 12px 30px -8px #00000080;
  opacity: 0;
  visibility: hidden;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: opacity .3s cubic-bezier(.4, 0, .2, 1), transform .3s cubic-bezier(.4, 0, .2, 1), visibility .3s;
  display: flex;
  position: fixed;
  transform: translateY(14px)scale(.9);
}

.seller-fab:after {
  content: "";
  z-index: -1;
  pointer-events: none;
  border: 2px solid #ffffffd9;
  border-radius: 50%;
  animation: 2.8s ease-out infinite seller-fab-ring;
  position: absolute;
  inset: 0;
}

.seller-fab:not(.is-visible):after {
  animation: none;
}

@keyframes seller-fab-ring {
  0% {
    opacity: .5;
    transform: scale(1);
  }

  70%, 100% {
    opacity: 0;
    transform: scale(1.42);
  }
}

.seller-fab.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)scale(1);
}

.seller-fab:hover {
  box-shadow: inset 0 1px 0 #ffffff4d,
    inset 0 -2px 6px -2px #00000038,
    0 0 0 3px var(--fab-ring),
    0 0 0 14px #ffffff38,
    0 16px 34px -8px #0000008c;
  transform: translateY(-2px)scale(1.05);
}

.seller-fab:active {
  transform: translateY(0)scale(.95);
}

.seller-fab:focus-visible {
  outline-offset: 6px;
  outline: 3px solid #fff;
}

.seller-fab-label {
  font-family: var(--font-jua), var(--font-sans);
  letter-spacing: -.03em;
  text-align: center;
  -webkit-text-stroke: .9px currentColor;
  padding-right: .03em;
  font-size: 26px;
  line-height: .9;
  transform: translateY(.073em);
}

@media (min-width: 768px) {
  .seller-fab {
    right: max(28px, env(safe-area-inset-right));
    width: 76px;
    height: 76px;
    bottom: 28px;
  }

  .seller-fab-label {
    -webkit-text-stroke: 1px currentColor;
    font-size: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .seller-fab {
    transition: opacity .2s, visibility .2s;
    transform: none;
  }

  .seller-fab.is-visible, .seller-fab:hover, .seller-fab:active {
    transform: none;
  }

  .seller-fab:after {
    animation: none;
  }
}

/* [project]/components/ui/near-viewport-image.css [app-client] (css) */
.nvi-fade {
  opacity: 0;
  transition: opacity .45s ease-out;
}

.nvi-fade.is-loaded {
  opacity: 1;
}

.no-js .nvi-fade {
  opacity: 1;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .nvi-fade, .nvi-fade.is-loaded {
    opacity: 1;
    transition: none;
  }
}

/*# sourceMappingURL=components_0wg6_3p._.css.map*/