/*
 * core.css - all custom CSS code belongs in this file; including Bootstrap
 * Framework overrides.
 *
 */

html {
  overflow: auto;
  overscroll-behavior: none;
  min-width: 320px;
}

body {
  overflow: hidden;
}

html, body {
  background-color: #181c18;
  background-color: #000;
  color:#fff;
  font-family:'Helvetica Neue LT W05_65 Medium', sans-serif;
  -webkit-font-smoothing: antialiased;
  transition-timing-function: ease-in-out;
}

h1, h2, h3, h4, h5, h6, blockquote {
  font-family: franklin-gothic-atf, sans-serif;
  font-weight: 600;
  line-height: 1;
}

h1 {
  font-weight: 600;
  font-size: 2.125em;
  margin-bottom: 1em;
  line-height: .9375;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -.025em;
}
@media (max-width: 532px) {
  h1 { font-size: 7.5vw; }
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

blockquote {
  line-height: 1.2;
}

.nowrap { white-space: nowrap; }

p em, p i { font-family:'Helvetica Neue LT W05_66 Md It'; font-synthesis: none; }

p strong, p b { font-family:'Helvetica Neue LT W05_75 Bold'; }

p em strong, p em b, p i strong, p i b,
p strong em, p b em, p strong i, p b i  { font-family:'Helvetica Neue LT W05_76 Bd It'; }

p em em, p em i, p i i, p i em  { font-family:'Helvetica Neue LT W05_65 Medium'; }


a {
  color: #fff; transition: all .2s;
}
a:active,
a.active,
a:hover {
  color: #e8011b;
}

.container.media {
  width: 94vw;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
} @media (max-width:767px) {
  .container.media {
    max-width: 100%;
  }
}

.page a { color: #d21a2e; transition: all .2s; }
.page a:active,
.page a.active,
.page a:hover { color:#000; }

.red { color:#e8021c; }
.grey { color: #b9acac; }

.btn {
  display: inline-block;
  position: relative;
  padding: .0625em .625em .125em;
  font-size: 1.375rem;
  line-height: 1.2;
  background: #fff;
  color: #e8011b;
  border: .1875em solid #fff;
  font-family: franklin-gothic-atf, sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  font-style: normal;
  border-radius: 1em;
  transition: all .2s;
  cursor: pointer;
}
.btn:hover,
.btn.active,
.btn:active {
  color: #fff!important;
  background: #e8011b;
}
.btn.reverse {
  color: #fff!important;
  background-color: #e8011b;
}
.btn.reverse:hover,
.btn.reverse.active,
.btn.reverse:active {
  background-color: #222!important;
  color: #fff!important;
}

#nav a { color: #fff; }
#nav a:hover,
#nav a.active,
#nav a:active { color: #e8011b; }

/* rotator */
#outerwrapper .rotator { position: relative; }
#outerwrapper .rotator:not(.quotes) > *:not(:first-child),
#outerwrapper .rotator.quotes > *:not(.longest) { max-width: calc(100% - 2em);
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
#outerwrapper .rotator > *:first-child { position: relative; }
#outerwrapper .rotator.quotes > *.longest { position: relative; }
#outerwrapper .rotator > * { width: 100%; opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 0.5s, 0.5s;
  transition-delay: 0s, 0s; }
#outerwrapper .rotator.slide > * { transition-duration: .5s, 0s; }
#outerwrapper .rotator > *.active { opacity: 1; transition-delay: 0s, .5s; }
#outerwrapper .rotator.slide > *.next,
#outerwrapper .rotator.slide > *.prev { transition-delay: opacity .5s; }
#outerwrapper .rotator.slide > *.next { transform: translate(-150%,-50%); }
#outerwrapper .rotator.slide > *.current { transform: translate(-50%,-50%); }
#outerwrapper .rotator.slide > *.prev { transform: translate(50%,-50%); }
#outerwrapper .rotator.slide > *:first-child.next { transform: translate(-100%,0); }
#outerwrapper .rotator.slide > *:first-child.current { transform: translate(0,0); }
#outerwrapper .rotator.slide > *:first-child.prev { transform: translate(100%,0); }

/*
 GLOBAL SECTION
 ----------------------------------------------------------------------------*/
#outerwrapper {
  min-height: 100vh;
  margin:0 auto;
  padding-top: 3em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  #outerwrapper {
    padding-top: 3.74em;
  }
}

#content {
  position: relative;
  margin: 0 auto;
  z-index: 1;
  max-width: 100vw;
  width: 100%;
}

/*
  PAGE NAV
----------------------------------------------------------- */
#content nav {
  margin-bottom: 1.875em;
}
#content nav ul,
#content nav li {
  margin: 0; padding: 0; list-style: none;
}
#content nav li {
  display: inline-block;
  width: 12em;
}
#content nav a {
  display: block;
  margin: 0 0.5em;
  filter: drop-shadow(.075em .075em .0625em rgba(0,0,0,.75));
}
#content nav a.active {
  color: #ffffff;
  pointer-events: none;
}
@media (max-width:767px) {
  #content nav a {
    margin: 0.25em;
    font-size: 1.25em;
    width: 220px;
  }
}
@media (max-width:532px) {
  #content nav a {
    width: auto;
  }
}

/* page-background */
.page {
  background: transparent;
  color: #333;
}
.page:after {
    content: '';
    position: absolute;
    top:0; left:0;
    width: 100%;
    height: 100%;
    background-image: url(../_img/page.png?v=1);
    background-size: 60.25em auto;
    background-repeat: repeat;
    background-position: top -12%;
    /* background-attachment: fixed; */
    opacity: .875;
    z-index: 0;
}
.webp .page:after {
  background-image: url(../_img/page.webp?v=1);
}
.page:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 1;
  z-index: 0;
}

/* inset shadow */
.inset {
  overflow: hidden;
}
.inset:after,
.inset:before {
  content: ''; position: absolute; left: 0; width: 100%; height: 10em; z-index: 3;
}
.inset:before {
  bottom: 100%;
  box-shadow: 0 0 1.5em rgba(0,0,0,.75);
}
.inset:after {
  top: 100%;
  box-shadow: 0 0 1.5em rgba(0,0,0,.75);
}

/* fade-sides */
.fade-sides {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent 100%);
}

/*
  HEADER
----------------------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3.75em;
  text-align: center;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0px 4px 14px rgb(0 0 0 / 50%);
}
@media (min-width: 768px) {
  #header {
    height: 3em;
    justify-content: space-between;
    align-items: center;
  }
  #header .logo {
    margin-left: 3em;
  }
}
@media (max-width:767px) {
  .home #header {
    height: 3.75rem;
    flex-direction: column;
    justify-content: space-around;
  }
}

#header::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../_img/header-bg.jpg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  z-index: -1;
}
.webp #header::before {
  background-image: url('../_img/header-bg.webp');
}
#header::after {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  z-index: -2;
  box-shadow: 0 2px 2px rgb(0 0 0 / 75%);
}

/*
  GET TICKETS BUTTON
----------------------------------------------------------------------------*/
#btn-tickets {
  display: block;
  margin: 0 0.5em;
  font-size: 1.375rem;
  flex: 0 0 auto;
  opacity: 1;
  padding: 0.0625em 0 0.125em;
}
@media (min-width:1024px) {
  #btn-tickets {
    padding: 0.0625em 0.625em 0.125em;
  }
}
#btn-tickets.hide {
  opacity: 0;
  pointer-events: none;
}
#btn-tickets:hover {
  color: #fff;
  background-color:#e8011b;
  text-decoration:none;
}

@media (max-width:1023px) {
  #btn-tickets {
    position:fixed;
    width: calc(100% - .5em);
    margin: 0;
    font-size: 2.5em;
    bottom: .25em;
    z-index:100;
    box-shadow: 0.0625em 0.0625em 0.375em rgba(0,0,0,.625);
    transition: all .4s;
  }
  #btn-tickets:hover {
    text-decoration: none;
  }
  .load-in #btn-tickets {
    transform: translateY(100%);
  }
}

/*
  TICKETS SECTION
  ----------------------- */
#tickets {
  padding-top: 5em;
  margin: -4em auto 4em;
}

#tickets .container {
  display:flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 2em;
}
.sidebar {
  margin-top: 2.5rem;
}
.columns {
  flex: 0 0 100%;
  display: flex;
}
@media (min-width: 768px){
  .cal {
    order: 1;
    flex: 0 0 calc(66.6667% - .6667em);
  }
  .sidebar {
    order: 0;
    flex: 0 0 calc(33.3333% - 1.3333em);
  }
  .columns {
    order: 2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2em;
  }
  #tickets .columns > div {
    flex: 0 0 calc(33.3333% - 1.3333em);
  }
  #tickets .columns.col-2 > div:first-child {
    flex: 0 0 55%;
  }
  #tickets .columns.col-2 > div:last-child {
    flex: 0 0 35%;
  }
}
@media (max-width: 767px){
  #tickets {
    display: block;
    max-width: 22em;
  }
  #tickets .container {
    padding: 0;
  }
  .columns {
    display: block;
  }
  .sidebar p:last-child,
  .columns > div:not(:last-child) p:last-child {
    margin-bottom: 1.5em;
  }
}

.info {
  text-align: left;
}

.info h3 {
  text-transform: uppercase;
  font-size: .875em;
  font-weight: 400;
  letter-spacing: .08em;
  margin: 0 0 0.375em;
  padding: 0;
}

.info p {
  color: #b9acac;
  font-size: .875em;
  line-height: 1.375;
}

.cutoff {
  display: block;
  padding-top: .25em;
}

.cutoff br {
  display: none;
}
@media (min-width: 400px) and (max-width: 767px) {
  .cutoff br {
    display: block;
  }
}

#map {
  position: relative;
  width: 100%; height: auto;
  padding-bottom: 0;
  border:2px solid #fc0001;
  overflow: hidden;
  border-radius: .125em;
  margin: -.5em 0 1.5em;
  filter: brightness(1);
  transition: all .5s;
}
#map:not(.preview) a {
  opacity:0;
  pointer-events: none;
}
#map:not(.live) iframe {
  opacity:0;
  pointer-events: none;
}
#map a {
  transition: all .5s;
}
#map iframe {
  filter: saturate(0);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  transition: all .5s;
}
#map.live {
  filter: brightness(.85)
}
#map.live:hover {
  filter: brightness(1)
}
#map.preview:hover {
  filter: brightness(1.125)
}

@media (max-width: 767px) {
  #map {
    margin: 1em auto 2em;
  }
}

#monthStart, #curMon, .first-date {
  display:none;
}

@media (max-width:767px) {
  .cal, .sidebar {
    width: 100%;
    float: none;
    margin: 0 auto;
  }
  .info {
    max-width: 27em;
    margin: 0 auto;
    font-size: 1.125em;
  }
  .sidebar {
    margin-top: 3em;
  }
  .info h3, .info p {
    text-align:center;
  }
  #selected-show, .select-directions {
    position:relative;
    background: #fff;
    color: #000;
    font-family: inherit;
    font-size: .75em;
    font-weight: 400;
    letter-spacing: .0875em;
    text-align: center;
    text-transform: uppercase;
    padding: 0.75rem 1em 0.5rem;
    -webkit-font-smoothing: subpixel-antialiased;
    z-index: 1;
  }
  .select-directions {
    font-weight:normal;
    border-top-right-radius: 1.5rem;
    border-top-left-radius: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.25);
  }
  #selected-show {
    border-bottom-right-radius: 1.5em;
    border-bottom-left-radius: 1.5em;
    box-shadow: 0 -1px 3px rgba(0,0,0,.25);
  }
  .perf-select-line {
    display: block;
    padding-top: 0.125em;
    text-transform: uppercase;
    margin-bottom: 0.4375em;
    -webkit-font-smoothing: subpixel-antialiased;
  }
  .perf {
    line-height: 1;
  }
  .perf a {
    display: inline-block;
    font-size: 1.875em;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.1;
    text-transform: none;
    margin-top: 0.025em;
  }

  .perf a.good { color: #1c7c14; }
  .perf a.limited { color: #ca8125; }
  .perf a.low { color: #e8011b; }
  .perf a:hover {
    filter: brightness(1.1);
  }
  .tix-button a {
    display: block;
    text-align: center;
    font-family: franklin-gothic-atf, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.5;
    background: #fff;
    color: #e8011b;
    border: .125em solid #fff;
    border-radius: .75em;
    padding: .25rem 0;
    margin: .5em auto 0;
    transition: all .2s;
  }
  .tix-button a:hover {
    background:#e8011b;
    color:#fff;
    text-decoration:none;
  }
  .mbsc-sel-gr-whl {
    border-right:2px solid #bababa;
  }
  body .mbsc-mobiscroll .mbsc-sc-whl-gr {
    padding:0;
    max-width:700px!important;
  }
  .mbsc-mobiscroll .mbsc-sc-whl-w {
    margin:0;
    border-left:2px solid #bababa;
    border-right:2px solid #bababa;
  }
  .mbsc-mobiscroll .mbsc-sc-whl-l {
    border:0px solid transparent;
    box-shadow:0px 11px 8px -10px rgba(0, 0, 0, .2),
      0px -11px 8px -10px rgba(0, 0, 0, .2);
  }
  .mbsc-mobiscroll .mbsc-sc-itm {
    color:#000;
    font-weight:500;
    font-size: 1.125rem;
    letter-spacing: -.04rem;
  }
  .mbsc-mobiscroll.mbsc-no-touch .mbsc-sc-itm.mbsc-btn-e:hover,
  .mbsc-mobiscroll .mbsc-sc-itm:focus,
  .mbsc-mobiscroll.mbsc-no-touch .mbsc-sc-itm.mbsc-btn-e:hover,
  .mbsc-mobiscroll .mbsc-sc-itm:focus {
    background:transparent;
  }
  .mbsc-sc-whl-w.mbsc-comp:nth-of-type(2) {
    border-right:2px solid #bababa;
  }
  .mbsc-sel-gr-whl {
    border-right:0;
  }
  .mbsc-mobiscroll .mbsc-sc-whl-l {
    border-color:#a9a9a9 !important;
  }
  .mbsc-fr-w,
  .mbsc-sc-itm {
    font-family: inherit !important;
    font-weight: 500;
  }
  body .mbsc-mobiscroll .mbsc-fr-w {
    background-color: #e1dbdb;
  }
  .mbsc-mobiscroll .mbsc-sc-itm-sel {
    background-color: #fff;
  }
}

@media (max-width:350px) {
  #tickets h3.first {
    font-size:22px;
  }

  #tickets h3.first span {
    width:280px;
    padding:3px 0 3px;
  }
}

@media (max-width:350px) {
  #tickets h3.first {
    font-size:22px;
  }

  #tickets h3.first span {
    width:280px;
    padding:3px 0 3px;
  }
}

#actor-absence span {
  padding-top: 1em;
  display: inline-block;
}

#best-avail {
  font-family: franklin-gothic-atf, sans-serif;
}
@media (max-width: 1024px) {
  #best-avail {
    width: calc(100vw - 3em);
    transform: translateX(-50%);
    position: relative;
    left: 50%;
  }
}
#best-avail h2 {
  margin: 0 0 .5em;
  font-weight: 800;
}
.date-row {
  display:flex;
  justify-content: space-around;
  align-items: stretch;
  margin: 1.25em 0 4em;
}
.date-box {
  flex-grow: 1;
	display: block;
  padding: 3px 0;
  flex-basis: 0;
}
.date-row .divider {
  border-right:2px solid #E8021B;
}
.date-box:hover .day-time {
}
.date-box:last-child {
  border-right:0px;
}
.dow {
  text-align:center;
  display:block;
  text-transform:uppercase;
  font-size:.6875em;
  font-weight:500;
  margin-bottom:5px;
  color: #fff;
}
.day-time {
  text-align:center;
  font-size:1.5em;
  line-height: .9;
  display:block;
  font-weight:800;
  text-transform: uppercase;
}
#best-avail a * {
  pointer-events: none;
}

@media (max-width: 768px) {
  #best-avail .date-box:nth-of-type(5),
  #best-avail .date-box:nth-of-type(6),
  #best-avail .divider:nth-of-type(4),
  #best-avail .divider:nth-of-type(5) {
    display: none;
  }
}

@media (max-width: 532px) {
  #best-avail .date-box:nth-of-type(4),
  #best-avail .date-box:nth-of-type(5),
  #best-avail .date-box:nth-of-type(6),
  #best-avail .divider:nth-of-type(3),
  #best-avail .divider:nth-of-type(4),
  #best-avail .divider:nth-of-type(5) {
    display: none;
  }
}

/*
  HOME PAGE CONTENT
----------------------------------------------------------------------------*/
#home {
  position: relative;
  z-index: 5;
  width: 100%;
  margin: 0 auto;
  z-index: 2;
  padding-top: 4em;
  margin-top: -4em;
}

.quo1 {
  margin: 6% auto;
}
.quote-block {
  margin: 2rem auto 4rem;
}
@media (max-width: 767px) {
  .quo1, .quote-block{
    margin: 3rem auto;
  }
}
.quo {
  text-align:center;
  font-family: franklin-gothic-atf, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size:2.375vw;
  line-height:1.1;
  letter-spacing: -.025em;
}
.quo em {
  font-family: franklin-gothic-atf, sans-serif;
  font-weight: 600;
  font-style: italic;
}
.xl {
  color: #fff;
  font-size: 3em;
  line-height: .9;
  margin-bottom: 0.125rem;
  display: inline-block;
  font-family: franklin-gothic-atf, sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -.025em;
}
.mid-caps {
  font-size: 1.125em;
  display: inline;
  text-transform:uppercase;
  letter-spacing: normal;
  letter-spacing: .01875em;
}
.mid {
  font-size: 1.125em;
  display: inline;
  letter-spacing: -.025em;
}
.white {
  color:#fff;
}
.lg {
  color:#fff;
  font-size: 2.25em;
  font-family: franklin-gothic-atf, sans-serif;
  font-weight: 700;
  text-transform:uppercase;
  line-height:.95;
  letter-spacing: -.025em;
}
.stars {
  font-family: franklin-gothic-atf, sans-serif;
  font-weight: 700;
  letter-spacing: .05em;
  position: relative;
  vertical-align: baseline;
  font-size: .9375em;
  top: .0325em;
}
.lg em {
  font-family: franklin-gothic-atf, sans-serif;
  font-weight: 700;
  font-style: italic;
  display:inline-block;
  margin-right:3px;
}

.quo .red {
  text-transform: uppercase;
  font-family: franklin-gothic-atf, sans-serif;
  font-weight: 700;
  letter-spacing: -.025em;
}
@media (max-width: 767px) {
  .quo .red.big {
    font-size: 125%;
  }
}
img.cite {
  display: block;
  margin: 0.5em auto 0;
  width: auto;
  max-height: 100%;
  height: 1.75rem;
  mix-blend-mode: lighten;
}
@media (max-width:767px) {
  .quo {
    font-size: 4.25vw;
  }
}
@media (min-width: 1200px) {
  .quo {
    font-size: 28.375px
  }
}

.quote-block .slick-track {
  display: flex;
  height: 100%;
}
.quote-block .slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}


#temp-billing {
  text-align: center;
  margin: 3rem auto;
  font-size: .75rem;
}
#temp-billing small {
  font-size: .75em;
  color: #b9acac;
}

@media (min-width: 767px) {
  #temp-billing {
    max-width: 58em;
  }
}

#temp-billing .red strong {
  display: inline-block;
  margin: 0 1em;
  white-space: nowrap;
  margin-bottom:.375em;
}
@media (max-width: 599px) {
  #temp-billing .red strong {
    width: calc(30% - 2em);
  }
}

#temp-billing .white.title {
  margin-bottom:.625em;
}
#temp-billing .white {
  text-align: center;
}
#temp-billing span {
  display: inline-block;
}

/*
  H5 VIDEO
----------------------------------------------------------------------------*/
#home-video {
  margin: 8em auto 2em;
  position: relative;
  text-align: center;
  max-width: 800px;
  width: 80%;
}

#home-video video {
  width: 100%;
  display: inline-block;
}

@media (max-width: 767px) {
  #home-video video {
    width: 95%;
  }
}
#home-video:before {
  content: "\25B6"; /* play icon */
  font-size: 6rem;
  color: #fff;
  z-index: 2;
  line-height: 1.25;
  position: absolute;
  top: calc(50% + 1.125rem);
  left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  opacity: 0;
  transition: all .3s;
}

#home-video:not(.playing):before {
  opacity: .875;
}

@media (max-width: 767px) {
  #home-video video {
    width: 95%;
  }
  #home-video:not(.playing):before {
    font-size: 4.5rem;
  }
}

#home-video:not(.playing):hover:before {
  opacity: 1;
}

/* VIDEO */

.home .video {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding-bottom: 56%;
  height: 0;
  margin: 3em auto;
  border: 2px solid red;
  border-radius: .875em;
}

.page-loaded.home .video:after {
  /* custom video thumb */
  content: '\25BA';
  color: white;
  position: absolute;
  top: 50%; left: 50%;
  width: 2em;
  font-size: 2.5em;
  line-height: 2.375;
  height: 2em;
  padding-left: 0.2em;
  transform: translate(-50%,-50%);
  background-color: rgba(255,0,0,.625);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0;
  transition: all .2s;
  z-index: 2;
  border-radius: 50%;
}

.page-loaded.home .video.custom-thumb:after {
  opacity: 1;
}

.page-loaded.home .video.custom-thumb:hover:after {
  transform: scale(.90) translate(-55%,-55%);
  transition: all .4s;
}

.home .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* video */
#video-play {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  background-color: #000;
  border: 2px solid #fc0001;
  border-radius: 1em;
}
.page-loaded :not(button).video-link:after,
.page-loaded #video-play:after {
  /* custom video thumb */
  content: '\25BA';
  color: white;
  position: absolute;
  top: 50%; left: 50%;
  width: 2em;
  font-size: 2.5em;
  line-height: 2.375;
  height: 2em;
  padding-left: 0.2em;
  transform: translate(-50%,-50%);
  background-color: rgba(255,0,0,.625);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0;
  transition: all .2s;
  z-index: 2;
  border-radius: 50%;
}
.page-loaded .video-link:after,
.page-loaded #video-play.custom-thumb:after {
  opacity: 1;
}
.page-loaded .video-link:hover:after,
.page-loaded #video-play.custom-thumb:hover:after {
  transform: scale(.90) translate(-55%,-55%);
  transition: all .4s;
} @media (min-width: 1024px) {
.page-loaded .video-link:after {
  font-size: 4em;
}
}
.page-loaded .video-link:after {
  font-size: 3em;
}
#video-play.custom-thumb * {
  pointer-events:none;
}
#video-play iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#video-play img {
  height:  100%;
  width: auto!important;
  position:  absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
} .video h2 {
  margin-bottom: .625em;
}

/*
 OPT-IN FORM SECTION
 ----------------------------------------------------------------------------*/
.optin {
  font-size: 1em;
  text-align: center;
  font-family: franklin-gothic-atf, sans-serif;
  font-weight: 600;
  font-style: normal;
  z-index: 9999;
  position: relative;
}

.optin h3 {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  margin-bottom: .25em;
}

.optin p {
  line-height: 1;
  margin: 0;
}

.optin input, .optin button {
  display: inline-block;
  font-size: 1em;
  border: .125em solid #fff;
  line-height: 1.25;
  padding: .5625em .625em;
  font-family: franklin-gothic-atf, sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform:uppercase;
  text-align:center;
  height: 1.875em;
  background:none;
  margin: .25em .125em;
}

.optin input {
  width: 16em;
  border-radius: 1em;
  color:#fff;
  font-size: 1em;
  font-family: franklin-gothic-urw-cond, sans-serif;
  font-weight: 700;
  font-style: normal;
  background:#e8011b;
}

.optin button {
  font-family: franklin-gothic-atf, sans-serif;
  font-weight: 800;
  font-style: normal;
  width: 8em;
  font-size: 1em;
  border-radius: 1em;
  background:#fff;
  color:#e8011b;
  padding: 0 .125em;
  position: relative;
  transition: all .2s;
}

.optin button:hover {
  cursor:pointer;
  background:#e8011b;
  color:#fff;
}

.subscribe {
  display: block;
}

.subscribe input.error::-webkit-input-placeholder {
  font-weight:bold;
  opacity: .75;
}

.subscribe input.error:-moz-placeholder { /* Firefox 18- */
  font-weight:bold;
  opacity: .75;
}

.subscribe input.error::-moz-placeholder {  /* Firefox 19+ */
  font-weight:bold;
  opacity: .75;
}

.subscribe input.error:-ms-input-placeholder {
  font-weight:bold;
  opacity: .75;
}

.subscribe input::-webkit-input-placeholder {
  color:#fff;
  opacity: .75;
}

.subscribe input:-moz-placeholder { /* Firefox 18- */
  color:#fff;
  opacity: .75;
}

.subscribe input::-moz-placeholder {  /* Firefox 19+ */
  color:#fff;
  opacity: .75;
}

.subscribe input:-ms-input-placeholder {
  color:#fff;
  opacity: .75;
}

.optin .thankyou {
  opacity: 0; 
  pointer-events: none;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
}
.optin.success h3 {
  margin-bottom: .5em;
}
.optin.success .thankyou {
  opacity: 1;
}
.optin.success form  {
  opacity: 0;
  pointer-events: none;
}

/*
  SOCIAL
----------------------------------------------------------------------------*/

.social { display: block; }

.social li {
  display: inline-block;
  transform: translateX(-.125rem);
}

.social li a {
  display: block;
  padding: 0 .03em;
  height: 1em;
}

.social a svg {
  display: block;
  width: auto;
  height: 100%;
  filter: drop-shadow(3px 5px 4px rgb(0 0 0 / 0.25));
}

.social a svg path {
  fill: #fff;
  transition: fill .2s;
}

.social a:hover svg path {
  fill: #e8011b;
}

/*
 FOOTER SECTION
 ----------------------------------------------------------------------------*/
#footer {
  position:relative;
  width: 100%;
  font-family: franklin-gothic-urw, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #b9acac;
  text-transform: uppercase;
  padding: 2.25rem 2rem 0;
  z-index: 2;
  padding-bottom: .5em;
  background-color: #000;
  align-self: flex-end;
}
.home #footer {
  padding-top: 0;
}
body:not(.home) #footer:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  filter: drop-shadow(-0.0625em -0.0625em 0.0625em rgba(0,0,0,.375));
  background-color: #000;
}
@media (max-width: 1023px) {
  #footer {
    padding: 0 1em 7em;
  }
}

#home .container .flex {
  margin: 2em auto 0;
  justify-content: center;
  gap: 2em;
}
@media (max-width:399px) {
  #home .container .flex { font-size: 4vw; }
}
#home .container .flex > a {
  display: flex;
  align-items: center;
  justify-content:center;
  min-height: 6.5em;
  font-size: 1.375em;
  line-height: 1.05;
}
@media (max-width: 1023px) {
  #home .container .flex {
    flex-direction: column;
    width:100%;
    max-width: 25em;
    display: block;
  }
  #home .container .flex > a {
    flex: 0 0 8em;
  }
  #home .container .flex > a:not(:last-child) {
    margin-bottom: 1.5em;
  }
}

#footer a {
  color:#b9acac;
}

#footer a:hover {
  color:#fff;
}

#footer .optin {
  margin: 0 auto 5em;
}

#footer .social {
  font-size: 1.875rem;
  line-height: .8;
  margin: 0 auto;
}

#footer .copyright {
  margin: .75em auto;
}

#footer-social a:hover {
  color: #fff;
}

#footer .address,
#footer .copyright {
  font-size: .625rem;
}
#footer .copyright {
  line-height: 1.025;
}

.theater-logo {
  width: auto;
  height: 4.25em;
}

#footer .address a { color: #fff; position: relative; display: inline-block; mix-blend-mode: lighten; }
#footer .address a:hover { color: #e8011b; }

#footer .address a img { transition: all .2s; opacity: 1; display: block; position: relative; left: 50%; transform: translateX(-50%); }
#footer .address a img.over { position: absolute; top: 0; opacity: 0; }
#footer .address a:hover img.over { opacity: 1; }
#footer .address a:hover img:not(.over) { opacity: 0; }

/*
  AMEX LOGO
----------------------------------------------------------------------------*/
#amex {
  position: absolute;
  right:20px;
  bottom:20px;
}

#amex span {
  display: inline-block;
  vertical-align: middle;
}
#amex span, #amex strong {
  font-family: Helvetica, Arial, sans-serif !important;
}
#amex .text {
  font-size: 11px;
  line-height: 1.125;
  margin-right: 12px;
  margin-top: 0.5em;
  text-align: right;
  -webkit-font-smoothing: subpixel-antialiased;
  color: #fff; 
}
#amex strong { font-weight: bold; font-size: 10px; }
#amex .logo {
  float:right;
  width: 35px;
  background-color: #fff;
}
@media (max-width:1023px) {
  #amex {
    position:relative;
    right:auto;
    bottom:auto;
    margin: 1em 0 0;
    display: inline-block;
  }
}

/* cookie consent */
body .cc-banner .cc-message {
  text-align:left;
  margin-right: 2em;
}
body .cc-window.cc-banner {
  flex-direction: row;
}
@media (max-width:532px) {
  body .cc-window.cc-banner {
    flex-direction: column;
    gap: 1em;
  }
  body .cc-btn {
    display: block;
  }
  body .cc-compliance {
    width: 100%;
  }
}


/* Spotify player */
#spotify {
  position: fixed;
  top: 50%;
  right: 0;
  width: calc(100vw - 2.5em);
  max-width: 18em;
  height: 60vh;
  min-height: 16.5em;
  background: #d1181c;
  border-radius: 0.875rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin: 0;
  -webkit-transition: transform 300ms linear;
  -ms-transition: transform 300ms linear;
  transition: transform 300ms linear;
  z-index:2;
  opacity:0;
  transform: translate(100%,-50%);
  box-shadow: 0.5em 0.25em 0.875em rgba(0,0,0,.5);
}
.page-loaded #spotify {
  opacity: 1;
}
#spotify.open {
  transform: translate(0,-50%);
}
#spotify .container {
  height: 100%;
  width: 100%;
}
#spotify iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#media {
  width: 1.5em;
  height: auto;
  background-color: #e8011b;
  font-size: 1.375em;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: all .3s;
  padding: 0 .1em;
  box-sizing: border-box;
  text-align: center;
  white-space: nowrap;
  border-radius: .25em;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  opacity: 0;
}
.page-loaded #media {
  opacity: 1;
}
#media button {
  position: relative;
  display: block;
  color: #fff;
  width: 1.1em;
  height: 1.1em;
  margin: .25em auto;
}
#media button svg > * {
  fill: #ffffff;
}
#media button:hover svg > * {
  fill: #000000;
}
#media button * {
  pointer-events: none;
}
#media svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  height: 90%;
}
#media .listen-button:hover {
  cursor:pointer;
  filter: brightness(1.1);
}
@media (max-width:532px) {
  #spotify {
    height: 352px;
  }
}

#spotify .close {
  width: 0.75em;
  height: 0.75em;
  margin-left: 0.125em;
}
#spotify.open .close {
  display: block;
}