/* ----------------------------------------------------------------------------
= Main import - compiles to /css/style.css
= Currently using Bourbon latest from CodeKit
----------------------------------------------------------------------------- */
html {
  box-sizing: border-box;
}

*, *::after, *::before {
  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;
}

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

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

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

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

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 
 * -- We already set these things per project.
 *
 */
button {
  border: none;
  background: none;
  padding: 0px;
}

/*
	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 + (20 - 14) * (100vw - 700px) / (1000 - 700));
  }
}
@media screen and (min-width: 1000px) {
  :root {
    font-size: 20px;
  }
}

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

.clear {
  clear: both;
}

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

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

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

.invisible {
  visibility: hidden;
}

.hide {
  display: none;
}

* {
  letter-spacing: 0em;
}

.header-base, .sitemap .column > ul > li > a, .event_list .eventItem .date, .news_detail_page .title-inner-wrapper .date, body.home .primary_event .date.date-small, .spotlight .date,
.concierge .date,
.news_list .date,
.contest_list .date,
.job_list .date,
.seating_charts .date,
.offer_list .date,
#venues.index .list .date, h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px;
  font-family: "Rubik", serif;
  color: #333;
}

h1,
.h1 {
  font-size: 2.44140625rem;
}
.textarea h1, .cms h1,
.textarea .h1,
.cms .h1 {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 61px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 61px;
}
@media screen and (max-width: 700px) {
  .textarea h1, .cms h1,
  .textarea .h1,
  .cms .h1 {
    font-size: 2.44140625rem;
    line-height: normal;
  }
}
@media screen and (max-width: 700px) {
  h1,
  .h1 {
    font-size: 2.44140625rem;
    line-height: normal;
  }
}

h2,
.h2 {
  font-size: 1.953125rem;
}
.textarea h2,
.textarea .h2 {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 49px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 49px;
  position: relative;
  margin-bottom: 35px;
}
.textarea h2:after,
.textarea .h2:after {
  content: " ";
  position: absolute;
  bottom: -10px;
  left: 0px;
  width: 53px;
  height: 7px;
  background: url("../images/svg/circles.svg") no-repeat;
}
@media screen and (max-width: 700px) {
  .textarea h2,
  .textarea .h2 {
    font-size: 1.953125rem;
    line-height: normal;
  }
}
h2.long_title,
.h2.long_title {
  font-size: 1.5625rem;
}

h3,
.h3 {
  font-size: 1.5625rem;
}
.textarea h3,
.textarea .h3 {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 39px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 39px;
}
@media screen and (max-width: 700px) {
  .textarea h3,
  .textarea .h3 {
    font-size: 1.5625rem;
  }
}

h4,
.h4,
.sitemap .column > ul > li > a {
  font-size: 1.25rem;
}
.textarea h4,
.textarea .h4,
.textarea .sitemap .column > ul > li > a,
.sitemap .textarea .column > ul > li > a {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 31px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 31px;
}
@media screen and (max-width: 700px) {
  .textarea h4,
  .textarea .h4,
  .textarea .sitemap .column > ul > li > a,
  .sitemap .textarea .column > ul > li > a {
    font-size: 1.25rem;
  }
}

h5,
.h5,
.event_list .eventItem .date,
.news_detail_page .title-inner-wrapper .date,
body.home .primary_event .date.date-small,
.spotlight .date,
.concierge .date,
.news_list .date,
.contest_list .date,
.job_list .date,
.seating_charts .date,
.offer_list .date,
#venues.index .list .date {
  font-size: 1rem;
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 20px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 20px;
}

h6,
.h6 {
  font-size: 0.8rem;
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 20px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 20px;
}

.small_paragraph, .small p {
  font-size: 0.889rem;
}

.p-base, .sitemap .column > ul > li > ul > li > ul > li > a, .sitemap .column > ul > li > ul > li > a, table tr td, ol > li, .cms ul li,
.textarea ul li,
.spotlight_text ul li,
.faq ul li,
.link .description ul li,
.event_description ul li, address,
.address, p,
.p {
  font-size: 1rem;
  font-family: "Roboto Slab", serif;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 20px;
  color: #231f20;
  letter-spacing: 0.5px;
  line-height: 35.2px;
}
@media screen and (max-width: 700px) {
  .p-base, .sitemap .column > ul > li > ul > li > ul > li > a, .sitemap .column > ul > li > ul > li > a, table tr td, ol > li, .cms ul li,
  .textarea ul li,
  .spotlight_text ul li,
  .faq ul li,
  .link .description ul li,
  .event_description ul li, address,
  .address, p,
  .p {
    font-size: 18px;
    line-height: 28px;
  }
}

p,
.p {
  margin: 0 0 20px;
}
p.lead,
.p.lead {
  font-size: 1.266rem;
  padding: 10px 50px;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 28px;
  color: #231f20;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 44.8px;
  margin-bottom: 35px;
}
@media screen and (max-width: 700px) {
  p.lead,
  .p.lead {
    font-size: 22px;
    line-height: 35px;
    padding: 10px 20px;
  }
}
p strong,
.p strong {
  font-weight: 700;
}

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

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

.cms ul,
.textarea ul,
.spotlight_text ul,
.faq ul,
.link .description ul,
.event_description ul {
  margin-bottom: 20px;
}
.cms ul li,
.textarea ul li,
.spotlight_text ul li,
.faq ul li,
.link .description ul li,
.event_description ul li {
  padding: 9px 0 9px 44px;
  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 {
  opacity: 1;
  visibility: visible;
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 11px;
  height: 15px;
  background: url("../images/svg/list-circle.svg") no-repeat;
  background-position: center center;
}
@media screen and (max-width: 700px) {
  .cms ul li:before,
  .textarea ul li:before,
  .spotlight_text ul li:before,
  .faq ul li:before,
  .link .description ul li:before,
  .event_description ul li:before {
    top: 17px;
  }
}
.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: 9px 0 9px 44px;
  counter-increment: li-counter;
}
ol > li:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0px;
  width: 25px;
  height: 25px;
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 19px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 16px;
  content: counter(li-counter) ".";
}

a:not(.button) {
  border: none;
  text-decoration: none;
  font-weight: 400;
  color: #231f20;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
a:not(.button):hover {
  color: #0069aa;
}
.textarea p a:not(.button):after, .textarea li a:not(.button):after, .cms p a:not(.button):after, .cms li a:not(.button):after, .spotlight_content a:not(.button):after, .m-eventDetailList__item a:not(.button):after, .event_description a:not(.button):after {
  content: " ";
  position: absolute;
  bottom: 1px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: #231f20;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.textarea p a:not(.button):hover:after, .textarea li a:not(.button):hover:after, .cms p a:not(.button):hover:after, .cms li a:not(.button):hover:after, .spotlight_content a:not(.button):hover:after, .m-eventDetailList__item a:not(.button):hover:after, .event_description a:not(.button):hover:after {
  width: 0px;
  left: 50%;
}

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

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

blockquote {
  position: relative;
  padding-left: 200px;
  margin: 60px 0px 30px;
}
blockquote:after {
  content: " ";
  width: 126px;
  height: 110px;
  position: absolute;
  top: 0px;
  left: 0px;
  background: url("../images/svg/quote.svg") no-repeat;
}
@media screen and (max-width: 700px) {
  blockquote {
    padding-left: 0px;
    padding-top: 125px;
  }
  blockquote:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
blockquote p {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 28px;
  color: #231f20;
  letter-spacing: 0.5px;
  line-height: 44.8px;
}
@media screen and (max-width: 700px) {
  blockquote p {
    text-align: center;
    font-size: 22px;
    line-height: 35.2px;
  }
}
blockquote p.author {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 700px) {
  blockquote p.author {
    margin-top: 30px;
    padding-top: 8px;
  }
}
blockquote p.author .name {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 20px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 20px;
  position: relative;
}
blockquote p.author .name:before {
  content: " ";
  position: absolute;
  width: 45px;
  height: 35px;
  top: -7px;
  left: -25px;
  z-index: -1;
  background: url("../images/svg/quote_circle.svg") no-repeat;
}
blockquote p.author .name .title {
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 13px;
  color: #231f20;
  letter-spacing: 3.9px;
  line-height: 16px;
  font-style: normal;
  text-transform: uppercase;
  margin-left: 5px;
}
@media screen and (max-width: 700px) {
  blockquote p.author .name .title {
    display: block;
    margin-top: 6px;
  }
}
blockquote p.author:after {
  content: " ";
  position: absolute;
  width: calc(100% - 80px);
  left: 80px;
  top: -3px;
  height: 1px;
  background: #d6d6d6;
}
@media screen and (max-width: 700px) {
  blockquote p.author:after {
    width: 100%;
    left: 0px;
  }
}

/* ----------------------------------------------------------------------------
= Layout, Body and Containers
----------------------------------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  outline: 0;
}

html {
  height: 100%;
  outline: 0;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  color: #333;
  font-family: "Roboto Slab", serif;
  font-size: 16px;
  text-align: left;
  background: #f6f6f6;
  outline: 0;
}
body.testing header.header {
  position: absolute !important;
}
body.testing #container.layout_has_slideshow .full-slideshow,
body.testing #container.layout_has_slideshow .map_wrapper,
body.testing .full .full_column {
  margin-top: 5px !important;
  padding-top: 185px !important;
}

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

#layout {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0px;
  outline: 0;
}

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

.accessible {
  display: none;
}

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

.one_sidebar_right {
  width: 100%;
}
.one_sidebar_right #column_1 {
  width: 100%;
  position: relative;
}
.one_sidebar_right #column_2 {
  position: absolute;
  right: 10px;
  top: 20px;
  background: #222;
  width: 300px;
}
.one_sidebar_right .leftColumn {
  width: calc(100% - 300px);
  background: #fff;
  float: right;
  padding-left: 85px;
  padding-right: 10px;
}
@media screen and (max-width: 870px) {
  .one_sidebar_right .leftColumn {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }
}
.one_sidebar_right .rightBreakout {
  position: absolute;
  left: 0px;
  top: 0px;
  background: transparent;
  width: 300px;
}
@media screen and (max-width: 870px) {
  .one_sidebar_right .rightBreakout {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
  }
}

.full {
  width: 100%;
}
.full .full_column {
  width: 100%;
  background: #fff;
  box-shadow: 0 9px 14px 0 rgba(0, 0, 0, 0.1);
  margin-top: 185px;
  padding-top: 5px;
  padding-bottom: 60px;
}
@media screen and (max-width: 1350px) {
  .full .full_column {
    width: calc(100% - 100px);
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1080px) {
  .full .full_column {
    margin-top: 165px;
    padding-top: 0px;
  }
}
@media screen and (max-width: 1060px) {
  .full .full_column {
    margin-top: 145px;
  }
}
@media screen and (max-width: 1024px) {
  .full .full_column {
    margin-top: 80px;
  }
}
@media screen and (max-width: 500px) {
  .full .full_column {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1080px) {
  .full .full_column {
    width: 100%;
  }
}
.full .full_column .full_column_main, .full .full_column .news_list, .full .full_column .team_list {
  max-width: 1040px;
  padding: 0px 30px;
  margin: 0px auto;
}

#container.layout_has_slideshow .breadcrumbs {
  margin-top: 0px;
  padding-top: 0px;
}
#container.layout_has_slideshow .full-slideshow, #container.layout_has_slideshow .map_wrapper {
  margin-top: 185px;
}
@media screen and (max-width: 1350px) {
  #container.layout_has_slideshow .full-slideshow, #container.layout_has_slideshow .map_wrapper {
    width: calc(100% - 100px);
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1080px) {
  #container.layout_has_slideshow .full-slideshow, #container.layout_has_slideshow .map_wrapper {
    width: 100%;
    margin-top: 165px;
  }
}
@media screen and (max-width: 1060px) {
  #container.layout_has_slideshow .full-slideshow, #container.layout_has_slideshow .map_wrapper {
    margin-top: 145px;
  }
}
@media screen and (max-width: 1024px) {
  #container.layout_has_slideshow .full-slideshow, #container.layout_has_slideshow .map_wrapper {
    margin-top: 80px;
  }
}
@media screen and (max-width: 700px) {
  #container.layout_has_slideshow .full-slideshow, #container.layout_has_slideshow .map_wrapper {
    margin-top: 60px;
  }
}
#container.layout_has_slideshow .full .full_column {
  margin-top: 0px;
  padding-top: 0px;
}
@media screen and (max-width: 1350px) {
  #container.layout_has_slideshow .full .full_column {
    padding-top: 15px;
  }
}
@media screen and (max-width: 700px) {
  #container.layout_has_slideshow .full .full_column {
    padding-top: 10px;
  }
}

#venue_widgets_framework {
  width: 1200px;
  max-width: calc(100% + 20px);
  margin-left: -10px;
  box-shadow: none;
  margin-top: 20px;
}
@media screen and (max-width: 1221px) {
  #venue_widgets_framework {
    max-width: calc(100% + 40px);
    margin-left: -20px;
  }
}
@media screen and (max-width: 1200px) {
  #venue_widgets_framework {
    max-width: 100%;
    margin-left: 0px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1164px) {
  #venue_widgets_framework {
    width: 790px;
  }
}
@media screen and (max-width: 1100px) {
  #venue_widgets_framework {
    width: 768px;
  }
}
@media screen and (max-width: 750px) {
  #venue_widgets_framework {
    width: 320px;
    clear: both;
  }
}

.page_title h1,
.news_heading h1,
#pages.search h1,
#news.index .l-fullwidthHeader h1,
#teams.index .l-fullwidthHeader h1,
#news.detail .title-inner-wrapper .date h1 {
  word-wrap: break-word;
  position: relative;
  display: block;
  width: 100%;
  max-width: 1160px;
  padding: 19px 30px 10px 30px;
  margin: 0 auto;
  margin-bottom: 3rem;
  text-align: left;
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 61px;
  color: #231F20;
  letter-spacing: 0;
  line-height: 61px;
}
.page_title h1:before,
.news_heading h1:before,
#pages.search h1:before,
#news.index .l-fullwidthHeader h1:before,
#teams.index .l-fullwidthHeader h1:before,
#news.detail .title-inner-wrapper .date h1:before {
  content: "";
  width: calc(100% - 60px);
  height: 2px;
  background-color: #0069aa;
  position: absolute;
  left: 30px;
  bottom: -7px;
}
@media screen and (max-width: 1024px) {
  .page_title h1,
  .news_heading h1,
  #pages.search h1,
  #news.index .l-fullwidthHeader h1,
  #teams.index .l-fullwidthHeader h1,
  #news.detail .title-inner-wrapper .date h1 {
    padding: 0px 30px 10px 30px;
  }
  .page_title h1:before,
  .news_heading h1:before,
  #pages.search h1:before,
  #news.index .l-fullwidthHeader h1:before,
  #teams.index .l-fullwidthHeader h1:before,
  #news.detail .title-inner-wrapper .date h1:before {
    width: calc(100% - 60px);
    left: 30px;
  }
}
@media screen and (max-width: 700px) {
  .page_title h1,
  .news_heading h1,
  #pages.search h1,
  #news.index .l-fullwidthHeader h1,
  #teams.index .l-fullwidthHeader h1,
  #news.detail .title-inner-wrapper .date h1 {
    padding: 0px 20px 0px 20px;
    font-size: 2.44140625rem;
    line-height: 42px;
  }
  .page_title h1:before,
  .news_heading h1:before,
  #pages.search h1:before,
  #news.index .l-fullwidthHeader h1:before,
  #teams.index .l-fullwidthHeader h1:before,
  #news.detail .title-inner-wrapper .date h1:before {
    width: calc(100% - 40px);
    left: 20px;
  }
}
@media screen and (max-width: 500px) {
  .page_title h1,
  .news_heading h1,
  #pages.search h1,
  #news.index .l-fullwidthHeader h1,
  #teams.index .l-fullwidthHeader h1,
  #news.detail .title-inner-wrapper .date h1 {
    line-height: 45px;
    margin-bottom: 2.5rem;
  }
}
.page_title .date,
.news_heading .date,
#pages.search .date,
#news.index .l-fullwidthHeader .date,
#teams.index .l-fullwidthHeader .date,
#news.detail .title-inner-wrapper .date .date {
  width: 100%;
  max-width: 1160px;
  padding: 19px 30px 10px 30px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .page_title .date,
  .news_heading .date,
  #pages.search .date,
  #news.index .l-fullwidthHeader .date,
  #teams.index .l-fullwidthHeader .date,
  #news.detail .title-inner-wrapper .date .date {
    padding: 0px 30px 10px 30px;
  }
}
@media screen and (max-width: 700px) {
  .page_title .date,
  .news_heading .date,
  #pages.search .date,
  #news.index .l-fullwidthHeader .date,
  #teams.index .l-fullwidthHeader .date,
  #news.detail .title-inner-wrapper .date .date {
    padding: 0px 20px 0px 20px;
  }
}
.breadcrumbs {
  width: 100%;
  max-width: 1160px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 20px auto 0px;
  display: block;
}
@media screen and (max-width: 1080px) {
  .breadcrumbs {
    padding-top: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .breadcrumbs {
    padding: 20px 30px 10px 30px;
  }
}
@media screen and (max-width: 700px) {
  .breadcrumbs {
    padding: 20px 20px 10px 20px;
  }
}
.breadcrumbs a {
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 10px;
  color: #3C3C3C;
  letter-spacing: 1.6px;
  line-height: 16px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
.breadcrumbs a:hover {
  color: #0069aa;
}
.breadcrumbs span.breadcrumb_divider {
  color: #3C3C3C;
  margin: 0px 8px;
  transform: rotate(10deg);
}
.breadcrumbs span {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 10px;
  color: #3C3C3C;
  letter-spacing: 1.6px;
  line-height: 16px;
  text-transform: uppercase;
}

body#sitemap .page_title h1 {
  padding-top: 20px;
}

@media all and (-ms-high-contrast: none) {
  #pages.home {
    background: #F6F6F6 !important;
  }
  #events {
    background: #F6F6F6 !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #pages.home {
    background: #F6F6F6 !important;
  }
  #events {
    background: #F6F6F6 !important;
  }
}
_:-ms-fullscreen #pages.home, :root .ie11up #pages.home {
  background: #F6F6F6 !important;
}
_:-ms-fullscreen #events, :root .ie11up #events {
  background: #F6F6F6 !important;
}

@supports (-ms-ime-align: auto) {
  #pages.home {
    background: #F6F6F6 !important;
  }
  #events {
    background: #F6F6F6 !important;
  }
}
.test {
  height: 200px;
  width: 100%;
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
  background: green;
  z-index: 9999;
  outline: 0;
}

* {
  outline: none;
}
*:focus {
  outline: none;
}
.user-is-tabbing *:focus {
  outline: auto;
  outline: -webkit-focus-ring-color auto 5px;
}

.accessibility_links.is-focused {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1500;
  width: 100% !important;
  height: auto !important;
  background: #0069aa;
  padding: 5px 0;
}
.accessibility_links.is-focused ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
@media screen and (max-width: 500px) {
  .accessibility_links.is-focused ul {
    display: block;
  }
}
.accessibility_links.is-focused li {
  flex-grow: 0;
}
.accessibility_links.is-focused li:first-child {
  flex-grow: 1;
}
@media screen and (max-width: 500px) {
  .accessibility_links.is-focused li {
    width: 100%;
  }
}
.accessibility_links.is-focused a {
  display: block;
  color: white;
  padding: 10px;
  font-weight: 700;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .accessible-overlay {
  margin-top: -7px;
  text-align: center;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .accessible-overlay a {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 22px;
  color: #231F20;
  text-decoration: underline;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .accessible-overlay a:hover {
  color: #0069AA;
  text-decoration: none;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .accessible-overlay br {
  display: none;
}

/* ----------------------------------------------------------------------------
= Header basics
----------------------------------------------------------------------------- */
#container #layout.headersearch header {
  top: 100px;
}
@media screen and (max-width: 1024px) {
  #container #layout.headersearch header {
    top: 80px;
  }
}
@media screen and (max-width: 500px) {
  #container #layout.headersearch header {
    top: 60px;
  }
}

#container #layout.headersearch header.menu-open #nav-toggle.active {
  position: fixed;
  margin-top: 0px;
  top: 20px;
}

body.alertactive #layout header.menu-open #nav-toggle.active {
  position: fixed;
  margin-top: 0px;
  top: 20px;
}

#container header.header {
  outline: 0;
  position: fixed;
  -webkit-transition: height 200ms linear;
  -moz-transition: height 200ms linear;
  -o-transition: height 200ms linear;
  transition: height 200ms linear;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
#container header.header.is-fixed .header-inner {
  padding: 0 20px;
  height: 90px;
  outline: 0;
}
@media screen and (max-width: 1024px) {
  #container header.header.is-fixed .header-inner {
    height: 60px;
  }
}
@media screen and (max-width: 500px) {
  #container header.header.is-fixed .header-inner {
    padding: 0 10px;
    height: 60px;
  }
}
#container header.header.is-fixed .header-inner:after {
  height: 0px;
}
#container header.header.is-fixed .header-inner:before {
  top: 0px;
}
@media screen and (min-width: 1025px) {
  #container header.header.is-fixed .header-inner .wrapper > .top-bar {
    height: 0;
    padding: 0;
  }
  #container header.header.is-fixed .header-inner .wrapper > .top-bar .search_toggle {
    opacity: 0;
    z-index: -10;
  }
  #container header.header.is-fixed .header-inner .wrapper > .top-bar .toolbar_logos,
  #container header.header.is-fixed .header-inner .wrapper > .top-bar .toolbar_links {
    opacity: 0;
    z-index: -10;
  }
}
@media screen and (max-width: 1024px) {
  #container header.header.is-fixed .header-inner .wrapper > .top-bar {
    padding-top: 11px;
  }
}
#container header.header.is-fixed .header-inner .wrapper > .bottom-bar {
  padding: 37px 0 25px 0;
  margin-top: -27px;
}
#container header.header.is-fixed .header-inner .wrapper .logo {
  width: 91px;
  height: 91px;
  top: 33px;
}
#container header.header.is-fixed .header-inner .wrapper .logo a,
#container header.header.is-fixed .header-inner .wrapper .logo span {
  background-image: url("../images/logo-condensed.png");
}
@media screen and (max-width: 1024px) {
  #container header.header.is-fixed .header-inner .wrapper .logo {
    top: 0px;
  }
}
@media screen and (max-width: 500px) {
  #container header.header.is-fixed .header-inner .wrapper .logo {
    width: 66px;
    height: 66px;
    top: 2px;
  }
}
#container header.header.is-fixed .header-inner .wrapper .main_nav > ul > li > a {
  font-size: 18px;
}
@media screen and (max-width: 1060px) {
  #container header.header.is-fixed .header-inner .wrapper .main_nav > ul > li > a {
    font-size: 16px;
  }
}
#container header.header.is-fixed .header-inner .wrapper .main_nav > ul > li > .sub {
  top: 23px;
}
#container header.header.menu-open .header-inner .wrapper > .top-bar .logo {
  transition: none;
  z-index: -1;
}
#container header.header.menu-open .header-inner .wrapper > .bottom-bar {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 5;
  background-color: #03314d;
  padding-top: 88px;
  padding-bottom: 0px;
}
@media screen and (max-width: 700px) {
  #container header.header.menu-open .header-inner .wrapper > .bottom-bar {
    padding-top: 70px;
  }
}
#container header.header.menu-open .header-inner .wrapper > .bottom-bar:after {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  content: "";
  display: block;
  width: 40%;
  height: calc(100vh - 70px);
  background-color: #02568b;
  position: fixed;
  top: 0;
  right: 0;
  z-index: -5;
  opacity: 0.09;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%);
}
@media screen and (max-width: 700px) {
  #container header.header.menu-open .header-inner .wrapper > .bottom-bar:after {
    height: calc(100vh - 170px);
  }
}

#container header.header .header-inner {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  outline: 0;
  top: 0;
  left: 0;
  position: relative;
  width: 100%;
  padding: 0 25px;
  height: 165px;
  z-index: 100;
  background-image: linear-gradient(45deg, #03304c 0%, #0069aa 100%);
}
@media screen and (max-width: 1060px) {
  #container header.header .header-inner {
    height: 145px;
  }
}
@media screen and (max-width: 1024px) {
  #container header.header .header-inner {
    padding: 0 20px;
    height: 80px;
    z-index: 1000;
  }
}
@media screen and (max-width: 500px) {
  #container header.header .header-inner {
    padding: 0 10px;
    height: 60px;
  }
}
#container header.header .header-inner:before {
  content: "";
  width: 479px;
  max-width: 100%;
  height: 124px;
  max-height: 100%;
  overflow: hidden;
  position: absolute;
  visibility: visible;
  top: 40px;
  right: 0;
  z-index: -10;
  background-image: url("../images/svg/bg_header_circles.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media screen and (max-width: 1060px) {
  #container header.header .header-inner:before {
    height: 104px;
  }
}
@media screen and (max-width: 1024px) {
  #container header.header .header-inner:before {
    top: 0px;
    background-position: 0px -30px;
    height: 80px;
  }
}
#container header.header .header-inner:after {
  display: block;
  content: "";
  background-color: white;
  height: 40px;
  width: 100%;
  display: block;
  z-index: -5;
  position: absolute;
  visibility: visible;
  top: 0;
  left: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media screen and (max-width: 1024px) {
  #container header.header .header-inner:after {
    height: 0px;
  }
}
#container header.header .header-inner > .wrapper {
  margin: 0 auto;
  max-width: 1300px;
  position: relative;
  outline: 0;
}
#container header.header .header-inner > .wrapper > .top-bar {
  height: 39px;
  padding-top: 0px;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
}
@media screen and (max-width: 1024px) {
  #container header.header .header-inner > .wrapper > .top-bar {
    padding-top: 21px;
  }
}
@media screen and (max-width: 500px) {
  #container header.header .header-inner > .wrapper > .top-bar {
    padding-top: 11px;
  }
}
#container header.header .header-inner > .wrapper > .bottom-bar {
  padding: 60px 0 25px 0;
}
@media screen and (max-width: 1060px) {
  #container header.header .header-inner > .wrapper > .bottom-bar {
    padding-top: 40px;
  }
}
@media screen and (max-width: 1024px) {
  #container header.header .header-inner > .wrapper > .bottom-bar {
    display: none;
  }
}
#container header.header .header-inner .logo {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  position: absolute;
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  text-indent: -9999px;
  width: 265px;
  z-index: 200;
  height: 160px;
}
@media screen and (max-width: 1024px) {
  #container header.header .header-inner .logo {
    top: 2px;
    width: 145px;
    height: 80px;
  }
}
#container header.header .header-inner .logo a,
#container header.header .header-inner .logo span {
  background-image: url("../images/logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  display: block;
  height: 100%;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media screen and (max-width: 500px) {
  #container header.header .header-inner .logo {
    width: 66px;
    height: 66px;
  }
  #container header.header .header-inner .logo a,
  #container header.header .header-inner .logo span {
    background-image: url("../images/logo-condensed.png");
  }
}
#container header.header .header-inner .toolbar_logos {
  float: left;
  display: inline-block;
  margin-top: 2px;
  margin-left: 20px;
  padding-left: 20px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #container header.header .header-inner .toolbar_logos {
    display: none;
  }
}
#container header.header .header-inner .toolbar_logos:hover a {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}
#container header.header .header-inner .toolbar_logos:hover a:hover {
  -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
}
#container header.header .header-inner .toolbar_logos:after {
  content: " ";
  position: absolute;
  top: 8px;
  left: 0px;
  width: 2px;
  height: 20px;
  background: #e2e2e2;
}
#container header.header .header-inner .toolbar_logos a.toolbar-logo {
  float: left;
  display: inline-block;
  margin: 0px 13px;
}
#container header.header .header-inner .toolbar_logos a.toolbar-logo span {
  opacity: 0;
  visibility: hidden;
}
#container header.header .header-inner .toolbar_logos a.toolbar-logo-1 {
  width: 25.5px;
  height: 23px;
  background: url("../images/svg/toolbar_1.svg") no-repeat;
  margin-top: 7px;
}
#container header.header .header-inner .toolbar_logos a.toolbar-logo-2 {
  width: 40px;
  height: 37px;
  background: url("../images/bridgeport-islanders.png") no-repeat;
}
#container header.header .header-inner .toolbar_logos a.toolbar-logo-3 {
  width: 48px;
  height: 20px;
  background: url("../images/svg/toolbar_3.svg") no-repeat;
  margin-top: 9px;
}
#container header.header .header-inner .toolbar_logos a.toolbar-logo-4 {
  width: 40px;
  height: 34px;
  background: url("../images/logo-knicks.png") no-repeat;
  background-size: contain;
  margin-top: 3px;
}
#container header.header .header-inner .toolbar_links {
  float: right;
  display: inline-block;
  margin-right: -4px;
}
@media screen and (max-width: 1024px) {
  #container header.header .header-inner .toolbar_links {
    display: none;
  }
}
#container header.header .header-inner .toolbar_links a.toolbar-link {
  float: left;
  position: relative;
  margin: 0px;
  padding: 12px 17px;
  font-family: "Rubik", serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 10px;
  color: #3c3c3c;
  letter-spacing: 1.6px;
  line-height: 16px;
}
#container header.header .header-inner .toolbar_links a.toolbar-link:hover {
  color: #0069aa;
}
#container header.header .header-inner .toolbar_links a.toolbar-link:after {
  content: " ";
  position: absolute;
  top: 11px;
  left: -1px;
  width: 2px;
  height: 20px;
  background: #e2e2e2;
}
#container header.header .header-inner .toolbar_links a.toolbar-link span {
  opacity: 0;
  visibility: hidden;
}
#container header.header .header-inner .toolbar_links a.toolbar-link-1:after {
  display: none;
}
#container header.header .header-inner .mobile_toolbar {
  display: none;
  background: white;
  padding-top: 18px;
  margin-top: 20px;
  margin-bottom: -5px;
  position: fixed;
  bottom: 0px;
}
@media screen and (max-width: 1024px) {
  #container header.header .header-inner .mobile_toolbar {
    display: inline-block;
    width: 100%;
    height: 74px;
  }
  #container header.header .header-inner .mobile_toolbar .toolbar_logos {
    display: block;
    padding-left: 0px;
    margin-left: 10px;
  }
  #container header.header .header-inner .mobile_toolbar .toolbar_logos:after {
    display: none;
  }
  #container header.header .header-inner .mobile_toolbar .toolbar_links {
    display: block;
    margin-right: 5px;
  }
}
@media screen and (max-width: 700px) {
  #container header.header .header-inner .mobile_toolbar {
    height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 0px;
    margin-bottom: 0px;
  }
  #container header.header .header-inner .mobile_toolbar .toolbar_logos {
    float: none;
    display: inline-block;
    margin-bottom: 12px;
  }
  #container header.header .header-inner .mobile_toolbar .toolbar_links {
    float: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #container header.header .header-inner .mobile_toolbar .toolbar_links .toolbar-link {
    margin: 0px;
    padding: 6px 0px;
  }
  #container header.header .header-inner .mobile_toolbar .toolbar_links .toolbar-link:after {
    display: none;
  }
}
#container header.header .header-inner .search_toggle {
  width: 91px;
  margin-right: 10px;
  float: left;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  #container header.header .header-inner .search_toggle {
    float: right;
    margin-right: 0px;
  }
}
@media screen and (max-width: 500px) {
  #container header.header .header-inner .search_toggle {
    width: 30px;
  }
}
#container header.header .header-inner .search_toggle span.text-open, #container header.header .header-inner .search_toggle span.text-close {
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 10px;
  color: #231f20;
  letter-spacing: 1.6px;
  line-height: 16px;
  float: right;
  margin-top: 12px;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  #container header.header .header-inner .search_toggle span.text-open, #container header.header .header-inner .search_toggle span.text-close {
    float: left;
    margin-right: 14px;
    color: white;
  }
}
@media screen and (max-width: 500px) {
  #container header.header .header-inner .search_toggle span.text-open, #container header.header .header-inner .search_toggle span.text-close {
    display: none !important;
  }
}
#container header.header .header-inner .search_toggle span.text-close {
  display: none;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  #container header.header .header-inner .search_toggle span.text-close {
    margin-right: 22px;
  }
}
#container header.header .header-inner .search_toggle span.icon-open, #container header.header .header-inner .search_toggle span.icon-close {
  width: 24px;
  height: 24px;
  margin-top: 7px;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  #container header.header .header-inner .search_toggle span.icon-open, #container header.header .header-inner .search_toggle span.icon-close {
    position: relative;
    z-index: 1;
  }
  #container header.header .header-inner .search_toggle span.icon-open svg path, #container header.header .header-inner .search_toggle span.icon-close svg path {
    fill: white;
  }
  #container header.header .header-inner .search_toggle span.icon-open:after, #container header.header .header-inner .search_toggle span.icon-close:after {
    content: " ";
    position: absolute;
    left: -8px;
    top: -8px;
    background: rgba(35, 31, 32, 0.2);
    border-radius: 25px;
    width: 40px;
    height: 40px;
    z-index: -1;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
}
#container header.header .header-inner .search_toggle span.icon-close {
  display: none;
}
#container header.header .header-inner .search_toggle span.icon-close svg g g {
  fill: #231f20;
}
@media screen and (max-width: 1024px) {
  #container header.header .header-inner .search_toggle span.icon-close svg g g {
    fill: white;
  }
}
#container header.header .header-inner .search_toggle.active span.text-close {
  display: inline-block;
}
#container header.header .header-inner .search_toggle.active span.text-open {
  display: none;
}
#container header.header .header-inner .search_toggle.active span.icon-close {
  display: inline-block;
}
#container header.header .header-inner .search_toggle.active span.icon-open {
  display: none;
}
#container header.header .header-inner .search_toggle:hover {
  cursor: pointer;
}
#container header.header .header-inner .search_toggle:hover span {
  color: #0069aa;
}
#container header.header .header-inner .search_toggle:hover svg path {
  fill: #0069aa;
}
#container header.header .header-inner .search_toggle:hover .icon-close svg g g {
  fill: #0069aa;
}
@media screen and (max-width: 1024px) {
  #container header.header .header-inner .search_toggle:hover span {
    color: white;
  }
  #container header.header .header-inner .search_toggle:hover svg path {
    fill: #5db65f;
  }
  #container header.header .header-inner .search_toggle:hover span.icon-open svg path {
    fill: #5db65f;
  }
  #container header.header .header-inner .search_toggle:hover .icon-close svg g g {
    fill: white;
  }
  #container header.header .header-inner .search_toggle:hover .icon-close:after,
  #container header.header .header-inner .search_toggle:hover .icon-open:after {
    background: rgba(35, 31, 32, 0.4);
  }
}

/* ----------------------------------------------------------------------------
= Header toolbar (if used)
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
= Navigations
----------------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .nav_wrapper.is-opened {
    max-height: 100%;
    overflow-y: scroll !important;
  }
}
@media screen and (max-width: 700px) {
  .nav_wrapper.is-opened {
    overflow-y: scroll !important;
  }
}
.nav_wrapper a.gh_redirect:after, .nav_wrapper a.gh_page_redirect:after {
  content: "\f08e";
  font-family: FontAwesome;
  vertical-align: middle;
  margin-left: 9px;
  display: inline;
  color: inherit;
}

.main_nav {
  zoom: 1;
  position: relative;
  width: 100%;
  height: auto;
  margin: 0px 0 0;
  padding: 0;
}
.main_nav:before, .main_nav:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: " ";
}
.main_nav:after {
  clear: both;
}
@media screen and (max-width: 1024px) {
  .main_nav {
    display: none;
  }
}
.main_nav > ul {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}
.main_nav > ul > li {
  position: relative;
  display: block;
  height: auto;
  margin: 0;
  padding: 0 45px;
}
@media screen and (max-width: 1200px) {
  .main_nav > ul > li {
    padding: 0 25px;
  }
}
.main_nav > ul > li:nth-child(1) {
  padding-left: 10px;
}
.main_nav > ul > li:nth-child(2) {
  margin-right: auto;
}
.main_nav > ul > li:nth-child(3) {
  margin-left: auto;
}
.main_nav > ul > li:nth-child(4) {
  padding-right: 10px;
}
.main_nav > ul > li:hover > a, .main_nav > ul > li.hover > a {
  color: white;
}
.main_nav > ul > li:hover > a:before, .main_nav > ul > li.hover > a:before {
  width: 100%;
}
.main_nav > ul > li:hover > a:after, .main_nav > ul > li.hover > a:after {
  transform: scale(1);
}
.main_nav > ul > li:last-child > .sub {
  right: 0;
  left: auto;
}
.main_nav > ul > li > a {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 16px;
  display: block;
  position: relative;
  z-index: 99;
  padding: 10px 0px;
}
@media screen and (max-width: 1280px) {
  .main_nav > ul > li > a {
    font-size: 18px;
  }
}
@media screen and (max-width: 1060px) {
  .main_nav > ul > li > a {
    font-size: 16px;
  }
}
.main_nav > ul > li > a:before {
  transition: all 300ms cubic-bezier(0.4, 0, 0.58, 1);
  content: "";
  display: block;
  height: 2px;
  width: 20px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: -1;
  background: #5db65f;
}
.main_nav > ul > li > a:after {
  transform: scale(0);
  transition: all 300ms cubic-bezier(0.4, 0, 0.58, 1);
  content: "";
  display: block;
  height: 10px;
  width: 10px;
  position: absolute;
  bottom: 13px;
  left: -20px;
  z-index: -1;
  background: #5db65f;
  border-radius: 50%;
}
.main_nav > ul > li > a.active:before {
  width: 100%;
}
.main_nav > ul > li > a.active:after {
  transform: scale(1);
}
.main_nav > ul > li > a .bold {
  font-weight: 700;
}
.main_nav > ul > li.page_22 .sub {
  left: -10px;
  width: 316px;
}
.main_nav > ul > li.page_26 .sub {
  left: 23px;
}
.main_nav > ul > li.page_25 .sub {
  left: 26px;
}
.main_nav > ul > li.page_27 .sub {
  left: auto;
  right: -20px;
}
.main_nav > ul > li > .sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 271px;
  border-top: 19px solid transparent;
}
.main_nav > ul > li > .sub > ul {
  background-color: white;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}
.main_nav > ul > li > .sub ul {
  padding: 15px 10px 15px 10px;
}
.main_nav > ul > li > .sub ul li {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  line-height: 40px;
}
.main_nav > ul > li > .sub ul li.has-third-level:hover {
  padding-left: 0px;
}
.main_nav > ul > li > .sub ul li.has-third-level:hover a:hover {
  padding-left: 23px;
}
.main_nav > ul > li > .sub ul li.is-opened {
  background: transparent !important;
}
.main_nav > ul > li > .sub ul li.is-opened > .sub-close-button .cross-v {
  opacity: 0;
}
.main_nav > ul > li > .sub ul li.is-opened > a {
  color: #0069aa;
}
.main_nav > ul > li > .sub ul li:hover {
  background: #5db65f;
  padding-left: 15px;
}
.main_nav > ul > li > .sub ul li > .sub-close-button {
  height: 11px;
  width: 11px;
  position: absolute;
  right: 7px;
  top: 12px;
  cursor: pointer;
  float: left;
  display: inline-block;
}
.main_nav > ul > li > .sub ul li > .sub-close-button .cross-h {
  width: 11px;
  height: 1px;
  background-color: #231f20;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main_nav > ul > li > .sub ul li > .sub-close-button .cross-v {
  opacity: 1;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  width: 11px;
  height: 1px;
  background-color: #231f20;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}
.main_nav > ul > li > .sub ul li a {
  padding: 0 20px 0 8px;
  font-family: "Rubik", serif;
  font-weight: 300;
  font-size: 16px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 35px;
  display: block;
  margin: 0 auto;
}
.main_nav > ul > li > .sub ul li a:hover {
  background-color: #5db65f;
}
.main_nav > ul > li > .sub ul li a.active {
  background-color: #5db65f;
}
.main_nav > ul > li > .sub ul li ul {
  padding: 0;
  display: none;
}
.main_nav > ul > li > .sub ul li ul li {
  line-height: 32px;
  padding-left: 0px;
}
.main_nav > ul > li > .sub ul li ul li a {
  padding: 0 0 0 20px;
  font-family: "Rubik", serif;
  font-weight: 300;
  font-size: 14px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 31px;
}
.main_nav > ul > li > .sub ul li ul li a:hover {
  background-color: #5db65f;
}
.main_nav > ul > li > .sub ul li ul li a.active {
  background-color: #5db65f;
}

.nav_wrapper a.gh_redirect:after,
.nav_wrapper a.gh_page_redirect:after {
  float: right;
  margin-right: -18px;
}

/* ----------------------------------------------------------------------------
= Mobile Navigation
----------------------------------------------------------------------------- */
#nav-toggle {
  display: none;
  position: relative;
  float: left;
  margin-top: 10px;
  z-index: 10;
  width: 43px;
  height: 36px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  #nav-toggle {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  #nav-toggle {
    margin-top: 10px;
  }
}
#nav-toggle span {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  position: absolute;
  display: block;
  left: 0;
  margin-top: 0;
  background-color: white;
  font-size: 14px;
  content: "";
  cursor: pointer;
  transition: all 0.4s ease;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg); /* IE 9 */
  transform: rotate(0deg);
  width: 30px;
  height: 2px;
}
#nav-toggle span.top {
  top: 0;
}
#nav-toggle span.mid {
  top: 8px;
  width: 20px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#nav-toggle span.bottom {
  top: 16px;
}
#nav-toggle span.open-text, #nav-toggle span.close-text {
  bottom: 0;
  height: auto;
  width: 43px;
  text-transform: uppercase;
  font-weight: 900;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#nav-toggle span.close-text {
  display: none;
}
#nav-toggle span.close-text,
#nav-toggle span.open-text {
  background: transparent;
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 10px;
  color: #5db65f;
  letter-spacing: 1.6px;
  line-height: 16px;
  position: absolute;
  left: 65px;
  top: 1px;
}
#nav-toggle:hover span {
  color: white;
}
#nav-toggle:hover span.mid {
  width: 30px;
}
#nav-toggle.active {
  height: 35px;
}
#nav-toggle.active:hover span.top, #nav-toggle.active:hover span.bottom {
  background: white;
}
#nav-toggle.active span.close-text {
  display: block;
}
#nav-toggle.active span.open-text {
  display: none;
}
#nav-toggle.active span.top {
  width: 30px;
  -webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg); /* IE 9 */
  transform: translateY(8px) rotate(45deg);
}
#nav-toggle.active span.bottom {
  width: 30px;
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg); /* IE 9 */
  transform: translateY(-8px) rotate(-45deg);
}
#nav-toggle.active span.mid {
  opacity: 0;
}

.mobile_nav {
  padding: 0 15px 15px 15px;
  max-width: 500px;
  width: 100%;
  margin: 0px auto;
}
@media screen and (max-width: 700px) {
  .mobile_nav {
    padding-top: 25px;
  }
}
.mobile_nav > ul {
  margin: 0;
  padding: 0;
}
.mobile_nav > ul > li {
  display: block;
  text-align: left;
  margin: 0 0 25px 5px;
  padding: 10px 0 15px;
}
.mobile_nav > ul > li:before {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  content: "";
  display: block;
  height: 1px;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: rgb(255, 255, 255);
}
.mobile_nav > ul > li:after {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  background-color: rgba(255, 255, 255, 0.4);
}
.mobile_nav > ul > li:hover a {
  color: #5db65f;
}
.mobile_nav > ul > li:hover > .close-button:before {
  background: url("../images/svg/mobile-nav-arrow-hover.svg") no-repeat;
}
.mobile_nav > ul > li.is-opened > a {
  color: #5db65f;
}
.mobile_nav > ul > li.is-opened > .close-button:before {
  transform: rotate(180deg);
  background: url("../images/svg/mobile-nav-arrow-hover.svg") no-repeat;
}
.mobile_nav > ul > li > .close-button {
  position: absolute;
  top: 6px;
  right: 0;
  height: 40px;
  width: 40px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}
.mobile_nav > ul > li > .close-button:before {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  z-index: -5;
  content: "";
  display: block;
  width: 14px;
  height: 10px;
  position: absolute;
  top: 10px;
  right: 0px;
  background: url("../images/svg/mobile-nav-arrow.svg") no-repeat;
}
.mobile_nav > ul > li > .close-button .cross-h {
  width: 12px;
  height: 2px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.mobile_nav > ul > li > .close-button .cross-v {
  opacity: 1;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  width: 12px;
  height: 2px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  display: none;
}
.mobile_nav > ul > li > a {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 20px;
  display: inline-block;
  color: white;
  position: relative;
}
.mobile_nav > ul > li > a:after {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  opacity: 0;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: white;
}
.mobile_nav > ul > li > .sub {
  display: none;
}
.mobile_nav > ul > li > .sub ul {
  padding: 10px 0 0px 0;
}
.mobile_nav > ul > li > .sub ul li {
  line-height: 40px;
}
.mobile_nav > ul > li > .sub ul li.is-opened > .sub-close-button .cross-v {
  opacity: 0;
}
.mobile_nav > ul > li > .sub ul li.is-opened > .sub-close-button .cross-h {
  background-color: #5db65f;
}
.mobile_nav > ul > li > .sub ul li.is-opened > a {
  color: #5db65f;
}
.mobile_nav > ul > li > .sub ul li > .sub-close-button {
  height: 30px;
  width: 30px;
  position: absolute;
  right: 61px;
  top: 6px;
  cursor: pointer;
}
.mobile_nav > ul > li > .sub ul li > .sub-close-button .cross-h {
  width: 11px;
  height: 1px;
  background-color: white;
  position: absolute;
  top: 13px;
  left: 10px;
}
.mobile_nav > ul > li > .sub ul li > .sub-close-button .cross-v {
  opacity: 1;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  width: 11px;
  height: 1px;
  background-color: white;
  position: absolute;
  top: 13px;
  left: 10px;
  transform: rotate(90deg);
}
@media screen and (max-width: 500px) {
  .mobile_nav > ul > li > .sub ul li > .sub-close-button {
    right: -8px;
  }
}
.mobile_nav > ul > li > .sub ul li a {
  padding: 0 20px 0 30px;
  font-family: "Rubik", serif;
  font-weight: 300;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 40px;
  display: inline-block;
  min-width: 410px;
  max-width: calc(100% - 50px);
}
.mobile_nav > ul > li > .sub ul li a:hover {
  background: #0069aa;
}
@media screen and (max-width: 700px) {
  .mobile_nav > ul > li > .sub ul li a {
    min-width: 100%;
    padding: 0px 10px;
  }
}
.mobile_nav > ul > li > .sub ul li ul {
  padding: 0;
  display: none;
}
.mobile_nav > ul > li > .sub ul li ul li {
  line-height: 32px;
}
.mobile_nav > ul > li > .sub ul li ul li a {
  padding: 0 20px 0 50px;
  font-family: "Rubik", serif;
  font-weight: 300;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 38px;
}
.mobile_nav > ul > li > .sub ul li ul li a:hover {
  background-color: #0069aa;
}
@media screen and (max-width: 500px) {
  .mobile_nav > ul > li > .sub ul li ul li a {
    padding: 0px 30px;
  }
}

.nav_wrapper .mobile_nav a.gh_redirect:after,
.nav_wrapper a.gh_page_redirect:after {
  margin-right: -10px;
}
@media screen and (max-width: 700px) {
  .nav_wrapper .mobile_nav a.gh_redirect:after,
  .nav_wrapper a.gh_page_redirect:after {
    margin-right: 27px;
    float: none;
    margin-left: 10px;
  }
}
@media screen and (max-width: 500px) {
  .nav_wrapper .mobile_nav a.gh_redirect:after,
  .nav_wrapper a.gh_page_redirect:after {
    margin-right: -8px;
  }
}

/* ----------------------------------------------------------------------------
= Footer basics
----------------------------------------------------------------------------- */
footer {
  background: #fff;
  padding-top: 60px;
  padding-bottom: 30px;
  z-index: 10;
  margin: 100px 0 0 0;
  position: relative;
}
footer:after {
  z-index: 11;
  content: " ";
  height: 100%;
  width: calc((100% - 1300px) / 2 + 275px);
  left: 0px;
  top: 0px;
  position: absolute;
  background: #f6f6f6;
  -webkit-clip-path: polygon(0 0, 100% 0%, calc(100% - 400px) 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, calc(100% - 400px) 100%, 0% 100%);
}
footer:before {
  z-index: 11;
  content: " ";
  height: 10px;
  width: calc((100% - 1300px) / 2 + 1240px);
  left: 0px;
  top: -10px;
  position: absolute;
  background-image: linear-gradient(-224deg, #03304c 39%, #0069aa 100%);
}
@media screen and (max-width: 1300px) {
  footer:after {
    width: 275px;
  }
  footer:before {
    width: calc(100% - 60px);
  }
}
@media screen and (min-width: 871px) and (max-width: 1150px) {
  footer {
    padding-top: 30px;
  }
}
@media screen and (max-width: 870px) {
  footer:before {
    width: 100%;
  }
}
footer .footer_holder {
  width: 1300px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  position: relative;
  z-index: 12;
}
footer .footer_holder .top-section {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}
@media screen and (min-width: 871px) and (max-width: 1150px) {
  footer .footer_holder .top-section {
    flex-direction: column;
  }
}
@media screen and (max-width: 870px) {
  footer .footer_holder .top-section {
    justify-content: center;
  }
}
@media screen and (max-width: 700px) {
  footer .footer_holder .top-section {
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-direction: column;
  }
}
footer .footer_holder .top-section .left-side {
  width: 284px;
  margin-right: 30px;
  max-width: 100%;
}
@media screen and (min-width: 871px) and (max-width: 1150px) {
  footer .footer_holder .top-section .left-side {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 870px) {
  footer .footer_holder .top-section .left-side {
    margin-right: 86px;
    margin-top: -28px;
  }
}
@media screen and (max-width: 700px) {
  footer .footer_holder .top-section .left-side {
    margin-right: 0;
  }
}
@media screen and (min-width: 871px) and (max-width: 1150px) {
  footer .footer_holder .top-section .left-side .logo {
    margin-top: 10px;
  }
}
footer .footer_holder .top-section .left-side .logo a,
footer .footer_holder .top-section .left-side .logo span {
  width: 265px;
  height: 136px;
  display: block;
  max-width: 100%;
  text-align: center;
}
@media screen and (max-width: 700px) {
  footer .footer_holder .top-section .left-side .logo a,
  footer .footer_holder .top-section .left-side .logo span {
    margin: 0 auto;
  }
}
footer .footer_holder .top-section .left-side .logo a img,
footer .footer_holder .top-section .left-side .logo span img {
  max-width: 100%;
}
footer .footer_holder .top-section .left-side .logo a:hover {
  /*svg {
  	>g {
  		> * {
  			@include animated;
  		}
  		>polygon:first-child {
  			fill: $secondary_color;
  		}
  		>*:nth-child(2), >*:nth-child(3), >*:nth-child(4),
  		>*:nth-child(5), >*:nth-child(6){
  			fill: white;
  		}
  	}
  }*/
}
@media screen and (min-width: 871px) and (max-width: 1150px) {
  footer .footer_holder .top-section .left-side .address-wrapper {
    width: 500px;
    margin-left: 50px;
  }
}
@media screen and (max-width: 700px) {
  footer .footer_holder .top-section .left-side .address-wrapper {
    width: 230px;
    margin: 0px auto;
  }
}
footer .footer_holder .top-section .left-side address {
  margin: 50px 0 12px 0;
  padding: 0 0 0 0px;
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 20px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 20px;
  position: relative;
  z-index: 1;
}
footer .footer_holder .top-section .left-side address:before {
  z-index: -1;
  position: absolute;
  top: -17px;
  left: 0;
  width: 53px;
  height: 7px;
  background: url("../images/svg/circles.svg") no-repeat;
  content: "";
  display: block;
  transform: rotate(180deg);
}
@media screen and (max-width: 700px) {
  footer .footer_holder .top-section .left-side address {
    margin-top: 40px;
  }
}
footer .footer_holder .top-section .left-side .phone {
  padding: 0 0 0 0px;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 16px;
  color: #231f20;
  letter-spacing: 0.5px;
  line-height: 24px;
}
footer .footer_holder .top-section .left-side .social {
  margin: 20px 0 0 0;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
}
@media screen and (min-width: 871px) and (max-width: 1150px) {
  footer .footer_holder .top-section .left-side .social {
    margin-top: 60px;
  }
}
@media screen and (max-width: 870px) {
  footer .footer_holder .top-section .left-side .social {
    margin: 28px 0 0 0;
  }
}
@media screen and (max-width: 700px) {
  footer .footer_holder .top-section .left-side .social {
    justify-content: center;
  }
}
footer .footer_holder .top-section .left-side .social a {
  display: inline-block;
  margin-right: 10px;
  border: 2px solid #5db65f;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  color: #231f20;
  font-size: 17px;
  background: transparent;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  box-shadow: 0 9px 14px 0 rgba(0, 0, 0, 0);
}
footer .footer_holder .top-section .left-side .social a:last-child {
  margin-right: 0;
}
footer .footer_holder .top-section .left-side .social a:hover, footer .footer_holder .top-section .left-side .social a:focus, footer .footer_holder .top-section .left-side .social a:active {
  background: #5db65f;
  box-shadow: 0 9px 14px 0 rgba(0, 0, 0, 0.1);
}
footer .footer_holder .top-section .footer_nav.right-side {
  width: 936px;
  padding-top: 25px;
  max-width: 100%;
}
@media screen and (min-width: 871px) and (max-width: 1150px) {
  footer .footer_holder .top-section .footer_nav.right-side {
    width: 100%;
    max-width: 943px;
  }
}
@media screen and (max-width: 870px) {
  footer .footer_holder .top-section .footer_nav.right-side {
    width: 230px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 700px) {
  footer .footer_holder .top-section .footer_nav.right-side {
    width: 263px;
  }
}
footer .footer_holder .top-section .footer_nav.right-side > ul {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 870px) {
  footer .footer_holder .top-section .footer_nav.right-side > ul {
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
footer .footer_holder .top-section .footer_nav.right-side > ul > li {
  flex: 0 1 auto;
  margin: 0 0 60px 0;
  padding: 0 15px;
  z-index: 1;
}
@media screen and (min-width: 871px) and (max-width: 1150px) {
  footer .footer_holder .top-section .footer_nav.right-side > ul > li {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 870px) {
  footer .footer_holder .top-section .footer_nav.right-side > ul > li {
    width: 100%;
    margin: 0 0 30px 0;
  }
}
footer .footer_holder .top-section .footer_nav.right-side > ul > li:last-child > a {
  padding-right: 0;
}
footer .footer_holder .top-section .footer_nav.right-side > ul > li > a:active,
footer .footer_holder .top-section .footer_nav.right-side > ul > li > a:focus,
footer .footer_holder .top-section .footer_nav.right-side > ul > li > a:hover,
footer .footer_holder .top-section .footer_nav.right-side > ul > li a.active {
  color: #0069aa;
}
footer .footer_holder .top-section .footer_nav.right-side > ul > li > a:active:before,
footer .footer_holder .top-section .footer_nav.right-side > ul > li > a:focus:before,
footer .footer_holder .top-section .footer_nav.right-side > ul > li > a:hover:before,
footer .footer_holder .top-section .footer_nav.right-side > ul > li a.active:before {
  width: 100%;
}
footer .footer_holder .top-section .footer_nav.right-side > ul > li:hover > a {
  color: #0069aa;
}
footer .footer_holder .top-section .footer_nav.right-side > ul > li:hover > a:before {
  width: 100%;
}
footer .footer_holder .top-section .footer_nav.right-side > ul > li:last-child .sub {
  left: auto;
  right: -13px;
}
footer .footer_holder .top-section .footer_nav.right-side > ul > li > a {
  display: inline-block;
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 20px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 20px;
  position: relative;
  margin-bottom: 18px;
}
footer .footer_holder .top-section .footer_nav.right-side > ul > li > a:before {
  transition: all 300ms cubic-bezier(0.4, 0, 0.58, 1);
  content: "";
  display: block;
  height: 2px;
  width: 20px;
  position: absolute;
  bottom: -10px;
  left: 0px;
  z-index: -1;
  background: #5db65f;
}
@media screen and (max-width: 1080px) {
  footer .footer_holder .top-section .footer_nav.right-side > ul > li > a .bold {
    display: block;
  }
}
@media screen and (max-width: 870px) {
  footer .footer_holder .top-section .footer_nav.right-side > ul > li > a .bold {
    display: inline;
  }
}
@media screen and (max-width: 870px) {
  footer .footer_holder .top-section .footer_nav.right-side > ul > li .nav_sub {
    display: none;
  }
}
footer .footer_holder .top-section .footer_nav.right-side > ul > li .nav_sub > ul {
  margin: 10px 0 0 0;
}
footer .footer_holder .top-section .footer_nav.right-side > ul > li .nav_sub > ul > li > a:active,
footer .footer_holder .top-section .footer_nav.right-side > ul > li .nav_sub > ul > li > a:hover,
footer .footer_holder .top-section .footer_nav.right-side > ul > li .nav_sub > ul > li a.active {
  color: white;
}
footer .footer_holder .top-section .footer_nav.right-side > ul > li .nav_sub > ul > li:hover > a {
  color: #0069aa;
}
footer .footer_holder .top-section .footer_nav.right-side > ul > li .nav_sub > ul > li a {
  display: block;
  font-family: "Rubik", serif;
  font-weight: 300;
  font-size: 14px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 30px;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
}
footer .global-footer {
  position: relative;
  margin: 24px auto 0 auto;
  display: block;
  padding: 0;
  padding-top: 20px;
  width: 100%;
  max-width: 1300px;
  display: flex;
  justify-content: flex-start;
  align-content: flex-end;
  align-items: flex-end;
}
footer .global-footer:before {
  content: " ";
  background: #f6f6f6;
  width: 100%;
  height: 6px;
  position: absolute;
  top: 0px;
  left: 0px;
}
@media screen and (max-width: 870px) {
  footer .global-footer {
    margin-top: 34px;
    display: block;
    text-align: center;
    padding-top: 1px;
  }
}
@media screen and (max-width: 700px) {
  footer .global-footer {
    margin-top: 5px;
  }
}
footer .global-footer p {
  position: relative;
  display: block;
  font-family: "Rubik", serif;
  font-weight: 300;
  font-size: 14px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 20px;
  margin: 0 0 0 20px;
}
@media screen and (max-width: 870px) {
  footer .global-footer p {
    margin: 40px 0 0 0;
    text-align: center;
    line-height: 30px;
  }
}
@media screen and (max-width: 700px) {
  footer .global-footer p {
    margin: 32px 0 0 0;
    line-height: 25px;
  }
}
footer .global-footer p a,
footer .global-footer p a:visited {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  font-family: "Rubik", serif;
  font-weight: 300;
  font-size: 14px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 20px;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
footer .global-footer p a:hover, footer .global-footer p a:focus, footer .global-footer p a:active, footer .global-footer p a.active,
footer .global-footer p a:visited:hover,
footer .global-footer p a:visited:focus,
footer .global-footer p a:visited:active,
footer .global-footer p a:visited.active {
  color: #0069aa;
  text-decoration: none;
}
footer .global-footer .delimiter {
  padding: 0 2px;
  color: #231f20;
}
footer .global-footer a#carbonhouse,
footer .global-footer a#carbonhouse:link,
footer .global-footer a#carbonhouse:visited {
  position: relative;
  float: right;
  display: inline-block;
  margin: 16px 0 0 auto;
  padding-top: 0px;
  color: #231f20;
  font-weight: 400;
  font-family: "helvetica";
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: -0.45px;
  transition: all 300ms cubic-bezier(0.4, 0, 0.58, 1);
}
@media screen and (max-width: 870px) {
  footer .global-footer a#carbonhouse,
  footer .global-footer a#carbonhouse:link,
  footer .global-footer a#carbonhouse:visited {
    line-height: 19px;
    float: none;
    margin: 16px auto 0px;
  }
}
@media screen and (max-width: 700px) {
  footer .global-footer a#carbonhouse,
  footer .global-footer a#carbonhouse:link,
  footer .global-footer a#carbonhouse:visited {
    margin-top: 24px;
  }
}
footer .global-footer a#carbonhouse span,
footer .global-footer a#carbonhouse:link span,
footer .global-footer a#carbonhouse:visited span {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: -0.45px;
  transition: all 300ms cubic-bezier(0.4, 0, 0.58, 1);
}
footer .global-footer a#carbonhouse span.carbon,
footer .global-footer a#carbonhouse:link span.carbon,
footer .global-footer a#carbonhouse:visited span.carbon {
  color: #231f20;
}
footer .global-footer a#carbonhouse span.house,
footer .global-footer a#carbonhouse:link span.house,
footer .global-footer a#carbonhouse:visited span.house {
  color: #231f20;
}
footer .global-footer a#carbonhouse:hover, footer .global-footer a#carbonhouse.active, footer .global-footer a#carbonhouse:focus, footer .global-footer a#carbonhouse:active,
footer .global-footer a#carbonhouse:link:hover,
footer .global-footer a#carbonhouse:link.active,
footer .global-footer a#carbonhouse:link:focus,
footer .global-footer a#carbonhouse:link:active,
footer .global-footer a#carbonhouse:visited:hover,
footer .global-footer a#carbonhouse:visited.active,
footer .global-footer a#carbonhouse:visited:focus,
footer .global-footer a#carbonhouse:visited:active {
  text-decoration: underline;
}
/* ----------------------------------------------------------------------------
=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: #0069aa;
}
.subnav ul li a, .subnav ul li a:visited {
  display: block;
  padding: 9px 5px 7px 30px;
  color: white;
  font: bold 18px/120% "Roboto Slab", 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: #0069aa;
}
.subnav ul li a.section, .subnav ul li a:visited.section {
  padding-bottom: 7px;
  color: #0069aa;
  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: #0069aa;
}
.subnav ul li.active.onparent a.active {
  color: #0069aa;
}
.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
----------------------------------------------------------------------------- */
#container #layout.headersearch {
  outline: 0;
}

#container #layout.headersearch .header-search {
  height: 100px;
  padding-top: 24px;
  z-index: 1000;
}
@media screen and (max-width: 1024px) {
  #container #layout.headersearch .header-search {
    height: 80px;
    padding-top: 16px;
    z-index: 99;
  }
}
@media screen and (max-width: 500px) {
  #container #layout.headersearch .header-search {
    height: 60px;
    padding-top: 6px;
  }
}

#container .header-search {
  height: 0px;
  display: block;
  position: fixed;
  top: 0px;
  background: white;
  width: 100%;
  z-index: 999;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  overflow: hidden;
}
#container .header-search:after {
  content: " ";
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 3px;
  left: 0px;
  background: #e2e2e2;
}
#container .header-search .header-search-wrapper {
  max-width: 1340px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  margin: 0px auto;
  position: relative;
}
#container .header-search .header-search-wrapper .search-form label {
  color: white;
}
#container .header-search .header-search-wrapper input[type=text] {
  width: calc(100% - 160px);
  background: transparent;
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 25px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 31px;
  border: none;
  outline: none;
  padding: 8px 10px 9px 57px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#container .header-search .header-search-wrapper input[type=text]::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #231f20;
}
#container .header-search .header-search-wrapper input[type=text]:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #231f20;
}
#container .header-search .header-search-wrapper input[type=text]::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #231f20;
}
#container .header-search .header-search-wrapper input[type=text]:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #231f20;
}
@media screen and (max-width: 870px) {
  #container .header-search .header-search-wrapper input[type=text] {
    font-size: 20px;
  }
}
#container .header-search .header-search-wrapper.active:before {
  background: url("../images/svg/search-icon-2-hover.svg") no-repeat;
}
#container .header-search .header-search-wrapper.active input[type=text]::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #fff;
}
#container .header-search .header-search-wrapper.active input[type=text]:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #fff;
}
#container .header-search .header-search-wrapper.active input[type=text]::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #fff;
}
#container .header-search .header-search-wrapper.active input[type=text]:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #fff;
}
#container .header-search .header-search-wrapper:before {
  content: " ";
  position: absolute;
  top: 8px;
  left: 20px;
  width: 30px;
  height: 30px;
  background: url("../images/svg/search-icon-2.svg") no-repeat;
}
#container .header-search .header-search-wrapper .search-btn-wrapper {
  float: right;
  position: relative;
  margin-top: 0px;
}
#container .header-search .header-search-wrapper .search-btn-wrapper .btn-arrows {
  position: absolute;
  bottom: 0px;
  width: 100%;
  left: 0px;
}
#container .header-search .header-search-wrapper .search-btn-wrapper span {
  width: 9px;
  height: 7px;
  position: absolute;
  bottom: 0px;
  background: url("../images/svg/circle-one.svg") no-repeat;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#container .header-search .header-search-wrapper .search-btn-wrapper span.btn-arrow-1 {
  right: 50px;
  transition-delay: 0.1s;
}
#container .header-search .header-search-wrapper .search-btn-wrapper span.btn-arrow-2 {
  right: 35px;
  transition-delay: 0.2s;
}
#container .header-search .header-search-wrapper .search-btn-wrapper span.btn-arrow-3 {
  right: 20px;
  transition-delay: 0.3s;
}
#container .header-search .header-search-wrapper .search-btn-wrapper span.btn-arrow-4 {
  right: 5px;
  transition-delay: 0.4s;
}
#container .header-search .header-search-wrapper .search-btn-wrapper:hover span.btn-arrow-1 {
  right: 85px;
}
#container .header-search .header-search-wrapper .search-btn-wrapper:hover span.btn-arrow-2 {
  right: 70px;
}
#container .header-search .header-search-wrapper .search-btn-wrapper:hover span.btn-arrow-3 {
  right: 55px;
}
#container .header-search .header-search-wrapper .search-btn-wrapper:hover span.btn-arrow-4 {
  right: 40px;
}
@media screen and (max-width: 870px) {
  #container .header-search .header-search-wrapper .search-btn-wrapper:hover span.btn-arrow-1 {
    right: 80px;
  }
  #container .header-search .header-search-wrapper .search-btn-wrapper:hover span.btn-arrow-2 {
    right: 65px;
  }
  #container .header-search .header-search-wrapper .search-btn-wrapper:hover span.btn-arrow-3 {
    right: 50px;
  }
  #container .header-search .header-search-wrapper .search-btn-wrapper:hover span.btn-arrow-4 {
    right: 35px;
  }
}
#container .header-search .header-search-wrapper .search-btn-wrapper.activehover span.btn-arrow-1 {
  transition-delay: 0.4s;
}
#container .header-search .header-search-wrapper .search-btn-wrapper.activehover span.btn-arrow-2 {
  transition-delay: 0.3s;
}
#container .header-search .header-search-wrapper .search-btn-wrapper.activehover span.btn-arrow-3 {
  transition-delay: 0.2s;
}
#container .header-search .header-search-wrapper .search-btn-wrapper.activehover span.btn-arrow-4 {
  transition-delay: 0.1s;
}
#container .header-search .header-search-wrapper .btn-search {
  border: none;
  box-shadow: none;
  background: transparent;
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 16px;
  color: #231f20;
  letter-spacing: 4.8px;
  text-align: right;
  line-height: 16px;
  text-transform: uppercase;
  padding: 12px 0px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#container .header-search .header-search-wrapper .btn-search:hover {
  color: #0069aa;
}
@media screen and (max-width: 870px) {
  #container .header-search .header-search-wrapper .btn-search {
    font-size: 14px;
  }
}

#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 "Roboto Slab", serif;
  -webkit-appearance: none;
}
#search input::-webkit-input-placeholder,
#search input[type=text]::-webkit-input-placeholder {
  color: #fff;
  font: normal 14px/14px "Roboto Slab", serif;
}
#search input:-moz-placeholder,
#search input[type=text]:-moz-placeholder {
  color: #fff;
  font: normal 14px/14px "Roboto Slab", serif;
}
#search input:-ms-input-placeholder,
#search input[type=text]:-ms-input-placeholder {
  color: #fff;
  font: normal 14px/14px "Roboto Slab", 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(../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,
a.button,
.button a,
input.button,
.login-form input[type=submit],
.textarea .button p a,
.map_window .directions form button,
.alert-button {
  display: inline-block;
  position: relative;
  padding: 11px 30px 11px 32px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 50;
  font-family: "Rubik", serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 13px;
  color: #231f20;
  letter-spacing: 3.9px;
  text-align: center;
  line-height: 16px;
  background: transparent;
  border: none;
}
.m-button:after, .gen-button:after,
a.button:after,
.button a:after,
input.button:after,
.login-form input[type=submit]:after,
.textarea .button p a:after,
.map_window .directions form button:after,
.alert-button:after {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: #ffffff;
  border: 2px solid #0069aa;
  border-radius: 20px;
  z-index: -1;
  opacity: 1;
  box-shadow: 0 9px 14px 0 rgba(0, 0, 0, 0);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.m-button:before, .gen-button:before,
a.button:before,
.button a:before,
input.button:before,
.login-form input[type=submit]:before,
.textarea .button p a:before,
.map_window .directions form button:before,
.alert-button:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 4px;
  left: 4px;
  background: #efefef;
  border-radius: 20px;
  z-index: -1;
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.m-button:hover, .gen-button:hover,
a.button:hover,
.button a:hover,
input.button:hover,
.login-form input[type=submit]:hover,
.textarea .button p a:hover,
.map_window .directions form button:hover,
.alert-button:hover {
  color: #fff;
}
.m-button:hover:before, .gen-button:hover:before,
a.button:hover:before,
.button a:hover:before,
input.button:hover:before,
.login-form input[type=submit]:hover:before,
.map_window .directions form button:hover:before,
.alert-button:hover:before {
  opacity: 0;
}
.m-button:hover:after, .gen-button:hover:after,
a.button:hover:after,
.button a:hover:after,
input.button:hover:after,
.login-form input[type=submit]:hover:after,
.map_window .directions form button:hover:after,
.alert-button:hover:after {
  background-image: linear-gradient(30deg, #02466f 0%, #0069aa 100%);
  box-shadow: 0 9px 14px 0 rgba(0, 0, 0, 0.1);
  border: 0px;
  border-radius: 0px;
  border-color: transparent;
}

#loadMoreEvents,
.gotoevents {
  margin: 0px auto;
  border: none;
  background: transparent;
  position: relative;
  display: block;
  clear: both;
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 16px;
  color: #231f20;
  letter-spacing: 4.8px;
  line-height: 16px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#loadMoreEvents > span,
.gotoevents > span {
  font-weight: 700;
  font-family: "Rubik", serif;
  font-size: 16px;
  color: #231f20;
  letter-spacing: 4.8px;
  line-height: 16px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#loadMoreEvents:hover,
.gotoevents:hover {
  color: #0069aa;
}
#loadMoreEvents:hover span,
.gotoevents:hover span {
  color: #0069aa;
}

.load-more-wrapper-outer {
  width: 100%;
  display: block;
  clear: both;
  overflow: hidden;
}
.event_list_listing .load-more-wrapper-outer {
  max-width: 1000px;
  margin: 0px auto;
}

.load-more-wrapper {
  position: relative;
  display: block;
  width: 180px;
  padding-bottom: 10px;
  float: right;
}
.load-more-wrapper .btn-arrows {
  position: absolute;
  bottom: -10px;
  width: 100%;
  left: 0px;
}
.load-more-wrapper .btn-arrows span {
  width: 9px;
  height: 7px;
  position: absolute;
  bottom: 0px;
  background: url("../images/svg/circle-one.svg") no-repeat;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.load-more-wrapper .btn-arrows span.btn-arrow-1 {
  right: 58px;
  transition-delay: 0.1s;
}
.load-more-wrapper .btn-arrows span.btn-arrow-2 {
  right: 43px;
  transition-delay: 0.2s;
}
.load-more-wrapper .btn-arrows span.btn-arrow-3 {
  right: 28px;
  transition-delay: 0.3s;
}
.load-more-wrapper .btn-arrows span.btn-arrow-4 {
  right: 13px;
  transition-delay: 0.4s;
}
.load-more-wrapper:hover span.btn-arrow-1 {
  right: 161px;
}
.load-more-wrapper:hover span.btn-arrow-2 {
  right: 147px;
}
.load-more-wrapper:hover span.btn-arrow-3 {
  right: 132px;
}
.load-more-wrapper:hover span.btn-arrow-4 {
  right: 117px;
}
.load-more-wrapper.activehover span.btn-arrow-1 {
  transition-delay: 0.4s;
}
.load-more-wrapper.activehover span.btn-arrow-2 {
  transition-delay: 0.3s;
}
.load-more-wrapper.activehover span.btn-arrow-3 {
  transition-delay: 0.2s;
}
.load-more-wrapper.activehover span.btn-arrow-4 {
  transition-delay: 0.1s;
}

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

#events.index .eventItem .buttons a.more,
#events.all .eventItem .buttons a.more,
#events.category .eventItem .buttons a.more,
#events.venue .eventItem .buttons a.more,
.event_listing_page .eventItem .buttons a.more,
#pages.events-by-venue .eventItem .buttons a.more,
#pages.home .eventItem .buttons a.more,
#pages.home .promo-area a.more,
#pages.home .full-slideshow .buttons a.more,
.events.content_item .event_list .eventItem .buttons a.more,
#contests.detail .eventItem .buttons a.more,
.concierge_listing .buttons a.more,
#teams.detail .eventItem .buttons a.more {
  font-family: "Rubik", serif;
  font-weight: 400;
  background: transparent;
  border: 0px;
  text-transform: uppercase;
  font-size: 13px;
  color: #231f20;
  letter-spacing: 3.9px;
  line-height: 16px;
}
#events.index .eventItem .buttons a.more:hover,
#events.all .eventItem .buttons a.more:hover,
#events.category .eventItem .buttons a.more:hover,
#events.venue .eventItem .buttons a.more:hover,
.event_listing_page .eventItem .buttons a.more:hover,
#pages.events-by-venue .eventItem .buttons a.more:hover,
#pages.home .eventItem .buttons a.more:hover,
#pages.home .promo-area a.more:hover,
#pages.home .full-slideshow .buttons a.more:hover,
.events.content_item .event_list .eventItem .buttons a.more:hover,
#contests.detail .eventItem .buttons a.more:hover,
.concierge_listing .buttons a.more:hover,
#teams.detail .eventItem .buttons a.more:hover {
  color: #0069aa;
}
#events.index .eventItem .buttons a.more:after, #events.index .eventItem .buttons a.more:before,
#events.all .eventItem .buttons a.more:after,
#events.all .eventItem .buttons a.more:before,
#events.category .eventItem .buttons a.more:after,
#events.category .eventItem .buttons a.more:before,
#events.venue .eventItem .buttons a.more:after,
#events.venue .eventItem .buttons a.more:before,
.event_listing_page .eventItem .buttons a.more:after,
.event_listing_page .eventItem .buttons a.more:before,
#pages.events-by-venue .eventItem .buttons a.more:after,
#pages.events-by-venue .eventItem .buttons a.more:before,
#pages.home .eventItem .buttons a.more:after,
#pages.home .eventItem .buttons a.more:before,
#pages.home .promo-area a.more:after,
#pages.home .promo-area a.more:before,
#pages.home .full-slideshow .buttons a.more:after,
#pages.home .full-slideshow .buttons a.more:before,
.events.content_item .event_list .eventItem .buttons a.more:after,
.events.content_item .event_list .eventItem .buttons a.more:before,
#contests.detail .eventItem .buttons a.more:after,
#contests.detail .eventItem .buttons a.more:before,
.concierge_listing .buttons a.more:after,
.concierge_listing .buttons a.more:before,
#teams.detail .eventItem .buttons a.more:after,
#teams.detail .eventItem .buttons a.more:before {
  display: none;
}

#events.index .eventItem a.tickets,
#events.all .eventItem a.tickets,
#events.category .eventItem a.tickets,
#events.venue .eventItem a.tickets,
.event_listing_page .eventItem a.tickets,
#pages.home .eventItem a.tickets,
#pages.home .full-slideshow .buttons a.tickets,
.events.content_item .event_list .eventItem a.tickets,
#contests.detail .eventItem .buttons a.tickets,
#teams.detail .eventItem .buttons a.tickets {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 16px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 16px;
  padding: 9px 66px 9px 15px;
  position: relative;
  z-index: 1;
}
#events.index .eventItem a.tickets svg,
#events.all .eventItem a.tickets svg,
#events.category .eventItem a.tickets svg,
#events.venue .eventItem a.tickets svg,
.event_listing_page .eventItem a.tickets svg,
#pages.home .eventItem a.tickets svg,
#pages.home .full-slideshow .buttons a.tickets svg,
.events.content_item .event_list .eventItem a.tickets svg,
#contests.detail .eventItem .buttons a.tickets svg,
#teams.detail .eventItem .buttons a.tickets svg {
  display: none;
}
#events.index .eventItem a.tickets:before,
#events.all .eventItem a.tickets:before,
#events.category .eventItem a.tickets:before,
#events.venue .eventItem a.tickets:before,
.event_listing_page .eventItem a.tickets:before,
#pages.home .eventItem a.tickets:before,
#pages.home .full-slideshow .buttons a.tickets:before,
.events.content_item .event_list .eventItem a.tickets:before,
#contests.detail .eventItem .buttons a.tickets:before,
#teams.detail .eventItem .buttons a.tickets:before {
  content: " ";
  width: 30px;
  height: 30px;
  background: #5db65f;
  left: calc(100% - 40px);
  top: 1px;
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}
#events.index .eventItem a.tickets:after,
#events.all .eventItem a.tickets:after,
#events.category .eventItem a.tickets:after,
#events.venue .eventItem a.tickets:after,
.event_listing_page .eventItem a.tickets:after,
#pages.home .eventItem a.tickets:after,
#pages.home .full-slideshow .buttons a.tickets:after,
.events.content_item .event_list .eventItem a.tickets:after,
#contests.detail .eventItem .buttons a.tickets:after,
#teams.detail .eventItem .buttons a.tickets:after {
  content: "";
  width: 35px;
  height: 15px;
  right: 20px;
  top: 9px;
  position: absolute;
  background: url("../images/svg/arrow_ticket.svg") no-repeat;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@keyframes ticketballin {
  0% {
    opacity: 1;
    left: calc(100% - 40px);
  }
  50% {
    opacity: 0.4;
    left: calc(50% - 20px);
  }
  100% {
    opacity: 0.4;
    left: 0px;
  }
}
@keyframes ticketballout {
  0% {
    opacity: 1;
    left: 0px;
  }
  50% {
    opacity: 0.4;
    left: calc(50% - 20px);
  }
  100% {
    opacity: 0.4;
    left: calc(100% - 40px);
  }
}
#events.index .eventItem a.tickets:hover,
#events.all .eventItem a.tickets:hover,
#events.category .eventItem a.tickets:hover,
#events.venue .eventItem a.tickets:hover,
.event_listing_page .eventItem a.tickets:hover,
#pages.home .eventItem a.tickets:hover,
#pages.home .full-slideshow .buttons a.tickets:hover,
.events.content_item .event_list .eventItem a.tickets:hover,
#contests.detail .eventItem .buttons a.tickets:hover,
#teams.detail .eventItem .buttons a.tickets:hover {
  color: #0069aa;
}
#events.index .eventItem a.tickets:hover:after,
#events.all .eventItem a.tickets:hover:after,
#events.category .eventItem a.tickets:hover:after,
#events.venue .eventItem a.tickets:hover:after,
.event_listing_page .eventItem a.tickets:hover:after,
#pages.home .eventItem a.tickets:hover:after,
#pages.home .full-slideshow .buttons a.tickets:hover:after,
.events.content_item .event_list .eventItem a.tickets:hover:after,
#contests.detail .eventItem .buttons a.tickets:hover:after,
#teams.detail .eventItem .buttons a.tickets:hover:after {
  right: 0px;
  background: url("../images/svg/arrow_ticket_hover.svg") no-repeat;
}
#events.index .eventItem a.tickets:hover:before,
#events.all .eventItem a.tickets:hover:before,
#events.category .eventItem a.tickets:hover:before,
#events.venue .eventItem a.tickets:hover:before,
.event_listing_page .eventItem a.tickets:hover:before,
#pages.home .eventItem a.tickets:hover:before,
#pages.home .full-slideshow .buttons a.tickets:hover:before,
.events.content_item .event_list .eventItem a.tickets:hover:before,
#contests.detail .eventItem .buttons a.tickets:hover:before,
#teams.detail .eventItem .buttons a.tickets:hover:before {
  animation-name: ticketballin;
  animation-duration: 200ms;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  left: 0px;
  opacity: 0.4;
}
#events.index .eventItem a.tickets.activehover:before,
#events.all .eventItem a.tickets.activehover:before,
#events.category .eventItem a.tickets.activehover:before,
#events.venue .eventItem a.tickets.activehover:before,
.event_listing_page .eventItem a.tickets.activehover:before,
#pages.home .eventItem a.tickets.activehover:before,
#pages.home .full-slideshow .buttons a.tickets.activehover:before,
.events.content_item .event_list .eventItem a.tickets.activehover:before,
#contests.detail .eventItem .buttons a.tickets.activehover:before,
#teams.detail .eventItem .buttons a.tickets.activehover:before {
  animation-name: ticketballout;
  animation-duration: 200ms;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  left: calc(100% - 40px);
}

#pages.home .full-slideshow .buttons a.tickets:after {
  right: 9px;
}

#events.index .eventItem span.tickets,
#events.all .eventItem span.tickets,
#events.category .eventItem span.tickets,
#events.venue .eventItem span.tickets,
.event_listing_page .eventItem span.tickets,
#pages.home .eventItem span.tickets,
#pages.home .full-slideshow span.tickets,
.events.content_item .event_list .eventItem span.tickets,
#contests.detail .eventItem span.tickets,
#teams.detail .eventItem span.tickets {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 16px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 16px;
  padding: 9px 0px 9px 15px;
}
#events.index .eventItem span.tickets svg,
#events.all .eventItem span.tickets svg,
#events.category .eventItem span.tickets svg,
#events.venue .eventItem span.tickets svg,
.event_listing_page .eventItem span.tickets svg,
#pages.home .eventItem span.tickets svg,
#pages.home .full-slideshow span.tickets svg,
.events.content_item .event_list .eventItem span.tickets svg,
#contests.detail .eventItem span.tickets svg,
#teams.detail .eventItem span.tickets svg {
  display: none;
}

.event_detail .buttonWrapper .buttons {
  width: 100%;
  margin-left: 0px;
  margin-top: 0px;
  position: relative;
}
.event_detail .buttonWrapper .buttons:after {
  content: " ";
  position: absolute;
  top: 22px;
  left: 21px;
  width: 53px;
  height: 7px;
  background: url("../images/svg/circles.svg") no-repeat;
}
@media screen and (max-width: 870px) {
  .event_detail .buttonWrapper .buttons {
    padding-right: 10px !important;
  }
  .event_detail .buttonWrapper .buttons:after {
    top: 26px;
  }
}
.event_detail .buttonWrapper .buttons a.tickets,
.event_detail .buttonWrapper .buttons a.tickets.soon,
.event_detail .buttonWrapper .buttons span.tickets:not(.no_ticket_link) {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 25px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 25px;
  position: relative;
  z-index: 1;
  padding-left: 21px;
  display: inline-block;
  width: 100%;
}
.event_detail .buttonWrapper .buttons a.tickets.alt,
.event_detail .buttonWrapper .buttons a.tickets.soon.alt,
.event_detail .buttonWrapper .buttons span.tickets:not(.no_ticket_link).alt {
  margin-top: 35px;
}
.event_detail .buttonWrapper .buttons a.tickets.alt:before,
.event_detail .buttonWrapper .buttons a.tickets.soon.alt:before,
.event_detail .buttonWrapper .buttons span.tickets:not(.no_ticket_link).alt:before {
  opacity: 0.4;
}
.event_detail .buttonWrapper .buttons a.tickets.alt:hover:before,
.event_detail .buttonWrapper .buttons a.tickets.soon.alt:hover:before,
.event_detail .buttonWrapper .buttons span.tickets:not(.no_ticket_link).alt:hover:before {
  opacity: 1;
}
.event_detail .buttonWrapper .buttons a.tickets:before,
.event_detail .buttonWrapper .buttons a.tickets.soon:before,
.event_detail .buttonWrapper .buttons span.tickets:not(.no_ticket_link):before {
  content: " ";
  width: 50px;
  height: 50px;
  background: #5db65f;
  left: calc(100% - 60px);
  top: -12px;
  position: absolute;
  border-radius: 50%;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: -1;
  pointer-events: none;
}
.event_detail .buttonWrapper .buttons a.tickets:after,
.event_detail .buttonWrapper .buttons a.tickets.soon:after,
.event_detail .buttonWrapper .buttons span.tickets:not(.no_ticket_link):after {
  content: "";
  width: 41px;
  height: 15px;
  right: 28px;
  top: 6px;
  position: absolute;
  background: url("../images/svg/arrow-ticket-long.svg") no-repeat;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@keyframes ticketballin1 {
  0% {
    opacity: 1;
    left: calc(100% - 60px);
  }
  50% {
    opacity: 0.4;
    left: calc(50% - 30px);
  }
  100% {
    opacity: 0.4;
    left: 0px;
  }
}
@keyframes ticketballout1 {
  0% {
    opacity: 0.4;
    left: 0px;
  }
  50% {
    opacity: 0.4;
    left: calc(50% - 30px);
  }
  100% {
    opacity: 1;
    left: calc(100% - 60px);
  }
}
.event_detail .buttonWrapper .buttons a.tickets:hover,
.event_detail .buttonWrapper .buttons a.tickets.soon:hover,
.event_detail .buttonWrapper .buttons span.tickets:not(.no_ticket_link):hover {
  color: #0069aa;
}
.event_detail .buttonWrapper .buttons a.tickets:hover:after,
.event_detail .buttonWrapper .buttons a.tickets.soon:hover:after,
.event_detail .buttonWrapper .buttons span.tickets:not(.no_ticket_link):hover:after {
  right: 18px;
  background: url("../images/svg/arrow-ticket-long-hover.svg") no-repeat;
}
.event_detail .buttonWrapper .buttons a.tickets:hover:before,
.event_detail .buttonWrapper .buttons a.tickets.soon:hover:before,
.event_detail .buttonWrapper .buttons span.tickets:not(.no_ticket_link):hover:before {
  animation-name: ticketballin1;
  animation-duration: 200ms;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  left: 0px;
  opacity: 0.4;
}
.event_detail .buttonWrapper .buttons a.tickets.activehover:before,
.event_detail .buttonWrapper .buttons a.tickets.soon.activehover:before,
.event_detail .buttonWrapper .buttons span.tickets:not(.no_ticket_link).activehover:before {
  animation-name: ticketballout1;
  animation-duration: 200ms;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  left: calc(100% - 60px);
}
@media screen and (max-width: 870px) {
  .event_detail .buttonWrapper .buttons a.tickets,
  .event_detail .buttonWrapper .buttons a.tickets.soon,
  .event_detail .buttonWrapper .buttons span.tickets:not(.no_ticket_link) {
    font-size: 20px;
  }
  .event_detail .buttonWrapper .buttons a.tickets:hover:before,
  .event_detail .buttonWrapper .buttons a.tickets.soon:hover:before,
  .event_detail .buttonWrapper .buttons span.tickets:not(.no_ticket_link):hover:before {
    left: 10px;
  }
}
.event_detail .buttonWrapper .buttons span.no_ticket_link {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 25px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 25px;
  padding-left: 21px;
}

#pages.home .home-slideshow .buttons a.tickets,
#pages.home .home-slideshow .buttons a.tickets.soon {
  font-size: 14px;
  padding: 6px 13px 6px 17px;
  color: #ffffff;
  letter-spacing: 1px;
  background: transparent;
  position: relative;
  clip-path: polygon(100% 0, 100% 100%, 9px 100%, 0% 0%, 0 0);
  -webkit-clip-path: polygon(100% 0, 100% 100%, 9px 100%, 0% 0%, 0 0);
  display: inline-block;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#pages.home .home-slideshow .buttons a.tickets svg,
#pages.home .home-slideshow .buttons a.tickets.soon svg {
  display: none;
}
#pages.home .home-slideshow .buttons a.tickets:before,
#pages.home .home-slideshow .buttons a.tickets.soon:before {
  content: " ";
  position: absolute;
  left: -1px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #0069aa;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#pages.home .home-slideshow .buttons a.tickets:after,
#pages.home .home-slideshow .buttons a.tickets.soon:after {
  content: " ";
  position: absolute;
  right: -6px;
  top: 1px;
  width: 10px;
  height: 100%;
  z-index: -1;
  background: url("../images/svg/ticketbutton_bg.svg") no-repeat;
}
#pages.home .home-slideshow .buttons a.tickets:hover,
#pages.home .home-slideshow .buttons a.tickets.soon:hover {
  clip-path: polygon(100% 0, 100% 100%, 0% 100%, 9px 0%, 0 0);
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0% 100%, 9px 0%, 0 0);
  color: white;
}
#pages.home .home-slideshow .buttons a.tickets:hover:before,
#pages.home .home-slideshow .buttons a.tickets.soon:hover:before {
  background: #00589d;
}

/***********************************************/
/*      Add Additional Button Styles Below     */
/***********************************************/
/* 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: rgba(0, 0, 0, 0);
}

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

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

.rsContainer {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.rsArrow,
.rsThumbsArrow {
  cursor: pointer;
}

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

.rsArrow,
.rsNav,
.rsThumbsArrow {
  opacity: 1;
  -webkit-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  -o-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;
  -moz-transition: visibility 0s linear 0.3s, opacity 0.3s linear;
  -o-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;
  -moz-transition: 0s;
  -o-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;
  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: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

.rsVideoFrameHolder {
  position: absolute;
  left: 0;
  top: 0;
  background: #141414;
  opacity: 0;
  -webkit-transition: 0.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. Play/close video button
*    6. Pause Autoplay Btn
*    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;
}

.royalSlider > .rsContent {
  visibility: hidden;
}

/***************
*
*  1. Arrows
*
****************/
.rsDefault .rsArrow {
  height: 100%;
  width: 100px;
  position: absolute;
  display: block;
  cursor: pointer;
  z-index: 21;
}
.rsDefault .rsArrow.rsVer .rsArrow {
  width: 100%;
  height: 44px;
}
@media screen and (max-width: 870px) {
  .rsDefault .rsArrow {
    width: 45px;
  }
}
@media screen and (max-width: 700px) {
  .rsDefault .rsArrow {
    width: 30px;
  }
}

.rsDefault.rsVer .rsArrowLeft {
  top: 0;
  left: 0;
}
.rsDefault.rsVer .rsArrowRight {
  bottom: 0;
  left: 0;
}
.rsDefault.rsHor .rsArrowLeft {
  top: 0;
  left: 0;
}
.rsDefault.rsHor .rsArrowRight {
  right: 0;
  top: 0;
}
.rsDefault.rsHor .rsArrowRight .rsArrowIcn {
  left: calc(50% - 60px);
}
.rsDefault.rsHor .rsArrowRight .rsArrowIcn:before {
  transform: rotate(180deg);
  left: auto;
  right: -13px;
}

.rsDefault .rsArrowIcn {
  width: 41px;
  height: 15px;
  top: 50%;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
  position: absolute;
  cursor: pointer;
  border-radius: 2px;
}
.rsDefault .rsArrowIcn:hover:before {
  width: 21px;
}
.rsDefault .rsArrowIcn:hover:after {
  border-color: rgb(255, 255, 255);
}
.rsDefault .rsArrowIcn:before {
  content: " ";
  position: absolute;
  background: url("../images/svg/slideshow_arrow.svg") no-repeat;
  width: 41px;
  height: 15px;
  top: calc(50% - 7px);
  left: calc(50% + 17px);
  overflow: hidden;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 1;
}
.rsDefault .rsArrowIcn:after {
  content: " ";
  position: absolute;
  top: calc(50% - 25px);
  left: 50%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.rsDefault .rsArrow.rsHidden {
  opacity: 1;
  visibility: visible;
}

/***************
*
*  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 img {
  opacity: 0.3;
  filter: alpha(opacity=30);
}
.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-linear-gradient(top, #fefefe, #f4f4f4);
  background-image: -moz-linear-gradient(top, #fefefe, #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 {
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.rsDefault .rsTab:last-child {
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-right: 1px solid #cfcfcf;
}
.rsDefault .rsTab:active {
  border: 1px solid #D9D9DD;
  background-color: #f4f4f4;
  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;
  box-shadow: 0 1px 9px rgba(102, 102, 102, 0.65) inset;
  background: #ACACAC;
  background-image: -webkit-linear-gradient(to top, #ACACAC, #BBB);
  background-image: -moz-linear-gradient(to top, #ACACAC, #BBB);
  background-image: linear-gradient(to bottom, #ACACAC, #BBB);
}

/***************
*
*  5. 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;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.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;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  zoom: 1;
  opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 10px;
  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 {
  background: black;
}
.rsDefault:hover .rsPauseBtn {
  zoom: 1;
  opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
}
.rsDefault.rsVideoPlaying .rsPauseBtn {
  display: none;
}

/***************
*
*  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
*
****************/
.rsDefault .rsGCaption,
#branding .caption {
  position: absolute;
  float: none;
  bottom: 20px;
  left: 0;
  text-align: right;
  color: #FFF;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .rsDefault .rsGCaption,
  #branding .caption {
    bottom: 0px;
  }
}
.rsDefault .rsGCaption .rsABlock,
#branding .caption .rsABlock {
  position: relative;
}
.rsDefault .rsGCaption p,
#branding .caption p {
  background: rgba(0, 0, 0, 0.7);
  margin: 0;
  padding: 5px 10px;
  color: #fff;
  display: inline-block;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  letter-spacing: 0.44px;
  line-height: 22px;
}

/***************
*
*  9. Full Width Responsive
*
****************/
.rsDefault.rsFullWidth {
  width: 100%;
  height: auto;
  position: relative;
}
.rsDefault.rsFullWidth img.rsImg {
  width: 100%;
  display: block;
}
.rsDefault.rsFullWidth:after {
  position: absolute;
  content: " ";
  bottom: 0px;
  left: 60px;
  width: calc(100% - 60px);
  background: white;
  height: 20px;
}
@media screen and (max-width: 1350px) {
  .rsDefault.rsFullWidth:after {
    display: none;
  }
}

#events.detail #content .rsDefault.rsFullWidth:after {
  left: auto;
  right: 0px;
  width: calc(100% - 335px);
  height: 30px;
}
@media screen and (max-width: 1350px) {
  #events.detail #content .rsDefault.rsFullWidth:after {
    display: block;
  }
}
@media screen and (max-width: 870px) {
  #events.detail #content .rsDefault.rsFullWidth:after {
    display: none;
  }
}
#events.detail #content .rsDefault.rsFullWidth .rsGCaption {
  bottom: 30px;
}
@media screen and (max-width: 1350px) {
  #events.detail #content .rsDefault.rsFullWidth .rsGCaption {
    bottom: 30px;
  }
}
@media screen and (max-width: 870px) {
  #events.detail #content .rsDefault.rsFullWidth .rsGCaption {
    bottom: 0px;
  }
}

#news.detail #content .rsDefault.rsFullWidth:after,
#teams.detail #content .rsDefault.rsFullWidth:after {
  position: absolute;
  content: " ";
  bottom: 0px;
  left: 60px;
  width: calc(100% - 60px);
  background: white;
  height: 20px;
}
@media screen and (max-width: 1350px) {
  #news.detail #content .rsDefault.rsFullWidth:after,
  #teams.detail #content .rsDefault.rsFullWidth:after {
    display: none;
  }
}
@media screen and (max-width: 1350px) {
  #news.detail #content .rsDefault.rsFullWidth .rsGCaption,
  #teams.detail #content .rsDefault.rsFullWidth .rsGCaption {
    bottom: 20px;
  }
}
@media screen and (max-width: 870px) {
  #news.detail #content .rsDefault.rsFullWidth .rsGCaption,
  #teams.detail #content .rsDefault.rsFullWidth .rsGCaption {
    bottom: 0px;
  }
}

/********* 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;
  -moz-transition: all 100ms linear;
  -o-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);
}

#branding.spotlight_image {
  position: relative;
}
@media screen and (max-width: 1350px) {
  #branding.spotlight_image {
    margin-bottom: 10px;
  }
}
#branding.spotlight_image:after {
  position: absolute;
  content: " ";
  bottom: 0px;
  right: 0px;
  width: calc(100% - 335px);
  background: white;
  height: 20px;
}
@media screen and (max-width: 870px) {
  #branding.spotlight_image:after {
    display: none;
  }
}

.calendar-new .accessible-overlay {
  margin-left: 8px;
  margin-top: 10px;
}
.calendar-new .accessible-overlay br {
  display: none;
}
.calendar-new .accessible-overlay a {
  font-size: 18px;
  color: #101D42;
  letter-spacing: 0.2px;
  line-height: 19px;
}
.calendar-new .accessible-overlay a:hover {
  color: #0057B8;
}

.calendar-new {
  position: relative;
  margin: auto;
  max-width: 1300px;
  padding: 0 20px 100px;
}
.calendar-new .tl-header {
  background: #000;
  padding: 20px 0 15px;
  max-width: 1200px;
  margin: 0 auto 10px;
}
.calendar-new .month_name {
  color: #0069aa;
  text-align: center;
  font: 500 32px/100% "Rubik", serif;
  letter-spacing: 0.08em;
  margin: 0px auto;
}
@media screen and (max-width: 700px) {
  .calendar-new .month_name {
    margin: 30px 0px;
  }
}
.calendar-new .cal-prev, .calendar-new .cal-next {
  font-size: 30px;
  color: white;
  vertical-align: middle;
  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: #0069aa;
}
.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: " ";
}
.calendar-new .tl-wrap-inner:after {
  clear: both;
}
.calendar-new .tl-wrap-inner .tl-calendar {
  zoom: 1;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  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: " ";
}
.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: " ";
}
.calendar-new .weekdays:after {
  clear: both;
}
.calendar-new .weekdays .weekday {
  width: 14.28%;
  padding-top: 15px;
  text-align: left;
  color: white;
  font-family: "Rubik", serif;
  font-size: 16px;
  font-weight: 500;
  float: left;
  margin-bottom: 0px;
  margin-right: 0px;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .calendar-new .weekdays {
    display: none;
  }
}
.calendar-new .tl-date {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-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: 700px) {
  .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: 38px;
  text-align: center;
}
.calendar-new .tl-date .date .weekday {
  display: none;
  padding-left: 12px;
  color: #ccc;
  font-weight: 400;
}
@media screen and (max-width: 700px) {
  .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: #0069aa;
  height: 42px;
  color: white;
  font-family: "Rubik", 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: #231f20;
}
.calendar-new .tl-date h3 a:hover {
  color: #0069aa;
}
.calendar-new .tl-date h4 {
  font-weight: 300;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  color: #231f20;
}
.calendar-new .tl-date .time {
  color: #888;
  font-size: 12px;
  font-weight: 300;
  z-index: 10;
  letter-spacing: 0.04em;
}
.calendar-new .tl-date.hasEvent .date {
  color: white;
  background: #ccc;
}
@media screen and (max-width: 700px) {
  .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%;
  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
----------------------------------------------------------------------------- */
.content_item {
  margin-bottom: 40px;
}

.spotlight_image img {
  display: block;
  max-width: 100%;
  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: 700px) {
  .content img[align=left], .content img.left {
    float: none;
    margin: 0 auto 20px;
    display: block;
  }
}
.content img[align=right], .content img.right {
  float: right;
  margin: 0 0 20px 20px;
}
@media screen and (max-width: 700px) {
  .content img[align=right], .content img.right {
    float: none;
    margin: 0 auto 20px;
    display: block;
  }
}

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

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

/* ----------------------------------------------------------------------------
= Spotlight list style
----------------------------------------------------------------------------- */
.spotlight,
.concierge,
.news_list,
.contest_list,
.job_list,
.seating_charts,
.offer_list,
#venues.index .list {
  clear: both;
}
.spotlight .entry,
.concierge .entry,
.news_list .entry,
.contest_list .entry,
.job_list .entry,
.seating_charts .entry,
.offer_list .entry,
#venues.index .list .entry {
  zoom: 1;
  padding-top: 40px;
  margin-bottom: 30px;
  padding-bottom: 50px;
  border-bottom: 1px solid #d6d6d6;
}
.spotlight .entry:before, .spotlight .entry:after,
.concierge .entry:before,
.concierge .entry:after,
.news_list .entry:before,
.news_list .entry:after,
.contest_list .entry:before,
.contest_list .entry:after,
.job_list .entry:before,
.job_list .entry:after,
.seating_charts .entry:before,
.seating_charts .entry:after,
.offer_list .entry:before,
.offer_list .entry:after,
#venues.index .list .entry:before,
#venues.index .list .entry:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: " ";
}
.spotlight .entry:after,
.concierge .entry:after,
.news_list .entry:after,
.contest_list .entry:after,
.job_list .entry:after,
.seating_charts .entry:after,
.offer_list .entry:after,
#venues.index .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,
.offer_list .entry:last-child,
#venues.index .list .entry:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 700px) {
  .spotlight .entry,
  .concierge .entry,
  .news_list .entry,
  .contest_list .entry,
  .job_list .entry,
  .seating_charts .entry,
  .offer_list .entry,
  #venues.index .list .entry {
    padding-bottom: 10px;
    margin-bottom: 5px;
  }
}
.spotlight .thumb,
.concierge .thumb,
.news_list .thumb,
.contest_list .thumb,
.job_list .thumb,
.seating_charts .thumb,
.offer_list .thumb,
#venues.index .list .thumb {
  min-width: 280px;
  width: 280px;
  margin: 0 40px 0px 0;
  float: left;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 1;
  position: relative;
}
.spotlight .thumb:after,
.concierge .thumb:after,
.news_list .thumb:after,
.contest_list .thumb:after,
.job_list .thumb:after,
.seating_charts .thumb:after,
.offer_list .thumb:after,
#venues.index .list .thumb:after {
  content: "";
  position: absolute;
  left: 15px;
  top: 15px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background: #efefef;
  z-index: -1;
}
.spotlight .thumb a,
.concierge .thumb a,
.news_list .thumb a,
.contest_list .thumb a,
.job_list .thumb a,
.seating_charts .thumb a,
.offer_list .thumb a,
#venues.index .list .thumb a {
  display: block;
  opacity: 1;
  text-decoration: none;
}
.spotlight .thumb img,
.concierge .thumb img,
.news_list .thumb img,
.contest_list .thumb img,
.job_list .thumb img,
.seating_charts .thumb img,
.offer_list .thumb img,
#venues.index .list .thumb img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .spotlight .thumb,
  .concierge .thumb,
  .news_list .thumb,
  .contest_list .thumb,
  .job_list .thumb,
  .seating_charts .thumb,
  .offer_list .thumb,
  #venues.index .list .thumb {
    margin: 0 auto 20px;
    float: none;
  }
}
.spotlight .thumb:hover,
.concierge .thumb:hover,
.news_list .thumb:hover,
.contest_list .thumb:hover,
.job_list .thumb:hover,
.seating_charts .thumb:hover,
.offer_list .thumb:hover,
#venues.index .list .thumb:hover {
  opacity: 0.8;
}
.spotlight .info,
.concierge .info,
.news_list .info,
.contest_list .info,
.job_list .info,
.seating_charts .info,
.offer_list .info,
#venues.index .list .info {
  float: left;
  width: 100%;
  display: block;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
@media screen and (max-width: 700px) {
  .spotlight .info,
  .concierge .info,
  .news_list .info,
  .contest_list .info,
  .job_list .info,
  .seating_charts .info,
  .offer_list .info,
  #venues.index .list .info {
    margin: 0 auto 20px;
    float: none;
  }
  .spotlight .info li,
  .concierge .info li,
  .news_list .info li,
  .contest_list .info li,
  .job_list .info li,
  .seating_charts .info li,
  .offer_list .info li,
  #venues.index .list .info li {
    text-align: left;
  }
  .spotlight .info a.button,
  .concierge .info a.button,
  .news_list .info a.button,
  .contest_list .info a.button,
  .job_list .info a.button,
  .seating_charts .info a.button,
  .offer_list .info a.button,
  #venues.index .list .info a.button {
    width: 100%;
  }
}
.spotlight .thumb + .info,
.concierge .thumb + .info,
.news_list .thumb + .info,
.contest_list .thumb + .info,
.job_list .thumb + .info,
.seating_charts .thumb + .info,
.offer_list .thumb + .info,
#venues.index .list .thumb + .info {
  width: calc(100% - (280px + 40px));
}
@media screen and (max-width: 700px) {
  .spotlight .thumb + .info,
  .concierge .thumb + .info,
  .news_list .thumb + .info,
  .contest_list .thumb + .info,
  .job_list .thumb + .info,
  .seating_charts .thumb + .info,
  .offer_list .thumb + .info,
  #venues.index .list .thumb + .info {
    width: 100%;
  }
}
.spotlight .date,
.concierge .date,
.news_list .date,
.contest_list .date,
.job_list .date,
.seating_charts .date,
.offer_list .date,
#venues.index .list .date {
  text-transform: uppercase;
  position: relative;
  z-index: 60;
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 16px;
  color: #231f20;
  letter-spacing: 4.8px;
  line-height: 20px;
  margin-bottom: 26px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
.spotlight .date span.m-date__month,
.concierge .date span.m-date__month,
.news_list .date span.m-date__month,
.contest_list .date span.m-date__month,
.job_list .date span.m-date__month,
.seating_charts .date span.m-date__month,
.offer_list .date span.m-date__month,
#venues.index .list .date span.m-date__month {
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 16px;
  color: #231f20;
  letter-spacing: 4.8px;
  line-height: 20px;
}
.spotlight .date span.m-date__day,
.concierge .date span.m-date__day,
.news_list .date span.m-date__day,
.contest_list .date span.m-date__day,
.job_list .date span.m-date__day,
.seating_charts .date span.m-date__day,
.offer_list .date span.m-date__day,
#venues.index .list .date span.m-date__day {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 16px;
  color: #0069aa;
  letter-spacing: 4.8px;
  line-height: 20px;
  margin-left: 4px;
  margin-right: 2px;
}
.spotlight .date span.m-date__year,
.concierge .date span.m-date__year,
.news_list .date span.m-date__year,
.contest_list .date span.m-date__year,
.job_list .date span.m-date__year,
.seating_charts .date span.m-date__year,
.offer_list .date span.m-date__year,
#venues.index .list .date span.m-date__year {
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 11px;
  color: #231f20;
  letter-spacing: 2px;
  line-height: 20px;
}
.spotlight .date:after,
.concierge .date:after,
.news_list .date:after,
.contest_list .date:after,
.job_list .date:after,
.seating_charts .date:after,
.offer_list .date:after,
#venues.index .list .date:after {
  width: 55px;
  height: 11px;
  content: " ";
  position: absolute;
  left: 0px;
  bottom: -13px;
  z-index: -1;
  background: url("../images/svg/circles.svg") no-repeat;
  display: block;
}
.spotlight .title,
.concierge .title,
.news_list .title,
.contest_list .title,
.job_list .title,
.seating_charts .title,
.offer_list .title,
#venues.index .list .title {
  margin-bottom: 20px;
  text-transform: none;
  position: relative;
  z-index: 5;
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 31px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 31px;
}
.spotlight .title a,
.concierge .title a,
.news_list .title a,
.contest_list .title a,
.job_list .title a,
.seating_charts .title a,
.offer_list .title a,
#venues.index .list .title a {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 31px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 31px;
  position: relative;
  text-decoration: none;
  color: #313131;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  z-index: 5;
}
.spotlight .title a:hover,
.concierge .title a:hover,
.news_list .title a:hover,
.contest_list .title a:hover,
.job_list .title a:hover,
.seating_charts .title a:hover,
.offer_list .title a:hover,
#venues.index .list .title a:hover {
  color: #0069aa;
}
.spotlight[data-layout=square],
.concierge[data-layout=square],
.news_list[data-layout=square],
.contest_list[data-layout=square],
.job_list[data-layout=square],
.seating_charts[data-layout=square],
.offer_list[data-layout=square],
#venues.index .list[data-layout=square] {
  zoom: 1;
  width: 100%;
  margin: 0 auto 40px;
  margin-left: 0px;
  border-top: none;
  display: flex;
  flex-wrap: wrap;
}
.spotlight[data-layout=square]:before, .spotlight[data-layout=square]:after,
.concierge[data-layout=square]:before,
.concierge[data-layout=square]:after,
.news_list[data-layout=square]:before,
.news_list[data-layout=square]:after,
.contest_list[data-layout=square]:before,
.contest_list[data-layout=square]:after,
.job_list[data-layout=square]:before,
.job_list[data-layout=square]:after,
.seating_charts[data-layout=square]:before,
.seating_charts[data-layout=square]:after,
.offer_list[data-layout=square]:before,
.offer_list[data-layout=square]:after,
#venues.index .list[data-layout=square]:before,
#venues.index .list[data-layout=square]:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: " ";
}
.spotlight[data-layout=square]:after,
.concierge[data-layout=square]:after,
.news_list[data-layout=square]:after,
.contest_list[data-layout=square]:after,
.job_list[data-layout=square]:after,
.seating_charts[data-layout=square]:after,
.offer_list[data-layout=square]:after,
#venues.index .list[data-layout=square]:after {
  clear: both;
}
@media screen and (min-width: 640px) {
  .spotlight[data-layout=square],
  .concierge[data-layout=square],
  .news_list[data-layout=square],
  .contest_list[data-layout=square],
  .job_list[data-layout=square],
  .seating_charts[data-layout=square],
  .offer_list[data-layout=square],
  #venues.index .list[data-layout=square] {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .spotlight[data-layout=square],
  .concierge[data-layout=square],
  .news_list[data-layout=square],
  .contest_list[data-layout=square],
  .job_list[data-layout=square],
  .seating_charts[data-layout=square],
  .offer_list[data-layout=square],
  #venues.index .list[data-layout=square] {
    max-width: 665px;
    margin: 0px auto;
  }
}
.spotlight[data-layout=square] .entry,
.concierge[data-layout=square] .entry,
.news_list[data-layout=square] .entry,
.contest_list[data-layout=square] .entry,
.job_list[data-layout=square] .entry,
.seating_charts[data-layout=square] .entry,
.offer_list[data-layout=square] .entry,
#venues.index .list[data-layout=square] .entry {
  width: 100%;
  padding: 0;
  padding-bottom: 40px;
  margin: 0 0 20px;
  display: flex;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  flex-direction: column;
}
.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,
.offer_list[data-layout=square] .entry .info .content,
#venues.index .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,
.offer_list[data-layout=square] .entry .thumb,
#venues.index .list[data-layout=square] .entry .thumb {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  margin-right: 0;
}
.spotlight[data-layout=square] .entry .info,
.concierge[data-layout=square] .entry .info,
.news_list[data-layout=square] .entry .info,
.contest_list[data-layout=square] .entry .info,
.job_list[data-layout=square] .entry .info,
.seating_charts[data-layout=square] .entry .info,
.offer_list[data-layout=square] .entry .info,
#venues.index .list[data-layout=square] .entry .info {
  width: 100%;
  display: block;
  text-align: left;
  padding: 0;
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  flex-direction: column;
}
.spotlight[data-layout=square] .entry .info p,
.concierge[data-layout=square] .entry .info p,
.news_list[data-layout=square] .entry .info p,
.contest_list[data-layout=square] .entry .info p,
.job_list[data-layout=square] .entry .info p,
.seating_charts[data-layout=square] .entry .info p,
.offer_list[data-layout=square] .entry .info p,
#venues.index .list[data-layout=square] .entry .info p {
  font-size: 18px;
  letter-spacing: 0.5px;
  line-height: 28.8px;
}
.spotlight[data-layout=square] .entry .title,
.concierge[data-layout=square] .entry .title,
.news_list[data-layout=square] .entry .title,
.contest_list[data-layout=square] .entry .title,
.job_list[data-layout=square] .entry .title,
.seating_charts[data-layout=square] .entry .title,
.offer_list[data-layout=square] .entry .title,
#venues.index .list[data-layout=square] .entry .title {
  margin-bottom: 12px;
}
.spotlight[data-layout=square] .entry .title,
.spotlight[data-layout=square] .entry .title a,
.concierge[data-layout=square] .entry .title,
.concierge[data-layout=square] .entry .title a,
.news_list[data-layout=square] .entry .title,
.news_list[data-layout=square] .entry .title a,
.contest_list[data-layout=square] .entry .title,
.contest_list[data-layout=square] .entry .title a,
.job_list[data-layout=square] .entry .title,
.job_list[data-layout=square] .entry .title a,
.seating_charts[data-layout=square] .entry .title,
.seating_charts[data-layout=square] .entry .title a,
.offer_list[data-layout=square] .entry .title,
.offer_list[data-layout=square] .entry .title a,
#venues.index .list[data-layout=square] .entry .title,
#venues.index .list[data-layout=square] .entry .title a {
  font-size: 25px;
  line-height: 30px;
  text-align: left;
  text-transform: none;
}
.spotlight[data-layout=square] .entry .title:before, .spotlight[data-layout=square] .entry .title:after,
.spotlight[data-layout=square] .entry .title a:before,
.spotlight[data-layout=square] .entry .title a:after,
.concierge[data-layout=square] .entry .title:before,
.concierge[data-layout=square] .entry .title:after,
.concierge[data-layout=square] .entry .title a:before,
.concierge[data-layout=square] .entry .title a:after,
.news_list[data-layout=square] .entry .title:before,
.news_list[data-layout=square] .entry .title:after,
.news_list[data-layout=square] .entry .title a:before,
.news_list[data-layout=square] .entry .title a:after,
.contest_list[data-layout=square] .entry .title:before,
.contest_list[data-layout=square] .entry .title:after,
.contest_list[data-layout=square] .entry .title a:before,
.contest_list[data-layout=square] .entry .title a:after,
.job_list[data-layout=square] .entry .title:before,
.job_list[data-layout=square] .entry .title:after,
.job_list[data-layout=square] .entry .title a:before,
.job_list[data-layout=square] .entry .title a:after,
.seating_charts[data-layout=square] .entry .title:before,
.seating_charts[data-layout=square] .entry .title:after,
.seating_charts[data-layout=square] .entry .title a:before,
.seating_charts[data-layout=square] .entry .title a:after,
.offer_list[data-layout=square] .entry .title:before,
.offer_list[data-layout=square] .entry .title:after,
.offer_list[data-layout=square] .entry .title a:before,
.offer_list[data-layout=square] .entry .title a:after,
#venues.index .list[data-layout=square] .entry .title:before,
#venues.index .list[data-layout=square] .entry .title:after,
#venues.index .list[data-layout=square] .entry .title a:before,
#venues.index .list[data-layout=square] .entry .title a:after {
  display: none;
}
@media screen and (min-width: 640px) {
  .spotlight[data-layout=square] .entry,
  .concierge[data-layout=square] .entry,
  .news_list[data-layout=square] .entry,
  .contest_list[data-layout=square] .entry,
  .job_list[data-layout=square] .entry,
  .seating_charts[data-layout=square] .entry,
  .offer_list[data-layout=square] .entry,
  #venues.index .list[data-layout=square] .entry {
    width: calc(50% - 45px);
    max-width: 288px;
    margin: 0 35px 50px;
  }
  .spotlight[data-layout=square] .entry:first-child,
  .concierge[data-layout=square] .entry:first-child,
  .news_list[data-layout=square] .entry:first-child,
  .contest_list[data-layout=square] .entry:first-child,
  .job_list[data-layout=square] .entry:first-child,
  .seating_charts[data-layout=square] .entry:first-child,
  .offer_list[data-layout=square] .entry:first-child,
  #venues.index .list[data-layout=square] .entry:first-child {
    margin-left: 0px;
  }
  .spotlight[data-layout=square] .entry:nth-child(2n),
  .concierge[data-layout=square] .entry:nth-child(2n),
  .news_list[data-layout=square] .entry:nth-child(2n),
  .contest_list[data-layout=square] .entry:nth-child(2n),
  .job_list[data-layout=square] .entry:nth-child(2n),
  .seating_charts[data-layout=square] .entry:nth-child(2n),
  .offer_list[data-layout=square] .entry:nth-child(2n),
  #venues.index .list[data-layout=square] .entry:nth-child(2n) {
    margin-right: 0px;
  }
  .spotlight[data-layout=square] .entry:nth-child(2n+1),
  .concierge[data-layout=square] .entry:nth-child(2n+1),
  .news_list[data-layout=square] .entry:nth-child(2n+1),
  .contest_list[data-layout=square] .entry:nth-child(2n+1),
  .job_list[data-layout=square] .entry:nth-child(2n+1),
  .seating_charts[data-layout=square] .entry:nth-child(2n+1),
  .offer_list[data-layout=square] .entry:nth-child(2n+1),
  #venues.index .list[data-layout=square] .entry:nth-child(2n+1) {
    clear: left;
    margin-left: 0px;
  }
  .spotlight[data-layout=square] .entry .info a.button,
  .concierge[data-layout=square] .entry .info a.button,
  .news_list[data-layout=square] .entry .info a.button,
  .contest_list[data-layout=square] .entry .info a.button,
  .job_list[data-layout=square] .entry .info a.button,
  .seating_charts[data-layout=square] .entry .info a.button,
  .offer_list[data-layout=square] .entry .info a.button,
  #venues.index .list[data-layout=square] .entry .info a.button {
    margin: auto auto 0 auto;
    width: 100%;
    max-width: 166px;
  }
  .spotlight[data-layout=square] .entry .info,
  .concierge[data-layout=square] .entry .info,
  .news_list[data-layout=square] .entry .info,
  .contest_list[data-layout=square] .entry .info,
  .job_list[data-layout=square] .entry .info,
  .seating_charts[data-layout=square] .entry .info,
  .offer_list[data-layout=square] .entry .info,
  #venues.index .list[data-layout=square] .entry .info {
    text-align: left;
  }
}
@media screen and (min-width: 1025px) {
  .spotlight[data-layout=square] .entry,
  .concierge[data-layout=square] .entry,
  .news_list[data-layout=square] .entry,
  .contest_list[data-layout=square] .entry,
  .job_list[data-layout=square] .entry,
  .seating_charts[data-layout=square] .entry,
  .offer_list[data-layout=square] .entry,
  #venues.index .list[data-layout=square] .entry {
    width: calc(33% - 45px);
    margin: 0 35px 50px;
  }
  .spotlight[data-layout=square] .entry:nth-child(odd),
  .concierge[data-layout=square] .entry:nth-child(odd),
  .news_list[data-layout=square] .entry:nth-child(odd),
  .contest_list[data-layout=square] .entry:nth-child(odd),
  .job_list[data-layout=square] .entry:nth-child(odd),
  .seating_charts[data-layout=square] .entry:nth-child(odd),
  .offer_list[data-layout=square] .entry:nth-child(odd),
  #venues.index .list[data-layout=square] .entry:nth-child(odd) {
    clear: none;
  }
  .spotlight[data-layout=square] .entry:first-child,
  .concierge[data-layout=square] .entry:first-child,
  .news_list[data-layout=square] .entry:first-child,
  .contest_list[data-layout=square] .entry:first-child,
  .job_list[data-layout=square] .entry:first-child,
  .seating_charts[data-layout=square] .entry:first-child,
  .offer_list[data-layout=square] .entry:first-child,
  #venues.index .list[data-layout=square] .entry:first-child {
    margin-left: 0px;
  }
  .spotlight[data-layout=square] .entry:nth-child(2n),
  .concierge[data-layout=square] .entry:nth-child(2n),
  .news_list[data-layout=square] .entry:nth-child(2n),
  .contest_list[data-layout=square] .entry:nth-child(2n),
  .job_list[data-layout=square] .entry:nth-child(2n),
  .seating_charts[data-layout=square] .entry:nth-child(2n),
  .offer_list[data-layout=square] .entry:nth-child(2n),
  #venues.index .list[data-layout=square] .entry:nth-child(2n) {
    margin-right: 35px;
  }
  .spotlight[data-layout=square] .entry:nth-child(2n+1),
  .concierge[data-layout=square] .entry:nth-child(2n+1),
  .news_list[data-layout=square] .entry:nth-child(2n+1),
  .contest_list[data-layout=square] .entry:nth-child(2n+1),
  .job_list[data-layout=square] .entry:nth-child(2n+1),
  .seating_charts[data-layout=square] .entry:nth-child(2n+1),
  .offer_list[data-layout=square] .entry:nth-child(2n+1),
  #venues.index .list[data-layout=square] .entry:nth-child(2n+1) {
    clear: none;
    margin-left: 35px;
  }
  .spotlight[data-layout=square] .entry:nth-child(3n),
  .concierge[data-layout=square] .entry:nth-child(3n),
  .news_list[data-layout=square] .entry:nth-child(3n),
  .contest_list[data-layout=square] .entry:nth-child(3n),
  .job_list[data-layout=square] .entry:nth-child(3n),
  .seating_charts[data-layout=square] .entry:nth-child(3n),
  .offer_list[data-layout=square] .entry:nth-child(3n),
  #venues.index .list[data-layout=square] .entry:nth-child(3n) {
    margin-right: 0px;
  }
  .spotlight[data-layout=square] .entry:nth-child(3n+1),
  .concierge[data-layout=square] .entry:nth-child(3n+1),
  .news_list[data-layout=square] .entry:nth-child(3n+1),
  .contest_list[data-layout=square] .entry:nth-child(3n+1),
  .job_list[data-layout=square] .entry:nth-child(3n+1),
  .seating_charts[data-layout=square] .entry:nth-child(3n+1),
  .offer_list[data-layout=square] .entry:nth-child(3n+1),
  #venues.index .list[data-layout=square] .entry:nth-child(3n+1) {
    clear: left;
    margin-left: 0px;
  }
}

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

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

/* ----------------------------------------------------------------------------
= Showtime Homepage Overlay
----------------------------------------------------------------------------- */
#overlay_container {
  display: none;
  padding: 100px 0 0;
  max-height: calc(100vh - 20px);
  overflow-x: hidden;
  overflow-y: auto;
}
#overlay_container .close-overlay {
  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: 700px) {
  #overlay_container .close-overlay {
    right: 0;
  }
}
#overlay_container a,
#overlay_container a:link,
#overlay_container a:visited {
  position: relative;
  display: block;
  z-index: 10;
  max-width: 1000px;
  height: auto;
}
#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 {
  width: 100%;
  padding: 10px 0;
  color: #fff;
  background: #000;
  font: 400 20px/140% "Roboto Slab", serif;
  line-height: 25px;
  cursor: pointer;
  text-align: center;
}
.dontshow-overlay:hover {
  color: #fff;
  background: #333;
}

/* ----------------------------------------------------------------------------
= Homepage items and layout
----------------------------------------------------------------------------- */
body.home {
  background: #f6f6f6 url("../images/svg/bg_events.svg") no-repeat;
  background-position: 0px 165px;
}
@media screen and (max-width: 1024px) {
  body.home {
    background-position: 0px 80px;
  }
}
@media screen and (max-width: 700px) {
  body.home {
    background-position: 0px 60px;
  }
}
body.home #content {
  max-width: 1220px;
  padding: 0px 20px;
  margin-top: -5px;
}
@media screen and (max-width: 870px) {
  body.home #content {
    padding: 0px;
    margin-top: 0px;
  }
}
body.home .full .full_column {
  background: transparent;
  box-shadow: none;
}
@media screen and (max-width: 1350px) {
  body.home .full .full_column {
    width: 100%;
  }
}
@media screen and (max-width: 1080px) {
  body.home .full .full_column {
    margin-top: 190px;
  }
}
@media screen and (max-width: 1060px) {
  body.home .full .full_column {
    margin-top: 170px;
  }
}
@media screen and (max-width: 1024px) {
  body.home .full .full_column {
    margin-top: 105px;
  }
}
@media screen and (max-width: 870px) {
  body.home .full .full_column {
    margin-top: 80px;
  }
}
@media screen and (max-width: 500px) {
  body.home .full .full_column {
    margin-top: 60px;
  }
}
body.home .breadcrumbs {
  display: none;
}

body.home .primary_event {
  margin-bottom: 85px;
}
@media screen and (max-width: 1000px) {
  body.home .primary_event {
    background: white;
    margin-top: 0px;
    box-shadow: 0 9px 14px 0 rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 870px) {
  body.home .primary_event {
    margin-bottom: 40px;
  }
}
body.home .primary_event .thumb {
  display: none;
}
body.home .primary_event .thumb_big {
  display: block;
  width: 100%;
}
body.home .primary_event .thumb_big img {
  width: 100%;
}
body.home .primary_event .info {
  position: relative;
}
@media screen and (max-width: 1080px) {
  body.home .primary_event .info {
    margin: 0px 20px;
  }
}
@media screen and (max-width: 1000px) {
  body.home .primary_event .info {
    margin: 0px 0px 0px 10px;
  }
}
@media screen and (max-width: 700px) {
  body.home .primary_event .info {
    margin: 0px;
  }
}
body.home .primary_event .m-date__year {
  display: none;
}
body.home .primary_event .date.date-big {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  /*&:after {
  	position: absolute;
  	content: ' ';
  	width: 120px;
  	height: 103px;
  	left: 0px;
  	top: -55px;
  	background: url('../images/svg/primary_circle.svg') no-repeat;
  	background-position: center center;
  	z-index: -1;
  }*/
}
@media screen and (max-width: 1200px) {
  body.home .primary_event .date.date-big {
    top: -9px;
  }
  body.home .primary_event .date.date-big:after {
    width: 90px;
    background-size: contain;
    top: -36px;
    left: 20px;
  }
}
@media screen and (max-width: 600px) {
  body.home .primary_event .date.date-big {
    display: none;
  }
}
body.home .primary_event .date.date-big .m-date__month {
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 20px;
  color: #0069aa;
  letter-spacing: 6px;
  text-align: center;
  line-height: 16px;
  text-transform: uppercase;
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
body.home .primary_event .date.date-big .m-date__day,
body.home .primary_event .date.date-big .m-date__separator {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 61px;
  color: #231f20;
  letter-spacing: 0;
  text-align: center;
  line-height: 61px;
}
@media screen and (max-width: 1200px) {
  body.home .primary_event .date.date-big .m-date__day,
  body.home .primary_event .date.date-big .m-date__separator {
    font-size: 49px;
  }
}
body.home .primary_event .date.date-big .m-date__singleDate {
  position: relative;
  width: 120px;
  height: 96px;
  display: inline-block;
}
@media screen and (max-width: 1200px) {
  body.home .primary_event .date.date-big .m-date__singleDate {
    height: 93px;
    margin-top: -8px;
    left: 5px;
  }
}
body.home .primary_event .date.date-big .m-date__singleDate .m-date__month {
  margin-left: 4px;
}
body.home .primary_event .date.date-big .m-date__singleDate .m-date__day {
  top: 20px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  z-index: 2;
  left: 50%;
}
body.home .primary_event .date.date-big .m-date__rangeFirst {
  position: relative;
  width: auto;
  height: auto;
  display: inline-block;
  margin-top: 15px;
}
body.home .primary_event .date.date-big .m-date__rangeFirst .m-date__day {
  font-size: 40px;
  position: relative;
  display: inline-block;
  width: 47px;
  text-align: right;
}
@media screen and (max-width: 1200px) {
  body.home .primary_event .date.date-big .m-date__rangeFirst .m-date__day {
    font-size: 35px;
    width: 52px;
    line-height: 54px;
  }
}
body.home .primary_event .date.date-big .m-date__rangeLast {
  position: relative;
  width: auto;
  height: 96px;
  display: inline-block;
  margin-top: 15px;
}
body.home .primary_event .date.date-big .m-date__rangeLast .m-date__day {
  font-size: 40px;
  position: relative;
  display: inline-block;
  width: 47px;
  text-align: left;
}
@media screen and (max-width: 1200px) {
  body.home .primary_event .date.date-big .m-date__rangeLast .m-date__day {
    font-size: 35px;
    width: 52px;
    line-height: 54px;
  }
}
body.home .primary_event .date.date-big .m-date__rangeLast .m-date__month {
  position: absolute;
  bottom: 20px;
  width: 120px;
  left: -13px;
}
@media screen and (max-width: 1080px) {
  body.home .primary_event .date.date-big .m-date__rangeLast .m-date__month {
    bottom: 26px;
  }
}
body.home .primary_event .date.date-big .m-date__separator {
  position: relative;
  width: auto;
  height: auto;
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  top: -5px;
  font-size: 32px;
}
@media screen and (max-width: 1200px) {
  body.home .primary_event .date.date-big.month-range {
    left: 5px;
  }
  body.home .primary_event .date.date-big.month-range:after {
    left: 15px;
  }
}
body.home .primary_event .date.date-big.month-range .m-date__rangeFirst .m-date__month {
  width: 60px;
  position: absolute;
  left: 0px;
  text-align: center;
  bottom: -16px;
  transform: none;
  -webkit-transform: none;
  font-size: 17px;
}
body.home .primary_event .date.date-big.month-range .m-date__rangeFirst .m-date__day {
  text-align: center;
}
body.home .primary_event .date.date-big.month-range .m-date__rangeLast .m-date__month {
  width: 60px;
  position: absolute;
  right: 0px;
  text-align: center;
  left: auto;
  transform: none;
  -webkit-transform: none;
  font-size: 17px;
}
@media screen and (max-width: 1080px) {
  body.home .primary_event .date.date-big.month-range .m-date__rangeLast .m-date__month {
    right: auto;
    left: auto;
  }
}
body.home .primary_event .date.date-big.month-range .m-date__rangeLast .m-date__day {
  text-align: center;
}
@media screen and (max-width: 1080px) {
  body.home .primary_event .date.date-big.month-range .m-date__separator {
    margin-left: 0px;
    margin-right: 0px;
  }
}
body.home .primary_event .date.date-small {
  display: none;
  text-transform: uppercase;
  position: relative;
  z-index: 60;
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 20px;
  color: #231f20;
  letter-spacing: 4.8px;
  line-height: 20px;
  margin-bottom: 35px;
  margin-top: 15px;
  margin-left: 20px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
@media screen and (max-width: 600px) {
  body.home .primary_event .date.date-small {
    display: block;
  }
}
body.home .primary_event .date.date-small .m-date__singleDate .m-date__month {
  margin-right: -6px;
}
body.home .primary_event .date.date-small span.m-date__month {
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 20px;
  color: #231f20;
  letter-spacing: 4.8px;
  line-height: 20px;
  margin-right: -6px;
}
@media screen and (max-width: 400px) {
  body.home .primary_event .date.date-small span.m-date__month {
    font-size: 16px;
  }
}
body.home .primary_event .date.date-small span.m-date__day,
body.home .primary_event .date.date-small span.m-date__separator {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 20px;
  color: #0069aa;
  letter-spacing: 4.8px;
  line-height: 20px;
  margin-left: 4px;
  margin-right: 2px;
}
@media screen and (max-width: 400px) {
  body.home .primary_event .date.date-small span.m-date__day,
  body.home .primary_event .date.date-small span.m-date__separator {
    font-size: 16px;
  }
}
body.home .primary_event .date.date-small:after {
  width: 55px;
  height: 11px;
  content: " ";
  position: absolute;
  left: 0px;
  bottom: -18px;
  z-index: -1;
  background: url("../images/svg/circles.svg") no-repeat;
  display: block;
}
@media screen and (max-width: 870px) {
  body.home .primary_event .date.date-small:after {
    bottom: -15px;
  }
}
body.home .primary_event .title_wrapper {
  width: 100%;
  padding-left: 170px;
  padding-right: 230px;
}
@media screen and (max-width: 1000px) {
  body.home .primary_event .title_wrapper {
    padding-right: 30px;
  }
}
@media screen and (max-width: 600px) {
  body.home .primary_event .title_wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body.home .primary_event .title_wrapper .title a {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 61px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 61px;
  margin-bottom: 10px;
  margin-top: 10px;
  display: inline-block;
}
body.home .primary_event .title_wrapper .title a:hover {
  color: #0069aa;
}
@media screen and (max-width: 1200px) {
  body.home .primary_event .title_wrapper .title a {
    font-size: 49px;
    letter-spacing: 0;
    line-height: 49px;
    margin-top: 20px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 600px) {
  body.home .primary_event .title_wrapper .title a {
    font-size: 31px;
    letter-spacing: 0;
    line-height: 31px;
    margin-top: 0px;
    margin-bottom: 5px;
  }
}
body.home .primary_event .title_wrapper .tagline {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 25px;
  color: #231f20;
  letter-spacing: 0.5px;
  line-height: 22px;
}
@media screen and (max-width: 1200px) {
  body.home .primary_event .title_wrapper .tagline {
    font-size: 22px;
    letter-spacing: 0.5px;
    line-height: 30px;
  }
}
@media screen and (max-width: 1000px) {
  body.home .primary_event .title_wrapper .tagline {
    font-size: 20px;
    letter-spacing: 0.5px;
    line-height: 30px;
  }
}
body.home .primary_event .button_wrapper {
  position: absolute;
  right: 11px;
  top: 16px;
  height: 96px;
}
@media screen and (max-width: 1000px) {
  body.home .primary_event .button_wrapper {
    position: initial;
    width: 100%;
    height: 73px;
    margin-top: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 1000px) {
  body.home .primary_event .button_wrapper {
    padding-right: 15px;
    height: 50px;
    margin-top: 55px;
  }
}
body.home .primary_event .buttons {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1000px) {
  body.home .primary_event .buttons {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
body.home .primary_event .buttons a.more {
  padding-left: 15px;
  margin-top: 10px;
}
@media screen and (max-width: 1000px) {
  body.home .primary_event .buttons a.more {
    padding-left: 170px;
    padding-top: 9px;
  }
}
@media screen and (max-width: 1000px) {
  body.home .primary_event .buttons a.more {
    padding-left: 20px;
    padding-top: 0px;
  }
}
body.home .primary_event .buttons a.tickets,
body.home .primary_event .buttons span.tickets {
  font-size: 20px !important;
  padding: 18px 66px 18px 15px !important;
}
@media screen and (max-width: 1000px) {
  body.home .primary_event .buttons a.tickets,
  body.home .primary_event .buttons span.tickets {
    font-size: 16px !important;
    padding: 9px 66px 9px 15px !important;
  }
}
body.home .primary_event .buttons a.tickets:before,
body.home .primary_event .buttons span.tickets:before {
  width: 50px !important;
  height: 50px !important;
}
@media screen and (max-width: 1000px) {
  body.home .primary_event .buttons a.tickets:before,
  body.home .primary_event .buttons span.tickets:before {
    width: 30px !important;
    height: 30px !important;
  }
}
body.home .primary_event .buttons a.tickets:after,
body.home .primary_event .buttons span.tickets:after {
  top: 19px !important;
  background: url("../images/svg/arrow-ticket-long.svg") no-repeat !important;
  width: 41px !important;
  right: 8px !important;
}
@media screen and (max-width: 1000px) {
  body.home .primary_event .buttons a.tickets:after,
  body.home .primary_event .buttons span.tickets:after {
    top: 9px !important;
    background: url("../images/svg/arrow_ticket.svg") no-repeat !important;
    width: 35px !important;
    right: 20px !important;
  }
}
body.home .primary_event .buttons a.tickets:hover:after,
body.home .primary_event .buttons span.tickets:hover:after {
  right: 0px !important;
}
@media screen and (max-width: 1000px) {
  body.home .primary_event .buttons a.tickets:hover:after,
  body.home .primary_event .buttons span.tickets:hover:after {
    right: 10px !important;
  }
}

body.home .home-slideshow {
  max-height: none;
  margin-bottom: 85px;
}
body.home .home-slideshow .rsLink {
  position: absolute;
}
@media screen and (max-width: 1000px) {
  body.home .home-slideshow {
    background: white;
    margin-top: 0px;
    box-shadow: 0 9px 14px 0 rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 870px) {
  body.home .home-slideshow {
    margin-bottom: 40px;
  }
}
body.home .home-slideshow .rsDefault.rsFullWidth:after {
  display: none;
}
body.home .home-slideshow .rsDefault .rsGCaption {
  position: relative;
  clear: both;
}
body.home .home-slideshow .rsDefault .rsGCaption .rsInfo {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
}
@media screen and (max-width: 1000px) {
  body.home .home-slideshow .rsDefault .rsGCaption .rsInfo {
    padding-right: 20px;
  }
}
@media screen and (max-width: 600px) {
  body.home .home-slideshow .rsDefault .rsGCaption .rsInfo {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body.home .home-slideshow .rsDefault .rsGCaption .rsInfo h3 {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 61px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 61px;
  margin-bottom: 10px;
  margin-top: 10px;
  display: inline-block;
  text-align: left;
  width: 100%;
  padding-top: 20px;
}
@media screen and (max-width: 1000px) {
  body.home .home-slideshow .rsDefault .rsGCaption .rsInfo h3 {
    font-size: 49px;
    letter-spacing: 0;
    line-height: 49px;
    margin-top: 0px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 600px) {
  body.home .home-slideshow .rsDefault .rsGCaption .rsInfo h3 {
    font-size: 31px;
    letter-spacing: 0;
    line-height: 31px;
    margin-top: 0px;
    margin-bottom: 15px;
    padding-top: 15px;
  }
}

body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent {
  width: 730px;
  height: 435px;
  padding: 0px;
  margin-bottom: 75px;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .eventItem {
  background: transparent;
  box-shadow: none;
  padding-bottom: 0px;
  padding: 0px;
  margin: 0px;
  overflow: hidden;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .eventItem:after {
  display: none;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .eventItem:hover .button_wrapper {
  right: 0px;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .eventItem:hover .buttons {
  opacity: 1;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .thumb {
  bottom: auto;
  top: 0px;
  width: 100%;
  left: 0px;
  margin: 0px;
  padding: 0px;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .info {
  position: absolute;
  bottom: 0px;
  width: 100%;
  min-height: 98px;
  background: rgba(246, 246, 246, 0.7);
  padding-bottom: 0px;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .date.date-big {
  position: absolute;
  top: -13px;
  left: 0px;
  z-index: 1;
  margin-bottom: 0px;
  /*&:after {
  	position: absolute;
  	content: ' ';
  	height: 103px;
  	width: 90px;
  	top: -34px;
  	left: 0px;
  	background: url('../images/svg/primary_circle.svg') no-repeat;
  	background-size: contain;
  	background-position: center center;
  	z-index: -1;
  }*/
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .date.date-big .m-date__month {
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 20px;
  color: #0069aa;
  letter-spacing: 6px;
  text-align: center;
  line-height: 20px;
  text-transform: uppercase;
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .date.date-big .m-date__day,
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .date.date-big .m-date__separator {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 49px;
  color: #231f20;
  letter-spacing: 0;
  text-align: center;
  line-height: 61px;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .date.date-big .m-date__singleDate {
  position: relative;
  width: 90px;
  height: 93px;
  margin-top: -8px;
  left: 0px;
  display: inline-block;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .date.date-big .m-date__singleDate .m-date__month {
  margin-left: 4px;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .date.date-big .m-date__singleDate .m-date__day {
  top: 20px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
  z-index: 2;
  left: 50%;
  margin-left: 0px;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .date.date-big .m-date__rangeFirst {
  position: relative;
  width: auto;
  height: auto;
  display: inline-block;
  margin-top: 15px;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .date.date-big .m-date__rangeFirst .m-date__day {
  position: relative;
  display: inline-block;
  font-size: 31px;
  width: 32px;
  line-height: 54px;
  text-align: right;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .date.date-big .m-date__rangeLast {
  position: relative;
  width: auto;
  height: 96px;
  display: inline-block;
  margin-top: 15px;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .date.date-big .m-date__rangeLast .m-date__day {
  position: relative;
  display: inline-block;
  font-size: 31px;
  width: 32px;
  line-height: 54px;
  text-align: left;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .date.date-big .m-date__rangeLast .m-date__month {
  position: absolute;
  bottom: 31px;
  width: 120px;
  left: -7px;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .date.date-big .m-date__separator {
  position: relative;
  width: auto;
  height: auto;
  display: inline-block;
  margin-left: 0px;
  margin-right: 0px;
  top: -1px;
  font-size: 31px;
}
@media screen and (max-width: 1000px) {
  body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .date.date-big.month-range {
    left: 5px;
  }
  body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .date.date-big.month-range:after {
    left: 15px;
  }
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .date.date-big.month-range .m-date__rangeFirst .m-date__month {
  width: 45px;
  position: absolute;
  left: 0px;
  text-align: center;
  bottom: -11px;
  transform: none;
  -webkit-transform: none;
  font-size: 17px;
  letter-spacing: 3px;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .date.date-big.month-range .m-date__rangeFirst .m-date__day {
  text-align: right;
  margin-left: 0px;
  margin-right: 2px;
  width: 36px;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .date.date-big.month-range .m-date__rangeLast .m-date__month {
  width: 45px;
  position: absolute;
  right: -5px;
  text-align: right;
  left: auto;
  transform: none;
  -webkit-transform: none;
  font-size: 17px;
  letter-spacing: 3px;
}
@media screen and (max-width: 1000px) {
  body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .date.date-big.month-range .m-date__rangeLast .m-date__month {
    right: auto;
    left: auto;
  }
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .date.date-big.month-range .m-date__rangeLast .m-date__day {
  text-align: left;
  margin-left: 0px;
  margin-right: 2px;
  width: 36px;
}
@media screen and (max-width: 1000px) {
  body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .date.date-big.month-range .m-date__separator {
    margin-left: 0px;
    margin-right: 0px;
  }
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .title_wrapper {
  padding-left: 140px;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .title_wrapper .h3.title {
  font-size: 49px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 49px;
  margin-top: 18px;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .title_wrapper .h3.title a {
  font-size: 49px;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .title_wrapper .h3.title a:hover {
  color: #0069aa;
  text-decoration: none;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .title_wrapper .h4.tagline, body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .title_wrapper .sitemap .column > ul > li > a.tagline, .sitemap body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .title_wrapper .column > ul > li > a.tagline {
  font-size: 22px;
  color: #231f20;
  letter-spacing: 0.5px;
  line-height: 30px;
  margin-top: 1px;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .button_wrapper {
  position: absolute;
  width: 409px;
  height: 337px;
  right: -409px;
  top: 0px;
  z-index: 99;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .button_wrapper:after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 98;
  opacity: 0.93;
  background-image: linear-gradient(-180deg, #023e63 0%, #023e63 100%);
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 40% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 40% 100%);
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .eventItem .buttons {
  height: 100%;
  bottom: 0px;
  width: 100%;
  left: 0px;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 20px;
  padding-bottom: 40px;
  padding-left: 160px;
  z-index: 100;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  transition-delay: 0.3s;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .eventItem .buttons a.tickets,
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .eventItem .buttons span.tickets {
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 16px;
  color: white !important;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .eventItem .buttons a.tickets:after,
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .eventItem .buttons span.tickets:after {
  background: url("../images/svg/arrow-ticket-yellow-long.svg") no-repeat !important;
  width: 41px;
  top: 10px;
  right: 9px;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .eventItem .buttons a.tickets:before,
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .eventItem .buttons span.tickets:before {
  background: rgba(255, 255, 255, 0.1) !important;
  width: 50px;
  height: 50px;
  top: -8px;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .eventItem .buttons a.tickets:hover:after,
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .eventItem .buttons span.tickets:hover:after {
  right: 0px;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .eventItem .buttons a.more {
  position: relative;
  color: white;
  width: 167px;
  padding-left: 5px;
  margin-top: -5px;
}
body#pages.home .event_list.event_list_grid .secondary_event.secondary_event_desktop.eventItemWrapperEvent .eventItem .buttons a.more:hover {
  color: #5db65f;
}

@media screen and (min-width: 1251px) {
  body#pages.home .event_list.event_list_grid.featured_desktop.seven .eventItemWrapperEvent {
    margin-bottom: 75px;
  }
  body#pages.home .event_list.event_list_grid.featured_desktop.seven .eventItemWrapperEvent:nth-child(1), body#pages.home .event_list.event_list_grid.featured_desktop.seven .eventItemWrapperEvent:nth-child(3), body#pages.home .event_list.event_list_grid.featured_desktop.seven .eventItemWrapperEvent:nth-child(6) {
    clear: left;
    margin-left: 0px;
    margin-right: 17px;
  }
  body#pages.home .event_list.event_list_grid.featured_desktop.seven .eventItemWrapperEvent:nth-child(2), body#pages.home .event_list.event_list_grid.featured_desktop.seven .eventItemWrapperEvent:nth-child(5), body#pages.home .event_list.event_list_grid.featured_desktop.seven .eventItemWrapperEvent:nth-child(8) {
    clear: none;
    margin-left: 17px;
    margin-right: 0px;
  }
  body#pages.home .event_list.event_list_grid.featured_desktop.seven .eventItemWrapperEvent:nth-child(4), body#pages.home .event_list.event_list_grid.featured_desktop.seven .eventItemWrapperEvent:nth-child(7) {
    margin-left: 17px;
    margin-right: 17px;
    clear: none;
  }
  body#pages.home .event_list.event_list_grid.featured_desktop.seven .eventItemWrapperEvent:nth-child(2) {
    margin-left: 61px;
  }
}
@media screen and (min-width: 1251px) {
  body#pages.home .event_list.event_list_grid.featured_desktop.five .eventItemWrapperEvent {
    margin-bottom: 75px;
  }
  body#pages.home .event_list.event_list_grid.featured_desktop.five .eventItemWrapperEvent:nth-child(1), body#pages.home .event_list.event_list_grid.featured_desktop.five .eventItemWrapperEvent:nth-child(3), body#pages.home .event_list.event_list_grid.featured_desktop.five .eventItemWrapperEvent:nth-child(5) {
    clear: left;
    margin-left: 0px;
    margin-right: 17px;
  }
  body#pages.home .event_list.event_list_grid.featured_desktop.five .eventItemWrapperEvent:nth-child(2), body#pages.home .event_list.event_list_grid.featured_desktop.five .eventItemWrapperEvent:nth-child(4), body#pages.home .event_list.event_list_grid.featured_desktop.five .eventItemWrapperEvent:nth-child(7) {
    clear: none;
    margin-left: 17px;
    margin-right: 0px;
  }
  body#pages.home .event_list.event_list_grid.featured_desktop.five .eventItemWrapperEvent:nth-child(6) {
    margin-left: 17px;
    margin-right: 17px;
    clear: none;
  }
  body#pages.home .event_list.event_list_grid.featured_desktop.five .eventItemWrapperEvent:nth-child(2) {
    margin-left: 61px;
  }
  body#pages.home .event_list.event_list_grid.featured_desktop.five .eventItemWrapperEvent:nth-child(3) {
    margin-right: 61px;
  }
}

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

.featured_tablet {
  display: none;
}
@media screen and (max-width: 1250px) {
  .featured_tablet {
    display: block;
  }
}
@media screen and (max-width: 870px) {
  .featured_tablet {
    display: none;
  }
}

.featured_mobile {
  display: none;
  padding: 0px 10px;
}
@media screen and (max-width: 870px) {
  .featured_mobile {
    display: block;
  }
}

.secondary_tablet {
  display: none;
}
@media screen and (max-width: 1250px) {
  .secondary_tablet {
    display: block;
  }
  .secondary_tablet .eventItemWrapperEvent {
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
    clear: both !important;
  }
}
@media screen and (max-width: 870px) {
  .secondary_tablet {
    display: none;
  }
}

.secondary_mobile.event_list.event_list_grid {
  display: none;
}
@media screen and (max-width: 870px) {
  .secondary_mobile.event_list.event_list_grid {
    display: block;
  }
}
.secondary_mobile.event_list.event_list_grid .eventItem .h3.title {
  padding-left: 0px;
}
@media screen and (max-width: 650px) {
  .secondary_mobile.event_list.event_list_grid {
    width: 406px;
  }
  .secondary_mobile.event_list.event_list_grid .eventItemWrapperEvent:first-child {
    margin-bottom: 20px !important;
  }
  .secondary_mobile.event_list.event_list_grid .eventItemWrapperEvent {
    width: 385px;
  }
  .secondary_mobile.event_list.event_list_grid .eventItemWrapperEvent {
    width: 385px;
  }
}
@media screen and (max-width: 450px) {
  .secondary_mobile.event_list.event_list_grid {
    width: 320px;
  }
  .secondary_mobile.event_list.event_list_grid .eventItemWrapperEvent:first-child {
    margin-bottom: 20px !important;
  }
  .secondary_mobile.event_list.event_list_grid .eventItemWrapperEvent {
    width: 300px;
  }
  .secondary_mobile.event_list.event_list_grid .eventItemWrapperEvent {
    width: 300px;
  }
}

@media screen and (max-width: 1250px) {
  .homeeventbutton {
    width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 870px) {
  .homeeventbutton {
    width: 100%;
  }
}
.homeeventbutton a.gotoevents {
  width: 151px;
  margin-right: 0px;
  padding-bottom: 5px;
}
@media screen and (max-width: 1250px) {
  .homeeventbutton .load-more-wrapper {
    margin-right: 20px;
  }
}
@media screen and (max-width: 870px) {
  .homeeventbutton .load-more-wrapper {
    margin-top: 70px;
  }
}
.homeeventbutton .load-more-wrapper:hover span.btn-arrow-1 {
  right: 143px;
}
.homeeventbutton .load-more-wrapper:hover span.btn-arrow-2 {
  right: 129px;
}
.homeeventbutton .load-more-wrapper:hover span.btn-arrow-3 {
  right: 114px;
}
.homeeventbutton .load-more-wrapper:hover span.btn-arrow-4 {
  right: 99px;
}
@media screen and (max-width: 1250px) {
  .homeeventbutton.featured-4, .homeeventbutton.featured-2 {
    width: 837px;
  }
}
@media screen and (max-width: 870px) {
  .homeeventbutton.featured-4, .homeeventbutton.featured-2 {
    margin-top: 0px;
    width: 100%;
  }
}
.homeeventbutton.featured-4 .load-more-wrapper, .homeeventbutton.featured-2 .load-more-wrapper {
  margin-right: 100px;
}
@media screen and (max-width: 1250px) {
  .homeeventbutton.featured-4 .load-more-wrapper, .homeeventbutton.featured-2 .load-more-wrapper {
    margin-right: 20px;
  }
}
.link {
  position: relative;
}
.link ul.list {
  padding: 0;
}
.link ul.list li {
  padding-top: 2px;
  padding-bottom: 5px;
  padding-left: 0px;
}
@media screen and (max-width: 700px) {
  .link ul.list li {
    padding-left: 0px;
  }
}
.link ul.list li > span {
  display: block;
  position: relative;
  padding: 10px 0px 4px 50px;
  word-wrap: break-word;
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 20px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
.link ul.list li > span span {
  width: 50px;
}
.link ul.list li > span svg {
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0px;
  fill: #0069aa;
  z-index: 100;
}
.link ul.list li > span svg:after {
  content: " ";
  width: 10px;
  height: 8px;
  bottom: 0px;
  left: calc(50% - 5px);
  z-index: 90;
  background-image: linear-gradient(-225deg, #fbdf93 0%, #f5bb5a 100%);
}
.link ul.list li > a {
  display: inline-block;
  position: relative;
  padding: 10px 0px 10px 21px;
  word-wrap: break-word;
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 20px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 20px;
  z-index: 2;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  /*------------------------------------------------------------
           =Handles all Social Media icons for select social media urls
               -- Twitter | Facebook | Instagram | Pinterest
           ------------------------------------------------------------*/
}
.link ul.list li > a span {
  position: relative;
  left: -20px;
  top: 5px;
  width: 50px;
}
.link ul.list li > a span:after {
  position: absolute;
  content: " ";
  bottom: -1px;
  transform: translateY(-50%);
  left: calc(50% - 19px);
  z-index: 90;
  background: #5db65f;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transform: scale(0);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.link ul.list li > a svg {
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  position: relative;
  top: 0px;
  left: 0px;
  fill: #0069aa;
  z-index: 100;
}
.link ul.list li > a:hover {
  color: #0069aa;
}
.link ul.list li > a:hover span svg,
.link ul.list li > a:hover span svg g,
.link ul.list li > a:hover span svg g g,
.link ul.list li > a:hover span svg path {
  fill: #231f1e;
}
.link ul.list li > a:hover span:after {
  transform: scale(1);
}
.link ul.list li > a .link_icon .internal {
  display: block;
}
.link ul.list li > a .link_icon .external {
  display: none;
}
.link ul.list li > a[target=_blank] .link_icon .internal {
  display: none;
}
.link ul.list li > a[target=_blank] .link_icon .external {
  display: block;
}
.link ul.list li > a[href*=twitter] svg, .link ul.list li > a[href*=facebook] svg, .link ul.list li > a[href*=instagram] svg, .link ul.list li > a[href*=pinterest] svg {
  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 {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  position: absolute;
  top: 4px;
  left: 0px;
  display: inline-block;
  background: none;
  padding: 0;
  font-family: FontAwesome;
  font-size: 25px;
  font-weight: normal;
  font-style: normal;
  color: #231f20;
  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 {
  color: #0069aa;
}
.link ul.list li > a[href*=twitter]:before {
  content: "\f099";
}
.link ul.list li > a[href*=facebook]:before {
  content: "\f09a";
}
.link ul.list li > a[href*=instagram]:before {
  content: "\f16d";
}
.link ul.list li > a[href*=pinterest]:before {
  content: "\f0d2";
}
.link ul.list li > span .link_icon {
  display: none;
}
.link ul.list .description {
  padding-left: 54px;
}
.link ul.list .description ul {
  margin-top: 20px;
  margin-bottom: 10px;
}
.link ul.list .description ul li {
  padding-left: 30px;
}
.link ul.list .description ol li {
  padding-left: 30px;
}
.link ul.list .description p,
.link ul.list .description li {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 16px;
  color: #231f20;
  letter-spacing: 0.5px;
  line-height: 25.6px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
.link ul.list .description p {
  margin-top: 0;
  margin-bottom: 0px;
}
.link ul.list .description ul li:before {
  top: 7px;
}
.link ul.list .description ul li:after {
  top: 11px;
}
.link ul.list .description ol li:before {
  top: 7px;
  font-size: 17px;
}
.link ul.list .description ol li:after {
  top: 21px;
}

/* ----------------------------------------------------------------------------
= FAQ Accordion
----------------------------------------------------------------------------- */
.faq {
  position: relative;
  padding: 0px;
}
.faq .faq_item_wrapper {
  border: 1px solid white;
  margin-bottom: 10px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.faq .faq_item_wrapper.is-opened {
  border-color: #0069aa;
}
.faq .faq_question {
  position: relative;
  overflow: auto;
  margin: 0;
  padding: 0px;
  cursor: pointer;
  background-image: linear-gradient(45deg, #03304c 0%, #0069aa 86%);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
.faq .faq_question > a {
  text-decoration: none !important;
}
.faq .faq_question:before, .faq .faq_question:after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 25px;
  z-index: 61;
  width: 3px;
  height: 20px;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  transform: translate(-50%, -50%);
  background: #fff;
}
.faq .faq_question:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq .faq_question p {
  margin: 0;
  padding: 25px 10px 25px 73px;
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 20px;
  z-index: 60;
  position: relative;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
.faq .faq_question p:before {
  width: 2px;
  height: calc(100% - 32px);
  background: white;
  opacity: 0.4;
  left: 50px;
  top: 16px;
  position: absolute;
  z-index: 61;
  content: "";
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
}
.faq .faq_question p:after {
  content: " ";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-230deg, #022b4c 0%, rgba(0, 67, 120, 0.3) 100%);
  z-index: -1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.faq .faq_question:hover p {
  background-image: linear-gradient(45deg, #03304c 0%, #0069aa 86%);
}
.faq .faq_question:hover p:after {
  opacity: 0;
}
.faq .faq_question.active, .faq .faq_question.open {
  background: transparent;
}
.faq .faq_question.active:after, .faq .faq_question.open:after {
  background: #313131;
}
.faq .faq_question.active:before, .faq .faq_question.open:before {
  opacity: 0;
}
.faq .faq_question.active p, .faq .faq_question.open p {
  color: #313131;
}
.faq .faq_question.active p:after, .faq .faq_question.open p:after {
  opacity: 0;
}
.faq .faq_question.active p:before, .faq .faq_question.open p:before {
  background: #e2e2e2;
}
.faq .faq_question.active:hover:after, .faq .faq_question.active:hover:before, .faq .faq_question.open:hover:after, .faq .faq_question.open:hover:before {
  background: #0069aa;
}
.faq .faq_question.active:hover p, .faq .faq_question.open:hover p {
  color: #0069aa;
  background: transparent;
}
.faq .faq_answer {
  display: none;
  padding: 0px;
  margin: 0px;
  margin-top: -11px;
  margin-bottom: 10px;
  padding: 0px 15px 15px 73px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
@media screen and (max-width: 700px) {
  .faq .faq_answer {
    padding-left: 20px;
  }
}
.faq .faq_answer p {
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-size: 18px;
}
.faq .faq_answer ul li,
.faq .faq_answer ol li {
  font-size: 18px;
  padding: 0px 0px 0px 35px;
}
.faq .faq_answer ul li:before {
  top: 10px;
}
.faq .faq_answer ol li:before {
  top: 10px;
  font-size: 17px;
}

/* ----------------------------------------------------------------------------
= Seating Charts Page styles - Listing page
----------------------------------------------------------------------------- */
.seating_charts a.button {
  margin-right: 10px;
}
@media screen and (max-width: 870px) {
  .seating_charts a.button {
    margin-bottom: 10px;
    display: block;
    float: none;
    max-width: 300px;
  }
}
@media screen and (max-width: 700px) {
  .seating_charts a.button {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 700px) {
  .seating_charts h3 {
    text-align: center;
  }
}
/* ----------------------------------------------------------------------------
=Venue Pages
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
= Map styles
----------------------------------------------------------------------------- */
.map_wrapper {
  width: 100%;
}
.map_wrapper iframe {
  width: 100%;
  height: 38.125vw;
}
@media screen and (max-width: 700px) {
  .map_wrapper iframe {
    min-height: 350px;
  }
}

#branding.map_wrapper {
  margin-bottom: -25px;
  background: white;
  padding-bottom: 20px;
}
@media screen and (max-width: 870px) {
  #branding.map_wrapper {
    margin-bottom: -40px;
  }
}

.map_holder {
  position: relative;
  display: block;
  width: 100%;
  height: 600px;
  margin-bottom: 25px;
}
@media screen and (min-width: 1350px) {
  .map_holder {
    height: 500px;
  }
}
@media screen and (max-width: 1024px) {
  .map_holder {
    height: 420px;
  }
}
@media screen and (max-width: 870px) {
  .map_holder {
    height: 370px;
  }
}
@media screen and (max-width: 700px) {
  .map_holder {
    height: 350px;
  }
}
@media screen and (max-width: 500px) {
  .map_holder {
    height: 350px;
  }
}
.map_holder .map {
  width: 100%;
  height: 100%;
}

.map_window .info {
  margin: 0 0 8px;
  padding: 0 0 4px;
}
.map_window .info h4 {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 31px;
  color: #231F20;
  letter-spacing: 0;
  line-height: 31px;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.map_window .info address {
  margin: 0;
  padding: 0;
  color: #000;
  font-size: 12px;
  line-height: 140%;
}
.map_window .desc {
  float: left;
  width: 120px;
}
.map_window .desc img {
  float: left;
  width: 120px;
  height: auto;
  margin: 0 15px 0 0;
}
.map_window .desc p {
  margin: 0;
  padding: 0;
}
.map_window .directions {
  display: none;
  padding: 6px 10px 8px 0px;
}
.map_window .directions label {
  display: block;
  margin: 0 0 8px;
  color: #000;
  font-size: 12px;
}
.map_window .directions input[type=text] {
  width: 200px;
  margin: 0 10px 8px 0px;
  padding: 4px 5px;
  color: #000;
  font-size: 12px;
}
.map_window .directions form button {
  display: block;
  float: right;
  padding: 7px 20px 7px 22px;
  font-size: 10px;
  margin-left: 10px;
}
.map_window .directions form button:before {
  display: none;
}

.map_control {
  zoom: 1;
  position: relative;
  z-index: 51;
  margin: 0 auto;
  line-height: 40px;
}
.map_control:before, .map_control:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: " ";
}
.map_control:after {
  clear: both;
}
.map_control .map_anchor {
  display: none;
}
.map_control label {
  display: block;
  float: left;
  height: 40px;
  padding: 0 15px;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  line-height: 40px;
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.map_control button {
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  float: left;
  margin: 0 2px 0 0;
  padding: 0 15px;
  color: #fff;
  border: none;
  background: none;
  font-family: "Roboto Slab", serif;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.map_control button.active {
  outline: none;
  background: #0069aa;
}
.map_control button.active:hover {
  color: white;
  outline: none;
}
.map_control button:hover {
  color: #0069aa;
  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: 0px;
  color: #666;
  font: 400 14px/40px "Roboto Slab", serif;
  letter-spacing: 0.06em;
}
.paging:before, .paging:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: " ";
}
.paging:after {
  clear: both;
}
@media screen and (max-width: 700px) {
  .paging {
    margin-top: 20px;
  }
}
.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 0px;
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 16px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 16px;
}
.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: " ";
}
.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;
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 16px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 20px;
  text-decoration: none;
}
.paging .pages strong:hover,
.paging .pages a:hover,
.paging .pages a:link:hover,
.paging .pages a:visited:hover {
  color: #0069aa;
}
.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.prev,
.paging .pages a.prev,
.paging .pages a:link.prev,
.paging .pages a:visited.prev {
  text-indent: -9999px;
  position: relative;
}
.paging .pages strong.prev:after,
.paging .pages a.prev:after,
.paging .pages a:link.prev:after,
.paging .pages a:visited.prev:after {
  content: " ";
  position: absolute;
  top: 3px;
  left: 0px;
  width: 26px;
  height: 15px;
  background: url("../images/svg/page-arrow.svg") no-repeat;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.paging .pages strong.prev:hover:after,
.paging .pages a.prev:hover:after,
.paging .pages a:link.prev:hover:after,
.paging .pages a:visited.prev:hover:after {
  background: url("../images/svg/page-arrow-hover.svg") no-repeat;
  left: -10px;
}
.paging .pages strong.next,
.paging .pages a.next,
.paging .pages a:link.next,
.paging .pages a:visited.next {
  text-indent: -9999px;
  position: relative;
}
.paging .pages strong.next:after,
.paging .pages a.next:after,
.paging .pages a:link.next:after,
.paging .pages a:visited.next:after {
  content: " ";
  position: absolute;
  top: 3px;
  left: 10px;
  width: 26px;
  height: 15px;
  background: url("../images/svg/page-arrow.svg") no-repeat;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  transform: rotate(180deg);
}
.paging .pages strong.next:hover:after,
.paging .pages a.next:hover:after,
.paging .pages a:link.next:hover:after,
.paging .pages a:visited.next:hover:after {
  background: url("../images/svg/page-arrow-hover.svg") no-repeat;
  left: 20px;
}
.paging .pages strong {
  position: relative;
  z-index: 1;
}
.paging .pages strong:after {
  content: " ";
  position: absolute;
  top: -5px;
  left: 5px;
  width: 30px;
  height: 30px;
  background: #5db65f;
  border-radius: 50%;
  z-index: -1;
}
.paging .pages strong:hover {
  color: #231f20;
}

/* ----------------------------------------------------------------------------
=Password Protected Page login form
----------------------------------------------------------------------------- */
.login-form {
  position: relative;
  text-align: center;
}
.login-form form {
  position: relative;
}
.login-form input[type=password] {
  position: relative;
  width: 80%;
  max-width: 300px;
  height: 46px;
  background: transparent;
  border: 1px solid #ddd;
  padding: 8px 10px;
  font-size: 15px;
  color: #ffffff;
  color: #333;
  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: #333;
}
.login-form input[type=password]:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #333;
}
.login-form input[type=password]::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #333;
}
.login-form input[type=password]:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #333;
}
.login-form input[type=submit] {
  display: block;
  border: none;
  margin: 25px auto;
}

/* ----------------------------------------------------------------------------
= Showtime TEAMS module
----------------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  #teams.detail .layout-no-slideshow #content {
    padding-top: 20px;
  }
}
#teams.detail .layout-no-slideshow #branding.spotlight_image {
  margin-top: 0px;
  margin-bottom: -40px;
}
@media screen and (max-width: 1350px) {
  #teams.detail .layout-no-slideshow #branding.spotlight_image {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 1024px) {
  #teams.detail .layout-no-slideshow #branding.spotlight_image {
    margin-top: -20px;
  }
}
#teams.detail .layout-no-slideshow #branding.spotlight_image:after {
  position: absolute;
  content: " ";
  bottom: 0px;
  left: 60px;
  width: calc(100% - 60px);
  background: white;
  height: 20px;
}
@media screen and (max-width: 1350px) {
  #teams.detail .layout-no-slideshow #branding.spotlight_image:after {
    display: none;
  }
}
@media screen and (max-width: 1350px) {
  #teams.detail .layout-no-slideshow #branding.spotlight_image .caption {
    bottom: 20px;
  }
}
@media screen and (max-width: 870px) {
  #teams.detail .layout-no-slideshow #branding.spotlight_image .caption {
    bottom: 0px;
  }
}
#teams.detail .layout-no-slideshow .rsDefault.rsFullWidth {
  margin-top: 0px;
  margin-bottom: -40px;
}
@media screen and (max-width: 1350px) {
  #teams.detail .layout-no-slideshow .rsDefault.rsFullWidth {
    margin-bottom: -20px;
  }
}
@media screen and (max-width: 1024px) {
  #teams.detail .layout-no-slideshow .rsDefault.rsFullWidth {
    margin-top: -20px;
  }
}
@media screen and (max-width: 700px) {
  #teams.detail .layout-no-slideshow .rsDefault.rsFullWidth {
    margin-top: -20px;
    margin-bottom: -20px;
  }
}
@media screen and (max-width: 500px) {
  #teams.detail .layout-no-slideshow .rsDefault.rsFullWidth {
    margin-top: -20px;
  }
}
#teams.detail .layout-no-slideshow .page_title h1 {
  margin-bottom: 3rem;
}
@media screen and (max-width: 1024px) {
  #teams.detail .layout-no-slideshow .news_detail_page:not(.has_branding) .news_detail {
    margin-top: 60px;
  }
}
@media screen and (max-width: 500px) {
  #teams.detail .layout-no-slideshow .news_detail_page:not(.has_branding) .news_detail {
    margin-top: 40px;
  }
}

/* ----------------------------------------------------------------------------
= News List
----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
= News Detail
----------------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  #news.detail .layout-no-slideshow #content {
    padding-top: 20px;
  }
}
#news.detail .layout-no-slideshow #branding.content_item {
  margin-bottom: 0px;
}
#news.detail .layout-no-slideshow #branding.spotlight_image {
  margin-top: 0px;
  margin-bottom: -40px;
}
@media screen and (max-width: 1350px) {
  #news.detail .layout-no-slideshow #branding.spotlight_image {
    margin-bottom: -20px;
  }
}
@media screen and (max-width: 1024px) {
  #news.detail .layout-no-slideshow #branding.spotlight_image {
    margin-top: -20px;
  }
}
#news.detail .layout-no-slideshow #branding.spotlight_image:after {
  position: absolute;
  content: " ";
  bottom: 0px;
  left: 60px;
  width: calc(100% - 60px);
  background: white;
  height: 20px;
}
@media screen and (max-width: 1350px) {
  #news.detail .layout-no-slideshow #branding.spotlight_image:after {
    display: none;
  }
}
@media screen and (max-width: 1350px) {
  #news.detail .layout-no-slideshow #branding.spotlight_image .caption {
    bottom: 20px;
  }
}
@media screen and (max-width: 870px) {
  #news.detail .layout-no-slideshow #branding.spotlight_image .caption {
    bottom: 0px;
  }
}
#news.detail .layout-no-slideshow .rsDefault.rsFullWidth {
  margin-top: 0px;
  margin-bottom: -40px;
}
@media screen and (max-width: 1350px) {
  #news.detail .layout-no-slideshow .rsDefault.rsFullWidth {
    margin-bottom: -20px;
  }
}
@media screen and (max-width: 1024px) {
  #news.detail .layout-no-slideshow .rsDefault.rsFullWidth {
    margin-top: -20px;
  }
}
@media screen and (max-width: 700px) {
  #news.detail .layout-no-slideshow .rsDefault.rsFullWidth {
    margin-top: -20px;
    margin-bottom: -20px;
  }
}
@media screen and (max-width: 500px) {
  #news.detail .layout-no-slideshow .rsDefault.rsFullWidth {
    margin-top: -20px;
  }
}

@media screen and (max-width: 1024px) {
  .news_detail_page:not(.has_branding) .news_detail {
    margin-top: 60px;
  }
}
@media screen and (max-width: 500px) {
  .news_detail_page:not(.has_branding) .news_detail {
    margin-top: 40px;
  }
}
.news_detail_page .breadcrumbs {
  padding-top: 20px;
}
.news_detail_page .full_column {
  padding-top: 0px;
}
.news_detail_page .backlink {
  position: relative;
  padding-left: 40px;
}
.news_detail_page .backlink a {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 16px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 16px;
}
.news_detail_page .backlink:after {
  content: " ";
  position: absolute;
  top: 2px;
  left: 0px;
  width: 26px;
  height: 15px;
  background: url("../images/svg/page-arrow.svg") no-repeat;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.news_detail_page .backlink:hover a {
  color: #0069aa;
}
.news_detail_page .backlink:hover:after {
  background: url("../images/svg/page-arrow-hover.svg") no-repeat;
  left: -10px;
}
.news_detail_page .news_thumb {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.news_detail_page h1 {
  margin-bottom: 10px;
}
.news_detail_page .title-inner-wrapper .date {
  text-transform: uppercase;
  position: relative;
  z-index: 60;
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 16px;
  color: #231f20;
  letter-spacing: 4.8px;
  line-height: 20px;
  margin-bottom: 66px;
  padding-top: 10px;
  margin-left: auto;
  margin-right: auto;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
@media screen and (max-width: 700px) {
  .news_detail_page .title-inner-wrapper .date {
    padding: 0px 20px 0px 20px;
    margin-top: 18px;
  }
}
.news_detail_page .title-inner-wrapper .date span.m-date__month {
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 16px;
  color: #231f20;
  letter-spacing: 4.8px;
  line-height: 20px;
  margin-right: -6px;
}
.news_detail_page .title-inner-wrapper .date span.m-date__day {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 16px;
  color: #0069aa;
  letter-spacing: 4.8px;
  line-height: 20px;
  margin-left: 4px;
  margin-right: 2px;
}
.news_detail_page .title-inner-wrapper .date span.m-date__year {
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 11px;
  color: #231f20;
  letter-spacing: 2px;
  line-height: 20px;
}
.news_detail_page .title-inner-wrapper .date:after {
  width: 55px;
  height: 11px;
  content: " ";
  position: absolute;
  left: 30px;
  bottom: -6px;
  z-index: -1;
  background: url("../images/svg/circles.svg") no-repeat;
  display: block;
}
@media screen and (max-width: 700px) {
  .news_detail_page .title-inner-wrapper .date:after {
    bottom: -12px;
    left: 20px;
  }
}

/* ----------------------------------------------------------------------------
= Event List
----------------------------------------------------------------------------- */
body#events {
  background-image: url("../images/svg/bg_events.svg");
  background-repeat: no-repeat;
  background-color: #f6f6f6;
  background-position: 0px 165px;
}
@media screen and (max-width: 1024px) {
  body#events {
    background-position: 0px 80px;
  }
}
@media screen and (max-width: 700px) {
  body#events {
    background-position: 0px 60px;
  }
}
body#events #content {
  max-width: 1220px;
  padding: 0px 20px;
}
@media screen and (max-width: 700px) {
  body#events #content {
    padding: 0px;
  }
}
body#events .full .full_column {
  background: transparent;
  box-shadow: none;
  padding-bottom: 0px;
}
@media screen and (max-width: 1350px) {
  body#events .full .full_column {
    width: 100%;
  }
}
body#events #venue_widgets_framework {
  margin-top: 50px;
}
body#events .breadcrumbs {
  display: none;
}

.event_list_header {
  width: 100%;
  background: transparent;
  border-bottom: 2px solid #231f20;
  color: #333;
  padding-bottom: 10px;
  padding-top: 45px;
  margin-bottom: 45px;
}
@media screen and (max-width: 1024px) {
  .event_list_header {
    padding-bottom: 20px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 700px) {
  .event_list_header {
    padding-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(100% - 20px);
  }
}
.event_list_header .overview {
  display: flex;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .event_list_header .overview {
    flex-wrap: wrap;
  }
}
.event_list_header h1 {
  flex-grow: 2;
  margin: 0;
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 61px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 61px;
}
@media screen and (max-width: 1024px) {
  .event_list_header h1 {
    width: 100%;
    margin-bottom: 19px;
    font-size: 2.44140625rem;
  }
}

.event_list_toggles {
  display: flex;
  align-self: center;
}
@media screen and (max-width: 1024px) {
  .event_list_toggles {
    position: absolute;
    top: 8px;
    right: 0px;
  }
}
@media screen and (max-width: 870px) {
  .event_list_toggles {
    display: none;
  }
}
.event_list_toggles .toggle {
  margin-left: 28px;
  color: #666666;
  position: relative;
}
.event_list_toggles .toggle:first-child {
  margin-left: 0px;
}
.event_list_toggles .toggle:after {
  content: "";
  position: absolute;
  background: #5db65f;
  width: 20px;
  height: 20px;
  left: -6px;
  bottom: -3px;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
  transform: scale(0);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.event_list_toggles .toggle svg g g {
  fill: #231f20;
}
.event_list_toggles .toggle:hover {
  cursor: pointer;
}
.event_list_toggles .toggle:hover svg g g {
  fill: #0069aa;
}
.event_list_toggles .toggle.calendar {
  display: none;
}
.event_list_toggles .toggle.is-active svg g g {
  fill: #0069aa;
}
.event_list_toggles .toggle.is-active:after {
  transform: scale(1);
}
.event_list_toggles span {
  display: block;
  text-align: left;
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 13px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 13px;
  margin-top: 7px;
  margin-left: 2px;
}
.event_list_toggles svg {
  fill: #999999;
}

.category-dropdown {
  position: relative;
  margin-right: 37px;
  align-self: center;
  z-index: 99;
}
.category-dropdown .select {
  display: block;
  position: relative;
  width: 283px;
  height: 50px;
  line-height: 50px;
  background: white;
  border: 1px solid #d6d6d6;
  margin: 0;
  padding: 0 0 0 20px;
  cursor: pointer;
  outline: none;
  z-index: 8;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.category-dropdown .select:after {
  content: " ";
  position: absolute;
  right: 49px;
  top: 10px;
  background: #d6d6d6;
  width: 1px;
  height: 30px;
}
.category-dropdown .select:hover {
  border: 1px solid #231f20;
}
.category-dropdown .select .select_text {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 16px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 16px;
}
.category-dropdown .select svg {
  float: right;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 18px;
  height: 11px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.category-dropdown .select svg g g {
  fill: #231f20;
}
.category-dropdown .select.is-active {
  border-color: #cccccc;
}
.category-dropdown .select.is-active svg {
  transform: rotate(180deg) translateY(-47%);
  transform-origin: 50% 0;
}
.category-dropdown .select.is-active svg g g {
  fill: #0069aa;
}
.category-dropdown .choices {
  display: none;
  position: absolute;
  top: 16px;
  left: 0;
  width: 100%;
  padding: 35px 10px 10px 10px;
  z-index: 7;
  background: #ffffff;
  border: 1px solid #d6d6d6;
  box-shadow: 0 9px 14px 0 rgba(0, 0, 0, 0.1);
}
.category-dropdown .choices.is-active {
  display: block;
}
.category-dropdown .choices ul {
  padding: 8px 0px;
}
.category-dropdown .choices li {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.category-dropdown .choices li span {
  display: block;
  padding: 0px 10px;
  font-family: "Rubik", serif;
  font-weight: 300;
  font-size: 14px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 35px;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.category-dropdown .choices li:hover {
  background: #5db65f;
}
.category-dropdown .choices li:hover span,
.category-dropdown .choices span.is-active {
  padding-left: 20px;
  background: #5db65f;
}
.category-dropdown .choices li:before {
  display: none;
}

.content_item .event_list .eventItemWrapperEvent {
  opacity: 1 !important;
  top: 0px !important;
}

.event_list {
  zoom: 1;
}
.event_list:not(.content_item) .eventItemWrapperEvent {
  opacity: 0;
  top: 30px;
  position: relative;
  -webkit-transition: opacity 1s ease-out, top 600ms ease-out;
  -moz-transition: opacity 1s ease-out, top 600ms ease-out;
  -o-transition: opacity 1s ease-out, top 600ms ease-out;
  transition: opacity 1s ease-out, top 600ms ease-out;
}
.event_list:not(.content_item) .eventItemWrapperEvent.animate {
  opacity: 1;
  top: 0;
}
.event_list:before, .event_list:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: " ";
}
.event_list:after {
  clear: both;
}
.event_list .eventItem {
  position: relative;
  max-width: 1000px;
  margin: 2px auto;
  padding: 25px 25px 20px;
  min-height: 245px;
}
@media screen and (max-width: 870px) {
  .event_list .eventItem {
    padding: 25px 30px 15px;
    min-height: 216px;
  }
}
@media screen and (max-width: 700px) {
  .event_list .eventItem {
    padding: 16px 20px 15px 30px;
    min-height: 200px;
    margin: -6px auto;
  }
}
.event_list .eventItem:after {
  content: " ";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 10px;
  left: 10px;
  background: white;
  position: absolute;
  box-shadow: 0 9px 14px 0 rgba(0, 0, 0, 0.1);
  opacity: 1;
  visibility: visible;
  z-index: -1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.event_list .eventItem:hover:after {
  width: 100%;
  left: 0px;
  box-shadow: 0 9px 14px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 700px) {
  .event_list .eventItem:hover:after {
    width: calc(100% - 20px);
    left: 10px;
  }
}
.event_list .eventItem .thumb {
  float: left;
  width: 350px;
  height: 161px;
  z-index: 1;
  position: relative;
  margin-right: 30px;
}
.event_list .eventItem .thumb:after {
  content: "";
  position: absolute;
  left: 15px;
  top: 30px;
  width: calc(100% - 5px);
  height: calc(100% - 20px);
  background: #efefef;
  z-index: -1;
}
.event_list .eventItem .thumb img {
  max-width: 100%;
}
@media screen and (max-width: 870px) {
  .event_list .eventItem .thumb {
    position: absolute;
    width: 220px;
    height: 101px;
    left: 30px;
    top: 80px;
  }
}
@media screen and (max-width: 700px) {
  .event_list .eventItem .thumb {
    width: 110px;
    height: 51px;
    left: 20px;
    top: 20px;
  }
  .event_list .eventItem .thumb:after {
    width: 106px;
    height: 42px;
    left: 10px;
    top: 16px;
  }
}
.event_list .eventItem .info {
  float: left;
  min-height: 160px;
  max-width: calc(100% - 410px);
}
@media screen and (max-width: 870px) {
  .event_list .eventItem .info {
    float: none;
    min-height: 119px;
    width: 100%;
    max-width: none;
  }
}
.event_list .eventItem .h3.title {
  line-height: 31px;
}
@media screen and (max-width: 870px) {
  .event_list .eventItem .h3.title {
    line-height: 27px;
  }
}
@media screen and (max-width: 700px) {
  .event_list .eventItem .h3.title {
    padding-top: 76px;
    line-height: 24px;
  }
}
.event_list .eventItem .h3.title a,
.event_list .eventItem .h3.title span a {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 31px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 31px;
}
@media screen and (max-width: 870px) {
  .event_list .eventItem .h3.title a,
  .event_list .eventItem .h3.title span a {
    font-size: 25px;
    line-height: 27px;
  }
}
@media screen and (max-width: 700px) {
  .event_list .eventItem .h3.title a,
  .event_list .eventItem .h3.title span a {
    font-size: 20px;
    line-height: 24px;
  }
}
@media screen and (max-width: 870px) {
  .event_list .eventItem .h3 {
    padding-left: 255px;
  }
}
@media screen and (max-width: 700px) {
  .event_list .eventItem .h3 {
    padding-left: 0px;
  }
}
.event_list .eventItem .h3 .hoverline {
  background-image: linear-gradient(to right, rgb(35, 31, 32) 0%, rgb(35, 31, 32) 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  background-repeat: no-repeat;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.1% 0px;
}
.event_list .eventItem .h3:hover .hoverline {
  background-size: 100% 2px;
}
.event_list .eventItem .h4.tagline, .event_list .eventItem .sitemap .column > ul > li > a.tagline, .sitemap .event_list .eventItem .column > ul > li > a.tagline {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 20px;
  color: #231f20;
  letter-spacing: 0.5px;
  line-height: 30px;
  margin-top: 6px;
}
@media screen and (max-width: 870px) {
  .event_list .eventItem .h4.tagline, .event_list .eventItem .sitemap .column > ul > li > a.tagline, .sitemap .event_list .eventItem .column > ul > li > a.tagline {
    font-size: 16px;
    line-height: 18px;
    padding-left: 255px;
    margin-top: 3px;
  }
}
@media screen and (max-width: 700px) {
  .event_list .eventItem .h4.tagline, .event_list .eventItem .sitemap .column > ul > li > a.tagline, .sitemap .event_list .eventItem .column > ul > li > a.tagline {
    font-size: 16px;
    line-height: 20px;
    padding-left: 0px;
  }
}
.event_list .eventItem .meta {
  display: none;
}
.event_list .eventItem .date {
  text-transform: uppercase;
  position: relative;
  z-index: 60;
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 20px;
  color: #231f20;
  letter-spacing: 4.8px;
  line-height: 20px;
  margin-bottom: 35px;
  margin-top: 5px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
@media screen and (max-width: 870px) {
  .event_list .eventItem .date {
    margin-bottom: 21px;
  }
}
@media screen and (max-width: 700px) {
  .event_list .eventItem .date {
    left: 148px;
    position: absolute;
    margin-left: 0px;
    max-width: calc(100% - 176px);
  }
}
.event_list .eventItem .date .m-date__singleDate .span.m-date__month {
  margin-right: 0px;
}
.event_list .eventItem .date span.m-date__month {
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 20px;
  color: #231f20;
  letter-spacing: 4.8px;
  line-height: 20px;
}
@media screen and (max-width: 870px) {
  .event_list .eventItem .date span.m-date__month {
    font-size: 16px;
  }
}
@media screen and (max-width: 700px) {
  .event_list .eventItem .date span.m-date__month {
    font-size: 14px;
  }
}
.event_list .eventItem .date span.m-date__day,
.event_list .eventItem .date span.m-date__separator {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 20px;
  color: #0069aa;
  letter-spacing: 4.8px;
  line-height: 20px;
  margin-left: 4px;
  margin-right: 2px;
}
@media screen and (max-width: 870px) {
  .event_list .eventItem .date span.m-date__day,
  .event_list .eventItem .date span.m-date__separator {
    font-size: 16px;
  }
}
@media screen and (max-width: 700px) {
  .event_list .eventItem .date span.m-date__day,
  .event_list .eventItem .date span.m-date__separator {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .event_list .eventItem .date .span.m-date__separator {
    margin-left: -5px;
    margin-right: -5px;
  }
}
.event_list .eventItem .date span.m-date__year {
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 11px;
  color: #231f20;
  letter-spacing: 2px;
  line-height: 20px;
  display: none;
}
.event_list .eventItem .date:after {
  width: 55px;
  height: 11px;
  content: " ";
  position: absolute;
  left: 0px;
  bottom: -18px;
  z-index: -1;
  background: url("../images/svg/circles.svg") no-repeat;
  display: block;
}
@media screen and (max-width: 870px) {
  .event_list .eventItem .date:after {
    bottom: -15px;
  }
}
.event_list .eventItem .buttons {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-top: 10px;
}
@media screen and (max-width: 870px) {
  .event_list .eventItem .buttons {
    margin-left: 241px;
    width: calc(100% - 230px);
  }
}
@media screen and (max-width: 700px) {
  .event_list .eventItem .buttons {
    width: calc(100% + 5px);
    margin-left: 0px;
  }
}
.event_list .eventItem .buttons .more {
  position: absolute;
  left: 15px;
  top: 19px;
}
@media screen and (max-width: 700px) {
  .event_list .eventItem .buttons .more {
    left: 1px;
    margin-top: 1px;
  }
}
.event_list .eventItem .buttons span.tickets {
  margin-right: 15px !important;
}
.event_list .eventItem.no-thumb {
  padding: 38px 25px 0px 38px;
}
@media screen and (max-width: 870px) {
  .event_list .eventItem.no-thumb {
    padding: 30px 18px 0px 32px;
  }
}
@media screen and (max-width: 700px) {
  .event_list .eventItem.no-thumb {
    padding: 30px 18px 0px 30px;
  }
}
.event_list .eventItem.no-thumb:after {
  background: url("../images/svg/bg_event.svg") no-repeat;
  background-position: center center;
}
.event_list .eventItem.no-thumb .thumb {
  display: none;
}
.event_list .eventItem.no-thumb .info {
  float: none;
  min-height: 143px;
  max-width: none;
}
@media screen and (max-width: 870px) {
  .event_list .eventItem.no-thumb .info {
    min-height: 122px;
  }
}
@media screen and (max-width: 700px) {
  .event_list .eventItem.no-thumb .info {
    min-height: 100px;
  }
}
.event_list .eventItem.no-thumb .h3.title {
  padding-left: 0px;
}
@media screen and (max-width: 700px) {
  .event_list .eventItem.no-thumb .h3.title {
    padding-top: 54px;
  }
}
.event_list .eventItem.no-thumb .h3.title a,
.event_list .eventItem.no-thumb .h3.title a span {
  color: white;
}
@media screen and (max-width: 870px) {
  .event_list .eventItem.no-thumb .h3.title a,
  .event_list .eventItem.no-thumb .h3.title a span {
    padding-left: 0px;
  }
}
.event_list .eventItem.no-thumb .h3 .hoverline {
  background-image: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
}
.event_list .eventItem.no-thumb .h4.tagline, .event_list .eventItem.no-thumb .sitemap .column > ul > li > a.tagline, .sitemap .event_list .eventItem.no-thumb .column > ul > li > a.tagline {
  color: white;
}
@media screen and (max-width: 870px) {
  .event_list .eventItem.no-thumb .h4.tagline, .event_list .eventItem.no-thumb .sitemap .column > ul > li > a.tagline, .sitemap .event_list .eventItem.no-thumb .column > ul > li > a.tagline {
    padding-left: 0px;
  }
}
.event_list .eventItem.no-thumb .date {
  margin-top: 0px;
  color: white;
}
@media screen and (max-width: 870px) {
  .event_list .eventItem.no-thumb .date {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 700px) {
  .event_list .eventItem.no-thumb .date {
    left: 30px;
  }
}
.event_list .eventItem.no-thumb .date span {
  color: white;
}
.event_list .eventItem.no-thumb .date span.m-date__day,
.event_list .eventItem.no-thumb .date span.m-date__separator {
  color: #5db65f;
}
.event_list .eventItem.no-thumb .buttons {
  padding-bottom: 20px;
}
.event_list .eventItem.no-thumb .buttons a,
.event_list .eventItem.no-thumb .buttons span {
  color: white !important;
}
.event_list .eventItem.no-thumb .buttons a:after,
.event_list .eventItem.no-thumb .buttons span:after {
  background: url("../images/svg/arrow_ticket_yellow.svg") no-repeat !important;
}
.event_list .eventItem.no-thumb .buttons a:before,
.event_list .eventItem.no-thumb .buttons span:before {
  background: rgba(255, 255, 255, 0.1) !important;
}
.event_list .eventItem.no-thumb .buttons a.more {
  margin-left: -10px;
}
@media screen and (max-width: 700px) {
  .event_list .eventItem.no-thumb .buttons a.more {
    margin-left: -3px;
  }
}
.event_list .eventItem.no-thumb .buttons a.more:hover {
  color: #5db65f !important;
}
@media screen and (max-width: 870px) {
  .event_list .eventItem.no-thumb .buttons {
    margin-left: -3px;
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .event_list .eventItem.no-thumb .buttons {
    margin-left: 3px;
  }
}
@media screen and (max-width: 1250px) {
  .event_list.event_list_grid {
    width: 776px;
    margin: 0px auto;
  }
}
@media screen and (max-width: 870px) {
  .event_list.event_list_grid {
    width: 748px;
  }
}
@media screen and (max-width: 760px) {
  .event_list.event_list_grid {
    width: 641px;
  }
}
@media screen and (max-width: 650px) {
  .event_list.event_list_grid {
    width: 317px;
  }
}
.event_list.event_list_grid .eventItemWrapperEvent {
  float: left;
  width: 370px;
  height: 460px;
  margin: 0px 17px 40px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.event_list.event_list_grid .eventItemWrapperEvent:nth-child(3n+0) {
  margin-right: 0px;
}
.event_list.event_list_grid .eventItemWrapperEvent:nth-child(3n+1) {
  clear: left;
  margin-left: 0px;
  margin-right: 17px;
}
@media screen and (max-width: 870px) {
  .event_list.event_list_grid .eventItemWrapperEvent {
    width: 354px;
    height: 460px;
    margin: 20px 10px 50px !important;
  }
}
@media screen and (max-width: 760px) {
  .event_list.event_list_grid .eventItemWrapperEvent {
    width: 300px;
    height: 375px;
  }
}
@media screen and (max-width: 1250px) {
  .event_list.event_list_grid .eventItemWrapperEvent:nth-child(3n+0) {
    margin: 0px 17px 50px;
  }
  .event_list.event_list_grid .eventItemWrapperEvent:nth-child(3n+1) {
    margin: 0px 17px 50px;
    clear: none;
  }
  .event_list.event_list_grid .eventItemWrapperEvent:nth-child(2n+0) {
    margin-right: 0px;
  }
  .event_list.event_list_grid .eventItemWrapperEvent:nth-child(2n+1) {
    clear: left;
    margin-left: 0px;
    margin-right: 17px;
  }
}
.event_list.event_list_grid .eventItem {
  width: 100%;
  height: 100%;
  padding: 23px 10px;
  background: #ffffff;
  box-shadow: 0 9px 14px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.event_list.event_list_grid .eventItem:hover {
  margin-top: -20px;
}
@media screen and (max-width: 870px) {
  .event_list.event_list_grid .eventItem {
    padding-top: 19px;
  }
}
.event_list.event_list_grid .eventItem .info {
  padding: 0px 10px 10px;
  background: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 9;
  min-height: none;
  max-width: none;
}
.event_list.event_list_grid .eventItem .h3.title {
  line-height: 31px;
}
@media screen and (max-width: 760px) {
  .event_list.event_list_grid .eventItem .h3.title {
    line-height: 25px;
    padding-left: 0px;
    margin-top: 0px;
    padding-top: 0px;
  }
}
.event_list.event_list_grid .eventItem .h3.title a {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 31px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 31px;
}
@media screen and (max-width: 870px) {
  .event_list.event_list_grid .eventItem .h3.title a {
    padding-left: 0px;
  }
}
@media screen and (max-width: 760px) {
  .event_list.event_list_grid .eventItem .h3.title a {
    line-height: 25px;
    font-size: 25px;
  }
}
@media screen and (max-width: 870px) {
  .event_list.event_list_grid .eventItem .h4.tagline, .event_list.event_list_grid .eventItem .sitemap .column > ul > li > a.tagline, .sitemap .event_list.event_list_grid .eventItem .column > ul > li > a.tagline {
    padding-left: 0px;
    font-size: 20px;
    margin-top: 9px;
  }
}
@media screen and (max-width: 760px) {
  .event_list.event_list_grid .eventItem .h4.tagline, .event_list.event_list_grid .eventItem .sitemap .column > ul > li > a.tagline, .sitemap .event_list.event_list_grid .eventItem .column > ul > li > a.tagline {
    font-size: 16px;
    line-height: 16px;
    margin-top: 6px;
  }
}
.event_list.event_list_grid .eventItem .thumb {
  float: none;
  width: calc(100% - 20px);
  height: auto;
  left: 10px;
  position: absolute;
  bottom: 60px;
}
.event_list.event_list_grid .eventItem .thumb:after {
  display: none;
}
@media screen and (max-width: 870px) {
  .event_list.event_list_grid .eventItem .thumb {
    top: auto;
  }
}
.event_list.event_list_grid .eventItem .date {
  margin-bottom: 50px;
}
@media screen and (max-width: 870px) {
  .event_list.event_list_grid .eventItem .date span.m-date__month,
  .event_list.event_list_grid .eventItem .date span.m-date__day,
  .event_list.event_list_grid .eventItem .date span.m-date__separator {
    font-size: 20px;
  }
}
@media screen and (max-width: 760px) {
  .event_list.event_list_grid .eventItem .date {
    font-size: 16px;
    margin-bottom: 35px;
    position: relative;
    max-width: none;
    left: 0px;
  }
  .event_list.event_list_grid .eventItem .date span {
    font-size: 16px !important;
  }
}
.event_list.event_list_grid .eventItem .buttons {
  position: absolute;
  bottom: 3px;
  height: 60px;
  margin-top: 0px;
  width: calc(100% - 20px);
  left: 10px;
}
@media screen and (max-width: 870px) {
  .event_list.event_list_grid .eventItem .buttons {
    width: calc(100% - 6px);
    left: 3px;
    margin-left: 0px;
  }
}
.event_list.event_list_grid .eventItem .buttons .more {
  margin-top: 8px;
  left: 11px;
}
.event_list.event_list_grid .eventItem.no-thumb {
  background: #0069aa;
}
.event_list.event_list_grid .eventItem.no-thumb:after {
  background: url("../images/svg/bg_event_grid.svg") no-repeat;
  background-position: -14px -5px;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.event_list.event_list_grid .eventItem.no-thumb .info {
  background: none;
  max-width: none;
}
.event_list.event_list_grid .eventItem.no-thumb .h3.title {
  margin-top: 80px;
  padding-left: 10px;
}
@media screen and (max-width: 760px) {
  .event_list.event_list_grid .eventItem.no-thumb .h3.title {
    padding-left: 0px;
    margin-top: 60px;
  }
}
.event_list.event_list_grid .eventItem.no-thumb .h3.title a {
  color: white;
}
.event_list.event_list_grid .eventItem.no-thumb .h4, .event_list.event_list_grid .eventItem.no-thumb .sitemap .column > ul > li > a, .sitemap .event_list.event_list_grid .eventItem.no-thumb .column > ul > li > a {
  padding-left: 10px;
}
@media screen and (max-width: 760px) {
  .event_list.event_list_grid .eventItem.no-thumb .h4, .event_list.event_list_grid .eventItem.no-thumb .sitemap .column > ul > li > a, .sitemap .event_list.event_list_grid .eventItem.no-thumb .column > ul > li > a {
    padding-left: 0px;
  }
}
.event_list.event_list_grid .eventItem.no-thumb .buttons {
  z-index: 10;
  bottom: -5px;
}
.event_list.event_list_grid .eventItem.no-thumb .buttons a.more {
  margin-top: 0px;
  left: 22px;
}
@media screen and (max-width: 760px) {
  .event_list.event_list_grid .eventItem.no-thumb .buttons a.more {
    margin-top: -1px;
    left: 14px;
  }
}
@media screen and (max-width: 760px) {
  .event_list.event_list_grid .eventItem.no-thumb .buttons a.tickets:hover:after,
  .event_list.event_list_grid .eventItem.no-thumb .buttons span.tickets:hover:after {
    right: 5px !important;
  }
  .event_list.event_list_grid .eventItem.no-thumb .buttons a.tickets:hover:before,
  .event_list.event_list_grid .eventItem.no-thumb .buttons span.tickets:hover:before {
    left: 10px !important;
  }
}

.events.content_item .event_list .eventItem.no-thumb .info {
  position: relative;
  z-index: 9;
}
.events.content_item .event_list .eventItem.no-thumb:after {
  z-index: 1;
}
.events.content_item .event_list .eventItem.no-thumb .buttons {
  z-index: 9;
}
.events.content_item .event_list .eventItem {
  border-bottom: 1px solid #ddd;
}
.events.content_item .event_list .eventItem.no-thumb {
  border: none;
}
.events.content_item .event_list .eventItem .info {
  width: auto;
}

.event_list.content_item .eventItem.no-thumb .info {
  position: relative;
  z-index: 9;
}
.event_list.content_item .eventItem.no-thumb:after {
  z-index: 1;
}
.event_list.content_item .eventItem.no-thumb .buttons {
  z-index: 9;
}
.event_list.content_item .eventItem {
  border-bottom: 1px solid #ddd;
}
.event_list.content_item .eventItem.no-thumb {
  border: none;
}
.event_list.content_item .eventItem .info {
  width: auto;
}

.event_listing_page .load-more-wrapper {
  margin-bottom: 0px;
}

/* ----------------------------------------------------------------------------
= Event Detail
----------------------------------------------------------------------------- */
#events.detail #content #venue_widgets_framework {
  display: none;
}
#events.detail #venue_widgets_framework {
  margin: 50px auto;
}

#events.detail .layout-no-slideshow #content {
  padding-top: 20px;
}
#events.detail.edp_nomedia .event_detail {
  padding-top: 10px;
}
@media screen and (max-width: 1080px) {
  #events.detail.edp_nomedia .event_detail {
    padding-top: 30px;
  }
}
@media screen and (max-width: 500px) {
  #events.detail.edp_nomedia .event_detail {
    padding-top: 0px;
  }
}
#events.detail.edp_nomedia #content:after {
  height: 100%;
}

#events.detail .layout-no-slideshow .event_detail.has_branding #branding.slideshow {
  margin-top: -20px;
}
@media screen and (max-width: 1350px) {
  #events.detail .layout-no-slideshow .event_detail.has_branding #branding.slideshow {
    width: 100%;
    margin-left: 0px;
    margin-top: 0px;
  }
}
@media screen and (max-width: 870px) {
  #events.detail .layout-no-slideshow .event_detail.has_branding #branding.slideshow {
    width: 100%;
    margin-left: 0px;
    margin-top: 0px;
  }
}
@media screen and (max-width: 500px) {
  #events.detail .layout-no-slideshow .event_detail.has_branding #branding.slideshow {
    margin-top: -20px;
  }
}

#events.detail #content {
  position: relative;
  max-width: 1280px;
  padding: 0px 30px;
  margin-top: 185px;
}
@media screen and (max-width: 1350px) {
  #events.detail #content {
    width: calc(100% - 100px);
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1080px) {
  #events.detail #content {
    margin-top: 145px;
    width: 100%;
  }
}
@media screen and (max-width: 1060px) {
  #events.detail #content {
    margin-top: 125px;
  }
}
@media screen and (max-width: 1024px) {
  #events.detail #content {
    margin-top: 60px;
  }
}
@media screen and (max-width: 870px) {
  #events.detail #content {
    padding: 0px 0px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 500px) {
  #events.detail #content {
    margin-top: 60px;
  }
}
#events.detail #content:after {
  content: " ";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: calc(100% - 280px);
  background: white;
  box-shadow: 0 9px 14px 0 rgba(0, 0, 0, 0.1);
  visibility: visible;
  z-index: -1;
}
@media screen and (max-width: 870px) {
  #events.detail #content:after {
    height: 100%;
  }
}
#events.detail #content #branding.spotlight_image {
  position: relative;
}
#events.detail #content #branding.spotlight_image:after {
  position: absolute;
  content: " ";
  bottom: 0px;
  right: 0px;
  width: calc(100% - 335px);
  background: white;
  height: 20px;
}
@media screen and (max-width: 870px) {
  #events.detail #content #branding.spotlight_image:after {
    display: none;
  }
}

.event_detail {
  min-height: 600px;
  zoom: 1;
  position: relative;
}
.event_detail:before, .event_detail:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: " ";
}
.event_detail:after {
  clear: both;
}
.event_detail .event_heading {
  margin-top: -4px;
  margin-bottom: 60px;
}
.event_detail .event_heading h1.title {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 61px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 61px;
  margin-bottom: 12px;
}
@media screen and (max-width: 870px) {
  .event_detail .event_heading h1.title {
    font-size: 2.44140625rem;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 0px;
  }
}
.event_detail .event_heading .tagline {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 25px;
  color: #231f20;
  letter-spacing: 0.5px;
  line-height: 22px;
  margin-bottom: 0px;
}
@media screen and (max-width: 870px) {
  .event_detail .event_heading .tagline {
    padding-left: 20px;
    font-size: 20px;
  }
}
.event_detail .event_heading.below_branding {
  display: none;
}
@media screen and (max-width: 870px) {
  .event_detail .event_heading {
    display: none;
  }
}
.event_detail .event_heading.inside_sidebar {
  margin-bottom: 0px;
  margin-top: 0px;
}
@media screen and (max-width: 870px) {
  .event_detail .event_heading.inside_sidebar {
    display: block;
    margin-bottom: 10px;
  }
}
.event_detail .buttonWrapper .date {
  display: none;
}
.event_detail .buttonWrapper .title,
.event_detail .buttonWrapper .tagline {
  display: none;
}
@media screen and (max-width: 870px) {
  .event_detail .buttonWrapper .title,
  .event_detail .buttonWrapper .tagline {
    display: block;
  }
}
.event_detail .buttonWrapper h1.title {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 61px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 61px;
  margin-bottom: 12px;
}
@media screen and (max-width: 870px) {
  .event_detail .buttonWrapper h1.title {
    font-size: 2.44140625rem;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 700px) {
  .event_detail .buttonWrapper h1.title {
    line-height: 40px;
  }
}
.event_detail .buttonWrapper .tagline {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 25px;
  color: #231f20;
  letter-spacing: 0.5px;
  line-height: 22px;
  margin-bottom: 0px;
}
@media screen and (max-width: 870px) {
  .event_detail .buttonWrapper .tagline {
    padding-left: 20px;
    font-size: 20px;
  }
}
.event_detail .buttonWrapper .buttons {
  position: relative;
  padding: 50px 0px 30px;
}
@media screen and (max-width: 870px) {
  .event_detail .buttonWrapper .buttons {
    max-width: 300px;
  }
}
@media screen and (max-width: 500px) {
  .event_detail .buttonWrapper .buttons {
    max-width: 100%;
  }
}
.event_detail .buttonWrapper .buttons a,
.event_detail .buttonWrapper .buttons span {
  white-space: nowrap;
}
.event_detail .buttonWrapper .buttons svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  fill: #fff;
  display: none;
}
@media screen and (max-width: 870px) {
  .event_detail .faq {
    padding: 0px 20px;
  }
}

@media screen and (max-width: 870px) {
  .description_wrapper {
    padding: 0px 20px;
  }
}
.description_wrapper .description_inner h2 {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 39px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 39px;
  position: relative;
  margin-bottom: 30px;
}
.description_wrapper .description_inner h2:after {
  content: " ";
  position: absolute;
  bottom: -10px;
  left: 0px;
  width: 53px;
  height: 7px;
  background: url("../images/svg/circles.svg") no-repeat;
}
@media screen and (max-width: 870px) {
  .description_wrapper .description_inner h2 {
    font-size: 1.953125rem;
  }
}
.description_wrapper .read-more {
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 14px;
  color: #231f20;
  letter-spacing: 4.2px;
  line-height: 16px;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 1;
  margin-top: 30px;
  margin-bottom: 70px;
  padding-left: 10px;
}
.description_wrapper .read-more span {
  font-weight: 700;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  letter-spacing: 4.2px;
  text-transform: uppercase;
}
.description_wrapper .read-more:after {
  content: "";
  z-index: -1;
  position: absolute;
  top: -4px;
  left: 0px;
  background: url("../images/svg/edp_more.svg") no-repeat;
  width: 38px;
  height: 26px;
  opacity: 0.5;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.description_wrapper .read-more.less:after {
  transform: rotate(180deg);
  top: -7px;
  left: -4px;
}
.description_wrapper .read-more:hover {
  color: #0069aa;
  cursor: pointer;
}
.description_wrapper .read-more:hover span {
  color: #0069aa;
}
.description_wrapper .read-more:hover:after {
  opacity: 1;
}

.event_description {
  position: relative;
}
.description_wrapper.short-description .event_description:after, .event_description.is-opened:after {
  display: none;
}
.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: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff",GradientType=0 );
}

.event_showings {
  margin-bottom: 60px;
}
@media screen and (max-width: 870px) {
  .event_showings {
    padding: 0px 20px;
  }
}
.event_showings .list,
.event_showings .additional_showings {
  position: relative;
  list-style-type: none;
  font-family: "Rubik", serif;
  font-size: 15px;
}
.event_showings .list .listItem,
.event_showings .additional_showings .listItem {
  position: relative;
  border-bottom: 1px solid #e4e4e4;
  padding: 22px 0px 10px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.event_showings .list .listItem:first-child,
.event_showings .additional_showings .listItem:first-child {
  padding-top: 0px;
}
.event_showings .list .listItem-hasNoLink .eventDetailShowings__cell,
.event_showings .additional_showings .listItem-hasNoLink .eventDetailShowings__cell {
  width: 50%;
}
.event_showings .list .listItem:hover,
.event_showings .additional_showings .listItem:hover {
  border-color: #0069aa;
}
.event_showings .list .listItem:hover .cell > .m-date__singleDate,
.event_showings .additional_showings .listItem:hover .cell > .m-date__singleDate {
  padding-left: 20px;
}
.event_showings .list span.tickets,
.event_showings .additional_showings span.tickets {
  font-weight: 700;
  font-family: "Rubik", serif;
  font-size: 14px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 14px;
}
@media screen and (max-width: 700px) {
  .event_showings .list span.tickets,
  .event_showings .additional_showings span.tickets {
    position: absolute;
    float: none;
    right: 0px;
    top: 26px;
  }
}
.event_showings .list a,
.event_showings .list a:focus,
.event_showings .list a:visited,
.event_showings .additional_showings a,
.event_showings .additional_showings a:focus,
.event_showings .additional_showings a:visited {
  font-weight: 700;
  font-family: "Rubik", serif;
  font-size: 14px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 14px;
  position: relative;
  z-index: 5;
}
.event_showings .list a:after,
.event_showings .list a:focus:after,
.event_showings .list a:visited:after,
.event_showings .additional_showings a:after,
.event_showings .additional_showings a:focus:after,
.event_showings .additional_showings a:visited:after {
  content: " ";
  z-index: 5;
  position: absolute;
  bottom: -14px;
  right: 0px;
  width: 53px;
  height: 7px;
  background: url("../images/svg/circles.svg") no-repeat;
}
.event_showings .list a:before,
.event_showings .list a:focus:before,
.event_showings .list a:visited:before,
.event_showings .additional_showings a:before,
.event_showings .additional_showings a:focus:before,
.event_showings .additional_showings a:visited:before {
  z-index: 3;
  content: " ";
  position: absolute;
  bottom: -20px;
  right: 0px;
  width: 60px;
  height: 12px;
  background: white;
}
.event_showings .list a:hover,
.event_showings .list a:focus:hover,
.event_showings .list a:visited:hover,
.event_showings .additional_showings a:hover,
.event_showings .additional_showings a:focus:hover,
.event_showings .additional_showings a:visited:hover {
  color: #0069aa;
}
@media screen and (max-width: 700px) {
  .event_showings .list a,
  .event_showings .list a:focus,
  .event_showings .list a:visited,
  .event_showings .additional_showings a,
  .event_showings .additional_showings a:focus,
  .event_showings .additional_showings a:visited {
    position: absolute;
    float: none;
    right: 0px;
    top: 26px;
  }
}
.event_showings .cell {
  width: 20%;
  position: relative;
  float: left;
  display: inline-block;
  text-align: center;
}
.event_showings .cell:nth-child(1) {
  width: 60%;
  text-align: left;
}
.event_showings .cell:last-child {
  width: 40%;
  text-align: right;
}
.event_showings .cell .m-date__singleDate {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.event_showings .cell .m-date__month {
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 16px;
  color: #231f20;
  letter-spacing: 4.8px;
  line-height: 20px;
  text-transform: uppercase;
}
.event_showings .cell .m-date__day {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 16px;
  color: #0069aa;
  letter-spacing: 4.8px;
  line-height: 20px;
}
.event_showings .cell .m-date__year {
  display: none;
}
.event_showings .cell .m-date__weekday {
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 11px;
  color: #231f20;
  letter-spacing: 2px;
  line-height: 20px;
  text-transform: uppercase;
}
@media screen and (max-width: 700px) {
  .event_showings .cell .m-date__weekday {
    display: none;
  }
}
.event_showings .cell .m-date__time {
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 11px;
  color: #231f20;
  letter-spacing: 2px;
  line-height: 20px;
}
@media screen and (max-width: 700px) {
  .event_showings .cell .mobile-help {
    display: block;
    margin-top: 0px;
  }
}
.event_showings .cell .mobile-help .m-date__month,
.event_showings .cell .mobile-help .m-date__day,
.event_showings .cell .mobile-help .m-date__weekday {
  display: none;
}
@media screen and (max-width: 700px) {
  .event_showings .cell .mobile-help .m-date__weekday {
    display: inline-block;
  }
}
.event_showings .buttons svg {
  width: 27px;
  fill: #333;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  display: none;
}
.event_showings .additional_showings {
  display: none;
}
.event_showings .additional_showings .listItem:first-child {
  padding-top: 22px;
}
.event_showings .show-all-showings {
  font-family: "Rubik", serif;
  font-weight: 400;
  font-size: 14px;
  color: #231f20;
  letter-spacing: 4.2px;
  line-height: 16px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: relative;
  z-index: 1;
  margin-top: 27px;
  cursor: pointer;
  padding-left: 10px;
}
.event_showings .show-all-showings span {
  font-weight: 700;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  text-transform: uppercase;
  letter-spacing: 4.2px;
}
.event_showings .show-all-showings:after {
  content: "";
  z-index: -1;
  position: absolute;
  top: -4px;
  left: 0px;
  background: url("../images/svg/edp_more.svg") no-repeat;
  opacity: 0.5;
  width: 38px;
  height: 26px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.event_showings .show-all-showings:hover {
  color: #0069aa;
}
.event_showings .show-all-showings:hover span {
  color: #0069aa;
}
.event_showings .show-all-showings:hover:after {
  opacity: 1;
}
.event_showings .show-all-showings.is-opened:after {
  transform: rotate(180deg);
  top: -7px;
  left: -4px;
}

.eventDetailList {
  position: relative;
  font-family: "Rubik", serif;
  overflow: hidden;
  background: #f6f6f6;
  border: 1px solid #d6d6d6;
  padding: 0px 20px;
  margin-bottom: 50px;
}
.eventDetailList p {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 16px;
  color: #231f20;
  letter-spacing: 0.5px;
  line-height: 22px;
}
.eventDetailList a,
.eventDetailList a:focus {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 14px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 14px;
  position: relative;
  padding-left: 20px;
}
.eventDetailList a:after,
.eventDetailList a:focus:after {
  content: " ";
  position: absolute;
  left: 0px;
  top: 2px;
  width: 10px;
  height: 12px;
  background: url("../images/svg/edp-sidebar-link.svg") no-repeat;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.eventDetailList a:hover {
  color: #0069aa;
}
.eventDetailList a:hover:after {
  left: -10px;
}
.eventDetailList .item {
  list-style-type: none;
  border-top: 1px solid #d6d6d6;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 16px;
  color: #231f20;
  letter-spacing: 0.5px;
  line-height: 22px;
  position: relative;
  padding: 19px 0px;
}
.eventDetailList .item.sidebar_event_date {
  font-weight: 400;
}
.eventDetailList .item.sidebar_on_sale {
  display: none;
}
.eventDetailList .item:first-child {
  border-top: none;
}
.eventDetailList .item:before {
  display: none;
}
.eventDetailList .item p {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 16px;
  color: #231f20;
  letter-spacing: 0.5px;
  line-height: 22px;
  margin-bottom: 0px;
}
.eventDetailList .item .label {
  font-family: "Rubik", serif;
  font-weight: 700;
  font-size: 18px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 16px;
  display: block;
  margin-bottom: 6px;
}
.eventDetailList .item svg {
  position: absolute;
  top: 0px;
  left: 10px;
  fill: #5e5e5e;
  display: none;
}

/* 
 *  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;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-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: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing {
  cursor: url(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;
  box-sizing: content-box;
}

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

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

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  background-color: white;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  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;
  -moz-transition: opacity 0.6s;
  -o-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;
  -moz-transition: opacity 0.6s;
  -o-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%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-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;
  -moz-transition: opacity 0.2s;
  -o-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.index .full_column > .textarea {
  display: none;
}

#pages.index .sitemap-title {
  display: none;
}

.sitemap {
  position: relative;
  width: 100%;
  margin: 0px auto 40px;
  clear: both;
  zoom: 1;
}
.sitemap:before, .sitemap:after {
  display: block;
  visibility: hidden;
  height: 0;
  content: " ";
}
.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: " ";
}
.sitemap .column:after {
  clear: both;
}
@media screen and (min-width: 871px) {
  .sitemap .column {
    float: left;
    width: 50%;
  }
}
.sitemap .column ul {
  margin-bottom: 20px;
}
.sitemap .column > ul > li {
  margin-bottom: 20px;
}
.sitemap .column > ul > li > ul > li {
  padding: 4px 0px;
}
.sitemap .column > ul > li > ul > li > ul {
  margin: 3px 0px;
}
.sitemap .column > ul > li > ul > li > ul > li {
  line-height: 25px;
}
.sitemap .column > ul > li > ul > li > ul > li > a {
  line-height: 25px;
}
.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 ul a:after, .sitemap .column li a:after {
  display: none;
}
.sitemap .column ul a:hover, .sitemap .column li a:hover {
  color: #0069aa;
}
.sitemap .column > ul > li > a:hover {
  color: #0069aa;
}
.sitemap .column > ul > li > ul > li > a {
  padding-left: 10px;
}
.sitemap .column > ul > li > ul > li > ul > li > a {
  font-size: 15px;
  padding-left: 20px;
}

/* ----------------------------------------------------------------------------
= 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;
  outline: 0;
  top: 0px;
  left: 0px;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e2e2e2;
}
.m-alert-wrapper .alert-inner {
  max-width: 1300px;
  margin: 0px auto;
  width: 100%;
}
.m-alert-wrapper > div {
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  display: none;
  margin: 0px auto;
}
@media screen and (max-width: 870px) {
  .m-alert-wrapper > div {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.m-alert-wrapper > div .alert-title {
  font-weight: 700;
  font-family: "Rubik", serif;
  font-size: 20px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 20px;
  display: block;
  margin-bottom: 22px;
  max-width: calc(100% - 20px);
  position: relative;
}
.m-alert-wrapper > div .alert-title:after {
  content: " ";
  position: absolute;
  bottom: -12px;
  left: 0px;
  width: 53px;
  height: 7px;
  background: url("../images/svg/circles.svg") no-repeat;
}
.m-alert-wrapper > div p,
.m-alert-wrapper > div ul li,
.m-alert-wrapper > div ol li {
  font-size: 18px;
  color: #231f20;
  letter-spacing: 0.5px;
  line-height: 28.8px;
}
.m-alert-wrapper > div .alert-desc {
  width: calc(100% - 250px);
  display: inline-block;
}
.m-alert-wrapper > div .alert-desc p:last-child {
  margin-bottom: 0px;
}
@media screen and (max-width: 700px) {
  .m-alert-wrapper > div .alert-desc {
    width: 100%;
  }
}
.m-alert-wrapper .close-alert {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 10px;
  right: 30px;
  text-transform: uppercase;
  cursor: pointer;
  text-indent: -9999px;
  z-index: 999;
}
@media screen and (max-width: 870px) {
  .m-alert-wrapper .close-alert {
    right: 20px;
  }
}
.m-alert-wrapper .close-alert .close-x {
  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: #313131;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.m-alert-wrapper .close-alert .close-x:before {
  transform: rotate(45deg);
}
.m-alert-wrapper .close-alert .close-x:after {
  transform: rotate(-45deg);
}
.m-alert-wrapper .close-alert:hover .close-x:before, .m-alert-wrapper .close-alert:hover .close-x:after {
  background: #0069aa;
}
.m-alert-wrapper .alert-button {
  border: none;
  position: relative;
  float: right;
  margin-right: 5px;
  padding: 11px 26px 11px 28px;
}
@media screen and (max-width: 700px) {
  .m-alert-wrapper .alert-button {
    float: none;
    margin-top: 20px;
  }
}

#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: transparent;
  border-right-color: transparent;
  border-bottom-color: #dbdbdb;
  border-left-color: transparent;
  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: #231F20;
}
#venue_widgets_framework .m-venueframework__header-shadow {
  background: rgba(229, 229, 229, 0);
}
#venue_widgets_framework .m-venueframework__header-text {
  color: #231F20;
  text-transform: none;
  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: transparent;
}
#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: #231F20;
}
#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: #231F20;
}
#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: #232323;
}
#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: #231F20;
}
#venue_widgets_framework .m-venueframework-linklist__item-title {
  color: #231F20;
}
#venue_widgets_framework .m-venueframework-linklist__item-subtitle {
  color: #232323;
}
#venue_widgets_framework .m-venueframework-linklist__item-icon {
  color: #232323;
}
#venue_widgets_framework .m-venueframework-linklist__item-icon svg {
  stroke: #232323;
}
#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: #232323;
}
#venue_widgets_framework .m-venueframework-newswidget__item-title {
  color: #231F20;
}
#venue_widgets_framework .m-venueframework-newswidget__item-subtitle {
  color: #232323;
}
#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: #232323;
}
#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: #231F20;
}
#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: #232323;
}
#venue_widgets_framework .m-venueframework-socialwidget__description {
  color: #232323;
}
#venue_widgets_framework .m-venueframework-socialwidget__description a, #venue_widgets_framework .m-venueframework-socialwidget__description a:visited {
  color: #232323;
}
#venue_widgets_framework .m-venueframework-socialwidget__description a:hover, #venue_widgets_framework .m-venueframework-socialwidget__description a:focus {
  color: #231F20;
}
#venue_widgets_framework .m-venueframework-socialwidget__meta {
  color: #232323;
}
#venue_widgets_framework .m-venueframework-socialwidget__meta a, #venue_widgets_framework .m-venueframework-socialwidget__meta a:visited {
  color: #232323;
}
#venue_widgets_framework .m-venueframework-socialwidget__meta a:hover, #venue_widgets_framework .m-venueframework-socialwidget__meta a:focus {
  color: #231F20;
}
#venue_widgets_framework .m-venueframework-socialwidget__meta .delimiter {
  color: #232323;
}
#venue_widgets_framework .l-m-venue_widget__youtubewidget .entry {
  background-color: #fff;
}
#venue_widgets_framework .l-m-venue_widget__youtubewidget .title {
  color: #231F20;
}
#venue_widgets_framework .l-m-venue_widget__youtubewidget .meta {
  color: #232323;
}
#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: #231F20;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar-container:after {
  background: transparent;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-head {
  color: #231F20;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-body {
  background: #D8D8D8;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div {
  background: transparent;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div > span.fc-date {
  color: #231F20;
  background: transparent;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content > span.fc-date {
  color: #0069AA;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content > span.fc-date:after {
  background: #0069AA;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content {
  background: transparent;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content:hover {
  background: #0069AA;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content:hover .fc-date {
  color: white;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content:hover .fc-date:after {
  background: white;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-today .fc-date {
  background: transparent;
  color: #231F20;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-today.fc-content .fc-date {
  background: #231F20;
  color: #fff;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-today.fc-content .fc-date:after {
  background: #fff;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal {
  color: #232323;
}
#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 transparent;
  border-top: none;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .close {
  border: none;
  border: 1px solid transparent;
  background: #fff;
  color: #232323;
  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: #231F20;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in h3 a {
  color: #0069AA;
}
#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: #231F20;
}
#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: #231F20;
}
#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: #0069AA;
}
#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: #0069AA;
}
#venue_widgets_framework .l-m-venue_widget__promotionswidget .m-venueframework__widget-body {
  border: none;
}
#venue_widgets_framework .m-venueframework-promotionswidget__item-title h2 {
  color: #231F20;
}
#venue_widgets_framework .m-venueframework-promotionswidget__item-subtitle {
  color: #231F20;
}
#venue_widgets_framework .m-venueframework-promotionswidget__item-subtitle:after {
  background: #231F20;
}
#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: #232323;
}
#venue_widgets_framework .l-m-venue_widget__eventslist .m-eventItem__title, #venue_widgets_framework .l-m-venue_widget__eventslist .m-eventItem__title a {
  color: #231F20;
}
#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: #231F20;
}
#venue_widgets_framework .l-m-venue_widget__eventslist .m-eventItem__tagline {
  color: #231F20;
}
#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: #231F20;
}
#venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons a:hover {
  color: #231F20;
}
#venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons a:hover svg path {
  fill: #231F20;
}
#venue_widgets_framework .l-m-venue_widget__eventslist .m-venueframework-eventslist__buttons a svg path {
  fill: #231F20;
}

#venue_widgets_framework .l-m-venue_widget {
  background: #ffffff;
  box-shadow: 0 9px 14px 0 rgba(0, 0, 0, 0.1);
}

#venue_widgets_framework .m-venueframework__widget-body,
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-body {
  background: transparent;
  border-color: transparent;
}

#venue_widgets_framework .m-venueframework__header {
  border: none;
  margin: 0px;
  background: transparent;
  position: relative;
  z-index: 10;
  overflow: visible;
}
#venue_widgets_framework .m-venueframework__header:before {
  content: " ";
  top: 40px;
  left: 20px;
  width: calc(100% - 40px);
  height: 1px;
  background: #231f20;
  position: absolute;
  z-index: 40;
  visibility: visible;
}
#venue_widgets_framework .m-venueframework__header:after {
  content: " ";
  top: 0px;
  left: 0px;
  position: absolute;
  z-index: 30;
  visibility: visible;
  width: 46px;
  height: 46px;
  opacity: 0.8;
  background: #5db65f;
  border-radius: 25px;
}

#venue_widgets_framework .m-venueframework__header-icon {
  position: relative;
  z-index: 100;
  background: transparent;
  width: 47px;
  height: 40px;
}
#venue_widgets_framework .m-venueframework__header-icon svg {
  fill: #231f20;
}

#venue_widgets_framework .font_open-sans .m-venueframework__header-link,
#venue_widgets_framework .font_open-sans .m-venueframework__header-link:visited {
  background: transparent;
}

#venue_widgets_framework .m-venueframework__header-text,
#venue_widgets_framework .font_open-sans .m-venueframework__header-text,
#venue_widgets_framework .m-venueframework__header-icon + .m-venueframework__header-text,
#venue_widgets_framework .m-venueframework__header-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 16px;
  padding-top: 12px;
  padding-left: 10px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-transform: capitalize;
}

#venue_widgets_framework .font_open-sans .m-venueframework__header-link,
#venue_widgets_framework .font_open-sans .m-venueframework__header-link:visited {
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-size: 12px;
  color: #231f20;
  letter-spacing: 0.5px;
  text-transform: none;
  text-align: right;
  padding-right: 20px;
}
#venue_widgets_framework .font_open-sans .m-venueframework__header-link:hover,
#venue_widgets_framework .font_open-sans .m-venueframework__header-link:visited:hover {
  text-decoration: underline;
  background: transparent;
}

#venue_widgets_framework .font_open-sans .m-venueframework-linklist__item-title,
#venue_widgets_framework .font_open-sans .m-venueframework-newswidget__item-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #231f20;
  letter-spacing: 0;
  line-height: 16px;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

#venue_widgets_framework .font_open-sans .m-venueframework-newswidget__item-title {
  margin-top: 5px;
}

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

#venue_widgets_framework .m-venueframework-linklist__item-icon svg {
  stroke: #b2b3b2;
}

#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: #0069aa;
}

#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: #0069aa;
}

#venue_widgets_framework .m-venueframework-newswidget__link:hover .m-venueframework-linklist__item-subtitle {
  color: #747474 !important;
}

#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: #0069aa;
}

#venue_widgets_framework .m-venueframework-linklist__link .m-venueframework-linklist__item-subtitle {
  color: #747474 !important;
}

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

#venue_widgets_framework .l-m-venue_widget__calendarwidget .cal-controls .m-owlcarousel__controls-icon {
  border: none;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .cal-controls .m-owlcarousel__controls-icon svg {
  stroke: #231f20;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .cal-controls .m-owlcarousel__controls-icon:hover {
  border: none;
}
#venue_widgets_framework .l-m-venue_widget__calendarwidget .cal-controls .m-owlcarousel__controls-icon:hover svg {
  stroke: #0069aa;
}

#venue_widgets_framework .m-owlcarousel__controls-icon {
  border: none;
}
#venue_widgets_framework .m-owlcarousel__controls-icon svg {
  stroke: #231f20;
}

#venue_widgets_framework .m-owlcarousel__controls-icon:hover {
  border: none;
}
#venue_widgets_framework .m-owlcarousel__controls-icon:hover svg {
  stroke: #0069aa;
}

#venue_widgets_framework .owl-page.active span {
  background: #0069aa;
}

#venue_widgets_framework .m-venueframework-socialwidget__meta span {
  color: #757575;
}

#venue_widgets_framework .m-venueframework-socialwidget__meta a:hover,
#venue_widgets_framework .m-venueframework-socialwidget__meta a:focus {
  text-decoration: underline;
}

#venue_widgets_framework .m-venueframework-socialwidget__meta a,
#venue_widgets_framework .l-m-venue_widget__youtubewidget .meta {
  color: #757575;
}

#venue_widgets_framework .m-venueframework-socialwidget__description a,
#venue_widgets_framework .m-venueframework-socialwidget__description a:visited {
  position: relative;
}
#venue_widgets_framework .m-venueframework-socialwidget__description a:after,
#venue_widgets_framework .m-venueframework-socialwidget__description a:visited:after {
  content: " ";
  position: absolute;
  bottom: 1px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: #231f20;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#venue_widgets_framework .m-venueframework-socialwidget__description a:hover,
#venue_widgets_framework .m-venueframework-socialwidget__description a:focus {
  color: #0069aa;
}
#venue_widgets_framework .m-venueframework-socialwidget__description a:hover:after,
#venue_widgets_framework .m-venueframework-socialwidget__description a:focus:after {
  width: 0px;
  left: 50%;
}

#venue_widgets_framework .font_open-sans.l-m-venue_widget__youtubewidget .title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #231f20;
  letter-spacing: 0;
}

#venue_widgets_framework .l-m-venue_widget__youtubewidget .entry,
#venue_widgets_framework .font_open-sans .m-venueframework__header-link,
#venue_widgets_framework .font_open-sans .m-venueframework__header-link:visited {
  background: transparent;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in .close:hover {
  background: transparent;
  color: #231f20;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal h3 a,
#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal h3 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  color: #231f20 !important;
  letter-spacing: 0 !important;
  line-height: 16px !important;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal h4 {
  margin-top: 10px;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #231f20;
  letter-spacing: 0;
  line-height: 16px;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .modal.fade.in h3 a:hover {
  color: #0069aa !important;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .m-venueframework-calendarwidget .modal {
  position: absolute;
  z-index: 300 !important;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div {
  border-left: 1px solid #d8d8d8;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div:first-child {
  border: none;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row {
  border-bottom: 1px solid #d8d8d8;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row:last-child {
  border-bottom: none;
}

#venue_widgets_framework .l-m-venue_widget.l-m-venue_widget__calendarwidget.font_open-sans .m-venueframework__widget-body {
  z-index: 200;
  background: transparent;
  position: relative;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-content > span.fc-date,
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-row > div.fc-today .fc-date,
#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-head > div {
  font-weight: bold;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .cal-controls {
  z-index: 200;
}

#venue_widgets_framework .m-venueframework-linklist__item.has_body .m-venueframework-linklist__item-title {
  margin-bottom: 5px;
}

#venue_widgets_framework .m-venueframework-linklist__item-icon {
  right: 0px;
}

#venue_widgets_framework .m-venueframework-linklist__loop {
  padding: 0px 20px;
}

#venue_widgets_framework .m-venueframework-linklist__link,
#venue_widgets_framework .m-venueframework-linklist__link:visited {
  padding-left: 0px;
  padding-right: 0px;
}

#venue_widgets_framework {
  background: transparent;
}

#venue_widgets_framework .l-m-venue_widget__calendarwidget .fc-calendar .fc-head > div {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
}

#venue_widgets_framework .font_open-sans .m-venueframework-promotionswidget__item-title h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: white;
}

#venue_widgets_framework .font_open-sans .m-venueframework-promotionswidget__item-subtitle {
  color: white;
}
#venue_widgets_framework .font_open-sans .m-venueframework-promotionswidget__item-subtitle:after {
  background: white;
}
