/* ----------------------------------------------------------------------------
= Prinrt import - compiles to /css/print.css
= Currently using Bourbon latest from CodeKit
----------------------------------------------------------------------------- */
:root {
  font-size: 20px;
}
@media screen and (min-width: 700px) {
  :root {
    font-size: calc(20px + (20 - 20) * (100vw - 700px) / (1000 - 700));
  }
}
@media screen and (min-width: 1000px) {
  :root {
    font-size: 20px;
  }
}

/*
	Note: The "mobile-nav" breakpoint is only used to set when the regular 
	nav goes away and the mobile nav shows up.
	It can/might be the same as another breakpoint but 
	is just here to help you get started. 
*/
/*
	How To Use:
	@include media($mobile){
	}
*/
/* ----------------------------------------------------------------------------
= Reset using normalize.css v3.0.1 | MIT License | git.io/normalize
----------------------------------------------------------------------------- */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
/**
 * Address styling not present in IE 8/9.
 */
mark {
  color: #000;
  background: #ff0;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0; /* 3 */
  color: inherit; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer; /* 3 */
  -webkit-appearance: button; /* 2 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-box-sizing: content-box; /* 2 */
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield; /* 1 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
  border: 1px solid #c0c0c0;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  padding: 0; /* 2 */
  border: 0; /* 1 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-spacing: 0;
  border-collapse: collapse;
}

button {
  background: none;
  border: none;
  padding: 0px;
}

*:focus {
  outline: none;
}

.user-is-tabbing *:focus {
  outline: auto;
}

/* ----------------------------------------------------------------------------
= SETUP FILE includes fonts, colors, media query values, custom mixins, utility classes
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=fonts - name like $fontname: 'name';
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=color swatches - name like $color-colorname: #000000; // Example Name
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=media queries = Located in _grid-settings.scss
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=EDP sticky sidebar variables
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=custom mixins
=currently importing default mixins from Bourbon
=reference default mixin calls at http://bourbon.io/docs/
----------------------------------------------------------------------------- */
.ir {
  display: block;
  overflow: hidden;
  background-repeat: no-repeat;
  text-align: left;
  white-space: nowrap;
  text-indent: 100%;
  direction: ltr;
}

/* ----------------------------------------------------------------------------
=clearfix mixin and utility classname
------------------------------------------------------------------------------ */
.clearfix {
  zoom: 1;
}
.clearfix:before, .clearfix:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: " ";
}
.clearfix:after {
  clear: both;
}

.clear {
  clear: both;
}

@media screen and (max-width: 700px) {
  .hide_mobile {
    display: none;
  }
}

.show_mobile {
  display: none;
}
@media screen and (max-width: 700px) {
  .show_mobile {
    display: block;
  }
}

.visuallyhidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
}

.invisible {
  visibility: hidden;
}

.hide {
  display: none;
}

/* ----------------------------------------------------------------------------
=Showtime Page Content
----------------------------------------------------------------------------- */
.content_item {
  width: 980px;
  margin: 0 auto 40px;
  max-width: calc(100% - 40px);
}
.content_item .spotlight.content_item.open-gallery-link {
  max-width: 100%;
}

.spotlight_image img {
  display: block;
  max-width: 100%;
  width: 100%;
}

.content,
.cms {
  position: relative;
  margin: 0;
  padding: 0;
  /* ----------------------------------------------------------------------------
     =Image Templates
     ----------------------------------------------------------------------------- */
}
.content img,
.cms img {
  max-width: 100%;
}
.content img[align=left], .content img.left,
.cms img[align=left],
.cms img.left {
  float: left;
  margin: 0 20px 20px 0;
}
@media screen and (max-width: 700px) {
  .content img[align=left], .content img.left,
  .cms img[align=left],
  .cms img.left {
    float: none;
    margin: 0 auto 20px;
    display: block;
  }
}
.content img[align=right], .content img.right,
.cms img[align=right],
.cms img.right {
  float: right;
  margin: 0 0 20px 20px;
}
@media screen and (max-width: 700px) {
  .content img[align=right], .content img.right,
  .cms img[align=right],
  .cms img.right {
    float: none;
    margin: 0 auto 20px;
    display: block;
  }
}
.content img[align=center], .content img.center,
.cms img[align=center],
.cms img.center {
  float: none;
  margin: 0 auto 20px;
  display: block;
}
.content .image.right,
.cms .image.right {
  float: right;
  margin: 0 0 20px 20px;
}
@media screen and (max-width: 700px) {
  .content .image.right,
  .cms .image.right {
    float: none;
    margin: 0 auto 20px;
    display: block;
  }
}
.content .image.left,
.cms .image.left {
  float: left;
  margin: 0 20px 20px 0;
}
@media screen and (max-width: 700px) {
  .content .image.left,
  .cms .image.left {
    float: none;
    margin: 0 auto 20px;
    display: block;
  }
}
.content .image.center,
.cms .image.center {
  float: none;
  margin: 0 auto 20px;
  display: block;
}
.content figcaption,
.cms figcaption {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.two-column {
  zoom: 1;
}
.two-column:before, .two-column:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: " ";
}
.two-column:after {
  clear: both;
}
.two-column > ul {
  zoom: 1;
}
.two-column > ul:before, .two-column > ul:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: " ";
}
.two-column > ul:after {
  clear: both;
}
.two-column > ul > li {
  width: 50%;
  float: left;
}
.two-column > ul > li:nth-child(odd) {
  clear: left;
}
@media screen and (max-width: 700px) {
  .two-column > ul > li {
    width: 100%;
    float: none;
  }
}

.side-by-side {
  zoom: 1;
  width: 50%;
  float: left;
}
.side-by-side:before, .side-by-side:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: " ";
}
.side-by-side:after {
  clear: both;
}
.side-by-side:nth-child(2n+1) {
  clear: left;
}
@media screen and (max-width: 700px) {
  .side-by-side {
    width: 100%;
    float: none;
  }
}

.back-to-top {
  padding-right: 20px;
  padding-bottom: 20px;
  background: transparent;
  position: relative;
  z-index: 50;
  text-align: center;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 0px;
  right: 0px;
}
.back-to-top.is-active {
  opacity: 1;
  visibility: visible;
}
.back-to-top span#backToTop {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background: #243355;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.back-to-top span.text {
  display: block;
  margin-top: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #243355;
  text-transform: uppercase;
}
.back-to-top span#backToTop {
  text-align: center;
  background: #243355;
}
.back-to-top #backToTop svg > g > g {
  transition: fill 0.2s linear;
}
.back-to-top:hover span.text {
  color: #243355;
}
.back-to-top:hover #backToTop {
  background-color: #0071ce;
}
.back-to-top.is-inverse span.text {
  color: #fff;
}
.back-to-top.is-inverse #backToTop {
  background: #fff;
}
.back-to-top.is-inverse #backToTop svg > g > g {
  fill: #243355;
}
.back-to-top.is-inverse:hover #backToTop {
  background: #243355;
}
.back-to-top.is-inverse:hover #backToTop svg > g > g {
  fill: #fff;
}

* {
  letter-spacing: 0em;
}

.header-base, .spotlight .title,
.concierge .title,
.news_list .title,
.contest_list .title,
.job_list .title,
.seating_charts .title,
.gallery-listing .title,
.offer_list .title, h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0 0 20px;
  font-family: "Futura PT", sans-serif;
  color: #252017;
  font-weight: 500;
}

h1,
.h1 {
  font-size: 2.44140625rem;
  font-size: 49px;
}
@media screen and (max-width: 700px) {
  h1,
  .h1 {
    font-size: 38px;
  }
}
h2,
.h2 {
  font-size: 1.953125rem;
  font-size: 39px;
}
@media screen and (max-width: 700px) {
  h2,
  .h2 {
    font-size: 34px;
  }
}
.textarea h2,
.textarea .h2 {
  margin-top: 60px;
}
h2.long_title,
.h2.long_title {
  font-size: 1.5625rem;
}

h3,
.h3,
.spotlight .title,
.concierge .title,
.news_list .title,
.contest_list .title,
.job_list .title,
.seating_charts .title,
.gallery-listing .title,
.offer_list .title {
  font-size: 1.5625rem;
  font-size: 31px;
}
@media screen and (max-width: 700px) {
  h3,
  .h3,
  .spotlight .title,
  .concierge .title,
  .news_list .title,
  .contest_list .title,
  .job_list .title,
  .seating_charts .title,
  .gallery-listing .title,
  .offer_list .title {
    font-size: 28px;
  }
}
.textarea h3,
.textarea .h3,
.textarea .spotlight .title,
.spotlight .textarea .title,
.textarea .concierge .title,
.concierge .textarea .title,
.textarea .news_list .title,
.news_list .textarea .title,
.textarea .contest_list .title,
.contest_list .textarea .title,
.textarea .job_list .title,
.job_list .textarea .title,
.textarea .seating_charts .title,
.seating_charts .textarea .title,
.textarea .gallery-listing .title,
.gallery-listing .textarea .title,
.textarea .offer_list .title,
.offer_list .textarea .title {
  margin-top: 60px;
}

h4,
.h4 {
  font-size: 1.25rem;
  font-size: 28px;
}
@media screen and (max-width: 700px) {
  h4,
  .h4 {
    font-size: 25px;
  }
}
h5,
.h5 {
  font-size: 1rem;
  font-size: 25px;
}
@media screen and (max-width: 700px) {
  h5,
  .h5 {
    font-size: 23px;
  }
}

h6,
.h6 {
  font-size: 1rem;
  font-size: 22px;
}
@media screen and (max-width: 700px) {
  h6,
  .h6 {
    font-size: 20px;
  }
}

.small_paragraph, .link ul.list .description p,
.link ul.list .description li, .small p {
  font-size: 0.889rem;
}

.p-base, table tr td, ol > li, .cms ul li,
.textarea ul li,
.spotlight_text ul li,
.faq ul li,
.link .description ul li,
.event_description ul li, address,
.address, p,
.p {
  font-size: 1rem;
  font-family: "Futura PT", sans-serif;
  line-height: 1.25;
}

p,
.p {
  margin: 0 0 20px;
}
p.lead,
.p.lead {
  font-size: 1.266rem;
  font-size: 23px;
  font-weight: 500;
}
p strong,
.p strong {
  font-weight: 700;
}

address,
.address {
  margin: 0 0 20px;
  font-style: normal;
  font-weight: 400;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li,
ol li {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cms ul,
.textarea ul,
.spotlight_text ul,
.faq ul,
.link .description ul,
.event_description ul {
  margin-bottom: 20px;
}
.cms ul li,
.textarea ul li,
.spotlight_text ul li,
.faq ul li,
.link .description ul li,
.event_description ul li {
  padding: 0 0 0 42px;
  position: relative;
  z-index: 1;
  margin: 0 0 15px 0;
  line-height: 1.45;
}
.cms ul li:before,
.textarea ul li:before,
.spotlight_text ul li:before,
.faq ul li:before,
.link .description ul li:before,
.event_description ul li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 19px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #292929;
}
@media screen and (max-width: 870px) {
  .cms ul li:before,
  .textarea ul li:before,
  .spotlight_text ul li:before,
  .faq ul li:before,
  .link .description ul li:before,
  .event_description ul li:before {
    top: 9px;
  }
}
.cms ul li ul,
.cms ul li ol,
.textarea ul li ul,
.textarea ul li ol,
.spotlight_text ul li ul,
.spotlight_text ul li ol,
.faq ul li ul,
.faq ul li ol,
.link .description ul li ul,
.link .description ul li ol,
.event_description ul li ul,
.event_description ul li ol {
  margin-top: 20px;
}

ol {
  margin-bottom: 20px;
}

ol > li {
  position: relative;
  z-index: 1;
  padding: 0 0 0 42px;
  counter-increment: li-counter;
  margin: 0 0 15px 0;
  line-height: 1.45;
}
ol > li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 20px;
  width: 25px;
  height: 20px;
  font-family: "Futura PT", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #292929;
  line-height: 1;
  content: counter(li-counter) ".";
}
@media screen and (max-width: 870px) {
  ol > li:before {
    top: 3px;
    font-size: 17px;
  }
}
ol > li ul,
ol > li ol {
  margin-top: 20px;
}

a {
  border: none;
  color: #0071ce;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
a:hover, a:focus {
  color: #243355;
}
.textarea p a, .textarea li a, .cms p a, .cms li a, .spotlight_content a, .m-eventDetailList__item a, .event_description a {
  font-weight: 500;
}
.textarea p a:hover, .textarea p a:focus, .textarea li a:hover, .textarea li a:focus, .cms p a:hover, .cms p a:focus, .cms li a:hover, .cms li a:focus, .spotlight_content a:hover, .spotlight_content a:focus, .m-eventDetailList__item a:hover, .m-eventDetailList__item a:focus, .event_description a:hover, .event_description a:focus {
  color: #243355;
}

hr {
  display: block;
  height: 1px;
  background-color: #252017;
  border: 0;
  margin-top: 40px;
  margin-bottom: 40px;
  clear: both;
}

table {
  position: relative;
  margin: 0 0 15px;
}
table tr td {
  border: none;
  margin-bottom: 0;
  padding: 5px;
}

blockquote {
  padding: 40px 40px 20px;
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 100%;
  margin: 60px auto 40px;
  background: #0071ce;
  border-radius: 9px;
  overflow: hidden;
  background: linear-gradient(180deg, #0071ce 0%, #09156b 100%);
}
blockquote:after {
  content: "";
  background-image: url("../images/svg/blockquote-shape.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 981px;
  min-width: 100%;
  height: 127px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 2;
}
@media screen and (max-width: 700px) {
  blockquote {
    margin-top: 40px;
    padding: 40px 30px 10px;
    margin-right: 0;
  }
}
blockquote p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;
  width: 100%;
  max-width: 100%;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 700px) {
  blockquote p {
    font-size: 22px;
  }
}
blockquote strong.name {
  text-align: center;
  padding: 20px 20px 0 1px;
  margin-bottom: 5px;
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  font-family: "Futura PT", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  position: relative;
  display: block;
  z-index: 5;
}
@media screen and (max-width: 700px) {
  blockquote strong.name {
    padding: 20px 0 10px;
  }
}
blockquote strong.name em {
  color: #fff;
  font-family: "Futura PT", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  text-transform: none;
  display: block;
  margin-top: 5px;
}
@media screen and (max-width: 700px) {
  blockquote strong.name em {
    display: block;
  }
}

/* ----------------------------------------------------------------------------
= Spotlight list style
----------------------------------------------------------------------------- */
.spotlight .entry,
.concierge .entry,
.news_list .entry,
.contest_list .entry,
.job_list .entry,
.seating_charts .entry,
.gallery-listing .entry,
.offer_list .entry {
  zoom: 1;
  display: flex;
  flex-direction: row;
  margin-bottom: 40px;
  background: #ffffff;
  box-shadow: none;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  border-radius: 9px;
  overflow: hidden;
  background: linear-gradient(180deg, #0071ce 0%, #09156b 100%);
  box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.13);
}
.spotlight .entry:before, .spotlight .entry:after,
.concierge .entry:before,
.concierge .entry:after,
.news_list .entry:before,
.news_list .entry:after,
.contest_list .entry:before,
.contest_list .entry:after,
.job_list .entry:before,
.job_list .entry:after,
.seating_charts .entry:before,
.seating_charts .entry:after,
.gallery-listing .entry:before,
.gallery-listing .entry:after,
.offer_list .entry:before,
.offer_list .entry:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: " ";
}
.spotlight .entry:after,
.concierge .entry:after,
.news_list .entry:after,
.contest_list .entry:after,
.job_list .entry:after,
.seating_charts .entry:after,
.gallery-listing .entry:after,
.offer_list .entry:after {
  clear: both;
}
@media screen and (max-width: 700px) {
  .spotlight .entry,
  .concierge .entry,
  .news_list .entry,
  .contest_list .entry,
  .job_list .entry,
  .seating_charts .entry,
  .gallery-listing .entry,
  .offer_list .entry {
    padding: 0;
    flex-direction: column;
    max-width: 388px;
    margin: 0 auto 20px;
  }
}
.spotlight .entry:last-child,
.concierge .entry:last-child,
.news_list .entry:last-child,
.contest_list .entry:last-child,
.job_list .entry:last-child,
.seating_charts .entry:last-child,
.gallery-listing .entry:last-child,
.offer_list .entry:last-child {
  margin-bottom: 0;
}
.spotlight .thumb,
.concierge .thumb,
.news_list .thumb,
.contest_list .thumb,
.job_list .thumb,
.seating_charts .thumb,
.gallery-listing .thumb,
.offer_list .thumb {
  min-width: 150px;
  width: 320px;
  margin: 0;
  float: left;
  overflow: hidden;
}
.spotlight .thumb.default,
.concierge .thumb.default,
.news_list .thumb.default,
.contest_list .thumb.default,
.job_list .thumb.default,
.seating_charts .thumb.default,
.gallery-listing .thumb.default,
.offer_list .thumb.default {
  display: none;
}
.spotlight .thumb a,
.concierge .thumb a,
.news_list .thumb a,
.contest_list .thumb a,
.job_list .thumb a,
.seating_charts .thumb a,
.gallery-listing .thumb a,
.offer_list .thumb a {
  position: relative;
  display: block;
  overflow: hidden;
}
.spotlight .thumb a img,
.concierge .thumb a img,
.news_list .thumb a img,
.contest_list .thumb a img,
.job_list .thumb a img,
.seating_charts .thumb a img,
.gallery-listing .thumb a img,
.offer_list .thumb a img {
  -webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  transition: all 250ms linear;
}
.spotlight .thumb a:hover img, .spotlight .thumb a:focus img,
.concierge .thumb a:hover img,
.concierge .thumb a:focus img,
.news_list .thumb a:hover img,
.news_list .thumb a:focus img,
.contest_list .thumb a:hover img,
.contest_list .thumb a:focus img,
.job_list .thumb a:hover img,
.job_list .thumb a:focus img,
.seating_charts .thumb a:hover img,
.seating_charts .thumb a:focus img,
.gallery-listing .thumb a:hover img,
.gallery-listing .thumb a:focus img,
.offer_list .thumb a:hover img,
.offer_list .thumb a:focus img {
  transform: scale(1.2);
}
.spotlight .thumb img,
.concierge .thumb img,
.news_list .thumb img,
.contest_list .thumb img,
.job_list .thumb img,
.seating_charts .thumb img,
.gallery-listing .thumb img,
.offer_list .thumb img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .spotlight .thumb,
  .concierge .thumb,
  .news_list .thumb,
  .contest_list .thumb,
  .job_list .thumb,
  .seating_charts .thumb,
  .gallery-listing .thumb,
  .offer_list .thumb {
    width: 100%;
    margin: 0 auto;
    float: none;
  }
}
.spotlight .info,
.concierge .info,
.news_list .info,
.contest_list .info,
.job_list .info,
.seating_charts .info,
.gallery-listing .info,
.offer_list .info {
  position: relative;
  float: left;
  width: 100%;
  display: block;
  text-align: left;
  padding: 40px 40px 38px;
}
.spotlight .info address,
.spotlight .info .address,
.concierge .info address,
.concierge .info .address,
.news_list .info address,
.news_list .info .address,
.contest_list .info address,
.contest_list .info .address,
.job_list .info address,
.job_list .info .address,
.seating_charts .info address,
.seating_charts .info .address,
.gallery-listing .info address,
.gallery-listing .info .address,
.offer_list .info address,
.offer_list .info .address {
  color: #fff;
}
.spotlight .info:after,
.concierge .info:after,
.news_list .info:after,
.contest_list .info:after,
.job_list .info:after,
.seating_charts .info:after,
.gallery-listing .info:after,
.offer_list .info:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("../images/svg/spotlight-shape.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  visibility: visible;
  z-index: 5;
}
.spotlight .info h1,
.spotlight .info h2,
.spotlight .info h3,
.spotlight .info h4,
.spotlight .info h5,
.spotlight .info h6,
.concierge .info h1,
.concierge .info h2,
.concierge .info h3,
.concierge .info h4,
.concierge .info h5,
.concierge .info h6,
.news_list .info h1,
.news_list .info h2,
.news_list .info h3,
.news_list .info h4,
.news_list .info h5,
.news_list .info h6,
.contest_list .info h1,
.contest_list .info h2,
.contest_list .info h3,
.contest_list .info h4,
.contest_list .info h5,
.contest_list .info h6,
.job_list .info h1,
.job_list .info h2,
.job_list .info h3,
.job_list .info h4,
.job_list .info h5,
.job_list .info h6,
.seating_charts .info h1,
.seating_charts .info h2,
.seating_charts .info h3,
.seating_charts .info h4,
.seating_charts .info h5,
.seating_charts .info h6,
.gallery-listing .info h1,
.gallery-listing .info h2,
.gallery-listing .info h3,
.gallery-listing .info h4,
.gallery-listing .info h5,
.gallery-listing .info h6,
.offer_list .info h1,
.offer_list .info h2,
.offer_list .info h3,
.offer_list .info h4,
.offer_list .info h5,
.offer_list .info h6 {
  position: relative;
  z-index: 6;
}
.spotlight .info .title,
.concierge .info .title,
.news_list .info .title,
.contest_list .info .title,
.job_list .info .title,
.seating_charts .info .title,
.gallery-listing .info .title,
.offer_list .info .title {
  color: #fff;
  position: relative;
  z-index: 6;
}
.spotlight .info .title a,
.concierge .info .title a,
.news_list .info .title a,
.contest_list .info .title a,
.job_list .info .title a,
.seating_charts .info .title a,
.gallery-listing .info .title a,
.offer_list .info .title a {
  color: #fff;
}
.spotlight .info .title a:hover,
.concierge .info .title a:hover,
.news_list .info .title a:hover,
.contest_list .info .title a:hover,
.job_list .info .title a:hover,
.seating_charts .info .title a:hover,
.gallery-listing .info .title a:hover,
.offer_list .info .title a:hover {
  text-decoration: underline;
  color: #fff;
}
@media screen and (max-width: 700px) {
  .spotlight .info,
  .concierge .info,
  .news_list .info,
  .contest_list .info,
  .job_list .info,
  .seating_charts .info,
  .gallery-listing .info,
  .offer_list .info {
    margin: 0 auto;
    padding: 20px 20px;
    float: none;
    text-align: center;
  }
  .spotlight .info li,
  .concierge .info li,
  .news_list .info li,
  .contest_list .info li,
  .job_list .info li,
  .seating_charts .info li,
  .gallery-listing .info li,
  .offer_list .info li {
    text-align: left;
  }
}
.spotlight .info p,
.concierge .info p,
.news_list .info p,
.contest_list .info p,
.job_list .info p,
.seating_charts .info p,
.gallery-listing .info p,
.offer_list .info p {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  position: relative;
  z-index: 6;
}
.spotlight .info a,
.concierge .info a,
.news_list .info a,
.contest_list .info a,
.job_list .info a,
.seating_charts .info a,
.gallery-listing .info a,
.offer_list .info a {
  color: #fff;
  position: relative;
  z-index: 6;
}
.spotlight .info a:hover,
.concierge .info a:hover,
.news_list .info a:hover,
.contest_list .info a:hover,
.job_list .info a:hover,
.seating_charts .info a:hover,
.gallery-listing .info a:hover,
.offer_list .info a:hover {
  text-decoration: underline;
  color: #fff;
}
.spotlight .info > a:hover,
.concierge .info > a:hover,
.news_list .info > a:hover,
.contest_list .info > a:hover,
.job_list .info > a:hover,
.seating_charts .info > a:hover,
.gallery-listing .info > a:hover,
.offer_list .info > a:hover {
  text-decoration: none;
}
.spotlight .info ul,
.spotlight .info ol,
.spotlight .info li,
.spotlight .info span,
.concierge .info ul,
.concierge .info ol,
.concierge .info li,
.concierge .info span,
.news_list .info ul,
.news_list .info ol,
.news_list .info li,
.news_list .info span,
.contest_list .info ul,
.contest_list .info ol,
.contest_list .info li,
.contest_list .info span,
.job_list .info ul,
.job_list .info ol,
.job_list .info li,
.job_list .info span,
.seating_charts .info ul,
.seating_charts .info ol,
.seating_charts .info li,
.seating_charts .info span,
.gallery-listing .info ul,
.gallery-listing .info ol,
.gallery-listing .info li,
.gallery-listing .info span,
.offer_list .info ul,
.offer_list .info ol,
.offer_list .info li,
.offer_list .info span {
  color: #fff;
  position: relative;
  z-index: 6;
}
.spotlight .info ul li:before,
.concierge .info ul li:before,
.news_list .info ul li:before,
.contest_list .info ul li:before,
.job_list .info ul li:before,
.seating_charts .info ul li:before,
.gallery-listing .info ul li:before,
.offer_list .info ul li:before {
  background: #fff;
}
.spotlight .info ol li:before,
.concierge .info ol li:before,
.news_list .info ol li:before,
.contest_list .info ol li:before,
.job_list .info ol li:before,
.seating_charts .info ol li:before,
.gallery-listing .info ol li:before,
.offer_list .info ol li:before {
  color: #fff;
}
.spotlight .thumb:not(.default) + .info,
.concierge .thumb:not(.default) + .info,
.news_list .thumb:not(.default) + .info,
.contest_list .thumb:not(.default) + .info,
.job_list .thumb:not(.default) + .info,
.seating_charts .thumb:not(.default) + .info,
.gallery-listing .thumb:not(.default) + .info,
.offer_list .thumb:not(.default) + .info {
  width: calc(100% - (320px + 0px));
}
@media screen and (max-width: 700px) {
  .spotlight .thumb:not(.default) + .info,
  .concierge .thumb:not(.default) + .info,
  .news_list .thumb:not(.default) + .info,
  .contest_list .thumb:not(.default) + .info,
  .job_list .thumb:not(.default) + .info,
  .seating_charts .thumb:not(.default) + .info,
  .gallery-listing .thumb:not(.default) + .info,
  .offer_list .thumb:not(.default) + .info {
    width: 100%;
  }
}
.spotlight .date,
.concierge .date,
.news_list .date,
.contest_list .date,
.job_list .date,
.seating_charts .date,
.gallery-listing .date,
.offer_list .date {
  background: transparent;
  border-radius: 0;
  font-family: "Futura PT", sans-serif;
  padding: 0;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.spotlight .date span,
.concierge .date span,
.news_list .date span,
.contest_list .date span,
.job_list .date span,
.seating_charts .date span,
.gallery-listing .date span,
.offer_list .date span {
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
}
.spotlight .date .m-date__month,
.spotlight .date .m-date__day,
.concierge .date .m-date__month,
.concierge .date .m-date__day,
.news_list .date .m-date__month,
.news_list .date .m-date__day,
.contest_list .date .m-date__month,
.contest_list .date .m-date__day,
.job_list .date .m-date__month,
.job_list .date .m-date__day,
.seating_charts .date .m-date__month,
.seating_charts .date .m-date__day,
.gallery-listing .date .m-date__month,
.gallery-listing .date .m-date__day,
.offer_list .date .m-date__month,
.offer_list .date .m-date__day {
  font-weight: 500;
  text-transform: uppercase;
}
.spotlight .title,
.concierge .title,
.news_list .title,
.contest_list .title,
.job_list .title,
.seating_charts .title,
.gallery-listing .title,
.offer_list .title {
  margin-bottom: 10px;
  line-height: 1.2;
  font-size: 25px;
  color: #fff;
  font-weight: 700;
}
.spotlight .title span,
.concierge .title span,
.news_list .title span,
.contest_list .title span,
.job_list .title span,
.seating_charts .title span,
.gallery-listing .title span,
.offer_list .title span {
  color: #fff;
  letter-spacing: 0px;
}
.spotlight .title a,
.concierge .title a,
.news_list .title a,
.contest_list .title a,
.job_list .title a,
.seating_charts .title a,
.gallery-listing .title a,
.offer_list .title a {
  color: #fff;
  font-size: inherit;
  letter-spacing: 0px;
}
.spotlight .title a:hover,
.concierge .title a:hover,
.news_list .title a:hover,
.contest_list .title a:hover,
.job_list .title a:hover,
.seating_charts .title a:hover,
.gallery-listing .title a:hover,
.offer_list .title a:hover {
  text-decoration: underline;
}
.spotlight .buttons a,
.spotlight .links a,
.concierge .buttons a,
.concierge .links a,
.news_list .buttons a,
.news_list .links a,
.contest_list .buttons a,
.contest_list .links a,
.job_list .buttons a,
.job_list .links a,
.seating_charts .buttons a,
.seating_charts .links a,
.gallery-listing .buttons a,
.gallery-listing .links a,
.offer_list .buttons a,
.offer_list .links a {
  margin: 0 20px 0 0;
}
.spotlight .buttons a:hover,
.spotlight .links a:hover,
.concierge .buttons a:hover,
.concierge .links a:hover,
.news_list .buttons a:hover,
.news_list .links a:hover,
.contest_list .buttons a:hover,
.contest_list .links a:hover,
.job_list .buttons a:hover,
.job_list .links a:hover,
.seating_charts .buttons a:hover,
.seating_charts .links a:hover,
.gallery-listing .buttons a:hover,
.gallery-listing .links a:hover,
.offer_list .buttons a:hover,
.offer_list .links a:hover {
  text-decoration: none;
}
@media screen and (max-width: 700px) {
  .spotlight .buttons,
  .spotlight .links,
  .concierge .buttons,
  .concierge .links,
  .news_list .buttons,
  .news_list .links,
  .contest_list .buttons,
  .contest_list .links,
  .job_list .buttons,
  .job_list .links,
  .seating_charts .buttons,
  .seating_charts .links,
  .gallery-listing .buttons,
  .gallery-listing .links,
  .offer_list .buttons,
  .offer_list .links {
    width: 100%;
    margin: 0 auto 20px;
    float: none;
    text-align: center;
  }
  .spotlight .buttons a,
  .spotlight .links a,
  .concierge .buttons a,
  .concierge .links a,
  .news_list .buttons a,
  .news_list .links a,
  .contest_list .buttons a,
  .contest_list .links a,
  .job_list .buttons a,
  .job_list .links a,
  .seating_charts .buttons a,
  .seating_charts .links a,
  .gallery-listing .buttons a,
  .gallery-listing .links a,
  .offer_list .buttons a,
  .offer_list .links a {
    margin: 0 10px;
    width: 100%;
    text-align: center;
  }
  .spotlight .buttons a:hover,
  .spotlight .links a:hover,
  .concierge .buttons a:hover,
  .concierge .links a:hover,
  .news_list .buttons a:hover,
  .news_list .links a:hover,
  .contest_list .buttons a:hover,
  .contest_list .links a:hover,
  .job_list .buttons a:hover,
  .job_list .links a:hover,
  .seating_charts .buttons a:hover,
  .seating_charts .links a:hover,
  .gallery-listing .buttons a:hover,
  .gallery-listing .links a:hover,
  .offer_list .buttons a:hover,
  .offer_list .links a:hover {
    text-decoration: none;
  }
}
.spotlight .links a,
.concierge .links a,
.news_list .links a,
.contest_list .links a,
.job_list .links a,
.seating_charts .links a,
.gallery-listing .links a,
.offer_list .links a {
  margin-top: 10px;
}
.spotlight[data-layout=square],
.concierge[data-layout=square],
.news_list[data-layout=square],
.contest_list[data-layout=square],
.job_list[data-layout=square],
.seating_charts[data-layout=square],
.gallery-listing[data-layout=square],
.offer_list[data-layout=square] {
  zoom: 1;
  margin: 0 auto 40px;
  border-top: none;
}
.spotlight[data-layout=square]:before, .spotlight[data-layout=square]:after,
.concierge[data-layout=square]:before,
.concierge[data-layout=square]:after,
.news_list[data-layout=square]:before,
.news_list[data-layout=square]:after,
.contest_list[data-layout=square]:before,
.contest_list[data-layout=square]:after,
.job_list[data-layout=square]:before,
.job_list[data-layout=square]:after,
.seating_charts[data-layout=square]:before,
.seating_charts[data-layout=square]:after,
.gallery-listing[data-layout=square]:before,
.gallery-listing[data-layout=square]:after,
.offer_list[data-layout=square]:before,
.offer_list[data-layout=square]:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: " ";
}
.spotlight[data-layout=square]:after,
.concierge[data-layout=square]:after,
.news_list[data-layout=square]:after,
.contest_list[data-layout=square]:after,
.job_list[data-layout=square]:after,
.seating_charts[data-layout=square]:after,
.gallery-listing[data-layout=square]:after,
.offer_list[data-layout=square]:after {
  clear: both;
}
@media screen and (max-width: 700px) {
  .spotlight[data-layout=square],
  .concierge[data-layout=square],
  .news_list[data-layout=square],
  .contest_list[data-layout=square],
  .job_list[data-layout=square],
  .seating_charts[data-layout=square],
  .gallery-listing[data-layout=square],
  .offer_list[data-layout=square] {
    width: calc(100% - 20px);
  }
}
@media screen and (min-width: 501px) {
  .spotlight[data-layout=square],
  .concierge[data-layout=square],
  .news_list[data-layout=square],
  .contest_list[data-layout=square],
  .job_list[data-layout=square],
  .seating_charts[data-layout=square],
  .gallery-listing[data-layout=square],
  .offer_list[data-layout=square] {
    display: flex;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
  }
  .spotlight[data-layout=square] .entry,
  .concierge[data-layout=square] .entry,
  .news_list[data-layout=square] .entry,
  .contest_list[data-layout=square] .entry,
  .job_list[data-layout=square] .entry,
  .seating_charts[data-layout=square] .entry,
  .gallery-listing[data-layout=square] .entry,
  .offer_list[data-layout=square] .entry {
    float: left;
    padding: 0;
    overflow: hidden;
    width: calc((100% - (2 - 1) * 20px) / 2);
    margin: 0 20px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .spotlight[data-layout=square] .entry:nth-child(odd),
  .concierge[data-layout=square] .entry:nth-child(odd),
  .news_list[data-layout=square] .entry:nth-child(odd),
  .contest_list[data-layout=square] .entry:nth-child(odd),
  .job_list[data-layout=square] .entry:nth-child(odd),
  .seating_charts[data-layout=square] .entry:nth-child(odd),
  .gallery-listing[data-layout=square] .entry:nth-child(odd),
  .offer_list[data-layout=square] .entry:nth-child(odd) {
    clear: left;
  }
  .spotlight[data-layout=square] .entry:nth-child(2n),
  .concierge[data-layout=square] .entry:nth-child(2n),
  .news_list[data-layout=square] .entry:nth-child(2n),
  .contest_list[data-layout=square] .entry:nth-child(2n),
  .job_list[data-layout=square] .entry:nth-child(2n),
  .seating_charts[data-layout=square] .entry:nth-child(2n),
  .gallery-listing[data-layout=square] .entry:nth-child(2n),
  .offer_list[data-layout=square] .entry:nth-child(2n) {
    margin-right: 0;
  }
  .spotlight[data-layout=square] .entry .thumb,
  .concierge[data-layout=square] .entry .thumb,
  .news_list[data-layout=square] .entry .thumb,
  .contest_list[data-layout=square] .entry .thumb,
  .job_list[data-layout=square] .entry .thumb,
  .seating_charts[data-layout=square] .entry .thumb,
  .gallery-listing[data-layout=square] .entry .thumb,
  .offer_list[data-layout=square] .entry .thumb {
    display: block;
    width: 100%;
    margin-bottom: 0;
    margin-right: 0;
  }
  .spotlight[data-layout=square] .entry .thumb:after,
  .concierge[data-layout=square] .entry .thumb:after,
  .news_list[data-layout=square] .entry .thumb:after,
  .contest_list[data-layout=square] .entry .thumb:after,
  .job_list[data-layout=square] .entry .thumb:after,
  .seating_charts[data-layout=square] .entry .thumb:after,
  .gallery-listing[data-layout=square] .entry .thumb:after,
  .offer_list[data-layout=square] .entry .thumb:after {
    display: none;
  }
  .spotlight[data-layout=square] .entry .info,
  .concierge[data-layout=square] .entry .info,
  .news_list[data-layout=square] .entry .info,
  .contest_list[data-layout=square] .entry .info,
  .job_list[data-layout=square] .entry .info,
  .seating_charts[data-layout=square] .entry .info,
  .gallery-listing[data-layout=square] .entry .info,
  .offer_list[data-layout=square] .entry .info {
    width: 100%;
    display: block;
    padding: 30px;
    background: linear-gradient(180deg, #0071ce 0%, #09156b 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-grow: 1;
  }
  .spotlight[data-layout=square] .entry .info > *,
  .concierge[data-layout=square] .entry .info > *,
  .news_list[data-layout=square] .entry .info > *,
  .contest_list[data-layout=square] .entry .info > *,
  .job_list[data-layout=square] .entry .info > *,
  .seating_charts[data-layout=square] .entry .info > *,
  .gallery-listing[data-layout=square] .entry .info > *,
  .offer_list[data-layout=square] .entry .info > * {
    max-width: 100%;
  }
  .spotlight[data-layout=square] .entry.no_content .info .title,
  .concierge[data-layout=square] .entry.no_content .info .title,
  .news_list[data-layout=square] .entry.no_content .info .title,
  .contest_list[data-layout=square] .entry.no_content .info .title,
  .job_list[data-layout=square] .entry.no_content .info .title,
  .seating_charts[data-layout=square] .entry.no_content .info .title,
  .gallery-listing[data-layout=square] .entry.no_content .info .title,
  .offer_list[data-layout=square] .entry.no_content .info .title {
    flex-grow: 1;
  }
  .spotlight[data-layout=square] .entry .title,
  .concierge[data-layout=square] .entry .title,
  .news_list[data-layout=square] .entry .title,
  .contest_list[data-layout=square] .entry .title,
  .job_list[data-layout=square] .entry .title,
  .seating_charts[data-layout=square] .entry .title,
  .gallery-listing[data-layout=square] .entry .title,
  .offer_list[data-layout=square] .entry .title {
    font-size: 1.5625rem;
    font-size: 28px;
  }
  .spotlight[data-layout=square] .entry .title:before,
  .concierge[data-layout=square] .entry .title:before,
  .news_list[data-layout=square] .entry .title:before,
  .contest_list[data-layout=square] .entry .title:before,
  .job_list[data-layout=square] .entry .title:before,
  .seating_charts[data-layout=square] .entry .title:before,
  .gallery-listing[data-layout=square] .entry .title:before,
  .offer_list[data-layout=square] .entry .title:before {
    display: none;
  }
  .spotlight[data-layout=square] .entry a.button,
  .concierge[data-layout=square] .entry a.button,
  .news_list[data-layout=square] .entry a.button,
  .contest_list[data-layout=square] .entry a.button,
  .job_list[data-layout=square] .entry a.button,
  .seating_charts[data-layout=square] .entry a.button,
  .gallery-listing[data-layout=square] .entry a.button,
  .offer_list[data-layout=square] .entry a.button {
    margin-top: auto;
  }
}
@media screen and (min-width: 501px) and (min-width: 871px) {
  .spotlight[data-layout=square] .entry,
  .concierge[data-layout=square] .entry,
  .news_list[data-layout=square] .entry,
  .contest_list[data-layout=square] .entry,
  .job_list[data-layout=square] .entry,
  .seating_charts[data-layout=square] .entry,
  .gallery-listing[data-layout=square] .entry,
  .offer_list[data-layout=square] .entry {
    width: calc((100% - (3 - 1) * 20px) / 3);
  }
  .spotlight[data-layout=square] .entry:nth-child(odd),
  .concierge[data-layout=square] .entry:nth-child(odd),
  .news_list[data-layout=square] .entry:nth-child(odd),
  .contest_list[data-layout=square] .entry:nth-child(odd),
  .job_list[data-layout=square] .entry:nth-child(odd),
  .seating_charts[data-layout=square] .entry:nth-child(odd),
  .gallery-listing[data-layout=square] .entry:nth-child(odd),
  .offer_list[data-layout=square] .entry:nth-child(odd) {
    clear: none;
  }
  .spotlight[data-layout=square] .entry:nth-child(2n),
  .concierge[data-layout=square] .entry:nth-child(2n),
  .news_list[data-layout=square] .entry:nth-child(2n),
  .contest_list[data-layout=square] .entry:nth-child(2n),
  .job_list[data-layout=square] .entry:nth-child(2n),
  .seating_charts[data-layout=square] .entry:nth-child(2n),
  .gallery-listing[data-layout=square] .entry:nth-child(2n),
  .offer_list[data-layout=square] .entry:nth-child(2n) {
    margin-right: 20px;
  }
  .spotlight[data-layout=square] .entry:nth-child(3n),
  .concierge[data-layout=square] .entry:nth-child(3n),
  .news_list[data-layout=square] .entry:nth-child(3n),
  .contest_list[data-layout=square] .entry:nth-child(3n),
  .job_list[data-layout=square] .entry:nth-child(3n),
  .seating_charts[data-layout=square] .entry:nth-child(3n),
  .gallery-listing[data-layout=square] .entry:nth-child(3n),
  .offer_list[data-layout=square] .entry:nth-child(3n) {
    margin-right: 0;
  }
  .spotlight[data-layout=square] .entry:nth-child(3n+1),
  .concierge[data-layout=square] .entry:nth-child(3n+1),
  .news_list[data-layout=square] .entry:nth-child(3n+1),
  .contest_list[data-layout=square] .entry:nth-child(3n+1),
  .job_list[data-layout=square] .entry:nth-child(3n+1),
  .seating_charts[data-layout=square] .entry:nth-child(3n+1),
  .gallery-listing[data-layout=square] .entry:nth-child(3n+1),
  .offer_list[data-layout=square] .entry:nth-child(3n+1) {
    clear: left;
  }
}
.spotlight[data-layout=blocks],
.concierge[data-layout=blocks],
.news_list[data-layout=blocks],
.contest_list[data-layout=blocks],
.job_list[data-layout=blocks],
.seating_charts[data-layout=blocks],
.gallery-listing[data-layout=blocks],
.offer_list[data-layout=blocks] {
  zoom: 1;
  width: 100%;
  margin: 0 auto 40px;
  border-top: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: calc(100% - 40px);
}
.spotlight[data-layout=blocks]:before, .spotlight[data-layout=blocks]:after,
.concierge[data-layout=blocks]:before,
.concierge[data-layout=blocks]:after,
.news_list[data-layout=blocks]:before,
.news_list[data-layout=blocks]:after,
.contest_list[data-layout=blocks]:before,
.contest_list[data-layout=blocks]:after,
.job_list[data-layout=blocks]:before,
.job_list[data-layout=blocks]:after,
.seating_charts[data-layout=blocks]:before,
.seating_charts[data-layout=blocks]:after,
.gallery-listing[data-layout=blocks]:before,
.gallery-listing[data-layout=blocks]:after,
.offer_list[data-layout=blocks]:before,
.offer_list[data-layout=blocks]:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: " ";
}
.spotlight[data-layout=blocks]:after,
.concierge[data-layout=blocks]:after,
.news_list[data-layout=blocks]:after,
.contest_list[data-layout=blocks]:after,
.job_list[data-layout=blocks]:after,
.seating_charts[data-layout=blocks]:after,
.gallery-listing[data-layout=blocks]:after,
.offer_list[data-layout=blocks]:after {
  clear: both;
}
@media screen and (max-width: 700px) {
  .spotlight[data-layout=blocks],
  .concierge[data-layout=blocks],
  .news_list[data-layout=blocks],
  .contest_list[data-layout=blocks],
  .job_list[data-layout=blocks],
  .seating_charts[data-layout=blocks],
  .gallery-listing[data-layout=blocks],
  .offer_list[data-layout=blocks] {
    width: calc(100% - 20px);
  }
}
.spotlight[data-layout=blocks] .entry,
.concierge[data-layout=blocks] .entry,
.news_list[data-layout=blocks] .entry,
.contest_list[data-layout=blocks] .entry,
.job_list[data-layout=blocks] .entry,
.seating_charts[data-layout=blocks] .entry,
.gallery-listing[data-layout=blocks] .entry,
.offer_list[data-layout=blocks] .entry {
  position: relative;
  width: 33%;
  width: calc(33.33% - 20px);
  height: calc((33.33vw - 20px) * 0.5925925926);
  max-height: 265px;
  overflow: hidden;
  border: none;
  padding: 0;
  margin: 0px 10px 20px;
}
.spotlight[data-layout=blocks] .entry .thumb,
.concierge[data-layout=blocks] .entry .thumb,
.news_list[data-layout=blocks] .entry .thumb,
.contest_list[data-layout=blocks] .entry .thumb,
.job_list[data-layout=blocks] .entry .thumb,
.seating_charts[data-layout=blocks] .entry .thumb,
.gallery-listing[data-layout=blocks] .entry .thumb,
.offer_list[data-layout=blocks] .entry .thumb {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.spotlight[data-layout=blocks] .entry .thumb img,
.concierge[data-layout=blocks] .entry .thumb img,
.news_list[data-layout=blocks] .entry .thumb img,
.contest_list[data-layout=blocks] .entry .thumb img,
.job_list[data-layout=blocks] .entry .thumb img,
.seating_charts[data-layout=blocks] .entry .thumb img,
.gallery-listing[data-layout=blocks] .entry .thumb img,
.offer_list[data-layout=blocks] .entry .thumb img {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.spotlight[data-layout=blocks] .entry .thumb:after,
.concierge[data-layout=blocks] .entry .thumb:after,
.news_list[data-layout=blocks] .entry .thumb:after,
.contest_list[data-layout=blocks] .entry .thumb:after,
.job_list[data-layout=blocks] .entry .thumb:after,
.seating_charts[data-layout=blocks] .entry .thumb:after,
.gallery-listing[data-layout=blocks] .entry .thumb:after,
.offer_list[data-layout=blocks] .entry .thumb:after {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  z-index: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.5) 100%);
}
.spotlight[data-layout=blocks] .entry .title,
.concierge[data-layout=blocks] .entry .title,
.news_list[data-layout=blocks] .entry .title,
.contest_list[data-layout=blocks] .entry .title,
.job_list[data-layout=blocks] .entry .title,
.seating_charts[data-layout=blocks] .entry .title,
.gallery-listing[data-layout=blocks] .entry .title,
.offer_list[data-layout=blocks] .entry .title {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: relative;
  text-align: center;
  color: #252017;
  z-index: 2;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  margin-bottom: 30px;
}
.spotlight[data-layout=blocks] .entry .title a,
.concierge[data-layout=blocks] .entry .title a,
.news_list[data-layout=blocks] .entry .title a,
.contest_list[data-layout=blocks] .entry .title a,
.job_list[data-layout=blocks] .entry .title a,
.seating_charts[data-layout=blocks] .entry .title a,
.gallery-listing[data-layout=blocks] .entry .title a,
.offer_list[data-layout=blocks] .entry .title a {
  display: block;
  position: relative;
  transform: translateY(30px);
  color: #252017;
}
.spotlight[data-layout=blocks] .entry .title a:hover,
.concierge[data-layout=blocks] .entry .title a:hover,
.news_list[data-layout=blocks] .entry .title a:hover,
.contest_list[data-layout=blocks] .entry .title a:hover,
.job_list[data-layout=blocks] .entry .title a:hover,
.seating_charts[data-layout=blocks] .entry .title a:hover,
.gallery-listing[data-layout=blocks] .entry .title a:hover,
.offer_list[data-layout=blocks] .entry .title a:hover {
  color: rgba(0, 0, 0, 0.7);
}
.spotlight[data-layout=blocks] .entry .info,
.concierge[data-layout=blocks] .entry .info,
.news_list[data-layout=blocks] .entry .info,
.contest_list[data-layout=blocks] .entry .info,
.job_list[data-layout=blocks] .entry .info,
.seating_charts[data-layout=blocks] .entry .info,
.gallery-listing[data-layout=blocks] .entry .info,
.offer_list[data-layout=blocks] .entry .info {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.spotlight[data-layout=blocks] .entry .info:before,
.concierge[data-layout=blocks] .entry .info:before,
.news_list[data-layout=blocks] .entry .info:before,
.contest_list[data-layout=blocks] .entry .info:before,
.job_list[data-layout=blocks] .entry .info:before,
.seating_charts[data-layout=blocks] .entry .info:before,
.gallery-listing[data-layout=blocks] .entry .info:before,
.offer_list[data-layout=blocks] .entry .info:before {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
  zoom: 1;
  opacity: 0;
}
.spotlight[data-layout=blocks] .entry .info .spotlight_content,
.concierge[data-layout=blocks] .entry .info .spotlight_content,
.news_list[data-layout=blocks] .entry .info .spotlight_content,
.contest_list[data-layout=blocks] .entry .info .spotlight_content,
.job_list[data-layout=blocks] .entry .info .spotlight_content,
.seating_charts[data-layout=blocks] .entry .info .spotlight_content,
.gallery-listing[data-layout=blocks] .entry .info .spotlight_content,
.offer_list[data-layout=blocks] .entry .info .spotlight_content {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: relative;
  z-index: 2;
  text-align: center;
  transform: translateY(30px);
  display: none; /* Styled just in case */
}
.spotlight[data-layout=blocks] .entry .info p,
.concierge[data-layout=blocks] .entry .info p,
.news_list[data-layout=blocks] .entry .info p,
.contest_list[data-layout=blocks] .entry .info p,
.job_list[data-layout=blocks] .entry .info p,
.seating_charts[data-layout=blocks] .entry .info p,
.gallery-listing[data-layout=blocks] .entry .info p,
.offer_list[data-layout=blocks] .entry .info p {
  font-size: 16px;
  color: #fff;
}
.spotlight[data-layout=blocks] .entry .spot-button,
.concierge[data-layout=blocks] .entry .spot-button,
.news_list[data-layout=blocks] .entry .spot-button,
.contest_list[data-layout=blocks] .entry .spot-button,
.job_list[data-layout=blocks] .entry .spot-button,
.seating_charts[data-layout=blocks] .entry .spot-button,
.gallery-listing[data-layout=blocks] .entry .spot-button,
.offer_list[data-layout=blocks] .entry .spot-button {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: relative;
  transform: translateY(30px);
  zoom: 1;
  opacity: 0;
  z-index: 2;
  font-size: 16px;
  cursor: pointer;
}
.spotlight[data-layout=blocks] .entry:hover .title a,
.spotlight[data-layout=blocks] .entry:hover .spotlight_content, .spotlight[data-layout=blocks] .entry:focus .title a,
.spotlight[data-layout=blocks] .entry:focus .spotlight_content, .spotlight[data-layout=blocks] .entry.is-focused .title a,
.spotlight[data-layout=blocks] .entry.is-focused .spotlight_content,
.concierge[data-layout=blocks] .entry:hover .title a,
.concierge[data-layout=blocks] .entry:hover .spotlight_content,
.concierge[data-layout=blocks] .entry:focus .title a,
.concierge[data-layout=blocks] .entry:focus .spotlight_content,
.concierge[data-layout=blocks] .entry.is-focused .title a,
.concierge[data-layout=blocks] .entry.is-focused .spotlight_content,
.news_list[data-layout=blocks] .entry:hover .title a,
.news_list[data-layout=blocks] .entry:hover .spotlight_content,
.news_list[data-layout=blocks] .entry:focus .title a,
.news_list[data-layout=blocks] .entry:focus .spotlight_content,
.news_list[data-layout=blocks] .entry.is-focused .title a,
.news_list[data-layout=blocks] .entry.is-focused .spotlight_content,
.contest_list[data-layout=blocks] .entry:hover .title a,
.contest_list[data-layout=blocks] .entry:hover .spotlight_content,
.contest_list[data-layout=blocks] .entry:focus .title a,
.contest_list[data-layout=blocks] .entry:focus .spotlight_content,
.contest_list[data-layout=blocks] .entry.is-focused .title a,
.contest_list[data-layout=blocks] .entry.is-focused .spotlight_content,
.job_list[data-layout=blocks] .entry:hover .title a,
.job_list[data-layout=blocks] .entry:hover .spotlight_content,
.job_list[data-layout=blocks] .entry:focus .title a,
.job_list[data-layout=blocks] .entry:focus .spotlight_content,
.job_list[data-layout=blocks] .entry.is-focused .title a,
.job_list[data-layout=blocks] .entry.is-focused .spotlight_content,
.seating_charts[data-layout=blocks] .entry:hover .title a,
.seating_charts[data-layout=blocks] .entry:hover .spotlight_content,
.seating_charts[data-layout=blocks] .entry:focus .title a,
.seating_charts[data-layout=blocks] .entry:focus .spotlight_content,
.seating_charts[data-layout=blocks] .entry.is-focused .title a,
.seating_charts[data-layout=blocks] .entry.is-focused .spotlight_content,
.gallery-listing[data-layout=blocks] .entry:hover .title a,
.gallery-listing[data-layout=blocks] .entry:hover .spotlight_content,
.gallery-listing[data-layout=blocks] .entry:focus .title a,
.gallery-listing[data-layout=blocks] .entry:focus .spotlight_content,
.gallery-listing[data-layout=blocks] .entry.is-focused .title a,
.gallery-listing[data-layout=blocks] .entry.is-focused .spotlight_content,
.offer_list[data-layout=blocks] .entry:hover .title a,
.offer_list[data-layout=blocks] .entry:hover .spotlight_content,
.offer_list[data-layout=blocks] .entry:focus .title a,
.offer_list[data-layout=blocks] .entry:focus .spotlight_content,
.offer_list[data-layout=blocks] .entry.is-focused .title a,
.offer_list[data-layout=blocks] .entry.is-focused .spotlight_content {
  transform: translateY(0px);
}
.spotlight[data-layout=blocks] .entry:hover .spot-button, .spotlight[data-layout=blocks] .entry:focus .spot-button, .spotlight[data-layout=blocks] .entry.is-focused .spot-button,
.concierge[data-layout=blocks] .entry:hover .spot-button,
.concierge[data-layout=blocks] .entry:focus .spot-button,
.concierge[data-layout=blocks] .entry.is-focused .spot-button,
.news_list[data-layout=blocks] .entry:hover .spot-button,
.news_list[data-layout=blocks] .entry:focus .spot-button,
.news_list[data-layout=blocks] .entry.is-focused .spot-button,
.contest_list[data-layout=blocks] .entry:hover .spot-button,
.contest_list[data-layout=blocks] .entry:focus .spot-button,
.contest_list[data-layout=blocks] .entry.is-focused .spot-button,
.job_list[data-layout=blocks] .entry:hover .spot-button,
.job_list[data-layout=blocks] .entry:focus .spot-button,
.job_list[data-layout=blocks] .entry.is-focused .spot-button,
.seating_charts[data-layout=blocks] .entry:hover .spot-button,
.seating_charts[data-layout=blocks] .entry:focus .spot-button,
.seating_charts[data-layout=blocks] .entry.is-focused .spot-button,
.gallery-listing[data-layout=blocks] .entry:hover .spot-button,
.gallery-listing[data-layout=blocks] .entry:focus .spot-button,
.gallery-listing[data-layout=blocks] .entry.is-focused .spot-button,
.offer_list[data-layout=blocks] .entry:hover .spot-button,
.offer_list[data-layout=blocks] .entry:focus .spot-button,
.offer_list[data-layout=blocks] .entry.is-focused .spot-button {
  transform: translateY(0px);
  zoom: 1;
  opacity: 1;
}
.spotlight[data-layout=blocks] .entry:hover .thumb img, .spotlight[data-layout=blocks] .entry:focus .thumb img, .spotlight[data-layout=blocks] .entry.is-focused .thumb img,
.concierge[data-layout=blocks] .entry:hover .thumb img,
.concierge[data-layout=blocks] .entry:focus .thumb img,
.concierge[data-layout=blocks] .entry.is-focused .thumb img,
.news_list[data-layout=blocks] .entry:hover .thumb img,
.news_list[data-layout=blocks] .entry:focus .thumb img,
.news_list[data-layout=blocks] .entry.is-focused .thumb img,
.contest_list[data-layout=blocks] .entry:hover .thumb img,
.contest_list[data-layout=blocks] .entry:focus .thumb img,
.contest_list[data-layout=blocks] .entry.is-focused .thumb img,
.job_list[data-layout=blocks] .entry:hover .thumb img,
.job_list[data-layout=blocks] .entry:focus .thumb img,
.job_list[data-layout=blocks] .entry.is-focused .thumb img,
.seating_charts[data-layout=blocks] .entry:hover .thumb img,
.seating_charts[data-layout=blocks] .entry:focus .thumb img,
.seating_charts[data-layout=blocks] .entry.is-focused .thumb img,
.gallery-listing[data-layout=blocks] .entry:hover .thumb img,
.gallery-listing[data-layout=blocks] .entry:focus .thumb img,
.gallery-listing[data-layout=blocks] .entry.is-focused .thumb img,
.offer_list[data-layout=blocks] .entry:hover .thumb img,
.offer_list[data-layout=blocks] .entry:focus .thumb img,
.offer_list[data-layout=blocks] .entry.is-focused .thumb img {
  filter: grayscale(100%);
}
.spotlight[data-layout=blocks] .entry:hover .thumb:after, .spotlight[data-layout=blocks] .entry:focus .thumb:after, .spotlight[data-layout=blocks] .entry.is-focused .thumb:after,
.concierge[data-layout=blocks] .entry:hover .thumb:after,
.concierge[data-layout=blocks] .entry:focus .thumb:after,
.concierge[data-layout=blocks] .entry.is-focused .thumb:after,
.news_list[data-layout=blocks] .entry:hover .thumb:after,
.news_list[data-layout=blocks] .entry:focus .thumb:after,
.news_list[data-layout=blocks] .entry.is-focused .thumb:after,
.contest_list[data-layout=blocks] .entry:hover .thumb:after,
.contest_list[data-layout=blocks] .entry:focus .thumb:after,
.contest_list[data-layout=blocks] .entry.is-focused .thumb:after,
.job_list[data-layout=blocks] .entry:hover .thumb:after,
.job_list[data-layout=blocks] .entry:focus .thumb:after,
.job_list[data-layout=blocks] .entry.is-focused .thumb:after,
.seating_charts[data-layout=blocks] .entry:hover .thumb:after,
.seating_charts[data-layout=blocks] .entry:focus .thumb:after,
.seating_charts[data-layout=blocks] .entry.is-focused .thumb:after,
.gallery-listing[data-layout=blocks] .entry:hover .thumb:after,
.gallery-listing[data-layout=blocks] .entry:focus .thumb:after,
.gallery-listing[data-layout=blocks] .entry.is-focused .thumb:after,
.offer_list[data-layout=blocks] .entry:hover .thumb:after,
.offer_list[data-layout=blocks] .entry:focus .thumb:after,
.offer_list[data-layout=blocks] .entry.is-focused .thumb:after {
  zoom: 1;
  opacity: 0;
}
.spotlight[data-layout=blocks] .entry:hover .info:before, .spotlight[data-layout=blocks] .entry:focus .info:before, .spotlight[data-layout=blocks] .entry.is-focused .info:before,
.concierge[data-layout=blocks] .entry:hover .info:before,
.concierge[data-layout=blocks] .entry:focus .info:before,
.concierge[data-layout=blocks] .entry.is-focused .info:before,
.news_list[data-layout=blocks] .entry:hover .info:before,
.news_list[data-layout=blocks] .entry:focus .info:before,
.news_list[data-layout=blocks] .entry.is-focused .info:before,
.contest_list[data-layout=blocks] .entry:hover .info:before,
.contest_list[data-layout=blocks] .entry:focus .info:before,
.contest_list[data-layout=blocks] .entry.is-focused .info:before,
.job_list[data-layout=blocks] .entry:hover .info:before,
.job_list[data-layout=blocks] .entry:focus .info:before,
.job_list[data-layout=blocks] .entry.is-focused .info:before,
.seating_charts[data-layout=blocks] .entry:hover .info:before,
.seating_charts[data-layout=blocks] .entry:focus .info:before,
.seating_charts[data-layout=blocks] .entry.is-focused .info:before,
.gallery-listing[data-layout=blocks] .entry:hover .info:before,
.gallery-listing[data-layout=blocks] .entry:focus .info:before,
.gallery-listing[data-layout=blocks] .entry.is-focused .info:before,
.offer_list[data-layout=blocks] .entry:hover .info:before,
.offer_list[data-layout=blocks] .entry:focus .info:before,
.offer_list[data-layout=blocks] .entry.is-focused .info:before {
  zoom: 1;
  opacity: 1;
}
@media screen and (max-width: 870px) {
  .spotlight[data-layout=blocks] .entry,
  .concierge[data-layout=blocks] .entry,
  .news_list[data-layout=blocks] .entry,
  .contest_list[data-layout=blocks] .entry,
  .job_list[data-layout=blocks] .entry,
  .seating_charts[data-layout=blocks] .entry,
  .gallery-listing[data-layout=blocks] .entry,
  .offer_list[data-layout=blocks] .entry {
    width: calc(50% - 20px);
    height: calc((50vw - 20px) * 0.5925925926);
  }
}
@media screen and (max-width: 500px) {
  .spotlight[data-layout=blocks] .entry,
  .concierge[data-layout=blocks] .entry,
  .news_list[data-layout=blocks] .entry,
  .contest_list[data-layout=blocks] .entry,
  .job_list[data-layout=blocks] .entry,
  .seating_charts[data-layout=blocks] .entry,
  .gallery-listing[data-layout=blocks] .entry,
  .offer_list[data-layout=blocks] .entry {
    width: 100%;
    margin-bottom: 10px;
    height: calc((100vw - 20px) * 0.5925925926);
  }
}
.spotlight[data-layout=logos],
.concierge[data-layout=logos],
.news_list[data-layout=logos],
.contest_list[data-layout=logos],
.job_list[data-layout=logos],
.seating_charts[data-layout=logos],
.gallery-listing[data-layout=logos],
.offer_list[data-layout=logos] {
  zoom: 1;
  margin: 0 auto 40px;
  border-top: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.spotlight[data-layout=logos]:before, .spotlight[data-layout=logos]:after,
.concierge[data-layout=logos]:before,
.concierge[data-layout=logos]:after,
.news_list[data-layout=logos]:before,
.news_list[data-layout=logos]:after,
.contest_list[data-layout=logos]:before,
.contest_list[data-layout=logos]:after,
.job_list[data-layout=logos]:before,
.job_list[data-layout=logos]:after,
.seating_charts[data-layout=logos]:before,
.seating_charts[data-layout=logos]:after,
.gallery-listing[data-layout=logos]:before,
.gallery-listing[data-layout=logos]:after,
.offer_list[data-layout=logos]:before,
.offer_list[data-layout=logos]:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: " ";
}
.spotlight[data-layout=logos]:after,
.concierge[data-layout=logos]:after,
.news_list[data-layout=logos]:after,
.contest_list[data-layout=logos]:after,
.job_list[data-layout=logos]:after,
.seating_charts[data-layout=logos]:after,
.gallery-listing[data-layout=logos]:after,
.offer_list[data-layout=logos]:after {
  clear: both;
}
.spotlight[data-layout=logos] .entry,
.concierge[data-layout=logos] .entry,
.news_list[data-layout=logos] .entry,
.contest_list[data-layout=logos] .entry,
.job_list[data-layout=logos] .entry,
.seating_charts[data-layout=logos] .entry,
.gallery-listing[data-layout=logos] .entry,
.offer_list[data-layout=logos] .entry {
  float: left;
  padding: 0;
  border: none;
  width: 100%;
  margin: 0 0 20px 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.spotlight[data-layout=logos] .entry .thumb,
.concierge[data-layout=logos] .entry .thumb,
.news_list[data-layout=logos] .entry .thumb,
.contest_list[data-layout=logos] .entry .thumb,
.job_list[data-layout=logos] .entry .thumb,
.seating_charts[data-layout=logos] .entry .thumb,
.gallery-listing[data-layout=logos] .entry .thumb,
.offer_list[data-layout=logos] .entry .thumb {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  margin-right: 0;
}
.spotlight[data-layout=logos] .entry .thumb:after,
.concierge[data-layout=logos] .entry .thumb:after,
.news_list[data-layout=logos] .entry .thumb:after,
.contest_list[data-layout=logos] .entry .thumb:after,
.job_list[data-layout=logos] .entry .thumb:after,
.seating_charts[data-layout=logos] .entry .thumb:after,
.gallery-listing[data-layout=logos] .entry .thumb:after,
.offer_list[data-layout=logos] .entry .thumb:after {
  display: none;
}
.spotlight[data-layout=logos] .entry .thumb a:after,
.concierge[data-layout=logos] .entry .thumb a:after,
.news_list[data-layout=logos] .entry .thumb a:after,
.contest_list[data-layout=logos] .entry .thumb a:after,
.job_list[data-layout=logos] .entry .thumb a:after,
.seating_charts[data-layout=logos] .entry .thumb a:after,
.gallery-listing[data-layout=logos] .entry .thumb a:after,
.offer_list[data-layout=logos] .entry .thumb a:after {
  display: none;
}
.spotlight[data-layout=logos] .entry .thumb img,
.concierge[data-layout=logos] .entry .thumb img,
.news_list[data-layout=logos] .entry .thumb img,
.contest_list[data-layout=logos] .entry .thumb img,
.job_list[data-layout=logos] .entry .thumb img,
.seating_charts[data-layout=logos] .entry .thumb img,
.gallery-listing[data-layout=logos] .entry .thumb img,
.offer_list[data-layout=logos] .entry .thumb img {
  width: auto;
  max-width: 100%;
}
@media screen and (max-width: 700px) {
  .spotlight[data-layout=logos] .entry .thumb img,
  .concierge[data-layout=logos] .entry .thumb img,
  .news_list[data-layout=logos] .entry .thumb img,
  .contest_list[data-layout=logos] .entry .thumb img,
  .job_list[data-layout=logos] .entry .thumb img,
  .seating_charts[data-layout=logos] .entry .thumb img,
  .gallery-listing[data-layout=logos] .entry .thumb img,
  .offer_list[data-layout=logos] .entry .thumb img {
    float: none;
    margin: auto;
  }
}
.spotlight[data-layout=logos] .entry .thumb:hover a, .spotlight[data-layout=logos] .entry .thumb:focus a,
.concierge[data-layout=logos] .entry .thumb:hover a,
.concierge[data-layout=logos] .entry .thumb:focus a,
.news_list[data-layout=logos] .entry .thumb:hover a,
.news_list[data-layout=logos] .entry .thumb:focus a,
.contest_list[data-layout=logos] .entry .thumb:hover a,
.contest_list[data-layout=logos] .entry .thumb:focus a,
.job_list[data-layout=logos] .entry .thumb:hover a,
.job_list[data-layout=logos] .entry .thumb:focus a,
.seating_charts[data-layout=logos] .entry .thumb:hover a,
.seating_charts[data-layout=logos] .entry .thumb:focus a,
.gallery-listing[data-layout=logos] .entry .thumb:hover a,
.gallery-listing[data-layout=logos] .entry .thumb:focus a,
.offer_list[data-layout=logos] .entry .thumb:hover a,
.offer_list[data-layout=logos] .entry .thumb:focus a {
  zoom: 1;
  opacity: 0.8;
}
.spotlight[data-layout=logos] .entry .info,
.concierge[data-layout=logos] .entry .info,
.news_list[data-layout=logos] .entry .info,
.contest_list[data-layout=logos] .entry .info,
.job_list[data-layout=logos] .entry .info,
.seating_charts[data-layout=logos] .entry .info,
.gallery-listing[data-layout=logos] .entry .info,
.offer_list[data-layout=logos] .entry .info {
  width: 100%;
  display: block;
  text-align: center;
  padding: 0;
  display: none;
}
.spotlight[data-layout=logos] .entry .title:before,
.concierge[data-layout=logos] .entry .title:before,
.news_list[data-layout=logos] .entry .title:before,
.contest_list[data-layout=logos] .entry .title:before,
.job_list[data-layout=logos] .entry .title:before,
.seating_charts[data-layout=logos] .entry .title:before,
.gallery-listing[data-layout=logos] .entry .title:before,
.offer_list[data-layout=logos] .entry .title:before {
  display: none;
}
.spotlight[data-layout=logos] .entry .button,
.concierge[data-layout=logos] .entry .button,
.news_list[data-layout=logos] .entry .button,
.contest_list[data-layout=logos] .entry .button,
.job_list[data-layout=logos] .entry .button,
.seating_charts[data-layout=logos] .entry .button,
.gallery-listing[data-layout=logos] .entry .button,
.offer_list[data-layout=logos] .entry .button {
  display: none;
}
@media screen and (min-width: 501px) {
  .spotlight[data-layout=logos] .entry,
  .concierge[data-layout=logos] .entry,
  .news_list[data-layout=logos] .entry,
  .contest_list[data-layout=logos] .entry,
  .job_list[data-layout=logos] .entry,
  .seating_charts[data-layout=logos] .entry,
  .gallery-listing[data-layout=logos] .entry,
  .offer_list[data-layout=logos] .entry {
    width: calc((100% - (3 - 1) * 20px) / 3);
    margin: 0 20px 20px 0;
  }
  .spotlight[data-layout=logos] .entry:nth-child(3n),
  .concierge[data-layout=logos] .entry:nth-child(3n),
  .news_list[data-layout=logos] .entry:nth-child(3n),
  .contest_list[data-layout=logos] .entry:nth-child(3n),
  .job_list[data-layout=logos] .entry:nth-child(3n),
  .seating_charts[data-layout=logos] .entry:nth-child(3n),
  .gallery-listing[data-layout=logos] .entry:nth-child(3n),
  .offer_list[data-layout=logos] .entry:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 871px) {
  .spotlight[data-layout=logos] .entry,
  .concierge[data-layout=logos] .entry,
  .news_list[data-layout=logos] .entry,
  .contest_list[data-layout=logos] .entry,
  .job_list[data-layout=logos] .entry,
  .seating_charts[data-layout=logos] .entry,
  .gallery-listing[data-layout=logos] .entry,
  .offer_list[data-layout=logos] .entry {
    width: calc((100% - (5 - 1) * 20px) / 5);
  }
  .spotlight[data-layout=logos] .entry:nth-child(3n),
  .concierge[data-layout=logos] .entry:nth-child(3n),
  .news_list[data-layout=logos] .entry:nth-child(3n),
  .contest_list[data-layout=logos] .entry:nth-child(3n),
  .job_list[data-layout=logos] .entry:nth-child(3n),
  .seating_charts[data-layout=logos] .entry:nth-child(3n),
  .gallery-listing[data-layout=logos] .entry:nth-child(3n),
  .offer_list[data-layout=logos] .entry:nth-child(3n) {
    margin-right: 20px;
  }
  .spotlight[data-layout=logos] .entry:nth-child(5n),
  .concierge[data-layout=logos] .entry:nth-child(5n),
  .news_list[data-layout=logos] .entry:nth-child(5n),
  .contest_list[data-layout=logos] .entry:nth-child(5n),
  .job_list[data-layout=logos] .entry:nth-child(5n),
  .seating_charts[data-layout=logos] .entry:nth-child(5n),
  .gallery-listing[data-layout=logos] .entry:nth-child(5n),
  .offer_list[data-layout=logos] .entry:nth-child(5n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 870px) {
  .news_list .thumb,
  .news_list .teaser {
    display: none;
  }
  .news_list .info,
  .news_list .thumb:not(.default) + .info {
    width: 100%;
    text-align: left;
  }
}

@media screen and (min-width: 701px) {
  .seating_charts .entry {
    display: flex;
    flex-direction: row;
  }
  .seating_charts .entry .info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.link {
  position: relative;
}
.link ul.list {
  padding: 0;
}
.link ul.list > li {
  margin-bottom: 18px;
}
.link ul.list li > a,
.link ul.list li > span {
  display: block;
  position: relative;
  padding: 5px 0px 5px 50px;
  word-wrap: break-word;
  color: #252017;
  font-weight: 700;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  font-size: 18px;
  font-family: "Futura PT", sans-serif;
  /*------------------------------------------------------------
           =Handles all Social Media icons for select social media urls
               -- Twitter | Facebook | Instagram | Pinterest
           ------------------------------------------------------------*/
}
.link ul.list li > a svg,
.link ul.list li > span svg {
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  fill: #252017;
}
.link ul.list li > a:hover,
.link ul.list li > span:hover {
  color: #0071ce;
}
.link ul.list li > a:hover svg,
.link ul.list li > span:hover svg {
  fill: #0071ce;
}
.link ul.list li > a:hover .link_icon svg > g.internal,
.link ul.list li > span:hover .link_icon svg > g.internal {
  stroke: #0071ce;
}
.link ul.list li > a .link_icon .internal,
.link ul.list li > span .link_icon .internal {
  display: block;
  stroke: #252017;
}
.link ul.list li > a .link_icon .internal:hover, .link ul.list li > a .link_icon .internal:focus,
.link ul.list li > span .link_icon .internal:hover,
.link ul.list li > span .link_icon .internal:focus {
  stroke: #0071ce;
}
.link ul.list li > a .link_icon .external,
.link ul.list li > span .link_icon .external {
  display: none;
}
.link ul.list li > a[target=_blank] .link_icon .internal,
.link ul.list li > span[target=_blank] .link_icon .internal {
  display: none;
}
.link ul.list li > a[target=_blank] .link_icon .external,
.link ul.list li > span[target=_blank] .link_icon .external {
  display: block;
}
.link ul.list li > a[href*=twitter] svg, .link ul.list li > a[href*=facebook] svg, .link ul.list li > a[href*=instagram] svg, .link ul.list li > a[href*=pinterest] svg, .link ul.list li > a[href*=youtube] svg, .link ul.list li > a[href*="youtu.be"] svg, .link ul.list li > a[href*=snapchat] svg,
.link ul.list li > span[href*=twitter] svg,
.link ul.list li > span[href*=facebook] svg,
.link ul.list li > span[href*=instagram] svg,
.link ul.list li > span[href*=pinterest] svg,
.link ul.list li > span[href*=youtube] svg,
.link ul.list li > span[href*="youtu.be"] svg,
.link ul.list li > span[href*=snapchat] svg {
  display: none;
}
.link ul.list li > a[href*=twitter]:before, .link ul.list li > a[href*=facebook]:before, .link ul.list li > a[href*=instagram]:before, .link ul.list li > a[href*=pinterest]:before, .link ul.list li > a[href*=youtube]:before, .link ul.list li > a[href*="youtu.be"]:before, .link ul.list li > a[href*=snapchat]:before,
.link ul.list li > span[href*=twitter]:before,
.link ul.list li > span[href*=facebook]:before,
.link ul.list li > span[href*=instagram]:before,
.link ul.list li > span[href*=pinterest]:before,
.link ul.list li > span[href*=youtube]:before,
.link ul.list li > span[href*="youtu.be"]:before,
.link ul.list li > span[href*=snapchat]:before {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  position: absolute;
  top: 4px;
  left: 0px;
  display: inline-block;
  background: none;
  padding: 0;
  font-family: FontAwesome;
  font-size: 25px;
  font-weight: normal;
  font-style: normal;
  color: #252017;
  text-decoration: inherit;
}
.link ul.list li > a[href*=twitter]:hover:before, .link ul.list li > a[href*=facebook]:hover:before, .link ul.list li > a[href*=instagram]:hover:before, .link ul.list li > a[href*=pinterest]:hover:before, .link ul.list li > a[href*=youtube]:hover:before, .link ul.list li > a[href*="youtu.be"]:hover:before, .link ul.list li > a[href*=snapchat]:hover:before,
.link ul.list li > span[href*=twitter]:hover:before,
.link ul.list li > span[href*=facebook]:hover:before,
.link ul.list li > span[href*=instagram]:hover:before,
.link ul.list li > span[href*=pinterest]:hover:before,
.link ul.list li > span[href*=youtube]:hover:before,
.link ul.list li > span[href*="youtu.be"]:hover:before,
.link ul.list li > span[href*=snapchat]:hover:before {
  color: #0071ce;
}
.link ul.list li > a[href*=twitter]:before,
.link ul.list li > span[href*=twitter]:before {
  content: "\f099";
}
.link ul.list li > a[href*=facebook]:before,
.link ul.list li > span[href*=facebook]:before {
  content: "\f09a";
}
.link ul.list li > a[href*=instagram]:before,
.link ul.list li > span[href*=instagram]:before {
  content: "\f16d";
}
.link ul.list li > a[href*=pinterest]:before,
.link ul.list li > span[href*=pinterest]:before {
  content: "\f0d2";
}
.link ul.list li > a[href*=youtube]:before, .link ul.list li > a[href*="youtu.be"]:before,
.link ul.list li > span[href*=youtube]:before,
.link ul.list li > span[href*="youtu.be"]:before {
  content: "\f16a";
}
.link ul.list li > a[href*=snapchat]:before,
.link ul.list li > span[href*=snapchat]:before {
  content: "\f2ac";
}
.link ul.list li > span {
  color: #252017;
}
.link ul.list li > span svg {
  fill: #252017;
}
.link ul.list li > span .link_icon svg > g.internal {
  stroke: #252017;
}
.link ul.list li > span:hover {
  color: #252017;
}
.link ul.list li > span:hover svg {
  fill: #252017;
}
.link ul.list li > span:hover .link_icon svg > g.internal {
  stroke: #252017;
}
.link ul.list li > span .link_icon {
  display: none;
}
.link ul.list .description {
  padding-left: 50px;
}
.link ul.list .description ul > li:before {
  top: 9px;
}
.link ul.list .description p,
.link ul.list .description li {
  margin-top: 0;
}
.link ul.list .description p {
  margin-bottom: 20px;
}
.link ul.list .description ol > li:before {
  top: 3px;
  font-size: 17px;
}

/* ----------------------------------------------------------------------------
= FAQ Accordion
----------------------------------------------------------------------------- */
.faq {
  position: relative;
}
.faq .faq_item_wrapper {
  overflow: hidden;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.faq .faq_item_wrapper + .faq_item_wrapper {
  margin-top: 20px;
}
@media screen and (max-width: 700px) {
  .faq .faq_item_wrapper + .faq_item_wrapper {
    margin-top: 20px;
  }
}
.faq .faq_list_item {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  position: relative;
  margin: 0;
  padding: 0px;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
}
.faq .faq_list_item p {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  margin: 0;
  padding: 15px 80px 15px 17px;
  text-transform: none;
  font-family: "Futura PT", sans-serif;
  font-size: 20px;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: capitalize;
  font-weight: 500;
  background: #0071ce;
}
.faq .faq_list_item p:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 17px;
  background-image: url("../images/svg/icn_faq.svg");
  background-size: 30px 17px;
  background-repeat: no-repeat;
  width: 30px;
  height: 17px;
  display: block;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
@media screen and (max-width: 700px) {
  .faq .faq_list_item p {
    padding: 20px 80px 20px 20px;
  }
}
.faq .faq_list_item svg {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  position: absolute;
  top: 30px;
  right: 30px;
  border-radius: 50%;
}
.faq .faq_list_item svg .circle {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
}
.faq .faq_list_item:hover p {
  background: #0e89ed;
}
.faq .faq_list_item.active, .faq .faq_list_item.open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.faq .faq_list_item.active p:hover, .faq .faq_list_item.open p:hover {
  background: #0071ce;
}
.faq .faq_list_item.active p:before, .faq .faq_list_item.open p:before {
  transform: translateY(-50%) rotate(90deg);
}
.faq .faq_answer {
  display: none;
  padding: 20px 17px 17px;
  margin: 0px;
  border: 2px solid #0071ce;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top: none;
  position: relative;
  top: -5px;
}
.faq .faq_answer .cms > * {
  margin-bottom: 0;
  margin-top: 20px;
  color: #252017;
}
.faq .faq_answer .cms > *:first-child {
  margin-top: 0;
}
.faq .faq_answer .cms a {
  font-weight: 500;
  color: #0071ce;
}
.faq .faq_answer .cms a:hover, .faq .faq_answer .cms a:focus {
  color: #243355;
}
.faq .faq_answer .cms li {
  color: #252017;
}
.faq .faq_answer .cms li:before {
  color: #252017;
}
.faq .faq_answer .cms ul li:before {
  background: #252017;
}
.footer .faq .faq_list_item a {
  display: block;
  position: relative;
}
.footer .faq .faq_list_item p {
  background: transparent !important;
  padding-left: 0;
  padding-right: 0;
}
.footer .faq .faq_list_item p:before {
  right: 0;
}
.footer .faq .faq_answer {
  border: none !important;
  padding-left: 0;
  padding-right: 0;
  padding-top: 5px;
}
.footer .faq .faq_answer .cms > * {
  margin-bottom: 0;
  margin-top: 20px;
  color: #fff;
}
.footer .faq .faq_answer .cms > *:first-child {
  margin-top: 0;
}
.footer .faq .faq_answer .cms a {
  font-weight: 700;
  color: #fff;
}
.footer .faq .faq_answer .cms a:hover, .footer .faq .faq_answer .cms a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer .faq .faq_answer .cms li {
  color: #fff;
}
.footer .faq .faq_answer .cms li:before {
  color: #fff;
}
.footer .faq .faq_answer .cms ul li:before {
  background: #fff;
}
.footer .faq .faq_item_wrapper {
  overflow: hidden;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  margin: 0 0 11px;
  position: relative;
}
.footer .faq .faq_item_wrapper:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  z-index: 2;
  width: 100%;
  background: #fff;
  background-repeat: no-repeat;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  opacity: 1;
}
.footer .faq .faq_item_wrapper:last-child {
  margin: 0;
}

/* ----------------------------------------------------------------------------
= News List
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
= News Detail
----------------------------------------------------------------------------- */
.news_detail .news_thumb {
  max-width: 50%;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.news_detail .news_thumb img {
  max-width: 100%;
}
@media screen and (max-width: 700px) {
  .news_detail .news_thumb {
    max-width: 100%;
    margin: auto;
    margin-bottom: 20px;
    float: none;
    text-align: center;
  }
}

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
.event_listing_page {
  overflow: hidden;
}
.event_listing_page .eventList {
  text-align: center;
}

.events.content_item .event_list {
  margin: auto;
  max-width: 1220px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
@media screen and (max-width: 870px) {
  .events.content_item .event_list {
    justify-content: center;
  }
}

.event_list {
  zoom: 1;
  margin: auto;
}
.event_list:before, .event_list:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: " ";
}
.event_list:after {
  clear: both;
}
@media screen and (max-width: 1024px) {
  .event_list {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
  }
}
.event_list .list {
  margin: auto;
  max-width: 1220px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
@media screen and (max-width: 1024px) {
  .event_list .list {
    justify-content: center;
  }
}
.event_list .list.has_promotion .eventItem:nth-child(7) {
  display: none !important;
}
.event_list .eventItem {
  position: relative;
  zoom: 1;
  background: #fff;
  overflow: hidden;
  width: calc(100% - 40px);
  max-width: 980px;
  margin: 0 auto 30px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  filter: drop-shadow(0px 4px 60px rgba(0, 0, 0, 0.25));
  transform: translateZ(0);
  overflow: hidden;
  transition: box-shadow 0.2s linear;
  text-align: left;
  border-radius: 9px;
}
.event_list .eventItem:before, .event_list .eventItem:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: " ";
}
.event_list .eventItem:after {
  clear: both;
}
.event_list .eventItem:after {
  content: "";
  background-image: url("../images/svg/elp-item-bg.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 680px;
  height: 180px;
  position: absolute;
  right: -2px;
  top: 0;
  visibility: visible;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .event_list .eventItem {
    width: calc(50% - 40px);
    margin: 0px 10px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media screen and (max-width: 600px) {
  .event_list .eventItem {
    width: calc(100% - 40px);
    max-width: 360px;
    margin: 0 auto 20px;
    min-height: 360px;
  }
}
.event_list .eventItem .thumb {
  position: relative;
  float: left;
  width: 289px;
  overflow: hidden;
  float: left;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .event_list .eventItem .thumb {
    width: 100%;
  }
}
.event_list .eventItem .thumb a {
  position: relative;
  display: block;
  z-index: 1;
  overflow: hidden;
}
.event_list .eventItem .thumb a img {
  -webkit-transition: all 700ms ease-in-out;
  -moz-transition: all 700ms ease-in-out;
  -o-transition: all 700ms ease-in-out;
  transition: all 700ms ease-in-out;
  display: block;
  width: 100%;
  height: auto;
}
.event_list .eventItem .thumb a:hover img, .event_list .eventItem .thumb a:focus img {
  transform: scale(1.2);
}
.event_list .eventItem .info {
  width: calc(100% - 289px);
  padding: 33px 36px 33px 30px;
  padding-right: 240px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 5;
  min-height: 100%;
}
@media screen and (max-width: 1024px) {
  .event_list .eventItem .info {
    min-height: 0;
    width: 100%;
    padding-right: 20px;
    padding: 20px 20px 20px;
    flex-grow: 1;
    position: relative;
  }
  .event_list .eventItem .info:after {
    content: "";
    background-image: url("../images/svg/elp-item-bg.svg");
    background-size: 100% auto;
    background-repeat: no-repeat;
    width: 400px;
    height: 230px;
    position: absolute;
    right: -2px;
    top: 0;
    visibility: visible;
    z-index: -1;
  }
}
@media screen and (max-width: 600px) {
  .event_list .eventItem .info {
    text-align: center;
    align-items: center;
  }
}
.event_list .eventItem .info .title {
  margin-bottom: 10px;
  line-height: 1.1;
  font-size: 25px;
  font-weight: 700;
  color: #0071ce;
  position: relative;
  z-index: 5;
}
.event_list .eventItem .info .title a {
  color: #0071ce;
}
.event_list .eventItem .info .title a:hover {
  color: #243355;
  text-decoration: none;
}
.event_list .eventItem .info .time {
  display: none;
}
.event_list .eventItem .info .date {
  background: transparent;
  border-radius: 0;
  font-family: "Futura PT", sans-serif;
  padding: 0;
  font-size: 14px;
  color: #0071ce;
  letter-spacing: 0;
  display: inline-block;
  margin-bottom: 5px;
  text-transform: uppercase;
  position: relative;
  z-index: 5;
}
.event_list .eventItem .info .date span {
  color: #0071ce;
  font-weight: 500;
  text-transform: uppercase;
}
.event_list .eventItem .info .date .m-date__month,
.event_list .eventItem .info .date .m-date__day {
  font-weight: 500;
  text-transform: uppercase;
}
.event_list .eventItem .info .presented-by {
  background: transparent;
  border-radius: 0;
  font-family: "Futura PT", sans-serif;
  padding: 0;
  font-size: 14px;
  color: #252017;
  letter-spacing: 0;
  display: inline-block;
  margin-bottom: 5px;
  text-transform: uppercase;
  position: relative;
  z-index: 5;
}
.event_list .eventItem .info .tagline {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  z-index: 5;
}
.event_list .eventItem .info .buttons {
  position: absolute;
  right: 65px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  min-height: 41px;
  width: 150px;
}
.event_list .eventItem .info .buttons:before, .event_list .eventItem .info .buttons:after {
  display: none;
}
.event_list .eventItem .info .buttons a.tickets {
  flex: 0 100%;
  max-width: 100%;
}
.event_list .eventItem .info .buttons a.tickets + .more {
  margin-top: 25px;
}
@media screen and (max-width: 1024px) {
  .event_list .eventItem .info .buttons a.tickets + .more {
    margin-top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .event_list .eventItem .info .buttons a.tickets {
    margin-top: 15px;
  }
}
.event_list .eventItem .info .buttons .more {
  align-self: center;
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .event_list .eventItem .info .buttons .more {
    margin-top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .event_list .eventItem .info .buttons {
    top: auto;
    transform: none;
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: auto;
    align-self: flex-end;
    padding-top: 30px;
    width: 100%;
    flex-flow: row wrap;
    text-align: center;
    justify-content: center;
  }
  .event_list .eventItem .info .buttons .tickets {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .event_list .eventItem .info .buttons {
    width: 100%;
    align-self: stretch;
  }
}
@media screen and (max-width: 600px) {
  .event_list .eventItem {
    width: calc(100% - 40px);
    max-width: 360px;
    margin: 0 auto 20px;
  }
}
.event_list.event_list_grid {
  max-width: 1220px;
}
@media screen and (max-width: 870px) {
  .event_list.event_list_grid {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
  }
}
.event_list.event_list_grid .eventItem {
  float: left;
  width: calc(33.3% - 32px);
  margin: 0px 16px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 514px;
}
.event_list.event_list_grid .eventItem:after {
  display: none !important;
}
.event_list.event_list_grid .eventItem .thumb {
  float: none;
  width: 100%;
}
.event_list.event_list_grid .eventItem .info {
  flex-grow: 1;
  padding: 24px 35px 32px;
  width: 100%;
  min-height: 0;
  position: relative;
}
.event_list.event_list_grid .eventItem .info .title,
.event_list.event_list_grid .eventItem .info .tagline,
.event_list.event_list_grid .eventItem .info .presented-by,
.event_list.event_list_grid .eventItem .info .date {
  z-index: 3;
  position: relative;
}
.event_list.event_list_grid .eventItem .info:after {
  content: "";
  background-image: url("../images/svg/elp-item-bg.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 400px;
  height: 230px;
  position: absolute;
  right: -2px;
  top: 0;
  visibility: visible;
  z-index: 2;
}
.event_list.event_list_grid .eventItem .info .buttons {
  position: relative;
  bottom: auto;
  right: auto;
  margin-top: auto;
  align-self: flex-end;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-flow: row nowrap;
  width: 100%;
  top: auto;
  transform: none;
  min-height: 0;
  z-index: 3;
}
.event_list.event_list_grid .eventItem .info .buttons .more {
  margin-top: 0;
}
@media screen and (max-width: 1024px) {
  .event_list.event_list_grid .eventItem .info .buttons .more {
    margin-left: 0;
  }
}
.event_list.event_list_grid .eventItem .info .buttons a.tickets + .more {
  margin-left: 30px;
  margin-top: 0;
}
@media screen and (max-width: 1024px) {
  .event_list.event_list_grid .eventItem .info .buttons a.tickets + .more {
    margin-left: 0;
  }
}
.event_list.event_list_grid .eventItem .info .buttons a.tickets {
  flex: none;
}
@media screen and (max-width: 1024px) {
  .event_list.event_list_grid .eventItem .info .buttons a.tickets {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .event_list.event_list_grid .eventItem .info .buttons {
    flex-flow: row wrap;
    justify-content: center;
  }
}
.event_list.event_list_grid .eventItem:nth-child(3n+1) {
  clear: left;
}
@media screen and (max-width: 1110px) {
  .event_list.event_list_grid .eventItem {
    width: calc(33.3% - 24px);
    margin: 0px 12px 30px;
  }
}
@media screen and (max-width: 870px) {
  .event_list.event_list_grid .eventItem {
    width: calc(50% - 32px);
    margin: 0px 16px 30px;
  }
}
@media screen and (max-width: 600px) {
  .event_list.event_list_grid .eventItem {
    width: calc(100% - 40px);
    max-width: 360px;
    margin: 0 auto 20px;
    min-height: 360px;
  }
}
.event_list.event_list_calendar {
  display: none;
}
.event_list.calendar_event_list {
  display: none;
}
.event_list.calendar_event_list.event_list_calendar {
  display: block;
}

.event_list .elp-promo {
  background: none;
}
.event_list .elp-promo.eventItem {
  background: linear-gradient(180deg, #0071ce 0%, #09156b 100%);
}
.event_list .elp-promo.eventItem:after {
  display: none;
}
.event_list .elp-promo.eventItem .info {
  text-align: center;
  position: relative;
  z-index: 3;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-right: 36px;
}
.event_list .elp-promo.eventItem .info .title {
  font-size: 31px;
}
.event_list .elp-promo.eventItem .info:after {
  display: none !important;
}
.event_list .elp-promo.eventItem .info * {
  color: #fff;
}
.event_list .elp-promo.eventItem .info a:hover {
  text-decoration: underline;
}
.event_list .elp-promo .event_promo {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
.event_list .elp-promo a.event_promo:hover .title, .event_list .elp-promo a.event_promo:focus .title {
  text-decoration: underline;
}
.event_list .elp-promo * {
  background-size: cover;
  background-position: center;
}
.event_list .elp-promo .list-promo {
  display: none;
  width: 100%;
}
.event_list .elp-promo .list-promo .info {
  max-width: 750px;
  margin: 0 auto;
  padding: 35px 30px;
  padding-right: 30px;
}
.event_list .elp-promo .list-promo:before {
  content: "";
  background-image: url("../images/svg/blockquote-shape.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 981px;
  min-width: 100%;
  height: 127px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  visibility: visible;
  z-index: 2;
}
.event_list .elp-promo .grid-promo {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url("../images/grid-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (min-width: 601px) {
  .event_list .elp-promo .grid-promo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.event_list .elp-promo .grid-promo .info {
  padding-right: 30px;
}
.event_list .elp-promo img {
  width: 100%;
  zoom: 1;
  opacity: 0;
  display: block;
}

@media screen and (min-width: 1025px) {
  .event_list_listing .elp-promo .grid-promo {
    display: none;
  }
  .event_list_listing .elp-promo .list-promo {
    display: block;
  }
}

.event_detail .page_header {
  display: none;
}
.event_detail .related_page_content {
  width: 1200px;
  margin: 0 auto;
  max-width: 100%;
  padding: 60px 0 0;
}
@media screen and (max-width: 700px) {
  .event_detail .related_page_content {
    padding: 40px 0 0;
  }
}
@media screen and (max-width: 1080px) {
  .event_detail .related_page_content {
    margin: 0;
  }
}
.event_detail h2.detail {
  color: #243355;
  font-size: 39px;
  font-weight: 700;
}
@media screen and (max-width: 700px) {
  .event_detail h2.detail {
    font-size: 30px;
  }
}
.event_detail h2.detail,
.event_detail .description_wrapper {
  width: 100%;
  margin: auto;
}
.event_detail .event_heading {
  position: static;
  flex: 0 0 auto;
  max-width: 100%;
  text-align: left;
  margin-bottom: 20px;
}
.event_detail .event_heading .date {
  display: none;
}
.event_detail .event_heading .presented-by {
  font-family: "Futura PT", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 16px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  font-weight: 500;
  color: #252017;
  text-transform: uppercase;
}
.event_detail .event_heading .title {
  font-family: "Futura PT", sans-serif;
  font-weight: 700;
  color: #252017;
  line-height: 1.1;
  margin-bottom: 0;
  font-size: 39px;
  color: #243355;
  letter-spacing: 0;
}
@media screen and (max-width: 700px) {
  .event_detail .event_heading .title {
    font-size: 34px;
  }
}
.event_detail .event_heading .tagline {
  font-family: "Futura PT", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #252017;
  letter-spacing: 0;
  line-height: 25px;
  margin-top: 11px;
  margin-bottom: 0;
}
@media screen and (max-width: 870px) {
  .event_detail .event_heading .tagline {
    margin: 0;
    font-size: 16px;
  }
}
@media screen and (max-width: 870px) {
  .event_detail .event_heading {
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 25px 10px;
    text-align: center;
  }
}
.event_detail #branding {
  position: relative;
}
.event_detail #branding .full-slideshow {
  position: relative;
  z-index: 9;
}
.event_detail #branding .spotlight_image {
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 870px) {
  .event_detail #branding {
    margin: 0 !important;
    max-width: calc(100% + 40px) !important;
    margin-left: -20px !important;
    width: calc(100% + 40px) !important;
  }
}
@media screen and (max-width: 700px) {
  .event_detail #branding {
    margin: 0 !important;
    max-width: calc(100% + 20px) !important;
    margin-left: -10px !important;
    width: calc(100% + 20px) !important;
  }
}
.event_detail .title_section {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.event_detail .title_section #branding {
  width: 808px;
  width: 100%;
  max-width: none;
  flex-grow: 1;
  margin: 0;
}
.event_detail .title_section #branding.spotlight_image {
  padding: 0;
  margin: 0;
  border-radius: 0px;
}
.event_detail .title_section #branding .full-slideshow {
  width: 100%;
  max-width: none;
}
.event_detail .title_section #branding .full-slideshow * {
  border-radius: 0px;
}
.event_detail .title_section .event_heading {
  max-width: 1220px;
  margin: auto;
  width: 100%;
  flex-grow: 0;
  flex-shrink: 0;
  padding: 40px 20px;
}
@media screen and (max-width: 1080px) {
  .event_detail .title_section #branding,
  .event_detail .title_section .event_heading {
    width: 100%;
  }
}
.event_detail .content_item {
  width: 100%;
  max-width: 1180px;
}

.event_showings {
  margin: 0 0 100px 0;
}
@media screen and (max-width: 870px) {
  .event_showings {
    margin: 0 0 60px 0;
  }
}
.event_showings .showings_wrapper {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  margin: 0;
  margin-bottom: 26px;
  padding-bottom: 29px;
  transition: all 100ms linear;
}
.event_showings .listItem {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 20px 0;
}
@media screen and (max-width: 870px) {
  .event_showings .listItem {
    padding: 20px 0;
  }
}
.event_showings .listItem:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  background: #000;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  height: 1px;
  width: 100%;
  visibility: visible;
}
@media screen and (max-width: 1205px) {
  .event_showings .listItem {
    flex-flow: row wrap;
  }
}
.event_showings .listItem .cell {
  font-family: "Futura PT", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #252017;
  font-size: 20px;
  font-weight: 500;
}
.event_showings .listItem .cell.showings_date {
  width: 40%;
}
.event_showings .listItem .cell.showings_date span {
  font-weight: 500;
}
.event_showings .listItem .cell.time {
  text-transform: uppercase;
  font-size: 20px;
  color: #252017;
}
.event_showings .listItem .buttons {
  margin-left: auto;
  text-transform: capitalize;
  height: 40px;
}
.event_showings .listItem > .ical {
  display: none;
  margin: 0;
}
@media screen and (max-width: 700px) {
  .event_showings .listItem > .ical {
    display: block;
    text-align: center;
  }
}
.event_showings .listItem .ical {
  display: none;
  font-family: "Futura PT", sans-serif;
  font-size: 13px;
  letter-spacing: 0;
  color: #252017;
}
.event_showings .listItem .ical:hover, .event_showings .listItem .ical:focus {
  text-decoration: underline;
}
@media screen and (max-width: 500px) {
  .event_showings .listItem {
    flex-wrap: wrap;
  }
  .event_showings .listItem .cell {
    width: 100%;
    text-align: left;
    padding: 5px 0;
  }
  .event_showings .listItem .cell.showings_date {
    width: 100%;
  }
}
.event_showings .additional_showings {
  display: none;
}
@media screen and (max-width: 700px) {
  .event_showings {
    margin: 0 0 40px 0;
  }
}

.description_wrapper {
  margin: 0 0 20px 0;
}
.description_wrapper .event_description {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-family: "Futura PT", sans-serif;
  line-height: 1.25;
}
.description_wrapper .event_description:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 43.9%, #fff 86%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff",GradientType=0 );
}
.description_wrapper .event_description.is-opened:after {
  display: none;
}
.description_wrapper + .faq {
  margin-top: 100px;
}
@media screen and (max-width: 870px) {
  .description_wrapper + .faq {
    margin-top: 50px;
  }
}
.description_wrapper.short-description .event_description {
  height: auto;
}
.description_wrapper.short-description .event_description:after {
  display: none;
}
@media screen and (max-width: 700px) {
  .description_wrapper {
    margin: 0 0 40px 0;
  }
}

.right_side_wrapper {
  margin-bottom: 40px;
}
.right_side_wrapper .rightBreakout .buttonWrapper {
  position: relative;
  z-index: 6;
}
.right_side_wrapper .rightBreakout .buttonWrapper .date {
  display: none;
}
.right_side_wrapper .rightBreakout .buttonWrapper span {
  display: none;
}
@media screen and (max-width: 870px) {
  .right_side_wrapper .rightBreakout .buttonWrapper {
    width: 100%;
  }
}
.right_side_wrapper .rightBreakout .details {
  position: relative;
  background: linear-gradient(180deg, #0071ce 0%, #09156b 100%);
  border-right: none;
  padding: 30px;
  border-radius: 9px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  width: 100%;
  border-radius: 9px;
}
.right_side_wrapper .rightBreakout .details:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  background: url("../images/svg/edp-sidebar.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  visibility: visible;
  z-index: 5;
}
@media screen and (max-width: 870px) {
  .right_side_wrapper .rightBreakout .details:after {
    width: 100%;
    background-position: top right;
  }
}
@media screen and (max-width: 1200px) {
  .right_side_wrapper .rightBreakout .details {
    width: 100vw;
    margin-left: -20px;
    border-radius: 0px;
  }
}
@media screen and (max-width: 1080px) {
  .right_side_wrapper .rightBreakout .details {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 870px) {
  .right_side_wrapper .rightBreakout .details {
    flex-direction: column;
    padding: 20px;
    gap: 0px;
  }
}
.right_side_wrapper .rightBreakout .details .eventDetailList {
  position: relative;
  z-index: 6;
  display: flex;
  flex-grow: 1;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 870px) {
  .right_side_wrapper .rightBreakout .details .eventDetailList {
    gap: 0;
    width: 100%;
  }
}
.right_side_wrapper .rightBreakout .details .eventDetailList .item {
  width: 100%;
  margin: 0 0 0px;
  padding: 20px 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  flex-grow: 1;
}
.right_side_wrapper .rightBreakout .details .eventDetailList .item:after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  width: 100%;
  height: 1px;
  visibility: visible;
  display: none;
}
@media screen and (max-width: 500px) {
  .right_side_wrapper .rightBreakout .details .eventDetailList .item:after {
    display: block;
  }
}
.right_side_wrapper .rightBreakout .details .eventDetailList .item.sidebar_event_date {
  text-transform: uppercase;
}
.right_side_wrapper .rightBreakout .details .eventDetailList .item .label {
  margin: 0 0 7px 0;
  font-family: "Futura PT", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}
.right_side_wrapper .rightBreakout .details .eventDetailList .item a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  top: 0px;
}
.right_side_wrapper .rightBreakout .details .eventDetailList .item a:after {
  display: none !important;
}
.right_side_wrapper .rightBreakout .details .eventDetailList .item a:before {
  content: "";
  position: absolute;
  height: 2px;
  bottom: 0px;
  left: 0;
  width: 100%;
  background: transparent;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  visibility: visible;
}
.right_side_wrapper .rightBreakout .details .eventDetailList .item a:hover {
  color: #fff !important;
  text-decoration: none;
}
.right_side_wrapper .rightBreakout .details .eventDetailList .item a:hover:before {
  background: #fff;
}
.right_side_wrapper .rightBreakout .details .eventDetailList .item > svg,
.right_side_wrapper .rightBreakout .details .eventDetailList .item > .add-to-cal {
  display: none;
}
@media screen and (min-width: 871px) {
  .right_side_wrapper .rightBreakout .details .eventDetailList .item {
    width: calc(20% - 40px);
    padding: 0px 0;
  }
  .right_side_wrapper .rightBreakout .details .eventDetailList .item:after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: 0px;
    background: rgba(255, 255, 255, 0.5);
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
    width: 1px;
    height: 100%;
    visibility: visible;
  }
}
@media screen and (min-width: 501px) and (max-width: 870px) {
  .right_side_wrapper .rightBreakout .details .eventDetailList {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .right_side_wrapper .rightBreakout .details .eventDetailList .item {
    width: 50%;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 0;
  }
  .right_side_wrapper .rightBreakout .details .eventDetailList .item:after {
    display: block;
  }
  .right_side_wrapper .rightBreakout .details .eventDetailList .item.sidebar_event_date {
    width: 100%;
    padding-left: 0;
  }
  .right_side_wrapper .rightBreakout .details .eventDetailList .item:nth-child(even) {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    padding-left: 0;
  }
  .right_side_wrapper .rightBreakout .details .eventDetailList .item:nth-last-child(2):nth-child(even) {
    border-bottom: none;
  }
  .right_side_wrapper .rightBreakout .details .eventDetailList .item:nth-last-child(2):nth-child(even):after {
    display: none;
  }
  .right_side_wrapper .rightBreakout .details .eventDetailList .item:last-child {
    border-right: none;
  }
  .right_side_wrapper .rightBreakout .details .eventDetailList .item:last-child:after {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .right_side_wrapper {
    margin-bottom: 40px;
  }
}

.event_sponsors {
  max-width: 300px;
  margin: 30px auto 0;
}

.event_sponsors img {
  max-height: 100px;
  max-width: 100%;
  width: auto;
}
.event_sponsors.owl-carousel .owl-item {
  text-align: center;
}
.event_sponsors.owl-carousel .owl-item img {
  width: auto;
  margin: auto;
}

.related_events {
  margin-top: 100px;
  margin-bottom: 0;
}
@media screen and (max-width: 870px) {
  .related_events {
    margin-bottom: 100px;
  }
}
.related_events h2 {
  color: #0071CE;
  font-family: "Futura PT", sans-serif;
  font-size: 39px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 46.8px */
  letter-spacing: 5.85px;
  text-transform: uppercase;
  margin: 0 auto 22px auto;
  max-width: 1180px;
  width: calc(100% - 40px);
}

@media screen and (max-width: 870px) {
  .related_event_list.event_list.event_list_grid.owl_carousel {
    max-width: 770px;
  }
}
@media screen and (min-width: 871px) {
  .related_event_list.event_list.event_list_grid.owl_carousel[data-total="3"] .owl-controls {
    display: none !important;
  }
}
.related_event_list.event_list.event_list_grid.owl_carousel.on-last .owl-next {
  pointer-events: none;
  cursor: default;
  opacity: 0.25;
}
.related_event_list.event_list.event_list_grid.owl_carousel.on-first .owl-prev {
  pointer-events: none;
  cursor: default;
  opacity: 0.25;
}
.related_event_list.event_list.event_list_grid.owl_carousel .owl-carousel, .related_event_list.event_list.event_list_grid.owl_carousel .owl-stage-outer {
  overflow: initial;
}
.related_event_list.event_list.event_list_grid.owl_carousel .owl-item {
  opacity: 0;
  display: flex;
  justify-content: center;
}
.related_event_list.event_list.event_list_grid.owl_carousel .owl-item.active {
  opacity: 1;
}
.related_event_list.event_list.event_list_grid.owl_carousel .owl-item {
  width: 372px;
}
.related_event_list.event_list.event_list_grid.owl_carousel .eventItem {
  width: 372px;
  margin: 0 0 30px;
  filter: drop-shadow(0px 4px 60px rgba(0, 0, 0, 0.25));
  max-width: calc(100% - 30px);
}
.related_event_list.event_list.event_list_grid.owl_carousel .owl-next, .related_event_list.event_list.event_list_grid.owl_carousel .owl-prev {
  background: transparent;
  background-size: cover;
  width: 57px;
  height: 58px;
  top: 50%;
  --offset: calc(50% - 10px);
}
@media screen and (max-width: 1420px) {
  .related_event_list.event_list.event_list_grid.owl_carousel .owl-next, .related_event_list.event_list.event_list_grid.owl_carousel .owl-prev {
    top: calc(100% + 10px);
  }
}
@media screen and (max-width: 600px) {
  .related_event_list.event_list.event_list_grid.owl_carousel .owl-next, .related_event_list.event_list.event_list_grid.owl_carousel .owl-prev {
    top: calc(100% - 20px);
  }
}
.related_event_list.event_list.event_list_grid.owl_carousel .owl-next:hover:before, .related_event_list.event_list.event_list_grid.owl_carousel .owl-prev:hover:before {
  background: #0071CE;
}
.related_event_list.event_list.event_list_grid.owl_carousel .owl-next:hover svg path, .related_event_list.event_list.event_list_grid.owl_carousel .owl-prev:hover svg path {
  fill: #fff;
}
.related_event_list.event_list.event_list_grid.owl_carousel .owl-next:before, .related_event_list.event_list.event_list_grid.owl_carousel .owl-prev:before {
  content: "";
  border-radius: 50%;
  transition: 250ms;
  height: calc(100% - 4px);
  width: calc(100% - 4px);
  position: absolute;
  top: 2px;
  left: 2px;
  display: block;
  background: transparent;
}
.related_event_list.event_list.event_list_grid.owl_carousel .owl-next svg path, .related_event_list.event_list.event_list_grid.owl_carousel .owl-prev svg path {
  fill: #0071CE;
  transition: 250ms;
}
.related_event_list.event_list.event_list_grid.owl_carousel .owl-prev {
  left: -70px;
}
@media screen and (max-width: 1420px) {
  .related_event_list.event_list.event_list_grid.owl_carousel .owl-prev {
    left: var(--offset);
    transform: translateX(-100%);
  }
}
.related_event_list.event_list.event_list_grid.owl_carousel .owl-next {
  right: -70px;
}
@media screen and (max-width: 1420px) {
  .related_event_list.event_list.event_list_grid.owl_carousel .owl-next {
    right: var(--offset);
    transform: translateX(100%);
  }
}

/* ----------------------------------------------------------------------------
= print styles
----------------------------------------------------------------------------- */
@media print {
  * {
    color: #444 !important;
    background: transparent !important;
    text-shadow: none !important;
  }
  header,
  footer,
  #branding,
  #cal_holder,
  #fb_window,
  #fb-root,
  .paging,
  .buttons,
  .one_sidebar_right #column_2,
  .ticket,
  .faq,
  .banner,
  .addthis_toolbox,
  .print,
  .seating,
  .full-slideshow,
  .no_print {
    display: none;
    height: 0 !important;
  }
  a,
  a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after {
    content: " (" attr(href) ")";
  }
  abbr:after {
    content: " (" attr(title) ")";
  }
  .ir a:after {
    content: "";
  } /* Don't show links for images */
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  } /* css-discuss.incutio.com/wiki/Printing_Tables */
  tr,
  img {
    page-break-inside: avoid;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  h1 {
    font-size: 18px;
  }
  h2 {
    font-size: 16px;
  }
  h3 {
    font-size: 14px;
  }
  .news_tools {
    display: none;
  }
  .print_logo {
    display: block;
    width: 150px;
    height: 44px;
    padding-bottom: 10px;
  }
  .print_map {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  #layout {
    padding-top: 10px;
    border-top: 1px solid #000;
  }
  .event_list a:after {
    content: "";
  }
  .thumb a:after {
    content: "";
  }
  body#events.detail #column_1 .main_column {
    width: 600px;
  }
  body#events.detail #column_2 {
    display: block;
  }
  .column {
    width: 100% !important;
  }
}
