/* ----------------------------------------------------------------------------
= Prinrt import - compiles to /css/print.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; }

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

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

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

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

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

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

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

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

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

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.
 *
 */
/* ----------------------------------------------------------------------------
= 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, .event_list .secondary_event .eventItem .info .title, .intro_events .event_list .eventItem .title, .event_list .outside_info .title {
  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 {
  font-size: 1.77689rem;
  margin-bottom: 20px; }
  @media screen and (max-width: 767px) {
    h3, .h3 {
      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 {
  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 {
  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 {
  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; }

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

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

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