@import url(https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:wght@400;700&display=swap);
/* ----------------------------------------------------------------------------
= Prinrt import - compiles to /css/print.css
= Currently using Bourbon latest from CodeKit
----------------------------------------------------------------------------- */
html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

:root {
  font-size: 16px;
}
@media screen and (min-width: 700px) {
  :root {
    font-size: calc(16px + (16 - 16) * (100vw - 700px) / (1000 - 700));
  }
}
@media screen and (min-width: 1000px) {
  :root {
    font-size: 16px;
  }
}

/*
	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
= Last updated July 2015
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
= DEVELOPER NOTES
= *) using Bourbon latest (via Codekit)
= *) Sass set to compile extended, set to compressed before launch
= *) set to compile SASS with libsass (via Codekit)
= *) using FontAwesome Font with CSS link (in head_extra view)
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=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;
}

* {
  letter-spacing: 0em;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.header-base, .spotlight .title,
.concierge .title,
.news_list .title,
.contest_list .title,
.job_list .title,
.seating_charts .title,
.offer_list .title, h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0 0 0px;
  font-family: "Open Sans", sans-serif;
  color: #1e1e1f;
  line-height: 1.36;
}
.header-base a, .spotlight .title a,
.concierge .title a,
.news_list .title a,
.contest_list .title a,
.job_list .title a,
.seating_charts .title a,
.offer_list .title a, h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
  color: #1e1e1f;
}
.header-base a:hover, .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,
.offer_list .title a:hover, h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
.h1 a:hover,
.h2 a:hover,
.h3 a:hover,
.h4 a:hover,
.h5 a:hover,
.h6 a:hover {
  color: rgba(0, 0, 0, 0.7);
}

h1,
.h1 {
  font-size: 46px;
}
@media screen and (max-width: 700px) {
  h1,
  .h1 {
    font-size: 35px;
  }
}
h2,
.h2 {
  font-size: 35px;
}
.textarea h2,
.textarea .h2 {
  margin-bottom: 20px;
  margin-top: 60px;
}
h2.long_title,
.h2.long_title {
  font-size: 25px;
}

h3,
.h3,
.spotlight .title,
.concierge .title,
.news_list .title,
.contest_list .title,
.job_list .title,
.seating_charts .title,
.offer_list .title {
  font-size: 25px;
}
.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 .offer_list .title,
.offer_list .textarea .title {
  margin-bottom: 20px;
  margin-top: 60px;
}

h4,
.h4 {
  font-size: 1.414rem;
}
.textarea h4,
.textarea .h4 {
  margin-bottom: 20px;
}

h5,
.h5 {
  font-size: 1rem;
}

h6,
.h6 {
  font-size: 0.7072135785rem;
}

.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: 16px;
  color: #58585b;
  letter-spacing: 0;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  line-height: 1.85;
}

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

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

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: 3px 0 3px 40px;
}
.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: 15px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #000;
}
.cms ul li ul,
.textarea ul li ul,
.spotlight_text ul li ul,
.faq ul li ul,
.link .description ul li ul,
.event_description ul li ul {
  margin-top: 10px;
}

ol {
  margin-bottom: 20px;
}

ol > li {
  position: relative;
  padding: 3px 0px 3px 40px;
  counter-increment: li-counter;
}
ol > li:before {
  content: "";
  font-weight: 400;
  font-size: 16px;
  position: absolute;
  font-family: "Open Sans", sans-serif;
  top: 3px;
  left: 0;
  width: 22px;
  height: 28px;
  content: counter(li-counter) ".";
}
@media screen and (max-width: 768px) {
  ol > li:before {
    font-size: 16px;
  }
}

a {
  border: none;
  color: #4c4c4c;
  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: #1e1e1f;
}
.textarea p a, .textarea li a, .cms p a, .cms li a, .spotlight_content a, .m-eventDetailList__item a, .event_description a {
  text-decoration: underline;
}
.textarea p a:hover, .textarea li a:hover, .cms p a:hover, .cms li a:hover, .spotlight_content a:hover, .m-eventDetailList__item a:hover, .event_description a:hover {
  color: #a54424;
  text-decoration: underline;
}

hr {
  display: block;
  height: 2px;
  background-color: #f5e7cc;
  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;
  position: relative;
  width: 975px;
  max-width: 100%;
  margin: 60px auto 40px;
  overflow: hidden;
  background: #4b7066;
  border: 6px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}
@media screen and (max-width: 700px) {
  blockquote {
    margin-top: 40px;
    padding: 100px 30px 10px;
    margin-right: 0;
  }
}
blockquote > * {
  margin-bottom: 0;
  margin-top: 20px;
}
blockquote > *:first-child {
  margin-top: 0;
}
blockquote p {
  color: #fff;
  font-size: 20px;
}
blockquote strong {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #fff;
  letter-spacing: 1px;
}
blockquote strong em {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  display: inline;
  margin-top: 10px;
  position: relative;
  padding-left: 0;
  line-height: 1.1875;
}
@media screen and (max-width: 500px) {
  blockquote strong em {
    font-size: 14px;
    line-height: 19px;
  }
}
@media screen and (max-width: 700px) {
  blockquote strong {
    padding: 20px 0 10px;
  }
}
@media screen and (max-width: 500px) {
  blockquote strong {
    font-size: 14px;
    line-height: 18px;
  }
}

/* ----------------------------------------------------------------------------
= Spotlight list style
----------------------------------------------------------------------------- */
.spotlight .entry,
.concierge .entry,
.news_list .entry,
.contest_list .entry,
.job_list .entry,
.seating_charts .entry,
.offer_list .entry {
  zoom: 1;
  display: flex;
  flex-direction: row;
  margin-bottom: 40px;
  background: #ffffff;
  border: 4px solid #f5e7cc;
}
.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,
.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,
.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,
  .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,
.offer_list .entry:last-child {
  margin-bottom: 0;
}
.spotlight .thumb,
.concierge .thumb,
.news_list .thumb,
.contest_list .thumb,
.job_list .thumb,
.seating_charts .thumb,
.offer_list .thumb {
  min-width: 150px;
  width: 390px;
  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,
.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,
.offer_list .thumb a {
  position: relative;
  display: block;
  overflow: hidden;
}
.spotlight .thumb a:hover,
.concierge .thumb a:hover,
.news_list .thumb a:hover,
.contest_list .thumb a:hover,
.job_list .thumb a:hover,
.seating_charts .thumb a:hover,
.offer_list .thumb a:hover {
  zoom: 1;
  opacity: 0.8;
  -moz-opacity: 0.8;
  filter: alpha(opacity=80);
}
.spotlight .thumb img,
.concierge .thumb img,
.news_list .thumb img,
.contest_list .thumb img,
.job_list .thumb img,
.seating_charts .thumb img,
.offer_list .thumb img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .spotlight .thumb,
  .concierge .thumb,
  .news_list .thumb,
  .contest_list .thumb,
  .job_list .thumb,
  .seating_charts .thumb,
  .offer_list .thumb {
    width: 300px;
  }
}
@media screen and (max-width: 700px) {
  .spotlight .thumb,
  .concierge .thumb,
  .news_list .thumb,
  .contest_list .thumb,
  .job_list .thumb,
  .seating_charts .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,
.offer_list .info {
  position: relative;
  float: left;
  width: 100%;
  display: block;
  text-align: left;
  padding: 30px;
}
@media screen and (max-width: 700px) {
  .spotlight .info,
  .concierge .info,
  .news_list .info,
  .contest_list .info,
  .job_list .info,
  .seating_charts .info,
  .offer_list .info {
    margin: 0 auto 20px;
    padding: 20px 20px 0;
    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,
  .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,
.offer_list .info p {
  font-size: 18px;
  line-height: 1.388;
}
.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,
.offer_list .thumb:not(.default) + .info {
  width: calc(100% - (390px + 0px));
}
@media screen and (max-width: 1080px) {
  .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,
  .offer_list .thumb:not(.default) + .info {
    width: calc(100% - (300px + 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,
  .offer_list .thumb:not(.default) + .info {
    width: 100%;
  }
}
.spotlight .date,
.concierge .date,
.news_list .date,
.contest_list .date,
.job_list .date,
.seating_charts .date,
.offer_list .date {
  transform: translateX(-56px);
  background: #4b7066;
  border: 3px solid #ffffff;
  border-radius: 30px;
  font-family: "Bebas Neue", sans-serif;
  padding: 12px 24px 8px;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 0.8px;
  display: inline-block;
  margin-bottom: 15px;
  margin-top: -20px;
}
@media screen and (max-width: 870px) {
  .spotlight .date,
  .concierge .date,
  .news_list .date,
  .contest_list .date,
  .job_list .date,
  .seating_charts .date,
  .offer_list .date {
    transform: translateX(-20px);
  }
}
@media screen and (max-width: 870px) {
  .spotlight .date,
  .concierge .date,
  .news_list .date,
  .contest_list .date,
  .job_list .date,
  .seating_charts .date,
  .offer_list .date {
    margin-top: -10px;
    transform: translateX(-10px);
  }
}
.spotlight .title,
.concierge .title,
.news_list .title,
.contest_list .title,
.job_list .title,
.seating_charts .title,
.offer_list .title {
  margin-bottom: 15px;
}
.spotlight .title a,
.concierge .title a,
.news_list .title a,
.contest_list .title a,
.job_list .title a,
.seating_charts .title a,
.offer_list .title a {
  color: #1e1e1f;
}
.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,
.offer_list .title a:hover {
  color: #a54424;
  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,
.offer_list .buttons a,
.offer_list .links a {
  margin: 0 20px 0 0;
}
@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,
  .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,
  .offer_list .buttons a,
  .offer_list .links a {
    margin: 0 10px;
    width: 100%;
    text-align: center;
  }
}
.spotlight .links a,
.concierge .links a,
.news_list .links a,
.contest_list .links a,
.job_list .links a,
.seating_charts .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],
.offer_list[data-layout=square] {
  zoom: 1;
  width: calc(100% - 40px);
  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,
.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,
.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],
  .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],
  .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,
  .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),
  .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),
  .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,
  .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,
  .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,
  .offer_list[data-layout=square] .entry .info {
    width: 100%;
    display: block;
    padding: 25px;
    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 > *,
  .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,
  .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,
  .offer_list[data-layout=square] .entry .title {
    font-size: 25px;
  }
  .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,
  .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,
  .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,
  .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),
  .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),
  .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),
  .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),
  .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],
.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,
.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,
.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],
  .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,
.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,
.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,
.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,
.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,
.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: #1e1e1f;
  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,
.offer_list[data-layout=blocks] .entry .title a {
  display: block;
  position: relative;
  transform: translateY(30px);
  color: #1e1e1f;
}
.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,
.offer_list[data-layout=blocks] .entry .title a:hover {
  text-decoration: underline;
  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,
.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,
.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;
  -moz-opacity: 0;
  filter: alpha(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,
.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,
.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,
.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;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
  z-index: 2;
}
.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,
.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,
.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;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
}
.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,
.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,
.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;
  -moz-opacity: 0;
  filter: alpha(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,
.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;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
}
@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,
  .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,
  .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],
.offer_list[data-layout=logos] {
  zoom: 1;
  width: 100%;
  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,
.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,
.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,
.offer_list[data-layout=logos] .entry {
  float: left;
  padding: 0;
  border: none;
  width: 100%;
  margin: 0 0 20px 0;
  background: transparent;
  box-shadow: none;
}
.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,
.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,
.offer_list[data-layout=logos] .entry .thumb: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,
.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,
  .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,
.offer_list[data-layout=logos] .entry .thumb:hover a,
.offer_list[data-layout=logos] .entry .thumb:focus a {
  zoom: 1;
  opacity: 0.8;
  -moz-opacity: 0.8;
  filter: alpha(opacity=80);
}
.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,
.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,
.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,
.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,
  .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),
  .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,
  .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),
  .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),
  .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;
  }
  .news_list .teaser p {
    font-size: 16px;
  }
}

@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 > a,
.link ul.list li > span {
  display: block;
  position: relative;
  padding: 5px 0px 5px 50px;
  word-wrap: break-word;
  color: #1e1e1f;
  font-family: "Bebas Neue", sans-serif;
  font-size: 25px;
  letter-spacing: 0.04em;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  /*------------------------------------------------------------
           =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: #1e1e1f;
}
.link ul.list li > a:hover, .link ul.list li > a:focus,
.link ul.list li > span:hover,
.link ul.list li > span:focus {
  color: #a54424;
}
.link ul.list li > a:hover svg, .link ul.list li > a:focus svg,
.link ul.list li > span:hover svg,
.link ul.list li > span:focus svg {
  fill: #a54424;
}
.link ul.list li > a:hover .link_icon .internal, .link ul.list li > a:focus .link_icon .internal,
.link ul.list li > span:hover .link_icon .internal,
.link ul.list li > span:focus .link_icon .internal {
  stroke: #a54424;
}
.link ul.list li > a .link_icon .internal,
.link ul.list li > span .link_icon .internal {
  display: block;
  stroke: #1e1e1f;
}
.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: 10px;
  left: 0px;
  display: inline-block;
  background: none;
  padding: 0;
  font-family: FontAwesome;
  font-size: 25px;
  font-weight: normal;
  font-style: normal;
  color: #1e1e1f;
  text-decoration: none;
}
.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: #a54424;
}
.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 .link_icon {
  display: none;
}
.link ul.list li > span:hover {
  color: #1e1e1f;
  text-decoration: none;
}
.link ul.list .description {
  padding-left: 50px;
}
.link ul.list .description p,
.link ul.list .description li {
  margin-top: 0;
}
.link ul.list .description p {
  margin-bottom: 20px;
}

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

/* ----------------------------------------------------------------------------
= Baseline styles for all buttons in a project. These are global.
----------------------------------------------------------------------------- */
.m-button {
  display: inline-block;
  position: relative;
  text-align: center;
  background: #f5f5f5;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  color: #58585b;
  letter-spacing: 1px;
  padding: 10px 17px;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 1px;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.m-button svg {
  display: none;
}
.m-button:hover {
  background-color: #e0e0e0;
  color: #58585b;
}

.m-button-big, #allEvents,
#loadMoreEvents {
  display: inline-block;
  position: relative;
  text-align: center;
  background: #f5f5f5;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  color: #58585b;
  letter-spacing: 1px;
  padding: 10px 17px;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 1px;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  font-size: 18px;
  padding: 16px 40px;
  background: #58585b;
  color: #fff;
}
.m-button-big svg, #allEvents svg,
#loadMoreEvents svg {
  display: none;
}
.m-button-big:hover, #allEvents:hover,
#loadMoreEvents:hover {
  background-color: #e0e0e0;
  color: #58585b;
}
.m-button-big:hover, #allEvents:hover,
#loadMoreEvents:hover, .m-button-big:focus, #allEvents:focus,
#loadMoreEvents:focus {
  background: #464649;
  color: #fff;
}

.m-ticket-button {
  display: inline-block;
  position: relative;
  background-color: #4c4c4c;
  color: #ffffff;
  text-align: center;
  padding: 10px 20px;
  line-height: 1;
}
.m-ticket-button:hover {
  background-color: #1e1e1f;
  color: #fff;
}

#loadMoreEvents[disabled=disabled] {
  display: none;
}

.gen-button,
.spotlight-button,
.spot-button,
a.button,
.button a,
input.button,
.textarea .button p a,
.textarea p a.button,
.cms .button p a,
.cms p a.button,
.login-form input[type=submit] {
  display: inline-block;
  position: relative;
  text-align: center;
  background: #f5f5f5;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  color: #58585b;
  letter-spacing: 1px;
  padding: 10px 17px;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 1px;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.gen-button svg,
.spotlight-button svg,
.spot-button svg,
a.button svg,
.button a svg,
input.button svg,
.textarea .button p a svg,
.textarea p a.button svg,
.cms .button p a svg,
.cms p a.button svg,
.login-form input[type=submit] svg {
  display: none;
}
.gen-button:hover,
.spotlight-button:hover,
.spot-button:hover,
a.button:hover,
.button a:hover,
input.button:hover,
.textarea .button p a:hover,
.textarea p a.button:hover,
.cms .button p a:hover,
.cms p a.button:hover,
.login-form input[type=submit]:hover {
  background-color: #e0e0e0;
  color: #58585b;
}

/***********************************************/
/*      Add Additional Button Styles Below     */
/***********************************************/
.eventItem .buttons {
  zoom: 1;
}
.eventItem .buttons:before, .eventItem .buttons:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: " ";
}
.eventItem .buttons:after {
  clear: both;
}
.eventItem .buttons .tickets {
  display: inline-block;
  position: relative;
  text-align: center;
  background: #f5f5f5;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  color: #58585b;
  letter-spacing: 1px;
  padding: 10px 17px;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 1px;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  background: #a54424;
  color: #fff;
  white-space: nowrap;
  padding: 10px;
}
.eventItem .buttons .tickets svg {
  display: none;
}
.eventItem .buttons .tickets:hover {
  background-color: #e0e0e0;
  color: #58585b;
}
.eventItem .buttons .tickets.no_ticket_link {
  display: none;
}
.eventItem .buttons .tickets:hover, .eventItem .buttons .tickets:focus {
  background: #86371d;
  color: #fff;
}
.eventItem .buttons .more {
  display: inline-block;
  position: relative;
  text-align: center;
  background: #f5f5f5;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  color: #58585b;
  letter-spacing: 1px;
  padding: 10px 17px;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 1px;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  white-space: nowrap;
  padding: 10px;
}
.eventItem .buttons .more svg {
  display: none;
}
.eventItem .buttons .more:hover {
  background-color: #e0e0e0;
  color: #58585b;
}
@media screen and (min-width: 1200px) {
  .eventItem .buttons .more {
    padding: 10px 17px;
  }
}
.event_list_grid .eventItem .buttons .tickets {
  margin-left: auto;
}
@media screen and (min-width: 1200px) {
  .event_list_grid .eventItem .buttons .tickets {
    padding: 10px 17px;
  }
}
@media screen and (max-width: 870px) {
  .eventItem .buttons .tickets {
    margin-left: auto;
  }
}
@media screen and (max-width: 870px) and (min-width: 1200px) {
  .eventItem .buttons .tickets {
    padding: 10px 17px;
  }
}
@media screen and (max-width: 400px) {
  .eventItem .buttons .tickets,
  .eventItem .buttons .more {
    margin: 10px 0 0;
    width: 100%;
  }
}

@media screen and (min-width: 871px) {
  .primary_events .eventItem .buttons .more,
  .primary_events .eventItem .buttons .tickets,
  .secondary_events .eventItem .buttons .more,
  .secondary_events .eventItem .buttons .tickets {
    padding: 16px 25px;
  }
}

.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
}

#allEvents,
#loadMoreEvents {
  margin: -20px auto 30px;
  width: 188px;
  padding-left: 0px;
  padding-right: 0;
  display: block;
}
@media screen and (max-width: 700px) {
  #allEvents,
  #loadMoreEvents {
    margin-top: 20px;
  }
}

.footer_faqs .faq_answer .cms a.button {
  background: #a54424;
  color: #fff;
  margin-left: auto;
  white-space: nowrap;
}
.footer_faqs .faq_answer .cms a.button:hover, .footer_faqs .faq_answer .cms a.button:focus {
  background: #86371d;
  color: #fff;
}

.buttonWrapper .buttons .tickets {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #4b7066;
  letter-spacing: 1px;
  background: #f5f5f5;
  border: 3px solid #f5f5f5;
  padding: 13px;
  display: block;
  text-align: center;
  text-transform: uppercase;
}
.buttonWrapper .buttons .tickets:hover, .buttonWrapper .buttons .tickets:focus {
  color: #ffffff;
  background: none;
  border: 3px solid rgba(255, 255, 255, 0.1);
}
.buttonWrapper .buttons .tickets.no_ticket_link {
  display: none;
}

.event_showings .buttons .tickets {
  display: inline-block;
  position: relative;
  text-align: center;
  background: #f5f5f5;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  color: #58585b;
  letter-spacing: 1px;
  padding: 10px 17px;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 1px;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  background: #a54424;
  color: #fff;
  margin-left: auto;
  white-space: nowrap;
  padding: 16px 26px;
  min-width: 163px;
  text-align: center;
}
.event_showings .buttons .tickets svg {
  display: none;
}
.event_showings .buttons .tickets:hover {
  background-color: #e0e0e0;
  color: #58585b;
}
.event_showings .buttons .tickets.no_ticket_link {
  display: none;
}
.event_showings .buttons .tickets:hover, .event_showings .buttons .tickets:focus {
  background: #86371d;
  color: #fff;
}

.read-more,
.show-all-showings {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  border-bottom: 2px solid #4b7066;
  padding-bottom: 6px;
  display: inline-block;
  font-size: 16px;
  color: #000;
  letter-spacing: 0.5px;
  line-height: 1.5;
  text-transform: uppercase;
  margin-top: 30px;
}
.read-more:hover, .read-more:focus,
.show-all-showings:hover,
.show-all-showings:focus {
  border-color: #a54424;
}

.eventDetailList .item a {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  border-bottom: 2px solid #fff;
  padding-bottom: 6px;
  display: inline-block;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1.5;
  text-transform: uppercase;
}
.eventDetailList .item a:hover, .eventDetailList .item a:focus {
  border-color: #5d7e75;
}

#venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons a.tickets,
#venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons span.tickets {
  display: inline-block;
  position: relative;
  text-align: center;
  background: #f5f5f5;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  color: #58585b;
  letter-spacing: 1px;
  padding: 10px 17px;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 1px;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  background: #a54424;
  color: #fff;
  white-space: nowrap;
  padding: 10px;
}
#venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons a.tickets svg,
#venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons span.tickets svg {
  display: none;
}
#venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons a.tickets:hover,
#venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons span.tickets:hover {
  background-color: #e0e0e0;
  color: #58585b;
}
#venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons a.tickets.no_ticket_link,
#venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons span.tickets.no_ticket_link {
  display: none;
}
#venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons a.tickets:hover, #venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons a.tickets:focus,
#venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons span.tickets:hover,
#venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons span.tickets:focus {
  background: #86371d;
  color: #fff;
}

#venue_widgets_framework .font_open-sans .m-venueframework__header-link,
#venue_widgets_framework .font_open-sans .m-venueframework__header-link:visited {
  font-size: 12px;
  text-transform: uppercase;
}
#venue_widgets_framework .font_open-sans .m-venueframework__header-link:hover, #venue_widgets_framework .font_open-sans .m-venueframework__header-link:focus,
#venue_widgets_framework .font_open-sans .m-venueframework__header-link:visited:hover,
#venue_widgets_framework .font_open-sans .m-venueframework__header-link:visited:focus {
  text-decoration: underline;
}

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
.event_list {
  zoom: 1;
  margin: auto;
}
.event_list:before, .event_list:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: " ";
}
.event_list:after {
  clear: both;
}
.event_list .list {
  margin: auto;
  width: 100%;
  max-width: 1280px;
  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 {
  -webkit-transition: box-shadow 0.2s linear;
  -moz-transition: box-shadow 0.2s linear;
  -o-transition: box-shadow 0.2s linear;
  transition: box-shadow 0.2s linear;
  position: relative;
  zoom: 1;
  background: #fff;
  overflow: hidden;
  width: calc(100% - 40px);
  max-width: 1196px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  background: #ffffff;
}
.event_list .eventItem:before, .event_list .eventItem:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: " ";
}
.event_list .eventItem:after {
  clear: both;
}
.event_list .eventItem.entry {
  border: 4px solid #f5e7cc;
}
.event_list .eventItem .thumb {
  position: relative;
  float: left;
  width: 389px;
  overflow: hidden;
  float: left;
  z-index: 1;
  flex-shrink: 0;
}
.event_list .eventItem .thumb a {
  display: block;
  z-index: 1;
}
.event_list .eventItem .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;
  max-width: 100%;
  display: block;
  z-index: 1;
  width: 100%;
}
.event_list .eventItem .thumb:hover a:not(.venue_logo) img, .event_list .eventItem .thumb:focus a:not(.venue_logo) img {
  zoom: 1;
  opacity: 0.8;
  -moz-opacity: 0.8;
  filter: alpha(opacity=80);
}
@media screen and (max-width: 1080px) {
  .event_list .eventItem .thumb {
    width: 300px;
  }
}
.event_list .eventItem .venue_logo {
  position: absolute;
  top: 10px;
  left: 15px;
  overflow: visible;
}
.event_list .eventItem .venue_logo:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  zoom: 1;
  opacity: 0.7;
  -moz-opacity: 0.7;
  filter: alpha(opacity=70);
}
.event_list .eventItem .venue_logo img {
  position: relative;
  display: block;
  width: 38px;
  max-height: 46px;
  height: auto;
  z-index: 2;
}
.event_list .eventItem .info {
  position: relative;
  width: calc(100% - 389px);
  padding: 75px 30px 30px;
  padding-right: 230px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 1080px) {
  .event_list .eventItem .info {
    width: calc(100% - 300px);
  }
}
.event_list .eventItem .date {
  position: absolute;
  top: 12px;
  left: -26px;
  background: #4b7066;
  border: 3px solid #ffffff;
  border-radius: 30px;
  font-family: "Bebas Neue", sans-serif;
  padding: 12px 24px 8px;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 0.8px;
  display: inline-block;
}
.event_list .eventItem .presented-by {
  font-weight: 400;
  font-size: 14px;
  color: #58585b;
  letter-spacing: 0;
}
.event_list .eventItem .title a {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 25px;
  color: #1e1e1f;
  letter-spacing: 0;
  line-height: inherit;
  line-height: 1.36;
}
.event_list .eventItem .title a:hover, .event_list .eventItem .title a:focus {
  color: #a54424;
}
.event_list .eventItem .location {
  position: relative;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #58585b;
  letter-spacing: 0;
  padding-bottom: 15px;
  margin-bottom: 15px;
  margin-top: 5px;
}
.event_list .eventItem .location:before {
  position: absolute;
  bottom: 0px;
  left: 0px;
  content: "";
  height: 3px;
  background-color: #f5e7cc;
  width: 100%;
  width: 308px;
  zoom: 1;
  opacity: 0.28;
  -moz-opacity: 0.28;
  filter: alpha(opacity=28);
}
.event_list .eventItem .tagline {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #58585b;
  letter-spacing: 0;
}
.event_list .eventItem .buttons {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  padding: 20px 36px;
  width: 208px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: stretch;
  gap: 25px;
}
.event_list .eventItem.entry:hover, .event_list .eventItem.entry:focus, .event_list .eventItem.entry.is-focused {
  box-shadow: 0 0 15px 0 rgba(195, 141, 40, 0.2);
}
@media screen and (max-width: 870px) {
  .event_list .eventItem {
    float: left;
    width: calc(33.3% - 50px);
    margin: 0px 25px 50px;
    display: flex;
    min-height: 545px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .event_list .eventItem .thumb {
    float: none;
    width: 100%;
  }
  .event_list .eventItem .info {
    flex-grow: 1;
    width: 100%;
    padding: 40px 25px 25px;
  }
}
@media screen and (max-width: 870px) and (max-width: 500px) {
  .event_list .eventItem .info {
    padding: 40px 20px 25px;
  }
}
@media screen and (max-width: 870px) {
  .event_list .eventItem .location {
    display: block;
    width: 100%;
  }
  .event_list .eventItem .location:before {
    width: 100%;
  }
  .event_list .eventItem .venue_logo {
    left: auto;
    right: 15px;
  }
  .event_list .eventItem .date {
    top: 0px;
    left: 5px;
    transform: translateY(-50%);
  }
  .event_list .eventItem .buttons {
    position: relative;
    top: auto;
    right: auto;
    flex-direction: row-reverse;
    height: auto;
    padding: 0;
    padding-top: 40px;
    margin-top: auto;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    gap: 0px;
  }
}
@media screen and (max-width: 870px) and (max-width: 400px) {
  .event_list .eventItem .buttons {
    flex-direction: column;
  }
}
@media screen and (max-width: 870px) {
  .event_list .eventItem:nth-child(3n+1) {
    clear: left;
  }
}
@media screen and (max-width: 870px) and (max-width: 1080px) {
  .event_list .eventItem {
    margin: 0px 10px 30px;
    width: calc(33.3% - 20px);
  }
}
@media screen and (max-width: 870px) and (max-width: 1024px) {
  .event_list .eventItem {
    width: calc(50% - 20px);
    margin: 0px 10px 30px;
  }
}
@media screen and (max-width: 870px) and (max-width: 700px) {
  .event_list .eventItem {
    width: calc(100% - 40px);
    max-width: 360px;
    min-height: 0px;
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 870px) and (max-width: 500px) {
  .event_list .eventItem {
    width: calc(100% - 20px);
  }
}
.event_list.event_list_grid {
  max-width: 1245px;
}
@media screen and (max-width: 1024px) {
  .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% - 50px);
  margin: 0px 25px 50px;
  display: flex;
  min-height: 545px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.event_list.event_list_grid .eventItem .thumb {
  float: none;
  width: 100%;
}
.event_list.event_list_grid .eventItem .info {
  flex-grow: 1;
  width: 100%;
  padding: 40px 25px 25px;
}
@media screen and (max-width: 500px) {
  .event_list.event_list_grid .eventItem .info {
    padding: 40px 20px 25px;
  }
}
.event_list.event_list_grid .eventItem .location {
  display: block;
  width: 100%;
}
.event_list.event_list_grid .eventItem .location:before {
  width: 100%;
}
.event_list.event_list_grid .eventItem .venue_logo {
  left: auto;
  right: 15px;
}
.event_list.event_list_grid .eventItem .date {
  top: 0px;
  left: 5px;
  transform: translateY(-50%);
}
.event_list.event_list_grid .eventItem .buttons {
  position: relative;
  top: auto;
  right: auto;
  flex-direction: row-reverse;
  height: auto;
  padding: 0;
  padding-top: 40px;
  margin-top: auto;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 0px;
}
@media screen and (max-width: 400px) {
  .event_list.event_list_grid .eventItem .buttons {
    flex-direction: column;
  }
}
.event_list.event_list_grid .eventItem:nth-child(3n+1) {
  clear: left;
}
@media screen and (max-width: 1080px) {
  .event_list.event_list_grid .eventItem {
    margin: 0px 10px 30px;
    width: calc(33.3% - 20px);
  }
}
@media screen and (max-width: 1024px) {
  .event_list.event_list_grid .eventItem {
    width: calc(50% - 20px);
    margin: 0px 10px 30px;
  }
}
@media screen and (max-width: 700px) {
  .event_list.event_list_grid .eventItem {
    width: calc(100% - 40px);
    max-width: 360px;
    min-height: 0px;
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 500px) {
  .event_list.event_list_grid .eventItem {
    width: calc(100% - 20px);
  }
}
.event_list.event_list_listing .eventItem .buttons .tickets.soon {
  padding: 10px 6px;
  font-size: 15px;
}
.event_list.featured_events {
  padding: 50px 0 0;
}
.event_list.secondary_events {
  max-width: 1230px;
  padding: 50px 0;
}
.event_list.secondary_events .list {
  justify-content: center;
}
@media screen and (min-width: 701px) {
  .event_list.secondary_events .eventItem {
    width: calc(50% - 40px);
    margin-bottom: 0;
  }
}
@media screen and (min-width: 701px) and (min-width: 871px) {
  .event_list.secondary_events .eventItem {
    margin: 0px 20px 0px;
    width: calc(50% - 40px);
  }
  .event_list.secondary_events .eventItem .info {
    padding: 47px 40px 25px;
  }
  .event_list.secondary_events .eventItem .venue_logo {
    position: absolute;
    top: 20px;
    right: 25px;
  }
  .event_list.secondary_events .eventItem .venue_logo img {
    display: block;
    width: 55px;
    max-height: none;
    height: auto;
  }
  .event_list.secondary_events .eventItem .presented-by {
    font-size: 16px;
  }
  .event_list.secondary_events .eventItem .tagline {
    font-size: 20px;
  }
  .event_list.secondary_events .eventItem .title,
  .event_list.secondary_events .eventItem .title a {
    font-size: 31px;
  }
  .event_list.secondary_events .eventItem .location {
    font-size: 16px;
  }
  .event_list.secondary_events .eventItem .date {
    font-size: 25px;
    padding: 14px 45px 10px;
  }
  .event_list.secondary_events .eventItem .buttons {
    justify-content: flex-start;
  }
  .event_list.secondary_events .eventItem .buttons .tickets {
    margin-left: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .event_list.primary_events {
    max-width: 100%;
  }
}
.event_list.primary_events .owl-stage {
  display: flex;
}
.event_list.primary_events .eventItem {
  width: 50vw;
  margin: 0;
  border-radius: 0;
  max-width: 100%;
  border: none;
  display: block;
}
.event_list.primary_events .eventItem:before, .event_list.primary_events .eventItem:after {
  visibility: visible;
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  right: 0;
  width: 88px;
  height: 100%;
  display: none;
  z-index: 2;
  opacity: 0.7;
  background: #58585b;
}
.event_list.primary_events .eventItem .thumb {
  width: 100%;
  border-radius: 0;
}
.event_list.primary_events .eventItem .thumb .venue_logo {
  display: none;
}
@media screen and (max-width: 870px) {
  .event_list.primary_events .eventItem .thumb .venue_logo {
    display: block;
  }
}
.event_list.primary_events .eventItem .info {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 104px 60px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  background: rgba(88, 88, 91, 0.3);
  opacity: 0;
}
@media screen and (min-width: 871px) {
  .event_list.primary_events .eventItem .info .title a,
  .event_list.primary_events .eventItem .info .presented-by,
  .event_list.primary_events .eventItem .info .tagline,
  .event_list.primary_events .eventItem .info .location {
    color: #fff;
  }
}
.event_list.primary_events .eventItem .info .title,
.event_list.primary_events .eventItem .info .title a {
  font-size: 31px;
}
.event_list.primary_events .eventItem .info .presented-by {
  font-size: 16px;
  margin-bottom: 10px;
  max-width: 100%;
}
.event_list.primary_events .eventItem .info .location {
  font-size: 16px;
  display: block;
  width: 100%;
  margin-top: 10px;
}
.event_list.primary_events .eventItem .info .location:before {
  content: "";
  width: 100%;
}
.event_list.primary_events .eventItem .info .venue_logo {
  position: absolute;
  top: 25px;
  right: 100px;
  left: auto;
}
.event_list.primary_events .eventItem .info .venue_logo img {
  width: 55px;
  max-height: none;
}
.event_list.primary_events .eventItem .info .date {
  position: absolute;
  top: 23px;
  left: 0px;
  font-size: 18px;
  max-width: 100%;
  border-radius: 0 30px 30px 0;
  font-size: 25px;
  border-width: 2px;
  border-left: none;
  padding: 12px 60px 8px;
}
@media screen and (max-width: 870px) {
  .event_list.primary_events .eventItem .info .date {
    position: relative;
  }
}
.event_list.primary_events .eventItem .info .tagline {
  font-size: 20px;
  max-width: 100%;
}
.event_list.primary_events .eventItem .info .title {
  font-size: 35px;
  max-width: 100%;
}
@media screen and (max-width: 1110px) {
  .event_list.primary_events .eventItem .info .title {
    font-size: 29px;
  }
}
@media screen and (max-width: 700px) {
  .event_list.primary_events .eventItem .info .title {
    font-size: 25px;
  }
}
.event_list.primary_events .eventItem .info .buttons {
  position: relative;
  bottom: auto;
  right: auto;
  align-self: flex-end;
  margin-top: auto;
  width: 100%;
  height: auto;
  flex-direction: row-reverse;
  justify-content: flex-start;
  padding: 0;
}
.event_list.primary_events .eventItem .info .buttons .tickets {
  margin-left: 25px;
}
@media screen and (max-width: 870px) {
  .event_list.primary_events .eventItem .info .buttons {
    margin-top: 40px;
  }
}
@media screen and (max-width: 870px) {
  .event_list.primary_events .eventItem .info {
    padding: 20px;
    text-align: left;
    align-items: flex-start;
    background: transparent;
    opacity: 1;
    position: relative;
    top: auto;
    left: auto;
  }
  .event_list.primary_events .eventItem .info .date {
    top: auto;
    left: auto;
    transform: translateX(-20px);
    padding: 12px 20px 8px;
    margin-bottom: 20px;
  }
  .event_list.primary_events .eventItem .info .venue_logo {
    display: none;
  }
  .event_list.primary_events .eventItem .info .presented-by {
    font-size: 14px;
  }
  .event_list.primary_events .eventItem .info .location {
    font-size: 14px;
  }
  .event_list.primary_events .eventItem .info .tagline {
    font-size: 16px;
  }
  .event_list.primary_events .eventItem .info .title,
  .event_list.primary_events .eventItem .info .title a {
    line-height: 1;
  }
}
.event_list.primary_events .eventItem:hover, .event_list.primary_events .eventItem:focus, .event_list.primary_events .eventItem.is-focused {
  box-shadow: none;
}
.event_list.primary_events .eventItem:hover .thumb, .event_list.primary_events .eventItem:focus .thumb, .event_list.primary_events .eventItem.is-focused .thumb {
  filter: grayscale(100%);
}
.event_list.primary_events .eventItem:hover .info, .event_list.primary_events .eventItem:focus .info, .event_list.primary_events .eventItem.is-focused .info {
  zoom: 1;
  opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
}
@media screen and (max-width: 700px) {
  .event_list.primary_events .eventItem {
    width: 100vw;
  }
}
@media screen and (max-width: 870px) {
  .event_list.primary_events .eventItem {
    width: 100vw;
    max-width: 100vw;
  }
}
@media screen and (min-width: 871px) {
  .event_list.primary_events .owl-item.active .eventItem .info {
    padding-left: 150px;
  }
}
.event_list.primary_events .owl-item.active .eventItem:before {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  display: block;
  left: 0px;
  right: auto;
}
@media screen and (max-width: 870px) {
  .event_list.primary_events .owl-item.active .eventItem:before {
    display: none;
  }
}
.event_list.primary_events .owl-item.active .eventItem:hover:before, .event_list.primary_events .owl-item.active .eventItem.is-focused:before {
  zoom: 1;
  opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
}
@media screen and (min-width: 871px) {
  .event_list.primary_events .owl-item.active + .active .eventItem .info {
    padding-left: 60px;
    padding-right: 150px;
  }
}
.event_list.primary_events .owl-item.active + .active .eventItem:before {
  right: 0px;
  left: auto;
}
.events.content_item .event_list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}
@media screen and (max-width: 1080px) {
  .events.content_item .event_list {
    max-width: none;
  }
}
@media screen and (min-width: 871px) {
  .events.content_item .event_list .eventItem {
    width: 100%;
  }
}
.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_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: "Open Sans", sans-serif;
  font-size: 16px;
  color: #58585b;
  letter-spacing: 0;
  line-height: 15px;
  margin-bottom: 15px;
}
.event_detail .event_heading .title {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: #1e1e1f;
  letter-spacing: 0;
  line-height: 1.1;
}
.event_detail .event_heading .tagline {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #58585b;
  letter-spacing: 0;
  line-height: 25px;
  margin-top: 15px;
}
@media screen and (max-width: 870px) {
  .event_detail .event_heading .tagline {
    margin: 0;
    font-size: 16px;
    color: #000;
  }
}
@media screen and (max-width: 870px) {
  .event_detail .event_heading {
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 20px 10px;
    text-align: center;
  }
}
.event_detail.has_branding .venue_logo {
  position: absolute;
  top: 17px;
  right: 17px;
  z-index: 10;
}
.event_detail.has_branding .venue_logo img {
  max-width: 55px;
}
.event_detail #branding {
  position: relative;
}
.event_detail #branding .full-slideshow {
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 700px) {
  .event_detail #branding {
    margin-left: -10px;
    width: calc(100% + 20px);
  }
}
.event_detail .faq {
  padding: 0;
  width: 100%;
}

.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;
  border-bottom: 2px solid #eee;
  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%;
  border-bottom: 3px solid #f5e7cc;
  padding: 28px 0;
}
@media screen and (max-width: 1205px) {
  .event_showings .listItem {
    flex-flow: row wrap;
  }
}
.event_showings .listItem:hover, .event_showings .listItem:focus {
  border-color: #ebcf99;
}
.event_showings .listItem .cell {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  color: #58585b;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.event_showings .listItem .cell.showings_date {
  width: 40%;
}
.event_showings .listItem .buttons {
  margin-left: auto;
}
.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: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.11;
  letter-spacing: 0;
  color: #1e1e1f;
}
.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 60px 0;
}
.description_wrapper .event_description {
  position: relative;
  z-index: 1;
}
.description_wrapper .event_description:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  max-height: calc(100% - 73px);
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff",GradientType=0 );
}
.description_wrapper .event_description.is-opened:after {
  display: none;
}
.description_wrapper .event_description.is-opened + .read-more {
  text-decoration: none;
  color: #4c4c4c;
}
.description_wrapper .event_description.is-opened + .read-more:after {
  background: #4c4c4c;
}
.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 .rightBreakout .buttonWrapper {
  margin-bottom: 20px;
}
.right_side_wrapper .rightBreakout .buttonWrapper .date {
  display: none;
}
.right_side_wrapper .rightBreakout .buttonWrapper .tickets {
  margin-bottom: 45px;
}
.right_side_wrapper .rightBreakout .details {
  position: relative;
  background: #4b7066;
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  padding: 30px 100px 30px 60px;
}
.right_side_wrapper .rightBreakout .details:before {
  content: "";
  position: absolute;
  top: -6px;
  left: 100%;
  background: #4b7066;
  height: calc(100% + 12px);
  width: calc((100vw - 1440px) / 2);
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  border-left: none;
}
@media screen and (max-width: 1080px) {
  .right_side_wrapper .rightBreakout .details {
    padding: 36px;
  }
}
@media screen and (max-width: 870px) {
  .right_side_wrapper .rightBreakout .details {
    padding: 30px 20px;
    border: 6px solid rgba(255, 255, 255, 0.2);
  }
}
@media screen and (max-width: 500px) {
  .right_side_wrapper .rightBreakout .details {
    width: calc(100% + 20px);
    margin-left: -10px;
    border-left: none;
    border-right: none;
  }
}
.right_side_wrapper .rightBreakout .details .eventDetailList .item {
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
}
.right_side_wrapper .rightBreakout .details .eventDetailList .item .label {
  margin: 0 0 10px 0;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
}
.right_side_wrapper .rightBreakout .details .eventDetailList .item > svg,
.right_side_wrapper .rightBreakout .details .eventDetailList .item > .add-to-cal {
  display: none;
}
.right_side_wrapper .rightBreakout .details .eventDetailList .item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
@media screen and (max-width: 870px) and (min-width: 501px) {
  .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;
    margin-bottom: 0;
  }
  .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: 3px solid rgba(255, 255, 255, 0.1);
    padding-left: 0;
  }
  .right_side_wrapper .rightBreakout .details .eventDetailList .item:nth-last-child(2):nth-child(even) {
    border-bottom: none;
  }
}

.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;
}

/* ----------------------------------------------------------------------------
=Showtime Page Content
----------------------------------------------------------------------------- */
.content_item {
  max-width: 1000px;
  width: calc(100% - 40px);
  margin: auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 700px) {
  .content_item {
    width: calc(100% - 20px);
  }
}
.content_item.map .slide-wrap {
  padding: 0;
}
.content_item.map .slide-wrap:before, .content_item.map .slide-wrap:after {
  display: none;
}
@media screen and (max-width: 870px) {
  .content_item.events {
    width: calc(100% - 20px);
  }
}
.content_item#branding {
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
  padding: 0;
}
@media screen and (max-width: 1200px) {
  .content_item#branding {
    padding: 0;
  }
}

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

.page_header {
  max-width: 1000px;
  width: calc(100% - 40px);
  margin: 0 auto 40px;
  border-bottom: 2px solid #eeeeee;
  padding-bottom: 40px;
}
.event_listing_page .page_header {
  padding-bottom: 0;
  border-bottom: none;
  max-width: 1195px;
  margin-bottom: 0px;
}
.page_header .tagline {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  margin-top: 10px;
  letter-spacing: 1px;
}
@media screen and (max-width: 700px) {
  .page_header {
    width: calc(100% - 20px);
  }
}

.breadcrumbs {
  margin-bottom: 30px;
  text-align: center;
  padding-top: 0px;
}
.event_listing_page .breadcrumbs {
  text-align: left;
}
@media screen and (max-width: 1110px) {
  .breadcrumbs {
    padding-top: 30px;
  }
}
.breadcrumbs a,
.breadcrumbs span {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #58585b;
  letter-spacing: 0;
  line-height: 15px;
  vertical-align: middle;
}
@media screen and (max-width: 700px) {
  .breadcrumbs a,
  .breadcrumbs span {
    font-size: 16px;
    line-height: 1.1;
  }
}
.breadcrumbs a:hover, .breadcrumbs a:focus {
  text-decoration: underline;
  color: #4c4c4c;
}
.breadcrumbs .breadcrumb_divider {
  height: 21px;
  width: 3px;
  background: #f9f2e5;
  margin: 0 20px;
  display: inline-block;
}
.breadcrumbs span {
  color: #58585b;
  font-weight: 700;
}

.content {
  position: relative;
  margin: 0;
  padding: 0;
  /* ----------------------------------------------------------------------------
     =Image Templates
     ----------------------------------------------------------------------------- */
}
.content img {
  max-width: 100%;
}
.content img[align=left], .content img.left {
  float: left;
  margin: 0 20px 20px 0;
}
@media screen and (max-width: 700px) {
  .content img[align=left], .content img.left {
    float: none;
    margin: 0 auto 20px;
    display: block;
  }
}
.content img[align=right], .content img.right {
  float: right;
  margin: 0 0 20px 20px;
}
@media screen and (max-width: 700px) {
  .content img[align=right], .content img.right {
    float: none;
    margin: 0 auto 20px;
    display: block;
  }
}
.content img[align=center], .content img.center {
  float: none;
  margin: 0 auto 20px;
  display: block;
}
.content .image.right {
  float: right;
  margin: 0 0 20px 20px;
}
@media screen and (max-width: 700px) {
  .content .image.right {
    float: none;
    margin: 0 auto 20px;
    display: block;
  }
}
.content .image.left {
  float: left;
  margin: 0 20px 20px 0;
}
@media screen and (max-width: 700px) {
  .content .image.left {
    float: none;
    margin: 0 auto 20px;
    display: block;
  }
}
.content .image.center {
  float: none;
  margin: 0 auto 20px;
  display: block;
}
.content 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: #a54424;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  text-align: center;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.back-to-top span#backToTop svg > g > g {
  fill: #fff;
}
.back-to-top span.text {
  display: block;
  margin-top: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #000;
  text-transform: uppercase;
}
.back-to-top:hover span.text {
  color: #000;
}
.back-to-top:hover #backToTop {
  background: #000;
}
.back-to-top:hover #backToTop svg > g > g {
  fill: #fff;
}
.back-to-top.is-inverse span.text {
  color: #fff;
}

/* ----------------------------------------------------------------------------
= 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,
  .no_print,
  .breadcrumbs,
  .full-slideshow {
    display: none;
    height: 0 !important;
  }
  a,
  a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after {
    content: " (" attr(href) ")";
  }
  .thumb a:after,
  .spot-button a:after {
    content: "";
  }
  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: 30px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
  .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: "";
  }
  body#events.detail #column_1 .main_column {
    width: 600px;
  }
  body#events.detail #column_2 {
    display: block;
  }
  .column {
    width: 100% !important;
  }
}
