* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 600px;
  height: 1067px;
  background: black;
  color: #fff;
  font-family: "futura-pt", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
}

.show-of-week {
  width: 100%;
  height: 150px;
  position: relative;
  overflow: hidden;
}
.show-of-week__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}
.show-of-week__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 0 0 50%;
  position: relative;
}
.show-of-week__image:before {
  content: "";
  background: #3a3a3a;
  position: absolute;
  padding: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -2;
}
.show-of-week__image:after {
  content: "Loading...";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: -1;
  position: absolute;
}
.show-of-week__badge {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f48123, #e92e26);
  text-align: left;
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}
.show-of-week__label {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin-bottom: 4px;
}
.show-of-week__title {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  height: 24px;
  line-height: 24px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 12px;
}

.payment-partner {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}
.payment-partner .mastercard-logo {
  height: 20px;
}

.page-counter {
  margin-left: auto;
  font-weight: bold;
}

.grid-container {
  height: 530px;
  overflow: hidden;
  position: relative;
  margin-top: 4px;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  transition: transform 0.8s ease-in-out;
  will-change: transform;
}

.page-spacer {
  height: 0px;
  min-height: 0;
  flex-shrink: 0;
}

.show-card {
  background: hsla(0, 0%, 100%, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 2px;
}
.show-card--sotw {
  background: rgba(236, 100, 72, 0.22);
}
.show-card:last-child {
  border-bottom: none;
}
.show-card__image {
  width: 30%;
  width: 208px;
  height: 104px;
  object-fit: contain;
  display: block;
}
.show-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.show-card__title {
  font-size: 16px;
  line-height: 1;
  padding: 10px 0;
}
.show-card__info {
  display: flex;
  flex-direction: row;
  gap: 6px;
}
.show-card__perf {
  border-radius: 5px;
  line-height: 1;
  overflow: hidden;
  border: 1px solid white;
}
.show-card__perf:last-of-type {
  margin-right: 0;
}
.show-card__perf {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.show-card__time {
  display: inline-block;
  background: white;
  color: black;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 8px;
  text-align: center;
  width: 100%;
}
.show-card__price {
  background: hsla(0, 0%, 100%, 0.1);
  font-size: 10px;
  padding: 4px 8px;
  text-align: center;
  width: 100%;
}
.show-card__discount {
  display: inline-block;
  background: hsla(0, 0%, 100%, 0.1);
  color: #ff6b35;
  font-size: 10px;
  font-weight: bold;
  align-self: flex-start;
  padding: 0px 8px 4px;
  text-align: center;
  width: 100%;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: hsla(0, 0%, 100%, 0.1);
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.qr-code img {
  width: 80px;
  height: 80px;
  display: block;
}

.footer-text {
  flex: 1;
  font-size: 21px;
  line-height: 1;
}
.footer-text .highlight {
  color: #ff6b35;
  font-weight: bold;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}
.loading-screen__content {
  text-align: center;
}
.loading-screen__spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: #ff6b35;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}
.loading-screen__text {
  font-size: 18px;
  color: #fff;
}

.closed-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  align-items: center;
  justify-content: center;
  font-family: "futura-pt-bold", sans-serif;
  padding: 40px;
}
.closed-screen.visible {
  display: flex;
  opacity: 1;
}
.closed-screen__content {
  text-align: center;
  max-width: 500px;
}
.closed-screen__logo {
  width: 100%;
  max-width: 128px;
  height: auto;
  margin-bottom: 30px;
}
.closed-screen__heading {
  font-size: 27px;
  margin-bottom: 40px;
  line-height: 1.2;
}
.closed-screen__hours {
  margin-bottom: 40px;
}
.closed-screen__hours p {
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.closed-screen__hours p strong {
  min-width: 100px;
  text-align: right;
}
.closed-screen__hours p span {
  color: #ff6b35;
  min-width: 140px;
  text-align: left;
}
.closed-screen__footer {
  font-size: 18px;
  margin-bottom: 30px;
}
.closed-screen__footer span {
  color: #ff6b35;
  font-weight: bold;
}
.closed-screen__qr img {
  width: 120px;
  height: 120px;
  display: block;
  margin: 0 auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInFromBottom {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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