:root {
  color-scheme: light;
  --kids-bg: #f9f3dd;
  --kids-brown: #643000;
  --kids-gold: #f8cd65;
  --kids-gold-shadow: #b56f00;
  --kids-beige: #af946a;
  --kids-white: #ffffff;
  --safe-top: env(safe-area-inset-top);
  --safe-bottom: env(safe-area-inset-bottom);
  --mono-font: "Iosevka Charon Mono", "Iosevka Charon", "Iosevka", "Roboto Condensed", monospace;
  --akrobat-font: "Akrobat", "Arial Narrow", sans-serif;
  --akrobat-semibold-font: "Akrobat SemiBold", "Akrobat", "Arial Narrow", sans-serif;
  --akrobat-bold-font: "Akrobat Bold", "Akrobat", "Arial Narrow", sans-serif;
  --akrobat-extrabold-font: "Akrobat ExtraBold", "Akrobat Bold", "Akrobat", "Arial Narrow", sans-serif;
  --sf-font: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

body {
  background-color: var(--kids-bg);
  color: var(--kids-brown);
  font-family: var(--mono-font);
  display: grid;
  place-items: center;
  overflow: hidden;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

@media (prefers-color-scheme: dark) {
  html,
  body,
  .kids-app,
  .kids-screen,
  .kids-view {
    background: var(--kids-bg);
    color: var(--kids-brown);
  }
}

.kids-app {
  width: min(100%, 390px);
  height: 100dvh;
  min-height: 100dvh;
  margin: 0 auto;
  background: var(--kids-bg);
  position: relative;
  overflow: hidden;
}

a {
  -webkit-tap-highlight-color: transparent;
}

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

.kids-screen {
  width: min(100%, 390px);
  height: 100dvh;
  min-height: 100dvh;
  margin: 0 auto;
  padding: calc(var(--safe-top) + 12px) 16px calc(var(--safe-bottom) + 24px);
  overflow: hidden;
  position: relative;
  background: var(--kids-bg);
}

.kids-view {
  display: none;
  height: 100%;
  min-height: 100%;
  background: var(--kids-bg);
}

.kids-view.is-active {
  display: block;
}

#kidsListView.kids-view.is-active {
  height: 100%;
  min-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

#kidsListView.kids-view.is-active::-webkit-scrollbar {
  display: none;
}

#kidsDetailView.kids-view.is-active,
#kidsBookingView.kids-view.is-active {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  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);
  scrollbar-width: none;
}

#kidsDetailView.kids-view.is-active::-webkit-scrollbar,
#kidsBookingView.kids-view.is-active::-webkit-scrollbar {
  display: none;
}

#kidsSuccessView.kids-view.is-active {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}

#kidsDetailView,
#kidsBookingView {
  padding: 0;
}

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

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

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

.kids-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: var(--kids-white);
  white-space: nowrap;
}

.kids-hero {
  width: 310px;
  margin: 40px auto 0;
  text-align: center;
}

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

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

.kids-schedule {
  margin-top: 24px;
}

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

.kids-card {
  position: relative;
  width: 358px;
  min-height: 126px;
  border: 1px solid rgba(100, 48, 0, 0.56);
  display: grid;
  grid-template-columns: 202px 148px;
  column-gap: 8px;
  overflow: hidden;
  text-decoration: none;
}

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

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

.kids-card.is-sold-out::after {
  background: rgba(72, 43, 18, 0.44);
}

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

.kids-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(100, 48, 0, 0.94);
  color: var(--kids-white);
  font-family: var(--akrobat-extrabold-font);
  font-size: 14px;
  font-weight: 800;
  line-height: 15px;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}

.kids-card.is-sold-out .kids-card__status {
  background: rgba(126, 76, 26, 0.96);
}

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

.kids-card__body {
  width: 202px;
  height: 100%;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.kids-card__body--top-gap {
  gap: 24px;
  justify-content: flex-start;
}

.kids-card__body--large-gap {
  gap: 40px;
  justify-content: flex-start;
}

.kids-card__body--between {
  height: 110px;
  margin-top: 8px;
  padding: 0 8px;
  justify-content: space-between;
}

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

.kids-card__day {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--kids-beige);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -1px;
}

.kids-card__meta {
  position: absolute;
  right: 0;
  top: 0;
  color: var(--kids-brown);
  font-family: var(--akrobat-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: -0.56px;
  text-align: right;
  white-space: nowrap;
}

.kids-card__meta--offset {
  right: auto;
  left: 129px;
  transform: translateX(100%);
}

.kids-card__meta--pizza {
  right: 0;
  left: auto;
  transform: none;
}

.kids-card__title {
  margin: 0;
  color: var(--kids-brown);
  font-family: var(--akrobat-extrabold-font);
  font-size: 16px;
  font-weight: 800;
  line-height: 15px;
  letter-spacing: -0.32px;
  text-transform: uppercase;
}

.kids-card__title-line {
  display: block;
}

.kids-card__title-line--regular {
  font-family: var(--akrobat-font);
  font-weight: 500;
}

.kids-card__title--w202 { width: 202px; }
.kids-card__title--w194 { width: 194px; }
.kids-card__title--w186 { width: 186px; }
.kids-card__title--w171 { width: 171px; }
.kids-card__title--w127 { width: 127px; }
.kids-card__title--w108 { width: 108px; }
.kids-card__title--w121 { width: 121px; }
.kids-card__title--w90 { width: 90px; }

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

.kids-card__image {
  position: absolute;
  display: block;
  max-width: none;
  transform: translateZ(0);
}

.kids-card__price {
  position: absolute;
  bottom: 0;
  height: 36px;
  padding: 8px;
  background: var(--kids-brown);
  color: var(--kids-white);
  font-family: var(--akrobat-semibold-font);
  font-size: 20px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.kids-card__price--free {
  width: 96px;
}

.kids-footer {
  width: 127px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--kids-bg);
}

.kids-footer__logo {
  width: 127px;
  height: 39px;
  position: relative;
  overflow: hidden;
}

.kids-footer__logo-image {
  position: absolute;
  top: 0;
  left: -0.79%;
  width: 100.79%;
  height: 128.21%;
  max-width: none;
  image-rendering: auto;
  backface-visibility: visible;
  transform: none;
}

.kids-footer__line {
  margin: 0;
  color: var(--kids-brown);
  font-family: var(--sf-font);
  font-size: 16px;
  font-weight: 510;
  line-height: 16px;
  letter-spacing: -0.96px;
  text-align: center;
  white-space: nowrap;
}

.kids-detail__back,
.kids-booking__back {
  position: absolute;
  left: 16px;
  top: calc(var(--safe-top) + 55px);
  width: 24px;
  height: 24px;
}

.kids-detail__back-icon {
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
  filter: brightness(0) saturate(100%) invert(16%) sepia(53%) saturate(1653%) hue-rotate(14deg) brightness(95%) contrast(101%);
}

.kids-detail__header,
.kids-booking__header {
  margin: 0;
  color: var(--kids-brown);
  font-family: var(--akrobat-extrabold-font);
  font-size: 17px;
  font-weight: 800;
  line-height: 21px;
  letter-spacing: -0.17px;
  text-align: center;
}

.kids-detail__header {
  width: auto;
  padding-top: 0;
}

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

.kids-detail__back {
  position: static;
  display: grid;
  place-items: center;
  flex: none;
}

.kids-detail__spacer {
  width: 24px;
  height: 24px;
}

.kids-detail__content {
  flex: 1 1 auto;
  margin-top: 13px;
  padding: 0 16px;
  scroll-margin-top: calc(var(--safe-top) + 56px);
  scroll-margin-bottom: calc(var(--safe-bottom) + 96px);
}

.kids-detail__media {
  width: 358px;
  height: 316px;
  position: relative;
  overflow: hidden;
  background: #efe2c3;
}

.kids-detail__media-layer {
  position: absolute;
  display: block;
  max-width: none;
  transform: translateZ(0);
}

.kids-detail__copy {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  width: 100%;
}

.kids-detail__chip {
  min-height: 26px;
  padding: 2px 8px 3px 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--kids-brown);
  color: var(--kids-white);
  font-family: var(--akrobat-semibold-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: -0.16px;
  margin-bottom: 12px;
}

.kids-detail__title {
  width: 100%;
  margin: 0;
  color: var(--kids-brown);
  font-family: var(--akrobat-bold-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.kids-detail__title-line {
  display: block;
}

.kids-detail__title-line--regular {
  font-family: var(--akrobat-font);
  font-weight: 500;
}

.kids-detail__story {
  width: 100%;
  display: block;
  color: #302f30;
  font-family: var(--sf-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.96px;
}

.kids-detail__story p {
  margin: 0;
}

.kids-detail__story p + p {
  margin-top: 12px;
}

.kids-detail__story p:last-child {
  margin-top: 16px;
}

.kids-detail__story strong {
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
}

.kids-detail__story span {
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.84px;
}

.kids-detail__meta {
  width: 100%;
  display: grid;
  gap: 3px;
  padding-bottom: 16px;
  margin-top: 24px;
}

.kids-detail__meta-row {
  display: flex;
  gap: 0;
  align-items: baseline;
  flex-wrap: wrap;
}

.kids-detail__meta-label {
  color: var(--kids-brown);
  font-family: var(--akrobat-bold-font);
  font-size: 17px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: -0.68px;
  text-transform: uppercase;
}

.kids-detail__meta-value {
  color: #302f30;
  font-family: var(--sf-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.96px;
}

.kids-booking__header {
  margin: 0;
  color: var(--kids-brown);
  font-family: var(--akrobat-extrabold-font);
  font-size: 16px;
  font-weight: 800;
  line-height: 15px;
  letter-spacing: -0.16px;
  white-space: nowrap;
}

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

.kids-booking__back {
  position: static;
  display: grid;
  place-items: center;
  flex: none;
}

.kids-booking__spacer {
  width: 24px;
  height: 24px;
}

.kids-booking__content {
  flex: 0 0 auto;
  min-height: 676px;
  margin-top: 13px;
  padding: 0 0 24px;
  position: relative;
  scroll-margin-top: calc(var(--safe-top) + 56px);
  scroll-margin-bottom: calc(var(--safe-bottom) + 96px);
}

.kids-booking__section-title {
  margin: 0;
  color: var(--kids-brown);
  font-family: var(--akrobat-extrabold-font);
  font-size: 16px;
  font-weight: 800;
  line-height: 15px;
  letter-spacing: -0.16px;
}

.kids-booking__section-title--class {
  position: absolute;
  left: 16px;
  top: 0;
  font-size: 17px;
  letter-spacing: -0.17px;
}

.kids-booking__section-title--data {
  position: absolute;
  left: 16px;
  top: 187px;
}

.kids-booking__section-title--payment {
  position: absolute;
  left: 16px;
  top: 451px;
}

#kidsBookingCard {
  position: absolute;
  left: 16px;
  top: 31px;
  width: 358px;
  margin: 0;
}

.kids-booking__field {
  position: absolute;
  left: 16px;
  display: block;
  width: 358px;
  margin-bottom: 0;
  scroll-margin-top: calc(var(--safe-top) + 56px);
  scroll-margin-bottom: calc(var(--safe-bottom) + 96px);
}

.kids-booking__field--name {
  top: 218px;
}

.kids-booking__field--phone {
  top: 276px;
}

.kids-booking__field--email {
  top: 334px;
}

.kids-booking__field-label {
  position: absolute;
  left: 12px;
  top: 17px;
  color: #000;
  pointer-events: none;
  font-family: var(--akrobat-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: -0.96px;
  transition: opacity 120ms linear;
}

.kids-booking__input {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(100, 48, 0, 0.81);
  background: transparent;
  padding: 14px 12px 15px;
  color: #000;
  font-family: var(--akrobat-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: -0.96px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.kids-booking__field.has-value .kids-booking__field-label,
.kids-booking__field:focus-within .kids-booking__field-label {
  opacity: 0;
}

.kids-booking__field.is-invalid .kids-booking__input {
  border-color: #8b2f18;
}

.kids-booking__field.is-valid .kids-booking__input {
  border-color: rgba(100, 48, 0, 1);
}

.kids-booking__error {
  display: none;
  margin-top: 4px;
  color: #8b2f18;
  font-family: var(--sf-font);
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: -0.48px;
}

.kids-booking__field.is-invalid .kids-booking__error {
  display: block;
}

.kids-booking__input:focus {
  border-color: var(--kids-brown);
}

.kids-booking__consent {
  position: absolute;
  left: 16px;
  top: 400px;
  width: 334px;
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  scroll-margin-top: calc(var(--safe-top) + 56px);
  scroll-margin-bottom: calc(var(--safe-bottom) + 96px);
}

.kids-booking__consent-box {
  width: 17px;
  height: 17px;
  border: 1px solid var(--kids-brown);
  background: transparent;
  display: grid;
  place-items: center;
  flex: none;
  margin-top: 1px;
}

.kids-booking__consent-check {
  width: 17px;
  height: 17px;
  display: block;
  opacity: 1;
}

.kids-booking__consent[aria-pressed="true"] .kids-booking__consent-box {
  background: var(--kids-brown);
}

.kids-booking__consent[aria-pressed="false"] .kids-booking__consent-box {
  background: transparent;
}

.kids-booking__consent[aria-pressed="false"] .kids-booking__consent-check {
  opacity: 0;
}

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

.kids-booking__payment {
  position: absolute;
  left: 16px;
  width: 358px;
  height: 50px;
  border: 1px solid rgba(100, 48, 0, 0.81);
  background: transparent;
  padding: 0 16px 0 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  scroll-margin-top: calc(var(--safe-top) + 56px);
  scroll-margin-bottom: calc(var(--safe-bottom) + 96px);
}

#kidsPaymentCard {
  top: 482px;
}

#kidsPaymentSbp {
  top: 540px;
}

.kids-booking__payment-left {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.kids-booking__payment-icon-wrap {
  width: 30px;
  height: 30px;
  position: relative;
  flex: none;
  overflow: hidden;
  border-radius: 7px;
}

.kids-booking__payment-icon {
  position: absolute;
  display: block;
  flex: none;
}

.kids-booking__payment-icon--card {
  left: 6.1px;
  top: 8.75px;
  width: 17.791px;
  height: 12.5px;
}

.kids-booking__payment-icon--sbp {
  left: 5px;
  top: 5px;
  width: 20px;
  height: 20px;
  object-fit: cover;
}

.kids-booking__payment-label {
  color: #000;
  font-family: var(--akrobat-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: -0.96px;
}

.kids-booking__payment-check {
  width: 24px;
  height: 24px;
  opacity: 0;
}

.kids-booking__payment.is-selected .kids-booking__payment-check {
  opacity: 1;
}

.kids-booking__payment[hidden],
.kids-booking__section-title[hidden],
.kids-booking__note[hidden],
.kids-cta-button__price[hidden] {
  display: none !important;
}

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

#kidsBookingView.has-name-error .kids-booking__field--phone {
  top: 294px;
}

#kidsBookingView.has-name-error .kids-booking__field--email {
  top: 352px;
}

#kidsBookingView.has-name-error .kids-booking__consent {
  top: 418px;
}

#kidsBookingView.has-name-error #kidsPaymentCard {
  top: 500px;
}

#kidsBookingView.has-name-error #kidsPaymentSbp {
  top: 558px;
}

#kidsBookingView.has-name-error .kids-booking__note {
  top: 622px;
}

#kidsBookingView.has-phone-error .kids-booking__field--email {
  top: 352px;
}

#kidsBookingView.has-phone-error .kids-booking__consent {
  top: 418px;
}

#kidsBookingView.has-phone-error #kidsPaymentCard {
  top: 500px;
}

#kidsBookingView.has-phone-error #kidsPaymentSbp {
  top: 558px;
}

#kidsBookingView.has-phone-error .kids-booking__note {
  top: 622px;
}

#kidsBookingView.has-email-error .kids-booking__consent {
  top: 418px;
}

#kidsBookingView.has-email-error #kidsPaymentCard {
  top: 500px;
}

#kidsBookingView.has-email-error #kidsPaymentSbp {
  top: 558px;
}

#kidsBookingView.has-email-error .kids-booking__note {
  top: 622px;
}

#kidsBookingView.has-name-error.has-phone-error .kids-booking__consent {
  top: 436px;
}

#kidsBookingView.has-name-error.has-phone-error #kidsPaymentCard {
  top: 518px;
}

#kidsBookingView.has-name-error.has-phone-error #kidsPaymentSbp {
  top: 576px;
}

#kidsBookingView.has-name-error.has-phone-error .kids-booking__note {
  top: 640px;
}

.kids-cta-shell {
  position: sticky;
  bottom: 0;
  padding: 12px 16px calc(var(--safe-bottom) + 12px);
  background: var(--kids-bg);
  z-index: 5;
}

.kids-cta-shell--detail {
  margin-top: auto;
}

.kids-cta-shell--booking {
  margin-top: auto;
}

.kids-cta-shell--success {
  margin-top: auto;
}

.kids-success {
  min-height: calc(100dvh - var(--safe-top) - var(--safe-bottom) - 140px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: calc(var(--safe-top) + 40px) 24px 24px;
  background: var(--kids-bg);
}

.kids-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--kids-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.kids-success__icon-image {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.kids-success__title {
  margin: 0;
  color: var(--kids-brown);
  font-family: var(--akrobat-extrabold-font);
  font-size: 24px;
  font-weight: 800;
  line-height: 21px;
  letter-spacing: -0.48px;
}

.kids-success__text {
  margin: 0;
  color: #302f30;
  font-family: var(--sf-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.96px;
}

.kids-cta-button {
  width: 100%;
  height: 49px;
  margin: 0;
  padding: 14px 13.5px;
  background: var(--kids-brown);
  color: var(--kids-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  border: 0;
  gap: 0;
}

.kids-cta-button__label {
  font-family: var(--akrobat-bold-font);
  font-size: 20px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: -0.6px;
  white-space: nowrap;
}

.kids-cta-button__price {
  font-family: var(--akrobat-semibold-font);
  font-size: 20px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: -1px;
  white-space: nowrap;
}

.kids-cta-button:disabled,
.kids-cta-button.is-disabled {
  background: #c6ac84;
  color: rgba(100, 48, 0, 0.48);
}

.kids-cta-button:disabled .kids-cta-button__label,
.kids-cta-button:disabled .kids-cta-button__price,
.kids-cta-button.is-disabled .kids-cta-button__label,
.kids-cta-button.is-disabled .kids-cta-button__price {
  color: rgba(100, 48, 0, 0.48);
}

.kids-cta-button.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.kids-cta-button.is-finished,
.kids-cta-button.is-sold-out,
.kids-cta-button.is-cancelled,
.kids-cta-button[aria-disabled="true"] {
  pointer-events: none;
  background: rgba(100, 48, 0, 0.58);
}

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

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

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

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

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

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

.kids-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%);
}

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

.kids-test-payment__eyebrow {
  color: #2563eb;
  font-family: var(--akrobat-bold-font);
  font-size: 15px;
  font-weight: 700;
  line-height: 17px;
}

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

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

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

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

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

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

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

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

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

.kids-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;
}

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

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

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

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

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

.kids-test-payment__message.is-info {
  color: #6c4d34;
}

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

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

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

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

@media (min-width: 391px) {
  body {
    background: var(--kids-bg);
  }
}
