:root {
  color-scheme: light;
  --screen-width: 390px;
  --screen-height: 904px;
  --safe-top: env(safe-area-inset-top);
  --safe-bottom: env(safe-area-inset-bottom);
  --header-height: 44px;
  --side-padding: 16px;
  --bottom-bar-padding: 12px;
  --bg: #faf7ff;
  --purple: #6a5b94;
  --purple-solid: #6a57a5;
  --purple-soft: #706b8b;
  --purple-pale: rgba(106, 91, 148, 0.45);
  --line: rgba(106, 91, 148, 0.56);
  --focus: rgba(106, 91, 148, 0.72);
  --error-bg: #fbf1f5;
  --success-bg: #eef7ef;
  --state-copy: rgba(0, 0, 0, 0.81);
  --mono-font: "Iosevka Charon Mono", "Iosevka Charon", "Iosevka", "Roboto Condensed", monospace;
  --akrobat-font: "Akrobat", "Oswald", "Arial Narrow", "Arial Narrow Bold", sans-serif;
  --akrobat-semibold-font: "Akrobat SemiBold", "Akrobat", "Oswald", "Arial Narrow", sans-serif;
  --akrobat-bold-font: "Akrobat Bold", "Akrobat", "Oswald", "Arial Narrow", sans-serif;
  --akrobat-extrabold-font: "Akrobat ExtraBold", "Akrobat Bold", "Akrobat", "Oswald", "Arial Narrow", sans-serif;
  --impact-font: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --sf-font: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  min-height: 100dvh;
  background: var(--bg);
  color-scheme: light;
  forced-color-adjust: none;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--purple);
  font-family: var(--mono-font);
  overflow: hidden;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

img {
  display: block;
  max-width: 100%;
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
}

.device {
  height: 100dvh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 0;
  background: var(--bg);
}

.screen {
  width: min(100%, var(--screen-width));
  height: 100dvh;
  min-height: 100dvh;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
}

.content {
  height: 100%;
  min-height: 0;
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
  background: var(--bg);
}

@media (prefers-color-scheme: dark) {
  html,
  body,
  .device,
  .screen,
  .content {
    background: var(--bg);
    color: var(--purple);
  }
}

.list-view[hidden],
.detail-view[hidden],
.booking-view[hidden],
.success-view[hidden],
.state-panel[hidden] {
  display: none !important;
}

.list-view {
  height: 100%;
  min-height: 100%;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding-bottom: calc(var(--safe-bottom) + 24px);
}

.adult-home-chip {
  position: absolute;
  left: 16px;
  top: calc(var(--safe-top) + 12px);
  z-index: 2;
  width: 109px;
  height: 24px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  background: var(--purple);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

.adult-home-chip__icon-wrap {
  width: 18px;
  height: 24px;
  position: relative;
  flex: none;
  overflow: visible;
}

.adult-home-chip__icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
  transform-origin: center;
  filter: brightness(0) invert(1);
}

.adult-home-chip__label {
  display: block;
  flex: none;
  font-family: var(--sf-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -1px;
  color: #fff;
  white-space: nowrap;
}

.list-view,
.detail-view,
.booking-view,
.success-view {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.list-view::-webkit-scrollbar,
.detail-view::-webkit-scrollbar,
.booking-view::-webkit-scrollbar,
.success-view::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.hero {
  width: 310px;
  margin: calc(var(--safe-top) + 52px) 0 0 40px;
  color: var(--purple);
  text-align: center;
}

.hero__month {
  margin: 0;
  font-family: var(--mono-font);
  font-size: 128px;
  font-weight: 500;
  line-height: 121px;
  letter-spacing: -11px;
}

.hero__subtitle {
  margin: 0;
  font-family: var(--mono-font);
  font-size: 32px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -2px;
}

.schedule {
  margin-top: 24px;
  padding: 0 16px;
}

.schedule__list {
  display: grid;
  gap: 8px;
}

.card,
.state-panel,
.detail-media {
  width: 358px;
}

.card {
  position: relative;
  min-height: 126px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  display: grid;
  grid-template-columns: 202px 148px;
  column-gap: 8px;
  overflow: hidden;
  text-align: left;
  color: inherit;
  cursor: pointer;
  transition: background-color 120ms ease, opacity 120ms ease;
}

.card:hover {
  background: rgba(106, 91, 148, 0.03);
}

.card:active,
.card.is-active {
  background: rgba(106, 91, 148, 0.06);
}

.card.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.card.is-finished,
.card.is-sold-out,
.card.is-cancelled {
  cursor: default;
  pointer-events: none;
}

.card.is-finished::after,
.card.is-sold-out::after,
.card.is-cancelled::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(30, 24, 47, 0.52);
  pointer-events: none;
}

.card.is-sold-out::after {
  background: rgba(54, 44, 78, 0.46);
}

.card.is-cancelled::after {
  background: rgba(80, 24, 24, 0.5);
}

.card__status {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 3;
  height: 28px;
  padding: 0 14px;
  display: grid;
  place-items: center;
  background: rgba(106, 87, 165, 0.94);
  color: #fff;
  font-family: var(--akrobat-extrabold-font);
  font-size: 14px;
  font-weight: 800;
  line-height: 15px;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.card.is-sold-out .card__status {
  background: rgba(88, 74, 126, 0.96);
}

.card.is-cancelled .card__status {
  background: rgba(184, 57, 57, 0.96);
}

.card:focus-visible,
.detail-view__back:focus-visible,
.detail-cta:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.card__body {
  width: 202px;
  padding: 8px 0 0 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.card__top {
  width: 194px;
  height: 54px;
  position: relative;
}

.card__day {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--purple-pale);
  font-family: var(--impact-font);
  font-size: 64px;
  font-weight: 400;
  line-height: 56px;
}

.card__meta {
  position: absolute;
  left: 100px;
  top: 0;
  color: var(--purple-soft);
  font-family: var(--akrobat-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: -0.56px;
  text-transform: uppercase;
  white-space: nowrap;
}

.card__meta--end {
  left: auto;
  right: 0;
  text-align: right;
}

.card__title {
  position: absolute;
  left: 8px;
  bottom: 8px;
  margin: 0;
  color: var(--purple);
  font-family: var(--akrobat-extrabold-font);
  font-size: 16px;
  font-weight: 800;
  line-height: 15px;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  min-height: 32px;
  display: block;
  overflow: visible;
  white-space: normal;
}

.card--compact-title .card__body {
  justify-content: space-between;
}

.card--compact-title .card__title {
  min-height: 16px;
}

.card__media {
  position: relative;
  overflow: hidden;
}

.card__image {
  width: 148px;
  height: 126px;
  object-fit: cover;
  object-position: 50% 50%;
  transform: translateZ(0);
}

.card__image--overlay {
  position: absolute;
  inset: 0;
}

.card__price {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--purple-solid);
  color: #fff;
  font-family: var(--akrobat-semibold-font);
  font-size: 20px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: -1px;
}

.state-panel {
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--line);
}

.state-panel__eyebrow {
  margin: 0 0 10px;
  color: var(--purple);
  font-family: var(--mono-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.state-panel__title {
  margin: 0;
  color: var(--purple);
  font-family: var(--mono-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.state-panel__text {
  margin: 12px 0 0;
  color: var(--state-copy);
  font-family: var(--mono-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -1px;
}

.state-panel--error {
  background: var(--error-bg);
}

.state-panel--success {
  background: var(--success-bg);
}

.skeleton {
  pointer-events: none;
}

.skeleton-line,
.skeleton-block {
  position: relative;
  overflow: hidden;
  background: rgba(106, 91, 148, 0.12);
}

.skeleton-line::after,
.skeleton-block::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  animation: shimmer 1.35s infinite;
}

.skeleton-line {
  border-radius: 2px;
}

.skeleton-block {
  height: 100%;
}

.skeleton-line--day {
  width: 58px;
  height: 56px;
}

.skeleton-line--meta {
  width: 108px;
  height: 19px;
  margin-top: 2px;
}

.skeleton-line--title {
  width: 176px;
  height: 16px;
  margin-top: 8px;
}

.contact {
  width: 127px;
  margin: 30px auto 0;
  display: grid;
  justify-items: center;
  gap: 0;
  padding-bottom: 0;
  background: var(--bg);
}

.contact__brand {
  width: 127px;
  margin-bottom: 6px;
}

.contact__brand-image {
  width: 127px;
  height: auto;
  image-rendering: auto;
  backface-visibility: visible;
  transform: none;
}

.contact__line {
  margin: 0;
  color: var(--purple-solid);
  font-family: var(--sf-font);
  font-size: 16px;
  font-weight: 510;
  line-height: 16px;
  letter-spacing: -1px;
  text-align: center;
}

.contact__line + .contact__line {
  margin-top: 6px;
}

.contact__line:last-child {
  white-space: nowrap;
  width: max-content;
}

.detail-cta {
  border: 0;
  background: var(--purple-solid);
  color: #fff;
  cursor: pointer;
  transition: background-color 120ms ease, opacity 120ms ease;
}

.detail-cta:hover {
  background: #7768af;
}

.detail-cta:disabled,
.detail-cta.is-finished,
.detail-cta.is-sold-out,
.detail-cta.is-cancelled {
  cursor: default;
  background: rgba(106, 87, 165, 0.58);
  opacity: 1;
}

.detail-cta.is-loading {
  color: transparent;
  pointer-events: none;
}

.detail-cta.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.detail-view {
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scroll-padding-top: calc(var(--safe-top) + 56px);
  scroll-padding-bottom: calc(var(--safe-bottom) + 96px);
}

.detail-view__topbar {
  position: relative;
  z-index: 4;
  height: calc(var(--safe-top) + var(--header-height));
  padding: var(--safe-top) var(--side-padding) 0;
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  align-items: center;
  column-gap: 12px;
  background: var(--bg);
}

.detail-view__back {
  position: static;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
}

.detail-view__back-icon {
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
  transform-origin: center;
}

.detail-view__title {
  margin: 0;
  color: var(--purple);
  font-family: var(--akrobat-extrabold-font);
  font-size: 17px;
  font-weight: 800;
  line-height: 21px;
  letter-spacing: -0.17px;
  position: static;
  width: auto;
  transform: none;
  text-align: center;
  white-space: nowrap;
}

.detail-view__spacer {
  width: 24px;
  height: 24px;
}

.detail-view__body {
  flex: 1 1 auto;
  margin-top: 13px;
  padding: 0 var(--side-padding);
  position: static;
}

.detail-media {
  width: 100%;
  height: 316px;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.detail-media__photo {
  width: 100%;
  height: 316px;
  object-fit: cover;
  transform: translateZ(0);
}

.detail-media__figure {
  position: absolute;
  left: 150px;
  top: 115px;
  width: 224px;
  height: 201px;
  object-fit: cover;
  transform: translateZ(0);
}

.detail-copy {
  display: block;
  width: 100%;
  margin: 16px 0 0;
  position: static;
}

.detail-copy__date {
  align-items: center;
  display: inline-flex;
  height: 26px;
  margin: 0;
  justify-content: center;
  padding: 2px 8px 3px 7px;
  background: var(--purple-solid);
  color: #fff;
  font-family: var(--akrobat-semibold-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: -0.16px;
  text-transform: uppercase;
  width: max-content;
  white-space: nowrap;
}

.detail-copy__name {
  margin: 12px 0 0;
  width: 100%;
  color: var(--purple-solid);
  font-family: var(--akrobat-bold-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  white-space: normal;
}

.detail-copy__story,
.detail-copy__needs {
  color: var(--state-copy);
  font-family: var(--sf-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.96px;
}

.detail-copy__story {
  margin: 12px 0 0;
  width: 100%;
  white-space: normal;
}

.detail-copy__story p {
  margin: 0;
}

.detail-copy__needs {
  margin: 16px 0 0;
  width: 100%;
}

.detail-copy__needs-label,
.detail-copy__needs-text {
  font-size: 16px;
  line-height: 16px;
}

.detail-copy__needs-label {
  font-family: var(--sf-font);
  font-weight: 700;
  letter-spacing: -0.84px;
}

.detail-copy__needs-text {
  font-family: var(--sf-font);
  font-weight: 400;
  letter-spacing: -0.84px;
}

.detail-copy__meta-line {
  color: #090909;
  margin: 0;
}

.detail-copy__meta-line + .detail-copy__meta-line {
  margin-top: 3px;
}

.detail-copy__meta-label {
  color: var(--purple-solid);
  font-weight: 700;
}

.detail-copy__meta-value {
  font-family: var(--sf-font);
  color: #302f30;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.96px;
  text-transform: none;
}

.detail-copy__meta {
  width: 100%;
  font-family: var(--akrobat-bold-font);
  font-size: 17px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: -0.68px;
  text-transform: uppercase;
  padding-bottom: 16px;
  margin-top: 24px;
}

.detail-view__bottom {
  position: sticky;
  bottom: 0;
  z-index: 5;
  margin-top: auto;
  padding: var(--bottom-bar-padding) var(--side-padding) calc(var(--safe-bottom) + var(--bottom-bar-padding));
  background: var(--bg);
}

.detail-cta {
  position: static;
  width: 100%;
  height: 49px;
  margin: 0;
  padding: 14px 13.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.detail-cta__label,
.detail-cta__price {
  font-family: var(--akrobat-bold-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 21px;
  white-space: nowrap;
}

.detail-cta__label {
  letter-spacing: -0.6px;
}

.detail-cta__price {
  font-family: var(--akrobat-semibold-font);
  font-weight: 600;
  letter-spacing: -1px;
}

.booking-view {
  height: 100%;
  min-height: 100%;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scroll-padding-top: calc(var(--safe-top) + 56px);
  scroll-padding-bottom: calc(var(--safe-bottom) + 96px);
}

.booking-view__topbar {
  position: relative;
  z-index: 4;
  height: calc(var(--safe-top) + var(--header-height));
  padding: var(--safe-top) var(--side-padding) 0;
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  align-items: center;
  column-gap: 12px;
  background: var(--bg);
}

.booking-view__body {
  min-height: 676px;
  margin-top: 13px;
  position: relative;
  padding-bottom: 24px;
}

.booking-view__back,
.booking-view__back-icon,
.booking-view__spacer {
  width: 24px;
  height: 24px;
}

.booking-view__back-icon {
  transform: rotate(90deg);
  transform-origin: center;
}

.booking-view__back {
  position: static;
  padding: 0;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
}

.booking-view__back:focus-visible,
.booking-pay:focus-visible,
.payment-option:focus-visible,
.booking-field__input:focus-visible,
.booking-consent:focus-within,
.success-view__home:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.booking-view__title,
.booking-view__section {
  margin: 0;
  color: var(--purple);
  font-family: var(--akrobat-extrabold-font);
  font-size: 17px;
  font-weight: 800;
  line-height: 21px;
  letter-spacing: -0.34px;
  text-transform: uppercase;
  position: absolute;
}

.booking-view__title {
  position: static;
  transform: none;
  width: auto;
  justify-self: center;
  align-self: center;
  text-align: center;
  white-space: nowrap;
  font-size: 16px;
  line-height: 15px;
  letter-spacing: -0.16px;
}

.booking-view__section--class {
  left: 16px;
  top: 0;
  font-size: 17px;
  line-height: 15px;
  letter-spacing: -0.17px;
}

.booking-view__section--data {
  left: 16px;
  top: 187px;
  font-size: 16px;
  line-height: 15px;
  letter-spacing: -0.16px;
}

.booking-view__section--payment {
  left: 16px;
  top: 451px;
  font-size: 16px;
  line-height: 15px;
  letter-spacing: -0.16px;
}

.booking-view__card {
  position: absolute;
  left: 16px;
  top: 31px;
  width: 358px;
}

.booking-card {
  position: relative;
  width: 358px;
  height: 126px;
  border: 1px solid var(--line);
  background: transparent;
  display: grid;
  grid-template-columns: 202px 148px;
  column-gap: 8px;
  overflow: hidden;
  cursor: default;
  color: inherit;
}

.booking-card__body {
  width: 202px;
  height: 100%;
  padding: 8px 0 0 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.booking-card__top {
  width: 194px;
  height: 54px;
  position: relative;
}

.booking-card__day {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--purple-pale);
  font-family: var(--impact-font);
  font-size: 64px;
  font-weight: 400;
  line-height: 56px;
}

.booking-card__meta {
  position: absolute;
  left: 100px;
  top: 0;
  color: var(--purple-soft);
  font-family: var(--akrobat-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: -0.56px;
  text-transform: uppercase;
  white-space: nowrap;
}

.booking-card__meta.card__meta--end {
  left: auto;
  right: 0;
  text-align: right;
}

.booking-card__title {
  position: absolute;
  left: 8px;
  bottom: 8px;
  margin: 0;
  color: var(--purple);
  font-family: var(--akrobat-extrabold-font);
  font-size: 16px;
  font-weight: 800;
  line-height: 15px;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  min-height: 32px;
  display: block;
  overflow: visible;
  white-space: normal;
}

.booking-card.card--compact-title .booking-card__body {
  justify-content: space-between;
}

.booking-card.card--compact-title .booking-card__title {
  min-height: 16px;
}

.booking-card__media {
  position: relative;
  width: 148px;
  height: 126px;
  overflow: hidden;
}

.booking-card__image {
  width: 148px;
  height: 126px;
  object-fit: cover;
  object-position: 50% 50%;
  transform: translateZ(0);
}

.booking-card__image--overlay {
  position: absolute;
  inset: 0;
}

.booking-card__price {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--purple-solid);
  color: #fff;
  font-family: var(--akrobat-semibold-font);
  font-size: 20px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: -1px;
}

.booking-field {
  position: absolute;
  left: 16px;
  width: 358px;
  height: 50px;
  border: 1px solid rgba(106, 91, 148, 0.81);
  display: block;
  scroll-margin-top: calc(var(--safe-top) + 56px);
  scroll-margin-bottom: calc(var(--safe-bottom) + 96px);
}

.booking-field--name {
  top: 218px;
}

.booking-field--phone {
  top: 276px;
}

.booking-field--email {
  top: 334px;
}

.booking-field__input {
  width: 100%;
  height: 100%;
  padding: 14px 12px 15px;
  border: 0;
  background: transparent;
  color: #2f2e30;
  font-family: var(--akrobat-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: -0.96px;
  text-transform: none;
}

.booking-field__input::placeholder {
  color: #2f2e30;
  opacity: 1;
}

.booking-field__error {
  display: none;
  margin-top: 4px;
  color: #9b4a68;
  font-family: var(--sf-font);
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: -0.48px;
}

.booking-field.is-error {
  border-color: rgba(170, 91, 117, 0.9);
  background: rgba(251, 241, 244, 0.65);
}

.booking-field.is-error .booking-field__error {
  display: block;
}

.booking-field.is-success {
  border-color: rgba(95, 127, 98, 0.85);
  background: rgba(239, 245, 239, 0.55);
}

.booking-view.has-name-error .booking-field--phone {
  top: 294px;
}

.booking-view.has-name-error .booking-field--email {
  top: 352px;
}

.booking-view.has-name-error .booking-consent {
  top: 418px;
}

.booking-view.has-name-error .payment-option--card {
  top: 500px;
}

.booking-view.has-name-error .payment-option--sbp {
  top: 558px;
}

.booking-view.has-name-error .booking-view__note {
  top: 622px;
}

.booking-view.has-phone-error .booking-field--email {
  top: 352px;
}

.booking-view.has-phone-error .booking-consent {
  top: 418px;
}

.booking-view.has-phone-error .payment-option--card {
  top: 500px;
}

.booking-view.has-phone-error .payment-option--sbp {
  top: 558px;
}

.booking-view.has-phone-error .booking-view__note {
  top: 622px;
}

.booking-view.has-email-error .booking-consent {
  top: 418px;
}

.booking-view.has-email-error .payment-option--card {
  top: 500px;
}

.booking-view.has-email-error .payment-option--sbp {
  top: 558px;
}

.booking-view.has-email-error .booking-view__note {
  top: 622px;
}

.booking-view.has-name-error.has-phone-error .booking-consent {
  top: 436px;
}

.booking-view.has-name-error.has-phone-error .payment-option--card {
  top: 518px;
}

.booking-view.has-name-error.has-phone-error .payment-option--sbp {
  top: 576px;
}

.booking-view.has-name-error.has-phone-error .booking-view__note {
  top: 640px;
}

.booking-consent {
  position: absolute;
  left: 16px;
  top: 400px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 334px;
  scroll-margin-top: calc(var(--safe-top) + 56px);
  scroll-margin-bottom: calc(var(--safe-bottom) + 96px);
}

.booking-consent__input {
  position: absolute;
  opacity: 0;
  inset: 0;
}

.booking-consent__box {
  width: 17px;
  height: 17px;
  border: 1px solid var(--purple-solid);
  background: transparent;
  display: grid;
  place-items: center;
  flex: none;
  margin-top: 1px;
}

.booking-consent__check {
  width: 17px;
  height: 17px;
  opacity: 0;
}

.booking-consent__input:checked + .booking-consent__box {
  background: var(--purple-solid);
}

.booking-consent__input:checked + .booking-consent__box .booking-consent__check {
  opacity: 1;
}

.booking-consent__text {
  color: #000;
  font-family: var(--sf-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.84px;
  width: 309px;
}

.payment-option {
  position: absolute;
  left: 16px;
  width: 358px;
  height: 50px;
  border: 1px solid rgba(106, 91, 148, 0.81);
  background: transparent;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0 16px 0 6px;
  color: #2f2e30;
  text-align: left;
  scroll-margin-top: calc(var(--safe-top) + 56px);
  scroll-margin-bottom: calc(var(--safe-bottom) + 96px);
}

.payment-option--card {
  top: 482px;
}

.payment-option--sbp {
  top: 540px;
}

.payment-option.is-selected::after {
  content: none;
}

.payment-option__icon {
  width: 30px;
  height: 30px;
  position: relative;
  flex: none;
}

.payment-option__card-image {
  position: absolute;
  left: 6px;
  top: 8.75px;
  width: 17.791px;
  height: 12.5px;
}

.payment-option__icon--sbp {
  display: grid;
  place-items: center;
}

.payment-option__sbp-image {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

.payment-option__check-image {
  position: absolute;
  right: 8px;
  top: 13px;
  width: 24px;
  height: 24px;
  opacity: 0;
}

.payment-option.is-selected .payment-option__check-image {
  opacity: 1;
}

.payment-option__label {
  color: #2f2e30;
  font-family: var(--akrobat-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin-top: -1px;
}

.booking-view__note {
  position: absolute;
  left: 17px;
  top: 604px;
  width: 358px;
  margin: 0;
  color: #000;
  font-family: var(--sf-font);
  font-size: 14px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: -0.84px;
  white-space: normal;
  padding-bottom: 24px;
  scroll-margin-top: calc(var(--safe-top) + 56px);
  scroll-margin-bottom: calc(var(--safe-bottom) + 96px);
}

.booking-view__bottom {
  position: sticky;
  bottom: 0;
  z-index: 5;
  padding: var(--bottom-bar-padding) var(--side-padding) calc(var(--safe-bottom) + var(--bottom-bar-padding));
  background: var(--bg);
}

.booking-pay {
  position: static;
  width: 100%;
  max-width: none;
  height: 53px;
  border: 0;
  background: var(--purple-solid);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 14px 19px 14px 20px;
  cursor: pointer;
  z-index: 5;
}

.booking-pay:disabled,
.booking-pay.is-disabled {
  background: #d8d1e7;
  color: rgba(86, 73, 128, 0.48);
  cursor: pointer;
}

.booking-pay:disabled .booking-pay__label,
.booking-pay:disabled .booking-pay__price,
.booking-pay.is-disabled .booking-pay__label,
.booking-pay.is-disabled .booking-pay__price {
  color: rgba(86, 73, 128, 0.48);
}

.booking-pay__label,
.booking-pay__price {
  color: #fff;
  font-family: var(--akrobat-bold-font);
  font-size: 20px;
  line-height: 21px;
  white-space: nowrap;
}

.booking-pay__label {
  font-weight: 700;
  letter-spacing: -0.6px;
}

.booking-pay__price {
  font-family: var(--akrobat-semibold-font);
  font-weight: 600;
  letter-spacing: -1px;
}

.booking-pay.is-loading {
  position: static;
  color: transparent;
  pointer-events: none;
}

.booking-pay.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.test-payment {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: start center;
  padding: 0;
  background: var(--bg);
  overflow: auto;
}

.test-payment__panel {
  position: relative;
  width: min(100%, var(--screen-width));
  min-height: 100dvh;
  overflow: auto;
  padding: var(--safe-top) var(--side-padding) calc(var(--safe-bottom) + 18px);
  background: var(--bg);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.test-payment__eyebrow,
.test-payment__screen-title,
.test-payment__title,
.test-payment__text,
.test-payment__summary,
.test-payment__message {
  margin: 0;
}

.test-payment__topbar {
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  align-items: center;
  min-height: 56px;
  margin-bottom: 20px;
}

.test-payment__back,
.test-payment__spacer {
  width: 24px;
  height: 24px;
}

.test-payment__back {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.test-payment__back-icon {
  width: 24px;
  height: 24px;
  display: block;
  transform: rotate(90deg);
  filter: brightness(0) saturate(100%) invert(35%) sepia(99%) saturate(2615%) hue-rotate(214deg) brightness(94%) contrast(91%);
}

.test-payment__screen-title {
  color: #2563eb;
  font-family: var(--mono-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: -1px;
  text-align: center;
  text-transform: uppercase;
}

.test-payment__eyebrow {
  color: #2563eb;
  font-family: var(--mono-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 15px;
  text-transform: uppercase;
}

.test-payment__title {
  margin-top: 10px;
  color: #172554;
  font-family: var(--akrobat-bold-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  text-transform: uppercase;
}

.test-payment__summary {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.test-payment__summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  border-bottom: 1px solid #dbeafe;
}

.test-payment__summary dt,
.test-payment__summary dd,
.test-payment__text,
.test-payment__field {
  color: #475569;
  font-family: var(--mono-font);
  font-size: 15px;
  line-height: 18px;
}

.test-payment__summary dd {
  margin: 0;
  color: #1d4ed8;
  font-weight: 700;
  text-align: right;
}

.test-payment__form,
.test-payment__text {
  margin-top: 18px;
}

.test-payment__form {
  display: grid;
  gap: 12px;
}

.test-payment__field {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.test-payment__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.test-payment__input-wrap {
  min-height: 50px;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  background: #f8fbff;
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
}

.test-payment__input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #0f172a;
  font: inherit;
  font-weight: 700;
  min-width: 0;
}

.test-payment__input::placeholder {
  color: #94a3b8;
}

.test-payment__brand {
  color: #1d4ed8;
  font-weight: 700;
  white-space: nowrap;
}

.test-payment__message {
  min-height: 18px;
  color: #dc2626;
  font-family: var(--mono-font);
  font-size: 14px;
  line-height: 17px;
}

.test-payment__message.is-success {
  color: #15803d;
}

.test-payment__message.is-info {
  color: #2f6f52;
}

.test-payment__confirm {
  width: 100%;
  height: 53px;
  margin-top: 16px;
  border: 0;
  font-family: var(--mono-font);
  font-size: 17px;
  font-weight: 700;
  line-height: 19px;
  cursor: pointer;
}

.test-payment__confirm {
  position: relative;
  border-radius: 0;
  background: #2563eb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 19px 14px 20px;
}

.test-payment__confirm:disabled {
  opacity: 0.7;
  cursor: default;
}

.test-payment__confirm.is-loading {
  color: transparent;
}

.test-payment__confirm.is-loading span {
  opacity: 0;
}

.test-payment__confirm.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.success-view {
  height: 100%;
  min-height: 100%;
  padding: var(--safe-top) var(--side-padding) 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.success-view__content {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 16px;
  margin-top: 192px;
  width: 100%;
}

.success-view__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--purple-solid);
  display: grid;
  place-items: center;
}

.success-view__icon-check {
  width: 28px;
  height: 28px;
  display: block;
}

.success-view__title {
  margin: 0;
  color: var(--purple-solid);
  font-family: var(--mono-font);
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.success-view__text {
  margin: 0;
  color: var(--state-copy);
  font-family: var(--mono-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -1px;
}

.success-view__bottom {
  margin-top: auto;
  padding-bottom: calc(var(--safe-bottom) + var(--bottom-bar-padding));
  background: var(--bg);
}

.success-view__home {
  position: static;
  width: 100%;
  height: 53px;
  border: 0;
  background: var(--purple-solid);
  color: #fff;
  font-family: var(--mono-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: -1px;
  white-space: nowrap;
  cursor: pointer;
  margin: 0;
  align-self: stretch;
}

.success-view__home:hover {
  background: #7768af;
}

@keyframes shimmer {
  to {
    transform: translateX(120%);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 721px) {
  .screen {
    min-height: var(--screen-height);
    box-shadow: 0 24px 64px rgba(60, 48, 91, 0.14);
  }
}
