* {
  box-sizing: border-box;
}

html {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;

  background: #000;
  color: #f7edf1;

  font-family: Arial, Helvetica, sans-serif;

  display: grid;
  place-items: center;

  padding: 14px 18px;
}


/* =========================================================
   PAGE SHELL + SIDE NAV
   ========================================================= */

.site-shell {
  position: relative;

  max-width: 100%;
  max-height: 100%;
}


.side-nav {
  position: absolute;
  top: var(--qdp-nav-top, 0px);
  bottom: var(--qdp-nav-bottom, 0px);
  right: calc(
    100% + var(--qdp-nav-gap, clamp(60px, 4vw, 72px))
  );
  left: auto;
  z-index: 10;

  width: var(--qdp-nav-width, clamp(112px, 11vw, 154px));

  transform: translate(
    var(--qdp-nav-x, 0px),
    var(--qdp-nav-y, -18px)
  );
}


.mobile-menu-toggle {
  display: none;
}


.side-nav-links {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-end;

  width: 100%;
  height: 100%;
  padding: 0;

  gap: 0;

  text-align: right;
}


.side-nav a {
  color: #f7edf1;

  text-decoration: none;

  font-size: var(--qdp-nav-font-size, clamp(13px, 1.05vw, 16px));
  line-height: 1.2;
}


.side-nav a:hover,
.side-nav a:focus-visible {
  text-decoration: underline;
}


.tip-link {
  margin-top: 0;

  font-size: 11px !important;
  opacity: 0.78;
}


/* =========================================================
   DATE POPOVER
   ========================================================= */

.date-popover {
  position: absolute;
  top: calc(var(--qdp-date-top, 10.05%) + 10cqw);
  left: var(--qdp-date-left, 8.5%);
  z-index: 30;

  width: min(78cqw, 300px);

  transform: translate(
    var(--qdp-date-x, 0cqw),
    var(--qdp-date-y, 0cqw)
  );

  border: 0;
  border-radius: 3px;
  background: #242329;

  padding: 12px;

  color: #fff1f4;
}


.date-popover-header {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;

  margin-bottom: 10px;
}


.date-popover-month-button {
  width: 32px;
  height: 30px;

  margin: 0;
  padding: 0;

  border: 0;
  background: transparent;

  color: inherit;

  font-size: 19px;
  line-height: 1;

  cursor: pointer;
}


.date-popover-month-label {
  text-align: center;

  font-size: 14px;
  font-weight: 700;
}


.date-popover-weekdays,
.date-popover-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}


.date-popover-weekdays {
  margin-bottom: 4px;

  color: #c9bcc3;

  font-size: 11px;
  font-weight: 700;
  text-align: center;
}


.date-popover-day {
  aspect-ratio: 1;

  margin: 0;
  padding: 0;

  border: 0;
  border-radius: 2px;
  background: transparent;

  color: #fff1f4;

  font: inherit;
  font-size: 13px;

  cursor: pointer;
}


.date-popover-day:not(:disabled):hover,
.date-popover-day.selected {
  background: #ff8b63;
  color: #232323;
}


.date-popover-day:disabled {
  color: #746a70;
  cursor: default;
}


/* =========================================================
   POSTER STAGE
   ========================================================= */

.poster-stage {
  position: relative;
}


.poster {
  position: relative;

  width: min(
    calc(100vw - clamp(380px, 32vw, 452px)),
    calc((100vh - 28px) * 0.76225)
  );

  width: min(
    calc(100vw - clamp(380px, 32vw, 452px)),
    calc((100dvh - 28px) * 0.76225)
  );

  aspect-ratio: 1151 / 1510;

  container-type: inline-size;
}


.frame {
  position: absolute;
  inset: 0;
  z-index: 0;

  display: block;

  width: 100%;
  height: 100%;

  pointer-events: none;
  user-select: none;
}


/* =========================================================
   DATE INSIDE FRAME
   ========================================================= */

.poster-date {
  appearance: none;

  position: absolute;
  z-index: 3;

  top: var(--qdp-date-top, 10.05%);
  left: var(--qdp-date-left, 8.5%);

  width: var(--qdp-date-width, 22%);

  margin: 0;
  padding: 0;

  border: 0;
  background: transparent;

  text-align: center;

  color: #fff1f4;

  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--qdp-date-font-size, 3.75cqw);
  font-weight: 700;
  line-height: 1;

  cursor: pointer;

  transform: translate(
    var(--qdp-date-x, 0cqw),
    var(--qdp-date-y, 0cqw)
  );
}


.poster-date:hover,
.poster-date:focus-visible {
  color: #ffcfdd;
}


.poster-date:focus-visible {
  outline: 1px dashed #fff1f4;
  outline-offset: 4px;
}


.poster-date span {
  display: block;
}


#dateDay {
  margin-top: 0.22em;
}


/* =========================================================
   EVENT LISTING STRIPS
   ========================================================= */

.event-stack {
  position: absolute;
  z-index: 1;

  top: var(--qdp-list-top, 22.5%);
  right: var(--qdp-list-right, 8.25%);
  bottom: var(--qdp-list-bottom, 8.5%);
  left: var(--qdp-list-left, 8.25%);

  display: flex;
  flex-direction: column;
  justify-content: var(--qdp-list-justify, center);

  gap: var(
    --qdp-cards-next-time-gap,
    0.6cqw
  );

  transform: translate(
    var(--qdp-list-x, 0cqw),
    var(--qdp-list-y, 0cqw)
  );
}


.event-time-group {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 100%;

  min-height: 0;

  gap: var(--qdp-time-card-gap, 0.35cqw);
}


.event-time {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  width: min(
    var(--qdp-card-width, 76cqw),
    100%
  );

  min-width: 0;

  padding: 0;

  color: #fff1f4;

  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--qdp-time-font-size, 3.2cqw);
  font-weight: var(--qdp-time-font-weight, 700);
  line-height: var(--qdp-time-line-height, 1.05);
  text-align: left;
}


.event-time-meridiem {
  display: var(--qdp-time-meridiem-display, inline);
}


.event-group-cards {
  display: flex;
  flex-direction: column;

  width: min(
    var(--qdp-card-width, 76cqw),
    100%
  );

  min-width: 0;
  min-height: 0;

  gap: var(--qdp-same-time-card-gap, 0.9cqw);
}


.event-card {
  width: 100%;
  min-height: var(--qdp-card-height, 10.75cqw);

  margin: 0;
  padding:
    var(--qdp-card-padding-y, 0.55cqw)
    var(--qdp-card-padding-x, 1.6cqw);

  border: 0;
  border-radius: var(--qdp-card-radius, 0.45cqw);

  color: #232323;

  font: inherit;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}


.event-card.default {
  background: #ff8b63;
}


.event-card.explicit {
  background: #a14eb5;
}


.event-title {
  width: 100%;

  font-size: var(--qdp-title-font-size, 3.55cqw);
  font-weight: var(--qdp-title-font-weight, 400);
  line-height: var(--qdp-title-line-height, 1);
  text-align: var(--qdp-title-align, left);

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.event-venue,
.event-address {
  width: 100%;
  min-width: 0;

  margin-top: var(--qdp-card-line-gap, 0.2cqw);

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.event-venue {
  font-size: var(--qdp-venue-font-size, 2.85cqw);
  font-weight: var(--qdp-venue-font-weight, 400);
  line-height: var(--qdp-venue-line-height, 1);
  text-align: var(--qdp-venue-align, left);
}


.event-address {
  font-size: var(--qdp-address-font-size, 2.85cqw);
  font-weight: var(--qdp-address-font-weight, 400);
  line-height: var(--qdp-address-line-height, 1);
  text-align: var(--qdp-address-align, left);
}


.event-feed-message {
  margin: 0;

  color: #fff1f4;

  font-size: 3.1cqw;
  line-height: 1.2;
  text-align: center;
}


/* =========================================================
   EVENT DETAIL
   ========================================================= */

.event-detail {
  position: absolute;
  top: var(--qdp-detail-top, 6.36%);
  right: var(--qdp-detail-right, 8.25%);
  bottom: var(--qdp-detail-bottom, 6.1%);
  left: var(--qdp-detail-left, 8.17%);
  z-index: 20;

  display: none;

  overflow: hidden;

  background: #202125;
  border-radius: var(--qdp-detail-radius, 2.4cqw);

  padding: var(--qdp-detail-padding, 5.4cqw);
}


.event-detail.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}


.event-detail[hidden] {
  display: none;
}


.poster.detail-open .poster-date {
  visibility: hidden;
}


.event-detail-card {
  width: 100%;
  max-height: 100%;

  overflow: auto;

  padding: 0 0 clamp(34px, 5cqw, 48px);

  color: #fff1f4;

  font-size: var(--qdp-detail-font-size, 2.8cqw);
  line-height: var(--qdp-detail-line-height, 1.35);
  text-align: left;
}


.event-detail-flyer {
  display: block;

  width: 100%;
  max-height: var(--qdp-detail-flyer-max-height, 60cqw);

  margin: 0 auto var(--qdp-detail-flyer-gap, 2.2cqw);

  border-radius: var(--qdp-detail-flyer-radius, 1.2cqw);

  object-fit: contain;

  background: #111216;
}


.event-detail-card h2 {
  margin: 0 0 2cqw;

  font-size: var(--qdp-detail-title-size, 4cqw);
  font-weight: 700;
  line-height: 1.1;
}


.event-detail-card p {
  margin: 0 0 1.7cqw;
}


.event-detail-card > h2 + p + p {
  margin-bottom: 0;
}


.event-detail-card p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   OVERLAY CLOSE BUTTONS
   ========================================================= */

.overlay-close {
  appearance: none;

  position: absolute;
  right: clamp(10px, 1.8cqw, 18px);
  bottom: clamp(10px, 1.8cqw, 18px);
  z-index: 3;

  display: grid;
  place-items: center;

  width: clamp(28px, 4.2cqw, 36px);
  height: clamp(28px, 4.2cqw, 36px);
  margin: 0;
  padding: 0 0 2px;

  border: 0;
  border-radius: 0;
  background: transparent;

  color: #fff1f4;

  font: inherit;
  font-size: clamp(17px, 2.5cqw, 21px);
  font-weight: 400;
  line-height: 1;

  cursor: pointer;
}


.overlay-close:hover,
.overlay-close:focus-visible {
  color: #ffcfdd;
}


.overlay-close:focus-visible {
  outline: 1px dashed #fff1f4;
  outline-offset: 3px;
}


/* =========================================================
   ABOUT DIALOG
   ========================================================= */

.about-dialog {
  position: fixed;

  width: min(520px, calc(100vw - 32px));
  max-height: min(78dvh, 680px);
  margin: auto;
  padding: clamp(24px, 4vw, 38px) clamp(24px, 4.5vw, 42px)
    clamp(60px, 7vw, 72px);

  overflow: hidden;

  border: 2px solid #a14eb5;
  border-radius: 16px;
  background: #202125;
  box-shadow: 0 18px 70px rgb(0 0 0 / 72%);

  color: #fff1f4;
}


.about-dialog::backdrop {
  background: rgb(0 0 0 / 72%);
  backdrop-filter: blur(2px);
}


.about-dialog-content {
  max-height: calc(78dvh - 96px);
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}


.about-dialog h2 {
  margin: 0 0 20px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 4.4vw, 34px);
  line-height: 1.05;
}


.about-dialog p {
  margin: 0 0 16px;

  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.5;
}


.about-dialog p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   POSTER CORNER CONTROLS
   ========================================================= */

.poster-controls {
  position: absolute;
  z-index: 10;
  right: -58px;
  bottom: 0;
  left: -58px;

  pointer-events: none;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}


.poster-controls button {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 50px;
  height: 42px;

  margin: 0;
  padding: 0;

  border: 0;
  background: transparent;

  color: #f7edf1;

  font-size: 32px;
  line-height: 1;

  cursor: pointer;
  pointer-events: auto;
}


.poster-controls button:disabled {
  opacity: 0.25;
  cursor: default;
}


/* =========================================================
   PRIVATE LAYOUT EDITOR
   ========================================================= */

.layout-editor-active .poster-date {
  cursor: grab;
  touch-action: none;
}


.layout-editor-active .event-stack {
  cursor: grab;
  touch-action: none;
}


.layout-editor-active .poster-date:hover,
.layout-editor-active .event-stack:hover,
.layout-editor-active .poster-date.is-dragging {
  outline: 1px dashed #fff1f4;
  outline-offset: 3px;
}


.layout-editor-active .is-dragging {
  cursor: grabbing;
}


/* Comprehensive editor */

.layout-editor-active [data-editor-draggable="true"] {
  cursor: grab;
  touch-action: none;
}


.layout-editor-active [data-editor-draggable="true"]:hover,
.layout-editor-active .layout-selected {
  outline: 1px dashed #fff1f4;
  outline-offset: 3px;
}


.layout-editor-active .is-dragging {
  cursor: grabbing;
}


.qdp-layout-guides .poster::after {
  position: absolute;
  inset: 6%;
  z-index: 30;

  content: "";

  border: 1px dashed rgb(255 241 244 / 65%);

  background-image:
    linear-gradient(rgb(255 241 244 / 16%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 241 244 / 16%) 1px, transparent 1px);
  background-size: 5cqw 5cqw;

  pointer-events: none;
}


.qdp-layout-editor {
  position: fixed;
  top: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 100;

  display: flex;
  flex-direction: column;

  width: min(370px, calc(100vw - 20px));

  overflow: hidden;

  border: 1px solid #a14eb5;
  border-radius: 6px;
  background: #242329;
  box-shadow: 0 8px 30px rgb(0 0 0 / 45%);

  color: #fff1f4;

  font: 12px/1.25 Arial, Helvetica, sans-serif;
}


.qdp-layout-editor.collapsed {
  bottom: auto;
}


.qdp-layout-editor.collapsed > :not(.qdp-editor-header) {
  display: none;
}


.qdp-editor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 10px 11px;

  background: #1b1b1f;
}


.qdp-editor-header > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}


.qdp-editor-header strong {
  font-size: 14px;
}


.qdp-editor-header span {
  color: #ff8b63;

  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}


.qdp-editor-header button,
.qdp-editor-toolbar button,
.qdp-editor-export button {
  min-height: 30px;

  margin: 0;
  padding: 5px 8px;

  border: 0;
  border-radius: 3px;
  background: #ff8b63;

  color: #232323;

  font: inherit;
  font-weight: 700;

  cursor: pointer;
}


.qdp-editor-header button {
  width: 30px;
  padding: 0;

  font-size: 18px;
}


.qdp-editor-toolbar,
.qdp-editor-export {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;

  padding: 8px;
}


.qdp-editor-toolbar button:disabled {
  opacity: 0.35;
  cursor: default;
}


.qdp-editor-toolbar button.active {
  background: #a14eb5;
  color: #fff1f4;
}


.qdp-editor-help {
  margin: 0;
  padding: 0 10px 8px;

  color: #c9bcc3;

  font-size: 11px;
}


.qdp-editor-scroll {
  min-height: 0;

  flex: 1 1 auto;

  overflow-y: auto;

  border-top: 1px solid #3c3941;
  border-bottom: 1px solid #3c3941;
}


.qdp-editor-section {
  border-bottom: 1px solid #3c3941;
}


.qdp-editor-section summary {
  padding: 9px 10px;

  font-size: 12px;
  font-weight: 700;

  cursor: pointer;
  user-select: none;
}


.qdp-editor-section-body {
  display: grid;
  gap: 9px;

  padding: 2px 10px 11px;
}


.qdp-editor-control {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 8px;
  align-items: center;
}


.qdp-editor-control output {
  color: #ffb49a;

  font-variant-numeric: tabular-nums;
}


.qdp-editor-control input[type="range"] {
  grid-column: 1 / -1;

  width: 100%;

  margin: 0;

  accent-color: #ff8b63;
}


.qdp-editor-toggle,
.qdp-editor-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}


.qdp-editor-toggle input {
  accent-color: #ff8b63;
}


.qdp-editor-select select {
  max-width: 150px;

  border: 1px solid #4e4953;
  border-radius: 3px;
  background: #151519;

  padding: 4px 6px;

  color: #fff1f4;

  font: inherit;
}


.qdp-editor-export {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}


.qdp-editor-export button:first-child {
  background: #a14eb5;
  color: #fff1f4;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

  body {
    place-items: start center;

    padding: 6px 0 52px;
  }


  .site-shell {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 7px;
  }


  .side-nav {
    position: relative;
    order: -1;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 40;

    width: min(100vw, 520px);
    min-height: 0;
    padding: 0;

    transform: none;

    text-align: center;
  }


  .mobile-menu-toggle {
    appearance: none;

    display: block;

    margin: 0 auto;
    padding: 4px 14px;

    border: 0;
    background: transparent;

    color: #f7edf1;

    font: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;

    cursor: pointer;
  }


  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus-visible,
  .mobile-menu-toggle[aria-expanded="true"] {
    text-decoration: underline;
  }


  .mobile-menu-toggle:focus-visible {
    outline: 1px dashed #fff1f4;
    outline-offset: 2px;
  }


  .side-nav-links {
    position: absolute;
    top: calc(100% + 3px);
    left: 50%;
    z-index: 45;

    display: none;

    width: min(88vw, 340px);
    height: auto;
    padding: 10px 12px;

    transform: translateX(-50%);

    border: 1px solid #3c3941;
    border-radius: 3px;
    background: rgb(0 0 0 / 96%);
    box-shadow: 0 8px 24px rgb(0 0 0 / 42%);

    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;

    text-align: center;
  }


  .side-nav.menu-open .side-nav-links {
    display: flex;
  }


  .poster-stage {
    order: 0;
  }


  .side-nav a {
    display: block;

    width: 100%;
    padding: 7px 4px;

    font-size: 13px;
    text-align: center;
  }


  .tip-link {
    margin-top: 0;
    margin-left: 0;
  }


  .date-popover {
    width: min(92vw, 330px);

    padding: 11px;
  }


  .poster {
    width: min(
      101.5vw,
      calc((100vh - 82px) * 0.76225)
    );

    width: min(
      101.5vw,
      calc((100dvh - 82px) * 0.76225)
    );
  }


  .poster-date {
    top: var(--qdp-date-top, 10.1%);

    font-size: var(--qdp-date-font-size, 3.7cqw);
  }


  .event-time-group {
    gap: var(--qdp-time-card-gap, 0.35cqw);
  }


  .event-time {
    font-size: var(--qdp-time-font-size, 3.2cqw);
  }


  .event-group-cards {
    gap: var(--qdp-same-time-card-gap, 0.95cqw);
  }


  .event-card {
    min-height: var(--qdp-card-height, 10.75cqw);

    padding:
      var(--qdp-card-padding-y, 0.45cqw)
      var(--qdp-card-padding-x, 1.6cqw);
  }


  .event-title {
    font-size: var(--qdp-title-font-size, 3.55cqw);
  }


  .event-feed-message {
    font-size: 3.35cqw;
  }


  .event-detail {
    top: var(--qdp-detail-top, 6.36%);
    right: var(--qdp-detail-right, 8.25%);
    bottom: var(--qdp-detail-bottom, 6.1%);
    left: var(--qdp-detail-left, 8.17%);

    padding: var(--qdp-detail-padding, 6cqw);
  }


  .event-detail-card {
    font-size: var(--qdp-detail-font-size, 3.1cqw);
  }


  .event-detail-card h2 {
    font-size: var(--qdp-detail-title-size, 4.35cqw);
  }


  .poster-controls {
    right: 0;
    bottom: -46px;
    left: 0;
  }


  .poster-controls button {
    width: 54px;
    height: 44px;

    font-size: 38px;
  }


  .qdp-layout-editor {
    top: auto;
    right: 6px;
    bottom: 6px;
    left: 6px;

    width: auto;
    max-height: 48vh;
  }
}


/* =========================================================
   BAKED LAYOUT EDITOR SETTINGS
   ========================================================= */

/* Generated by the QDP layout editor. */
/* QDP_PROFILE_DESKTOP_START */
.poster {
  --qdp-date-x: 0.24cqw;
  --qdp-date-y: -0.37cqw;
  --qdp-date-top: 10.05%;
  --qdp-date-left: 8.5%;
  --qdp-date-width: 22%;
  --qdp-date-font-size: 3.75cqw;
  --qdp-list-x: 0cqw;
  --qdp-list-y: -4.18cqw;
  --qdp-list-top: 22.5%;
  --qdp-list-right: 8.25%;
  --qdp-list-bottom: 8.5%;
  --qdp-list-left: 8.25%;
  --qdp-list-justify: center;
  --qdp-time-font-size: 3.2cqw;
  --qdp-time-font-weight: 700;
  --qdp-time-line-height: 1.05;
  --qdp-time-meridiem-display: inline;
  --qdp-time-card-gap: 0.35cqw;
  --qdp-cards-next-time-gap: 0.6cqw;
  --qdp-card-width: 76cqw;
  --qdp-card-height: 10.75cqw;
  --qdp-card-padding-x: 1.6cqw;
  --qdp-card-padding-y: 0.55cqw;
  --qdp-card-radius: 0.45cqw;
  --qdp-same-time-card-gap: 0.9cqw;
  --qdp-card-line-gap: 0.2cqw;
  --qdp-title-font-size: 3.55cqw;
  --qdp-title-font-weight: 400;
  --qdp-title-line-height: 1;
  --qdp-title-align: left;
  --qdp-venue-font-size: 2.85cqw;
  --qdp-venue-font-weight: 400;
  --qdp-venue-line-height: 1;
  --qdp-venue-align: left;
  --qdp-address-font-size: 2.85cqw;
  --qdp-address-font-weight: 400;
  --qdp-address-line-height: 1;
  --qdp-address-align: left;
  --qdp-detail-top: 6.36%;
  --qdp-detail-right: 8.25%;
  --qdp-detail-bottom: 6.1%;
  --qdp-detail-left: 8.17%;
  --qdp-detail-padding: 5.4cqw;
  --qdp-detail-radius: 2.4cqw;
  --qdp-detail-font-size: 2.8cqw;
  --qdp-detail-line-height: 1.35;
  --qdp-detail-title-size: 4cqw;
  --qdp-detail-flyer-max-height: 60cqw;
  --qdp-detail-flyer-radius: 1.2cqw;
  --qdp-detail-flyer-gap: 2.2cqw;
}

.side-nav {
  --qdp-nav-x: 0px;
  --qdp-nav-y: -18px;
  --qdp-nav-top: 0px;
  --qdp-nav-bottom: 0px;
  --qdp-nav-gap: 68px;
  --qdp-nav-width: 150px;
  --qdp-nav-font-size: 15px;
}
/* QDP_PROFILE_DESKTOP_END */

@media (max-width: 600px) {
  /* QDP_PROFILE_MOBILE_START */
  .poster {
    --qdp-date-x: -0.2cqw;
    --qdp-date-y: -0.4cqw;
    --qdp-date-top: 9.7%;
    --qdp-date-left: 8.5%;
    --qdp-date-width: 22%;
    --qdp-date-font-size: 4.15cqw;
    --qdp-list-x: 0.15cqw;
    --qdp-list-y: -3.9cqw;
    --qdp-list-top: 22.5%;
    --qdp-list-right: 8.25%;
    --qdp-list-bottom: 8.5%;
    --qdp-list-left: 8.25%;
    --qdp-list-justify: center;
    --qdp-time-font-size: 3.2cqw;
    --qdp-time-font-weight: 700;
    --qdp-time-line-height: 1.05;
    --qdp-time-meridiem-display: inline;
    --qdp-time-card-gap: 0.7cqw;
    --qdp-cards-next-time-gap: 0.6cqw;
    --qdp-card-width: 68.75cqw;
    --qdp-card-height: 10.75cqw;
    --qdp-card-padding-x: 1.6cqw;
    --qdp-card-padding-y: 1.25cqw;
    --qdp-card-radius: 2.2cqw;
    --qdp-same-time-card-gap: 0.95cqw;
    --qdp-card-line-gap: 0.2cqw;
    --qdp-title-font-size: 3.55cqw;
    --qdp-title-font-weight: 400;
    --qdp-title-line-height: 1;
    --qdp-title-align: center;
    --qdp-venue-font-size: 2.85cqw;
    --qdp-venue-font-weight: 400;
    --qdp-venue-line-height: 1;
    --qdp-venue-align: center;
    --qdp-address-font-size: 2.85cqw;
    --qdp-address-font-weight: 400;
    --qdp-address-line-height: 1;
    --qdp-address-align: center;
    --qdp-detail-top: 6.36%;
    --qdp-detail-right: 8.25%;
    --qdp-detail-bottom: 6.1%;
    --qdp-detail-left: 8.17%;
    --qdp-detail-padding: 6cqw;
    --qdp-detail-radius: 2.4cqw;
    --qdp-detail-font-size: 3.1cqw;
    --qdp-detail-line-height: 1.35;
    --qdp-detail-title-size: 4.35cqw;
    --qdp-detail-flyer-max-height: 68cqw;
    --qdp-detail-flyer-radius: 1.2cqw;
    --qdp-detail-flyer-gap: 2.2cqw;
  }

  .side-nav {
    --qdp-nav-x: 0px;
    --qdp-nav-y: 0px;
    --qdp-nav-top: 0px;
    --qdp-nav-bottom: 0px;
    --qdp-nav-gap: 68px;
    --qdp-nav-width: 150px;
    --qdp-nav-font-size: 13px;
  }
  /* QDP_PROFILE_MOBILE_END */
}
