/* ----------------------------------------------------------------------------
= Main import - compiles to /css/style.css
= currently using bourbon latest from codekit
----------------------------------------------------------------------------- */
@import url("//fonts.googleapis.com/css?family=nunito+sans:400,400i,600,600i,800,800i");
html {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box; }

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

/* ----------------------------------------------------------------------------
= 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; }

body:not(.user-is-tabbing) a:focus, body:not(.user-is-tabbing) *[tabindex="0"]:focus {
  outline: 0; }

body.user-is-tabbing a:focus, body.user-is-tabbing *[tabindex="0"]:focus {
  outline: auto;
  outline-offset: -2px; }

/* 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;
  -webkit-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'] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          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; }

/* 
 * -- We already set these things per project.
 *
 */
/*
	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){
	}
*/
:root {
  font-size: 14px; }
  @media screen and (min-width: 700px) {
    :root {
      font-size: calc( 14px + (18 - 14) * ( (100vw - 700px) / (1000 - 700) )); } }
  @media screen and (min-width: 1000px) {
    :root {
      font-size: 18px; } }

/* ----------------------------------------------------------------------------
= 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
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=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: '\0020'; }
  .clearfix:after {
    clear: both; }

.clear {
  clear: both; }

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

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

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

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

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

.invisible {
  visibility: hidden; }

.hide {
  display: none; }

* {
  letter-spacing: 0.00em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.header-base, h1, h2, h3, h4, h5, h6, .spotlight .date,
.concierge .date,
.news_list .date,
.contest_list .date,
.job_list .date,
.seating_charts .date,
.gallery-listing .date,
.offer_list .date, .spotlight h3, .spotlight h3.title, .spotlight .title,
.concierge h3,
.concierge h3.title,
.concierge .title,
.news_list h3,
.news_list h3.title,
.news_list .title,
.contest_list h3,
.contest_list h3.title,
.contest_list .title,
.job_list h3,
.job_list h3.title,
.job_list .title,
.seating_charts h3,
.seating_charts h3.title,
.seating_charts .title,
.gallery-listing h3,
.gallery-listing h3.title,
.gallery-listing .title,
.offer_list h3,
.offer_list h3.title,
.offer_list .title, .elq-form label, .event_list .secondary_event .eventItem .info .title, .intro_events .event_list .eventItem .title, .event_list .outside_info .title, .sitemap .column > ul > li > a {
  margin: 0 0 0.25em;
  font-weight: inherit;
  line-height: 1;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 800;
  color: #28282A; }

h1, .h1 {
  font-size: 3.15733rem;
  text-transform: uppercase; }
  .textarea h1, .cms h1, .textarea .h1, .cms .h1 {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #D7D7D8; }
  #galleries h1, #news:not(.detail) h1, #galleries .h1, #news:not(.detail) .h1 {
    text-align: center;
    border-bottom: 1px solid #D7D7D8;
    padding-bottom: 20px;
    margin-bottom: 30px; }
  @media screen and (max-width: 767px) {
    h1, .h1 {
      font-size: 2.36859rem; } }

h2, .h2 {
  font-size: 2.36859rem;
  margin-bottom: 20px; }
  h2.long_title, .h2.long_title {
    font-size: 1.77689rem; }
  @media screen and (max-width: 767px) {
    h2, .h2 {
      font-size: 1.77689rem; } }

h3, .h3, .spotlight h3, .spotlight h3.title, .spotlight .title,
.concierge h3,
.concierge h3.title,
.concierge .title,
.news_list h3,
.news_list h3.title,
.news_list .title,
.contest_list h3,
.contest_list h3.title,
.contest_list .title,
.job_list h3,
.job_list h3.title,
.job_list .title,
.seating_charts h3,
.seating_charts h3.title,
.seating_charts .title,
.gallery-listing h3,
.gallery-listing h3.title,
.gallery-listing .title,
.offer_list h3,
.offer_list h3.title,
.offer_list .title, .sitemap .column > ul > li > a {
  font-size: 1.77689rem;
  margin-bottom: 20px; }
  @media screen and (max-width: 767px) {
    h3, .h3, .spotlight h3, .spotlight h3.title, .spotlight .title,
    .concierge h3,
    .concierge h3.title,
    .concierge .title,
    .news_list h3,
    .news_list h3.title,
    .news_list .title,
    .contest_list h3,
    .contest_list h3.title,
    .contest_list .title,
    .job_list h3,
    .job_list h3.title,
    .job_list .title,
    .seating_charts h3,
    .seating_charts h3.title,
    .seating_charts .title,
    .gallery-listing h3,
    .gallery-listing h3.title,
    .gallery-listing .title,
    .offer_list h3,
    .offer_list h3.title,
    .offer_list .title, .sitemap .column > ul > li > a {
      font-size: 1.333rem; } }

h4, .h4 {
  font-size: 1.333rem;
  margin-bottom: 20px; }
  @media screen and (max-width: 767px) {
    h4, .h4 {
      font-size: 1rem; } }

h5, .h5, .spotlight .date,
.concierge .date,
.news_list .date,
.contest_list .date,
.job_list .date,
.seating_charts .date,
.gallery-listing .date,
.offer_list .date {
  font-size: 1rem;
  margin-bottom: 20px; }

h6, .h6 {
  font-size: 0.75019rem;
  margin-bottom: 20px; }

.hide-accessible {
  padding: 0;
  border: none;
  background: none;
  margin: 0;
  overflow: hidden;
  width: 0;
  height: 0;
  display: block; }

.small_paragraph, .small p, .link ul.list .description p, .link ul.list .description li, .sitemap .column > ul > li > ul > li > ul > li > a {
  font-size: 1rem; }

.p-base, p, .p, address, .address, .cms ul li, .textarea ul li, .spotlight_text ul li, .faq ul li, .link .description ul li, .event_description ul li, ol > li, table tr td, .sitemap .column > ul > li > ul > li > a {
  line-height: 1.5;
  font-size: 1.222222rem;
  font-weight: 300;
  font-family: "Nunito Sans", sans-serif; }

p, .p {
  margin: 0 0 30px; }
  p:last-child, .p:last-child {
    margin-bottom: 50px; }
  p.lead, .p.lead {
    font-size: 1.72222rem;
    text-align: center;
    font-weight: 300;
    margin-bottom: 50px;
    color: #6D6E72; }
    @media screen and (max-width: 767px) {
      p.lead, .p.lead {
        font-size: 26px; } }
  p strong, .p strong {
    font-weight: 800; }

address, .address {
  margin: 0 0 20px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  color: #28282A;
  letter-spacing: 0.4px;
  line-height: 25px; }

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;
  zoom: 1; }
  .cms ul:before, .cms ul:after, .textarea ul:before, .textarea ul:after, .spotlight_text ul:before, .spotlight_text ul:after, .faq ul:before, .faq ul:after, .link .description ul:before, .link .description ul:after, .event_description ul:before, .event_description ul:after {
    display: block;
    visibility: hidden;
    height: 0;
    content: '\0020'; }
  .cms ul:after, .textarea ul:after, .spotlight_text ul:after, .faq ul:after, .link .description ul:after, .event_description ul:after {
    clear: both; }
  .cms ul li, .textarea ul li, .spotlight_text ul li, .faq ul li, .link .description ul li, .event_description ul li {
    padding: 0 0 20px 40px;
    position: relative; }
    .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: 16px;
      left: 0;
      width: 25px;
      height: 3px;
      margin-top: -2px;
      background: #CC2E53;
      font-weight: 600; }
    .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-left: 40px;
  counter-increment: li-counter;
  padding-bottom: 20px; }
  ol > li:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0px;
    width: 25px;
    height: 25px;
    text-align: center;
    font-size: 15px;
    line-height: 25px;
    color: #fff;
    background: transparent url("../images/svg/ordered-list.svg") center center no-repeat;
    content: counter(li-counter);
    font-weight: 600; }

a {
  border: none;
  color: #9B233F;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear; }
  a:hover, a:focus {
    color: #CC2E53; }
  .textarea p a, .textarea li a,
  .cms p a, .cms li a,
  .spotlight_content a, .m-eventDetailList__item a,
  .event_description a {
    position: relative; }
    .textarea p a:after, .textarea li a:after,
    .cms p a:after, .cms li a:after,
    .spotlight_content a:after, .m-eventDetailList__item a:after,
    .event_description a:after {
      content: " ";
      width: 100%;
      height: 1px;
      background: #9B233F;
      position: absolute;
      bottom: 2px;
      right: 0px;
      -webkit-transition: all 100ms linear;
      transition: all 100ms linear; }
    .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: #CC2E53; }
      .textarea p a:hover:after, .textarea li a:hover:after,
      .cms p a:hover:after, .cms li a:hover:after,
      .spotlight_content a:hover:after, .m-eventDetailList__item a:hover:after,
      .event_description a:hover:after {
        width: 0; }
    .textarea p a:active, .textarea li a:active,
    .cms p a:active, .cms li a:active,
    .spotlight_content a:active, .m-eventDetailList__item a:active,
    .event_description a:active {
      color: #EB476E; }

hr {
  display: block;
  height: 1px;
  background-color: #D7D7D8;
  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 {
  border-top: 1px solid #D7D7D8;
  border-bottom: 1px solid #D7D7D8;
  padding: 31px 0 31px 105px;
  margin: 0 0 50px;
  position: relative; }
  blockquote p {
    font-size: 1.72222rem;
    font-weight: 300;
    color: #6D6E72; }
    blockquote p:last-child {
      margin-bottom: 0; }
      blockquote p:last-child:not(:first-child) {
        position: relative;
        font-size: 15px; }
        blockquote p:last-child:not(:first-child) strong {
          padding-left: 35px;
          position: relative;
          color: #28282A; }
          blockquote p:last-child:not(:first-child) strong:before {
            content: '';
            position: absolute;
            top: 9px;
            left: 0;
            width: 25px;
            height: 3px;
            background: #CC2E53; }
          blockquote p:last-child:not(:first-child) strong em {
            font-weight: 400;
            position: relative;
            font-style: normal; }
            blockquote p:last-child:not(:first-child) strong em:before {
              content: '|';
              padding: 0 7px; }
  blockquote:before {
    content: '';
    position: absolute;
    top: 37px;
    left: 20px;
    width: 51px;
    height: 42px;
    background: transparent url("../images/svg/quote.svg") center center no-repeat; }
  @media screen and (max-width: 767px) {
    blockquote {
      padding: 31px 0 31px 65px; }
      blockquote:before {
        background-size: 100%;
        width: 40px;
        left: 0; } }

.text-hidden, .hidden {
  position: absolute;
  opacity: 0;
  text-indent: -999em; }

/* ----------------------------------------------------------------------------
= Layout, Body and Containers
----------------------------------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html {
  height: 100%; }

body {
  height: 100%;
  margin: 0;
  padding: 0;
  color: #28282A;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  text-align: left; }

#container {
  position: relative;
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0; }

#layout {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 130px 0 0px; }
  @media screen and (max-width: 1024px) {
    #layout {
      padding-top: 70px; } }
  @media screen and (max-width: 767px) {
    #layout {
      padding-top: 65px; } }
  #layout.has_intro {
    padding-top: 0; }

#content {
  position: relative;
  width: 100%;
  min-height: 410px;
  margin: 0 auto;
  padding: 0;
  clear: both;
  outline: none; }

.accessible {
  display: none; }

.column {
  position: relative;
  float: left;
  margin: 0;
  padding: 0; }

.one_sidebar_right {
  width: 100%; }
  .one_sidebar_right.event_detail.has_branding #column_1 {
    margin: 30px auto 0 auto; }
    @media screen and (max-width: 870px) {
      .one_sidebar_right.event_detail.has_branding #column_1 {
        margin: 0; } }
  .one_sidebar_right.event_detail #column_1 {
    max-width: 1180px;
    margin: 50px auto 0 auto;
    float: none; }
    @media screen and (max-width: 1200px) {
      .one_sidebar_right.event_detail #column_1 {
        width: calc(100% - 40px); } }
    @media screen and (max-width: 870px) {
      .one_sidebar_right.event_detail #column_1 {
        margin: 0;
        width: 100%; } }
  @media screen and (min-width: 871px) {
    .one_sidebar_right.event_detail .leftColumn {
      padding-right: 84px; } }
  .one_sidebar_right #column_1 {
    width: 100%;
    position: relative;
    margin: 30px; }
  .one_sidebar_right #column_2 {
    position: absolute;
    right: 10px;
    top: 20px;
    background: #222;
    width: 300px; }
  .one_sidebar_right .leftColumn {
    width: calc(100% - 275px);
    background: #fff;
    float: left; }
    @media screen and (max-width: 870px) {
      .one_sidebar_right .leftColumn {
        width: 100%; } }
  .one_sidebar_right .rightBreakout {
    position: absolute;
    -webkit-box-shadow: 10px 18px 20px -18px rgba(0, 0, 0, 0.4);
            box-shadow: 10px 18px 20px -18px rgba(0, 0, 0, 0.4);
    right: 0px;
    top: 0px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #28282a), color-stop(90%, #3C3C3F));
    background: linear-gradient(to bottom, #28282a 10%, #3c3c3f 90%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#28282A', endColorstr='#3C3C3F',GradientType=0 );
    width: 275px;
    padding: 15px 10px 20px 10px; }
    @media screen and (max-width: 870px) {
      .one_sidebar_right .rightBreakout {
        -webkit-box-shadow: none;
                box-shadow: none;
        position: relative;
        top: auto;
        right: auto;
        width: 100%; } }

.full {
  width: 100%; }
  .full.has_branding .full_column {
    padding-top: 0; }
  .full .full_column {
    width: 100%;
    background: #fff;
    padding: 70px 0;
    margin: auto; }
    .full .full_column:not(#venue_widgets_framework) {
      max-width: 1180px; }
    @media screen and (max-width: 767px) {
      .full .full_column {
        padding: 40px 0; } }
    .full .full_column .container {
      zoom: 1;
      width: 100%;
      background-color: #fff; }
      .full .full_column .container:before, .full .full_column .container:after {
        display: block;
        visibility: hidden;
        height: 0;
        content: '\0020'; }
      .full .full_column .container:after {
        clear: both; }
    .full .full_column.has_slideshow {
      padding-top: 0; }
      @media screen and (max-width: 767px) {
        .full .full_column.has_slideshow {
          padding-top: 0px; } }
    .full .full_column .l-fullwidthHeader__overview {
      max-width: 855px;
      margin: 0 auto 30px auto;
      padding: 0; }
      @media screen and (max-width: 1080px) {
        .full .full_column .l-fullwidthHeader__overview {
          padding: 0 20px; } }
  .full .event_listing_page .full_column {
    overflow: hidden; }

.l-frame {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto; }

.sidebar-social-links {
  position: fixed;
  top: 50vh;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 50px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.25); }
  @media screen and (max-width: 1200px) {
    .sidebar-social-links {
      display: none; } }
  .sidebar-social-links ul {
    margin: 0;
    padding: 0;
    border: 1px solid #D7D7D8;
    border-left: 0; }
    .sidebar-social-links ul a, .sidebar-social-links ul a:visited {
      display: block;
      font-size: 22px;
      width: 100%;
      height: 50px;
      line-height: 50px;
      text-align: center;
      color: #28282A;
      -webkit-transition: all 100ms linear;
      transition: all 100ms linear; }
      .sidebar-social-links ul a:hover, .sidebar-social-links ul a:visited:hover {
        color: #CC2E53; }
  .sidebar-social-links.inverse ul a, .sidebar-social-links.inverse ul a:visited {
    color: #fff; }
    .sidebar-social-links.inverse ul a:hover, .sidebar-social-links.inverse ul a:visited:hover {
      color: #CC2E53; }

.hide-accessible {
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 0;
  height: 0;
  border: none; }

/* ----------------------------------------------------------------------------
= Header basics
----------------------------------------------------------------------------- */
header {
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: fixed;
  top: 0;
  background: #fff;
  z-index: 999; }
  @media screen and (max-width: 1024px) {
    header {
      zoom: 1;
      z-index: 900;
      height: 70px; }
      header:before, header:after {
        display: block;
        visibility: hidden;
        height: 0;
        content: '\0020'; }
      header:after {
        clear: both; } }
  @media screen and (max-width: 767px) {
    header {
      height: 65px; } }
  @media screen and (min-width: 1025px) {
    header.is-fixed:not(.has_intro) .logo {
      top: 39px; } }
  header .logo {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-box-shadow: 0px 9px 22px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0px 9px 22px 0 rgba(0, 0, 0, 0.3);
    position: absolute;
    z-index: 999;
    color: #FFF; }
    @media screen and (max-width: 1024px) {
      header .logo {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -40%);
                transform: translate(-50%, -40%);
        -webkit-transform-origin: top center;
                transform-origin: top center;
        width: 81px;
        height: 85px; }
        header .logo svg {
          width: 81px;
          height: 85px; } }
    @media screen and (max-width: 767px) {
      header .logo {
        left: 10px;
        top: 5px;
        -webkit-transform: none;
                transform: none;
        height: 64px;
        width: 61px; }
        header .logo svg {
          height: 64px;
          width: 61px; } }
    @media screen and (min-width: 1025px) {
      header .logo {
        width: 125px;
        height: 131px;
        top: 65px;
        left: 50%;
        -webkit-transform: translate(-50%, -40%);
                transform: translate(-50%, -40%);
        -webkit-transform-origin: top center;
                transform-origin: top center; }
        header .logo svg {
          -webkit-transition: all 0.2s linear;
          transition: all 0.2s linear;
          height: 131px;
          width: 125px; } }
    header .logo a {
      opacity: 1;
      -webkit-transition: 250ms;
      transition: 250ms; }
      header .logo a:hover {
        opacity: 0.9; }
    header .logo polygon {
      -webkit-transition: fill 0.2s linear;
      transition: fill 0.2s linear; }
  header .header-shadow {
    z-index: 99;
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 27px;
    visibility: visible;
    -webkit-box-shadow: 0px 17px 20px -11px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 17px 20px -11px rgba(0, 0, 0, 0.3); }
  header .header-nav-logo-wrapper {
    position: relative; }
  header .nav_wrapper {
    height: 70px;
    position: relative;
    background-color: #fff; }
    @media screen and (min-width: 1025px) {
      header .nav_wrapper {
        height: 130px; } }
    @media screen and (max-width: 767px) {
      header .nav_wrapper {
        height: 65px; } }
  header .nav-toolbar {
    width: 100%;
    height: 40px;
    line-height: 40px;
    background: #f1f1f2;
    font-size: 14px; }
    header .nav-toolbar > div {
      padding: 0 20px;
      color: #6D6E72; }
    header .nav-toolbar a, header .nav-toolbar a:visited {
      color: #6D6E72;
      letter-spacing: 0.04rem; }
      header .nav-toolbar a.newsletter-signup, header .nav-toolbar a:visited.newsletter-signup {
        font-weight: 800; }
        header .nav-toolbar a.newsletter-signup:hover, header .nav-toolbar a:visited.newsletter-signup:hover {
          color: #CC2E53; }
      header .nav-toolbar a:hover strong, header .nav-toolbar a:visited:hover strong {
        color: #CC2E53; }
  header .nav-toolbar-right {
    float: right; }
    header .nav-toolbar-right button.search-trigger {
      vertical-align: top;
      display: inline-block;
      height: 40px;
      width: 45px;
      text-align: center;
      font-size: 20px;
      cursor: pointer;
      position: relative;
      color: #6D6E72;
      padding: 0;
      border: none;
      background: none; }
      header .nav-toolbar-right button.search-trigger:hover {
        color: #CC2E53; }
      header .nav-toolbar-right button.search-trigger:focus {
        outline: 1px dotted; }
      header .nav-toolbar-right button.search-trigger.is-active .fa-search {
        display: none; }
      header .nav-toolbar-right button.search-trigger.is-active:before, header .nav-toolbar-right button.search-trigger.is-active:after {
        content: '';
        position: absolute;
        width: 3px;
        height: 20px;
        background: #6D6E72;
        -webkit-transform: rotate(-45deg);
        /* IE 9 */
        transform: rotate(-45deg);
        top: 10px;
        left: 20px;
        -webkit-transition: all 100ms linear;
        transition: all 100ms linear; }
      header .nav-toolbar-right button.search-trigger.is-active:before {
        -webkit-transform: rotate(45deg);
        /* IE 9 */
        transform: rotate(45deg); }
      header .nav-toolbar-right button.search-trigger.is-active:hover:before, header .nav-toolbar-right button.search-trigger.is-active:hover:after {
        background: #CC2E53; }
  header .header-search {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 98;
    background: #F1F1F2;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear;
    visibility: hidden; }
    @media screen and (max-width: 1024px) {
      header .header-search {
        display: none; } }
    header .header-search.is-opened {
      visibility: visible;
      padding: 40px;
      max-height: 140px; }
    header .header-search form {
      margin: 0 auto;
      max-width: 1000px;
      position: relative; }
      header .header-search form input[type="text"] {
        width: 100%;
        height: 60px;
        line-height: 60px;
        background: #fff;
        border: 0;
        outline: none;
        padding: 0 70px 0 20px;
        font-size: 22px;
        font-weight: 800; }
      header .header-search form button {
        background: none;
        border: 0;
        position: absolute;
        top: 0;
        right: 0;
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 22px; }
        header .header-search form button:hover {
          color: #CC2E53; }
  header a.panthers-logo {
    position: relative;
    height: 40px;
    padding-right: 70px;
    display: inline-block;
    vertical-align: top;
    font-weight: 600; }
    header a.panthers-logo svg {
      position: absolute;
      top: 4px;
      width: 36px;
      height: 41px;
      right: 20px; }
    header a.panthers-logo .white_logo {
      display: none; }
    header a.panthers-logo:before {
      content: '';
      background: transparent url("../images/panthers-shadow.png") right top no-repeat;
      width: 58px;
      height: 61px;
      position: absolute;
      top: -1px;
      right: 9px;
      visibility: hidden;
      -webkit-transition: all 100ms linear;
      transition: all 100ms linear; }
    header a.panthers-logo:after {
      content: '';
      width: 1px;
      height: 20px;
      background: #6D6E72;
      position: absolute;
      top: 10px;
      right: 0; }
    header a.panthers-logo:hover, header a.panthers-logo:focus {
      color: #28282A; }
      header a.panthers-logo:hover:before, header a.panthers-logo:focus:before {
        visibility: visible; }
      header a.panthers-logo:hover svg:before, header a.panthers-logo:focus svg:before {
        content: '';
        width: 20px;
        height: 20px;
        position: absolute;
        top: 10px;
        left: 10px;
        border-radius: 50%;
        -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
                box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3); }
      header a.panthers-logo:hover .white_logo:before, header a.panthers-logo:focus .white_logo:before {
        display: none; }
  @media screen and (min-width: 1025px) {
    header.is-fixed:not(.has_intro) {
      height: 75px; }
      header.is-fixed:not(.has_intro) .nav_wrapper {
        height: 75px; }
      header.is-fixed:not(.has_intro) .nav-toolbar {
        display: none; }
      header.is-fixed:not(.has_intro) .logo, header.is-fixed:not(.has_intro) .logo svg {
        width: 86px;
        height: 90px; } }
  .has_intro header.is-locked {
    background: transparent; }
    .has_intro header.is-locked .nav-toolbar {
      background: transparent;
      color: #D7D7D8; }
      .has_intro header.is-locked .nav-toolbar a {
        color: #D7D7D8; }
        .has_intro header.is-locked .nav-toolbar a:hover {
          color: #CC2E53; }
          .has_intro header.is-locked .nav-toolbar a:hover strong {
            color: #CC2E53; }
    .has_intro header.is-locked .nav_wrapper {
      background: transparent; }
    .has_intro header.is-locked .header-shadow {
      display: none; }
    .has_intro header.is-locked .logo polygon {
      fill: transparent !important; }
    .has_intro header.is-locked .main_nav > ul > li > a {
      color: #fff; }
      .has_intro header.is-locked .main_nav > ul > li > a:hover {
        color: #fff; }
    .has_intro header.is-locked .main_nav .sub {
      display: none !important; }
    .has_intro header.is-locked .color_logo {
      display: none; }
    .has_intro header.is-locked .white_logo {
      display: block; }
    .has_intro header.is-locked .search-trigger {
      color: white; }
    .has_intro header.is-locked a.panthers-logo svg {
      zoom: 1;
      opacity: 0.85;
      -moz-opacity: 0.85;
      filter: alpha(opacity=85); }
    .has_intro header.is-locked a.panthers-logo:hover {
      color: white; }
      .has_intro header.is-locked a.panthers-logo:hover svg {
        zoom: 1;
        opacity: 1;
        -moz-opacity: 1;
        filter: alpha(opacity=100); }
      .has_intro header.is-locked a.panthers-logo:hover:before {
        visibility: hidden; }
    @media screen and (max-width: 1024px) {
      .has_intro header.is-locked a.panthers-logo svg {
        display: block; }
      .has_intro header.is-locked a.panthers-logo:hover, .has_intro header.is-locked a.panthers-logo:focus {
        color: #28282A; }
        .has_intro header.is-locked a.panthers-logo:hover:before, .has_intro header.is-locked a.panthers-logo:focus:before {
          visibility: visible; } }

/* ----------------------------------------------------------------------------
= Header toolbar (if used)
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
= Navigations
----------------------------------------------------------------------------- */
.main_nav {
  zoom: 1;
  position: relative;
  float: left;
  z-index: 500;
  width: 100%;
  height: auto;
  margin: 0px 0 0;
  padding: 0; }
  .main_nav:before, .main_nav:after {
    display: block;
    visibility: hidden;
    height: 0;
    content: '\0020'; }
  .main_nav:after {
    clear: both; }
  @media screen and (max-width: 1024px) {
    .main_nav {
      display: none; } }
  .main_nav ul {
    zoom: 1;
    position: relative;
    display: block;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0;
    text-align: left; }
    .main_nav ul:before, .main_nav ul:after {
      display: block;
      visibility: hidden;
      height: 0;
      content: '\0020'; }
    .main_nav ul:after {
      clear: both; }
    .main_nav ul li {
      position: relative;
      display: block;
      float: left;
      height: auto;
      margin: 0;
      padding: 0; }
      .main_nav ul li.panthers-logo-container, .main_nav ul li.page_1 {
        display: none !important; }
      .main_nav ul li.is-focused .sub {
        display: block !important; }
  .main_nav a, .main_nav a:link, .main_nav a:visited {
    display: block;
    margin: 0;
    padding: 0 19px 25px;
    color: #28282A;
    font-size: 18px;
    font-weight: 800;
    text-align: left;
    text-decoration: none; }
    .main_nav a span, .main_nav a:link span, .main_nav a:visited span {
      display: block;
      clear: both;
      margin: 0 0 10px;
      color: #CC2E53;
      font-size: 24px;
      font-weight: 400;
      letter-spacing: 1.5px;
      text-transform: uppercase; }
    .main_nav a:hover, .main_nav a.active, .main_nav a:link:hover, .main_nav a:link.active, .main_nav a:visited:hover, .main_nav a:visited.active {
      color: black; }
      .main_nav a:hover span, .main_nav a.active span, .main_nav a:link:hover span, .main_nav a:link.active span, .main_nav a:visited:hover span, .main_nav a:visited.active span {
        color: black; }
  .main_nav > ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .main_nav > ul:hover > li > a, .main_nav > ul:hover > li > a:link, .main_nav > ul:hover > li > a:visited {
      color: #AFAFB2; }
    .main_nav > ul:hover > li.hover > a, .main_nav > ul:hover > li.hover > a:link, .main_nav > ul:hover > li.hover > a:visited {
      color: #28282A; }
    .main_nav > ul > li {
      width: 24%; }
      .main_nav > ul > li > a, .main_nav > ul > li > a:link, .main_nav > ul > li > a:visited {
        height: 90px;
        line-height: 90px;
        padding: 0 0 0 37px;
        position: relative; }
        .is-fixed:not(.has_intro) .main_nav > ul > li > a, .is-fixed:not(.has_intro) .main_nav > ul > li > a:link, .is-fixed:not(.has_intro) .main_nav > ul > li > a:visited {
          height: 75px;
          line-height: 75px; }
      .main_nav > ul > li:first-child {
        width: 21%; }
      .main_nav > ul > li:nth-child(2) {
        padding-right: 100px;
        width: 26%; }
      .main_nav > ul > li:nth-child(3) {
        padding-left: 0;
        width: calc(25% - 115px);
        margin-left: 115px; }
      .main_nav > ul > li.hover > a:before,
      .main_nav > ul > li > a.active:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 25px;
        height: 3px;
        margin-top: -2px;
        background: #CC2E53; }
      .main_nav > ul > li > .close-button {
        display: none; }

.main_nav ul .sub,
.main_nav ul .nav_sub {
  position: absolute;
  display: none;
  z-index: 9000;
  top: 100%;
  left: 0;
  width: auto;
  margin: 0;
  background: #F1F1F2; }

.main_nav ul ul {
  float: left;
  width: 240px;
  height: auto;
  margin: 0;
  padding: 10px 0;
  border: none;
  border-top: none;
  background: none;
  overflow: hidden; }
  .main_nav ul ul li {
    float: none;
    height: auto;
    margin: 0;
    padding: 0;
    list-style-type: none;
    list-style-image: none;
    border-right: none;
    border-left: none;
    cursor: pointer;
    text-align: left;
    clear: both; }
    .main_nav ul ul li:first-child {
      display: block;
      border-top: none; }
    .main_nav ul ul li a, .main_nav ul ul li a:link, .main_nav ul ul li a:visited {
      display: block;
      height: auto;
      margin: 0;
      padding: 8px 7px 8px 37px;
      color: #28282A;
      background: none;
      cursor: pointer;
      text-align: left;
      text-decoration: none;
      font-size: 15px;
      font-weight: 600; }
      .main_nav ul ul li a:hover, .main_nav ul ul li a:focus, .main_nav ul ul li a.active, .main_nav ul ul li a:link:hover, .main_nav ul ul li a:link:focus, .main_nav ul ul li a:link.active, .main_nav ul ul li a:visited:hover, .main_nav ul ul li a:visited:focus, .main_nav ul ul li a:visited.active {
        color: #CC2E53;
        cursor: pointer;
        text-decoration: none; }
      .main_nav ul ul li a.active + ul.level_3, .main_nav ul ul li a:link.active + ul.level_3, .main_nav ul ul li a:visited.active + ul.level_3 {
        display: block; }
    .main_nav ul ul li .sub_trigger {
      position: absolute;
      left: 0;
      top: 0;
      font-size: 9px;
      line-height: 33px;
      width: 27px;
      color: #28282A;
      text-align: right;
      cursor: pointer;
      padding: 0;
      border: none;
      background: transparent; }
    .main_nav ul ul li.has-third-level:hover .sub_trigger {
      color: #CC2E53; }
    .main_nav ul ul li.is-opened > a, .main_nav ul ul li.is-opened > a:visited {
      color: #CC2E53; }
    .main_nav ul ul li.is-opened .sub_trigger {
      color: #CC2E53;
      -webkit-transform: scaleY(-1);
              transform: scaleY(-1); }
  .main_nav ul ul.level_3 {
    padding: 0 20px 5px;
    display: none; }
    .main_nav ul ul.level_3 a, .main_nav ul ul.level_3 a:link, .main_nav ul ul.level_3 a:visited {
      font-size: 12px;
      padding-top: 4px;
      padding-bottom: 4px; }

.main_nav .sub > ul:after {
  z-index: 99;
  content: '';
  width: calc(100% + 40px);
  position: absolute;
  top: -27px;
  left: -20px;
  height: 27px;
  visibility: visible;
  -webkit-box-shadow: 0px 17px 20px -11px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 17px 20px -11px rgba(0, 0, 0, 0.3); }

a.gh_page_redirect[rel="external"]:after {
  content: "";
  display: inline-block;
  margin-left: 0.8rem;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  text-decoration: inherit;
  width: 15px;
  height: 13px;
  background: transparent url("../images/svg/external-link.svg") center center no-repeat;
  background-size: 13px auto; }

/* ----------------------------------------------------------------------------
= Mobile Navigation
----------------------------------------------------------------------------- */
#nav-toggle {
  position: absolute;
  display: none;
  z-index: 1500;
  top: 22px;
  right: 30px;
  width: 33px;
  height: 25px;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none; }
  #nav-toggle:before {
    content: "Menu";
    position: absolute;
    right: 100%;
    margin-right: 15px;
    font-size: 14px;
    top: 0;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.2px;
    color: #28282A;
    -webkit-transition: 250ms;
    transition: 250ms; }
  @media screen and (max-width: 1024px) {
    #nav-toggle {
      display: block; } }
  #nav-toggle span {
    position: absolute;
    display: block;
    left: 0;
    width: 33px;
    height: 4px;
    margin-top: 0;
    background: #28282A;
    content: '';
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg); }
    #nav-toggle span.top {
      top: 0; }
    #nav-toggle span.mid, #nav-toggle span.mid2 {
      top: 8px; }
    #nav-toggle span.bottom {
      top: 16px; }
  #nav-toggle:hover span {
    background: #CC2E53; }
  #nav-toggle:hover:before {
    color: #CC2E53; }
  #nav-toggle.active span.mid {
    -webkit-transform: rotate(45deg);
    /* IE 9 */
    transform: rotate(45deg); }
  #nav-toggle.active span.mid2 {
    -webkit-transform: rotate(-45deg);
    /* IE 9 */
    transform: rotate(-45deg); }
  #nav-toggle.active span.top, #nav-toggle.active span.bottom {
    opacity: 0; }
  #nav-toggle.active:before {
    content: "Close"; }
  .header.has_intro.is-locked #nav-toggle:not(.active):before {
    color: white; }
  .header.has_intro.is-locked #nav-toggle:not(.active) span {
    background: #FFF; }

.nav_wrapper.is-opened {
  position: absolute;
  position: fixed;
  overflow: scroll;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent; }

@media screen and (max-width: 1024px) {
  .nav_wrapper.is-opened nav {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); }
    .nav_wrapper.is-opened nav:before {
      opacity: 1;
      pointer-events: all; }
  .nav_wrapper nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    width: 520px;
    max-width: 100%;
    height: 100vh !important;
    background: #F1F1F2;
    opacity: 0;
    -webkit-transition: 500ms;
    transition: 500ms;
    -webkit-transform: translateX(100%);
            transform: translateX(100%); }
    .nav_wrapper nav.has-open > ul > li > a {
      color: #6D6E71; }
    .nav_wrapper nav:before {
      content: "";
      position: absolute;
      top: 0;
      right: 100%;
      z-index: -20;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.65);
      opacity: 0;
      -webkit-transition: 250ms;
      transition: 250ms;
      cursor: pointer;
      pointer-events: none; }
    .nav_wrapper nav > ul {
      overflow: auto;
      height: 100%;
      height: calc(100% - 130px);
      margin-top: 130px; }
      .nav_wrapper nav > ul > li {
        position: relative;
        border-bottom: 1px solid #D7D7D8;
        cursor: pointer;
        padding: 10px 0; }
        .nav_wrapper nav > ul > li.is-closed:before {
          pointer-events: none; }
        .nav_wrapper nav > ul > li.is-opened:before {
          pointer-events: all; }
        .nav_wrapper nav > ul > li:before {
          content: "";
          display: block;
          position: absolute;
          top: 0;
          right: 0;
          z-index: 999;
          width: 45px;
          height: 64px;
          cursor: pointer; }
        .nav_wrapper nav > ul > li > a {
          display: block;
          position: relative;
          padding: 20px;
          font-size: 18px;
          font-weight: 700;
          line-height: 24px;
          color: #28282A; }
          .nav_wrapper nav > ul > li > a:before, .nav_wrapper nav > ul > li > a:after {
            content: "";
            content: "";
            position: absolute;
            top: 50%;
            right: 20px;
            width: 3px;
            height: 14px;
            background-color: #28282A;
            -webkit-transition: 250ms;
            transition: 250ms;
            -webkit-transform: translateY(-50%);
                    transform: translateY(-50%); }
          .nav_wrapper nav > ul > li > a:before {
            -webkit-transform: translate(calc(-100%), -50%) rotate(-42deg);
                    transform: translate(calc(-100%), -50%) rotate(-42deg); }
          .nav_wrapper nav > ul > li > a:after {
            -webkit-transform: translate(calc(100% + 2px), -50%) rotate(42deg);
                    transform: translate(calc(100% + 2px), -50%) rotate(42deg); }
          .nav_wrapper nav > ul > li > a span {
            position: relative; }
            .nav_wrapper nav > ul > li > a span:after {
              content: "";
              position: absolute;
              bottom: -7px;
              left: 0;
              width: 100%;
              height: 3px;
              background: #C1A875;
              opacity: 0;
              -webkit-transition: 250ms;
              transition: 250ms; }
          .nav_wrapper nav > ul > li > a.active span:after {
            opacity: 1; }
        .nav_wrapper nav > ul > li.is-opened > a {
          color: #CC2E53; }
          .nav_wrapper nav > ul > li.is-opened > a:before {
            -webkit-transform: translate(calc(-100%), -50%) rotate(42deg);
                    transform: translate(calc(-100%), -50%) rotate(42deg); }
          .nav_wrapper nav > ul > li.is-opened > a:after {
            -webkit-transform: translate(calc(100% + 2px), -50%) rotate(-42deg);
                    transform: translate(calc(100% + 2px), -50%) rotate(-42deg); }
          .nav_wrapper nav > ul > li.is-opened > a:before, .nav_wrapper nav > ul > li.is-opened > a:after {
            background: #CC2E53; }
          .nav_wrapper nav > ul > li.is-opened > a.active {
            color: #CC2E53; }
          .nav_wrapper nav > ul > li.is-opened > a span:after {
            opacity: 1; }
        .nav_wrapper nav > ul > li.is-opened .sub {
          display: block; }
        .nav_wrapper nav > ul > li.panthers-logo-container {
          text-align: center;
          border-bottom: 0;
          padding-top: 40px; }
          .nav_wrapper nav > ul > li.panthers-logo-container > a:after {
            display: none !important; }
          .nav_wrapper nav > ul > li.panthers-logo-container > a:before {
            visibility: hidden;
            content: '';
            background: transparent url("../images/panthers-shadow.png") right top no-repeat;
            width: 58px;
            height: 61px;
            position: absolute;
            top: 5px;
            right: 9px;
            -webkit-transform: none;
                    transform: none;
            -webkit-transition: all 100ms linear;
            transition: all 100ms linear; }
          .nav_wrapper nav > ul > li.panthers-logo-container > a {
            font-weight: 600;
            color: #6D6E72;
            font-size: 14px;
            display: inline;
            padding-right: 60px; }
            .nav_wrapper nav > ul > li.panthers-logo-container > a svg {
              top: 10px; }
            .nav_wrapper nav > ul > li.panthers-logo-container > a:hover, .nav_wrapper nav > ul > li.panthers-logo-container > a:focus {
              color: #28282A; }
              .nav_wrapper nav > ul > li.panthers-logo-container > a:hover:before, .nav_wrapper nav > ul > li.panthers-logo-container > a:focus:before {
                visibility: visible; }
              .nav_wrapper nav > ul > li.panthers-logo-container > a:hover strong, .nav_wrapper nav > ul > li.panthers-logo-container > a:focus strong {
                color: #CC2E53; }
        .nav_wrapper nav > ul > li > .close-button {
          position: absolute;
          width: 50px;
          height: 75px;
          top: 0;
          right: 0;
          z-index: 999;
          padding: 0;
          border: none;
          background: transparent; }
      .nav_wrapper nav > ul .sub {
        display: none;
        margin-bottom: 20px;
        padding-left: 40px; }
        .nav_wrapper nav > ul .sub li a {
          font-size: 15px;
          font-weight: 600;
          line-height: 30px;
          color: #28282A;
          -webkit-transition: 250ms;
          transition: 250ms; }
          .nav_wrapper nav > ul .sub li a:hover, .nav_wrapper nav > ul .sub li a:focus, .nav_wrapper nav > ul .sub li a.active {
            color: #CC2E53; }
        .nav_wrapper nav > ul .sub li.has-third-level {
          position: relative; }
          .nav_wrapper nav > ul .sub li.has-third-level.is-opened > a, .nav_wrapper nav > ul .sub li.has-third-level.is-opened > a:visited {
            color: #CC2E53; }
          .nav_wrapper nav > ul .sub li.has-third-level.is-opened .sub_trigger {
            color: #CC2E53;
            -webkit-transform: scaleY(-1);
                    transform: scaleY(-1); }
        .nav_wrapper nav > ul .sub .level_3 {
          padding-top: 2px;
          padding-left: 20px;
          padding-bottom: 5px;
          display: none; }
          .nav_wrapper nav > ul .sub .level_3 li a {
            font-size: 12px;
            line-height: 24px; }
  .nav_wrapper .sub_trigger {
    position: absolute;
    left: -20px;
    top: 0;
    font-size: 11px;
    line-height: 27px;
    width: 20px;
    color: #28282A;
    padding: 0;
    border: none;
    background: transparent; }
  .header-search-mobile {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999; }
    .header-search-mobile input[type="text"] {
      width: 100%;
      height: 40px;
      line-height: 40px;
      padding: 0 20px;
      border: 0;
      font-weight: 800;
      outline: none; }
    .header-search-mobile button {
      background: none;
      border: 0;
      position: absolute;
      top: 0;
      right: 0;
      width: 40px;
      height: 40px;
      line-height: 40px;
      font-size: 22px; }
      .header-search-mobile button:hover {
        color: #CC2E53; } }

/* ----------------------------------------------------------------------------
= Footer basics
----------------------------------------------------------------------------- */
footer {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  background: #fff; }
  footer .footer_holder {
    position: relative; }
    footer .footer_holder:before {
      z-index: 99;
      content: '';
      width: 100%;
      position: absolute;
      top: -27px;
      height: 27px;
      visibility: visible;
      -webkit-box-shadow: 0px 17px 20px -11px rgba(0, 0, 0, 0.3);
              box-shadow: 0px 17px 20px -11px rgba(0, 0, 0, 0.3); }
  footer .footer_nav {
    padding: 35px 0 54px 0;
    background-color: #fff;
    width: 985px;
    max-width: 100%;
    margin: 0 auto; }
    @media screen and (max-width: 767px) {
      footer .footer_nav {
        padding: 25px 0 25px 0; } }
    @media screen and (max-width: 1080px) {
      footer .footer_nav .nav_sub {
        display: none; } }
    footer .footer_nav > ul {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      width: calc(100% - 40px);
      max-width: 945px;
      margin: auto; }
      @media screen and (max-width: 1080px) {
        footer .footer_nav > ul {
          -webkit-box-pack: center;
             -moz-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center; } }
      footer .footer_nav > ul > li {
        -webkit-box-flex: 25%;
           -moz-box-flex: 25%;
            -ms-flex: 25%;
                flex: 25%;
        padding-left: 40px; }
        footer .footer_nav > ul > li:first-child {
          padding-left: 0; }
        footer .footer_nav > ul > li:nth-child(2) {
          padding-left: 25px; }
        footer .footer_nav > ul > li > a {
          font-size: 18px;
          font-weight: 800;
          line-height: 24px;
          color: #28282A; }
        @media screen and (min-width: 1081px) {
          footer .footer_nav > ul > li > a.active, footer .footer_nav > ul > li > a:hover {
            color: #28282A; }
            footer .footer_nav > ul > li > a.active:before, footer .footer_nav > ul > li > a:hover:before {
              content: '';
              position: absolute;
              top: 16px;
              left: 4px;
              width: 25px;
              height: 3px;
              margin-top: 0;
              background: #CC2E53; }
          footer .footer_nav > ul > li:first-child > a.active:before, footer .footer_nav > ul > li:first-child > a:hover:before {
            left: -37px; }
          footer .footer_nav > ul > li:nth-child(2) > a.active:before, footer .footer_nav > ul > li:nth-child(2) > a:hover:before {
            left: -10px; } }
        @media screen and (max-width: 1080px) {
          footer .footer_nav > ul > li {
            text-align: center; }
            footer .footer_nav > ul > li a {
              padding-right: 0; }
            footer .footer_nav > ul > li:nth-child(2) {
              padding-left: 0; } }
        @media screen and (max-width: 870px) {
          footer .footer_nav > ul > li {
            width: 100%;
            -webkit-box-flex: 0;
               -moz-box-flex: 0;
                -ms-flex: none;
                    flex: none;
            padding-left: 0;
            text-align: center; }
            footer .footer_nav > ul > li:nth-child(2) {
              padding-left: 0; }
            footer .footer_nav > ul > li a {
              padding: 10px; } }
      footer .footer_nav > ul a {
        display: block;
        padding: 6px 20px 6px 0;
        font-size: 15px;
        font-weight: 600;
        line-height: 20px;
        letter-spacing: 0.2px;
        color: #6D6E72;
        -webkit-transition: 250ms;
        transition: 250ms;
        cursor: pointer; }
        footer .footer_nav > ul a:hover, footer .footer_nav > ul a.active {
          color: #CC2E53; }
  footer .footer-map {
    width: 100%;
    background: #e3e3e3 url("../images/full-width-map.jpg") center top no-repeat;
    height: 310px;
    padding: 45px 0 0;
    color: #28282A;
    font-size: 18px; }
    @media screen and (max-width: 600px) {
      footer .footer-map {
        height: 400px;
        background: #e3e3e3 url(../images/full-width-map-mobile.jpg) right top no-repeat;
        background-size: auto 400px;
        padding: 25px 0 0; }
        footer .footer-map span.venue-name {
          font-size: 43px;
          line-height: 100%; }
        footer .footer-map .get-directions {
          width: 100%;
          max-width: 200px; }
          footer .footer-map .get-directions a, footer .footer-map .get-directions a:visited {
            width: 100%; } }
    footer .footer-map .footer-venue-info {
      padding: 0 35px; }
    footer .footer-map .venue-how-to {
      display: block;
      position: relative;
      font-size: 1.77689rem;
      padding-left: 50px;
      font-weight: 600; }
      footer .footer-map .venue-how-to:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 40px;
        height: 3px;
        margin-top: -2px;
        background: #CC2E53; }
    @media screen and (max-width: 767px) {
      footer .footer-map .divider {
        display: none; } }
    @media screen and (max-width: 767px) {
      footer .footer-map .venue-address-2 {
        display: block; } }
    footer .footer-map .venue-name {
      display: block;
      font-size: 3.15733rem;
      text-transform: uppercase;
      font-weight: 800; }
    footer .footer-map .get-directions {
      clear: both;
      padding-top: 30px; }
    footer .footer-map a.button-directions, footer .footer-map a.button-directions:visited {
      clear: both;
      background-color: transparent;
      color: #28282A; }
      @media screen and (max-width: 400px) {
        footer .footer-map a.button-directions, footer .footer-map a.button-directions:visited {
          background-color: white; } }
      footer .footer-map a.button-directions:hover, footer .footer-map a.button-directions:visited:hover {
        background: #CC2E53;
        color: #fff; }
  footer .footer-info {
    padding: 70px 35px 60px;
    color: #28282A; }
    footer .footer-info .logo, footer .footer-info .info-address {
      float: left; }
    footer .footer-info .info-address {
      padding-left: 50px;
      line-height: 32px;
      height: 120px; }
      footer .footer-info .info-address .venue-ticket-phone {
        display: block;
        clear: both; }
    footer .footer-info .footer_social {
      float: right;
      zoom: 1;
      text-align: center; }
      footer .footer-info .footer_social:before, footer .footer-info .footer_social:after {
        display: block;
        visibility: hidden;
        height: 0;
        content: '\0020'; }
      footer .footer-info .footer_social:after {
        clear: both; }
      footer .footer-info .footer_social ul {
        display: inline-block; }
        footer .footer-info .footer_social ul li {
          float: left; }
          footer .footer-info .footer_social ul li a, footer .footer-info .footer_social ul li a:visited {
            padding: 0 20px;
            font-size: 27px;
            color: #28282A; }
            footer .footer-info .footer_social ul li a:hover, footer .footer-info .footer_social ul li a:visited:hover {
              color: #CC2E53; }
    @media screen and (max-width: 1080px) {
      footer .footer-info {
        padding-bottom: 0; }
        footer .footer-info .logo, footer .footer-info .info-address, footer .footer-info .footer_social {
          float: none;
          width: 100%;
          text-align: center;
          height: auto;
          padding-bottom: 30px;
          padding-left: 0; } }

.global-footer {
  position: relative;
  zoom: 1;
  margin: 0 auto;
  display: block;
  padding: 30px 20px 20px;
  width: 100%;
  max-width: 1180px; }
  .global-footer:before, .global-footer:after {
    display: block;
    visibility: hidden;
    height: 0;
    content: '\0020'; }
  .global-footer:after {
    clear: both; }
  .global-footer p {
    font-size: 15px;
    position: relative;
    text-align: center;
    display: block;
    margin: auto;
    padding: 0;
    line-height: 200%;
    color: #6D6E72; }
    .global-footer p a, .global-footer p a:visited {
      -webkit-transition: all 100ms linear;
      transition: all 100ms linear;
      color: #6D6E72;
      font-weight: 800;
      text-decoration: none; }
      .global-footer p a:hover, .global-footer p a:focus, .global-footer p a.active, .global-footer p a:visited:hover, .global-footer p a:visited:focus, .global-footer p a:visited.active {
        color: #CC2E53;
        text-decoration: none; }
  .global-footer .delimiter {
    padding: 0 2px;
    color: #6D6E72; }
  .global-footer a#carbonhouse, .global-footer a#carbonhouse:link, .global-footer a#carbonhouse:visited {
    position: relative;
    display: block;
    margin: 0;
    padding-top: 0px;
    color: #6D6E72;
    font-family: 'helvetica';
    font-size: 14px;
    cursor: pointer;
    text-decoration: none; }
    .global-footer a#carbonhouse span, .global-footer a#carbonhouse:link span, .global-footer a#carbonhouse:visited span {
      font-size: 16px; }
      .global-footer a#carbonhouse span.carbon, .global-footer a#carbonhouse:link span.carbon, .global-footer a#carbonhouse:visited span.carbon {
        color: #6D6E72;
        font-weight: bold; }
      .global-footer a#carbonhouse span.house, .global-footer a#carbonhouse:link span.house, .global-footer a#carbonhouse:visited span.house {
        color: #6D6E72;
        font-weight: bold; }
    .global-footer a#carbonhouse:hover, .global-footer a#carbonhouse:link:hover, .global-footer a#carbonhouse:visited:hover {
      color: #CC2E53;
      text-decoration: none; }
      .global-footer a#carbonhouse:hover span, .global-footer a#carbonhouse:link:hover span, .global-footer a#carbonhouse:visited:hover span {
        color: #CC2E53; }

/* ----------------------------------------------------------------------------
=Sidebar Subnav
----------------------------------------------------------------------------- */
.subnav {
  position: relative;
  display: none;
  width: 320px;
  margin: 0 0 20px;
  padding: 0; }
  .subnav ul {
    width: 300px;
    margin: 0 auto;
    padding: 15px 0;
    list-style: none;
    list-style-image: none; }
    .subnav ul li {
      margin: 0;
      padding: 0;
      border-bottom: 1px solid black; }
      .subnav ul li:first-child {
        background: none; }
        .subnav ul li:first-child a, .subnav ul li:first-child a:visited {
          line-height: 18px; }
      .subnav ul li.active ul {
        display: block;
        width: auto;
        margin: 0;
        padding: 2px 0 2px 12px;
        list-style: none;
        list-style-type: none;
        list-style-image: none;
        background: none; }
      .subnav ul li.active a:active {
        color: #CC2E53; }
      .subnav ul li a, .subnav ul li a:visited {
        display: block;
        padding: 9px 5px 7px 30px;
        color: white;
        font: bold 18px/120% "Nunito Sans", sans-serif;
        text-decoration: none;
        text-transform: uppercase; }
        .subnav ul li a:hover, .subnav ul li a.active, .subnav ul li a:active, .subnav ul li a:visited:hover, .subnav ul li a:visited.active, .subnav ul li a:visited:active {
          color: #CC2E53; }
        .subnav ul li a.section, .subnav ul li a:visited.section {
          padding-bottom: 7px;
          color: #CC2E53;
          font-size: 22px; }
          .subnav ul li a.section:hover, .subnav ul li a.section.active:hover, .subnav ul li a.section:active, .subnav ul li a:visited.section:hover, .subnav ul li a:visited.section.active:hover, .subnav ul li a:visited.section:active {
            color: #CC2E53; }
      .subnav ul li.active.onparent a.active {
        color: #CC2E53; }
    .subnav ul ul {
      display: none; }
      .subnav ul ul li {
        border-bottom: none; }
        .subnav ul ul li:first-child a {
          line-height: 24px; }

/* ----------------------------------------------------------------------------
= Search including search form, and results page
----------------------------------------------------------------------------- */
#search {
  position: relative;
  display: block;
  float: right;
  width: 246px;
  height: 30px;
  margin: -5px 0 0;
  padding: 0; }
  #search input, #search input[type='text'] {
    position: relative;
    width: 246px;
    height: 30px;
    margin: 0;
    padding: 8px 10px 6px;
    color: #fff;
    border: 0;
    background: #333;
    font: normal 14px/14px "Nunito Sans", sans-serif;
    -webkit-appearance: none; }
    #search input::-webkit-input-placeholder, #search input[type='text']::-webkit-input-placeholder {
      color: #fff;
      font: normal 14px/14px "Nunito Sans", sans-serif; }
    #search input:-moz-placeholder, #search input[type='text']:-moz-placeholder {
      color: #fff;
      font: normal 14px/14px "Nunito Sans", sans-serif; }
    #search input:-ms-input-placeholder, #search input[type='text']:-ms-input-placeholder {
      color: #fff;
      font: normal 14px/14px "Nunito Sans", sans-serif; }
    #search input:focus, #search input[type='text']:focus {
      outline: none;
      -webkit-appearance: none; }
  #search button {
    position: absolute;
    top: 3px;
    right: 8px;
    width: 29px;
    height: 29px;
    margin: 0;
    padding: 0;
    border: none;
    background: url(https://www.thebbtcenter.com/assets/production/e53576b499/images/toolbar-icons.png) no-repeat -242px 0;
    display: block;
    overflow: hidden;
    background-repeat: no-repeat;
    text-align: left;
    white-space: nowrap;
    text-indent: 100%;
    direction: ltr; }
    #search button:hover, #search button:focus {
      background-position: -242px -34px; }

#cse-search-results {
  padding: 0 10px; }
  #cse-search-results iframe {
    width: 100%; }

/* ----------------------------------------------------------------------------
= Baseline styles for all buttons in a project. These are global.
----------------------------------------------------------------------------- */
.m-button, .gen-button,
.spotlight-button,
a.button,
.button a,
input.button,
.login-form input[type='submit'],
.elq-form input[type=submit],
#loadMoreEvents, .one_sidebar_right .rightBreakout .buttons .tickets, .spotlight .buttons .button, .spotlight .links .button,
.concierge .buttons .button,
.concierge .links .button,
.news_list .buttons .button,
.news_list .links .button,
.contest_list .buttons .button,
.contest_list .links .button,
.job_list .buttons .button,
.job_list .links .button,
.seating_charts .buttons .button,
.seating_charts .links .button,
.gallery-listing .buttons .button,
.gallery-listing .links .button,
.offer_list .buttons .button,
.offer_list .links .button, .map_window .directions form button {
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear;
  display: inline-block;
  position: relative;
  background-color: transparent;
  color: #28282A;
  text-align: center;
  padding: 10px 30px;
  line-height: 1;
  font-weight: 800;
  border: 3px solid #CC2E53;
  border-radius: 22px;
  font-size: 15px;
  cursor: pointer; }
  .m-button:hover, .gen-button:hover,
  .spotlight-button:hover,
  a.button:hover,
  .button a:hover,
  input.button:hover,
  .login-form input:hover[type='submit'],
  .elq-form input:hover[type=submit],
  #loadMoreEvents:hover, .one_sidebar_right .rightBreakout .buttons .tickets:hover, .spotlight .buttons .button:hover, .spotlight .links .button:hover,
  .concierge .buttons .button:hover,
  .concierge .links .button:hover,
  .news_list .buttons .button:hover,
  .news_list .links .button:hover,
  .contest_list .buttons .button:hover,
  .contest_list .links .button:hover,
  .job_list .buttons .button:hover,
  .job_list .links .button:hover,
  .seating_charts .buttons .button:hover,
  .seating_charts .links .button:hover,
  .gallery-listing .buttons .button:hover,
  .gallery-listing .links .button:hover,
  .offer_list .buttons .button:hover,
  .offer_list .links .button:hover, .map_window .directions form button:hover {
    background-color: #CC2E53;
    color: #fff; }

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

/***********************************************/
/*      Add Additional Button Styles Below     */
/***********************************************/
.one_sidebar_right .rightBreakout .buttons .tickets {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  padding-top: 13px;
  padding-bottom: 13px;
  line-height: 21px;
  border-radius: 900px;
  font-weight: 800;
  font-size: 15px; }
  .one_sidebar_right .rightBreakout .buttons .tickets:before {
    background-color: #9B233F;
    height: 100%;
    width: calc(36% + 50px);
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -50px;
    z-index: -1;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transform: skew(-55deg);
            transform: skew(-55deg); }
  .one_sidebar_right .rightBreakout .buttons .tickets:hover {
    background-color: transparent;
    color: #fff; }
  .one_sidebar_right .rightBreakout .buttons .tickets:hover:before {
    width: calc(65% + 50px);
    background-color: #CC2E53; }
  .one_sidebar_right .rightBreakout .buttons .tickets:active {
    background-color: #CC2E53; }

.elq-form input[type=submit] {
  height: auto !important;
  width: auto !important;
  font-size: 15px !important; }

/* ----------------------------------------------------------------------------
= Baseline styles for all buttons in a project. These are global.
----------------------------------------------------------------------------- */
.m-ticket-button, .eventItem .buttons .tickets, .outside_info .buttons .tickets, .home-slideshow .buttons .tickets, .home-slideshow .buttons > span {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  display: inline-block;
  position: relative;
  color: white;
  text-align: center;
  padding: 14px 32px;
  width: auto;
  line-height: 1;
  font-weight: 800;
  border-radius: 40px;
  font-size: 15px;
  overflow: hidden !important;
  background: #9B233F;
  white-space: nowrap;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -webkit-mask-image: -webkit-radial-gradient(white, black); }
  .m-ticket-button:before, .eventItem .buttons .tickets:before, .outside_info .buttons .tickets:before, .home-slideshow .buttons .tickets:before, .home-slideshow .buttons > span:before {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    content: '';
    position: absolute;
    top: 0px;
    right: 80%;
    height: 100%;
    width: 100%;
    background: #CC2E53;
    -webkit-transform: skew(-50deg);
            transform: skew(-50deg);
    z-index: 1;
    will-change: right;
    -webkit-will-change: right;
    zoom: 1;
    opacity: 0.8;
    -moz-opacity: 0.8;
    filter: alpha(opacity=80); }
  .m-ticket-button:hover, .eventItem .buttons .tickets:hover, .outside_info .buttons .tickets:hover, .home-slideshow .buttons .tickets:hover, .home-slideshow .buttons > span:hover {
    color: #fff; }
    .m-ticket-button:hover:before, .eventItem .buttons .tickets:hover:before, .outside_info .buttons .tickets:hover:before, .home-slideshow .buttons .tickets:hover:before, .home-slideshow .buttons > span:hover:before {
      right: 40px;
      zoom: 1;
      opacity: 1;
      -moz-opacity: 1;
      filter: alpha(opacity=100); }
  .m-ticket-button span, .eventItem .buttons .tickets span, .outside_info .buttons .tickets span, .home-slideshow .buttons .tickets span, .home-slideshow .buttons > span span {
    position: relative;
    z-index: 2; }
  .m-ticket-button svg, .eventItem .buttons .tickets svg, .outside_info .buttons .tickets svg, .home-slideshow .buttons .tickets svg, .home-slideshow .buttons > span svg {
    display: none; }
  @media screen and (max-width: 767px) {
    .m-ticket-button, .eventItem .buttons .tickets, .outside_info .buttons .tickets, .home-slideshow .buttons .tickets, .home-slideshow .buttons > span {
      width: 100%; }
      .m-ticket-button:hover:before, .eventItem .buttons .tickets:hover:before, .outside_info .buttons .tickets:hover:before, .home-slideshow .buttons .tickets:hover:before, .home-slideshow .buttons > span:hover:before {
        right: 40%; } }

.m-more-info, .eventItem .buttons .more, .outside_info .buttons .more, .home-slideshow .buttons .more, .m-alert-wrapper > div button {
  font-weight: 800;
  font-size: 15px;
  color: #28282A;
  letter-spacing: 0.4px;
  text-align: right;
  line-height: 43px;
  text-align: center; }
  .m-more-info svg, .eventItem .buttons .more svg, .outside_info .buttons .more svg, .home-slideshow .buttons .more svg, .m-alert-wrapper > div button svg {
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear;
    display: inline;
    margin-right: 10px;
    fill: none;
    stroke: #28282A; }
  .m-more-info:hover, .eventItem .buttons .more:hover, .outside_info .buttons .more:hover, .home-slideshow .buttons .more:hover, .m-alert-wrapper > div button:hover {
    color: #CC2E53; }
    .m-more-info:hover svg, .eventItem .buttons .more:hover svg, .outside_info .buttons .more:hover svg, .home-slideshow .buttons .more:hover svg, .m-alert-wrapper > div button:hover svg {
      -webkit-transform: translateX(4px);
              transform: translateX(4px);
      stroke: #CC2E53; }
  @media screen and (max-width: 767px) {
    .m-more-info, .eventItem .buttons .more, .outside_info .buttons .more, .home-slideshow .buttons .more, .m-alert-wrapper > div button {
      color: #fff;
      background: #28282A;
      font-weight: 800;
      border-radius: 40px;
      width: 100%; }
      .m-more-info svg, .eventItem .buttons .more svg, .outside_info .buttons .more svg, .home-slideshow .buttons .more svg, .m-alert-wrapper > div button svg {
        stroke: #fff; }
      .m-more-info:hover, .eventItem .buttons .more:hover, .outside_info .buttons .more:hover, .home-slideshow .buttons .more:hover, .m-alert-wrapper > div button:hover {
        background: #6D6E72;
        color: white; }
        .m-more-info:hover svg, .eventItem .buttons .more:hover svg, .outside_info .buttons .more:hover svg, .home-slideshow .buttons .more:hover svg, .m-alert-wrapper > div button:hover svg {
          stroke: #fff; } }

.eventItem .buttons .tickets, .outside_info .buttons .tickets {
  margin-bottom: 5px;
  outline-offset: -8px; }

.eventItem .buttons .more, .outside_info .buttons .more {
  display: block;
  clear: both;
  outline-offset: -8px; }

.eventItem .thumb .buttons .tickets, .secondary_event .eventItem .buttons .tickets, .outside_info .thumb .buttons .tickets, .secondary_event .outside_info .buttons .tickets {
  border: 3px solid white;
  background: rgba(0, 0, 0, 0.65); }

.eventItem .thumb .buttons .more, .secondary_event .eventItem .buttons .more, .outside_info .thumb .buttons .more, .secondary_event .outside_info .buttons .more {
  color: white; }
  .eventItem .thumb .buttons .more svg, .secondary_event .eventItem .buttons .more svg, .outside_info .thumb .buttons .more svg, .secondary_event .outside_info .buttons .more svg {
    stroke: white; }
  .eventItem .thumb .buttons .more:hover, .secondary_event .eventItem .buttons .more:hover, .outside_info .thumb .buttons .more:hover, .secondary_event .outside_info .buttons .more:hover {
    color: white; }
    .eventItem .thumb .buttons .more:hover svg, .secondary_event .eventItem .buttons .more:hover svg, .outside_info .thumb .buttons .more:hover svg, .secondary_event .outside_info .buttons .more:hover svg {
      stroke: #CC2E53; }

.home-slideshow .buttons .tickets, .home-slideshow .buttons > span {
  border: 3px solid white;
  background: transparent;
  background: rgba(0, 0, 0, 0.65); }

.home-slideshow .buttons .more {
  display: block;
  clear: both;
  color: white;
  line-height: 49px; }
  .home-slideshow .buttons .more svg {
    stroke: #fff; }
  .home-slideshow .buttons .more:hover {
    color: white; }
  @media screen and (max-width: 767px) {
    .home-slideshow .buttons .more:hover {
      background: none; }
      .home-slideshow .buttons .more:hover svg {
        stroke: #CC2E53; } }

.intro_events .buttons .tickets {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: none;
  border-radius: 0px;
  padding: 50px 15px 15px;
  margin: 0;
  height: 84px;
  text-align: right; }
  .intro_events .buttons .tickets:before {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    content: '';
    position: absolute;
    top: auto;
    bottom: 0px;
    right: 0;
    height: 0;
    width: 0;
    background: none;
    -webkit-transform: none;
            transform: none;
    z-index: 1;
    will-change: right;
    zoom: 1;
    opacity: 0.8;
    -moz-opacity: 0.8;
    filter: alpha(opacity=80);
    border-top: 60px solid transparent;
    border-left: 80px solid transparent;
    border-right: 80px solid #CC2E53; }
  .intro_events .buttons .tickets:hover:before {
    right: 0;
    border-top: 84px solid transparent;
    border-left: 110px solid transparent;
    border-right: 110px solid #CC2E53;
    zoom: 1;
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100); }

#loadMoreEvents {
  text-align: center;
  display: block;
  margin: 0px auto 0;
  clear: both;
  width: 200px; }

.viewAllEvents {
  float: none;
  margin-top: 20px; }
  @media screen and (min-width: 1200px) {
    .viewAllEvents {
      float: left;
      margin-top: 0px; } }
  @media screen and (max-width: 767px) {
    .viewAllEvents {
      width: 100%;
      margin-top: 0px; } }

/* v1.0.6 */
/* Core RS CSS file. 95% of time you shouldn't change anything here. */
.royalSlider {
  width: 600px;
  height: 400px;
  position: relative;
  direction: ltr; }

.royalSlider > * {
  float: left; }

.rsWebkit3d .rsSlide,
.rsWebkit3d .rsContainer,
.rsWebkit3d .rsThumbs,
.rsWebkit3d .rsPreloader,
.rsWebkit3d img,
.rsWebkit3d .rsOverflow,
.rsWebkit3d .rsBtnCenterer,
.rsWebkit3d .rsAbsoluteEl,
.rsWebkit3d .rsABlock,
.rsWebkit3d .rsLink {
  -webkit-backface-visibility: hidden; }

.rsFade.rsWebkit3d .rsSlide,
.rsFade.rsWebkit3d img,
.rsFade.rsWebkit3d .rsContainer {
  -webkit-transform: none; }

.rsOverflow {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  float: left;
  -webkit-tap-highlight-color: transparent; }

.rsVisibleNearbyWrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  left: 0;
  top: 0;
  -webkit-tap-highlight-color: transparent; }

.rsVisibleNearbyWrap .rsOverflow {
  position: absolute;
  left: 0;
  top: 0; }

.rsContainer {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: transparent; }

.rsArrow,
.rsThumbsArrow {
  cursor: pointer; }

.rsThumb {
  float: left;
  position: relative; }

.rsArrow,
.rsNav,
.rsThumbsArrow {
  opacity: 1;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear; }

.rsHidden {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s linear 0.3s,opacity 0.3s linear;
  transition: visibility 0s linear 0.3s,opacity 0.3s linear; }

.rsGCaption {
  width: 100%;
  float: left;
  text-align: center; }

/* Fullscreen options, very important ^^ */
.royalSlider.rsFullscreen {
  position: fixed !important;
  height: auto !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 2147483647 !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  right: 0 !important; }

.royalSlider .rsSlide.rsFakePreloader {
  opacity: 1 !important;
  -webkit-transition: 0s;
  transition: 0s;
  display: none; }

.rsSlide {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  overflow: hidden;
  height: 100%;
  width: 100%; }

.royalSlider.rsAutoHeight,
.rsAutoHeight .rsSlide {
  height: auto; }

.rsContent {
  width: 100%;
  height: 100%;
  position: relative; }

.rsPreloader {
  position: absolute;
  z-index: 0; }

.rsNav {
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.rsNavItem {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25); }

.rsThumbs {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  float: left;
  z-index: 22; }

.rsTabs {
  float: left;
  background: none !important; }

.rsTabs,
.rsThumbs {
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent; }

.rsVideoContainer {
  width: auto;
  height: auto;
  line-height: 0;
  position: relative; }

.rsVideoFrameHolder {
  position: absolute;
  left: 0;
  top: 0;
  background: #141414;
  opacity: 0;
  -webkit-transition: .3s; }

.rsVideoFrameHolder.rsVideoActive {
  opacity: 1; }

.rsVideoContainer iframe,
.rsVideoContainer video,
.rsVideoContainer embed,
.rsVideoContainer .rsVideoObj {
  position: absolute;
  z-index: 50;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; }

/* ios controls over video bug, shifting video */
.rsVideoContainer.rsIOSVideo iframe,
.rsVideoContainer.rsIOSVideo video,
.rsVideoContainer.rsIOSVideo embed {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 44px; }

.rsABlock {
  left: 0;
  top: 0;
  position: absolute;
  z-index: 15; }

img.rsImg {
  max-width: none; }

.grab-cursor {
  cursor: url(../images/grab.png) 8 8, move; }

.grabbing-cursor {
  cursor: url(../images/grabbing.png) 8 8, move; }

.rsNoDrag {
  cursor: auto; }

.rsLink {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 20; }

/******************************
*
*  RoyalSlider Default Skin 
*
*    1. Arrows 
*    2. Bullets
*    3. Thumbnails
*    4. Tabs
*    5. Fullscreen button
*    6. Play/close video button
*    7. Preloader
*    8. Caption
*    9. Full Width Responsive
*    
*  Sprite: 'rs-default.png'
*  Feel free to edit anything
*  If you don't some part - just delete it
* 
******************************/
/* ----------------------------------------------------------------------------
=Settings
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=Includes
----------------------------------------------------------------------------- */
/* Background */
.rsDefault .rsOverflow,
.rsDefault .rsSlide,
.rsDefault .rsVideoFrameHolder,
.rsDefault .rsThumbs {
  background: #151515;
  color: #FFF; }

.rsDefault .rsLink {
  outline-offset: -9px !important; }

.royalSlider > .rsContent {
  visibility: hidden; }

/***************
*
*  1. Arrows
*
****************/
.event_detail .rsDefault .rsArrow {
  margin-left: calc((100vw - 1180px)/2); }
  @media screen and (max-width: 1200px) {
    .event_detail .rsDefault .rsArrow {
      margin-left: 20px; } }
  @media screen and (max-width: 870px) {
    .event_detail .rsDefault .rsArrow {
      margin-left: 10px; } }

.event_detail .rsDefault.rsHor .rsArrowLeft {
  left: -12px; }

.event_detail .rsDefault.rsHor .rsArrowRight {
  left: 62px; }

.rsDefault .rsArrow {
  height: 44px;
  width: 44px;
  position: absolute;
  display: block;
  cursor: pointer;
  z-index: 21; }
  .rsDefault .rsArrow.rsVer .rsArrow {
    width: 100%;
    height: 44px; }

.rsDefault.rsVer .rsArrowLeft {
  top: 0;
  left: 0; }
  .rsDefault.rsVer .rsArrowLeft .rsArrowIcn {
    background-position: -96px -32px; }

.rsDefault.rsVer .rsArrowRight {
  bottom: 0;
  left: 0; }
  .rsDefault.rsVer .rsArrowRight .rsArrowIcn {
    background-position: -96px -64px; }

.rsDefault.rsHor .rsArrowLeft {
  bottom: 10px;
  left: 10px; }
  .rsDefault.rsHor .rsArrowLeft .rsArrowIcn {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  .rsDefault.rsHor .rsArrowLeft:hover + .rsArrowRight:before {
    background: #fff;
    left: -37px; }

.rsDefault.rsHor .rsArrowRight {
  left: 84px;
  bottom: 10px; }
  .rsDefault.rsHor .rsArrowRight:before {
    position: absolute;
    top: 22px;
    left: -27px;
    width: 25px;
    height: 3px;
    background: #CC2E53;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    content: '';
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear; }
  .rsDefault.rsHor .rsArrowRight:hover:before {
    background: #fff;
    left: -17px; }

.rsDefault .rsArrowIcn {
  width: 32px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -16px;
  position: absolute;
  cursor: pointer;
  background: url("../images/arrow.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center; }

.rsDefault .rsArrowDisabled .rsArrowIcn {
  opacity: .2;
  filter: alpha(opacity=20);
  *display: none; }

/***************
*
*  2. Bullets
*
****************/
.rsDefault .rsBullets {
  position: absolute;
  z-index: 35;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: #000;
  background: rgba(0, 0, 0, 0.75);
  text-align: center;
  line-height: 8px;
  overflow: hidden; }
  .rsDefault .rsBullets .rsBullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    padding: 6px 5px 6px; }
    .rsDefault .rsBullets .rsBullet span {
      display: block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #777;
      background: rgba(255, 255, 255, 0.5); }
    .rsDefault .rsBullets .rsBullet.rsNavSelected span {
      background-color: #FFF; }

/***************
*
*  3. Thumbnails
*
****************/
.rsDefault .rsThumbsHor {
  width: 100%;
  height: 100px;
  padding-top: 10px; }

.rsDefault .rsThumbsVer {
  width: 96px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0; }

.rsDefault.rsWithThumbsHor .rsThumbsContainer {
  position: relative;
  height: 100%; }

.rsDefault.rsWithThumbsVer .rsThumbsContainer {
  position: relative;
  width: 100%; }

.rsDefault .rsThumb {
  float: left;
  overflow: hidden;
  width: 150px;
  height: 80px;
  text-align: center; }
  .rsDefault .rsThumb img {
    width: 150px;
    height: auto;
    min-height: 80px;
    margin: 0 auto; }
  .rsDefault .rsThumb.rsNavSelected {
    background: #000; }
    .rsDefault .rsThumb.rsNavSelected:before {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: block;
      content: '';
      border: 3px solid #CC2E53; }
  .rsDefault .rsThumb .rsTmb {
    display: block;
    /* Thumbnails with text */ }
    .rsDefault .rsThumb .rsTmb h5 {
      font-size: 16px;
      margin: 0;
      padding: 0;
      line-height: 20px;
      color: #FFF; }
    .rsDefault .rsThumb .rsTmb span {
      color: #DDD;
      margin: 0;
      padding: 0;
      font-size: 13px;
      line-height: 18px; }

/* Thumbnails arrow icons */
.rsDefault .rsThumbsArrow {
  height: 100%;
  width: 20px;
  position: absolute;
  display: block;
  cursor: pointer;
  z-index: 21;
  background: #000;
  background: rgba(0, 0, 0, 0.75); }
  .rsDefault .rsThumbsArrow:hover {
    background: rgba(0, 0, 0, 0.9); }

.rsDefault.rsWithThumbsVer .rsThumbsArrow {
  width: 100%;
  height: 20px; }

.rsDefault.rsWithThumbsVer .rsThumbsArrowLeft {
  top: 0;
  left: 0; }
  .rsDefault.rsWithThumbsVer .rsThumbsArrowLeft .rsThumbsArrowIcn {
    background-position: -144px -32px; }

.rsDefault.rsWithThumbsVer .rsThumbsArrowRight {
  bottom: 0;
  left: 0; }
  .rsDefault.rsWithThumbsVer .rsThumbsArrowRight .rsThumbsArrowIcn {
    background-position: -144px -48px; }

.rsDefault.rsWithThumbsHor .rsThumbsArrowLeft {
  left: 0;
  top: 0; }
  .rsDefault.rsWithThumbsHor .rsThumbsArrowLeft .rsThumbsArrowIcn {
    background-position: -128px -32px; }

.rsDefault.rsWithThumbsHor .rsThumbsArrowRight {
  right: 0;
  top: 0; }
  .rsDefault.rsWithThumbsHor .rsThumbsArrowRight .rsThumbsArrowIcn {
    background-position: -128px -48px; }

.rsDefault .rsThumbsArrowIcn {
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
  position: absolute;
  cursor: pointer;
  background: url("../images/rs-default.png"); }

.rsDefault .rsThumbsArrowDisabled {
  display: none !important; }

.rsThumb {
  overflow: hidden;
  width: 150px;
  height: 80px;
  text-align: center; }
  .rsThumb img {
    width: 150px;
    height: auto;
    min-height: 80px;
    margin: 0 auto; }
  .rsThumb.rsNavSelected {
    background: #000; }

/* Thumbnails resizing on smaller screens */
@media screen and (min-width: 0px) and (max-width: 800px) {
  .rsDefault .rsThumb {
    width: 59px;
    height: 44px; }
  .rsDefault .rsThumbsHor {
    height: 64px; }
  .rsDefault .rsThumbsVer {
    width: 59px; } }

/***************
*
*  4. RoyalSlider Tabs
*
****************/
.rsDefault .rsTabs {
  width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  padding-top: 12px;
  position: relative; }

.rsDefault .rsTab {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  height: auto;
  width: auto;
  color: #333;
  padding: 5px 13px 6px;
  min-width: 72px;
  border: 1px solid #D9D9DD;
  border-right: 1px solid #f5f5f5;
  text-decoration: none;
  background-color: #FFF;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#f4f4f4));
  background-image: linear-gradient(to bottom, #fefefe, #f4f4f4);
  -webkit-box-shadow: inset 1px 0 0 #fff;
  box-shadow: inset 1px 0 0 #fff;
  *display: inline;
  *zoom: 1; }
  .rsDefault .rsTab:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px; }
  .rsDefault .rsTab:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-right: 1px solid #cfcfcf; }
  .rsDefault .rsTab:active {
    border: 1px solid #D9D9DD;
    background-color: #f4f4f4;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) inset;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) inset; }
  .rsDefault .rsTab.rsNavSelected {
    color: #FFF;
    border: 1px solid #999;
    text-shadow: 1px 1px #838383;
    -webkit-box-shadow: 0 1px 9px rgba(102, 102, 102, 0.65) inset;
            box-shadow: 0 1px 9px rgba(102, 102, 102, 0.65) inset;
    background: #ACACAC;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#acacac), to(#BBB));
    background-image: linear-gradient(to bottom, #acacac, #bbb); }

/***************
*
*  6. Play/close video button
*
****************/
.rsDefault .rsPlayBtn {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
  width: 64px;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  cursor: pointer; }
  .rsDefault .rsPlayBtn:hover .rsPlayBtnIcon {
    background-color: rgba(0, 0, 0, 0.9); }

.rsDefault .rsPlayBtnIcon {
  width: 64px;
  display: block;
  height: 64px;
  border-radius: 4px;
  -webkit-transition: .3s;
  transition: .3s;
  background: url("../images/rs-default.png") no-repeat 0 -32px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  *background-color: #000; }

.rsDefault .rsBtnCenterer {
  position: absolute;
  left: 50%;
  top: 50%; }

.rsDefault .rsCloseVideoBtn {
  right: 0;
  top: 0;
  width: 44px;
  height: 44px;
  z-index: 500;
  position: absolute;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0); }
  .rsDefault .rsCloseVideoBtn.rsiOSBtn {
    top: -38px;
    right: -6px; }

.rsDefault .rsCloseVideoIcn {
  margin: 6px;
  width: 32px;
  height: 32px;
  background: url("../images/rs-default.png") -64px 0;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  *background-color: #000; }
  .rsDefault .rsCloseVideoIcn:hover {
    background-color: rgba(0, 0, 0, 0.9); }

/***************
*
*  6. Pause Autoplay Btn
*
****************/
.rsDefault .rsPauseBtn {
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear;
  zoom: 1;
  opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px;
  background: none;
  border: none;
  z-index: 30; }
  .rsDefault .rsPauseBtn:before {
    content: '';
    border-left: 4px solid white;
    border-right: 4px solid white;
    width: 12px;
    height: 15px;
    display: block;
    cursor: pointer; }
  .rsDefault .rsPauseBtn.is-paused:before {
    border-bottom: 7px solid transparent;
    border-top: 7px solid transparent;
    border-left: 12px solid white;
    border-right: none;
    width: 0px;
    height: 0px;
    width: 12px;
    height: 15px; }
  .rsDefault .rsPauseBtn:hover, .rsDefault .rsPauseBtn:focus {
    background: black;
    zoom: 1;
    opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100); }

.rsDefault:hover .rsPauseBtn {
  zoom: 1;
  opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100); }

/***************
*
*  7. Preloader
*
****************/
.rsDefault .rsPreloader {
  width: 20px;
  height: 20px;
  background-image: url("../images/preloader-white.gif");
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px; }

/***************
*
*  8. Global caption
*
****************/
.event_detail .rsDefault .rsGCaption p {
  padding: 10px 0 20px 130px;
  margin-right: calc((100vw - 1180px)/2); }
  @media screen and (max-width: 1200px) {
    .event_detail .rsDefault .rsGCaption p {
      margin-right: 20px; } }
  @media screen and (max-width: 870px) {
    .event_detail .rsDefault .rsGCaption p {
      margin-right: 10px; } }

.rsDefault .rsGCaption {
  position: absolute;
  float: none;
  bottom: 0;
  left: 0;
  text-align: left;
  color: #FFF;
  width: 100%;
  height: auto; }
  .rsDefault .rsGCaption .rsABlock {
    position: relative;
    min-height: 100px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.5)));
    background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5)); }
  .rsDefault .rsGCaption p {
    margin: 0;
    padding: 10px 20px 20px 130px;
    color: #fff;
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px; }

/***************
*
*  9. Full Width Responsive
*
****************/
.event_detail .rsDefault.rsFullWidth {
  height: calc(100vw * (696 / 1440)); }

.rsDefault.rsFullWidth {
  width: 100%;
  height: auto; }
  .rsDefault.rsFullWidth img.rsImg {
    width: 100%;
    display: block; }

/********* Uncomment this to set specific heights at each breakpoint *********/
/*
.rsDefault.rsFullWidth,
.rsDefault.rsFullWidth .rsOverflow {
	@include media($mobile) {
		height: 300px !important;
	}
	@include media($tablet-only) {
		height: 360px !important;
	}
	@include media($mid-desktop) {
		height: 450px !important;
	}
}
*/
.m-slideshow-container {
  max-height: 450px;
  max-width: 2000px;
  margin: 0 auto; }
  .m-slideshow-container.slideshow-type-full-width {
    max-width: none; }
  .m-slideshow-container.gallery_slideshow {
    margin-bottom: 100px; }

.slideshow-sidecaptions {
  width: 100%;
  max-width: 68em;
  margin: 0 auto; }
  .slideshow-sidecaptions .rsDefault {
    width: 100%; }
    .slideshow-sidecaptions .rsDefault .rsThumbsVer {
      width: 35%; }
    .slideshow-sidecaptions .rsDefault .rsThumb {
      width: 100%;
      height: auto; }
      .slideshow-sidecaptions .rsDefault .rsThumb * {
        color: rgba(255, 255, 255, 0.4); }
      .slideshow-sidecaptions .rsDefault .rsThumb .buttons {
        opacity: 0;
        -webkit-transition: all 100ms linear;
        transition: all 100ms linear; }
        .slideshow-sidecaptions .rsDefault .rsThumb .buttons a {
          text-indent: -9999px; }
      .slideshow-sidecaptions .rsDefault .rsThumb.rsNavSelected {
        background: none; }
        .slideshow-sidecaptions .rsDefault .rsThumb.rsNavSelected * {
          color: #fff; }
        .slideshow-sidecaptions .rsDefault .rsThumb.rsNavSelected .buttons {
          opacity: 1; }
          .slideshow-sidecaptions .rsDefault .rsThumb.rsNavSelected .buttons a {
            text-indent: 0; }
    .slideshow-sidecaptions .rsDefault .rsTmb {
      height: 100%;
      margin: 0 20px;
      padding: 15px 4px;
      position: relative;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      float: left;
      width: calc(100% - 40px); }

.home-slideshow {
  max-height: none; }

.calendar-new {
  position: relative;
  margin: auto;
  max-width: 1180px;
  padding: 0 20px 100px; }
  .calendar-new .tl-header {
    background: #28282A;
    padding: 20px 0 15px;
    max-width: 1200px;
    margin: 0 auto 10px; }
  .calendar-new .month_name {
    color: white;
    text-align: center;
    font: 500 32px/100% "Nunito Sans", sans-serif;
    letter-spacing: 0.08em;
    margin: 0px auto;
    font-weight: 800;
    line-height: 32px; }
  .calendar-new .cal-prev, .calendar-new .cal-next {
    font-size: 30px;
    color: white;
    line-height: 30px;
    vertical-align: middle;
    cursor: pointer;
    padding: 0 20px; }
    .calendar-new .cal-prev .fa, .calendar-new .cal-next .fa {
      line-height: 30px; }
    .calendar-new .cal-prev:hover, .calendar-new .cal-next:hover {
      color: #CC2E53; }
  .calendar-new .cal-next {
    float: right; }
  .calendar-new .cal-prev {
    float: left; }
  .calendar-new .tl-wrap, .calendar-new .additional_events {
    display: none; }
  .calendar-new .tl-wrap-inner {
    zoom: 1;
    max-width: 100%;
    margin: auto;
    padding: 0px 0;
    width: 100%;
    padding-top: 0px;
    position: relative;
    max-width: 1210px; }
    .calendar-new .tl-wrap-inner:before, .calendar-new .tl-wrap-inner:after {
      display: block;
      visibility: hidden;
      height: 0;
      content: '\0020'; }
    .calendar-new .tl-wrap-inner:after {
      clear: both; }
    .calendar-new .tl-wrap-inner .tl-calendar {
      zoom: 1;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
         -moz-box-orient: horizontal;
         -moz-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-line-pack: end;
          align-content: flex-end; }
      .calendar-new .tl-wrap-inner .tl-calendar:before, .calendar-new .tl-wrap-inner .tl-calendar:after {
        display: block;
        visibility: hidden;
        height: 0;
        content: '\0020'; }
      .calendar-new .tl-wrap-inner .tl-calendar:after {
        clear: both; }
  .calendar-new .weekdays {
    position: relative;
    clear: both;
    display: block;
    zoom: 1;
    width: 100%;
    margin-bottom: 0px;
    margin-top: 30px; }
    .calendar-new .weekdays:before, .calendar-new .weekdays:after {
      display: block;
      visibility: hidden;
      height: 0;
      content: '\0020'; }
    .calendar-new .weekdays:after {
      clear: both; }
    .calendar-new .weekdays .weekday {
      width: 14.28%;
      padding-top: 15px;
      text-align: left;
      color: #D7D7D8;
      font-family: "Nunito Sans", sans-serif;
      font-size: 16px;
      font-weight: 800;
      float: left;
      margin-bottom: 0px;
      margin-right: 0px;
      text-align: center; }
    @media screen and (max-width: 767px) {
      .calendar-new .weekdays {
        display: none; } }
  .calendar-new .tl-date {
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear;
    position: relative;
    width: 123px;
    width: calc(14.28% - 10px);
    background: #fff;
    min-height: 220px;
    float: left;
    margin: 0 5px 10px;
    padding: 40px 15px 0px;
    text-align: left;
    border: 1px solid #ccc; }
    .calendar-new .tl-date.empty {
      background: #f9f9f9; }
    .calendar-new .tl-date .tl-date-inner {
      overflow-y: auto;
      max-height: 100%;
      padding-bottom: 20px;
      padding-top: 10px; }
      .calendar-new .tl-date .tl-date-inner .event_item {
        padding-top: 15px;
        border-top: 1px solid #eee;
        margin-top: 15px; }
        .calendar-new .tl-date .tl-date-inner .event_item .desc h3 {
          font-size: 16px; }
        .calendar-new .tl-date .tl-date-inner .event_item .desc a {
          font-size: 16px;
          line-height: 1.3em; }
        .calendar-new .tl-date .tl-date-inner .event_item:first-child {
          padding-top: 0px;
          border-top: none;
          margin-top: 0px; }
    @media screen and (max-width: 767px) {
      .calendar-new .tl-date {
        width: 100%;
        height: auto;
        min-height: auto;
        margin-bottom: 5px; }
        .calendar-new .tl-date .tl-date-inner {
          overflow-y: visible;
          max-height: 100%;
          padding-bottom: 10px; }
          .calendar-new .tl-date .tl-date-inner .event_item {
            padding-top: 10px;
            border-top: 1px solid #eee;
            margin-top: 10px;
            padding-bottom: 20px; }
            .calendar-new .tl-date .tl-date-inner .event_item:first-child {
              padding-top: 0px;
              border-top: none;
              margin-top: 0px; }
        .calendar-new .tl-date.empty, .calendar-new .tl-date .month {
          display: none; } }
    .calendar-new .tl-date .cal_events {
      height: 130px;
      overflow-y: auto; }
      .ie10 .calendar-new .tl-date .cal_events, .ie9 .calendar-new .tl-date .cal_events {
        overflow: hidden; }
    .calendar-new .tl-date .day {
      display: none; }
    .calendar-new .tl-date .date {
      position: absolute;
      top: 0px;
      left: 0px;
      height: 38px;
      width: 38px;
      font-weight: 500;
      font-size: 15px;
      line-height: 35px;
      text-align: center;
      border: 3px solid transparent; }
      .calendar-new .tl-date .date .weekday {
        display: none;
        padding-left: 12px;
        color: #ccc;
        font-weight: 400; }
      @media screen and (max-width: 767px) {
        .calendar-new .tl-date .date {
          right: auto; } }
    .calendar-new .tl-date[data-weekday="0"] {
      clear: left; }
    .calendar-new .tl-date .month {
      position: absolute;
      top: 0px;
      left: 0px;
      width: 100%;
      background: #CC2E53;
      height: 42px;
      color: white;
      font-family: "Nunito Sans", sans-serif;
      font-size: 14px;
      line-height: 42px;
      padding: 0 15px;
      letter-spacing: 0.08em;
      display: none; }
    .calendar-new .tl-date h3 {
      margin-bottom: 5px;
      line-height: 1.1;
      overflow: hidden; }
      .calendar-new .tl-date h3 a {
        font-size: 22px;
        line-height: inherit;
        word-wrap: break-word;
        -webkit-font-smoothing: antialiased;
        font-smoothing: antialiased;
        color: #28282A; }
        .calendar-new .tl-date h3 a:hover {
          color: #CC2E53; }
    .calendar-new .tl-date h4 {
      font-weight: 300;
      font-size: 14px;
      -webkit-font-smoothing: antialiased;
      font-smoothing: antialiased;
      color: #28282A; }
    .calendar-new .tl-date .time {
      color: #6D6E72;
      font-size: 12px;
      font-weight: 600;
      z-index: 10;
      letter-spacing: 0.04em; }
    .calendar-new .tl-date.hasEvent .date {
      color: #CC2E53;
      background: transparent;
      border: 3px solid #CC2E53; }
    @media screen and (max-width: 767px) {
      .calendar-new .tl-date.hasEvent .date .weekday {
        display: inline; } }
  .calendar-new .additional_events .tl-date[data-weekday="0"] {
    clear: left; }
  .calendar-new .tooltip_content,
  .calendar-new .modal_content {
    display: none; }

.calendar_tooltip {
  z-index: 100;
  width: 250px;
  background: white; }
  .calendar_tooltip .thumb {
    width: 100%; }
    .calendar_tooltip .thumb img {
      width: 100%; }
  .calendar_tooltip .info {
    padding: 20px; }

.calendar_modal {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 400px;
  height: 300px;
  overflow-y: auto;
  background: #fff; }

.calendar.calendar_listing {
  display: none; }
  .calendar.calendar_listing.calendar_view {
    display: block; }

/* ----------------------------------------------------------------------------
=Showtime Page Content
----------------------------------------------------------------------------- */
.breadcrumbs {
  display: none; }

.content_item {
  margin-bottom: 40px; }

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

.content_item, .contest_detail .link, .contest_detail .faq {
  max-width: 855px;
  margin: 0 auto 40px;
  padding: 0; }
  @media screen and (max-width: 1080px) {
    .content_item, .contest_detail .link, .contest_detail .faq {
      padding: 0 20px; } }
  .content_item:first-child.slide, .content_item:first-child.map, .contest_detail .link:first-child.slide, .contest_detail .link:first-child.map, .contest_detail .faq:first-child.slide, .contest_detail .faq:first-child.map {
    width: 100%;
    max-width: 100%;
    margin-bottom: 50px;
    padding: 0; }
    .content_item:first-child.slide img, .content_item:first-child.map img, .contest_detail .link:first-child.slide img, .contest_detail .link:first-child.map img, .contest_detail .faq:first-child.slide img, .contest_detail .faq:first-child.map img {
      width: 100%; }

.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: 767px) {
        .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: 767px) {
        .content img[align=right], .content img.right {
          float: none;
          margin: 0 auto 20px;
          display: block; } }

.two-column {
  zoom: 1; }
  .two-column:before, .two-column:after {
    display: block;
    visibility: hidden;
    height: 0;
    content: '\0020'; }
  .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: '\0020'; }
    .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: 767px) {
        .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: '\0020'; }
  .side-by-side:after {
    clear: both; }
  .side-by-side:nth-child(2n+1) {
    clear: left; }
  @media screen and (max-width: 767px) {
    .side-by-side {
      width: 100%;
      float: none; } }

/* ----------------------------------------------------------------------------
= Spotlight list style
----------------------------------------------------------------------------- */
.spotlight,
.concierge,
.news_list,
.contest_list,
.job_list,
.seating_charts,
.gallery-listing,
.offer_list {
  clear: both; }
  .spotlight .entry,
  .concierge .entry,
  .news_list .entry,
  .contest_list .entry,
  .job_list .entry,
  .seating_charts .entry,
  .gallery-listing .entry,
  .offer_list .entry {
    zoom: 1;
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #D7D7D8; }
    .spotlight .entry:before, .spotlight .entry:after,
    .concierge .entry:before,
    .concierge .entry:after,
    .news_list .entry:before,
    .news_list .entry:after,
    .contest_list .entry:before,
    .contest_list .entry:after,
    .job_list .entry:before,
    .job_list .entry:after,
    .seating_charts .entry:before,
    .seating_charts .entry:after,
    .gallery-listing .entry:before,
    .gallery-listing .entry:after,
    .offer_list .entry:before,
    .offer_list .entry:after {
      display: block;
      visibility: hidden;
      height: 0;
      content: '\0020'; }
    .spotlight .entry:after,
    .concierge .entry:after,
    .news_list .entry:after,
    .contest_list .entry:after,
    .job_list .entry:after,
    .seating_charts .entry:after,
    .gallery-listing .entry:after,
    .offer_list .entry:after {
      clear: both; }
    .spotlight .entry:last-child,
    .concierge .entry:last-child,
    .news_list .entry:last-child,
    .contest_list .entry:last-child,
    .job_list .entry:last-child,
    .seating_charts .entry:last-child,
    .gallery-listing .entry:last-child,
    .offer_list .entry:last-child {
      margin-bottom: 0; }
  .spotlight .thumb,
  .concierge .thumb,
  .news_list .thumb,
  .contest_list .thumb,
  .job_list .thumb,
  .seating_charts .thumb,
  .gallery-listing .thumb,
  .offer_list .thumb {
    min-width: 150px;
    width: 230px;
    height: 230px;
    margin: 0 40px 0px 0;
    float: left;
    border-radius: 50%;
    position: relative;
    overflow: hidden; }
    .spotlight .thumb a,
    .concierge .thumb a,
    .news_list .thumb a,
    .contest_list .thumb a,
    .job_list .thumb a,
    .seating_charts .thumb a,
    .gallery-listing .thumb a,
    .offer_list .thumb a {
      position: relative;
      height: 100%;
      width: 100%;
      zoom: 1;
      display: block;
      opacity: 1; }
      .spotlight .thumb a:before, .spotlight .thumb a:after,
      .concierge .thumb a:before,
      .concierge .thumb a:after,
      .news_list .thumb a:before,
      .news_list .thumb a:after,
      .contest_list .thumb a:before,
      .contest_list .thumb a:after,
      .job_list .thumb a:before,
      .job_list .thumb a:after,
      .seating_charts .thumb a:before,
      .seating_charts .thumb a:after,
      .gallery-listing .thumb a:before,
      .gallery-listing .thumb a:after,
      .offer_list .thumb a:before,
      .offer_list .thumb a:after {
        display: block;
        visibility: hidden;
        height: 0;
        content: '\0020'; }
      .spotlight .thumb a:after,
      .concierge .thumb a:after,
      .news_list .thumb a:after,
      .contest_list .thumb a:after,
      .job_list .thumb a:after,
      .seating_charts .thumb a:after,
      .gallery-listing .thumb a:after,
      .offer_list .thumb a:after {
        clear: both; }
      .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,
      .gallery-listing .thumb a:hover,
      .offer_list .thumb a:hover {
        opacity: 1;
        -webkit-filter: grayscale(100%);
                filter: grayscale(100%); }
    .spotlight .thumb img,
    .concierge .thumb img,
    .news_list .thumb img,
    .contest_list .thumb img,
    .job_list .thumb img,
    .seating_charts .thumb img,
    .gallery-listing .thumb img,
    .offer_list .thumb img {
      display: block;
      height: 100%;
      position: absolute;
      top: 0;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      left: 50%; }
    @media screen and (max-width: 767px) {
      .spotlight .thumb,
      .concierge .thumb,
      .news_list .thumb,
      .contest_list .thumb,
      .job_list .thumb,
      .seating_charts .thumb,
      .gallery-listing .thumb,
      .offer_list .thumb {
        margin: 0 auto 20px;
        float: none; } }
  .spotlight .info,
  .concierge .info,
  .news_list .info,
  .contest_list .info,
  .job_list .info,
  .seating_charts .info,
  .gallery-listing .info,
  .offer_list .info {
    float: left;
    width: 100%;
    display: block; }
    .spotlight .info p, .spotlight .info ul,
    .concierge .info p,
    .concierge .info ul,
    .news_list .info p,
    .news_list .info ul,
    .contest_list .info p,
    .contest_list .info ul,
    .job_list .info p,
    .job_list .info ul,
    .seating_charts .info p,
    .seating_charts .info ul,
    .gallery-listing .info p,
    .gallery-listing .info ul,
    .offer_list .info p,
    .offer_list .info ul {
      margin-bottom: 20px; }
    @media screen and (max-width: 767px) {
      .spotlight .info,
      .concierge .info,
      .news_list .info,
      .contest_list .info,
      .job_list .info,
      .seating_charts .info,
      .gallery-listing .info,
      .offer_list .info {
        margin: 0 auto 20px;
        float: none;
        text-align: center; }
        .spotlight .info li,
        .concierge .info li,
        .news_list .info li,
        .contest_list .info li,
        .job_list .info li,
        .seating_charts .info li,
        .gallery-listing .info li,
        .offer_list .info li {
          text-align: left; } }
  .spotlight .thumb + .info,
  .concierge .thumb + .info,
  .news_list .thumb + .info,
  .contest_list .thumb + .info,
  .job_list .thumb + .info,
  .seating_charts .thumb + .info,
  .gallery-listing .thumb + .info,
  .offer_list .thumb + .info {
    width: calc(100% - (230px + 40px)); }
    @media screen and (max-width: 767px) {
      .spotlight .thumb + .info,
      .concierge .thumb + .info,
      .news_list .thumb + .info,
      .contest_list .thumb + .info,
      .job_list .thumb + .info,
      .seating_charts .thumb + .info,
      .gallery-listing .thumb + .info,
      .offer_list .thumb + .info {
        width: 100%; } }
  .spotlight .date,
  .concierge .date,
  .news_list .date,
  .contest_list .date,
  .job_list .date,
  .seating_charts .date,
  .gallery-listing .date,
  .offer_list .date {
    position: relative; }
    .spotlight .date:before,
    .concierge .date:before,
    .news_list .date:before,
    .contest_list .date:before,
    .job_list .date:before,
    .seating_charts .date:before,
    .gallery-listing .date:before,
    .offer_list .date:before {
      vertical-align: middle;
      display: inline-block;
      content: '';
      border-bottom: 3px solid #CC2E53;
      width: 25px;
      line-height: 21px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      margin-right: 10px; }
  .spotlight h3 a, .spotlight h3.title a, .spotlight .title a,
  .concierge h3 a,
  .concierge h3.title a,
  .concierge .title a,
  .news_list h3 a,
  .news_list h3.title a,
  .news_list .title a,
  .contest_list h3 a,
  .contest_list h3.title a,
  .contest_list .title a,
  .job_list h3 a,
  .job_list h3.title a,
  .job_list .title a,
  .seating_charts h3 a,
  .seating_charts h3.title a,
  .seating_charts .title a,
  .gallery-listing h3 a,
  .gallery-listing h3.title a,
  .gallery-listing .title a,
  .offer_list h3 a,
  .offer_list h3.title a,
  .offer_list .title a {
    color: #28282A; }
    .spotlight h3 a:hover, .spotlight h3.title a:hover, .spotlight .title a:hover,
    .concierge h3 a:hover,
    .concierge h3.title a:hover,
    .concierge .title a:hover,
    .news_list h3 a:hover,
    .news_list h3.title a:hover,
    .news_list .title a:hover,
    .contest_list h3 a:hover,
    .contest_list h3.title a:hover,
    .contest_list .title a:hover,
    .job_list h3 a:hover,
    .job_list h3.title a:hover,
    .job_list .title a:hover,
    .seating_charts h3 a:hover,
    .seating_charts h3.title a:hover,
    .seating_charts .title a:hover,
    .gallery-listing h3 a:hover,
    .gallery-listing h3.title a:hover,
    .gallery-listing .title a:hover,
    .offer_list h3 a:hover,
    .offer_list h3.title a:hover,
    .offer_list .title a:hover {
      color: #CC2E53; }
  .spotlight .buttons a, .spotlight .links a,
  .concierge .buttons a,
  .concierge .links a,
  .news_list .buttons a,
  .news_list .links a,
  .contest_list .buttons a,
  .contest_list .links a,
  .job_list .buttons a,
  .job_list .links a,
  .seating_charts .buttons a,
  .seating_charts .links a,
  .gallery-listing .buttons a,
  .gallery-listing .links a,
  .offer_list .buttons a,
  .offer_list .links a {
    margin: 0 20px 0 0; }
  .spotlight .buttons .button, .spotlight .links .button,
  .concierge .buttons .button,
  .concierge .links .button,
  .news_list .buttons .button,
  .news_list .links .button,
  .contest_list .buttons .button,
  .contest_list .links .button,
  .job_list .buttons .button,
  .job_list .links .button,
  .seating_charts .buttons .button,
  .seating_charts .links .button,
  .gallery-listing .buttons .button,
  .gallery-listing .links .button,
  .offer_list .buttons .button,
  .offer_list .links .button {
    border: 3px solid #CC2E53; }
    .spotlight .buttons .button:hover, .spotlight .links .button:hover,
    .concierge .buttons .button:hover,
    .concierge .links .button:hover,
    .news_list .buttons .button:hover,
    .news_list .links .button:hover,
    .contest_list .buttons .button:hover,
    .contest_list .links .button:hover,
    .job_list .buttons .button:hover,
    .job_list .links .button:hover,
    .seating_charts .buttons .button:hover,
    .seating_charts .links .button:hover,
    .gallery-listing .buttons .button:hover,
    .gallery-listing .links .button:hover,
    .offer_list .buttons .button:hover,
    .offer_list .links .button:hover {
      background-color: #CC2E53;
      color: #fff; }
    .spotlight .buttons .button:active, .spotlight .links .button:active,
    .concierge .buttons .button:active,
    .concierge .links .button:active,
    .news_list .buttons .button:active,
    .news_list .links .button:active,
    .contest_list .buttons .button:active,
    .contest_list .links .button:active,
    .job_list .buttons .button:active,
    .job_list .links .button:active,
    .seating_charts .buttons .button:active,
    .seating_charts .links .button:active,
    .gallery-listing .buttons .button:active,
    .gallery-listing .links .button:active,
    .offer_list .buttons .button:active,
    .offer_list .links .button:active {
      background-color: transparent;
      color: #CC2E53; }
  @media screen and (max-width: 767px) {
    .spotlight .buttons, .spotlight .links,
    .concierge .buttons,
    .concierge .links,
    .news_list .buttons,
    .news_list .links,
    .contest_list .buttons,
    .contest_list .links,
    .job_list .buttons,
    .job_list .links,
    .seating_charts .buttons,
    .seating_charts .links,
    .gallery-listing .buttons,
    .gallery-listing .links,
    .offer_list .buttons,
    .offer_list .links {
      margin: 0 auto 20px;
      float: none;
      text-align: center; }
      .spotlight .buttons a, .spotlight .links a,
      .concierge .buttons a,
      .concierge .links a,
      .news_list .buttons a,
      .news_list .links a,
      .contest_list .buttons a,
      .contest_list .links a,
      .job_list .buttons a,
      .job_list .links a,
      .seating_charts .buttons a,
      .seating_charts .links a,
      .gallery-listing .buttons a,
      .gallery-listing .links a,
      .offer_list .buttons a,
      .offer_list .links a {
        margin: 0 10px; } }
  .spotlight .links a,
  .concierge .links a,
  .news_list .links a,
  .contest_list .links a,
  .job_list .links a,
  .seating_charts .links a,
  .gallery-listing .links a,
  .offer_list .links a {
    margin-top: 10px; }
  .spotlight[data-layout="square"],
  .concierge[data-layout="square"],
  .news_list[data-layout="square"],
  .contest_list[data-layout="square"],
  .job_list[data-layout="square"],
  .seating_charts[data-layout="square"],
  .gallery-listing[data-layout="square"],
  .offer_list[data-layout="square"] {
    zoom: 1;
    width: 100%;
    margin: 0 auto 40px;
    border-top: none; }
    .spotlight[data-layout="square"]:before, .spotlight[data-layout="square"]:after,
    .concierge[data-layout="square"]:before,
    .concierge[data-layout="square"]:after,
    .news_list[data-layout="square"]:before,
    .news_list[data-layout="square"]:after,
    .contest_list[data-layout="square"]:before,
    .contest_list[data-layout="square"]:after,
    .job_list[data-layout="square"]:before,
    .job_list[data-layout="square"]:after,
    .seating_charts[data-layout="square"]:before,
    .seating_charts[data-layout="square"]:after,
    .gallery-listing[data-layout="square"]:before,
    .gallery-listing[data-layout="square"]:after,
    .offer_list[data-layout="square"]:before,
    .offer_list[data-layout="square"]:after {
      display: block;
      visibility: hidden;
      height: 0;
      content: '\0020'; }
    .spotlight[data-layout="square"]:after,
    .concierge[data-layout="square"]:after,
    .news_list[data-layout="square"]:after,
    .contest_list[data-layout="square"]:after,
    .job_list[data-layout="square"]:after,
    .seating_charts[data-layout="square"]:after,
    .gallery-listing[data-layout="square"]:after,
    .offer_list[data-layout="square"]:after {
      clear: both; }
    @media screen and (min-width: 768px) {
      .spotlight[data-layout="square"],
      .concierge[data-layout="square"],
      .news_list[data-layout="square"],
      .contest_list[data-layout="square"],
      .job_list[data-layout="square"],
      .seating_charts[data-layout="square"],
      .gallery-listing[data-layout="square"],
      .offer_list[data-layout="square"] {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
    .spotlight[data-layout="square"] .entry,
    .concierge[data-layout="square"] .entry,
    .news_list[data-layout="square"] .entry,
    .contest_list[data-layout="square"] .entry,
    .job_list[data-layout="square"] .entry,
    .seating_charts[data-layout="square"] .entry,
    .gallery-listing[data-layout="square"] .entry,
    .offer_list[data-layout="square"] .entry {
      width: 100%;
      float: left;
      padding: 0 20px 60px;
      border: none;
      margin: 0 0 40px;
      position: relative;
      border-bottom: 1px solid #D7D7D8; }
      .spotlight[data-layout="square"] .entry .info .content,
      .concierge[data-layout="square"] .entry .info .content,
      .news_list[data-layout="square"] .entry .info .content,
      .contest_list[data-layout="square"] .entry .info .content,
      .job_list[data-layout="square"] .entry .info .content,
      .seating_charts[data-layout="square"] .entry .info .content,
      .gallery-listing[data-layout="square"] .entry .info .content,
      .offer_list[data-layout="square"] .entry .info .content {
        display: none; }
      .spotlight[data-layout="square"] .entry .thumb,
      .concierge[data-layout="square"] .entry .thumb,
      .news_list[data-layout="square"] .entry .thumb,
      .contest_list[data-layout="square"] .entry .thumb,
      .job_list[data-layout="square"] .entry .thumb,
      .seating_charts[data-layout="square"] .entry .thumb,
      .gallery-listing[data-layout="square"] .entry .thumb,
      .offer_list[data-layout="square"] .entry .thumb {
        display: block;
        width: 100%;
        margin-bottom: 20px;
        max-width: 230px;
        float: none;
        margin: 0 auto 20px; }
        .spotlight[data-layout="square"] .entry .thumb:after,
        .concierge[data-layout="square"] .entry .thumb:after,
        .news_list[data-layout="square"] .entry .thumb:after,
        .contest_list[data-layout="square"] .entry .thumb:after,
        .job_list[data-layout="square"] .entry .thumb:after,
        .seating_charts[data-layout="square"] .entry .thumb:after,
        .gallery-listing[data-layout="square"] .entry .thumb:after,
        .offer_list[data-layout="square"] .entry .thumb:after {
          display: none; }
      .spotlight[data-layout="square"] .entry .info,
      .concierge[data-layout="square"] .entry .info,
      .news_list[data-layout="square"] .entry .info,
      .contest_list[data-layout="square"] .entry .info,
      .job_list[data-layout="square"] .entry .info,
      .seating_charts[data-layout="square"] .entry .info,
      .gallery-listing[data-layout="square"] .entry .info,
      .offer_list[data-layout="square"] .entry .info {
        width: 100%;
        display: block;
        text-align: center;
        padding: 0; }
      .spotlight[data-layout="square"] .entry .title:before,
      .concierge[data-layout="square"] .entry .title:before,
      .news_list[data-layout="square"] .entry .title:before,
      .contest_list[data-layout="square"] .entry .title:before,
      .job_list[data-layout="square"] .entry .title:before,
      .seating_charts[data-layout="square"] .entry .title:before,
      .gallery-listing[data-layout="square"] .entry .title:before,
      .offer_list[data-layout="square"] .entry .title:before {
        display: none; }
      .spotlight[data-layout="square"] .entry .button,
      .concierge[data-layout="square"] .entry .button,
      .news_list[data-layout="square"] .entry .button,
      .contest_list[data-layout="square"] .entry .button,
      .job_list[data-layout="square"] .entry .button,
      .seating_charts[data-layout="square"] .entry .button,
      .gallery-listing[data-layout="square"] .entry .button,
      .offer_list[data-layout="square"] .entry .button {
        position: absolute;
        bottom: 0;
        width: 100%;
        left: 0; }
      @media screen and (max-width: 767px) {
        .spotlight[data-layout="square"] .entry,
        .concierge[data-layout="square"] .entry,
        .news_list[data-layout="square"] .entry,
        .contest_list[data-layout="square"] .entry,
        .job_list[data-layout="square"] .entry,
        .seating_charts[data-layout="square"] .entry,
        .gallery-listing[data-layout="square"] .entry,
        .offer_list[data-layout="square"] .entry {
          padding-bottom: 20px; }
          .spotlight[data-layout="square"] .entry .button,
          .concierge[data-layout="square"] .entry .button,
          .news_list[data-layout="square"] .entry .button,
          .contest_list[data-layout="square"] .entry .button,
          .job_list[data-layout="square"] .entry .button,
          .seating_charts[data-layout="square"] .entry .button,
          .gallery-listing[data-layout="square"] .entry .button,
          .offer_list[data-layout="square"] .entry .button {
            position: relative;
            bottom: auto;
            width: auto; } }
      @media screen and (min-width: 768px) {
        .spotlight[data-layout="square"] .entry,
        .concierge[data-layout="square"] .entry,
        .news_list[data-layout="square"] .entry,
        .contest_list[data-layout="square"] .entry,
        .job_list[data-layout="square"] .entry,
        .seating_charts[data-layout="square"] .entry,
        .gallery-listing[data-layout="square"] .entry,
        .offer_list[data-layout="square"] .entry {
          width: 50%;
          margin: 0 0 30px;
          padding: 0 30px 70px; }
          .spotlight[data-layout="square"] .entry:nth-child(odd),
          .concierge[data-layout="square"] .entry:nth-child(odd),
          .news_list[data-layout="square"] .entry:nth-child(odd),
          .contest_list[data-layout="square"] .entry:nth-child(odd),
          .job_list[data-layout="square"] .entry:nth-child(odd),
          .seating_charts[data-layout="square"] .entry:nth-child(odd),
          .gallery-listing[data-layout="square"] .entry:nth-child(odd),
          .offer_list[data-layout="square"] .entry:nth-child(odd) {
            clear: left; }
          .spotlight[data-layout="square"] .entry .button,
          .concierge[data-layout="square"] .entry .button,
          .news_list[data-layout="square"] .entry .button,
          .contest_list[data-layout="square"] .entry .button,
          .job_list[data-layout="square"] .entry .button,
          .seating_charts[data-layout="square"] .entry .button,
          .gallery-listing[data-layout="square"] .entry .button,
          .offer_list[data-layout="square"] .entry .button {
            bottom: 30px;
            width: 230px;
            left: 50%;
            margin-left: -115px; } }
      @media screen and (min-width: 1081px) {
        .spotlight[data-layout="square"] .entry,
        .concierge[data-layout="square"] .entry,
        .news_list[data-layout="square"] .entry,
        .contest_list[data-layout="square"] .entry,
        .job_list[data-layout="square"] .entry,
        .seating_charts[data-layout="square"] .entry,
        .gallery-listing[data-layout="square"] .entry,
        .offer_list[data-layout="square"] .entry {
          width: 33.3333%;
          padding: 0 30px 70px; }
          .spotlight[data-layout="square"] .entry:nth-child(odd),
          .concierge[data-layout="square"] .entry:nth-child(odd),
          .news_list[data-layout="square"] .entry:nth-child(odd),
          .contest_list[data-layout="square"] .entry:nth-child(odd),
          .job_list[data-layout="square"] .entry:nth-child(odd),
          .seating_charts[data-layout="square"] .entry:nth-child(odd),
          .gallery-listing[data-layout="square"] .entry:nth-child(odd),
          .offer_list[data-layout="square"] .entry:nth-child(odd) {
            clear: none; }
          .spotlight[data-layout="square"] .entry:nth-child(3n+1),
          .concierge[data-layout="square"] .entry:nth-child(3n+1),
          .news_list[data-layout="square"] .entry:nth-child(3n+1),
          .contest_list[data-layout="square"] .entry:nth-child(3n+1),
          .job_list[data-layout="square"] .entry:nth-child(3n+1),
          .seating_charts[data-layout="square"] .entry:nth-child(3n+1),
          .gallery-listing[data-layout="square"] .entry:nth-child(3n+1),
          .offer_list[data-layout="square"] .entry:nth-child(3n+1) {
            clear: left; }
          .spotlight[data-layout="square"] .entry .button,
          .concierge[data-layout="square"] .entry .button,
          .news_list[data-layout="square"] .entry .button,
          .contest_list[data-layout="square"] .entry .button,
          .job_list[data-layout="square"] .entry .button,
          .seating_charts[data-layout="square"] .entry .button,
          .gallery-listing[data-layout="square"] .entry .button,
          .offer_list[data-layout="square"] .entry .button {
            width: 230px;
            left: 50%;
            margin-left: -115px;
            bottom: 30px; } }

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

.seating_charts .thumb {
  border: 1px solid #D7D7D8;
  border-radius: 50%; }

@media screen and (min-width: 768px) {
  .seating_charts .entry {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; }
    .seating_charts .entry .info {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
         -moz-box-orient: vertical;
         -moz-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: justify;
         -moz-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }

/* ----------------------------------------------------------------------------
= Showtime Homepage Overlay
----------------------------------------------------------------------------- */
@media screen and (max-width: 767px) {
  #meerkat-wrap {
    position: absolute !important; } }

#overlay_container {
  display: none;
  padding: 100px 0 0; }
  #overlay_container .close-overlay {
    border: none;
    position: absolute;
    display: block;
    z-index: 50;
    top: -25px;
    right: -25px;
    width: 50px;
    height: 50px;
    background: url(../images/button_close.png) no-repeat center center;
    cursor: pointer; }
    @media screen and (max-width: 767px) {
      #overlay_container .close-overlay {
        right: 0; } }
    .user-is-tabbing #overlay_container .close-overlay:focus {
      outline: 1px solid #fff; }
  #overlay_container a, #overlay_container a:link, #overlay_container a:visited {
    position: relative;
    display: block;
    z-index: 10;
    max-width: 1000px;
    height: auto;
    outline-width: 5px; }
    #overlay_container a img, #overlay_container a:link img, #overlay_container a:visited img {
      width: 100%;
      height: auto;
      display: block; }

.overlay_content {
  position: relative;
  width: 95%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
  padding: 0; }

.close-overlay-bg {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0; }

.dontshow-overlay {
  border: none;
  width: 100%;
  padding: 10px 0;
  color: #fff;
  background: #9B233F;
  font: 800 20px/140% "Nunito Sans", sans-serif;
  line-height: 25px;
  cursor: pointer;
  text-align: center; }
  .dontshow-overlay:hover {
    color: #fff;
    background: #CC2E53; }

/* ----------------------------------------------------------------------------
= Homepage items and layout
----------------------------------------------------------------------------- */
.user-is-tabbing .accessibility_links {
  position: fixed; }
  .user-is-tabbing .accessibility_links.is-focused {
    width: 100% !important;
    height: auto !important;
    max-height: 100vh;
    overflow: auto;
    background: #CC2E53;
    top: 0;
    left: 0;
    z-index: 10100; }
    .user-is-tabbing .accessibility_links.is-focused ul {
      padding: 10px;
      zoom: 1; }
      .user-is-tabbing .accessibility_links.is-focused ul:before, .user-is-tabbing .accessibility_links.is-focused ul:after {
        display: block;
        visibility: hidden;
        height: 0;
        content: '\0020'; }
      .user-is-tabbing .accessibility_links.is-focused ul:after {
        clear: both; }
      @media screen and (min-width: 768px) {
        .user-is-tabbing .accessibility_links.is-focused ul {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-line-pack: start;
              align-content: flex-start;
          -webkit-box-align: start;
             -moz-box-align: start;
              -ms-flex-align: start;
                  align-items: flex-start;
          -webkit-box-pack: start;
             -moz-box-pack: start;
              -ms-flex-pack: start;
                  justify-content: flex-start; } }
      @media screen and (min-width: 768px) {
        .user-is-tabbing .accessibility_links.is-focused ul li {
          margin: 0 10px; }
          .user-is-tabbing .accessibility_links.is-focused ul li:first-child {
            margin-right: auto; } }
      .user-is-tabbing .accessibility_links.is-focused ul li a {
        font-size: 18px;
        color: #fff;
        font-weight: 700; }

@media screen and (min-width: 965px) {
  .home.user-is-tabbing .featured_events_section > .eventList__wrapper .secondary_event:first-child {
    margin-top: -110px; } }

@media screen and (min-width: 1200px) {
  .home.user-is-tabbing .featured_events_section > .eventList__wrapper .secondary_event:first-child {
    margin-top: 0; } }

.home.user-is-tabbing .featured_events_section > .upcoming-title__wrapper {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  zoom: 1;
  opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100); }
  @media screen and (min-width: 1440px) {
    .home.user-is-tabbing .featured_events_section > .upcoming-title__wrapper {
      -webkit-transform: translate(-50%, 50%) rotate(90deg) translate(calc(50% + 20px), -50%);
              transform: translate(-50%, 50%) rotate(90deg) translate(calc(50% + 20px), -50%); } }

.home .full_column {
  background: none;
  max-width: none;
  margin-bottom: 0; }

.home .full_column_wrapper {
  position: relative;
  overflow: hidden; }
  .home .full_column_wrapper:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    visibility: visible;
    z-index: 1;
    border-bottom: 80vw solid transparent;
    border-right: 100vw solid transparent;
    border-left: 100vw solid #F1F1F2; }
    @media screen and (min-width: 600px) {
      .home .full_column_wrapper:before {
        border-bottom: 70vw solid transparent;
        border-right: 90vw solid transparent;
        border-left: 90vw solid #F1F1F2; } }
    @media screen and (min-width: 1200px) {
      .home .full_column_wrapper:before {
        border-bottom: 40vw solid transparent;
        border-right: 60vw solid transparent;
        border-left: 60vw solid #F1F1F2; } }
  .home .full_column_wrapper:after {
    content: '';
    position: absolute;
    bottom: 0px;
    right: 0px;
    border-top: 40vw solid transparent;
    border-left: 60vw solid transparent;
    border-right: 60vw solid #F1F1F2;
    visibility: visible;
    z-index: 1;
    border-top: 80vw solid transparent;
    border-left: 100vw solid transparent;
    border-right: 100vw solid #F1F1F2; }
    @media screen and (min-width: 600px) {
      .home .full_column_wrapper:after {
        border-top: 70vw solid transparent;
        border-left: 90vw solid transparent;
        border-right: 90vw solid #F1F1F2; } }
    @media screen and (min-width: 1200px) {
      .home .full_column_wrapper:after {
        border-top: 40vw solid transparent;
        border-left: 60vw solid transparent;
        border-right: 60vw solid #F1F1F2; } }
  .home .full_column_wrapper .full_column {
    position: relative;
    z-index: 2;
    background: none; }

.home #content #venue_widgets_framework {
  margin: auto;
  padding: 40px 0px 100px; }

.home .widget_section_wrapper {
  position: relative;
  background: #F1F1F2;
  overflow: hidden; }
  .home .widget_section_wrapper:before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    border-bottom: 40vw solid transparent;
    border-right: 60vw solid transparent;
    border-left: 60vw solid #FFFFFF;
    visibility: visible;
    z-index: 1;
    display: none; }
    @media screen and (min-width: 600px) {
      .home .widget_section_wrapper:before {
        display: block;
        border-bottom: 70vw solid transparent;
        border-right: 90vw solid transparent;
        border-left: 90vw solid #FFFFFF; } }
    @media screen and (min-width: 1200px) {
      .home .widget_section_wrapper:before {
        border-bottom: 40vw solid transparent;
        border-right: 60vw solid transparent;
        border-left: 60vw solid #FFFFFF; } }

.home .featured_events_section {
  position: relative; }
  @media screen and (min-width: 965px) {
    .home .featured_events_section > .eventList__wrapper {
      margin-top: -10px; } }
  @media screen and (min-width: 1200px) {
    .home .featured_events_section > .eventList__wrapper {
      margin-top: -60px; } }
  @media screen and (min-width: 1440px) {
    .home .featured_events_section > .eventList__wrapper {
      margin-top: 0; } }
  @media screen and (min-width: 965px) {
    .home .featured_events_section > .eventList__wrapper .secondary_event.move-it:first-child {
      margin-top: -110px; } }
  @media screen and (min-width: 1200px) {
    .home .featured_events_section > .eventList__wrapper .secondary_event.move-it:first-child {
      margin-top: 0; } }
  .home .featured_events_section > .upcoming-title__wrapper {
    -webkit-transition: all 0.6s linear;
    transition: all 0.6s linear;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    zoom: 1;
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    text-align: left;
    line-height: 1;
    margin-bottom: 20px; }
    @media screen and (min-width: 768px) {
      .home .featured_events_section > .upcoming-title__wrapper {
        height: 60px;
        margin-bottom: 30px; } }
    @media screen and (min-width: 965px) {
      .home .featured_events_section > .upcoming-title__wrapper {
        height: 120px;
        margin-bottom: 0;
        width: 100%;
        padding: 0; } }
    @media screen and (min-width: 1200px) {
      .home .featured_events_section > .upcoming-title__wrapper {
        text-align: left;
        height: 60px; } }
    @media screen and (min-width: 1440px) {
      .home .featured_events_section > .upcoming-title__wrapper {
        position: absolute;
        bottom: 100%;
        left: 100%;
        margin: 0;
        width: 559px;
        height: 60px;
        -webkit-transform: translate(-50%, 50%) rotate(90deg) translate(calc(50% + 120px), -50%);
                transform: translate(-50%, 50%) rotate(90deg) translate(calc(50% + 120px), -50%); } }
    .home .featured_events_section > .upcoming-title__wrapper.move-it {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      zoom: 1;
      opacity: 1;
      -moz-opacity: 1;
      filter: alpha(opacity=100); }
      @media screen and (min-width: 1440px) {
        .home .featured_events_section > .upcoming-title__wrapper.move-it {
          -webkit-transform: translate(-50%, 50%) rotate(90deg) translate(calc(50% + 20px), -50%);
                  transform: translate(-50%, 50%) rotate(90deg) translate(calc(50% + 20px), -50%); } }
    .home .featured_events_section > .upcoming-title__wrapper .h3.title, .home .featured_events_section > .upcoming-title__wrapper .spotlight .title, .spotlight .home .featured_events_section > .upcoming-title__wrapper .title,
    .home .featured_events_section > .upcoming-title__wrapper .concierge .title, .concierge .home .featured_events_section > .upcoming-title__wrapper .title,
    .home .featured_events_section > .upcoming-title__wrapper .news_list .title, .news_list .home .featured_events_section > .upcoming-title__wrapper .title,
    .home .featured_events_section > .upcoming-title__wrapper .contest_list .title, .contest_list .home .featured_events_section > .upcoming-title__wrapper .title,
    .home .featured_events_section > .upcoming-title__wrapper .job_list .title, .job_list .home .featured_events_section > .upcoming-title__wrapper .title,
    .home .featured_events_section > .upcoming-title__wrapper .seating_charts .title, .seating_charts .home .featured_events_section > .upcoming-title__wrapper .title,
    .home .featured_events_section > .upcoming-title__wrapper .gallery-listing .title, .gallery-listing .home .featured_events_section > .upcoming-title__wrapper .title,
    .home .featured_events_section > .upcoming-title__wrapper .offer_list .title, .offer_list .home .featured_events_section > .upcoming-title__wrapper .title, .home .featured_events_section > .upcoming-title__wrapper .sitemap .column > ul > li > a.title, .sitemap .home .featured_events_section > .upcoming-title__wrapper .column > ul > li > a.title {
      text-transform: uppercase;
      font-weight: 800;
      font-size: 57px; }
      @media screen and (max-width: 400px) {
        .home .featured_events_section > .upcoming-title__wrapper .h3.title, .home .featured_events_section > .upcoming-title__wrapper .spotlight .title, .spotlight .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .concierge .title, .concierge .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .news_list .title, .news_list .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .contest_list .title, .contest_list .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .job_list .title, .job_list .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .seating_charts .title, .seating_charts .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .gallery-listing .title, .gallery-listing .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .offer_list .title, .offer_list .home .featured_events_section > .upcoming-title__wrapper .title, .home .featured_events_section > .upcoming-title__wrapper .sitemap .column > ul > li > a.title, .sitemap .home .featured_events_section > .upcoming-title__wrapper .column > ul > li > a.title {
          font-size: 43px; } }
      @media screen and (min-width: 768px) {
        .home .featured_events_section > .upcoming-title__wrapper .h3.title, .home .featured_events_section > .upcoming-title__wrapper .spotlight .title, .spotlight .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .concierge .title, .concierge .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .news_list .title, .news_list .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .contest_list .title, .contest_list .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .job_list .title, .job_list .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .seating_charts .title, .seating_charts .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .gallery-listing .title, .gallery-listing .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .offer_list .title, .offer_list .home .featured_events_section > .upcoming-title__wrapper .title, .home .featured_events_section > .upcoming-title__wrapper .sitemap .column > ul > li > a.title, .sitemap .home .featured_events_section > .upcoming-title__wrapper .column > ul > li > a.title {
          width: calc(100vw - 40px);
          position: absolute;
          right: calc(-1*(100vw - 570px)/2 + 20px);
          height: 60px;
          top: 0; } }
      @media screen and (min-width: 900px) {
        .home .featured_events_section > .upcoming-title__wrapper .h3.title, .home .featured_events_section > .upcoming-title__wrapper .spotlight .title, .spotlight .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .concierge .title, .concierge .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .news_list .title, .news_list .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .contest_list .title, .contest_list .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .job_list .title, .job_list .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .seating_charts .title, .seating_charts .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .gallery-listing .title, .gallery-listing .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .offer_list .title, .offer_list .home .featured_events_section > .upcoming-title__wrapper .title, .home .featured_events_section > .upcoming-title__wrapper .sitemap .column > ul > li > a.title, .sitemap .home .featured_events_section > .upcoming-title__wrapper .column > ul > li > a.title {
          width: 100%;
          position: static;
          padding: 0; } }
      @media screen and (min-width: 965px) {
        .home .featured_events_section > .upcoming-title__wrapper .h3.title, .home .featured_events_section > .upcoming-title__wrapper .spotlight .title, .spotlight .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .concierge .title, .concierge .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .news_list .title, .news_list .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .contest_list .title, .contest_list .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .job_list .title, .job_list .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .seating_charts .title, .seating_charts .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .gallery-listing .title, .gallery-listing .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .offer_list .title, .offer_list .home .featured_events_section > .upcoming-title__wrapper .title, .home .featured_events_section > .upcoming-title__wrapper .sitemap .column > ul > li > a.title, .sitemap .home .featured_events_section > .upcoming-title__wrapper .column > ul > li > a.title {
          width: 316px;
          padding: 0;
          position: absolute;
          right: -25px;
          top: 0; } }
      @media screen and (min-width: 1200px) {
        .home .featured_events_section > .upcoming-title__wrapper .h3.title, .home .featured_events_section > .upcoming-title__wrapper .spotlight .title, .spotlight .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .concierge .title, .concierge .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .news_list .title, .news_list .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .contest_list .title, .contest_list .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .job_list .title, .job_list .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .seating_charts .title, .seating_charts .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .gallery-listing .title, .gallery-listing .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .offer_list .title, .offer_list .home .featured_events_section > .upcoming-title__wrapper .title, .home .featured_events_section > .upcoming-title__wrapper .sitemap .column > ul > li > a.title, .sitemap .home .featured_events_section > .upcoming-title__wrapper .column > ul > li > a.title {
          width: 588px;
          padding-right: 25px;
          right: 0; } }
      @media screen and (min-width: 1440px) {
        .home .featured_events_section > .upcoming-title__wrapper .h3.title, .home .featured_events_section > .upcoming-title__wrapper .spotlight .title, .spotlight .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .concierge .title, .concierge .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .news_list .title, .news_list .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .contest_list .title, .contest_list .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .job_list .title, .job_list .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .seating_charts .title, .seating_charts .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .gallery-listing .title, .gallery-listing .home .featured_events_section > .upcoming-title__wrapper .title,
        .home .featured_events_section > .upcoming-title__wrapper .offer_list .title, .offer_list .home .featured_events_section > .upcoming-title__wrapper .title, .home .featured_events_section > .upcoming-title__wrapper .sitemap .column > ul > li > a.title, .sitemap .home .featured_events_section > .upcoming-title__wrapper .column > ul > li > a.title {
          width: 100%;
          padding-right: 0;
          right: unset;
          position: static; } }

.home-slideshow .rsDefault.rsFullWidth {
  min-height: calc(100vw * (696 / 1440));
  overflow: hidden; }

.home-slideshow .rsOverflow:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 60%;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(7%, rgba(0, 0, 0, 0.8)), color-stop(98%, transparent));
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 7%, transparent 98%); }

.home-slideshow .rsDefault .rsGCaption .infoBlock {
  background: none; }

.home-slideshow .infoBlock {
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 1200px;
  width: 100%;
  background: none;
  padding: 0 15px;
  padding-bottom: 60px; }
  .home-slideshow .infoBlock h3 {
    font-size: 2.36859rem;
    margin-bottom: 5px; }
    .home-slideshow .infoBlock h3 a {
      color: white; }
      .home-slideshow .infoBlock h3 a:hover {
        color: #CC2E53; }
    @media screen and (max-width: 767px) {
      .home-slideshow .infoBlock h3 {
        font-size: 1.77689rem;
        margin-bottom: 10px; } }
  .home-slideshow .infoBlock .date {
    position: absolute;
    bottom: 0px;
    left: 15px;
    font-weight: 800;
    font-size: 18px;
    color: #ffffff;
    letter-spacing: 0.4px;
    line-height: 21px;
    padding-left: 40px; }
    .home-slideshow .infoBlock .date:before {
      content: '';
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      left: 0;
      width: 25px;
      height: 3px;
      margin-top: -2px;
      background: #CC2E53; }
    @media screen and (max-width: 767px) {
      .home-slideshow .infoBlock .date {
        left: 0px;
        bottom: 25px;
        margin-bottom: 0; } }
    @media screen and (max-width: 400px) {
      .home-slideshow .infoBlock .date {
        font-size: 15px; } }
  .home-slideshow .infoBlock .caption_body {
    font-size: 18px; }
    @media screen and (max-width: 400px) {
      .home-slideshow .infoBlock .caption_body {
        font-size: 15px; } }
  @media screen and (max-width: 767px) {
    .home-slideshow .infoBlock {
      padding: 0; } }

.home-slideshow .buttons {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0px; }
  .home-slideshow .buttons a {
    width: auto;
    clear: none; }
  .home-slideshow .buttons .tickets {
    -webkit-box-ordinal-group: 3;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; }
  .home-slideshow .buttons .more {
    -webkit-box-ordinal-group: 2;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-right: 35px; }

@media screen and (max-width: 767px) {
  .home-slideshow .rsGCaption {
    position: relative;
    bottom: auto;
    left: auto;
    top: auto;
    background: #28282A;
    display: block;
    clear: both;
    padding: 15px 15px 20px 15px; }
    .home-slideshow .rsGCaption .desc {
      position: relative;
      padding-bottom: 62px; }
    .home-slideshow .rsGCaption .buttons {
      position: relative;
      width: 100%;
      -webkit-transform: translateY(0%);
              transform: translateY(0%); } }

.non-intro {
  position: relative;
  padding: 0px 0 0px;
  min-height: calc(100vh + 400px); }
  @media screen and (max-width: 1024px) {
    .non-intro {
      padding-top: 70px; } }
  @media screen and (max-width: 870px) {
    .non-intro {
      padding-top: 0px; } }
  .non-intro .non-intro-inner {
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    padding-top: 130px; }
    @media screen and (min-width: 871px) {
      .non-intro .non-intro-inner {
        position: fixed; } }
    @media screen and (max-width: 1024px) {
      .non-intro .non-intro-inner {
        padding-top: 70px; } }
    @media screen and (max-width: 870px) {
      .non-intro .non-intro-inner {
        padding-top: 0px; } }
    @media screen and (min-width: 871px) {
      .user-is-tabbing .non-intro .non-intro-inner {
        position: relative;
        padding-top: 0; } }
  .non-intro.unlock .non-intro-inner {
    position: relative;
    padding-top: 300px; }
    .user-is-tabbing .non-intro.unlock .non-intro-inner {
      padding-top: 0; }

.intro {
  position: relative;
  top: 0px;
  left: 0px;
  height: 100vh;
  min-height: 750px;
  width: 100vw;
  display: block;
  z-index: 10;
  background-color: white;
  background-size: cover; }
  @media screen and (max-width: 870px) {
    .touch .intro .intro_inner {
      height: calc(100vh - 25px); } }
  @media screen and (max-width: 767px) {
    .touch .intro .intro_inner {
      height: calc(100vh - 100px); } }
  .intro .intro_image {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 100%;
    background: url(../images/bg_intro.jpg) #000 no-repeat;
    background-size: cover; }
    .intro .intro_image:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: block;
      background-image: linear-gradient(-269deg, rgba(0, 0, 0, 0.8) 5%, transparent 95%); }
      @media screen and (max-width: 767px) {
        .intro .intro_image:before {
          background: rgba(0, 0, 0, 0.8); } }
  .intro .intro_inner {
    position: relative;
    max-width: 1200px;
    margin: auto;
    height: 100%; }
    @media screen and (max-width: 767px) {
      .intro .intro_inner {
        height: auto;
        min-height: 100vh;
        background: url(../images/bg_intro.jpg) #000 no-repeat;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-line-pack: center;
            align-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
        .intro .intro_inner:before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          display: block;
          background: rgba(0, 0, 0, 0.8); } }
  .intro .intro_info {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 50%;
    max-width: calc(100% - 400px);
    padding: 20px; }
    .intro .intro_info h1 {
      margin-bottom: 30px;
      color: white; }
    .intro .intro_info p {
      color: #D7D7D8; }
    .intro .intro_info .buttons {
      margin-top: 30px; }
      .intro .intro_info .buttons a {
        color: white; }
    @media screen and (max-width: 767px) {
      .intro .intro_info {
        width: 100%;
        max-width: 100%;
        text-align: center;
        position: relative;
        top: auto;
        padding: 90px 20px 50px;
        -webkit-transform: translateY(0%);
                transform: translateY(0%); }
        .intro .intro_info .button {
          width: 100%; } }
  .intro .scrolldown {
    position: absolute;
    top: calc(100vh - 60px);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 39px;
    height: 40px;
    padding: 0;
    border: none;
    background: none;
    zoom: 1;
    opacity: 0.8;
    -moz-opacity: 0.8;
    filter: alpha(opacity=80);
    -webkit-animation: noticeScroll 2.5s 1 ease-in-out;
            animation: noticeScroll 2.5s 1 ease-in-out;
    -webkit-animation-delay: 2s;
    /* Safari 4.0 - 8.0 */
    animation-delay: 2s;
    outline-color: #fff !important;
    cursor: pointer; }
    .intro .scrolldown .Scroll {
      -webkit-transition: all 100ms linear;
      transition: all 100ms linear; }
    .intro .scrolldown:hover {
      zoom: 1;
      opacity: 1;
      -moz-opacity: 1;
      filter: alpha(opacity=100); }
      .intro .scrolldown:hover .Scroll {
        -webkit-transform: translateY(10px);
                transform: translateY(10px); }
    @media screen and (max-width: 500px) {
      .intro .scrolldown {
        display: none; } }
  @media screen and (max-width: 767px) {
    .intro {
      height: auto;
      min-height: 100vh; } }

@-webkit-keyframes noticeScroll {
  0% {
    bottom: 20px; }
  20% {
    bottom: 30px; }
  40% {
    bottom: 20px; }
  60% {
    bottom: 20px; }
  80% {
    bottom: 30px; }
  100% {
    bottom: 20px; } }

@keyframes noticeScroll {
  0% {
    bottom: 20px; }
  20% {
    bottom: 30px; }
  40% {
    bottom: 20px; }
  60% {
    bottom: 20px; }
  80% {
    bottom: 30px; }
  100% {
    bottom: 20px; } }

.link {
  position: relative; }
  .link ul.list {
    padding: 0;
    max-width: 855px;
    width: 100%;
    margin-left: auto;
    margin-right: auto; }
    .link ul.list li > a, .link ul.list li > span {
      display: block;
      position: relative;
      padding: 5px 0px 0px 55px;
      word-wrap: break-word;
      color: #9B233F;
      font-family: "Nunito Sans", sans-serif;
      font-size: 22px;
      letter-spacing: 0;
      line-height: 43px;
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear;
      /*------------------------------------------------------------
            =Handles all Social Media icons for select social media urls
                -- Twitter | Facebook | Instagram | Pinterest
            ------------------------------------------------------------*/ }
      .link ul.list li > a .link_text, .link ul.list li > span .link_text {
        position: relative;
        font-weight: 600; }
        .link ul.list li > a .link_text:after, .link ul.list li > span .link_text:after {
          content: "";
          width: 100%;
          height: 1px;
          background: #CC2E53;
          position: absolute;
          bottom: 2px;
          right: 0px;
          -webkit-transition: all 200ms linear;
          transition: all 200ms linear; }
      .link ul.list li > a svg, .link ul.list li > span svg {
        -webkit-font-smoothing: antialiased;
        font-smoothing: antialiased;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        left: 0px; }
      .link ul.list li > a svg, .link ul.list li > a svg g, .link ul.list li > span svg, .link ul.list li > span svg g {
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear; }
      .link ul.list li > a:hover, .link ul.list li > span:hover {
        color: #CC2E53; }
        .link ul.list li > a:hover svg, .link ul.list li > a:hover svg path, .link ul.list li > span:hover svg, .link ul.list li > span:hover svg path {
          fill: #CC2E53; }
        .link ul.list li > a:hover .link_text:after, .link ul.list li > span:hover .link_text:after {
          width: 0; }
      .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 > 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 {
        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 > 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 {
        -webkit-transition: all 100ms linear;
        transition: all 100ms linear;
        position: absolute;
        top: 4px;
        left: 0px;
        display: inline-block;
        background: none;
        padding: 0;
        font-family: FontAwesome;
        font-size: 25px;
        font-weight: normal;
        font-style: normal;
        color: #28282A;
        text-decoration: inherit; }
      .link ul.list li > a[href*="twitter"]:hover:before, .link ul.list li > a[href*="facebook"]:hover:before, .link ul.list li > a[href*="instagram"]:hover:before, .link ul.list li > a[href*="pinterest"]:hover:before, .link ul.list li > a[href*="youtube"]:hover:before, .link ul.list li > 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 {
        color: #CC2E53; }
      .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 > span[href*="youtube"]:before {
        content: "\f16a"; }
    .link ul.list li > span .link_icon {
      display: none; }
    .link ul.list .description {
      padding-left: 55px; }
      .link ul.list .description p, .link ul.list .description li {
        margin-top: 0; }
      .link ul.list .description p {
        margin-bottom: 10px;
        font-size: 15px;
        font-weight: 400;
        -webkit-font-smoothing: antialiased;
        font-smoothing: antialiased; }

/* ----------------------------------------------------------------------------
= FAQ Accordion
----------------------------------------------------------------------------- */
.faq {
  position: relative;
  max-width: 855px;
  padding: 0px;
  margin: 30px auto 30px auto; }
  @media screen and (max-width: 870px) {
    .faq {
      margin: 30px auto 0 auto; } }
  @media screen and (max-width: 1080px) {
    .faq {
      padding: 0 20px; } }
  .faq .faq_list_item {
    overflow: auto;
    margin: 0;
    padding: 0px;
    cursor: pointer;
    background: #F1F1F2;
    margin-top: 15px;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear; }
    .faq .faq_list_item p {
      margin: 0;
      padding: 10px 0;
      text-transform: none;
      position: relative;
      -webkit-transition: all 200ms linear;
      transition: all 200ms linear;
      margin: 0;
      padding: 20px 70px 20px 20px;
      text-transform: none;
      color: #28282A;
      font-weight: 800;
      font-size: 1.333rem;
      font-family: "Nunito Sans", sans-serif;
      border: 2px solid transparent;
      border-bottom: none;
      line-height: 1.05;
      -webkit-font-smoothing: antialiased;
      font-smoothing: antialiased; }
      .faq .faq_list_item p:after {
        content: '\f107';
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 32px;
        font-family: FontAwesome;
        -webkit-transition: all 200ms linear;
        transition: all 200ms linear; }
      .faq .faq_list_item p a, .faq .faq_list_item p a:link, .faq .faq_list_item p a:hover, .faq .faq_list_item p a:active, .faq .faq_list_item p a:visited {
        border: none; }
    .faq .faq_list_item:hover p, .faq .faq_list_item:hover a, .faq .faq_list_item:hover a:link, .faq .faq_list_item:hover a:hover, .faq .faq_list_item:hover a:active, .faq .faq_list_item:hover a:visited {
      color: #CC2E53; }
    .faq .faq_list_item:hover a, .faq .faq_list_item:hover a:link, .faq .faq_list_item:hover a:hover, .faq .faq_list_item:hover a:active, .faq .faq_list_item:hover a:visited {
      border: none; }
    .faq .faq_list_item.active p, .faq .faq_list_item.open p {
      -webkit-font-smoothing: antialiased;
      font-smoothing: antialiased;
      background: #fff;
      border: 2px solid #D7D7D8;
      border-bottom: none;
      color: #CC2E53; }
      .faq .faq_list_item.active p:after, .faq .faq_list_item.open p:after {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
    .faq .faq_list_item.active a, .faq .faq_list_item.active a:link, .faq .faq_list_item.active a:hover, .faq .faq_list_item.active a:active, .faq .faq_list_item.active a:visited, .faq .faq_list_item.open a, .faq .faq_list_item.open a:link, .faq .faq_list_item.open a:hover, .faq .faq_list_item.open a:active, .faq .faq_list_item.open a:visited {
      color: white;
      border: none; }
  .faq .faq_answer {
    display: none;
    padding: 10px 0;
    margin: 0px;
    border: 2px solid #D7D7D8;
    border-top: none;
    margin-bottom: 10px; }
    .faq .faq_answer .cms {
      padding: 0 20px; }
    .faq .faq_answer p {
      margin-bottom: 20px; }
      .faq .faq_answer p img[align=left], .faq .faq_answer p img.left {
        float: left;
        margin: 0 20px 20px 0; }
        @media screen and (max-width: 767px) {
          .faq .faq_answer p img[align=left], .faq .faq_answer p img.left {
            float: none;
            margin: 0 auto 20px;
            display: block; } }
      .faq .faq_answer p img[align=right], .faq .faq_answer p img.right {
        float: right;
        margin: 0 0 20px 20px; }
        @media screen and (max-width: 767px) {
          .faq .faq_answer p img[align=right], .faq .faq_answer p img.right {
            float: none;
            margin: 0 auto 20px;
            display: block; } }
    .faq .faq_answer ul {
      display: inline; }
    .faq .faq_answer blockquote:before {
      width: calc(100% + 40px); }
    .faq .faq_answer blockquote .author {
      right: -20px !important; }

/* ----------------------------------------------------------------------------
= Seating Charts Page styles - Listing page
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
=Venue Pages
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
= Map styles
----------------------------------------------------------------------------- */
.content_item:first-child.map {
  margin: 0 0 50px 0; }

.map_holder {
  position: relative;
  display: block;
  width: 100%;
  height: 610px; }
  @media screen and (max-width: 870px) {
    .map_holder {
      height: 350px; } }
  .map_holder .map {
    width: 100%;
    height: calc(100% - 40px); }

.map_window {
  padding: 10px; }
  .map_window .info {
    margin: 0 0 8px;
    padding: 0 0 4px;
    text-align: center; }
    .map_window .info h4 {
      color: #000;
      font-weight: 800;
      font-size: 22px;
      margin: 0;
      letter-spacing: 0.4px; }
    .map_window .info address {
      margin: 5px 0 0 0;
      padding: 0;
      color: #000;
      font-size: 18px;
      line-height: 25px;
      font-weight: 600;
      letter-spacing: 0.4px; }
  .map_window .desc {
    float: left;
    width: 120px;
    padding: 4px 5px 0 0;
    display: none; }
    .map_window .desc img {
      float: left;
      width: 120px;
      height: auto;
      margin: 0 15px 0 0; }
    .map_window .desc p {
      margin: 0;
      padding: 0;
      font-size: 15px;
      line-height: 1.2; }
  .map_window .directions {
    display: none;
    padding: 4px 0 0;
    text-align: center; }
    .map_window .directions label {
      display: block;
      margin: 0 0 8px;
      color: #000;
      font-size: 15px;
      line-height: 1.2; }
    .map_window .directions input[type=text] {
      width: 100%;
      margin: 0 0 8px;
      padding: 8px 10px;
      color: #000;
      font-size: 14px;
      line-height: 1.2;
      border: 1px solid #D7D7D8;
      letter-spacing: 0.4px; }
    .map_window .directions form button {
      border: 3px solid #CC2E53;
      display: inline-block;
      padding: 5px 20px;
      vertical-align: bottom;
      text-transform: capitalize;
      color: #000;
      background-color: #fff;
      font-size: 15px;
      line-height: 1.2;
      font-weight: 800;
      letter-spacing: 0.4px; }
      .map_window .directions form button:hover {
        background-color: #CC2E53;
        color: #fff; }
      .map_window .directions form button:active {
        background-color: transparent;
        color: #CC2E53; }
  .map_window .links {
    padding: 10px 0 0 0;
    text-align: center; }

.map_control {
  zoom: 1;
  position: relative;
  background-color: #000;
  z-index: 51;
  margin: 0 auto;
  line-height: 40px;
  font-weight: 800;
  float: left;
  width: 100%; }
  .map_control:before, .map_control:after {
    display: block;
    visibility: hidden;
    height: 0;
    content: '\0020'; }
  .map_control:after {
    clear: both; }
  @media screen and (max-width: 870px) {
    .map_control {
      padding-bottom: 40px;
      background-color: transparent; } }
  .map_control .map_anchor {
    display: none; }
  .map_control label {
    display: block;
    float: left;
    height: 40px;
    padding: 0 65px 0 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 40px;
    text-align: center;
    letter-spacing: 0.4px;
    text-transform: uppercase; }
    @media screen and (max-width: 870px) {
      .map_control label {
        padding: 0 15px;
        width: 100%;
        background-color: black; } }
    .map_control label:before {
      vertical-align: middle;
      display: inline-block;
      content: '';
      border-bottom: 3px solid #CC2E53;
      width: 25px;
      line-height: 21px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      margin-right: 10px; }
  .map_control button {
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear;
    float: left;
    margin: 0 1px 0 0;
    padding: 0 15px;
    color: #fff;
    border: none;
    background: none;
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.4px;
    text-transform: capitalize;
    vertical-align: middle; }
    @media screen and (max-width: 870px) {
      .map_control button {
        display: block;
        float: none;
        width: 100%;
        margin: 0;
        border-top: 1px solid #000;
        background-color: #000; } }
    .map_control button.hotels:after {
      content: '';
      display: inline-block;
      width: 20px;
      height: 20px;
      vertical-align: middle;
      margin: 0 0 0 10px;
      line-height: 40px;
      background-position: center;
      background-size: 100%;
      background-image: url("../images/hotels_icon.png");
      background-repeat: no-repeat; }
    .map_control button.restaurants:after {
      content: '';
      display: inline-block;
      width: 20px;
      height: 20px;
      vertical-align: middle;
      margin: 0 0 0 10px;
      line-height: 40px;
      background-position: center;
      background-size: 100%;
      background-image: url("../images/restaurants_icon.png");
      background-repeat: no-repeat; }
    .map_control button.shopping:after {
      content: '';
      display: inline-block;
      width: 20px;
      height: 20px;
      vertical-align: middle;
      line-height: 40px;
      margin: 0 0 0 10px;
      background-position: center;
      background-size: 100%;
      background-image: url("../images/shopping_icon.png");
      background-repeat: no-repeat; }
    .map_control button.active {
      outline: none; }
      .map_control button.active.hotels {
        background-color: #9B233F; }
      .map_control button.active.restaurants {
        background-color: #018E42; }
      .map_control button.active.shopping {
        background-color: #454E9E; }
      .map_control button.active:hover {
        color: white;
        outline: none; }
    .map_control button:hover {
      color: #CC2E53;
      outline: none; }
    .map_control button:focus {
      outline: none; }

/* ----------------------------------------------------------------------------
= Pagination
----------------------------------------------------------------------------- */
body#events.all #column_1 .paging.final {
  display: none; }

.paging {
  zoom: 1;
  position: relative;
  height: 40px;
  margin: 5px 0 15px;
  padding: 0 20px;
  color: #666;
  font: 400 14px/40px "Nunito Sans", sans-serif;
  letter-spacing: 0.06em; }
  .paging:before, .paging:after {
    display: block;
    visibility: hidden;
    height: 0;
    content: '\0020'; }
  .paging:after {
    clear: both; }
  .paging.final {
    margin: 0; }
  .paging.empty {
    height: 0;
    margin: 0;
    padding: 0;
    background: none; }
  .paging .record {
    float: left;
    width: auto;
    height: 40px;
    padding: 0 0 0 10px; }
  .paging .pages {
    zoom: 1;
    float: right;
    width: auto;
    margin: 0 -17px 0 0;
    text-align: center; }
    .paging .pages:before, .paging .pages:after {
      display: block;
      visibility: hidden;
      height: 0;
      content: '\0020'; }
    .paging .pages:after {
      clear: both; }
    .paging .pages strong, .paging .pages a, .paging .pages a:link, .paging .pages a:visited {
      position: relative;
      float: left;
      width: 40px;
      height: 40px;
      margin: 0;
      padding: 0;
      color: #333;
      font: 600 14px/40px "Nunito Sans", sans-serif;
      text-decoration: none; }
      .paging .pages strong:hover, .paging .pages a:hover, .paging .pages a:link:hover, .paging .pages a:visited:hover {
        color: #CC2E53; }
      .paging .pages strong.last, .paging .pages strong.first, .paging .pages a.last, .paging .pages a.first, .paging .pages a:link.last, .paging .pages a:link.first, .paging .pages a:visited.last, .paging .pages a:visited.first {
        display: none; }
    .paging .pages strong {
      font-weight: 700;
      color: #CC2E53; }

/* ----------------------------------------------------------------------------
=Password Protected Page login form
----------------------------------------------------------------------------- */
.login-form {
  position: relative;
  text-align: center;
  margin-top: 70px; }
  @media screen and (max-width: 767px) {
    .login-form {
      margin-top: 40px; } }
  .login-form form {
    position: relative; }
  .login-form input[type='password'] {
    position: relative;
    width: 80%;
    max-width: 300px;
    height: 46px;
    background: transparent;
    border: 1px solid #D7D7D8;
    padding: 8px 10px;
    font-size: 15px;
    color: #ffffff;
    color: #28282A;
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none; }
    .login-form input[type='password']::-webkit-input-placeholder {
      /* WebKit browsers */
      color: #28282A; }
    .login-form input[type='password']:-moz-placeholder {
      /* Mozilla Firefox 4 to 18 */
      color: #28282A; }
    .login-form input[type='password']::-moz-placeholder {
      /* Mozilla Firefox 19+ */
      color: #28282A; }
    .login-form input[type='password']:-ms-input-placeholder {
      /* Internet Explorer 10+ */
      color: #28282A; }
  .login-form input[type='submit'] {
    display: block;
    border: none;
    margin: 25px auto;
    border: 3px solid #CC2E53; }

/* ----------------------------------------------------------------------------
= Showtime contests module (not special offers)
----------------------------------------------------------------------------- */
.contest_listing_page .contest_list {
  max-width: 855px;
  margin: 0 auto 30px auto;
  padding: 0; }
  @media screen and (max-width: 1080px) {
    .contest_listing_page .contest_list {
      padding: 0 20px; } }

.contest_detail .link ul.list li {
  padding-left: 0px; }
  .contest_detail .link ul.list li:before {
    display: none; }

/* RESET */
.elq-form {
  /* GENERIC */
  /* SECTION BREAKS */
  /* LABEL */
  /* FIELD GROUP */
  /* RADIO */
  /* CHECKBOX */
  /* INPUT */
  /* SIZING */
  /* INSTRUCTIONS */
  /* POSITIONING */
  /* LIST ORDER */
  /* GRID STYLE */ }
  .elq-form * {
    margin: 0;
    padding: 0; }
  .elq-form label {
    display: block;
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 5px; }
  .elq-form input, .elq-form textarea {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    display: block;
    padding: 10px;
    border: 1px solid #D7D7D8; }
  .elq-form select {
    padding: 10px;
    border: 1px solid #D7D7D8; }
  .elq-form button, .elq-form input[type=reset], .elq-form input[type=button], .elq-form input[type=submit], .elq-form input[type=checkbox], .elq-form input[type=radio], .elq-form select {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  .elq-form input {
    height: 16px;
    line-height: 16px; }
  .elq-form .item-padding {
    padding: 6px 5px 9px 9px; }
  .elq-form .pp-group {
    padding: 0px 5px 0px 9px; }
  .elq-form .pp-field {
    padding: 6px 0px 9px 0px; }
  .elq-form .field-wrapper.individual {
    float: left;
    width: 100%;
    clear: both; }
  .elq-form .field-p {
    position: relative;
    margin: 0;
    padding: 0; }
  .elq-form .zIndex-fix {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .elq-form .field-design {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0; }
  .elq-form .no-fields-prompt {
    float: left;
    width: 100%;
    height: 150px;
    padding-top: 50px;
    clear: both; }
  .elq-form .section-break {
    float: left;
    width: 97%;
    margin-right: 2%;
    margin-left: 1%;
    padding-bottom: 6px; }
  .elq-form .section-break .heading {
    width: 100%;
    font-weight: bold;
    margin: 0;
    padding: 0; }
  .elq-form .required {
    color: red !important;
    display: inline;
    float: none;
    font-weight: bold;
    margin: 0pt 0pt 0pt;
    padding: 0pt 0pt 0pt; }
  .elq-form .field-group {
    float: left;
    clear: both; }
  .elq-form .field-group.large {
    width: 100%; }
  .elq-form .field-group.medium {
    width: 51%; }
  .elq-form .field-group.small {
    width: 31%; }
  .elq-form .field-group .label {
    float: left;
    width: 97%;
    margin-right: 2%;
    padding-bottom: 6px;
    font-weight: bold;
    font-size: 1.77689rem; }
  .elq-form .field-group .field-style {
    float: left; }
  .elq-form .progressive-profile .pp-inner {
    float: left;
    clear: both; }
  .elq-form .progressive-profile .pp-inner.large {
    width: 100%; }
  .elq-form .progressive-profile .pp-inner.medium {
    width: 51%; }
  .elq-form .progressive-profile .pp-inner.small {
    width: 31%; }
  .elq-form .radio-option {
    display: inline-block; }
  .elq-form .radio-option .label {
    display: block;
    float: left;
    padding-right: 10px;
    padding-left: 22px;
    text-indent: -22px; }
  .elq-form .radio-option .input {
    vertical-align: middle;
    margin: 0 auto 10px; }
  .elq-form .radio-option .inner {
    vertical-align: middle; }
  .elq-form .checkbox-span {
    display: inline-block; }
  .elq-form .checkbox-label {
    margin-left: 4px; }
  .elq-form .accept-default {
    width: 100%; }
  .elq-form .field-style._25 {
    width: 21%; }
  .elq-form .field-style._50 {
    width: 46%; }
  .elq-form .field-style._50_left {
    clear: left;
    width: 46%; }
  .elq-form .field-style._75 {
    width: 71%; }
  .elq-form .field-style._100 {
    width: 96%; }
  .elq-form .field-size-top-small {
    width: 30%; }
  .elq-form .field-size-top-medium {
    width: 75%; }
  .elq-form .field-size-top-large {
    width: 100%; }
  .elq-form .field-size-left-small {
    width: 21%; }
  .elq-form .field-size-left-medium {
    width: 46%; }
  .elq-form .field-size-left-large {
    width: 60%; }
  .elq-form .instructions.default {
    color: #444444;
    display: block;
    font-size: 10px;
    padding: 6px 0pt 3px; }
  .elq-form .instructions.group {
    float: left;
    width: 97%;
    margin-right: 2%;
    margin-left: 2%;
    padding: 6px 0pt 3px;
    color: #444444;
    display: block;
    font-size: 10px; }
  .elq-form .instructions.left-single {
    margin: 0 0 0 33%; }
  .elq-form .instructions-other {
    margin: 0; }
  .elq-form .label-position.left {
    display: block;
    line-height: 150%;
    padding: 1px 0pt 3px;
    float: left;
    width: 31%;
    margin: 0pt 15px 0pt 0pt;
    word-wrap: break-word; }
  .elq-form .label-position.top {
    display: block;
    line-height: 150%;
    padding: 1px 0pt 3px; }
  .elq-form .label-position.alignment-left {
    text-align: left; }
  .elq-form .label-position.alignment-right {
    text-align: right; }
  .elq-form .list-order {
    display: block; }
  .elq-form .list-order.oneColumn {
    margin: 0pt 7px 0pt 0pt;
    width: 100%;
    clear: both; }
  .elq-form .list-order.twoColumn {
    float: left;
    margin: 0pt 7px 0pt 0pt;
    width: 38%; }
  .elq-form .list-order.threeColumn {
    float: left;
    margin: 0pt 7px 0pt 0pt;
    width: 30%; }
  .elq-form .list-order.oneColumnLeft {
    float: left;
    margin: 0pt 7px 0pt 0pt;
    width: 100%; }
  .elq-form .list-order.twoColumnLeft {
    float: left;
    margin: 0pt 7px 0pt 0pt;
    width: 38%; }
  .elq-form .list-order.threeColumnLeft {
    float: left;
    margin: 0pt 7px 0pt 0pt;
    width: 30%; }
  .elq-form .grid-style {
    display: inline;
    float: left;
    margin-left: 2%;
    margin-right: 2%; }
  .elq-form .grid-style._25 {
    width: 21%; }
  .elq-form .grid-style._50 {
    width: 46%; }
  .elq-form .grid-style._75 {
    width: 71%; }
  .elq-form .grid-style._100 {
    width: 96%; }

/* ----------------------------------------------------------------------------
= News List
----------------------------------------------------------------------------- */
.news_list .entry:first-child {
  padding-top: 0; }

.news_list .info {
  margin-bottom: 0; }

.news_list .m-date__singleDate {
  color: #28282A;
  font-size: 15px;
  line-height: 21px; }

/* ----------------------------------------------------------------------------
= News Detail
----------------------------------------------------------------------------- */
.has_branding .spotlight_image .caption {
  display: none; }

.has_branding .news_detail .news_heading {
  margin-top: 50px; }

.news_detail .news_heading {
  border-bottom: 1px solid #D7D7D8;
  text-align: center;
  margin-bottom: 50px; }
  @media screen and (max-width: 870px) {
    .news_detail .news_heading {
      margin-bottom: 30px; } }
  .news_detail .news_heading .news_title {
    border-bottom: none;
    padding: 0;
    margin: 0; }
  .news_detail .news_heading .date {
    display: inline-block;
    margin-top: 15px; }
    .news_detail .news_heading .date:before {
      vertical-align: middle;
      display: inline-block;
      content: '';
      border-bottom: 3px solid #CC2E53;
      width: 25px;
      line-height: 21px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      margin-right: 10px; }

.news_detail .news_thumb {
  float: left;
  margin-right: 40px;
  margin-bottom: 20px; }
  @media screen and (max-width: 767px) {
    .news_detail .news_thumb {
      display: table;
      float: none;
      margin: 0 auto 20px auto; } }

.news_detail .share {
  max-width: 855px;
  margin: 0 auto;
  padding: 0 20px; }

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
.event_list_header {
  max-width: calc(100vw - 30px);
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #D7D7D8;
  color: #28282A;
  margin: auto;
  margin-bottom: 40px;
  padding: 7px 0px 10px; }
  .event_list_header .overview {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin: 0 auto; }
    @media screen and (max-width: 1080px) {
      .event_list_header .overview {
        padding-bottom: 50px; } }
  .event_list_header h1 {
    -webkit-box-flex: 2;
       -moz-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    margin: 0; }
    @media screen and (max-width: 767px) {
      .event_list_header h1 {
        text-align: center; } }
  @media screen and (max-width: 767px) {
    .event_list_header {
      margin-bottom: 20px; } }

.event_list_toggles {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: end;
      align-self: flex-end;
  padding-right: 20px; }
  .event_list_toggles .toggle {
    margin-left: 30px;
    color: #28282A;
    text-align: center;
    margin-bottom: 3px;
    padding: 0;
    border: none;
    background: none; }
    .event_list_toggles .toggle:hover, .event_list_toggles .toggle:focus {
      cursor: pointer; }
      .event_list_toggles .toggle:hover span, .event_list_toggles .toggle:focus span {
        color: #28282A; }
      .event_list_toggles .toggle:hover svg, .event_list_toggles .toggle:focus svg {
        fill: #CC2E53; }
    .event_list_toggles .toggle.calendar {
      display: none; }
    .event_list_toggles .toggle.is-active svg {
      fill: #CC2E53; }
  .event_list_toggles span {
    display: block;
    text-align: center;
    font-weight: 800;
    font-size: 14px;
    color: #28282A;
    letter-spacing: 0.4px; }
  .event_list_toggles svg {
    fill: #D7D7D8;
    margin-bottom: 5px; }
  @media screen and (max-width: 870px) {
    .event_list_toggles {
      display: none; } }

.category-dropdown {
  position: relative;
  margin-right: 10px;
  -ms-flex-item-align: center;
      align-self: center;
  z-index: 10; }
  @media screen and (max-width: 1080px) {
    .category-dropdown {
      position: absolute;
      bottom: 0;
      left: 0; } }
  @media screen and (max-width: 767px) {
    .category-dropdown {
      left: 50%;
      -webkit-transform: translatex(-50%);
              transform: translatex(-50%);
      margin-right: 0; } }
  .category-dropdown .select {
    display: block;
    position: relative;
    width: 290px;
    height: 40px;
    line-height: 40px;
    background: white;
    border: 2px solid #D7D7D8;
    margin: 0;
    padding: 0 0 0 20px;
    color: #222222;
    cursor: pointer;
    z-index: 8;
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    color: #6D6E72;
    letter-spacing: 0.4px;
    font-weight: 600;
    text-align: left; }
    .category-dropdown .select svg {
      float: right;
      position: absolute;
      top: 50%;
      right: 15px;
      width: 15px;
      height: 12px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      fill: none;
      fill-rule: evenodd;
      stroke: #CC2E53;
      stroke-width: 2px; }
    .category-dropdown .select.is-active {
      border-color: #CCCCCC; }
      .category-dropdown .select.is-active svg {
        -webkit-transform: rotate(180deg) translateY(-47%);
                transform: rotate(180deg) translateY(-47%);
        -webkit-transform-origin: 50% 0;
                transform-origin: 50% 0; }
  .category-dropdown .choices {
    display: none;
    position: absolute;
    top: 38px;
    left: 0;
    width: 100%;
    background: #F1F1F2;
    padding: 10px 20px;
    font-family: "Nunito Sans", sans-serif;
    z-index: 7;
    border: 2px solid #D7D7D8;
    border-top: none;
    z-index: 9999; }
    .category-dropdown .choices.is-active {
      display: block; }
    .category-dropdown .choices li span {
      display: block;
      text-decoration: none;
      cursor: pointer;
      font-family: "Nunito Sans", sans-serif;
      font-weight: 600;
      font-size: 15px;
      color: #28282A;
      letter-spacing: 0.4px;
      line-height: 32px;
      padding: 8px 0; }
    .category-dropdown .choices li:hover span,
    .category-dropdown .choices li span.isActive,
    .category-dropdown .choices span.is-active {
      color: #CC2E53; }
    .category-dropdown .choices li:before {
      display: none; }

.event_list {
  zoom: 1;
  text-align: center;
  padding: 0 15px; }
  .event_list:before, .event_list:after {
    display: block;
    visibility: hidden;
    height: 0;
    content: '\0020'; }
  .event_list:after {
    clear: both; }
  .event_list .list {
    margin-bottom: 40px; }
  .event_list .eventItem {
    position: relative;
    padding: 20px 0;
    border-bottom: 1px solid #D7D7D8;
    max-width: 980px;
    margin: auto;
    text-align: left; }
    .event_list .eventItem:first-child {
      padding-top: 0; }
    .event_list .eventItem .thumb {
      position: relative;
      float: left;
      width: 180px;
      height: 180px;
      -webkit-box-shadow: 10px 18px 20px -18px rgba(0, 0, 0, 0.4);
              box-shadow: 10px 18px 20px -18px rgba(0, 0, 0, 0.4);
      -webkit-filter: grayscale(0%);
              filter: grayscale(0%);
      display: block; }
      .event_list .eventItem .thumb .buttons {
        display: none; }
      .event_list .eventItem .thumb img {
        -webkit-transition: filter 0.2s linear;
        -webkit-transition: -webkit-filter 0.2s linear;
        transition: -webkit-filter 0.2s linear;
        transition: filter 0.2s linear;
        transition: filter 0.2s linear, -webkit-filter 0.2s linear;
        max-width: 100%;
        display: block; }
      .event_list .eventItem .thumb:hover img {
        -webkit-filter: grayscale(100%);
                filter: grayscale(100%); }
      @media screen and (max-width: 767px) {
        .event_list .eventItem .thumb {
          height: 90px;
          width: 90px;
          -webkit-box-shadow: 5px 18px 20px -18px rgba(0, 0, 0, 0.4);
                  box-shadow: 5px 18px 20px -18px rgba(0, 0, 0, 0.4); } }
    .event_list .eventItem .info {
      position: relative;
      padding: 25px 200px 20px 30px;
      float: left;
      width: calc(100% - 180px);
      min-height: 180px; }
      .event_list .eventItem .info .title {
        font-weight: 800;
        margin-bottom: 10px;
        line-height: normal; }
        .event_list .eventItem .info .title a {
          color: #28282A; }
          .event_list .eventItem .info .title a:hover {
            color: #CC2E53; }
        @media screen and (max-width: 767px) {
          .event_list .eventItem .info .title {
            font-size: 24px; } }
      .event_list .eventItem .info .tagline {
        font-weight: 400;
        font-size: 15px;
        color: #6D6E72;
        letter-spacing: 0.4px;
        line-height: 21px;
        margin-bottom: 0; }
      .event_list .eventItem .info .date {
        position: absolute;
        bottom: 0px;
        left: 30px;
        font-weight: 800;
        font-size: 15px;
        color: #28282A;
        letter-spacing: 0.4px;
        line-height: 21px;
        padding-left: 35px; }
        .event_list .eventItem .info .date:before {
          content: '';
          position: absolute;
          top: 50%;
          -webkit-transform: translateY(-50%);
                  transform: translateY(-50%);
          left: 0;
          width: 25px;
          height: 3px;
          margin-top: 0px;
          background: #CC2E53; }
        @media screen and (max-width: 767px) {
          .event_list .eventItem .info .date {
            left: 10px; } }
      @media screen and (max-width: 767px) {
        .event_list .eventItem .info {
          padding: 0 10px 30px;
          min-height: 90px;
          width: calc(100% - 90px); } }
    .event_list .eventItem .outer_date.date {
      display: none; }
    .event_list .eventItem .title_section {
      position: static; }
    .event_list .eventItem .title_section .buttons {
      display: block; }
      @media screen and (max-width: 767px) {
        .event_list .eventItem .title_section .buttons {
          display: none; } }
    .event_list .eventItem .buttons {
      position: absolute;
      top: 58%;
      right: 0px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      text-align: center;
      display: none; }
      @media screen and (max-width: 767px) {
        .event_list .eventItem .buttons {
          text-align: center;
          position: relative;
          top: auto;
          right: auto;
          -webkit-transform: translateY(0%);
                  transform: translateY(0%);
          display: block;
          margin-top: 20px;
          clear: both;
          float: left;
          width: 100%; } }
    @media screen and (max-width: 767px) {
      .event_list .eventItem {
        padding: 20px 0px; } }
  @media screen and (min-width: 768px) {
    .event_list.event_list_grid {
      padding: 0;
      overflow: hidden;
      margin: 0px auto 0; }
      .home .event_list.event_list_grid {
        overflow: visible; }
      .event_list.event_list_grid .list {
        width: calc(100% + 30px);
        margin-left: -15px;
        margin-bottom: 0; }
      .event_list.event_list_grid .eventItem {
        float: left;
        width: 25%;
        width: 100%;
        width: 300px;
        margin: 0px 0px 40px;
        padding: 0 15px 0px;
        height: 464px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
        .event_list.event_list_grid .eventItem .thumb {
          float: none;
          width: 100%;
          height: auto;
          -webkit-box-flex: 0;
             -moz-box-flex: 0;
              -ms-flex-positive: 0;
                  flex-grow: 0;
          -ms-flex-negative: 1;
              flex-shrink: 1;
          overflow: hidden; }
          .event_list.event_list_grid .eventItem .thumb:before {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 0px;
            width: 100%;
            height: 100%;
            background-image: -webkit-gradient(linear, left bottom, left top, color-stop(7%, rgba(0, 0, 0, 0.8)), color-stop(98%, transparent));
            background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 7%, transparent 98%);
            z-index: 5;
            zoom: 1;
            opacity: 0;
            -moz-opacity: 0;
            filter: alpha(opacity=0); }
          .event_list.event_list_grid .eventItem .thumb .buttons {
            display: block; }
        .event_list.event_list_grid .eventItem .info {
          -webkit-box-flex: 1;
             -moz-box-flex: 1;
              -ms-flex-positive: 1;
                  flex-grow: 1;
          -ms-flex-negative: 0;
              flex-shrink: 0;
          min-height: calc(100% - 270px);
          width: 100%;
          padding: 15px 0 60px; }
        .event_list.event_list_grid .eventItem .date {
          left: 0;
          bottom: 20px; }
        .event_list.event_list_grid .eventItem .buttons {
          display: none;
          -webkit-transition: opacity 0.1s linear;
          transition: opacity 0.1s linear;
          position: absolute;
          top: 50%;
          left: 0%;
          width: 100%;
          -webkit-transform: translateY(-50%);
                  transform: translateY(-50%);
          zoom: 1;
          opacity: 0;
          -moz-opacity: 0;
          filter: alpha(opacity=0);
          z-index: 6;
          text-align: center; }
          .event_list.event_list_grid .eventItem .buttons a.tickets {
            outline-offset: -8px; }
        .event_list.event_list_grid .eventItem:hover .thumb img, .event_list.event_list_grid .eventItem.is-focused .thumb img {
          -webkit-filter: grayscale(100%);
                  filter: grayscale(100%); }
        .event_list.event_list_grid .eventItem:hover .thumb:before, .event_list.event_list_grid .eventItem:hover .thumb .buttons, .event_list.event_list_grid .eventItem.is-focused .thumb:before, .event_list.event_list_grid .eventItem.is-focused .thumb .buttons {
          zoom: 1;
          opacity: 1;
          -moz-opacity: 1;
          filter: alpha(opacity=100); } }
  @media screen and (min-width: 600px) {
    .event_list.event_list_grid {
      width: 570px; } }
  @media screen and (min-width: 900px) {
    .event_list.event_list_grid {
      width: 870px; } }
  @media screen and (min-width: 1200px) {
    .event_list.event_list_grid {
      width: 1170px; } }
  .event_list .secondary_event {
    -webkit-transition: all 0.6s linear;
    transition: all 0.6s linear;
    border: 22px solid white;
    border-radius: 50%;
    height: 564px;
    width: 564px;
    max-height: calc(100vw - 30px);
    max-width: calc(100vw - 30px);
    float: left;
    zoom: 1;
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(100px);
            transform: translateY(100px); }
    .event_list .secondary_event .outside_info {
      display: none; }
    .event_list .secondary_event .eventItem {
      -webkit-transition: all 0s linear;
      transition: all 0s linear;
      width: 100%;
      height: 100%;
      overflow: hidden;
      display: block;
      border-radius: 50%;
      padding: 0;
      background-image: linear-gradient(-233deg, #cc2e53 0%, #9b233f 100%);
      -webkit-box-shadow: 0 10px 20px 2px rgba(0, 0, 0, 0.25);
              box-shadow: 0 10px 20px 2px rgba(0, 0, 0, 0.25);
      padding: 15px;
      margin: 0;
      zoom: 1;
      opacity: 1;
      -moz-opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateY(0px);
              transform: translateY(0px); }
      .event_list .secondary_event .eventItem .thumb {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        overflow: hidden; }
        .event_list .secondary_event .eventItem .thumb:before {
          -webkit-transition: all 0.2s linear;
          transition: all 0.2s linear;
          zoom: 1;
          opacity: 1;
          -moz-opacity: 1;
          filter: alpha(opacity=100); }
        .event_list .secondary_event .eventItem .thumb .buttons {
          display: none; }
        .event_list .secondary_event .eventItem .thumb img {
          width: 100%;
          height: 100%; }
      .event_list .secondary_event .eventItem .info {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        display: block;
        text-align: center;
        color: white;
        padding: 0; }
        .event_list .secondary_event .eventItem .info .title a, .event_list .secondary_event .eventItem .info .tagline {
          color: white; }
        .event_list .secondary_event .eventItem .info .title a:hover {
          color: #CC2E53; }
        .event_list .secondary_event .eventItem .info .title_section {
          -webkit-transition: opacity 0.2s linear;
          transition: opacity 0.2s linear;
          position: absolute;
          top: 50%;
          left: 50px;
          -webkit-transform: translateY(-50%);
                  transform: translateY(-50%);
          width: calc(100% - 100px);
          text-align: center;
          margin-top: 20px;
          zoom: 1;
          opacity: 0;
          -moz-opacity: 0;
          filter: alpha(opacity=0); }
          .event_list .secondary_event .eventItem .info .title_section .date {
            display: none; }
          .event_list .secondary_event .eventItem .info .title_section .buttons {
            zoom: 1;
            opacity: 1;
            -moz-opacity: 1;
            filter: alpha(opacity=100);
            display: block;
            position: relative;
            top: auto;
            -webkit-transform: translateX(0%);
                    transform: translateX(0%);
            margin-top: 40px; }
            .event_list .secondary_event .eventItem .info .title_section .buttons a {
              clear: none;
              display: inline-block;
              float: none;
              vertical-align: top;
              margin: 0 10px; }
              .event_list .secondary_event .eventItem .info .title_section .buttons a.more {
                line-height: 50px; }
      @media screen and (max-width: 767px) {
        .event_list .secondary_event .eventItem > .buttons {
          display: none; } }
      .event_list .secondary_event .eventItem .outer_date.date {
        position: absolute;
        bottom: 45px;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        color: white;
        display: block; }
      .event_list .secondary_event .eventItem:hover .thumb:before, .event_list .secondary_event .eventItem.is-focused .thumb:before {
        height: 200%; }
      .event_list .secondary_event .eventItem:hover .title_section, .event_list .secondary_event .eventItem.is-focused .title_section {
        zoom: 1;
        opacity: 1;
        -moz-opacity: 1;
        filter: alpha(opacity=100); }
    .event_list .secondary_event.move-it, .user-is-tabbing .event_list .secondary_event {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
      zoom: 1;
      opacity: 1;
      -moz-opacity: 1;
      filter: alpha(opacity=100); }
    .event_list .secondary_event .at_bottom {
      float: right; }
    @media screen and (max-width: 870px) {
      .event_list .secondary_event {
        float: none;
        margin: 0 auto 40px;
        clear: both;
        -webkit-transform: translateY(0px);
                transform: translateY(0px); } }
    @media screen and (max-width: 767px) {
      .event_list .secondary_event {
        margin-bottom: 10px;
        margin-top: 30px;
        border-width: 10px; }
        .event_list .secondary_event:first-child {
          margin-top: 0; }
        .event_list .secondary_event .eventItem {
          padding: 10px; }
        .event_list .secondary_event .eventItem .info {
          display: none; } }
    @media screen and (max-width: 500px) {
      .event_list .secondary_event {
        height: 228px;
        width: 228px; } }
  @media screen and (min-width: 900px) {
    .event_list.featured_events_section .separator {
      display: block;
      width: 100%;
      clear: both; } }
  @media screen and (min-width: 1200px) {
    .event_list.featured_events_section .separator {
      display: none; } }
  @media screen and (min-width: 900px) {
    .event_list.featured_events_section .list {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
         -moz-box-orient: horizontal;
         -moz-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  .event_list.featured_events_section .list > .eventItem {
    margin-top: 80px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
    zoom: 1;
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(100px);
            transform: translateY(100px); }
    .event_list.featured_events_section .list > .eventItem.move-it, .user-is-tabbing .event_list.featured_events_section .list > .eventItem {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
      zoom: 1;
      opacity: 1;
      -moz-opacity: 1;
      filter: alpha(opacity=100); }
    @media screen and (min-width: 768px) {
      .event_list.featured_events_section .list > .eventItem {
        border-bottom: none; } }
    @media screen and (max-width: 870px) {
      .event_list.featured_events_section .list > .eventItem {
        margin-top: 0; } }
    @media screen and (min-width: 900px) {
      .event_list.featured_events_section .list > .eventItem {
        float: none;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 40px;
        margin-bottom: 40px; } }
    @media screen and (min-width: 1200px) {
      .event_list.featured_events_section .list > .eventItem {
        margin-top: 80px; } }
  .intro_events .event_list {
    position: absolute;
    right: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    padding: 0; }
    .intro_events .event_list .eventItem {
      -webkit-transition: all 100ms linear;
      transition: all 100ms linear;
      width: 380px;
      min-height: 0;
      background-image: linear-gradient(-269deg, rgba(0, 0, 0, 0.8) 5%, rgba(0, 0, 0, 0.4) 95%);
      -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
              box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
      margin-bottom: 15px;
      border: none;
      padding: 0; }
      .intro_events .event_list .eventItem:before {
        -webkit-transition: all 100ms linear;
        transition: all 100ms linear;
        content: '';
        background: #000;
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        visibility: visible;
        zoom: 1;
        opacity: 0;
        -moz-opacity: 0;
        filter: alpha(opacity=0); }
      .intro_events .event_list .eventItem .thumb {
        display: none; }
      .intro_events .event_list .eventItem .info {
        width: 100%;
        padding: 25px 25px 50px;
        width: 100%;
        min-height: 150px; }
      .intro_events .event_list .eventItem .date {
        position: relative;
        bottom: auto;
        left: auto;
        margin-bottom: 15px; }
      .intro_events .event_list .eventItem .title {
        font-size: 24px; }
        .intro_events .event_list .eventItem .title a {
          color: #fff; }
          .intro_events .event_list .eventItem .title a:hover {
            color: #CC2E53; }
      .intro_events .event_list .eventItem .date {
        color: #fff; }
      .intro_events .event_list .eventItem .tagline {
        color: #D7D7D8; }
      .intro_events .event_list .eventItem .buttons {
        position: absolute;
        bottom: 0px;
        right: 0px;
        top: auto;
        -webkit-transform: none;
                transform: none; }
        .intro_events .event_list .eventItem .buttons .more {
          display: none; }
      .intro_events .event_list .eventItem:hover:before {
        zoom: 1;
        opacity: 1;
        -moz-opacity: 1;
        filter: alpha(opacity=100); }
    @media screen and (max-width: 767px) {
      .intro_events .event_list {
        position: relative;
        right: auto;
        top: auto;
        -webkit-transform: none;
                transform: none;
        display: block;
        background: #28282A;
        padding: 15px; }
        .intro_events .event_list .eventItem {
          width: 100%; } }
  .event_list .outside_info {
    display: none;
    border-bottom: 1px solid #D7D7D8;
    margin-bottom: 0px;
    padding-bottom: 20px; }
    .event_list .outside_info .title_section {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
         -moz-box-orient: vertical;
         -moz-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 100%; }
    .event_list .outside_info .title {
      -webkit-box-ordinal-group: 2;
         -moz-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
      margin-bottom: 10px;
      font-size: 32px; }
      .event_list .outside_info .title a {
        color: #28282A; }
        .event_list .outside_info .title a:hover {
          color: #CC2E53; }
    .event_list .outside_info .buttons {
      -webkit-box-ordinal-group: 4;
         -moz-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3;
      width: 100%;
      margin-top: 15px; }
    .event_list .outside_info .date {
      position: relative;
      font-weight: 800;
      font-size: 15px;
      color: #28282A;
      letter-spacing: 0.4px;
      line-height: 21px;
      padding-left: 35px;
      display: inline-block;
      -webkit-box-ordinal-group: 3;
         -moz-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; }
      .event_list .outside_info .date:before {
        content: '';
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        left: 0;
        width: 25px;
        height: 3px;
        margin-top: 0px;
        background: #CC2E53; }
      @media screen and (max-width: 767px) {
        .event_list .outside_info .date {
          left: 10px;
          font-size: 18px; } }
      @media screen and (max-width: 400px) {
        .event_list .outside_info .date {
          font-size: 15px; } }
    @media screen and (max-width: 767px) {
      .event_list .outside_info {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex; } }

/* ----------------------------------------------------------------------------
= Event Detail
----------------------------------------------------------------------------- */
.event_detail {
  min-height: 600px;
  zoom: 1;
  position: relative; }
  .event_detail:before, .event_detail:after {
    display: block;
    visibility: hidden;
    height: 0;
    content: '\0020'; }
  .event_detail:after {
    clear: both; }
  .event_detail .event_heading .title {
    text-transform: capitalize;
    font-weight: 800; }
  .event_detail .event_heading .tagline {
    font-size: 18px;
    color: #6D6E72;
    font-weight: 500; }
  .event_detail .event_heading.below_branding {
    display: none; }
  @media screen and (max-width: 870px) {
    .event_detail .event_heading {
      display: none; } }
  .event_detail .buttonWrapper .title, .event_detail .buttonWrapper .tagline, .event_detail .buttonWrapper .date {
    display: none; }
    @media screen and (max-width: 870px) {
      .event_detail .buttonWrapper .title, .event_detail .buttonWrapper .tagline, .event_detail .buttonWrapper .date {
        padding: 0 10px;
        display: block;
        color: #F1F1F2; } }
  .event_detail .buttonWrapper .tagline {
    font-weight: 500; }
  .event_detail .buttons {
    position: relative;
    color: white; }
    .event_detail .buttons a {
      width: 100%; }
    .event_detail .buttons a, .event_detail .buttons span {
      white-space: nowrap; }
    .event_detail .buttons svg {
      display: none;
      vertical-align: middle;
      margin-right: 5px;
      fill: #fff; }

.description_wrapper {
  margin-top: 50px; }
  @media screen and (max-width: 870px) {
    .description_wrapper {
      margin-top: 30px;
      padding: 0 20px; } }
  .description_wrapper .read-more {
    margin: 20px 0 0 0;
    cursor: pointer;
    color: #6D6E72;
    font-size: 14px;
    font-weight: 800;
    border: none;
    background: none;
    padding: 0; }
    .description_wrapper .read-more:hover {
      color: #28282A; }
  .description_wrapper.short-description .event_description:after {
    display: none; }

.event_description {
  position: relative; }
  .event_description:after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 50px;
    display: block;
    background: url(data:image/svg+xml;base64,pd94bwwgdmvyc2lvbj0ims4wiia/pgo8c3znihhtbg5zpsjodhrwoi8vd3d3lnczlm9yzy8ymdawl3n2zyigd2lkdgg9ijewmcuiighlawdodd0imtawjsigdmlld0jved0imcawidegmsigchjlc2vydmvbc3bly3rsyxrpbz0ibm9uzsi+ciagpgxpbmvhckdyywrpzw50iglkpsjncmfklxvjz2ctz2vuzxjhdgvkiibncmfkawvudfvuaxrzpsj1c2vyu3bhy2vpblvzzsigede9ijaliib5mt0imcuiihgypsiwjsigeti9ijewmcuipgogicagphn0b3agb2zmc2v0psiwjsigc3rvcc1jb2xvcj0ii2zmzmzmziigc3rvcc1vcgfjaxr5psiwii8+ciagica8c3rvccbvzmzzzxq9ijewmcuiihn0b3aty29sb3i9iinmzmzmzmyiihn0b3atb3bhy2l0et0imsivpgogidwvbgluzwfyr3jhzgllbnq+ciagphjly3qged0imciget0imcigd2lkdgg9ijeiighlawdodd0imsigzmlsbd0idxjskcnncmfklxvjz2ctz2vuzxjhdgvkksiglz4kpc9zdmc+);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); }
  .event_description.is-opened:after {
    display: none; }

.event_showings {
  margin-top: 30px; }
  @media screen and (max-width: 870px) {
    .event_showings {
      padding: 0 20px; } }
  .event_showings .list {
    position: relative;
    list-style-type: none;
    font-family: "Nunito Sans", sans-serif;
    font-size: 15px; }
    .event_showings .list a, .event_showings .list a:focus, .event_showings .list a:visited {
      color: #CC2E53;
      display: inline-block; }
      .event_showings .list a:hover, .event_showings .list a:focus:hover, .event_showings .list a:visited:hover {
        color: #EB476E;
        padding-right: 5px; }
  .event_showings .cell {
    width: 20%;
    position: relative;
    float: left;
    display: inline-block;
    text-align: center;
    color: #28282A;
    line-height: 21px; }
    @media screen and (max-width: 870px) {
      .event_showings .cell {
        width: 33.33333%; } }
    .event_showings .cell:nth-child(1) {
      width: 40%;
      text-align: left; }
      @media screen and (max-width: 870px) {
        .event_showings .cell:nth-child(1) {
          width: 33.33333%; } }
    .event_showings .cell:nth-child(2) {
      padding-left: 20px; }
      @media screen and (max-width: 870px) {
        .event_showings .cell:nth-child(2) {
          padding-left: 0; } }
    .event_showings .cell:last-child {
      width: 40%;
      text-align: right;
      font-weight: 800;
      padding-right: 10px; }
      @media screen and (max-width: 870px) {
        .event_showings .cell:last-child {
          padding-right: 0;
          width: 33.33333%; } }
  .event_showings .listItem {
    position: relative;
    border-bottom: 1px solid #e4e4e4;
    padding: 20px 0; }
    .event_showings .listItem-hasNoLink .eventDetailShowings__cell {
      width: 50%; }
  .event_showings .buttons svg {
    display: none;
    width: 27px;
    fill: #28282A;
    vertical-align: middle;
    margin-right: 5px; }
  .event_showings .m-date__singleDate:before {
    vertical-align: middle;
    display: inline-block;
    content: '';
    border-bottom: 3px solid #CC2E53;
    width: 25px;
    line-height: 21px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-right: 10px; }
    @media screen and (max-width: 500px) {
      .event_showings .m-date__singleDate:before {
        width: 5px; } }
  .event_showings .m-date__singleDate .m-date__month, .event_showings .m-date__singleDate .m-date__day {
    font-weight: 800; }
  @media screen and (max-width: 870px) {
    .event_showings .m-date__singleDate .m-date__weekday {
      display: block;
      width: 100%; } }
  .event_showings .m-date__singleDate .m-date__weekday:before {
    content: "|";
    padding: 0 10px;
    vertical-align: top;
    display: inline-block; }
    @media screen and (max-width: 870px) {
      .event_showings .m-date__singleDate .m-date__weekday:before {
        display: none; } }
  .event_showings .additional_showings {
    display: none; }
  .event_showings .show-all-showings {
    text-transform: capitalize;
    color: #6D6E72;
    margin: 20px 0 0 0;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800; }
    .event_showings .show-all-showings:hover {
      color: #28282A; }

.eventDetailList {
  position: relative;
  font-family: "Nunito Sans", sans-serif;
  overflow: hidden; }
  .eventDetailList a, .eventDetailList a:focus, .eventDetailList p {
    color: white; }
  .eventDetailList .item {
    list-style-type: none;
    border-bottom: 1px solid #6D6E72;
    color: #F1F1F2;
    font-size: 16px;
    position: relative;
    padding: 19px 10px; }
    line .eventDetailList .item:first-child {
      margin-top: 3px; }
    .eventDetailList .item:last-child {
      border-bottom: none;
      padding-bottom: 0px; }
    .eventDetailList .item:before {
      display: none; }
    .eventDetailList .item .label {
      text-transform: capitalize;
      color: #fff;
      display: block;
      margin-bottom: 10px;
      font-size: 1rem;
      line-height: 19px;
      font-weight: 800; }
      .eventDetailList .item .label span {
        color: #fff; }
    .eventDetailList .item.sidebar_event_date .label {
      display: none; }
    .eventDetailList .item.sidebar_event_date span {
      color: #fff;
      font-size: 1rem;
      font-weight: 800; }
    .eventDetailList .item a {
      font-weight: 700;
      text-decoration: underline; }
      .eventDetailList .item a span {
        color: inherit;
        text-decoration: inherit; }
      .eventDetailList .item a:hover {
        color: #EB476E;
        text-decoration: none; }
    .eventDetailList .item span {
      line-height: 21px;
      font-size: 15px;
      color: #D7D7D8; }
    .eventDetailList .item svg {
      display: none;
      position: absolute;
      top: 0px;
      left: 10px;
      fill: #5e5e5e; }

/* 
 *  Core Owl Carousel CSS File
 *  v1.3.3
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  line-height: 0;
  content: '.'; }

/* display none until init */
.owl-carousel {
  position: relative;
  display: none;
  width: 100%;
  -ms-touch-action: pan-y; }

.owl-carousel .owl-wrapper {
  position: relative;
  display: none;
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-wrapper-outer {
  position: relative;
  overflow: hidden;
  width: 100%; }

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

.owl-carousel .owl-item {
  float: left; }

.owl-controls .owl-page, .owl-controls .owl-buttons div {
  cursor: pointer; }

.owl-controls {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent; }

/* mouse grab icon */
.grabbing {
  cursor: url(https://www.thebbtcenter.com/assets/production/e53576b499/css/grabbing.png) 8 8, move; }

/* fix */
.owl-carousel .owl-wrapper, .owl-carousel .owl-item {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden; }

/* Preload images */
body:after {
  content: url(../images/close.png) url(../images/loading.gif) url(../images/prev.png) url(../images/next.png);
  display: none; }

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box; }

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box; }

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  border-radius: 3px; }

.lightbox a img {
  border: none; }

.lb-outerContainer {
  position: relative;
  background-color: white;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px; }

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-container {
  padding: 4px; }

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0; }

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/loading.gif) no-repeat; }

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10; }

.lb-container > .nav {
  left: 0; }

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,r0lgodlhaqabapaaap///waaach5baeaaaaalaaaaaabaaeaaaicraeaow=="); }

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block; }

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../images/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s; }

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../images/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s; }

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px; }

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-data {
  padding: 0 4px;
  color: #ccc; }

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em; }

.lb-data .lb-caption {
  font-size: 14px;
  font-weight: bold;
  line-height: 1em;
  font-family: Arial; }

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999; }

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s; }

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

/* ----------------------------------------------------------------------------
=Sitemap
----------------------------------------------------------------------------- */
.sitemap {
  position: relative;
  width: 100%;
  margin: 0px auto 40px;
  clear: both;
  zoom: 1; }
  .sitemap:before, .sitemap:after {
    display: block;
    visibility: hidden;
    height: 0;
    content: '\0020'; }
  .sitemap:after {
    clear: both; }
  .sitemap .column {
    position: relative;
    width: 100%;
    padding: 0;
    zoom: 1; }
    .sitemap .column:before, .sitemap .column:after {
      display: block;
      visibility: hidden;
      height: 0;
      content: '\0020'; }
    .sitemap .column:after {
      clear: both; }
    @media screen and (min-width: 871px) {
      .sitemap .column {
        float: left;
        width: 50%; } }
    .sitemap .column ul {
      margin-bottom: 40px; }
    .sitemap .column ul, .sitemap .column li {
      padding: 0;
      list-style: none; }
      .sitemap .column ul:before, .sitemap .column ul:after, .sitemap .column li:before, .sitemap .column li:after {
        display: none; }
    .sitemap .column a:hover {
      color: #CC2E53; }
  .sitemap .column > ul > li > ul > li > a {
    color: #6D6E72; }
    .sitemap .column > ul > li > ul > li > a:after {
      visibility: hidden; }
    .sitemap .column > ul > li > ul > li > a.gh_page_redirect[rel="external"] {
      padding-right: 30px; }
      .sitemap .column > ul > li > ul > li > a.gh_page_redirect[rel="external"]:after {
        visibility: visible;
        height: 28px;
        width: 15px !important; }
  .sitemap .column > ul > li > ul > li > ul {
    margin-bottom: 10px;
    margin-top: 0; }
  .sitemap .column > ul > li > ul > li > ul > li > a {
    padding-left: 20px;
    color: #6D6E72; }
    .sitemap .column > ul > li > ul > li > ul > li > a:after {
      visibility: hidden; }
    .sitemap .column > ul > li > ul > li > ul > li > a.gh_page_redirect[rel="external"] {
      padding-right: 30px; }
      .sitemap .column > ul > li > ul > li > ul > li > a.gh_page_redirect[rel="external"]:after {
        visibility: visible;
        height: 28px;
        width: 15px !important; }

/* ----------------------------------------------------------------------------
= Conditional IE Styles. Nest each browser under heading. 
= Classes are generated by Modernizr and appear in HTML tag
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
= Homepage Alert
----------------------------------------------------------------------------- */
.m-alert-wrapper {
  position: relative;
  z-index: 999;
  background: #9B233F;
  overflow: hidden; }
  .m-alert-wrapper:before {
    background-color: #CC2E53;
    height: 100%;
    width: calc(32% + 300px);
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -300px;
    z-index: -1;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transform: skew(-55deg);
            transform: skew(-55deg);
    visibility: unset; }
  .m-alert-wrapper > div {
    width: 100%;
    padding: 20px;
    display: none;
    text-align: center;
    margin: 0 auto;
    max-width: 855px; }
    @media screen and (max-width: 870px) {
      .m-alert-wrapper > div {
        padding-top: 50px; } }
    .m-alert-wrapper > div * {
      color: #fff; }
    .m-alert-wrapper > div .alert-desc p {
      margin-bottom: 10px; }
    .m-alert-wrapper > div h2 {
      margin-bottom: 10px;
      font-size: 24px; }
    .m-alert-wrapper > div button {
      background-color: transparent;
      border: none;
      padding-left: 7px;
      line-height: 1.2;
      color: #fff; }
      .m-alert-wrapper > div button svg {
        stroke: #fff; }
  .m-alert-wrapper .skip_link {
    opacity: 0;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #CC2E53; }
    .m-alert-wrapper .skip_link:hover, .m-alert-wrapper .skip_link:focus {
      opacity: 1; }
  .m-alert-wrapper .close-alert {
    width: 110px;
    height: 45px;
    text-align: left;
    position: absolute;
    top: 10px;
    right: 15px;
    line-height: 42px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0; }
    .m-alert-wrapper .close-alert .close-x {
      top: 6px;
      position: relative;
      float: right; }
      .m-alert-wrapper .close-alert .close-x:before, .m-alert-wrapper .close-alert .close-x:after {
        width: 2px;
        height: 28px;
        content: '';
        position: absolute;
        top: 0;
        right: 10px;
        background: #fff; }
      .m-alert-wrapper .close-alert .close-x:before {
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg); }
      .m-alert-wrapper .close-alert .close-x:after {
        -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg); }
    .m-alert-wrapper .close-alert:hover, .m-alert-wrapper .close-alert:focus {
      color: #fff;
      text-decoration: underline; }
      .m-alert-wrapper .close-alert:hover .close-x, .m-alert-wrapper .close-alert:focus .close-x {
        opacity: 0.7; }

.sponsors {
  position: relative;
  overflow: hidden;
  z-index: 99;
  margin: 0 auto;
  padding: 0;
  max-width: 1000px; }
  .sponsors .sponsors-inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 110px;
    white-space: nowrap; }
    .sponsors .sponsors-inner .pause-button {
      -webkit-transition: all 300ms linear;
      transition: all 300ms linear;
      zoom: 1;
      opacity: 0;
      -moz-opacity: 0;
      filter: alpha(opacity=0);
      cursor: pointer;
      background: rgba(0, 0, 0, 0.5);
      color: white;
      border-radius: 4px;
      position: absolute;
      top: 10px;
      right: 10px;
      padding: 10px;
      z-index: 30; }
      .sponsors .sponsors-inner .pause-button:hover, .sponsors .sponsors-inner .pause-button:focus {
        background: black;
        zoom: 1;
        opacity: 1;
        -moz-opacity: 1;
        filter: alpha(opacity=100); }
      .sponsors .sponsors-inner .pause-button .fa-pause {
        display: block; }
      .sponsors .sponsors-inner .pause-button .fa-play {
        display: none; }
    .sponsors .sponsors-inner.paused .fa-pause {
      display: none; }
    .sponsors .sponsors-inner.paused .fa-play {
      display: block; }
    .sponsors .sponsors-inner:hover .pause-button {
      zoom: 1;
      opacity: 1;
      -moz-opacity: 1;
      filter: alpha(opacity=100); }
  .sponsors .owl_carousel:not(.owl-carousel) {
    display: block;
    overflow: hidden;
    width: 100%;
    white-space: nowrap; }
    .sponsors .owl_carousel:not(.owl-carousel) .item {
      display: inline-block;
      width: 20%;
      padding: 0;
      opacity: 0.4;
      text-align: center;
      vertical-align: middle;
      -webkit-transition: 0.2s;
      transition: 0.2s;
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden; }
  .sponsors .owl-item {
    display: inline-block;
    float: none;
    vertical-align: middle; }
  .sponsors .item {
    text-align: center; }
    .sponsors .item img {
      max-width: 100%;
      -webkit-filter: grayscale(100%);
      opacity: 0.5; }
    .sponsors .item a {
      display: block;
      padding: 0 30px;
      text-align: center;
      -webkit-transition: 0.25s;
      transition: 0.25s;
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden; }
      .sponsors .item a:hover img {
        -webkit-filter: grayscale(0%);
        opacity: 1; }

/* ----------------------------------------------------------------------------
= Magnific Popup CSS
----------------------------------------------------------------------------- */
.mfp-bg {
  position: fixed;
  overflow: hidden;
  z-index: 1042;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: #0b0b0b;
  filter: alpha(opacity=80); }

.mfp-wrap {
  position: fixed;
  z-index: 1043;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0 8px;
  text-align: center; }
  .mfp-container:before {
    display: inline-block;
    height: 100%;
    content: '';
    vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  z-index: 1045;
  margin: 0 auto;
  padding: 6px;
  text-align: left;
  vertical-align: middle;
  width: 100%; }
  .mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
    width: auto;
    width: 100%;
    cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  position: absolute;
  z-index: 1044;
  top: 50%;
  right: 8px;
  left: 8px;
  width: auto;
  margin-top: -0.8em;
  color: #ccc;
  text-align: center; }

.mfp-preloader a {
  color: #ccc; }

.mfp-preloader a:hover {
  color: white; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  display: block;
  overflow: visible;
  z-index: 1046;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-appearance: none; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0 0 18px 10px;
  opacity: 0.65;
  color: white;
  font-family: "Nunito Sans", sans-serif;
  font-size: 28px;
  font-style: normal;
  line-height: 44px;
  text-align: center;
  text-decoration: none; }

.mfp-close:hover, .mfp-close:focus {
  opacity: 1; }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #fff; }

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  right: -6px;
  width: 100%;
  padding-right: 6px;
  color: white;
  text-align: right; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px; }

.mfp-arrow {
  position: absolute;
  top: 50%;
  width: 90px;
  height: 110px;
  margin: 0;
  margin-top: -55px;
  padding: 0;
  opacity: 0.65;
  -webkit-tap-highlight-color: transparent; }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1; }

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
  content: ''; }

.mfp-arrow:after, .mfp-arrow .mfp-a {
  top: 8px;
  border-top-width: 13px;
  border-bottom-width: 13px; }

.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  margin-left: 31px;
  border-right: 17px solid white; }

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  margin-left: 39px;
  border-left: 17px solid white; }

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  width: 100%;
  max-width: 900px;
  line-height: 0; }

.mfp-iframe-scaler {
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

/* Main image in popup */
img.mfp-img {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 40px 0 40px;
  line-height: 0; }

/* The shadow behind the image */
.mfp-figure:after {
  position: absolute;
  display: block;
  z-index: -1;
  top: 40px;
  right: 0;
  bottom: 40px;
  left: 0;
  width: auto;
  height: auto;
  background: #444;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  content: ''; }

.mfp-figure {
  line-height: 0; }

.mfp-bottom-bar {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: -36px;
  cursor: auto; }

.mfp-title {
  padding-right: 36px;
  color: #f3f3f3;
  line-height: 18px;
  text-align: left;
  word-wrap: break-word; }

.mfp-figure small {
  display: block;
  color: #bdbdbd;
  font-size: 12px;
  line-height: 14px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
	   * Remove all paddings around the image on small screen
	   */
  .mfp-img-mobile .mfp-image-holder {
    padding-right: 0;
    padding-left: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  /* The shadow behind the image */
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-bottom-bar {
    position: fixed;
    top: auto;
    bottom: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 3px 5px;
    background: rgba(0, 0, 0, 0.6); }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }
  .mfp-img-mobile .mfp-counter {
    top: 3px;
    right: 5px; }
  .mfp-img-mobile .mfp-close {
    position: fixed;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    padding: 0;
    background: rgba(0, 0, 0, 0.6);
    line-height: 35px;
    text-align: center; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-right: 6px;
    padding-left: 6px; } }

.mfp-ie7 .mfp-img {
  padding: 0; }

.mfp-ie7 .mfp-bottom-bar {
  left: 50%;
  width: 600px;
  margin-top: 5px;
  margin-left: -300px;
  padding-bottom: 5px; }

.mfp-ie7 .mfp-container {
  padding: 0; }

.mfp-ie7 .mfp-content {
  padding-top: 44px; }

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }

.mfp-container .full-slideshow {
  width: 90%; }

.mfp-container .royalSlider {
  width: 100%;
  height: auto; }

.mfp-container .rsDefault .rsThumb {
  overflow: hidden;
  width: 150px;
  height: 80px;
  text-align: center; }
  .mfp-container .rsDefault .rsThumb img {
    width: 150px;
    height: auto;
    min-height: 80px;
    margin: 0 auto; }
  .mfp-container .rsDefault .rsThumb.rsNavSelected {
    background: #000; }

#venue_widgets_framework .l-m-venue_widget {
  border-radius: 0px 0px 0 0; }

#venue_widgets_framework .m-venueframework__header {
  z-index: 1;
  float: none;
  background-color: white;
  border-top-color: #fff;
  border-right-color: #fff;
  border-bottom-color: #fff;
  border-left-color: #fff;
  border-bottom-width: 1px;
  border-top-width: 0;
  border-right-width: 0px;
  border-left-width: 0px; }

#venue_widgets_framework .m-venueframework__header-icon {
  background-color: white;
  border-left-color: white;
  border-top-color: white;
  border-bottom-color: transparent; }
  #venue_widgets_framework .m-venueframework__header-icon svg {
    fill: #28282A; }

#venue_widgets_framework .m-venueframework__header-shadow {
  background: rgba(229, 229, 229, 0); }

#venue_widgets_framework .m-venueframework__header-text {
  color: #28282A;
  text-transform: capitalize;
  padding: 0 0 0 0px; }

#venue_widgets_framework .m-venueframework__header-link, #venue_widgets_framework .m-venueframework__header-link:visited {
  background-color: white;
  color: #423e3f; }
  #venue_widgets_framework .m-venueframework__header-link:hover, #venue_widgets_framework .m-venueframework__header-link:focus, #venue_widgets_framework .m-venueframework__header-link:active, #venue_widgets_framework .m-venueframework__header-link:visited:hover, #venue_widgets_framework .m-venueframework__header-link:visited:focus, #venue_widgets_framework .m-venueframework__header-link:visited:active {
    background-color: #231f20;
    color: white; }
  #venue_widgets_framework .m-venueframework__header-link:before, #venue_widgets_framework .m-venueframework__header-link:visited:before {
    background-color: #fff; }

#venue_widgets_framework .m-venueframework__widget-body {
  border-left-color: #fff;
  border-right-color: #fff;
  border-bottom-color: #fff;
  border-top-color: #fff;
  background-color: #fff;
  border-radius: 0 0 0 0; }

#venue_widgets_framework .m-venueframework__widget-body__noHeader {
  border-radius: 0px 0px 0 0;
  border-top: 1px solid #fff; }

#venue_widgets_framework .m-owlcarousel__controls-icon {
  border-color: transparent;
  background-color: transparent; }
  #venue_widgets_framework .m-owlcarousel__controls-icon svg {
    stroke: #dbdbdb; }
  #venue_widgets_framework .m-owlcarousel__controls-icon:hover, #venue_widgets_framework .m-owlcarousel__controls-icon:focus {
    border-color: #dbdbdb;
    background-color: transparent; }
    #venue_widgets_framework .m-owlcarousel__controls-icon:hover svg, #venue_widgets_framework .m-owlcarousel__controls-icon:focus svg {
      stroke: #dbdbdb; }

#venue_widgets_framework .owl-page span {
  background: #dbdbdb; }

#venue_widgets_framework .owl-page.active span {
  background: #28282A; }

#venue_widgets_framework .l-m-venue_widget .owl-wrapper, #venue_widgets_framework .l-m-venue_widget .owl-wrapper-outer, #venue_widgets_framework .l-m-venue_widget .owl-item {
  height: 100%; }

#venue_widgets_framework .m-venueframework-linklist__item.has_no_link {
  border-bottom-color: #dbdbdb; }

#venue_widgets_framework .m-venueframework-linklist__link, #venue_widgets_framework .m-venueframework-linklist__link:visited {
  border-bottom-color: #dbdbdb; }
  #venue_widgets_framework .m-venueframework-linklist__link:hover, #venue_widgets_framework .m-venueframework-linklist__link:focus, #venue_widgets_framework .m-venueframework-linklist__link:visited:hover, #venue_widgets_framework .m-venueframework-linklist__link:visited:focus {
    background-color: #f7f7f7; }
    #venue_widgets_framework .m-venueframework-linklist__link:hover .m-venueframework-linklist__item-title, #venue_widgets_framework .m-venueframework-linklist__link:focus .m-venueframework-linklist__item-title, #venue_widgets_framework .m-venueframework-linklist__link:visited:hover .m-venueframework-linklist__item-title, #venue_widgets_framework .m-venueframework-linklist__link:visited:focus .m-venueframework-linklist__item-title {
      color: #28282A; }
    #venue_widgets_framework .m-venueframework-linklist__link:hover .m-venueframework-linklist__item-subtitle, #venue_widgets_framework .m-venueframework-linklist__link:focus .m-venueframework-linklist__item-subtitle, #venue_widgets_framework .m-venueframework-linklist__link:visited:hover .m-venueframework-linklist__item-subtitle, #venue_widgets_framework .m-venueframework-linklist__link:visited:focus .m-venueframework-linklist__item-subtitle {
      color: #423e3f; }
    #venue_widgets_framework .m-venueframework-linklist__link:hover .m-venueframework-linklist__item-icon svg, #venue_widgets_framework .m-venueframework-linklist__link:focus .m-venueframework-linklist__item-icon svg, #venue_widgets_framework .m-venueframework-linklist__link:visited:hover .m-venueframework-linklist__item-icon svg, #venue_widgets_framework .m-venueframework-linklist__link:visited:focus .m-venueframework-linklist__item-icon svg {
      stroke: #28282A; }

#venue_widgets_framework .m-venueframework-linklist__item-title {
  color: #423e3f; }

#venue_widgets_framework .m-venueframework-linklist__item-subtitle {
  color: #969696; }

#venue_widgets_framework .m-venueframework-linklist__item-icon {
  color: #423e3f; }
  #venue_widgets_framework .m-venueframework-linklist__item-icon svg {
    stroke: #423e3f; }

#venue_widgets_framework .has_image .m-venueframework-newswidget__item:nth-child(3) a, #venue_widgets_framework .has_image .m-venueframework-newswidget__item:nth-child(3) a:visited, #venue_widgets_framework .has_image .m-venueframework-newswidget__item:nth-child(3).has_no_link {
  border-bottom-color: #dbdbdb; }

#venue_widgets_framework .m-venueframework-newswidget__item-date {
  color: #969696; }

#venue_widgets_framework .m-venueframework-newswidget__item-title {
  color: #423e3f; }

#venue_widgets_framework .m-venueframework-newswidget__item-subtitle {
  color: #423e3f; }

#venue_widgets_framework .m-venueframework-newswidget__link, #venue_widgets_framework .m-venueframework-newswidget__link:visited {
  border-bottom-color: #dbdbdb; }
  #venue_widgets_framework .m-venueframework-newswidget__link:hover, #venue_widgets_framework .m-venueframework-newswidget__link:focus, #venue_widgets_framework .m-venueframework-newswidget__link:visited:hover, #venue_widgets_framework .m-venueframework-newswidget__link:visited:focus {
    background-color: transparent; }
    #venue_widgets_framework .m-venueframework-newswidget__link:hover .m-venueframework-newswidget__item-date, #venue_widgets_framework .m-venueframework-newswidget__link:focus .m-venueframework-newswidget__item-date, #venue_widgets_framework .m-venueframework-newswidget__link:visited:hover .m-venueframework-newswidget__item-date, #venue_widgets_framework .m-venueframework-newswidget__link:visited:focus .m-venueframework-newswidget__item-date {
      color: #423e3f; }
    #venue_widgets_framework .m-venueframework-newswidget__link:hover .m-venueframework-newswidget__item-title, #venue_widgets_framework .m-venueframework-newswidget__link:focus .m-venueframework-newswidget__item-title, #venue_widgets_framework .m-venueframework-newswidget__link:visited:hover .m-venueframework-newswidget__item-title, #venue_widgets_framework .m-venueframework-newswidget__link:visited:focus .m-venueframework-newswidget__item-title {
      color: #28282A; }
    #venue_widgets_framework .m-venueframework-newswidget__link:hover .m-venueframework-newswidget__item-subtitle, #venue_widgets_framework .m-venueframework-newswidget__link:focus .m-venueframework-newswidget__item-subtitle, #venue_widgets_framework .m-venueframework-newswidget__link:visited:hover .m-venueframework-newswidget__item-subtitle, #venue_widgets_framework .m-venueframework-newswidget__link:visited:focus .m-venueframework-newswidget__item-subtitle {
      color: #423e3f; }

#venue_widgets_framework .m-venueframework-socialwidget__description {
  color: #423e3f; }
  #venue_widgets_framework .m-venueframework-socialwidget__description a, #venue_widgets_framework .m-venueframework-socialwidget__description a:visited {
    color: #423e3f; }
  #venue_widgets_framework .m-venueframework-socialwidget__description a:hover, #venue_widgets_framework .m-venueframework-socialwidget__description a:focus {
    color: #28282A; }

#venue_widgets_framework .m-venueframework-socialwidget__meta {
  color: #969696; }
  #venue_widgets_framework .m-venueframework-socialwidget__meta a, #venue_widgets_framework .m-venueframework-socialwidget__meta a:visited {
    color: #969696; }
  #venue_widgets_framework .m-venueframework-socialwidget__meta a:hover, #venue_widgets_framework .m-venueframework-socialwidget__meta a:focus {
    color: #28282A; }
  #venue_widgets_framework .m-venueframework-socialwidget__meta .delimiter {
    color: #969696; }

#venue_widgets_framework .l-m-venue_widget__youtubewidget .entry {
  background-color: #fff; }

#venue_widgets_framework .l-m-venue_widget__youtubewidget .title {
  color: #423e3f; }

#venue_widgets_framework .l-m-venue_widget__youtubewidget .meta {
  color: #969696; }

#venue_widgets_framework .l-m-venue_widget__youtubewidget .m-venueframework__widget-body {
  border: none; }

#venue_widgets_framework .l-m-venue_widget__calendarwidget .cal-controls .m-owlcarousel__controls-icon {
  border-color: transparent; }
  #venue_widgets_framework .l-m-venue_widget__calendarwidget .cal-controls .m-owlcarousel__controls-icon svg {
    stroke: #dbdbdb; }
  #venue_widgets_framework .l-m-venue_widget__calendarwidget .cal-controls .m-owlcarousel__controls-icon:hover {
    border-color: #dbdbdb; }
    #venue_widgets_framework .l-m-venue_widget__calendarwidget .cal-controls .m-owlcarousel__controls-icon:hover svg {
      stroke: #dbdbdb; }

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-row {
  color: #423e3f; }

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar-container:after {
  background: #fff; }

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-head {
  color: #423e3f; }

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-body {
  background: #fff; }

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div {
  background: #fff; }

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div > span.fc-date {
  color: #423e3f;
  background: #fff; }

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content > span.fc-date {
  color: #423e3f; }
  #venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content > span.fc-date:after {
    background: #423e3f; }

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content {
  background: #fff; }
  #venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content:hover {
    background: #28282A; }
    #venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content:hover .fc-date {
      color: #f7f7f7; }
      #venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content:hover .fc-date:after {
        background: #f7f7f7; }

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-today .fc-date {
  background: #28282A;
  color: #f7f7f7; }

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-today.fc-content .fc-date {
  background: #28282A;
  color: #f7f7f7; }
  #venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-today.fc-content .fc-date:after {
    background: #f7f7f7; }

#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal {
  color: #423e3f; }

#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal-body, #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal-dialog, #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal-content {
  background: #fff; }

#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in {
  border-radius: 0px 0px 0 0; }
  #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .modal-body {
    border: 1px solid #fff;
    border-top: none; }
  #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .close {
    border: none;
    border: 1px solid #fff;
    background: #fff;
    color: #969696;
    border-radius: 0px 0px 0 0; }
    #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .close:hover {
      background: #231f20;
      color: white; }
  #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .date {
    color: #28282A; }
  #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in h3 a {
    color: #423e3f; }
  #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .info .calendar_buttons a, #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .info .calendar_buttons a.tickets {
    color: #28282A; }
    #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .info .calendar_buttons a svg, #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .info .calendar_buttons a.tickets svg {
      fill: #28282A; }
    #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .info .calendar_buttons a:hover, #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .info .calendar_buttons a.tickets:hover {
      color: #423e3f; }
      #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .info .calendar_buttons a:hover svg, #venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .info .calendar_buttons a.tickets:hover svg {
        fill: #423e3f; }

#venue_widgets_framework .l-m-venue_widget__promotionswidget .m-venueframework__widget-body {
  border: none; }

#venue_widgets_framework .m-venueframework-promotionswidget__item-title h2 {
  color: #f7f7f7; }

#venue_widgets_framework .m-venueframework-promotionswidget__item-subtitle {
  color: #f7f7f7; }
  #venue_widgets_framework .m-venueframework-promotionswidget__item-subtitle:after {
    background: #f7f7f7; }

#venue_widgets_framework .l-m-venue_widget__eventslist {
  overflow: hidden; }
  #venue_widgets_framework .l-m-venue_widget__eventslist .m-owlcarousel__controls-icon {
    border-color: transparent; }
    #venue_widgets_framework .l-m-venue_widget__eventslist .m-owlcarousel__controls-icon svg {
      stroke: #dbdbdb; }
    #venue_widgets_framework .l-m-venue_widget__eventslist .m-owlcarousel__controls-icon:hover {
      border-color: #dbdbdb; }
      #venue_widgets_framework .l-m-venue_widget__eventslist .m-owlcarousel__controls-icon:hover svg {
        stroke: #dbdbdb; }
  #venue_widgets_framework .l-m-venue_widget__eventslist .m-eventItem__date {
    color: #969696; }
  #venue_widgets_framework .l-m-venue_widget__eventslist .m-eventItem__title, #venue_widgets_framework .l-m-venue_widget__eventslist .m-eventItem__title a {
    color: #423e3f; }
    #venue_widgets_framework .l-m-venue_widget__eventslist .m-eventItem__title:hover, #venue_widgets_framework .l-m-venue_widget__eventslist .m-eventItem__title a:hover {
      color: #28282A; }
  #venue_widgets_framework .l-m-venue_widget__eventslist .m-eventItem__tagline {
    color: #423e3f; }
  #venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__item {
    border-right-color: #dbdbdb; }
  #venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons a {
    color: #423e3f; }
    #venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons a:hover {
      color: #28282A; }
      #venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons a:hover svg path {
        fill: #423e3f; }
  #venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons a svg path {
    fill: #28282A; }

/* adding content here for extra # in override */
#content #venue_widgets_framework {
  margin: 100px auto 50px auto; }
  @media screen and (max-width: 870px) {
    #content #venue_widgets_framework {
      margin-top: 30px auto; } }
  #content #venue_widgets_framework .l-m-venue_widget {
    -webkit-box-shadow: 10px 18px 20px -18px rgba(0, 0, 0, 0.4);
            box-shadow: 10px 18px 20px -18px rgba(0, 0, 0, 0.4); }
  #content #venue_widgets_framework .m-venueframework__header-icon svg {
    fill: #CC2E53; }
  #content #venue_widgets_framework .m-venueframework__header-link {
    text-transform: capitalize; }
    #content #venue_widgets_framework .m-venueframework__header-link:hover {
      color: #CC2E53;
      background-color: transparent; }
  #content #venue_widgets_framework .m-venueframework__header-text {
    font-weight: 800; }
  #content #venue_widgets_framework .m-venueframework__widget-body svg {
    stroke: #28282A; }
  #content #venue_widgets_framework .fc-row > div:hover {
    background-color: transparent;
    color: inherit;
    outline: none;
    cursor: pointer; }
  #content #venue_widgets_framework .fc-head {
    font-size: 16px;
    color: #6D6E72;
    font-weight: 700; }
  #content #venue_widgets_framework .fc-date {
    color: #222222; }
  #content #venue_widgets_framework .fc-today .fc-date {
    background-color: transparent;
    border: 3px solid #CC2E53;
    color: #28282A;
    padding: 6px; }
  #content #venue_widgets_framework .fc-content .fc-date {
    font-weight: 700;
    text-decoration: underline;
    -webkit-transition: all 100ms linear;
    transition: all 100ms linear;
    color: #28282A;
    cursor: pointer; }
    #content #venue_widgets_framework .fc-content .fc-date:hover {
      color: #CC2E53;
      text-decoration: none; }
    #content #venue_widgets_framework .fc-content .fc-date:after {
      display: none; }
  @media screen and (max-width: 870px) {
    #content #venue_widgets_framework .l-m-venue_widget__newswidget[data-layout="wide"] .m-venueframework-newswidget__link {
      padding: 10px; } }
  #content #venue_widgets_framework .m-venueframework-newswidget__item-date {
    color: #6D6E72;
    font-weight: 600; }
  #content #venue_widgets_framework .m-venueframework-newswidget__item-title {
    font-weight: 700;
    color: #28282A; }
  #content #venue_widgets_framework .m-venueframework-newswidget__item-subtitle {
    font-size: 13px;
    color: #28282A; }
  #content #venue_widgets_framework .m-venueframework-socialwidget__meta {
    color: #6D6E72;
    line-height: 14px;
    padding-top: 8px;
    font-family: Helvetica; }
    #content #venue_widgets_framework .m-venueframework-socialwidget__meta a, #content #venue_widgets_framework .m-venueframework-socialwidget__meta a:visited, #content #venue_widgets_framework .m-venueframework-socialwidget__meta .delimiter {
      color: #6D6E72; }
    #content #venue_widgets_framework .m-venueframework-socialwidget__meta a:hover {
      color: #28282A; }
  #content #venue_widgets_framework .m-venueframework-socialwidget__description {
    font-size: 14px;
    font-family: Helvetica;
    color: #28282A; }
    #content #venue_widgets_framework .m-venueframework-socialwidget__description a {
      color: #9B233F;
      text-decoration: underline; }
      #content #venue_widgets_framework .m-venueframework-socialwidget__description a:hover {
        color: #CC2E53;
        text-decoration: none; }
      #content #venue_widgets_framework .m-venueframework-socialwidget__description a:active {
        color: #EB476E;
        text-decoration: none; }
  #content #venue_widgets_framework .owl-page span {
    background: #000; }
    #content #venue_widgets_framework .owl-page span:hover {
      background: #CC2E53; }
  #content #venue_widgets_framework .owl-page.active span {
    background: #CC2E53; }
  #content #venue_widgets_framework .m-owlcarousel__controls-icon {
    border: none; }
    #content #venue_widgets_framework .m-owlcarousel__controls-icon:hover {
      border: none; }
      #content #venue_widgets_framework .m-owlcarousel__controls-icon:hover svg {
        stroke: #CC2E53; }
  #content #venue_widgets_framework .l-m-venue_widget[data-network*="facebook"] .m-venueframework-socialwidget__meta {
    padding-top: 27px;
    line-height: 17px; }
  #content #venue_widgets_framework .l-m-venue_widget[data-network*="facebook"] .m-venueframework-socialwidget__description {
    font-size: 13px;
    line-height: 16px; }
  #content #venue_widgets_framework .l-m-venue_widget__youtubewidget .entry {
    padding: 19px 21px;
    font-family: Helvetica; }
  #content #venue_widgets_framework .l-m-venue_widget__youtubewidget .title {
    font-weight: 500; }
  #content #venue_widgets_framework .l-m-venue_widget__youtubewidget .meta {
    line-height: 14px; }
  #content #venue_widgets_framework .m-venueframework-calendarwidget .close {
    color: #28282A; }
    #content #venue_widgets_framework .m-venueframework-calendarwidget .close:hover {
      background-color: transparent;
      color: #CC2E53; }
    #content #venue_widgets_framework .m-venueframework-calendarwidget .close .button_close {
      font-size: 15px; }
  #content #venue_widgets_framework .m-venueframework-calendarwidget .calendar_buttons a svg {
    fill: #28282A;
    stroke: #28282A; }
  #content #venue_widgets_framework .m-venueframework-calendarwidget .calendar_buttons a:hover svg, #content #venue_widgets_framework .m-venueframework-calendarwidget .calendar_buttons a:active svg {
    background-color: transparent;
    fill: #CC2E53;
    stroke: #CC2E53; }
  #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop.m-owlcarousel__loop .m-venueframework-newswidget__item-title {
    color: #28282A; }
    #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop.m-owlcarousel__loop .m-venueframework-newswidget__item-title:hover {
      color: #CC2E53; }
  #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop).has_image .m-venueframework-newswidget__item-title, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop).has_image .m-venueframework-newswidget__item-title {
    color: #28282A; }
    #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop).has_image .m-venueframework-newswidget__item-title:hover, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop).has_image .m-venueframework-newswidget__item-title:hover {
      color: #CC2E53; }
  #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop).has_image .m-venueframework-newswidget__item-thumb img, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop).has_image .m-venueframework-newswidget__item-thumb img {
    opacity: 1; }
    #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop).has_image .m-venueframework-newswidget__item-thumb img:hover, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop).has_image .m-venueframework-newswidget__item-thumb img:hover {
      opacity: 0.8; }
  #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop).has_image .m-venueframework-newswidget__item:hover .m-venueframework-newswidget__link, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop).has_image .m-venueframework-newswidget__item:hover .m-venueframework-newswidget__link {
    padding-left: 10px; }
  #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop) .m-venueframework-linklist__item, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop) .m-venueframework-newswidget__item, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop) .m-venueframework-linklist__item, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop) .m-venueframework-newswidget__item {
    position: relative; }
    #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop) .m-venueframework-linklist__item .m-venueframework-linklist__link, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop) .m-venueframework-newswidget__item .m-venueframework-linklist__link, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop) .m-venueframework-linklist__item .m-venueframework-linklist__link, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop) .m-venueframework-newswidget__item .m-venueframework-linklist__link {
      border-bottom: none;
      padding: 19.5px 20px; }
      @media screen and (max-width: 870px) {
        #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop) .m-venueframework-linklist__item .m-venueframework-linklist__link, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop) .m-venueframework-newswidget__item .m-venueframework-linklist__link, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop) .m-venueframework-linklist__item .m-venueframework-linklist__link, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop) .m-venueframework-newswidget__item .m-venueframework-linklist__link {
          padding: 10px 20px; } }
    #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop) .m-venueframework-linklist__item .m-venueframework-linklist__item-title, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop) .m-venueframework-linklist__item .m-venueframework-newswidget__item-title, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop) .m-venueframework-newswidget__item .m-venueframework-linklist__item-title, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop) .m-venueframework-newswidget__item .m-venueframework-newswidget__item-title, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop) .m-venueframework-linklist__item .m-venueframework-linklist__item-title, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop) .m-venueframework-linklist__item .m-venueframework-newswidget__item-title, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop) .m-venueframework-newswidget__item .m-venueframework-linklist__item-title, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop) .m-venueframework-newswidget__item .m-venueframework-newswidget__item-title {
      font-weight: 700;
      color: #28282A; }
    #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop) .m-venueframework-linklist__item .m-venueframework-linklist__item-subtitle, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop) .m-venueframework-newswidget__item .m-venueframework-linklist__item-subtitle, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop) .m-venueframework-linklist__item .m-venueframework-linklist__item-subtitle, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop) .m-venueframework-newswidget__item .m-venueframework-linklist__item-subtitle {
      font-weight: 600;
      color: #6D6E72; }
    #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop) .m-venueframework-linklist__item:hover svg, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop) .m-venueframework-newswidget__item:hover svg, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop) .m-venueframework-linklist__item:hover svg, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop) .m-venueframework-newswidget__item:hover svg {
      stroke: #CC2E53; }
    #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop) .m-venueframework-linklist__item:hover .m-venueframework-linklist__item-subtitle, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop) .m-venueframework-newswidget__item:hover .m-venueframework-linklist__item-subtitle, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop) .m-venueframework-linklist__item:hover .m-venueframework-linklist__item-subtitle, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop) .m-venueframework-newswidget__item:hover .m-venueframework-linklist__item-subtitle {
      color: #CC2E53; }
    #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop) .m-venueframework-linklist__item:hover .m-venueframework-linklist__link, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop) .m-venueframework-newswidget__item:hover .m-venueframework-linklist__link, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop) .m-venueframework-linklist__item:hover .m-venueframework-linklist__link, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop) .m-venueframework-newswidget__item:hover .m-venueframework-linklist__link {
      padding-left: 30px;
      background-color: transparent; }
    #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop) .m-venueframework-linklist__item:hover .m-venueframework-newswidget__link, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop) .m-venueframework-newswidget__item:hover .m-venueframework-newswidget__link, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop) .m-venueframework-linklist__item:hover .m-venueframework-newswidget__link, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop) .m-venueframework-newswidget__item:hover .m-venueframework-newswidget__link {
      padding-left: 18px; }
    #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop) .m-venueframework-linklist__item:hover:before, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-linklist__loop:not(.m-owlcarousel__loop) .m-venueframework-newswidget__item:hover:before, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop) .m-venueframework-linklist__item:hover:before, #content #venue_widgets_framework .m-venueframework__widget-body .m-venueframework-newswidget__loop:not(.m-owlcarousel__loop) .m-venueframework-newswidget__item:hover:before {
      height: 100%;
      width: 8px;
      background-color: #CC2E53;
      position: absolute;
      top: 0;
      left: 0;
      content: '';
      display: block; }