/* Shared shell for every step in the ticket checkout flow. */
.ticket-flow-header.header {
  min-height: 72px;
  background: rgba(1, 8, 22, .96);
  border-bottom: 1px solid rgba(224, 181, 91, .25);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.ticket-flow-header .logo-text-main { color: #fff; font-weight: 700; }
.ticket-flow-header .logo-text-sub { color: #e8c66f; font-weight: 500; }
.ticket-flow-header .nav-link { color: rgba(255,255,255,.82); font-weight: 400; }
.ticket-flow-header .nav-link:hover,
.ticket-flow-header .nav-link.active { color: #DCE5ED; }
.ticket-flow-home {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #DCE5ED;
  font: 500 13px/1.2 'Prompt', sans-serif;
  text-decoration: none;
  white-space: nowrap;
}
.ticket-flow-home i { font-size: 15px; }
.ticket-flow-steps.booking-steps {
  display: flex;
  width: min(670px, 100%);
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 0 auto 24px;
  padding: 0;
  list-style: none;
}
.ticket-flow-steps.booking-steps li {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.55);
  font: 400 13px/1.35 'Prompt', sans-serif;
}
.ticket-flow-steps.booking-steps li:not(:last-child)::after {
  content: '';
  flex: 1;
  height: 1px;
  margin-left: 8px;
  background: rgba(235,199,112,.35);
}
.ticket-flow-steps.booking-steps li > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid #8595ae;
  border-radius: 50%;
  font-weight: 500;
}
.ticket-flow-steps.booking-steps strong { white-space: nowrap; font-weight: 500; }
.ticket-flow-steps.booking-steps .is-active { color: #DCE5ED; }
.ticket-flow-steps.booking-steps .is-active > span {
  color: #1a1104;
  border-color: #F0F4F7;
  background: linear-gradient(145deg,#E4EBF1,#bd8430);
  box-shadow: 0 0 14px rgba(243,194,78,.35);
}
.ticket-flow-steps.booking-steps .is-complete { color: rgba(255,255,255,.82); }
.ticket-flow-steps.booking-steps .is-complete > span { color: #DCE5ED; border-color: #d9bd73; }
.ticket-flow-steps.booking-steps .is-complete i { font-size: 12px; }
.ticket-flow-steps.booking-steps .is-active { color:#DCE5ED; }
.ticket-flow-steps.booking-steps .is-active > span { color:#06152A; border-color:#F1F5F8; background:linear-gradient(145deg,#F1F5F8,#AAB9C8); box-shadow:0 0 14px rgba(184,197,210,.3); }
.ticket-flow-steps.booking-steps .is-complete { color:rgba(232,239,245,.86); }
.ticket-flow-steps.booking-steps .is-complete > span { color:#DCE5ED; border-color:#AAB9C8; }
@media (max-width: 880px) {
  .ticket-flow-header .nav { display: none; }
}
@media (max-width: 680px) {
  .ticket-flow-steps.booking-steps { width: min(270px,100%); gap: 12px; }
  .ticket-flow-steps.booking-steps strong { display: none; }
  .ticket-flow-home span { display: none; }
}
