/* app/assets/stylesheets/shared/global/revealable.css */
.revealable {
  visibility: hidden;
  opacity: 0;
  transition: opacity ease-out 320ms;
}
.revealable--visible {
  visibility: visible;
}
.revealable.revealable--unhide {
  opacity: 1;
  visibility: visible;
}

/* app/assets/fd-pkgs/@fd-assets/overlays/stylesheets/Fandango.dropdown.css */
.fd-dropdown__container {
  position: absolute;
  z-index: 8;
  background-color: #fff;
  color: #171c20;
  padding: 15px 15px 15px 15px;
  text-transform: none;
  text-align: left;
}
.fd-dropdown__close_btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  background-color: transparent;
  background-image: url(data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225%22%20height%3D%2225%22%20viewBox%3D%220%200%2025%2025%22%3E%3Cpath%20fill%3D%22%23a0a0a0%22%20d%3D%22M22.6%200L12.4%2010.2%202.2%200%200%202.2l10.2%2010.2L0%2022.6l2.2%202.2%2010.2-10.2%2010.2%2010.2%202.2-2.2-10.2-10.2L24.8%202.2z%22%2F%3E%3C%2Fsvg%3E);
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
  direction: ltr;
  width: 16px;
  height: 16px;
  padding: 0;
  cursor: pointer;
  border: none;
}

/* app/assets/fd-pkgs/@fd-assets/overlays/stylesheets/Fandango.overlay.css */
.body--no-scroll {
  overflow: hidden;
  height: 100vh;
}
.fd-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  top: -2000px;
  left: -2000px;
  z-index: 100;
  background-color: #f9f9f9;
  color: #000;
  overflow-y: scroll;
  display: none;
}
.fd-overlay--dark {
  background-color: #333;
  color: #fff;
}
.fd-overlay--open {
  top: 0;
  left: 0;
  display: block;
}
.fd-overlay__header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  line-height: 40px;
  height: 40px;
  background-color: #333;
  background-color: rgba(0, 0, 0, .4);
  text-align: center;
}
.fd-overlay__container {
  padding: 40px 15px 20px;
}
.fd-overlay .icon.fd-overlay__close {
  position: fixed;
  top: 18px;
  right: 20px;
  width: 30px;
  height: 30px;
  background-size: 15px;
}
.fd-overlay__hr {
  border-width: 1px 0 0;
  border-top: solid 1px #d5d5d5;
  margin: 6px 0;
}
.fd-overlay__close-btn-x,
.no-touch .invert-hover .fd-overlay__close-btn-x:hover {
  position: fixed;
  top: 16px;
  right: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  background-color: transparent;
  background-image: url(data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2225%22%20height%3D%2225%22%20viewBox%3D%220%200%2025%2025%22%3E%3Cpath%20fill%3D%22%23a0a0a0%22%20d%3D%22M22.6%200L12.4%2010.2%202.2%200%200%202.2l10.2%2010.2L0%2022.6l2.2%202.2%2010.2-10.2%2010.2%2010.2%202.2-2.2-10.2-10.2L24.8%202.2z%22%2F%3E%3C%2Fsvg%3E);
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
  direction: ltr;
  width: 16px;
  height: 16px;
  padding: 0;
  cursor: pointer;
}
@media (orientation: landscape) {
  .fd-overlay {
    margin: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
  }
}

/* app/assets/fd-pkgs/@fd-assets/overlays/stylesheets/Fandango.favoriteFlyout.css */
.favoriteFlyout {
  background: rgba(51, 51, 51, 0.95);
  border-top: 2px solid #f15500;
  box-shadow: 0px 2px 2px rgba(50, 50, 50, 0.3);
  display: table;
  border-collapse: collapse;
  position: fixed;
  padding: 10px 10px 10px 15px;
  width: 224px;
  height: auto;
  top: 15px;
  right: 30px;
  opacity: 0;
  z-index: 0;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.215, 0.610, 0.355, 1.000), opacity 0.3s cubic-bezier(0.215, 0.610, 0.355, 1.000);
  -moz-transition: -moz-transform 0.3s cubic-bezier(0.215, 0.610, 0.355, 1.000), opacity 0.3s cubic-bezier(0.215, 0.610, 0.355, 1.000);
  -o-transition: -o-transform 0.3s cubic-bezier(0.215, 0.610, 0.355, 1.000), opacity 0.3s cubic-bezier(0.215, 0.610, 0.355, 1.000);
  transition: transform 0.3s cubic-bezier(0.215, 0.610, 0.355, 1.000), opacity 0.3s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
section.favoriteFlyout--visible {
  opacity: 1;
  z-index: 1000;
}
.favoriteFlyout::before {
  background: #fff no-repeat 50% 50%;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyM3B4IiB2aWV3Qm94PSIwIDAgMjQgMjMiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDI0IDIzOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDojMzMzMzMzO30NCjwvc3R5bGU+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMjQsMi42bC0xLjctMS4xbDAsMGMwLDAsMCwwLDAsMEwyMCwwbC03LjcsMTEuN2wtMy4yLDQuMkwzLjgsOS44TDAsMTMuMmwxLjMsMS41YzAsMCwwLDAuMSwwLjEsMC4xTDgsMjIuMw0KCUM4LjUsMjIuOCw4LjksMjMsOS43LDIzYzAuOC0wLjEsMS4yLTAuMywxLjYtMC45bDcuNC0xMS41TDI0LDIuNnoiLz4NCjwvc3ZnPg0K);
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background-size: 18px 18px;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
}
.favoriteFlyout.favoriteFlyout--hidden::before {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDI0IDI0OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDojM0EzQTNBO30NCjwvc3R5bGU+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMTYuMSwxMmw3LjEtNy4xYzEuMS0xLjEsMS4xLTMsMC00LjFjLTEuMS0xLjEtMy0xLjEtNC4xLDBMMTIsNy45TDQuOSwwLjhjLTEuMS0xLjEtMy0xLjEtNC4xLDANCgljLTEuMSwxLjEtMS4xLDMsMCw0LjFMNy45LDEybC03LjEsNy4xYy0xLjEsMS4xLTEuMSwzLDAsNC4xYzAuNiwwLjYsMS4zLDAuOCwyLDAuOHMxLjUtMC4zLDItMC44bDcuMS03LjFsNy4xLDcuMQ0KCWMwLjYsMC42LDEuMywwLjgsMiwwLjhjMC43LDAsMS41LTAuMywyLTAuOGMxLjEtMS4xLDEuMS0zLDAtNC4xTDE2LjEsMTJ6Ii8+DQo8L3N2Zz4NCg==);
}
.favoriteFlyout::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-bottom: 8px solid #f15500;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  position: absolute;
  top: -8px;
  right: -0.25px;
}
.favoriteFlyout__message {
  color: #fff;
  padding: 15px 10px 15px 49px;
}

/* app/assets/stylesheets/shared/global/globalTooltip.css */
.global-tooltip {
  background-color: var(--blue-500);
  border-radius: 12px;
  display: flex;
  gap: 16px;
  padding: 16px;
}
.global-tooltip__container--tsp-desktop {
  margin: 20px 0;
}
.global-tooltip__container--home-desktop {
  float: right;
  right: 16px;
  top: -4px;
  max-width: 327px;
  position: absolute;
}
.global-tooltip__container--tsp-mobile,
.global-tooltip__container--home-mobile {
  padding: 16px;
}
.global-tooltip__container--home-mobile {
  bottom: 50px;
  width: 100vw;
  min-width: 343px;
  position: fixed;
}
.global-tooltip__container--mop-mobile-buy-tickets {
  padding: 20px 0;
}
.global-tooltip__container--mop-mobile-at-home {
  padding: 20px 16px;
}
.global-tooltip--with-button {
  align-items: center;
}
.global-tooltip__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
}
.global-tooltip__title,
.global-tooltip__text {
  color: #f2f3f3;
}
.global-tooltip__tag-text,
.global-tooltip__title,
.global-tooltip__link {
  font-weight: bold;
}
.global-tooltip__tag-text {
  color: var(--text-primary);
  border-radius: 4px;
  background-color: var(--light-overlay-8);
  font-size: 12px;
  padding: 4px 8px;
  align-items: center;
  line-height: 16px;
}
.global-tooltip__title {
  font-size: 16px;
}
.global-tooltip__text {
  font-size: 14px;
  line-height: 20px;
}
.global-tooltip__link:hover,
.global-tooltip__link:focus {
  color: rgba(255, 255, 255, 0.80) !important;
}
.global-tooltip__link {
  color: var(--text-primary);
  font-size: 14px;
  line-height: 20px;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  text-decoration-thickness: 2px;
}
.global-tooltip__button,
.global-tooltip__button:hover,
.global-tooltip__button:focus {
  color: var(--button-text-primary);
  cursor: pointer;
}
.global-tooltip__button {
  background-color: var(--neutral-500);
  text-transform: none;
  height: fit-content;
  padding: 6px 16px;
  font-size: 14px;
  border-radius: 8px;
  line-height: 20px;
  font-weight: bold;
}
.global-tooltip__button:hover,
.global-tooltip__button:focus {
  text-decoration: none;
  background-color: var(--neutral-400);
}
.global-tooltip__close-btn-wrapper {
  width: 24px;
}
.global-tooltip__close-btn {
  background-image: url("//images.fandango.com/fandango-www/screenplay/assets/v2/images/shared/icons/global/icon-close--small-gray.7funork1.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
  height: 40px;
  width: 40px;
  border-radius: 8px;
  position: relative;
  top: -8px;
  right: 8px;
}
.global-tooltip__close-btn:hover,
.global-tooltip__close-btn:focus {
  background-color: var(--light-overlay-8);
}

/* app/assets/stylesheets/shared/global/ads.css */
.ad {
  overflow: hidden;
  text-align: center;
  width: 100%;
}
.ad__sticky--mobile {
  position: sticky;
  bottom: calc(env(safe-area-inset-bottom) + 50px);
  display: flex;
  justify-content: center;
}
.ad__sticky--mobile-hidden {
  position: absolute;
  bottom: 10000px;
}
.ad__sticky-close-btn--mobile {
  height: 15px;
  width: 15px;
  position: unset;
  top: unset;
  right: unset;
  background-size: 50%;
  border-radius: 50%;
  background-color: #e1e1e1;
}
.ad__sticky_close_wrapper {
  padding: 16.5px;
  position: absolute;
  top: -18px;
  right: -16px;
  z-index: 42;
}
.ad__sticky-relative--mobile {
  height: 50px;
  width: 320px;
  position: relative;
}
.ad > div {
  position: relative;
  z-index: 0;
  margin: auto;
}
.ad > .mps-wrapper {
  z-index: auto;
}
.ad .ad-adhesive {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  display: block;
  width: auto;
  height: auto;
}
.ad-unit {
  text-align: center;
  margin: auto auto;
}
#top-banner div {
  margin: 0 auto;
}
#top-banner > .ad-topbanner {
  padding: 10px 0;
  text-align: center;
  -webkit-transition: padding 0.5s;
  -moz-transition: padding 0.5s;
  -ms-transition: padding 0.5s;
  -o-transition: padding 0.5s;
  transition: padding 0.5s;
}
.ad-unit--shop-ad {
  margin-bottom: 30px;
}
.ad-unit--sidebar:first-child {
  margin-top: 25px;
}
.ad-unit--sidebar {
  margin-bottom: 20px;
}
.tdp .ad-unit--sidebar:first-child {
  margin-top: -250px;
  min-height: 250px;
}
[data-slot=homepagelogo] {
  display: none;
}
@media (min-width: 1025px) {
  #top-banner > .ad-topbanner {
    min-height: 110px;
  }
}
@media (max-width: 767px) {
  .carousel > .ad-box:first-child {
    position: static;
    margin-top: 20px;
  }
  .content > .ad-box:first-child {
    margin-bottom: 20px;
  }
}

/* app/assets/stylesheets/shared/global/button.css */
.btn {
  background-color: var(--orange-400);
  border: 0;
  border-radius: 4px;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  padding: 0.5em 1em;
  line-height: 1em;
  font-size: 0.8125rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}
.btn,
a.btn {
  color: var(--neutral-000);
}
.btn-link {
  background-color: unset;
  font-weight: bold;
}
.btn-link:hover,
.btn-link:focus {
  text-decoration: underline;
}
.btn-cta {
  background-color: #4691e3;
}
.showtimes-btn-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.showtimes-btn-list__item {
  display: flex;
  flex-direction: column;
  width: 71px;
  position: relative;
}
.showtime-btn__matinee-msg {
  text-align: center;
  width: 100%;
  font-size: 10px;
  line-height: 16px;
}
html .showtime-btn--expired,
html .showtime-btn--disabled,
html .showtime-btn--soldout {
  background-color: var(--neutral-300);
  color: var(--neutral-000);
}
html body .showtime-btn--disabled:focus,
html body .showtime-btn--expired:focus,
html body .showtime-btn--soldout:focus,
html body .showtime-btn--disabled:hover,
html body .showtime-btn--expired:hover,
html body .showtime-btn--soldout:hover {
  background-color: var(--neutral-500);
}
html .showtime-btn--restricted,
html .showtime-btn--restricted:hover,
html .showtime-btn--restricted:focus {
  opacity: 0.5;
}
.showtime-btn--non-ticketing {
  color: #333;
  background-color: transparent;
  font-weight: bold;
}
.location-btn {
  background-color: transparent;
  display: flex;
  padding: 0;
  cursor: pointer;
}
.btn-white-cta {
  background-color: #f2f3f3;
  border: none;
  border-radius: 4px;
  color: var(--blue-600);
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  padding: 10px 16px;
  -webkit-transition: background-color 0.3s, color 0.3s;
  -moz-transition: background-color 0.3s, color 0.3s;
  -ms-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  width: 212px;
}
.btn-white-cta:active {
  border: 1px solid #f2f3f3;
  background: rgba(242, 243, 243, 0.60);
}
.btn-outlined {
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid #4691e3;
  display: inline-flex;
  color: var(--neutral-000);
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}
.btn-outlined:hover {
  background: rgba(52, 120, 193, 0.10);
}

/* app/assets/fd-pkgs/@fd-assets/carousel/stylesheets/shared/carousel.css */
.fd-carousel {
  background-color: #fff;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 0;
}
.fd-carousel__heading {
  color: #171c20;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0 20px 20px;
}
.fd-carousel-placeholder {
  display: flex;
  overflow: hidden;
  flex-wrap: nowrap;
  padding-left: 20px;
}
.fd-carousel-placeholder__item {
  height: 227px;
  width: calc((100% / 3));
  border-radius: 10px;
  animation: loading 3s infinite linear;
  background:
    linear-gradient(
      135deg,
      #eff1f3 0%,
      #eff1f3 34%,
      #fff 55%,
      #f9fbfd 59%,
      #eff1f3 66%);
  background-size: 100%;
  margin-right: 20px;
}
.fd-carousel__slide {
}
.fd-carousel__link {
  display: block;
  color: #171c20;
  position: relative;
}
.fd-carousel .fd-carousel__link:hover,
.fd-carousel .fd-carousel__link:focus {
  color: #3478c1;
  text-decoration: none;
  border: 0;
  outline: none;
}
.fd-carousel__fig {
  margin: 0;
  padding: 0;
}
.fd-carousel__img-wrap {
  border-radius: 10px;
  background-color: #000;
  overflow: hidden;
  position: relative;
}
.fd-carousel__img-wrap--is-video::after {
  background-image: url(data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2256%22%20height%3D%2256%22%20fill%3D%22none%22%20viewBox%3D%220%200%2056%2056%22%3E%3Cpath%20fill%3D%22%23000%22%20fill-opacity%3D%22.6%22%20fill-rule%3D%22evenodd%22%20d%3D%22M56%2028c0%2015.464-12.535%2028-28%2028C12.536%2056%200%2043.464%200%2028S12.536%200%2028%200c15.465%200%2028%2012.536%2028%2028z%22%20clip-rule%3D%22evenodd%22%2F%3E%3Ccircle%20cx%3D%2228%22%20cy%3D%2228%22%20r%3D%2226.5%22%20stroke%3D%22%23fff%22%20stroke-width%3D%223%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%20d%3D%22M38.244%2026.6L22.637%2016.286C21.51%2015.54%2020%2016.34%2020%2017.686v20.63c0%201.342%201.51%202.144%202.637%201.399l15.607-10.316a1.674%201.674%200%20000-2.8%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E);
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  position: absolute;
  bottom: 10px;
  left: 10px;
  height: 28px;
  width: 28px;
}
@media (min-width: 1024px) {
  .fd-carousel__img-wrap--is-video::after {
    bottom: 20px;
    left: 20px;
    height: 56px;
    width: 56px;
  }
}
.fd-carousel__link:hover .fd-carousel__img,
.fd-carousel__link:focus .fd-carousel__img {
  opacity: 0.65;
}
.fd-carousel__link:focus .fd-carousel__img {
  outline: 5px solid #3478c1;
  outline-offset: -5px;
}
.fd-carousel__title,
.fd-carousel__description {
  margin: 0;
  padding: 0;
}
.fd-carousel__title {
  text-transform: none;
  font-size: 16px;
  margin: 8px 0 4px;
  line-height: 1.25;
  font-weight: bold;
}
.fd-carousel__description {
  font-weight: normal;
}
.fd-carousel__arrow[disabled] {
  display: none;
}
.fd-carousel__arrow {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2232%22%20fill%3D%22none%22%20viewBox%3D%220%200%2032%2032%22%3E%3Crect%20width%3D%2230%22%20height%3D%2230%22%20x%3D%22-1%22%20y%3D%221%22%20fill%3D%22%23121212%22%20fill-opacity%3D%22.6%22%20rx%3D%2215%22%20transform%3D%22matrix(-1%200%200%201%2030%200)%22%2F%3E%3Crect%20width%3D%2230%22%20height%3D%2230%22%20x%3D%22-1%22%20y%3D%221%22%20stroke%3D%22%23E7E7E7%22%20stroke-width%3D%222%22%20rx%3D%2215%22%20transform%3D%22matrix(-1%200%200%201%2030%200)%22%2F%3E%3Cpath%20fill%3D%22%23E7E7E7%22%20fill-rule%3D%22evenodd%22%20d%3D%22M19.148%2015.998l-6.482%206.307%201.162%201.195%206.79-6.607a1.25%201.25%200%20000-1.792L13.827%208.5l-1.162%201.195%206.482%206.304z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 32px 32px;
  border-radius: 100%;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.30);
  height: 32px;
  width: 32px;
  position: absolute;
  left: 3px;
  top: 100px;
  z-index: 1;
}
.fd-carousel__arrow--left {
  transform: rotate(180deg);
}
.fd-carousel__arrow--right {
  left: auto;
  right: 3px;
}
.fd-carousel__arrow:hover,
.fd-carousel__arrow:focus {
  outline: none;
  background-image: url("data:image/svg+xml;charset%3DUS-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2232%22%20fill%3D%22none%22%20viewBox%3D%220%200%2032%2032%22%3E%3Crect%20width%3D%2230%22%20height%3D%2230%22%20x%3D%22-1%22%20y%3D%221%22%20fill%3D%22%233478C1%22%20fill-opacity%3D%22.8%22%20rx%3D%2215%22%20transform%3D%22matrix(-1%200%200%201%2030%200)%22%2F%3E%3Crect%20width%3D%2230%22%20height%3D%2230%22%20x%3D%22-1%22%20y%3D%221%22%20stroke%3D%22%23E7E7E7%22%20stroke-width%3D%222%22%20rx%3D%2215%22%20transform%3D%22matrix(-1%200%200%201%2030%200)%22%2F%3E%3Cpath%20fill%3D%22%23E7E7E7%22%20fill-rule%3D%22evenodd%22%20d%3D%22M19.148%2015.998l-6.482%206.307%201.162%201.195%206.79-6.607a1.25%201.25%200%20000-1.792L13.827%208.5l-1.162%201.195%206.482%206.304z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
  background-color: #3478c1;
}
@keyframes loading {
  0% {
    background-position: -412px 0;
  }
  100% {
    background-position: 412px 0;
  }
}

/* app/assets/stylesheets/shared/global/focusableInput.css */
.fcsbl-input__holder {
  background-color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 20px 0 12px;
  padding: 2px;
}
.fcsbl-input__floating-label {
  background-color: var(--neutral-000);
  color: inherit;
  font-family:
    "Proxima Nova",
    proxima-nova,
    Arial,
    sans-serif;
  font-size: 1em;
  left: 10px;
  order: -1;
  padding: 2px 4px;
  pointer-events: none;
  position: absolute;
  top: 16px;
  transition: all 0.125s ease-in-out;
}
.fcsbl-input__field {
  background-color: inherit;
  border-color: inherit;
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  color: inherit;
  font-size: 1em;
  line-height: 1em;
  width: 100%;
  height: 50px;
  padding: 16px;
}
.fcsbl-input__field:focus + label,
.fcsbl-input__field:not(:placeholder-shown) + label {
  font-size: 0.825em;
  line-height: 0.825em;
  top: -4px;
}
.fcsbl-input__pw-toggle-icon {
  height: 18px;
  position: absolute;
  right: 16px;
  top: 18px;
}
.fcsbl-input__error-section {
  display: flex;
  align-items: center;
  margin-top: 6px;
}
.fcsbl-input__error {
  color: var(--red-400);
  border-color: var(--red-400);
}
.fcsbl-input__error-msg {
  margin-left: 26px;
}
.fcsbl-input__error-icon {
  margin-left: 2px;
  position: absolute;
}
.fcsbl-input__sub-text {
  text-align: left;
  font-size: 12px;
  padding-bottom: 12px;
}

/* app/assets/stylesheets/shared/global/offerBanner.css */
.global-offer-banner {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  background-color: var(--neutral-000);
}
.splide.global-offer-banner__splide {
  visibility: visible;
}
.global-offer-banner__wrap {
  max-width: 375px;
  margin: auto;
  position: relative;
}
.is-desktop .global-offer-banner__wrap {
  max-width: 600px;
}
.global-offer-banner__slide {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.is-desktop .global-offer-banner__slide {
  height: 80px;
}
.global-offer-banner__link {
  display: flex;
  font-size: 12px;
  text-align: center;
}
.global-offer-banner__slide .global-offer-banner__link:hover {
  text-decoration: none;
}
.global-offer-banner__link:hover .global-offer-banner__label {
  text-decoration: underline;
}
.global-offer-banner__gift-box-icon.icon.icon-gift-box-white,
.global-offer-banner__icon {
  border-radius: 50%;
  height: 26px;
  margin-right: 8px;
}
.global-offer-banner__gift-box-icon.icon.icon-gift-box-white {
  background-color: #9c4eb0;
  background-size: 15px 15px;
  flex: 0 0 26px;
  width: 26px;
}
.is-desktop .global-offer-banner__gift-box-icon.icon.icon-gift-box-white {
  background-size: 20px 20px;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
}
.is-desktop .global-offer-banner__icon {
  height: 38px;
}
.global-offer-banner__label {
  color: #4691e3;
}
.global-offer-banner__label,
.global-offer-banner__title {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.is-desktop .global-offer-banner__label,
.is-desktop .global-offer-banner__title {
  font-size: 16px;
}
.global-offer-banner__title {
  color: #333e48;
  font-weight: normal;
}
.global-offer-banner .fd-carousel__arrow {
  background-size: 24px 24px;
  height: 24px;
  width: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.global-offer-banner .fd-carousel__arrow--left {
  left: 0;
  transform: translateY(-50%) rotate(180deg);
}
.global-offer-banner .fd-carousel__arrow--right {
  right: 0;
}
.is-mobile .global-offer-banner .fd-carousel__arrow {
  background-color: transparent;
  background-size: 18px 18px;
  height: 24px;
  width: 24px;
  padding: 15px 15px;
}

/* app/assets/stylesheets/shared/global/offeringModal.css */
.offer-modal__content {
  background-color: var(--neutral-600);
  border: 1px solid var(--neutral-400);
  border-radius: 16px;
  transition: transform 0.3s ease-out;
  width: 398px;
}
.offer-modal__content.closing {
  transform: translateY(100%);
}
.offer-modal__header {
  border-bottom: 1px solid var(--neutral-400);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 8px 10px 8px 20px;
}
.offer-modal__title {
  color: var(--blue-600);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin: 10px 0;
}
.offer-modal__close {
  margin: 10px;
}
.offer-modal__image-wrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.offer-modal__image {
  max-height: 260px;
  max-width: 250px;
}
.offer-modal__headline {
  align-self: start;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}
.offer_modal__headline_description {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  margin-top: 4px;
}
.offer-modal__description {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin-top: 10px;
}
.offer-modal__description-wrap {
  overflow-y: auto;
  max-height: 60px;
}
.offer-modal__footer {
  padding: 20px;
}
.offer-modal__terms-and-conditions {
  color: #999;
  display: none;
  font-size: 12px;
  line-height: 16px;
  margin: 8px 0 8px 0;
}
.offer-modal__button {
  align-items: center;
  background-color: var(--orange-400);
  border-radius: 4px;
  color: var(--neutral-000);
  display: flex;
  font-size: 14px;
  font-weight: 700;
  height: 40px;
  justify-content: center;
  margin: 0 20px 20px;
  padding: 6px 16px;
}
.offer-modal__body {
  overflow-y: auto;
  max-height: 490px;
}
.offer-modal__legal-wrap {
  display: flex;
  flex-direction: column;
  margin: 0 20px 20px 20px;
}
.offer-modal__terms-toggle {
  background: none;
  border: none;
  color: #4691e3;
  cursor: pointer;
  font-size: 14px;
  padding-bottom: 10px;
  text-decoration: underline;
}
.offer-modal__terms-toggle:hover {
  color: var(--orange-400);
}
.offer-banner--hide {
  display: none;
}
.open.offer-banner--hide {
  display: block;
}
@media (max-width: 768px) {
  .offer-modal__content {
    border-radius: 16px 16px 0 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: none;
    margin: 0;
    overflow-y: auto;
    position: fixed;
    transform: translateY(0);
    width: 100%;
  }
  .offer-modal__header {
    border-bottom: 1px solid var(--neutral-400);
    margin: 0;
    padding: 16px;
  }
}

/* app/assets/stylesheets/shared/global/globalOfferModal.css */
.fd-overlay--mobile .global-offer-banner,
.global-offer-dialog.dialog .global-offer-banner {
  background: #9c4eb0;
  color: var(--neutral-000);
  cursor: pointer;
  display: inline-block;
  font-family:
    proxima-nova,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 14px;
  left: -10px;
  line-height: 15px;
  min-height: 22px;
  padding: 6px 8px;
  position: absolute;
  text-transform: uppercase;
  top: -20px;
  z-index: 1;
}
.fd-overlay--mobile .global-offer-banner:before,
.global-offer-dialog.dialog .global-offer-banner:before {
  border-color: #70307c transparent transparent transparent;
  border-style: solid;
  border-width: 10px 0 0 10px;
  bottom: -10px;
  content: "";
  display: block;
  height: 0;
  left: 0;
  position: absolute;
  width: 0;
}
.fd-overlay--mobile .global-offer-banner__item,
.global-offer-dialog.dialog .global-offer-banner__item,
.global-offer-dialog.dialog .global-offer-banner__item.messaging {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
.global-offer-dialog.dialog .global-offer-banner__item.messaging {
  font-size: 13px;
}
.global-offer-dialog.dialog .global-offer-banner .icon-gift-box-white {
  background-size: 13px;
  padding-left: 18px;
  width: 18px;
  height: 18px;
}
.global-offer-dialog.dialog .global-offer-banner .icon-vip-plus-points-white {
  background-size: 35px;
  padding-left: 38px;
  width: 36px;
  height: 17px;
}
.global-offer-dialog.dialog .close-modal {
  position: absolute;
  height: 22px;
  right: -11px;
  top: -11px;
  width: 22px;
  z-index: 1;
}
.global-offer-dialog.dialog > .dialog-content {
  background-color: var(--neutral-400);
  color: var(--neutral-000);
  padding: 0;
  width: 620px;
}
.global-offer-dialog.dialog > .dialog-content > small {
  background: var(--neutral-400);
  display: block;
  font-size: 10px;
  line-height: 13px;
  padding: 10px;
}
.global-offer-dialog.dialog > .dialog-content > small > p {
  color: var(--neutral-000);
  font-size: 14px;
  line-height: 19px;
  margin-bottom: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.global-offer-dialog.dialog img {
  display: block;
  margin: 0 auto;
}
.global-offer-heading {
  position: relative;
  width: 100%;
}
.global-offer-footer {
  background: var(--neutral-400);
  border: 0;
  min-height: 64px;
  padding: 10px;
  margin: 0 0 10px;
  position: relative;
}
.global-offer-footer h4 {
  color: var(--neutral-000);
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  text-transform: none;
}
[data-offer-id] {
  cursor: pointer;
}
@media (max-width: 767px) {
  .global-offer-dialog.dialog > .dialog-content {
    max-width: 620px;
    width: 90%;
  }
  .global-offer-dialog.dialog img {
    height: auto;
    max-height: 350px;
  }
}
.fd-overlay--mobile .global-offer-banner {
  left: 5px;
  top: 13px;
}
.fd-overlay--mobile .global-offer-heading {
  width: 100%;
  height: auto;
}
.fd-overlay--mobile .icon.fd-overlay__close {
  top: 5px;
  background-size: 20px;
  right: 10px;
}
.global-offer-banner--hide {
  display: none;
}
.fd-overlay--open .global-offer-banner--hide,
.open.global-offer-banner--hide {
  display: block;
}

/* app/assets/stylesheets/shared/placeholder.css */
html [data-css-vars=lazyload-calendar],
html [data-css-vars=lazyload-formats] {
  --ph-height: 84px;
  --ph-left: 16px;
}
html .icon.text-placeholder {
  width: 100%;
  height: 36px;
}
.icon.text-placeholder--fill {
  width: 100%;
  height: 2.3rem;
  display: block;
  margin: 0 auto 18px;
  background-size: cover;
}
.icon.text-placeholder--fill + .icon.text-placeholder--fill {
  margin-top: 30px;
}
.icon.text-placeholder--fill + .icon.text-placeholder--fill:before {
  border-top: 1px solid #ece5e5;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  position: relative;
  top: -15px;
}
html .icon.link-text-placeholder--right-third {
  width: 100%;
  background-position: right center;
  height: 15px;
  background-size: 34% 100%;
}
.icon.text-placeholder--slim {
  margin: 0;
}
html .f-logo-bg {
  background-color: #c0c0c0;
  background-size: contain;
  background-position: center center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 301'%3E%3Cpath fill='%23C0C0C0' d='M0 0h200v301H0z'/%3E%3Cpath d='M200 0h-97.19L21.95 21.08l25.86 93.79a44.52 44.52 0 0134.52 31.6 43.08 43.08 0 01-13.65 44.16v.05l25.83 93.78 105.51-27.51z' fill='%23d5d5d5'/%3E%3Cpath d='M200 0h-67.27L31.44 26.41l23.52 85.4c34.38 8.27 46.77 55.18 21.85 79.38l23.16 84.07 100-26.08z' fill='%23C0C0C0'/%3E%3Cpath d='M200 115.11l-46.9 12.22-16.19-58.8L200 52.08V0h-41.95L40.15 30.74l20 72.49a59 59 0 0136.66 39.5 57.13 57.13 0 01-11.49 52.06l19.6 71.15 80.57-21-16.19-58.8 30.7-8z' fill='%23d5d5d5'/%3E%3C/svg%3E");
}
.calendar-placeholder--mobile {
  margin-bottom: 19px;
}
.calendar-placeholder--mobile,
.format-filter-placeholder--mobile {
  margin-left: var(--ph-left);
}
.format-filter-placeholder--desktop,
.format-filter-placeholder--mobile {
  margin-top: 7px;
}
.format-filter-placeholder--mobile {
  margin-bottom: 21px;
}
.format-filter-placeholder--desktop {
  margin-bottom: 17px;
}
.scrollable-list-placeholder {
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
.scrollable-list-placeholder > .list-placeholder--person:first-child {
  margin-left: 10px;
}
.icon.list-placeholder--person {
  width: 84px;
  height: 84px;
}
.img-gallery-scrollable__placeholder {
  width: 118px;
  height: 112px;
  background-color: rgb(214, 215, 216);
  display: inline-block;
  margin-right: 5px;
}
.movie-detail__grv-wrap .scrollable-list-placeholder {
  margin-bottom: 20px;
}

/* app/assets/stylesheets/desktop/global/Fandango.Dialog.css */
.dialog {
  position: fixed;
  top: -100%;
  left: -100%;
  z-index: 100;
}
.dialog.open {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.dialog .dialog-content {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  transform: translate(-50%, -50%);
}
.dialog.style-lightbox {
  background-color: var(--dark-overlay-60);
}
.dialog-content.style-plain {
  padding: 20px;
  min-width: 200px;
  border-radius: 4px;
  background-color: var(--neutral-000);
}
.dialog.style-lightbox.animate-fade-in {
  background-color: transparent;
  transition-property: background-color;
}
.dialog.style-lightbox.open.animate-fade-in {
  background-color: var(--dark-overlay-60);
}
.dialog-content.animate-slide-down {
  top: 0;
  transition-property: top;
}
.dialog.open .dialog-content.animate-slide-down {
  top: 50%;
}
.dialog-content.animate-fade-in {
  opacity: 0;
  transition-property: opacity;
}
.dialog.open .dialog-content.animate-fade-in {
  opacity: 1;
}
.animate-speed-fast {
  transition-duration: 0.3s;
}
.animate-speed-normal {
  transition-duration: 0.4s;
}
.animate-speed-slow {
  transition-duration: 0.7s;
}

/* app/assets/stylesheets/mweb/global/covidOverlay.css */
.covid-overlay {
  position: relative;
}
.covid-overlay__close-btn {
  position: absolute;
  top: 0;
  right: 0;
}

/* app/assets/stylesheets/mweb/global/search-autocomplete.css */
.search-overlay .fd-overlay__container {
  padding: 0 16px;
}
.search-overlay .fd-clearable-input {
  height: auto;
  padding: 0;
  width: 100%;
  background-color: transparent;
}
.search-overlay .fd-clearable-input__input {
  width: 100%;
  padding: 16px 32px 16px 42px;
  caret-color: #4691e3;
  border-radius: 0;
  box-shadow: none;
  border: 2px solid transparent;
  border-bottom-color: var(--neutral-300);
  line-height: 1;
  background-color: transparent;
  transition: border-color 0.45s ease-in-out;
  font-size: 1rem;
  background-image: url("//images.fandango.com/fandango-www/screenplay/assets/v2/images/mweb/icons/global/icon-search.7m1darcl.svg");
  background-size: auto 20px;
  background-repeat: no-repeat;
  background-position: left 10px center;
}
.search-overlay .fd-clearable-input__input:focus {
  outline: none;
  border-radius: 4px;
  border: 2px solid #4691e3;
}
.search-autocomplete__input-bar {
  margin-top: 70px;
}
.search-autocomplete__results {
  padding: 20px 0;
}
.search-autocomplete__results > .list-group {
  margin-top: -9px;
  padding-top: 0;
}
.search-autocomplete__results .list-group {
  background-color: #f9f9f9;
  margin-left: -15px;
  margin-right: -15px;
}
.search-autocomplete__header--zip {
  background-color: #f9f9f9;
  border-bottom: 1px solid #f2f2f2;
}
.search-autocomplete__header--zip .icon.icon-location-dark {
  width: 11px;
  height: 17px;
}
.search-autocomplete__headline {
  text-transform: uppercase;
  line-height: 1;
  font-weight: bold;
}
.search-autocomplete__headline--change-location {
  display: inline-block;
  margin-left: 5px;
}
.search-autocomplete__header--change-location {
  padding: 10px 15px 20px 15px;
}
.search-autocomplete__header--change-location .icon.icon-location-light {
  width: 11px;
  height: 17px;
}
.search-autocomplete__button--change-location {
  background-color: transparent;
  color: #4691e3;
  padding-left: 0;
  display: flex;
  align-items: center;
}
.search-autocomplete__close-btn {
  background-color: #f9f9f9;
  background-image: none;
  border-bottom: 1px solid #dbdbdb;
  color: #4691e3;
  display: block;
  font-size: 0.8125rem;
  font-weight: bold;
  height: auto;
  left: 0;
  padding: 14px 16px;
  position: fixed;
  right: auto;
  text-align: left;
  text-transform: uppercase;
  top: 0;
  width: 100%;
}

/* app/assets/stylesheets/mweb/shared/list-group.css */
.list-group {
  padding: 0.8rem 0;
  margin-bottom: 1rem;
  background-color: var(--neutral-000);
}
.list-group + .list-group {
  margin-top: -1em;
}
.list-group__item {
  font-size: 0.8rem;
  line-height: 1rem;
  border-bottom: 1px solid var(--light-overlay-8);
  padding: 10px 0;
  margin: 0 15px;
  min-height: 40px;
}
.list-group__item:first-child {
  padding-top: 5px;
}
.list-group__item:last-child {
  border-bottom: none;
}
.list-group__link {
  color: #4c4c4c;
}
.theater-list__aside-right {
  float: right;
  width: 4em;
  text-align: right;
}
.icon.theater-list__icon--ticketing {
  width: 20px;
  height: 25px;
}
.icon.theater-list__icon--non-ticketing {
  width: 15px;
  height: 25px;
}
.theater-list__distance {
  color: var(--neutral-300);
  vertical-align: middle;
}
.theater-list__aside-right .theater-list__distance {
  display: block;
}
.list-group__heading {
  font-size: 14px;
  line-height: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.15em;
}
.list-group__text {
  color: #4c4c4c;
  margin-bottom: 0.15em;
}
.list-group__text--light {
  color: #606060;
}
.list-group__header {
  padding: 16px 15px 10px 15px;
}
.list-group__footer {
  text-align: right;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 0 15px;
  margin-top: 10px;
}
.list-group__see-all-link {
  text-transform: uppercase;
  color: var(--orange-400);
}
.list-group__poster {
  float: left;
  width: 66px;
  height: auto;
}
.list-group--has-poster {
  min-height: 123px;
}
.list-group--has-poster .list-group__heading,
.list-group--has-poster .list-group__text {
  margin-left: 81px;
}
.list-group--has-poster .list-group__heading {
  margin-top: 25px;
}

/* app/assets/fd-pkgs/fd-location/stylesheets/fdLocation.alertBox.css */
.alert-box {
  position: relative;
}
.fd-location--mobile .alert-box__label,
.fd-location--desktop .alert-box__label {
  color: #3478c1;
  position: absolute;
  margin: 0;
  z-index: 1;
  transform: translateY(-50%);
}
.fd-location--mobile .alert-box__label {
  font-size: 16px;
  top: 50%;
  left: 16px;
  background-color: #2a2a2a;
  pointer-events: none;
  transition:
    top 0.2s ease,
    font-size 0.2s ease,
    color 0.2s ease;
}
.fd-location--mobile .alert-box:focus-within .alert-box__label,
.fd-location--mobile .alert-box:has(.alert-box__input:not(:placeholder-shown)) .alert-box__label {
  top: 14px;
  font-size: 12px;
}
.fd-location--desktop .alert-box__label {
  top: 0;
  left: 8px;
  background-color: #fff;
  padding: 0 8px;
}
.fd-location--desktop .alert-box:focus-within .alert-box__label,
.fd-location--desktop .alert-box:has(.alert-box__input:not(:placeholder-shown)) .alert-box__label {
  top: 0;
  font-size: 16px;
}
.fd-location--mobile .alert-box__input,
.fd-location--desktop .alert-box__input {
  width: 100%;
  caret-color: #3478c1;
  box-shadow: none;
  line-height: 1;
  transition: border-color 0.45s ease-in-out;
}
.fd-location--mobile .alert-box__input {
  padding: 20px 32px 8px 16px;
  border-radius: 8px;
  background-color: #2a2a2a;
  font-size: 16px;
}
.fd-location--desktop .alert-box__input {
  padding: 16px 32px 16px 16px;
  border-radius: 0;
  border: 2px solid transparent;
  border-bottom-color: #999ea3;
  background-color: transparent;
  font-size: 1rem;
}
.fd-location--mobile .alert-box__input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #2a2a2a inset;
  -webkit-text-fill-color: #b8b8b8;
}
.fd-location--mobile .alert-box input.alert-box__input:focus {
  outline: none;
  background-color: #2a2a2a;
  border-radius: 8px;
  border: 1px solid #3478c1;
}
.fd-location--desktop .alert-box input.alert-box__input:focus {
  outline: none;
  border-radius: 4px;
  border: 2px solid #3478c1;
  background-color: transparent;
}
.alert-box--error .alert-box__label {
  color: red;
}
.alert-box--error input.alert-box__input,
html .alert-box--error input.alert-box__input:focus {
  border-color: red;
}
.alert-box .fd-loading {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}
.alert-box .fd-loading ~ .icon.fd-clearable-input__icon {
  display: none;
}

/* app/assets/fd-pkgs/fd-location/stylesheets/fdLocation.overlay.css */
.location-overlay__wrapper .fd-overlay__container {
  padding: 0;
}
.location-overlay {
  padding: 24px 16px;
}
.form-navigation {
  background-color: #f9f9f9;
  padding: 14px 16px;
  color: #3478c1;
  position: relative;
  border-bottom: 1px solid #dbdbdb;
}
.form-navigation button {
  color: #3478c1;
  font-weight: bold;
  background-color: #f9f9f9;
}
.navigation-search-btn {
  float: right;
}
.location-search__wrap {
  position: relative;
}
.location-overlay.fd-location--desktop .alert-box__label {
  background: #f9f9f9;
}
.location-overlay.fd-location--mobile .alert-box__label {
  background: #2a2a2a;
  color: #b8b8b8;
}
.location-overlay.fd-location--mobile .alert-box:has(.alert-box__input:-webkit-autofill) .alert-box__label {
  background: #2a2a2a;
}
.location-search__cancel.icon-form-cancel-x {
  position: absolute;
  right: 5px;
  top: 11px;
  width: 15px;
  height: 15px;
}
.btn .fd-loading {
  height: 16px;
  margin-left: 10px;
}
.current-location {
  display: flex;
  align-items: center;
  color: #3478c1;
  margin: 24px 0 12px 0;
  padding: 0;
  background-color: transparent;
}
.current-location:hover {
  cursor: pointer;
}
.location-overlay__text {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
  margin-left: 24px;
  font-size: 14px;
}
.past-location {
  display: flex;
  align-items: center;
  padding-top: 24px;
}
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.icon-current-location.location__icon {
  background-size: 100%;
  background-position: center;
}
.location-overlay__close-btn {
  background-image: none;
  height: unset;
  width: unset;
  top: unset;
  right: unset;
  position: unset;
  font-size: unset;
}

/* swug-virtual-bundle-specifier://images.fandango.com/fandango-www/screenplay/assets/v2/stylesheets/bundles/base/global-components.d5b35hub.css */
