html, body {
  height: 100%;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
}

img, iframe {
  max-width: 100%;
  display: block;
}

button {
  display: inline-block;
  background-color: transparent;
  color: inherit;
  border-width: 0;
  font-size: inherit;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

input,
select,
textarea {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}

ul,
ol,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

:root {
  --layout-padding: 10rem;
}
@media (max-width: 1440px) {
  :root {
    --layout-padding: 6.5rem;
  }
}
@media (max-width: 1020px) {
  :root {
    --layout-padding: 3rem;
  }
}
@media (max-width: 640px) {
  :root {
    --layout-padding: 1.5rem;
  }
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
  overflow-x: hidden;
  max-width: 100vw;
  scroll-behavior: smooth;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

body {
  font-size: 1rem;
  font-family: Circular, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
  background-color: #FBFDFF;
  color: #0C1937;
  font-weight: 400;
}

button {
  font-family: Circular, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-family: "larken", sans-serif;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.5rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.25rem;
}

small {
  font-size: 0.875rem;
}

@media (max-width: 640px) {
  body {
    font-size: 0.875rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.5rem;
  }
  h5 {
    font-size: 1.25rem;
  }
}
.hidden {
  display: none !important;
}

.flex {
  display: flex;
  flex-wrap: nowrap;
}
.flex.stack {
  flex-direction: column;
}
.flex.center {
  align-items: center;
  justify-content: center;
}
.flex.justify-between {
  justify-content: space-between;
}
.flex .wrap {
  flex-wrap: wrap;
}

.my-auto {
  margin-block: auto;
}

.mt-auto {
  margin-top: auto;
}

.mb-auto {
  margin-bottom: auto;
}

.decoration-none {
  text-decoration: none !important;
}

.capitalize {
  text-transform: capitalize;
}

@media (max-width: 1020px) {
  .mobile-hidden {
    display: none !important;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#app {
  display: flex;
  flex-direction: column;
}
#app > .view {
  flex: 1;
}

.container {
  padding-inline: var(--layout-padding);
  transition: 0.3s;
}

footer.site-footer {
  background: linear-gradient(0deg, rgba(12, 25, 55, 0.5), rgba(12, 25, 55, 0.5)), linear-gradient(180deg, #0C1937 0%, rgba(12, 25, 55, 0) 100%), var(--bg-url);
  background-position: center center;
  background-size: cover;
  gap: 5rem;
  position: relative;
  padding-top: 5rem;
}
footer.site-footer, footer.site-footer .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer.site-footer .content {
  color: #FBFDFF;
  text-align: center;
  gap: 2.5rem;
}
footer.site-footer .content h1 span {
  color: #69D1FF;
}
footer.site-footer .social-list {
  display: flex;
  gap: 2.5rem;
}
footer.site-footer .social-list li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
footer.site-footer .social-list li a .icon {
  height: 2.5rem;
  width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #69D1FF;
  border-radius: 5rem;
}
footer.site-footer .dots-left, footer.site-footer .dots-right {
  position: absolute;
}
footer.site-footer .dots-right {
  right: 0;
  bottom: 0;
}
footer.site-footer .dots-left {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1020px) {
  footer.site-footer {
    padding-block: 3.5rem;
  }
  footer.site-footer .dots-left, footer.site-footer .dots-right, footer.site-footer .arrow {
    display: none;
  }
}
@media (max-width: 640px) {
  footer.site-footer .social-list {
    gap: 1rem;
    flex-direction: column;
  }
}

header.site-header {
  padding-block: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FBFDFF;
  position: sticky;
  top: var(--wp-admin--admin-bar--height, 0px);
  width: 100%;
  z-index: 999;
  transition: 0.4s;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}
header.site-header.scrolled {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}
header.site-header .user {
  cursor: pointer;
  font-weight: 600;
  border-inline-start: 1px solid #C4CDD1;
  padding-block: 0;
  border-radius: 0;
  padding-inline: 2rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}
header.site-header .user.hidden {
  display: none;
}
header.site-header .user .dropdown {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  transform: translateY(90%);
  overflow: hidden;
  box-shadow: 0px 3px 10px -3px rgba(15, 25, 55, 0.5);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s;
}
header.site-header .user .dropdown.shown {
  transform: translateY(100%);
  pointer-events: all;
  opacity: 1;
}
header.site-header .user .dropdown button {
  border-radius: 0rem;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 0.75rem 1.25rem;
  color: #0C1937;
  background: #FBFDFF;
  transition: 0.3s;
}
header.site-header .user .dropdown button:hover {
  color: #73858E;
}
header.site-header .site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: 0.4s;
  z-index: 1;
}
header.site-header .site-nav .menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
header.site-header .site-nav a {
  color: #759CB2;
  font-weight: 600;
}
header.site-header .site-nav .current-menu-item a {
  color: #0C1937;
}
header.site-header .open-mobile-nav {
  z-index: 1;
  font-size: 1.25rem;
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
}
@media (max-width: 1020px) {
  header.site-header .open-mobile-nav {
    display: flex;
  }
  header.site-header .site-nav {
    display: none;
  }
}

button, a.btn {
  font-size: 1.125rem;
  padding: 0.75rem 1.25rem;
  border-radius: 5rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
  line-height: 1;
  width: max-content;
}
@media (max-width: 640px) {
  button, a.btn {
    padding: 1rem 1.25rem;
  }
}
button[disabled], a.btn[disabled] {
  background-color: #C4CDD1 !important;
  color: #73858E !important;
  cursor: default;
}
button.accent, a.btn.accent {
  background-color: #69D1FF;
  color: #0C1937;
}
button.primary, a.btn.primary {
  background-color: #00154A;
  color: #FBFDFF;
}
button.outline, a.btn.outline {
  background-color: #FBFDFF;
  color: #0C1937;
  border: 1px solid #C4CDD1;
}
button.ghost, a.btn.ghost {
  background-color: #FBFDFF;
  color: #0C1937;
}
button.ghost[disabled], a.btn.ghost[disabled] {
  background-color: #FBFDFF !important;
}
button::before, a.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.5rem;
  height: 1.5rem;
  border: 3px solid #73858E;
  border-top-color: transparent;
  border-radius: 50%;
  opacity: 0;
  transition: 0.25s;
  animation: centerAndSpin 1s linear infinite;
  pointer-events: none;
}
button.loading, a.btn.loading {
  color: transparent !important;
  cursor: default;
}
button.loading::before, a.btn.loading::before {
  opacity: 1;
}

@keyframes centerAndSpin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.loader {
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #73858E;
  border-top-color: transparent;
  border-radius: 50%;
  opacity: 1;
  transition: 0.25s;
  animation: spin 1s linear infinite;
  pointer-events: none;
}

.splash {
  z-index: 99999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
}
.splash.content-loaded {
  pointer-events: none;
  opacity: 0;
}

.inner-page-hero {
  background-color: #0C1937;
  color: #FBFDFF;
  padding-block: 8.75rem;
  position: relative;
}
.inner-page-hero .arrow {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.inner-page-hero .dots {
  position: absolute;
  bottom: 0;
  right: var(--layout-padding);
}
@media (max-width: 1020px) {
  .inner-page-hero {
    padding-block: 3.5rem;
    gap: 1.5rem;
    overflow: hidden;
  }
  .inner-page-hero h1 {
    text-align: center;
  }
  .inner-page-hero .dots {
    max-width: 10rem;
  }
}
@media (max-width: 640px) {
  .inner-page-hero .arrow {
    width: 3rem;
  }
  .inner-page-hero .dots {
    max-width: 8rem;
    bottom: -1rem;
  }
}

body:has(.modals .open) {
  overflow: hidden;
}

.modals:has(.open) {
  opacity: 1;
  pointer-events: all;
}

.modals {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 25, 55, 0.7);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s;
}
.modals > * {
  max-width: 100%;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}
.modals > *.open {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}

.mobile-nav-popup {
  transition: 0.3s;
  background-color: #FBFDFF;
  position: absolute;
  top: 0;
  left: -100%;
  width: calc(100% - 4rem);
  height: 100%;
  flex-direction: column;
  gap: 0;
  padding-top: calc(var(--wp-admin--admin-bar--height, 0px) + var(--header-height));
}
.mobile-nav-popup.open {
  left: 0;
}
.mobile-nav-popup .close-mobile-nav {
  font-size: 1.5rem;
  padding: 0;
  position: absolute;
  top: calc(var(--wp-admin--admin-bar--height, 0px) + var(--header-height) / 2);
  right: var(--layout-padding);
  transform: translateY(-50%);
}
.mobile-nav-popup .menu {
  display: flex;
  gap: 2rem;
  padding: 1rem;
  flex-direction: column;
  width: 100%;
  border-bottom: 1px solid #C4CDD1;
  margin-bottom: 1rem;
  align-items: center;
}
.mobile-nav-popup .menu a {
  color: #759CB2;
  font-weight: 600;
}
.mobile-nav-popup .menu .current-menu-item a {
  color: #0C1937;
}
.mobile-nav-popup .menu li, .mobile-nav-popup .menu a {
  font-size: 1rem;
  width: 100%;
  text-align: start;
}
.mobile-nav-popup button[data-open-login].primary, .mobile-nav-popup .mobile-nav-logout {
  display: flex;
  align-self: flex-start;
  background-color: transparent;
  color: #0C1937;
  padding-inline: 1rem;
  font-size: 1.125rem;
}

.login-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 480px;
  width: calc(100% - 2rem);
  pointer-events: none;
  border-radius: 0.75rem;
}
.login-popup .header {
  background-color: #0C1937;
  padding: 1.5rem 2rem;
  color: #FBFDFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}
.login-popup .header .dots-right {
  position: absolute;
  top: 0;
  right: 0;
}
.login-popup .header h6 {
  line-height: 1;
}
.login-popup .header .close-btn {
  z-index: 1;
  padding: 0;
}
.login-popup .content {
  background-color: #FBFDFF;
  overflow-x: hidden;
  width: 100%;
}
.login-popup .content .login-tabs {
  display: flex;
  align-items: center;
}
.login-popup .content .login-tabs .tab {
  text-align: center;
  cursor: pointer;
  min-height: 4rem;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 1px 0px #C4CDD1;
  font-size: 1.125rem;
  color: #759CB2;
  transition: 0.2s;
}
.login-popup .content .login-tabs .tab.active {
  box-shadow: 0px 2px 0px #69D1FF;
  color: #00154A;
}
.login-popup .content .login-tabs-sections .tab-section {
  display: none;
}
.login-popup .content .login-tabs-sections .tab-section.active {
  display: block;
}
.login-popup .content .track {
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4rem;
  position: relative;
  transition: 0.3s;
  left: 0;
}
.login-popup .content .track > * {
  flex: 1 0 100%;
}
.login-popup .content .track[data-step="1"] {
  left: 0;
}
.login-popup .content .track[data-step="2"] {
  left: calc(-100% - 4rem);
}
.login-popup .content .track[data-step="3"] {
  left: calc(-200% - 8rem);
}
.login-popup .content form.email, .login-popup .content form.otp, .login-popup .content .success, .login-popup .content form.guest-form {
  padding: 1.5rem 2rem;
}
@media (max-width: 640px) {
  .login-popup .content form.email, .login-popup .content form.otp, .login-popup .content .success, .login-popup .content form.guest-form {
    padding: 1.5rem 1rem;
  }
}
.login-popup .content form {
  opacity: 1;
  transition: all 0.3s;
}
.login-popup .content form button {
  margin-top: 1rem;
}
.login-popup .content form textarea {
  width: 100%;
}
.login-popup .content form input {
  width: 100%;
}
.login-popup .content form .cb-wrapper {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  max-width: 100%;
}
.login-popup .content form .cb-wrapper input[type=checkbox] {
  margin: 0;
  flex: 0 0 1rem;
}
.login-popup .content form .cb-wrapper label {
  font-size: 0.875rem;
  flex: 1;
}
.login-popup .content form .cb-wrapper label a {
  color: #4B94B5;
  text-decoration: underline;
}
.login-popup .content form .row {
  display: flex;
  gap: 1rem;
  max-width: 100%;
}
.login-popup .content .success {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: #0C1937;
}
.login-popup .content .success i {
  margin-bottom: 1rem;
  color: #5cb85c;
  font-size: 4rem;
}
.login-popup .content .success .loading-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.login-popup form {
  display: flex;
  flex-direction: column;
  gap: 1rem 0.5rem;
}
.login-popup form input:not([type=checkbox]), .login-popup form textarea {
  padding: 1rem;
  border: 1px solid #C4CDD1;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  transition: 0.2s;
}
.login-popup form input:not([type=checkbox]):active, .login-popup form input:not([type=checkbox]):focus, .login-popup form textarea:active, .login-popup form textarea:focus {
  outline: 0;
  box-shadow: 0px 0px 0px 2px #69D1FF;
}
.login-popup form #otp-fields {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
  border: 0;
  padding: 0;
  align-items: center;
  justify-content: space-between;
}
.login-popup form #otp-fields input {
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  transition: 0.3s all;
  width: 100%;
  max-width: 3.5rem;
  aspect-ratio: 1/1;
  padding: 0;
  border: 1px solid #C4CDD1;
  color: #0C1937;
  margin: 0;
}
.login-popup form #otp-fields input:active, .login-popup form #otp-fields input:focus {
  outline: 0;
  box-shadow: 0px 0px 0px 2px #69D1FF;
}
.login-popup form #otp-fields input.error {
  box-shadow: inset 0 0 0 1px #dc6565 !important;
}
.login-popup form #otp-fields input:disabled {
  opacity: 0.5;
}
.login-popup form #otp-fields input:-webkit-autofill {
  box-shadow: inset 0 -2px 0 0 rgba(33, 201, 217, 0.5) !important;
}
.login-popup form .input-wrapper {
  display: flex;
  flex-direction: column;
}
.login-popup form .select-wrapper {
  position: relative;
}
.login-popup form .select-wrapper:has(.options-dropdown.shown) .select-v-icon i {
  transform: rotate(180deg);
}
.login-popup form .select-wrapper .selected-value-wrapper {
  position: relative;
}
.login-popup form .select-wrapper .selected-value-wrapper .select-v-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: calc(100% - 2rem);
  transform: translateY(-50%);
}
.login-popup form .select-wrapper .selected-value-wrapper .select-v-icon i {
  transition: 0.2s;
}
.login-popup form .select-wrapper .selected-value-input {
  cursor: default;
}
.login-popup form .select-wrapper .options-dropdown {
  opacity: 0;
  pointer-events: none;
  border: 1px solid #C4CDD1;
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  background-color: #fff;
  border-radius: 0.5rem;
  transition: 0.2s;
  z-index: 999;
  max-height: 180px;
  overflow-y: scroll;
}
.login-popup form .select-wrapper .options-dropdown.shown {
  top: calc(100% + 0.5rem);
  opacity: 1;
  pointer-events: all;
}
.login-popup form .select-wrapper .options-dropdown li {
  padding: 1rem 1.5rem;
  cursor: pointer;
}
.login-popup form .select-wrapper .options-dropdown li.selected {
  background-color: #F3FCFF;
}
.login-popup form .select-wrapper .options-dropdown li:hover {
  background-color: #F3FCFF;
}
.login-popup form .error-message {
  margin-top: 0.25rem;
  display: none;
  color: #73858E;
}
.login-popup form .buttons {
  align-self: flex-end;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.purchase-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 460px;
  width: calc(100% - 2rem);
  pointer-events: none;
  border-radius: 0.75rem;
}
.purchase-popup .header {
  background-color: #0C1937;
  padding: 1.5rem 2rem;
  color: #FBFDFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}
.purchase-popup .header .dots-right {
  position: absolute;
  top: 0;
  right: 0;
}
.purchase-popup .header h6 {
  line-height: 1;
}
.purchase-popup .header .close-btn {
  z-index: 1;
  padding: 0;
}
.purchase-popup .steps-slider {
  background-color: #FBFDFF;
  overflow-x: hidden;
  padding: 1.5rem 2rem;
  width: 100%;
}
@media (max-width: 640px) {
  .purchase-popup .steps-slider {
    padding: 1.5rem 1rem;
  }
}
.purchase-popup .steps-slider .track {
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4rem;
  position: relative;
  transition: 0.3s;
  left: 0;
}
.purchase-popup .steps-slider .track > * {
  flex: 1 0 100%;
}
.purchase-popup .steps-slider .track[data-step="1"] {
  left: 0;
}
.purchase-popup .steps-slider .track[data-step="2"] {
  left: calc(-100% - 4rem);
}
.purchase-popup .steps-slider .track[data-step="3"] {
  left: calc(-200% - 8rem);
}
.purchase-popup .steps-slider .success {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: #0C1937;
}
.purchase-popup .steps-slider .success i {
  margin-bottom: 1rem;
  color: #5cb85c;
  font-size: 4rem;
}
.purchase-popup .steps-slider .success .loading-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.confirm-free-ticket-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 460px;
  width: calc(100% - 2rem);
  background-color: #FBFDFF;
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
}
.confirm-free-ticket-popup .steps-slider {
  background-color: #FBFDFF;
  overflow-x: hidden;
  padding: 1.5rem 2rem;
  width: 100%;
}
@media (max-width: 640px) {
  .confirm-free-ticket-popup .steps-slider {
    padding: 1.5rem 1rem;
  }
}
.confirm-free-ticket-popup .steps-slider .track {
  height: 100%;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4rem;
  position: relative;
  transition: 0.3s;
  left: 0;
}
.confirm-free-ticket-popup .steps-slider .track > * {
  flex: 1 0 100%;
}
.confirm-free-ticket-popup .steps-slider .track[data-step="1"] {
  left: 0;
}
.confirm-free-ticket-popup .steps-slider .track[data-step="2"] {
  left: calc(-100% - 4rem);
}
.confirm-free-ticket-popup .steps-slider .track[data-step="3"] {
  left: calc(-200% - 8rem);
}
.confirm-free-ticket-popup .steps-slider .confirm-step {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.confirm-free-ticket-popup .steps-slider .success {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: #0C1937;
}
.confirm-free-ticket-popup .steps-slider .success i {
  margin-bottom: 1rem;
  color: #5cb85c;
  font-size: 4rem;
}
.confirm-free-ticket-popup .steps-slider .success .loading-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.confirm-free-ticket-popup .error {
  color: #73858E;
}
.confirm-free-ticket-popup .actions {
  justify-content: flex-end;
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

/*# sourceMappingURL=main.css.map */
