:root {
  --marker-rotation: 0deg;
  --fall-duration: 1.6s;
  --fall-delay: 0s;
  --icon-board-width: 1728;
  --icon-board-height: 1038;
}

@font-face {
  font-family: "Basicdots";
  src: url("../fonts/Basicdots.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Display";
  src: url("../fonts/HelveticaNowDisplay.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Display";
  src: url("../fonts/HelveticaNowDisplayMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Display";
  src: url("../fonts/HelveticaNowDisplayBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Display";
  src: url("../fonts/HelveticaNowDisplayXBd.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Text";
  src: url("../fonts/HelveticaNowText.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Text";
  src: url("../fonts/HelveticaNowTextMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Text";
  src: url("../fonts/HelveticaNowTextExtraBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Text";
  src: url("../fonts/HelveticaNowTextBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  min-height: 100%;
  width: 100%;
}

body {
  font-family: "Helvetica Now Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  margin: 0;
  background-color: #f5f5f5;
  background: linear-gradient(180deg, #F4E9E0 50%, #09C9A1 100%);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100%;
  width: 100%;
  overflow-x: auto;
  overflow-y: auto;
}

.app {
  display: flex;
  position: relative;
  min-height: 50vh;
  width: 100%;
}

.playfield {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: 100vh;
}

.board {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 500px;
  overflow-x: auto;
  overflow-y: hidden;
  width: min(100vw, 100vh * 1728 / 1038);
  aspect-ratio: 1728/1038;
  margin: 0 auto;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.board::-webkit-scrollbar {
  display: none;
}
@media (min-width: 667px) and (min-height: 500px) {
  .board {
    aspect-ratio: 1728/1038;
    max-width: 100%;
    overflow: hidden;
  }
}

.board-content {
  position: relative;
  min-width: min(100%, 100dvh * 1.6647398844, 100vh * 1.6647398844);
  height: calc(100% - 5px);
  aspect-ratio: 1728/1038;
}
@media (min-width: 667px) and (min-height: 500px) {
  .board-content {
    width: 100%;
  }
}

.game-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  overflow: visible;
}

.stage-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  z-index: 2500;
  pointer-events: none;
  width: 100%;
  transform: translate(0, -55%);
  top: calc(510 / 1038 * 100% - 10px);
  padding: 0 15px;
}
@media (min-width: 751px) and (min-height: 500px) {
  .stage-container {
    width: 34%;
    transform: translate(0, -55%);
    top: calc(550 / 1038 * 100%);
  }
}
@media (min-width: 667px) and (min-height: 500px) {
  .stage-container {
    top: calc(560 / 1038 * 100%);
    left: calc(864 / 1728 * 100%);
    transform: translate(-50%, -50%);
    width: 43%;
  }
}

.main-stage {
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  background: url("../images/Background.jpg");
  background-size: 100%;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  overflow: visible;
}
@media (min-width: 751px) and (min-height: 500px) {
  .main-stage {
    padding: 28px 0;
    max-width: 945px;
    width: 100%;
  }
}
@media (min-width: 667px) and (min-height: 500px) {
  .main-stage {
    padding: 20px 0;
    max-width: 940px;
    width: 100%;
  }
}
.main-stage .logowrap {
  position: relative;
}
.main-stage .logowrap:before {
  content: "";
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.main-stage .logowrap:after {
  content: "";
  position: absolute;
  bottom: 15%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
@media (min-width: 751px) and (min-height: 500px) {
  .main-stage .logowrap:before {
    top: 23%;
  }
  .main-stage .logowrap:after {
    bottom: 12%;
  }
}
@media (min-width: 667px) and (min-height: 500px) {
  .main-stage .logowrap:before {
    top: 23%;
  }
  .main-stage .logowrap:after {
    bottom: 10%;
  }
}
.main-stage .logo {
  width: 80%;
  margin: 0 auto;
}
.main-stage .logo svg {
  width: 100%;
}
.main-stage .logo svg path {
  fill: #fff;
}
.main-stage h2 {
  color: #FFF;
  text-align: center;
  font-family: "Helvetica Now Display", sans-serif;
  font-size: 16px;
}
@media (min-width: 667px) and (min-height: 500px) {
  .main-stage h2 {
    font-size: 24px;
  }
}
.main-stage h2 {
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: -0.28px;
  margin: 10px auto 0 auto;
  max-width: 80%;
}
.main-stage p {
  color: #FFF;
  text-align: center;
  font-family: "Helvetica Now Display", sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.16px;
  font-size: 12px;
  max-width: 80%;
  display: block;
  margin: 5px auto;
}
@media (min-width: 667px) and (min-height: 500px) {
  .main-stage p {
    font-size: 0.9rem;
  }
}
.main-stage p {
  letter-spacing: -0.093px;
}

.countdown-banner {
  position: relative;
  z-index: 2501;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  background-image: url(../images-webp/count_down_backer.webp);
  background-size: 100% 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  color: #FFD100;
  font-family: "Basicdots", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  text-shadow: 0 0 8.32px rgba(254, 222, 1, 0.75);
  padding: 0 7%;
  width: clamp(250px, 2vw, 355px);
  aspect-ratio: 339/79;
}
@media (min-width: 667px) and (min-height: 500px) {
  .countdown-banner {
    gap: 10px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    text-shadow: 0 0 10px rgba(254, 222, 1, 0.75);
    width: 250px;
  }
}

.countdown-label,
.countdown-value {
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-shadow: inherit;
  color: inherit;
  white-space: nowrap;
}

.score-banner {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  min-width: 100px;
  max-width: 134px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-weight: 700;
  font-size: 18px;
  color: #3A2C26;
  background: url("../images/score.svg") no-repeat center/contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 4000;
  white-space: nowrap;
  padding: 8px;
}
.score-banner.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 751px) {
  .score-banner {
    left: auto;
    right: 16px;
    transform: translateY(-20px);
    min-width: 96px;
  }
  .score-banner.is-visible {
    transform: translateY(0);
  }
}

.score-banner-label {
  font-size: 10px;
}
@media (min-width: 751px) and (max-width: 751px) {
  .score-banner-label {
    font-size: 24px;
  }
}
.score-banner-label {
  letter-spacing: 0.08em;
}

.score-banner-value {
  font-size: 16px;
}
@media (min-width: 751px) and (max-width: 751px) {
  .score-banner-value {
    font-size: 24px;
  }
}

.surprise-button {
  top: calc(920 / 1038 * 100%) !important;
  left: calc(80 / 1728 * 100%) !important;
  width: calc(150 / 1728 * 100%);
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  z-index: 20000;
  pointer-events: auto;
  transform: translate(-50%, -50%) !important;
  --marker-rotation: 0deg;
}
.surprise-button:hover:not(:disabled) {
  transform: translate(-50%, -50%) scale(1.05) !important;
}
.surprise-button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: translate(-50%, -50%) !important;
}

.surprise-button-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.card-rain-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 10000;
  transform: translateZ(0);
}

.card-rain-card {
  position: absolute;
  top: -200px;
  will-change: transform, opacity;
  opacity: 1;
  backface-visibility: hidden;
  perspective: 1000;
  transform: translateZ(0);
}
.card-rain-card img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.card-rain-card.is-active {
  animation: card-fall var(--fall-duration, 2.5s) cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards;
  animation-delay: var(--fall-delay, 0s);
}
@keyframes card-fall {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(var(--travel-distance, 120vh));
  }
}
.ctct-form-custom .ctct-form-header {
  font-size: 1.5rem !important;
  margin-bottom: 12px !important;
  padding: 0 !important;
  white-space: nowrap !important;
}

.ctct-form-custom .ctct-form-text {
  font-size: 0.7rem !important;
  line-height: 0.8rem !important;
}

.ctct-gdpr-text {
  font-size: 0.8rem;
}

.ctct-form-button {
  height: 30px !important;
}

#email_address_3 {
  border: 1px solid #3A2C26 !important;
  height: 30px !important;
}

.signup-title {
  font-size: clamp(30px, 2vw, 44px);
  margin: 15px 0 0 0 !important;
}

.ctct-form-defaults {
  background-color: transparent !important;
}

.email-signup-button {
  border: none;
  background: transparent !important;
  color: #F4E9E0;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  padding: 0;
  height: 20px !important;
  display: flex;
  align-items: center;
  gap: 6px;
}
.email-signup-button:hover {
  background: transparent !important;
  opacity: 0.8;
  text-decoration: underline;
}
.email-signup-button:active {
  background: transparent !important;
}

.email-signup-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: none;
}
.email-signup-icon svg {
  width: 16px;
  height: 16px;
  display: block;
  transition: none;
}
@media (max-width: calc(667px - 1px)), (max-height: 499px) {
  .email-signup-icon svg {
    width: 14px;
    height: 14px;
  }
}

.email-signup-modal {
  display: none;
  position: fixed;
  z-index: 3601;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 21, 18, 0.75);
  backdrop-filter: blur(0px);
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.email-signup-modal-content {
  background-image: url("../images-webp/Card.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 40px 30px;
  position: relative;
  min-width: 300px;
  min-height: 200px;
  width: auto;
  max-width: 420px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  backface-visibility: hidden;
  transform: translateZ(0);
  overflow: hidden;
}
.email-signup-modal-content > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 751px), (max-height: 499px) {
  .email-signup-modal-content {
    min-width: auto;
    width: calc(90vw - 20px);
    max-width: calc(90vw - 20px);
    padding: 30px 20px;
    min-height: auto;
  }
}

.email-signup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: opacity 0.2s ease;
}
.email-signup-close:hover {
  opacity: 0.7;
}

.email-signup-modal-title {
  font-size: 32px;
  font-weight: 700;
  color: #3A2C26;
  margin: 0 0 16px 0;
  line-height: 1.2;
}
@media (max-width: 751px), (max-height: 499px) {
  .email-signup-modal-title {
    font-size: clamp(24px, 6vw, 32px);
    margin: 0 0 12px 0;
  }
}

.email-signup-modal-message {
  font-size: 16px;
  color: #3A2C26;
  margin: 0 0 24px 0;
  line-height: 1.4;
}
@media (max-width: 751px), (max-height: 499px) {
  .email-signup-modal-message {
    font-size: 14px;
    margin: 0 0 20px 0;
  }
}

.ctct-inline-form input[type=submit],
.ctct-inline-form button[type=submit],
.ctct-inline-form button.submit {
  padding: 0 30px !important;
  cursor: pointer !important;
  color: #3A2C26 !important;
  text-align: center !important;
  font-size: clamp(14px, 2vw, 20px) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 22px !important;
  letter-spacing: -0.25px !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 15px solid transparent !important;
  border-style: solid !important;
  -o-border-image: url("../images/button-default.svg") 15 !important;
  border-image: url("../images/button-default.svg") 15 !important;
  border-image-slice: 15 fill !important;
  border-image-repeat: stretch space !important;
  border-image-width: 15px !important;
  border-image-outset: 0 !important;
  background-color: #F4E9E0 !important;
  background-clip: padding-box !important;
  min-height: 50px !important;
  box-sizing: border-box !important;
  width: 100% !important;
}
.ctct-inline-form input[type=submit]::before,
.ctct-inline-form button[type=submit]::before,
.ctct-inline-form button.submit::before {
  content: "" !important;
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  position: absolute !important;
  pointer-events: none !important;
  z-index: -1 !important;
}
.ctct-inline-form input[type=submit]:hover,
.ctct-inline-form button[type=submit]:hover,
.ctct-inline-form button.submit:hover {
  -o-border-image: url("../images/button-hover.svg") 15 !important;
  border-image: url("../images/button-hover.svg") 15 !important;
  border-image-slice: 15 !important;
  background: #E0D4C3 !important;
}
.ctct-inline-form input[type=submit]:active,
.ctct-inline-form button[type=submit]:active,
.ctct-inline-form button.submit:active {
  -o-border-image: url("../images/button-pressed.svg") 15 !important;
  border-image: url("../images/button-pressed.svg") 15 !important;
  border-image-slice: 15 !important;
}
@media (max-width: 751px) {
  .ctct-inline-form input[type=submit],
  .ctct-inline-form button[type=submit],
  .ctct-inline-form button.submit {
    width: 100% !important;
  }
}

@supports (hanging-punctuation: first) and (-webkit-appearance: none) {
  .ctct-inline-form input[type=submit],
  .ctct-inline-form button[type=submit],
  .ctct-inline-form button.submit {
    padding: 10px 30px !important;
    -o-border-image: none !important;
    border-image: none !important;
    border-radius: 8px !important;
    border: 1px solid #3A2C26 !important;
    background: #F4E9E0 !important;
    box-shadow: 1.5px 1.5px 0 0 #3A2C26 !important;
  }
  .ctct-inline-form input[type=submit]:hover,
  .ctct-inline-form button[type=submit]:hover,
  .ctct-inline-form button.submit:hover {
    -o-border-image: none !important;
    border-image: none !important;
    background: #E0D4C3 !important;
  }
  .ctct-inline-form input[type=submit]:active,
  .ctct-inline-form button[type=submit]:active,
  .ctct-inline-form button.submit:active {
    -o-border-image: none !important;
    border-image: none !important;
  }
}
.email-signup {
  background-color: #097360;
  padding: 12px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3200;
}
@media (max-width: 751px), (max-height: 499px) {
  .email-signup {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}

.email-signup-form {
  width: min(640px, 100%);
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 751px), (max-height: 499px) {
  .email-signup-form {
    width: 100%;
  }
}

.email-signup-label {
  color: #F4E9E0;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
}
@media (max-width: 751px), (max-height: 499px) {
  .email-signup-label {
    display: none;
  }
}

.email-signup-field {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  max-width: 450px;
}
@media (max-width: 751px), (max-height: 499px) {
  .email-signup-field {
    max-width: 100%;
    width: 100%;
  }
}
.email-signup-field .email-error-msg {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  padding: 8px 12px;
  background-color: #3A2C26;
  color: #F4E9E0;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.email-signup-field .email-error-msg::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 16px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #3A2C26;
}
.email-signup-field input {
  width: 100%;
  width: 100%;
  max-width: 450px;
  border: none;
  font-size: 14px;
  color: #3A2C26;
  background-color: transparent;
  background-image: url(../images-webp/input_backer.webp);
  background-size: 100% 100%;
  display: flex;
  height: 40px;
  padding: 8px 50px 8px 8px;
  align-items: center;
  gap: 8px;
  box-sizing: border-box;
}
.email-signup-field input::-moz-placeholder {
  color: #3A2C26;
}
.email-signup-field input::placeholder {
  color: #3A2C26;
}
@media (min-width: 667px) {
  .email-signup-field input::-moz-placeholder {
    color: transparent;
  }
  .email-signup-field input::placeholder {
    color: transparent;
  }
}
@media (max-width: 1299px) {
  .email-signup-field input {
    max-width: 100%;
  }
}
.email-signup-field button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 2;
}
.email-signup-field button:hover {
  transform: translateY(-50%) scale(1.05);
  background: transparent;
}

.email-submit-icon svg {
  display: block;
}

.footer-actions {
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: calc(667px - 1px)), (max-height: 499px) {
  .footer-actions {
    position: fixed;
    top: 10px;
    right: 10px;
    left: auto;
    bottom: auto;
    transform: none;
    z-index: 10001;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
}

.footer-share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: transparent;
  color: #F4E9E0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s ease;
}
.footer-share:hover {
  opacity: 0.8;
}
@media (max-width: calc(667px - 1px)), (max-height: 499px) {
  .footer-share {
    color: #3A2C26;
    font-size: 14px;
  }
}

.footer-share-icon svg {
  display: block;
}

.privacy-link {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  color: #F4E9E0;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.privacy-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}
@media (max-width: calc(667px - 1px)), (max-height: 499px) {
  .privacy-link {
    position: fixed;
    top: 10px;
    left: 10px;
    right: auto;
    transform: none;
    z-index: 10001;
    font-size: 14px;
    color: #3A2C26;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 3600;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(27, 21, 18, 0.75);
  backdrop-filter: blur(0px);
  flex-direction: row;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-left {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
  padding: 20px;
  max-height: 100vh;
  margin-left: -10%;
  box-sizing: border-box;
}

.modal-right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 40px;
}

.modal-content {
  background-image: url("../images-webp/Card.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 30px;
  position: relative;
  width: 700px;
  max-width: calc(100vw - 40px);
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.modal-content > *:not(.close) {
  position: relative;
  z-index: 1;
}
@media (max-width: 751px), (max-height: 499px) {
  .modal-content {
    min-width: auto;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    min-height: auto;
    margin-bottom: 20px;
  }
}

@media (max-width: 667px), (max-height: 499px) {
  .modal {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .modal-left {
    width: 100%;
    height: auto;
    min-height: auto;
    margin-left: 0;
    padding: 8px 16px;
    margin-bottom: 12px;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .modal-image-display {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    min-height: 0px;
    margin-left: 0;
  }
  .modal-right {
    width: 100%;
    height: auto;
    margin-right: 0;
    padding: 0;
    display: flex;
    justify-content: center;
  }
}
.progress-bar {
  position: relative;
  width: 200px;
  height: 4px;
  border-radius: 9999px;
  overflow: hidden;
}
.progress-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  opacity: 0.4;
  background: #B5A89C;
}

.progress-bar-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  border-radius: 9999px;
  background: #3A2C26;
  transition: width 0.3s ease;
}

@keyframes slowPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}
.close {
  position: absolute;
  right: 28px;
  top: 28px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.close svg {
  display: block;
  width: 17px;
  height: 17px;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.close:hover svg {
  opacity: 0.7;
}
.close.pulsing {
  animation: slowPulse 2s ease-in-out infinite;
}
@media (max-width: 667px), (max-height: 499px) {
  .close {
    top: 28px;
    right: 28px;
    height: 40px;
  }
}

.modal-progress {
  position: absolute;
  left: 50%;
  top: 0;
}
@media (min-width: 751px) and (min-height: 500px) {
  .modal-progress {
    top: 28px;
  }
}
.modal-progress {
  transform: translateX(-50%);
  width: auto;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}

#question-text {
  padding: 8% 0;
  color: #3A2C26;
  font-size: clamp(18px, 2vw, 46px);
  line-height: 104.348%;
}
@media (max-width: 751px), (max-height: 499px) {
  #question-text {
    margin-bottom: 0px;
    padding: 10px 0;
  }
}

.answers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}
@media (max-width: 667px), (max-height: 499px) {
  .answers-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.score-popup {
  display: none;
  position: fixed;
  z-index: 3601;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 21, 18, 0.75);
  backdrop-filter: blur(0px);
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.score-popup-content {
  background-image: url("../images-webp/Card.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 60px 40px;
  position: relative;
  min-width: 610px;
  min-height: 420px;
  width: 500px;
  max-width: calc(100vw - 40px);
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.score-popup-content > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 751px), (max-height: 499px) {
  .score-popup-content {
    min-width: auto;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    padding: 40px 20px;
    min-height: auto;
  }
}

.score-popup-title {
  font-size: 64px;
  font-weight: 700;
  color: #3A2C26;
  margin: 0 0 24px 0;
  line-height: 1.2;
}
@media (max-width: 751px), (max-height: 499px) {
  .score-popup-title {
    font-size: clamp(32px, 8vw, 64px);
  }
}

.score-popup-message {
  font-size: 30px;
  line-height: 104.348%;
}
@media (min-width: 667px) {
  .score-popup-message {
    font-size: 46px;
  }
}
.score-popup-message {
  color: #3A2C26;
  margin: 0 0 40px 0;
  line-height: 1.4;
  font-weight: 800;
  margin: 0 0 30px 0;
}

.score-popup-logo {
  width: min(240px, 60%);
  margin: 0 auto 24px auto;
  display: block;
  max-width: 164px;
}
.score-popup-logo svg {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 751px), (max-height: 499px) {
  .score-popup-logo {
    margin-bottom: 16px;
  }
}

.score-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: opacity 0.2s ease;
}
.score-close:hover {
  opacity: 0.7;
}

.score-popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.score-popup-button {
  padding: 0 30px;
  cursor: pointer;
  color: #3A2C26;
  text-align: center;
  font-size: clamp(14px, 2vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 15px solid transparent;
  border-style: solid;
  -o-border-image: url("../images/button-default.svg") 15;
  border-image: url("../images/button-default.svg") 15;
  border-image-slice: 15 fill;
  border-image-repeat: stretch space;
  border-image-width: 15px;
  border-image-outset: 0;
  background-color: #F4E9E0;
  background-clip: padding-box;
  min-height: 50px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.score-popup-button::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.score-popup-button:hover {
  -o-border-image: url("../images/button-hover.svg") 15;
  border-image: url("../images/button-hover.svg") 15;
  border-image-slice: 15;
  background: #E0D4C3;
}
.score-popup-button:active {
  -o-border-image: url("../images/button-pressed.svg") 15;
  border-image: url("../images/button-pressed.svg") 15;
  border-image-slice: 15;
}
@media (max-width: 751px) {
  .score-popup-button {
    width: 100%;
  }
}

@supports (hanging-punctuation: first) and (-webkit-appearance: none) {
  .score-popup-button {
    padding: 10px 30px;
    cursor: pointer;
    color: #3A2C26;
    text-align: center;
    font-size: clamp(14px, 2vw, 20px);
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: -0.25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 15px solid transparent;
    border-style: solid;
    -o-border-image: none;
    border-image: none;
    border-image-slice: 15;
    border-image-repeat: stretch;
    border-image-width: 15px;
    border-image-outset: 0;
    background-color: #F4E9E0;
    background-clip: padding-box;
    min-height: 50px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid var(--Primary-Palette-Monumental-Bronze, #3A2C26);
    background: var(--Primary-Palette-Capital-Cream, #F4E9E0);
    box-shadow: 1.5px 1.5px 0 0 #3A2C26;
  }
  .score-popup-button::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: -1;
  }
  .score-popup-button:hover {
    -o-border-image: none;
    border-image: none;
    border-image-slice: 15;
    background: #E0D4C3;
  }
  .score-popup-button:active {
    -o-border-image: none;
    border-image: none;
    border-image-slice: 15;
  }
  @media (max-width: 751px) {
    .score-popup-button {
      width: 100%;
    }
  }
}
.share-popup {
  display: none;
  position: fixed;
  z-index: 3601;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 21, 18, 0.75);
  backdrop-filter: blur(0px);
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.share-popup-content {
  background-image: url("../images-webp/Card.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 40px 30px;
  position: relative;
  min-width: 300px;
  min-height: 200px;
  width: auto;
  max-width: calc(50vw - 20px);
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.share-popup-content > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 751px), (max-height: 499px) {
  .share-popup-content {
    min-width: auto;
    width: calc(90vw - 20px);
    max-width: calc(90vw - 20px);
    padding: 30px 20px;
    min-height: auto;
  }
}

.share-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: opacity 0.2s ease;
}
.share-close:hover {
  opacity: 0.7;
}

.share-popup-title {
  font-size: 32px;
  font-weight: 700;
  color: #3A2C26;
  margin: 0 0 24px 0;
  line-height: 1.2;
}
@media (max-width: 751px), (max-height: 499px) {
  .share-popup-title {
    font-size: clamp(24px, 6vw, 32px);
    margin: 0 0 20px 0;
  }
}

.share-popup-icons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 751px), (max-height: 499px) {
  .share-popup-icons {
    gap: 16px;
  }
}

.share-icon-button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}
.share-icon-button:hover {
  transform: scale(1.1);
}
.share-icon-button:active {
  transform: scale(0.95);
}
.share-icon-button svg {
  width: 30px;
  height: 30px;
}
.share-icon-button svg path {
  fill: #3A2C26 !important;
}

.answer-button {
  padding: 0 30px;
  cursor: pointer;
  color: #3A2C26;
  text-align: center;
  font-size: clamp(14px, 2vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 20px solid transparent;
  border-style: solid;
  -o-border-image: url("../images/button-default.svg") 15;
  border-image: url("../images/button-default.svg") 15;
  border-image-slice: 15 fill;
  border-image-repeat: stretch;
  border-image-width: 14px;
  border-image-outset: 0;
  background-color: #F4E9E0;
  background-clip: padding-box;
  min-height: 50px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.answer-button::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.answer-button:hover:not(.correct):not(.wrong) {
  -o-border-image: url("../images/button-hover.svg") 15;
  border-image: url("../images/button-hover.svg") 15;
  border-image-slice: 15;
  background: #E0D4C3;
}
.answer-button:active:not(.correct):not(.wrong) {
  -o-border-image: url("../images/button-pressed.svg") 15;
  border-image: url("../images/button-pressed.svg") 15;
  border-image-slice: 15;
}
.answer-button.correct {
  color: #3A2C26;
  -o-border-image: url("../images/button-correct.svg") 15;
  border-image: url("../images/button-correct.svg") 15;
  border-image-slice: 15;
  background-color: #BAD505;
}
.answer-button.correct::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='18' viewBox='0 0 22 18' fill='none'%3E%3Cpath d='M7.28492 13.264L2.33576 8.48466L0.708052 10.1583L7.34255 16.5652L21.0961 2.32297L19.4226 0.706934L7.28492 13.264Z' fill='%233A2C26' stroke='%233A2C26'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}
.answer-button.wrong {
  color: white;
  -o-border-image: url("../images/button-incorrect.svg") 15;
  border-image: url("../images/button-incorrect.svg") 15;
  border-image-slice: 15;
  background: #3A2C26;
}
.answer-button.wrong::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 29px;
  height: 29px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29' fill='none'%3E%3Cpath d='M22.2941 7.57918L20.6207 5.96314L14.2138 12.5976L7.57932 6.19077L5.96328 7.86423L12.5978 14.2711L6.19092 20.9056L7.86438 22.5216L14.2712 15.8871L20.9057 22.294L22.5218 20.6205L15.8873 14.2137L22.2941 7.57918Z' fill='white'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}
.answer-button:disabled {
  cursor: not-allowed;
}
@media (max-width: 751px) {
  .answer-button {
    width: 100%;
  }
}

@supports (hanging-punctuation: first) and (-webkit-appearance: none) {
  .answer-button {
    padding: 10px 30px;
    cursor: pointer;
    color: #3A2C26;
    text-align: center;
    font-size: clamp(14px, 2vw, 20px);
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: -0.25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 20px solid transparent;
    border-style: solid;
    -o-border-image: none;
    border-image: none;
    border-image-slice: 15;
    border-image-repeat: stretch;
    border-image-width: 14px;
    border-image-outset: 0;
    background-color: #F4E9E0;
    background-clip: padding-box;
    min-height: 50px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid var(--Primary-Palette-Monumental-Bronze, #3A2C26);
    background: var(--Primary-Palette-Capital-Cream, #F4E9E0);
    box-shadow: 1.5px 1.5px 0 0 #3A2C26;
  }
  .answer-button::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    z-index: -1;
  }
  .answer-button:hover:not(.correct):not(.wrong) {
    -o-border-image: none;
    border-image: none;
    border-image-slice: 15;
    background: #E0D4C3;
  }
  .answer-button:active:not(.correct):not(.wrong) {
    -o-border-image: none;
    border-image: none;
    border-image-slice: 15;
  }
  .answer-button.correct {
    color: #3A2C26;
    -o-border-image: none;
    border-image: none;
    border-image-slice: 15;
    background-color: #BAD505;
  }
  .answer-button.correct::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='18' viewBox='0 0 22 18' fill='none'%3E%3Cpath d='M7.28492 13.264L2.33576 8.48466L0.708052 10.1583L7.34255 16.5652L21.0961 2.32297L19.4226 0.706934L7.28492 13.264Z' fill='%233A2C26' stroke='%233A2C26'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
  }
  .answer-button.wrong {
    color: white;
    -o-border-image: none;
    border-image: none;
    border-image-slice: 15;
    background: #3A2C26;
  }
  .answer-button.wrong::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 29px;
    height: 29px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29' fill='none'%3E%3Cpath d='M22.2941 7.57918L20.6207 5.96314L14.2138 12.5976L7.57932 6.19077L5.96328 7.86423L12.5978 14.2711L6.19092 20.9056L7.86438 22.5216L14.2712 15.8871L20.9057 22.294L22.5218 20.6205L15.8873 14.2137L22.2941 7.57918Z' fill='white'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
  }
  .answer-button:disabled {
    cursor: not-allowed;
  }
  @media (max-width: 751px) {
    .answer-button {
      width: 100%;
    }
  }
}
.modal-image-display {
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: none;
  max-width: 100%;
}
@media (max-width: 751px) {
  .modal-image-display {
    max-height: 100px;
    min-height: 100px;
    width: auto;
    max-width: 100%;
  }
}
@media (min-width: 667px) and (min-height: 500px) {
  .modal-image-display {
    transform: rotate(var(--modal-image-rotation, 0deg)) scale(var(--modal-image-scale, 1));
    transition: transform 0.3s ease;
    max-width: calc(100% - 40px);
    max-height: 600px;
  }
}

@media (min-width: 667px) and (min-height: 500px) {
  .modal-image-display[data-image-id=farecard] {
    transform: rotate(45deg) scale(1.1) translateX(-100px);
    max-height: 550px;
  }
}

.question-image {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: opacity 0.3s, filter 0.3s ease;
  transform-origin: 0 0;
}
.question-image.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media (max-width: 751px) {
  .question-image {
    max-height: 200px;
    width: auto;
    max-width: 100%;
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) rotate(var(--marker-rotation, 0deg)) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) rotate(var(--marker-rotation, 0deg)) scale(1.1);
  }
  100% {
    transform: translate(-50%, -50%) rotate(var(--marker-rotation, 0deg)) scale(1);
  }
}
.question-marker {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  transform: translate(-50%, -50%) rotate(var(--marker-rotation, 0deg));
  pointer-events: auto;
  --marker-rotation: 0deg;
  height: auto;
  left: 50%;
  transition: filter 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
}
.question-marker:hover:not(:has(.question-image.disabled)) {
  transform: translate(-50%, -50%) rotate(var(--marker-rotation, 0deg)) scale(1.1);
}
.question-marker.pulsing {
  animation: pulse 1.8s ease-in-out;
  will-change: transform, filter;
}
.question-marker {
  max-height: 200px;
  max-width: 80%;
}

.question-marker.question-image-escalator,
.question-marker.question-image-escalator-disabled {
  top: calc(768 / 1038 * 100%);
  left: calc(1119 / 1728 * 100%);
  width: calc(211 / 1728 * 100%);
  --marker-rotation: 9.44deg;
}

.question-marker.question-image-pantheon,
.question-marker.question-image-pantheon-disabled {
  top: calc(729 / 1038 * 100%);
  left: calc(613 / 1728 * 100%);
  width: calc(267 / 1728 * 100%);
  --marker-rotation: 6.49deg;
}

.question-marker.question-image-smarttrip,
.question-marker.question-image-smarttrip-disabled {
  top: calc(730 / 1038 * 100%);
  left: calc(126 / 1728 * 100%);
  width: calc(173 / 1728 * 100%);
  --marker-rotation: 30.75deg;
}

.question-marker.question-image-bus,
.question-marker.question-image-bus-disabled {
  top: calc(586 / 1038 * 100% - 10px);
  left: calc(828 / 1728 * 100%);
  width: calc(334 / 1728 * 100%);
  --marker-rotation: -30.09deg;
}

.question-marker.question-image-bee,
.question-marker.question-image-bee-disabled {
  top: calc(219 / 1038 * 100% - 45px);
  left: calc(260 / 1728 * 100%);
  width: calc(179 / 1728 * 100%);
  --marker-rotation: 3.48deg;
}

.question-marker.question-image-pylon,
.question-marker.question-image-pylon-disabled {
  top: calc(601 / 1038 * 100% - 10px);
  left: calc(1607 / 1728 * 100%);
  width: calc(88 / 1728 * 100%);
  --marker-rotation: -10.35deg;
}

.question-marker.question-image-token,
.question-marker.question-image-token-disabled {
  top: calc(300 / 1038 * 100% - 45px);
  left: calc(115 / 1728 * 100%);
  width: calc(92 / 1728 * 100%);
  --marker-rotation: 35.76deg;
}

.question-marker.question-image-flag,
.question-marker.question-image-flag-disabled {
  top: calc(281 / 1038 * 100% - 45px);
  left: calc(621 / 1728 * 100%);
  width: calc(207 / 1728 * 100%);
  --marker-rotation: 23.11deg;
}

.question-marker.question-image-train,
.question-marker.question-image-train-disabled {
  top: calc(171 / 1038 * 100% - 45px);
  left: calc(1064 / 1728 * 100%);
  width: calc(316 / 1728 * 100%);
  --marker-rotation: 6.22deg;
}

.question-marker.question-image-silver,
.question-marker.question-image-silver-disabled {
  top: calc(533 / 1038 * 100% - 10px);
  left: calc(1417 / 1728 * 100%);
  width: calc(237 / 1728 * 100%);
  --marker-rotation: -34.87deg;
}

.question-marker.question-image-stone,
.question-marker.question-image-stone-disabled {
  top: calc(232 / 1038 * 100% - 45px);
  left: calc(435 / 1728 * 100%);
  width: calc(137 / 1728 * 100%);
  --marker-rotation: 26.26deg;
}

.question-marker.question-image-farecard,
.question-marker.question-image-farecard-disabled {
  top: calc(181 / 1038 * 100% - 45px);
  left: calc(1348 / 1728 * 100%);
  width: calc(123 / 1728 * 100%);
  --marker-rotation: 82.34deg;
}

.question-marker.question-image-manual,
.question-marker.question-image-manual-disabled {
  top: calc(272 / 1038 * 100% - 45px);
  left: calc(1580 / 1728 * 100%);
  width: calc(199 / 1728 * 100%);
  --marker-rotation: 11.14deg;
}

.question-marker.question-image-signage,
.question-marker.question-image-signage-disabled {
  top: calc(190 / 1038 * 100% - 45px);
  left: calc(84 / 1728 * 100%);
  width: calc(111 / 1728 * 100%);
  --marker-rotation: -5.07deg;
}

.question-marker.question-image-toktik,
.question-marker.question-image-toktik-disabled {
  top: calc(562 / 1038 * 100% - 10px);
  left: calc(1142 / 1728 * 100%);
  width: calc(227 / 1728 * 100%);
  --marker-rotation: -7.74deg;
}

.question-marker.question-image-yard,
.question-marker.question-image-yard-disabled {
  top: calc(814 / 1038 * 100%);
  left: calc(1004 / 1728 * 100%);
  width: calc(268 / 1728 * 100%);
  --marker-rotation: -73.22deg;
}

.question-marker.question-image-lbj,
.question-marker.question-image-lbj-disabled {
  top: calc(445 / 1038 * 100% - 10px);
  left: calc(778 / 1728 * 100%);
  width: calc(364 / 1728 * 100%);
  --marker-rotation: -32.02deg;
}

.question-marker.question-image-tapride,
.question-marker.question-image-tapride-disabled {
  top: calc(827 / 1038 * 100%);
  left: calc(479 / 1728 * 100%);
  width: calc(153 / 1728 * 100%);
  --marker-rotation: -21.62deg;
}

.question-marker.question-image-offpeak,
.question-marker.question-image-offpeak-disabled {
  top: calc(805 / 1038 * 100%);
  left: calc(1476 / 1728 * 100%);
  width: calc(156 / 1728 * 100%);
  --marker-rotation: 9.44deg;
}

.question-marker.question-image-redline,
.question-marker.question-image-redline-disabled {
  top: calc(198 / 1038 * 100% - 45px);
  left: calc(770 / 1728 * 100%);
  width: calc(239 / 1728 * 100%);
  --marker-rotation: 30.66deg;
}

.question-marker.question-image-rhythms,
.question-marker.question-image-rhythms-disabled {
  top: calc(400 / 1038 * 100% - 45px);
  left: calc(1056 / 1728 * 100%);
  width: calc(186 / 1728 * 100%);
  --marker-rotation: -10.50deg;
}

.question-marker.question-image-slogan,
.question-marker.question-image-slogan-disabled {
  top: calc(717 / 1038 * 100%);
  left: calc(1259 / 1728 * 100%);
  width: calc(203 / 1728 * 100%);
  --marker-rotation: -14.66deg;
}

.question-marker.question-image-metroaccess,
.question-marker.question-image-metroaccess-disabled {
  top: calc(385 / 1038 * 100% - 45px);
  left: calc(1298 / 1728 * 100%);
  width: calc(271 / 1728 * 100%);
  --marker-rotation: -9.58deg;
}

.question-marker.question-image-traincar,
.question-marker.question-image-traincar-disabled {
  top: calc(762 / 1038 * 100%);
  left: calc(858 / 1728 * 100%);
  width: calc(226 / 1728 * 100%);
  --marker-rotation: -11.01deg;
}

.question-marker.question-image-busstop,
.question-marker.question-image-busstop-disabled {
  top: calc(745 / 1038 * 100%);
  left: calc(316 / 1728 * 100%);
  width: calc(151 / 1728 * 100%);
  --marker-rotation: 52.13deg;
}

@media (min-width: 751px) and (min-height: 500px) {
  .question-marker.question-image-escalator,
  .question-marker.question-image-escalator-disabled {
    top: calc(815 / 1038 * 100%);
    left: calc(1166 / 1728 * 100%);
    width: calc(214 / 1728 * 100%);
    --marker-rotation: 6.99deg;
  }
  .question-marker.question-image-pantheon,
  .question-marker.question-image-pantheon-disabled {
    top: calc(754 / 1038 * 100%);
    left: calc(644 / 1728 * 100%);
    width: calc(267 / 1728 * 100%);
    --marker-rotation: 6.49deg;
  }
  .question-marker.question-image-smarttrip,
  .question-marker.question-image-smarttrip-disabled {
    top: calc(759 / 1038 * 100%);
    left: calc(151 / 1728 * 100%);
    width: calc(191 / 1728 * 100%);
    --marker-rotation: 30.75deg;
  }
  .question-marker.question-image-bus,
  .question-marker.question-image-bus-disabled {
    top: calc(608 / 1038 * 100%);
    left: calc(864 / 1728 * 100%);
    width: calc(334 / 1728 * 100%);
    --marker-rotation: -30.09deg;
  }
  .question-marker.question-image-bee,
  .question-marker.question-image-bee-disabled {
    top: calc(244 / 1038 * 100%);
    left: calc(289 / 1728 * 100%);
    width: calc(194 / 1728 * 100%);
    --marker-rotation: 3.48deg;
  }
  .question-marker.question-image-pylon,
  .question-marker.question-image-pylon-disabled {
    top: calc(572 / 1038 * 100%);
    left: calc(1634 / 1728 * 100%);
    width: calc(95 / 1728 * 100%);
    --marker-rotation: -10.35deg;
  }
  .question-marker.question-image-token,
  .question-marker.question-image-token-disabled {
    top: calc(322 / 1038 * 100%);
    left: calc(131 / 1728 * 100%);
    width: calc(92 / 1728 * 100%);
    --marker-rotation: 56.81deg;
  }
  .question-marker.question-image-flag,
  .question-marker.question-image-flag-disabled {
    top: calc(308 / 1038 * 100%);
    left: calc(653 / 1728 * 100%);
    width: calc(221 / 1728 * 100%);
    --marker-rotation: 23.11deg;
  }
  .question-marker.question-image-train,
  .question-marker.question-image-train-disabled {
    top: calc(186 / 1038 * 100%);
    left: calc(1089 / 1728 * 100%);
    width: calc(346 / 1728 * 100%);
    --marker-rotation: 6.22deg;
  }
  .question-marker.question-image-silver,
  .question-marker.question-image-silver-disabled {
    top: calc(556 / 1038 * 100%);
    left: calc(1441 / 1728 * 100%);
    width: calc(251 / 1728 * 100%);
    --marker-rotation: -34.87deg;
  }
  .question-marker.question-image-stone,
  .question-marker.question-image-stone-disabled {
    top: calc(260 / 1038 * 100%);
    left: calc(457 / 1728 * 100%);
    width: calc(152 / 1728 * 100%);
    --marker-rotation: 26.26deg;
  }
  .question-marker.question-image-farecard,
  .question-marker.question-image-farecard-disabled {
    top: calc(194 / 1038 * 100%);
    left: calc(1385 / 1728 * 100%);
    width: calc(128 / 1728 * 100%);
    --marker-rotation: 82.34deg;
  }
  .question-marker.question-image-manual,
  .question-marker.question-image-manual-disabled {
    top: calc(262 / 1038 * 100%);
    left: calc(1595 / 1728 * 100%);
    width: calc(191 / 1728 * 100%);
    --marker-rotation: 11.14deg;
  }
  .question-marker.question-image-signage,
  .question-marker.question-image-signage-disabled {
    top: calc(188 / 1038 * 100%);
    left: calc(109 / 1728 * 100%);
    width: calc(117 / 1728 * 100%);
    --marker-rotation: -5.07deg;
  }
  .question-marker.question-image-toktik,
  .question-marker.question-image-toktik-disabled {
    top: calc(579 / 1038 * 100%);
    left: calc(1178 / 1728 * 100%);
    width: calc(227 / 1728 * 100%);
    --marker-rotation: -7.74deg;
  }
  .question-marker.question-image-yard,
  .question-marker.question-image-yard-disabled {
    top: calc(827 / 1038 * 100%);
    left: calc(1037 / 1728 * 100%);
    width: calc(233 / 1728 * 100%);
    --marker-rotation: -69.60deg;
  }
  .question-marker.question-image-lbj,
  .question-marker.question-image-lbj-disabled {
    top: calc(470 / 1038 * 100%);
    left: calc(801 / 1728 * 100%);
    width: calc(364 / 1728 * 100%);
    --marker-rotation: -33.34deg;
  }
  .question-marker.question-image-tapride,
  .question-marker.question-image-tapride-disabled {
    top: calc(849 / 1038 * 100%);
    left: calc(510 / 1728 * 100%);
    width: calc(151 / 1728 * 100%);
    --marker-rotation: -30.07deg;
  }
  .question-marker.question-image-offpeak,
  .question-marker.question-image-offpeak-disabled {
    top: calc(820 / 1038 * 100%);
    left: calc(1511 / 1728 * 100%);
    width: calc(151 / 1728 * 100%);
    --marker-rotation: 9.44deg;
  }
  .question-marker.question-image-redline,
  .question-marker.question-image-redline-disabled {
    top: calc(208 / 1038 * 100%);
    left: calc(788 / 1728 * 100%);
    width: calc(247 / 1728 * 100%);
    --marker-rotation: 33.10deg;
  }
  .question-marker.question-image-rhythms,
  .question-marker.question-image-rhythms-disabled {
    top: calc(410 / 1038 * 100%);
    left: calc(1084 / 1728 * 100%);
    width: calc(195 / 1728 * 100%);
    --marker-rotation: -10.50deg;
  }
  .question-marker.question-image-slogan,
  .question-marker.question-image-slogan-disabled {
    top: calc(738 / 1038 * 100%);
    left: calc(1305 / 1728 * 100%);
    width: calc(200 / 1728 * 100%);
    --marker-rotation: -14.66deg;
  }
  .question-marker.question-image-metroaccess,
  .question-marker.question-image-metroaccess-disabled {
    top: calc(379 / 1038 * 100%);
    left: calc(1327 / 1728 * 100%);
    width: calc(271 / 1728 * 100%);
    --marker-rotation: -9.58deg;
  }
  .question-marker.question-image-traincar,
  .question-marker.question-image-traincar-disabled {
    top: calc(783 / 1038 * 100%);
    left: calc(886 / 1728 * 100%);
    width: calc(228 / 1728 * 100%);
    --marker-rotation: -11.01deg;
  }
  .question-marker.question-image-busstop,
  .question-marker.question-image-busstop-disabled {
    top: calc(792 / 1038 * 100%);
    left: calc(341 / 1728 * 100%);
    width: calc(179 / 1728 * 100%);
    --marker-rotation: 58.56deg;
  }
}
@media (min-width: 667px) and (min-height: 500px) {
  .question-marker.question-image-escalator,
  .question-marker.question-image-escalator-disabled {
    top: calc(900 / 1038 * 100%);
    left: calc(490 / 1728 * 100%);
    width: calc(194 / 1728 * 100%);
    --marker-rotation: 7.74deg;
  }
  .question-marker.question-image-pantheon,
  .question-marker.question-image-pantheon-disabled {
    top: calc(620 / 1038 * 100%);
    left: calc(272 / 1728 * 100%);
    width: calc(259 / 1728 * 100%);
    --marker-rotation: 4.95deg;
  }
  .question-marker.question-image-smarttrip,
  .question-marker.question-image-smarttrip-disabled {
    top: calc(780 / 1038 * 100%);
    left: calc(560 / 1728 * 100%);
    width: calc(169 / 1728 * 100%);
    --marker-rotation: 29.19deg;
  }
  .question-marker.question-image-bus,
  .question-marker.question-image-bus-disabled {
    top: calc(910 / 1038 * 100%);
    left: calc(790 / 1728 * 100%);
    width: calc(348 / 1728 * 100%);
    --marker-rotation: -20.09deg;
  }
  .question-marker.question-image-bee,
  .question-marker.question-image-bee-disabled {
    top: calc(202 / 1038 * 100%);
    left: calc(313 / 1728 * 100%);
    width: calc(200 / 1728 * 100%);
    --marker-rotation: 2.94deg;
  }
  .question-marker.question-image-pylon,
  .question-marker.question-image-pylon-disabled {
    top: calc(517 / 1038 * 100%);
    left: calc(1353 / 1728 * 100%);
    width: calc(81 / 1728 * 100%);
    --marker-rotation: -9.83deg;
  }
  .question-marker.question-image-token,
  .question-marker.question-image-token-disabled {
    top: calc(100 / 1038 * 100%);
    left: calc(1162 / 1728 * 100%);
    width: calc(102 / 1728 * 100%);
    --marker-rotation: 50.83deg;
  }
  .question-marker.question-image-flag,
  .question-marker.question-image-flag-disabled {
    top: calc(438 / 1038 * 100%);
    left: calc(348 / 1728 * 100%);
    width: calc(229 / 1728 * 100%);
    --marker-rotation: 25.33deg;
  }
  .question-marker.question-image-train,
  .question-marker.question-image-train-disabled {
    top: calc(260 / 1038 * 100%);
    left: calc(548 / 1728 * 100%);
    width: calc(319 / 1728 * 100%);
    --marker-rotation: 3.38deg;
  }
  .question-marker.question-image-silver,
  .question-marker.question-image-silver-disabled {
    top: calc(260 / 1038 * 100%);
    left: calc(1092 / 1728 * 100%);
    width: calc(225 / 1728 * 100%);
    --marker-rotation: -33.27deg;
  }
  .question-marker.question-image-stone,
  .question-marker.question-image-stone-disabled {
    top: calc(401 / 1038 * 100%);
    left: calc(119 / 1728 * 100%);
    width: calc(134 / 1728 * 100%);
    --marker-rotation: 30.66deg;
  }
  .question-marker.question-image-farecard,
  .question-marker.question-image-farecard-disabled {
    top: calc(740 / 1038 * 100%);
    left: calc(1200 / 1728 * 100%);
    width: calc(122 / 1728 * 100%);
    --marker-rotation: 84.44deg;
  }
  .question-marker.question-image-manual,
  .question-marker.question-image-manual-disabled {
    top: calc(210 / 1038 * 100%);
    left: calc(1580 / 1728 * 100%);
    width: calc(195 / 1728 * 100%);
    --marker-rotation: 9.91deg;
  }
  .question-marker.question-image-signage,
  .question-marker.question-image-signage-disabled {
    top: calc(161 / 1038 * 100%);
    left: calc(113 / 1728 * 100%);
    width: calc(130 / 1728 * 100%);
    --marker-rotation: -5.26deg;
  }
  .question-marker.question-image-toktik,
  .question-marker.question-image-toktik-disabled {
    top: calc(90 / 1038 * 100%);
    left: calc(614 / 1728 * 100%);
    width: calc(211 / 1728 * 100%);
    --marker-rotation: -5.57deg;
  }
  .question-marker.question-image-yard,
  .question-marker.question-image-yard-disabled {
    top: calc(900 / 1038 * 100%);
    left: calc(1050 / 1728 * 100%);
    width: calc(240 / 1728 * 100%);
    --marker-rotation: -71.98deg;
  }
  .question-marker.question-image-lbj,
  .question-marker.question-image-lbj-disabled {
    top: calc(160 / 1038 * 100%);
    left: calc(908 / 1728 * 100%);
    width: calc(340 / 1728 * 100%);
    --marker-rotation: -31.82deg;
  }
  .question-marker.question-image-tapride,
  .question-marker.question-image-tapride-disabled {
    top: calc(734 / 1038 * 100%);
    left: calc(130 / 1728 * 100%);
    width: calc(163 / 1728 * 100%);
    --marker-rotation: -17.87deg;
  }
  .question-marker.question-image-offpeak,
  .question-marker.question-image-offpeak-disabled {
    top: calc(870 / 1038 * 100%);
    left: calc(1364 / 1728 * 100%);
    width: calc(157 / 1728 * 100%);
    --marker-rotation: 8.57deg;
  }
  .question-marker.question-image-redline,
  .question-marker.question-image-redline-disabled {
    top: calc(910 / 1038 * 100%);
    left: calc(280 / 1728 * 100%);
    width: calc(238 / 1728 * 100%);
    --marker-rotation: 30.59deg;
  }
  .question-marker.question-image-rhythms,
  .question-marker.question-image-rhythms-disabled {
    top: calc(204 / 1038 * 100%);
    left: calc(1342 / 1728 * 100%);
    width: calc(178 / 1728 * 100%);
    --marker-rotation: -10.27deg;
  }
  .question-marker.question-image-slogan,
  .question-marker.question-image-slogan-disabled {
    top: calc(693 / 1038 * 100%);
    left: calc(1586 / 1728 * 100%);
    width: calc(210 / 1728 * 100%);
    --marker-rotation: -10.54deg;
  }
  .question-marker.question-image-metroaccess,
  .question-marker.question-image-metroaccess-disabled {
    top: calc(470 / 1038 * 100%);
    left: calc(1548 / 1728 * 100%);
    width: calc(254 / 1728 * 100%);
    --marker-rotation: -9.15deg;
  }
  .question-marker.question-image-traincar,
  .question-marker.question-image-traincar-disabled {
    top: calc(920 / 1038 * 100%);
    left: calc(1585 / 1728 * 100%);
    width: calc(215 / 1728 * 100%);
    --marker-rotation: -11.40deg;
  }
  .question-marker.question-image-busstop,
  .question-marker.question-image-busstop-disabled {
    top: calc(930 / 1038 * 100%);
    left: calc(1174 / 1728 * 100%);
    width: calc(149 / 1728 * 100%);
    --marker-rotation: 47.00deg;
  }
}
.swipe-label {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3000;
  display: none;
  pointer-events: none;
}
.swipe-label img {
  display: block;
  max-width: 117px;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 751px) {
  .swipe-label {
    display: block;
    bottom: 85px;
  }
}
/*# sourceMappingURL=main.css.map */
