@charset "UTF-8";
/*! Made by Burg, Burg. */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * 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.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

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

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

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

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

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

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

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

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

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "“" "”" "‘" "’";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: "";
  content: none;
}

small, .small {
  font-size: 75%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

dd {
  margin: 0;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px;
}

ol,
ul {
  padding: 0;
  list-style-type: none;
}

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

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

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

iframe {
  border: none;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

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

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

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 2 */
  margin: 0; /* 3 */
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border: none;
  background-color: transparent;
}

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

/**
 * 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 Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
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] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

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

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

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

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
}

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

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.clearfix, .cf, .gfield {
  zoom: 1;
}
.clearfix:before, .clearfix:after, .cf:before, .cf:after, .gfield:before, .gfield:after {
  content: "";
  display: table;
}
.clearfix:after, .cf:after, .gfield:after {
  clear: both;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/*********************
COLORS
*********************/
/*********************
WRAPS
*********************/
/*********************
PAGE PADDINGS
*********************/
@font-face {
  font-family: "Dazzed";
  src: url("../fonts/dazzed-regular.woff") format("woff"), url("../fonts/dazzed-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Dazzed";
  src: url("../fonts/dazzed-regularItalic.woff") format("woff"), url("../fonts/dazzed-regularItalic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Dazzed";
  src: url("../fonts/dazzed-semibold.woff") format("woff"), url("../fonts/dazzed-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Dazzed";
  src: url("../fonts/dazzed-bold.woff") format("woff"), url("../fonts/dazzed-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
p {
  /*-webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -o-font-feature-settings: "liga", "dlig";*/
  -ms-word-break: keep-all;
  word-break: keep-all;
  -moz-hyphens: none;
  -ms-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Helpful:
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/
http://engageinteractive.co.uk/blog/top-10-scss-mixins
******************************************************************/
/*********************
TRANSITION
*********************/
/*********************
TRANSFORM
*********************/
/*********************
CSS TRIANGLES
*********************/
/*********************
PSEUDO, BEFORE, AFTER
*********************/
/*********************
CSS3 GRADIENTS
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet
******************************************************************/
.last-col {
  float: right;
  padding-right: 0 !important;
}

.anniversary-tile,
.two-col-no-style > div,
.fw-main,
.featured-grid > div {
  float: left;
  width: 100%;
}

.fw-side {
  float: right;
  width: 100%;
}

.anniversary-tile,
.featured-grid > div {
  margin-bottom: 1.25rem;
}

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  .news-archive article,
  .home-news article {
    border-top: 1px solid #000;
  }
  .news-archive article:last-of-type,
  .home-news article:last-of-type {
    border-bottom: 1px solid #000;
  }
  .event-filter.active .cat-filter,
  .event-filter.active .event-location,
  .event-filter.active .event-type {
    display: block;
  }
  .dropdown.event-location, .dropdown.event-type {
    display: none;
    width: 100%;
  }
  .dropdown.event-location dd, .dropdown.event-type dd {
    width: 100%;
  }
  .dropdown.event-search, .dropdown.event-date {
    width: 33.33%;
  }
  .cat-filter li {
    margin: 0.5em 0 0;
  }
  #show-filter {
    width: 33.33%;
  }
  .event-combi .event-header-a {
    margin-top: 1em;
  }
  .event-combi .event-buttons {
    margin-bottom: 0.5em;
  }
  #inner-footer > nav, #inner-footer > div {
    margin-bottom: 3em;
  }
  .fw-main {
    width: 100%;
  }
  .fw-main.updates-mailform {
    width: calc(100% - 1.875rem);
    margin-left: 0.9375rem;
  }
  .fw-side {
    width: 100%;
  }
  .fw-side.festivalheader-program {
    width: calc(100% - 1.875rem);
    margin-right: 0.9375rem;
  }
  .event-archive .wrap {
    width: 100%;
  }
  .event-archive .content-container {
    margin: 0;
  }
}
/* Portrait tablet to landscape */
@media (min-width: 768px) {
  .archive-combi > a,
  .archive-event > a {
    float: left;
    width: calc(100% - 180px);
  }
  .archive-combi .event-thumb,
  .archive-event .event-thumb {
    float: left;
    width: calc(33% - 0.5rem);
  }
  .archive-combi .event-header-a,
  .archive-event .event-header-a {
    float: right;
    width: calc(67% - 0.5rem);
  }
  .archive-combi.tile_no_btn > a,
  .archive-event.tile_no_btn > a {
    width: 100%;
  }
  .featured-grid > div {
    width: calc(50% - 0.625rem - 1px);
    margin-right: 1.25rem;
  }
  .featured-grid > div:nth-of-type(5n + 3), .featured-grid > div:nth-of-type(5n + 4), .featured-grid > div:nth-of-type(5n + 5) {
    width: calc(33.33% - 0.8375rem);
  }
  .featured-grid > div:nth-of-type(5n + 3), .featured-grid > div:nth-of-type(5n + 1) {
    clear: left;
  }
  .featured-grid > div:nth-of-type(5n + 2), .featured-grid > div:nth-of-type(5n + 5) {
    margin-right: 0;
  }
  .two-col-no-style > div {
    width: calc(50% - 0.625rem);
  }
  .two-col-no-style > div:not(:nth-of-type(2n)) {
    margin-right: 1.25rem;
  }
  .three-col > div {
    float: left;
    width: calc(33.33% - 0.8375rem);
  }
  .three-col > div:not(:nth-of-type(3n)) {
    margin-right: 1.25rem;
  }
  .anniversary-tile {
    margin-bottom: 4.25rem;
  }
  .anniversary-tile.small-tile {
    width: calc(33.33% - 0.416625rem);
  }
  .anniversary-tile.medium-tile {
    width: calc(66.67% - 0.83375rem);
  }
  .anniversary-tile.has-margin-right {
    margin-right: 1.25rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  /*
  .pioneer-grid {
    > div {
      float: left;
      margin-right: 0.45em;
      width: calc(50% - 0.225em);
      height: 160px;

      &:nth-of-type(2n) {
        margin-right: 0;
      }
    }
  }

  */
  #inner-footer > nav, #inner-footer > div {
    float: left;
    margin-right: 1.25rem;
    width: calc(50% - 0.625rem);
  }
  #inner-footer > nav:nth-of-type(2), #inner-footer > div:nth-of-type(2) {
    margin-right: 0;
  }
  .two-col > div {
    width: 100%;
    margin-bottom: 2em;
  }
  .fw-main {
    width: 100%;
  }
  .fw-main.updates-mailform {
    width: 740px;
    margin-left: calc(50% - 370px);
  }
  .fw-side {
    width: 100%;
  }
  .fw-side.festivalheader-program {
    width: 740px;
    margin-right: calc(50% - 370px);
  }
  .quoteslider,
  .overlaytile {
    width: calc(50% - 0.625rem);
  }
}
/* Landscape to small desktop */
@media (min-width: 481px) {
  .subevent-grid article:nth-of-type(2n) {
    float: right;
  }
  .subevent-grid article:nth-of-type(2n+1) {
    float: left;
    clear: both;
  }
  .subevent-grid article:nth-of-type(6n+1), .subevent-grid article:nth-of-type(6n+4) {
    width: calc(40% - 0.5em);
  }
  .subevent-grid article:nth-of-type(6n+1) .img-container:before, .subevent-grid article:nth-of-type(6n+4) .img-container:before {
    padding-bottom: 120%;
  }
  .subevent-grid article:nth-of-type(6n+2), .subevent-grid article:nth-of-type(6n+3) {
    width: calc(60% - 0.5em);
  }
  .subevent-grid article:nth-of-type(6n+2) .img-container:before, .subevent-grid article:nth-of-type(6n+3) .img-container:before {
    padding-bottom: 80%;
  }
  .subevent-grid article:nth-of-type(6n), .subevent-grid article:nth-of-type(6n+5) {
    width: calc(50% - 0.5em);
  }
  .subevent-grid article:nth-of-type(6n) .img-container:before, .subevent-grid article:nth-of-type(6n+5) .img-container:before {
    padding-bottom: 80%;
  }
  .press-img-grid > div {
    float: left;
    margin-right: 1em;
  }
  .press-img-grid > div:nth-of-type(3n) {
    float: right;
    margin-right: 0;
  }
  .press-img-grid > div:nth-of-type(3n+1) {
    clear: both;
  }
  .press-img-grid > div:nth-of-type(9n+1), .press-img-grid > div:nth-of-type(9n+2), .press-img-grid > div:nth-of-type(9n+8), .press-img-grid > div:nth-of-type(9n) {
    width: calc(30% - 0.667em);
  }
  .press-img-grid > div:nth-of-type(9n+1) .img-container:before, .press-img-grid > div:nth-of-type(9n+2) .img-container:before, .press-img-grid > div:nth-of-type(9n+8) .img-container:before, .press-img-grid > div:nth-of-type(9n) .img-container:before {
    padding-bottom: 80%;
  }
  .press-img-grid > div:nth-of-type(9n+3), .press-img-grid > div:nth-of-type(9n+7) {
    width: calc(40% - 0.667em);
  }
  .press-img-grid > div:nth-of-type(9n+3) .img-container:before, .press-img-grid > div:nth-of-type(9n+7) .img-container:before {
    padding-bottom: 59.5%;
  }
  .press-img-grid > div:nth-of-type(9n+4), .press-img-grid > div:nth-of-type(9n+5), .press-img-grid > div:nth-of-type(9n+6) {
    width: calc(33.33% - 0.667em);
  }
  .press-img-grid > div:nth-of-type(9n+4) .img-container:before, .press-img-grid > div:nth-of-type(9n+5) .img-container:before, .press-img-grid > div:nth-of-type(9n+6) .img-container:before {
    padding-bottom: 70%;
  }
}
@media (min-width: 768px) {
  .event-excerpt {
    float: left;
    margin-right: 1.25rem;
    width: calc(70% - 0.625rem);
  }
  .editions-grid article, .editions-grid2 article, .home-news article, .news-archive article {
    float: left;
    margin-right: 1.25rem;
    width: calc(50% - 0.625rem);
  }
  .editions-grid article:nth-of-type(2n), .editions-grid2 article:nth-of-type(2n), .home-news article:nth-of-type(2n), .news-archive article:nth-of-type(2n) {
    margin-right: 0;
  }
  .pp-grid li {
    float: left;
    margin-right: 1.25rem;
    width: calc(50% - 1.25rem);
    padding-bottom: 0.5rem;
  }
  .pp-grid li:nth-of-type(2n) {
    margin-right: 0;
  }
  .press-footer .content-container > div {
    float: left;
    margin-right: 1.25rem;
    width: calc(50% - 0.625rem);
  }
  .press-footer .content-container > div:nth-of-type(2n) {
    margin-right: 0;
  }
  .search-result > a {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    column-gap: 1rem;
    width: 100%;
    padding-right: 180px;
  }
  .result-thumb {
    width: calc(33% - 0.5rem);
    flex-shrink: 0;
  }
  .result-thumb img {
    display: block;
  }
  .news-archive article,
  .home-news article {
    border-bottom: 1px solid #000;
  }
  .news-archive article:nth-of-type(-n+2),
  .home-news article:nth-of-type(-n+2) {
    border-top: 1px solid #000;
  }
  .news-archive article:nth-of-type(2n+1),
  .home-news article:nth-of-type(2n+1) {
    clear: left;
  }
  .small-pioneer-grid > div {
    float: left;
    width: 5rem;
    margin-right: 0.5rem;
  }
  .pioneer-grid > div {
    width: 33.33%;
    float: left;
    height: 160px;
  }
}
@media (min-width: 1024px) {
  .event-content, .event-excerpt, .event-footer, .pioneer-content, .article-header, .article-content, .article-footer, .pioneer-footer, .subevent-grid {
    float: left;
    margin-right: 1.25rem;
    width: calc(70% - 0.625rem);
  }
  .event-header-a {
    float: left;
    width: 58%;
  }
  .sidebar {
    float: right;
    width: calc(30% - 0.625rem);
    clear: right;
  }
  #inner-footer > nav, #inner-footer > div {
    float: left;
    margin-right: 1.25rem;
    width: calc(25% - 0.9375rem);
  }
  #inner-footer > div:last-of-type {
    margin-right: 0;
  }
  .location-grid li {
    float: left;
    margin-right: 1.25rem;
    width: calc(25% - 0.9375rem);
  }
  .location-grid li:nth-of-type(4n) {
    margin-right: 0;
  }
  .location-grid li:nth-of-type(4n+1) {
    clear: left;
  }
  .event-content .location-grid li {
    float: left;
    margin-right: 1.25rem;
    width: calc(33.33% - 0.8375rem);
  }
  .event-content .location-grid li:nth-of-type(3n) {
    margin-right: 0;
  }
  .event-content .location-grid li:nth-of-type(3n+1) {
    clear: left;
  }
  .event-content .location-grid li:nth-of-type(4n) {
    margin-right: 1.25rem;
  }
  .event-content .location-grid li:nth-of-type(4n+1) {
    clear: none;
  }
  .editions-grid3 article {
    float: left;
    margin-right: 1.25rem;
    width: calc(33.33% - 0.8325rem);
  }
  .editions-grid3 article:nth-of-type(3n) {
    margin-right: 0;
  }
  .discount-grid li {
    float: left;
    margin-right: 1.25rem;
    width: calc(33.33% - 0.8325rem);
  }
  .discount-grid li:nth-of-type(3n) {
    margin-right: 0;
  }
  .other-calls.single li {
    width: calc(50% - 0.625rem);
    margin: 0 auto;
    float: unset;
  }
  .other-calls.double li {
    width: calc(50% - 0.625rem);
  }
  .other-calls.double li:nth-of-type(2n) {
    margin-right: 0;
  }
  .other-calls li {
    float: left;
    margin-right: 1.25rem;
    width: calc(33.33% - 0.8325rem);
  }
  .other-calls li:nth-of-type(3n) {
    margin-right: 0;
  }
  .fw-side {
    width: calc(326.634px - 0.8125rem);
  }
  .fw-main {
    width: calc(100% - 326.634px - 0.8125rem);
    margin-right: 1.625rem;
  }
  .overlaytile {
    width: calc(33.33% - 0.8375rem);
  }
  .quoteslider {
    width: calc(50% - 0.625rem);
  }
  .pioneer-grid > div {
    height: 200px;
  }
}
@media (min-width: 1240px) {
  .fw-side {
    width: calc(346.632px - 0.8125rem);
  }
  .fw-main {
    width: calc(100% - 346.632px - 0.8125rem);
    margin-right: 1.625rem;
  }
}
/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
.alert-success, .alert-error, .alert-info, .alert-help {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f;
}

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8;
}

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4;
}

.alert-success {
  border-color: #deeaae;
  background: #e6efc2;
}

.validation_error,
.validation_message {
  color: rgb(255, 66, 0) !important;
  margin-left: 30%;
}

.alert {
  color: rgb(255, 66, 0);
}

.inactive-btn, .yellow-btn, .yellow-btn:visited, .lyellow-btn, .lyellow-btn:visited, .newsletter-footer #gform_submit_button_17,
.newsletter-footer #gform_submit_button_18,
.pink-btn, .pink-btn:visited, .ticket-btn,
a.ticket-btn,
a:visited.ticket-btn,
.ticket-info-btn,
a.ticket-info-btn,
a:visited.ticket-info-btn,
.single-ticket-btn,
a.single-ticket-btn,
a:visited.single-ticket-btn, .blue-btn,
a.blue-btn,
a:visited.blue-btn,
.gform_button:not(#gform_submit_button_5),
#wp-submit,
a.cb-enable,
a.cb-enable:visited, .cta-btn,
a.cta-btn,
a:visited.cta-btn, .white-btn,
a.white-btn,
a:visited.white-btn, .button,
a.button,
a:visited.button {
  display: inline-block;
  position: relative;
  font-family: "Dazzed", sans-serif;
  text-decoration: none;
  color: #000;
  font-size: 1em;
  height: 44px;
  line-height: 36px;
  padding: 0 2.625rem 0;
  border-radius: 0;
  border: 2px solid #000;
  cursor: pointer;
  transition: all 0.14s ease-in-out;
  text-align: center;
  font-weight: 600;
  min-width: 132px;
  max-width: 100%;
  background-color: transparent;
}
.inactive-btn:hover, .yellow-btn:hover, .lyellow-btn:hover, .newsletter-footer #gform_submit_button_17:hover,
.newsletter-footer #gform_submit_button_18:hover,
.pink-btn:hover, .ticket-btn:hover,
.ticket-info-btn:hover,
.single-ticket-btn:hover, .blue-btn:hover,
.gform_button:hover:not(#gform_submit_button_5),
#wp-submit:hover,
a.cb-enable:hover, .cta-btn:hover, .white-btn:hover, .button:hover, .inactive-btn:focus, .yellow-btn:focus, .lyellow-btn:focus, .newsletter-footer #gform_submit_button_17:focus,
.newsletter-footer #gform_submit_button_18:focus,
.pink-btn:focus, .ticket-btn:focus,
.ticket-info-btn:focus,
.single-ticket-btn:focus, .blue-btn:focus,
.gform_button:focus:not(#gform_submit_button_5),
#wp-submit:focus,
a.cb-enable:focus, .cta-btn:focus, .white-btn:focus, .button:focus, .inactive-btn:active, .yellow-btn:active, .lyellow-btn:active, .newsletter-footer #gform_submit_button_17:active,
.newsletter-footer #gform_submit_button_18:active,
.pink-btn:active, .ticket-btn:active,
.ticket-info-btn:active,
.single-ticket-btn:active, .blue-btn:active,
.gform_button:active:not(#gform_submit_button_5),
#wp-submit:active,
a.cb-enable:active, .cta-btn:active, .white-btn:active, .button:active {
  background-color: #000;
  color: #fff;
  text-decoration: none;
}

.button:hover, .button:focus, .button:active,
a.button:hover,
a.button:focus,
a.button:active,
a:visited.button:hover,
a:visited.button:focus,
a:visited.button:active {
  background-color: #000;
  color: #fff;
}

.white-btn,
a.white-btn,
a:visited.white-btn {
  color: #fff;
  border-color: #fff;
}
.white-btn:hover, .white-btn:active, .white-btn:focus,
a.white-btn:hover,
a.white-btn:active,
a.white-btn:focus,
a:visited.white-btn:hover,
a:visited.white-btn:active,
a:visited.white-btn:focus {
  color: #000;
  background-color: white;
}
.white-btn.togreen:hover, .white-btn.togreen:active, .white-btn.togreen:focus,
a.white-btn.togreen:hover,
a.white-btn.togreen:active,
a.white-btn.togreen:focus,
a:visited.white-btn.togreen:hover,
a:visited.white-btn.togreen:active,
a:visited.white-btn.togreen:focus {
  color: #5d5d23;
}

.cta-btn,
a.cta-btn,
a:visited.cta-btn {
  background-color: rgb(255, 66, 0);
  border-color: rgb(255, 66, 0);
  color: #fff;
  font-size: 1.125rem;
  padding: 0 1.25rem;
  height: 3.5rem;
  line-height: 3.5rem;
}
.cta-btn:hover, .cta-btn:active, .cta-btn:focus,
a.cta-btn:hover,
a.cta-btn:active,
a.cta-btn:focus,
a:visited.cta-btn:hover,
a:visited.cta-btn:active,
a:visited.cta-btn:focus {
  color: #fff;
  background-color: rgb(255, 66, 0);
  border-radius: 50px;
}

.blue-btn,
a.blue-btn,
a:visited.blue-btn,
.gform_button:not(#gform_submit_button_5),
#wp-submit,
a.cb-enable,
a.cb-enable:visited {
  color: #000078;
  border-color: #000078;
}
.blue-btn:hover, .blue-btn:active, .blue-btn:focus,
a.blue-btn:hover,
a.blue-btn:active,
a.blue-btn:focus,
a:visited.blue-btn:hover,
a:visited.blue-btn:active,
a:visited.blue-btn:focus,
.gform_button:not(#gform_submit_button_5):hover,
.gform_button:not(#gform_submit_button_5):active,
.gform_button:not(#gform_submit_button_5):focus,
#wp-submit:hover,
#wp-submit:active,
#wp-submit:focus,
a.cb-enable:hover,
a.cb-enable:active,
a.cb-enable:focus,
a.cb-enable:visited:hover,
a.cb-enable:visited:active,
a.cb-enable:visited:focus {
  color: #fff;
  background-color: #000078;
}

.ticket-btn,
a.ticket-btn,
a:visited.ticket-btn,
.ticket-info-btn,
a.ticket-info-btn,
a:visited.ticket-info-btn,
.single-ticket-btn,
a.single-ticket-btn,
a:visited.single-ticket-btn {
  width: 166px;
  color: #fff !important;
  border-color: rgb(255, 66, 0);
  background-color: rgb(255, 66, 0);
  height: auto;
  line-height: 1.2;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.ticket-btn:hover, .ticket-btn:active, .ticket-btn:focus,
a.ticket-btn:hover,
a.ticket-btn:active,
a.ticket-btn:focus,
a:visited.ticket-btn:hover,
a:visited.ticket-btn:active,
a:visited.ticket-btn:focus,
.ticket-info-btn:hover,
.ticket-info-btn:active,
.ticket-info-btn:focus,
a.ticket-info-btn:hover,
a.ticket-info-btn:active,
a.ticket-info-btn:focus,
a:visited.ticket-info-btn:hover,
a:visited.ticket-info-btn:active,
a:visited.ticket-info-btn:focus,
.single-ticket-btn:hover,
.single-ticket-btn:active,
.single-ticket-btn:focus,
a.single-ticket-btn:hover,
a.single-ticket-btn:active,
a.single-ticket-btn:focus,
a:visited.single-ticket-btn:hover,
a:visited.single-ticket-btn:active,
a:visited.single-ticket-btn:focus {
  border-radius: 50px;
  color: #fff;
  background-color: rgb(255, 66, 0);
}
.ticket-btn.soldout,
a.ticket-btn.soldout,
a:visited.ticket-btn.soldout,
.ticket-info-btn.soldout,
a.ticket-info-btn.soldout,
a:visited.ticket-info-btn.soldout,
.single-ticket-btn.soldout,
a.single-ticket-btn.soldout,
a:visited.single-ticket-btn.soldout {
  background-color: transparent;
  color: #000078 !important;
  border: 2px solid #000078;
}
.ticket-btn.soldout:hover, .ticket-btn.soldout:active, .ticket-btn.soldout:focus,
a.ticket-btn.soldout:hover,
a.ticket-btn.soldout:active,
a.ticket-btn.soldout:focus,
a:visited.ticket-btn.soldout:hover,
a:visited.ticket-btn.soldout:active,
a:visited.ticket-btn.soldout:focus,
.ticket-info-btn.soldout:hover,
.ticket-info-btn.soldout:active,
.ticket-info-btn.soldout:focus,
a.ticket-info-btn.soldout:hover,
a.ticket-info-btn.soldout:active,
a.ticket-info-btn.soldout:focus,
a:visited.ticket-info-btn.soldout:hover,
a:visited.ticket-info-btn.soldout:active,
a:visited.ticket-info-btn.soldout:focus,
.single-ticket-btn.soldout:hover,
.single-ticket-btn.soldout:active,
.single-ticket-btn.soldout:focus,
a.single-ticket-btn.soldout:hover,
a.single-ticket-btn.soldout:active,
a.single-ticket-btn.soldout:focus,
a:visited.single-ticket-btn.soldout:hover,
a:visited.single-ticket-btn.soldout:active,
a:visited.single-ticket-btn.soldout:focus {
  background-color: transparent;
  color: #000078 !important;
}

.ticket-notice {
  background-color: transparent;
  color: #000078;
  width: 100%;
  padding: 8px 24px;
  margin-bottom: 1em;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  border: 2px solid #000078;
}

@media (min-width: 768px) {
  .cta-btn,
  a.cta-btn,
  a:visited.cta-btn {
    font-size: 1.5rem;
    padding: 0 4rem;
    height: 4.75rem;
    line-height: 4.5rem;
  }
}
.newsletter-footer #gform_submit_button_17,
.newsletter-footer #gform_submit_button_18,
.pink-btn, .pink-btn:visited {
  background-color: transparent;
  border: 4px solid rgb(255, 66, 0);
}
.newsletter-footer #gform_submit_button_17:hover, .newsletter-footer #gform_submit_button_17:focus, .newsletter-footer #gform_submit_button_17:active,
.newsletter-footer #gform_submit_button_18:hover,
.newsletter-footer #gform_submit_button_18:focus,
.newsletter-footer #gform_submit_button_18:active,
.pink-btn:hover,
.pink-btn:focus,
.pink-btn:active, .pink-btn:visited:hover, .pink-btn:visited:focus, .pink-btn:visited:active {
  background-color: rgb(255, 66, 0);
  color: #fff;
}

.search-results .ticket-btn:before,
.search-results .ticket-btn:visited:before,
.search-results .ticket-info-btn:before,
.search-results .ticket-info-btn:visited:before,
.single-pioneer .ticket-btn:before,
.single-pioneer .ticket-btn:visited:before,
.single-pioneer .ticket-info-btn:before,
.single-pioneer .ticket-info-btn:visited:before {
  background-color: #fff;
}

.pp-grid .ticket-btn, .pp-grid .ticket-btn:visited, .sidebar .ticket-btn, .sidebar .ticket-btn:visited {
  width: 100%;
}
.pp-grid .ticket-btn:before, .pp-grid .ticket-btn:visited:before, .sidebar .ticket-btn:before, .sidebar .ticket-btn:visited:before {
  background-color: #fff;
}

.sidebar .ticket-btn, .sidebar .ticket-btn:visited {
  width: 100%;
  margin-bottom: 1em;
}

.playlist-header .playlist-btn {
  cursor: pointer;
  text-transform: uppercase;
}

.reset {
  position: absolute;
  top: 0.25em;
  right: 0.25em;
  font-size: 1rem;
}

.share a {
  height: 40px;
  width: 40px;
  background-color: #000078;
  display: block;
  border-radius: 4px;
  padding: 2px;
  float: left;
  margin-right: 9px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
.share a:last-of-type {
  margin-right: 0;
}
.share a svg {
  fill: #fff;
}
.share a:hover, .share a:active, .share a:focus {
  background-color: #D7A0FF;
}
.share a:hover svg, .share a:active svg, .share a:focus svg {
  fill: #fff;
}

.read-more {
  cursor: pointer;
  font-weight: bold;
  color: #000078;
}
.read-more span {
  margin-right: 6px;
}
.read-more:after {
  content: "";
  display: inline-block;
  position: relative;
  width: 10px;
  height: 10px;
  background-image: url(../images/gmw-arrow-down-d.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 4px;
  -webkit-transition: top 0.25s ease-in-out;
  -moztransition: top 0.25s ease-in-out;
  -ms-transition: top 0.25s ease-in-out;
  -o-transition: top 0.25s ease-in-out;
  transition: top 0.25s ease-in-out;
}
.read-more.active span {
  display: none;
}
.read-more.active:after {
  transform: rotate(180deg);
}

.single-call .read-more {
  font-weight: 400;
  color: #000;
  display: block;
}

a.cb-enable,
a.cb-enable:visited {
  margin-left: 1em;
  line-height: 20px;
  padding: 8px 9px 5px;
  min-width: 160px;
}

.img-download,
.img-download:visited {
  background-color: #000078;
  color: #000;
  height: 40px;
  width: 40px;
  background-image: url(../images/download.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.img-download:hover, .img-download:focus, .img-download:active,
.img-download:visited:hover,
.img-download:visited:focus,
.img-download:visited:active {
  background-color: rgb(255, 66, 0);
}

.ext-link,
.ext-link:visited,
.download,
.download:visited {
  color: #000;
  line-height: 40px;
  padding-left: 52px;
  position: relative;
  margin-bottom: 0.25em;
  height: 40px;
  font-weight: bold;
  -webkit-transition: all 0.14s ease-in-out;
  -moztransition: all 0.14s ease-in-out;
  -ms-transition: all 0.14s ease-in-out;
  -o-transition: all 0.14s ease-in-out;
  transition: all 0.14s ease-in-out;
}
.ext-link:hover:before, .ext-link:focus:before, .ext-link:active:before,
.ext-link:visited:hover:before,
.ext-link:visited:focus:before,
.ext-link:visited:active:before,
.download:hover:before,
.download:focus:before,
.download:active:before,
.download:visited:hover:before,
.download:visited:focus:before,
.download:visited:active:before {
  background-color: rgb(255, 66, 0);
}
.ext-link:before,
.ext-link:visited:before,
.download:before,
.download:visited:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  background-color: #000078;
  height: 40px;
  width: 40px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.14s ease-in-out;
  -moztransition: all 0.14s ease-in-out;
  -ms-transition: all 0.14s ease-in-out;
  -o-transition: all 0.14s ease-in-out;
  transition: all 0.14s ease-in-out;
}

.ext-link:before,
.ext-link:visited:before {
  background-image: url(../images/link.svg);
}

.download:before,
.download:visited:before {
  background-image: url(../images/download.svg);
}

.press-sidebar .download:before,
.press-sidebar .download:visited:before {
  background-color: #fff;
  background-image: url(../images/download-d.svg);
}
.press-sidebar .download:hover:before, .press-sidebar .download:focus:before, .press-sidebar .download:active:before,
.press-sidebar .download:visited:hover:before,
.press-sidebar .download:visited:focus:before,
.press-sidebar .download:visited:active:before {
  background-color: rgb(255, 66, 0);
}

.close-btn,
.close-popup,
.close-quickdonate {
  position: absolute;
  right: 0.75rem;
  top: 0.25rem;
  font-size: 2em;
  color: #000 !important;
  outline: none;
}
.close-btn:hover, .close-btn:focus, .close-btn:active,
.close-popup:hover,
.close-popup:focus,
.close-popup:active,
.close-quickdonate:hover,
.close-quickdonate:focus,
.close-quickdonate:active {
  color: rgb(255, 66, 0) !important;
}

.close-popup {
  color: #000 !important;
}
.close-popup.continue-btn {
  font-size: 1rem;
  color: #000078 !important;
  font-weight: 700;
  top: 1.35rem;
}

.close-btn {
  color: #fff !important;
}

#close-donate {
  color: #000078 !important;
}

.text-link {
  text-transform: uppercase;
  text-decoration: underline;
  font-size: 0.875rem;
  font-weight: 700;
  display: block;
}
.lyellow-btn, .lyellow-btn:visited {
  background-color: transparent;
  border: 4px solid #FFF5B2;
  color: #FFF5B2;
}
.lyellow-btn:hover, .lyellow-btn:focus, .lyellow-btn:active, .lyellow-btn:visited:hover, .lyellow-btn:visited:focus, .lyellow-btn:visited:active {
  background-color: #FFF5B2;
  color: #000078;
}

.yellow-btn, .yellow-btn:visited {
  background-color: #FFDC00;
  border: 4px solid #000078;
  color: #000078;
}
.yellow-btn:hover, .yellow-btn:focus, .yellow-btn:active, .yellow-btn:visited:hover, .yellow-btn:visited:focus, .yellow-btn:visited:active {
  background-color: #000078;
  color: #FFDC00;
}

.inactive-btn {
  background-color: #FFF5B2;
  border: 4px solid #000078;
  color: #000078;
  cursor: auto;
  opacity: 0.5;
}

#updates-mailform input.gform_button {
  color: transparent;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  height: 36px;
  border: 1px solid rgb(255, 66, 0) !important;
  width: 50px;
  background-image: url("../images/submit-form-icon.png");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
  min-width: 0;
}
#updates-mailform input.gform_button:hover, #updates-mailform input.gform_button:active, #updates-mailform input.gform_button:focus {
  background-color: rgb(255, 66, 0);
  background-image: url("../images/submit-form-icon-white.png");
}

#homesignup-form input.gform_button {
  color: transparent;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  height: 50px;
  border: 4px solid #fff !important;
  width: 50px;
  background-image: url("../images/submit-form-icon-white.png");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
  min-width: 0;
  display: block;
  padding: 0;
}
#homesignup-form input.gform_button:hover, #homesignup-form input.gform_button:active, #homesignup-form input.gform_button:focus {
  outline: none;
  border-color: rgb(255, 66, 0) !important;
  background-color: transparent;
  background-image: url("../images/submit-form-icon.png");
}

.daypartmenu a, .daypartmenu a:visited {
  color: #000078;
  background-color: #fff;
  border-radius: 17px;
  border-width: 1px;
  border-style: solid;
  border-color: #000078;
  font-weight: 600;
  font-size: 0.875rem;
  height: 34px;
  line-height: 1;
  padding: 9px 18px 0;
  display: block;
}
.daypartmenu a:hover, .daypartmenu a:focus, .daypartmenu a:visited:hover, .daypartmenu a:visited:focus {
  color: #fff;
  background-color: #000078;
}
.daypartmenu a:hover .astroicon path, .daypartmenu a:focus .astroicon path, .daypartmenu a:visited:hover .astroicon path, .daypartmenu a:visited:focus .astroicon path {
  stroke: #fff !important;
}
.daypartmenu a:hover .astroicon circle, .daypartmenu a:focus .astroicon circle, .daypartmenu a:visited:hover .astroicon circle, .daypartmenu a:visited:focus .astroicon circle {
  stroke: #fff !important;
}
.daypartmenu .night a, .daypartmenu .night a:visited,
.daypartmenu .day a,
.daypartmenu .day a:visited {
  position: relative;
  padding-right: 40px;
}
.daypartmenu .night a .astroicon, .daypartmenu .night a:visited .astroicon,
.daypartmenu .day a .astroicon,
.daypartmenu .day a:visited .astroicon {
  position: absolute;
  right: 18px;
  top: 9px;
  width: 14px;
  height: 14px;
}

/*********************
INPUTS
*********************/
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
.ginput_container_fileupload,
input[type=tel],
input[type=color],
select,
textarea,
.field {
  display: block;
  height: 48px;
  line-height: 48px;
  padding: 0 12px;
  font-size: 1em;
  color: #000;
  border-radius: 0;
  vertical-align: middle;
  box-shadow: none;
  border: 2px solid #000078;
  width: 100%;
  font-family: "Dazzed", sans-serif;
  background-color: #fff;
  -webkit-transition: background-color 0.24s ease-in-out;
  -moztransition: background-color 0.24s ease-in-out;
  -ms-transition: background-color 0.24s ease-in-out;
  -o-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
}
input[type=text]:focus, input[type=text]:active,
input[type=password]:focus,
input[type=password]:active,
input[type=datetime]:focus,
input[type=datetime]:active,
input[type=datetime-local]:focus,
input[type=datetime-local]:active,
input[type=date]:focus,
input[type=date]:active,
input[type=month]:focus,
input[type=month]:active,
input[type=time]:focus,
input[type=time]:active,
input[type=week]:focus,
input[type=week]:active,
input[type=number]:focus,
input[type=number]:active,
input[type=email]:focus,
input[type=email]:active,
input[type=url]:focus,
input[type=url]:active,
input[type=search]:focus,
input[type=search]:active,
.ginput_container_fileupload:focus,
.ginput_container_fileupload:active,
input[type=tel]:focus,
input[type=tel]:active,
input[type=color]:focus,
input[type=color]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  border-color: #5d5d23;
  outline: none;
}
input[type=text].error, input[type=text].is-invalid,
input[type=password].error,
input[type=password].is-invalid,
input[type=datetime].error,
input[type=datetime].is-invalid,
input[type=datetime-local].error,
input[type=datetime-local].is-invalid,
input[type=date].error,
input[type=date].is-invalid,
input[type=month].error,
input[type=month].is-invalid,
input[type=time].error,
input[type=time].is-invalid,
input[type=week].error,
input[type=week].is-invalid,
input[type=number].error,
input[type=number].is-invalid,
input[type=email].error,
input[type=email].is-invalid,
input[type=url].error,
input[type=url].is-invalid,
input[type=search].error,
input[type=search].is-invalid,
.ginput_container_fileupload.error,
.ginput_container_fileupload.is-invalid,
input[type=tel].error,
input[type=tel].is-invalid,
input[type=color].error,
input[type=color].is-invalid,
select.error,
select.is-invalid,
textarea.error,
textarea.is-invalid,
.field.error,
.field.is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
  outline-color: #fbe3e4;
}
input[type=text].success, input[type=text].is-valid,
input[type=password].success,
input[type=password].is-valid,
input[type=datetime].success,
input[type=datetime].is-valid,
input[type=datetime-local].success,
input[type=datetime-local].is-valid,
input[type=date].success,
input[type=date].is-valid,
input[type=month].success,
input[type=month].is-valid,
input[type=time].success,
input[type=time].is-valid,
input[type=week].success,
input[type=week].is-valid,
input[type=number].success,
input[type=number].is-valid,
input[type=email].success,
input[type=email].is-valid,
input[type=url].success,
input[type=url].is-valid,
input[type=search].success,
input[type=search].is-valid,
.ginput_container_fileupload.success,
.ginput_container_fileupload.is-valid,
input[type=tel].success,
input[type=tel].is-valid,
input[type=color].success,
input[type=color].is-valid,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid,
.field.success,
.field.is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
  outline-color: #e6efc2;
}
input[type=text][disabled], input[type=text].is-disabled,
input[type=password][disabled],
input[type=password].is-disabled,
input[type=datetime][disabled],
input[type=datetime].is-disabled,
input[type=datetime-local][disabled],
input[type=datetime-local].is-disabled,
input[type=date][disabled],
input[type=date].is-disabled,
input[type=month][disabled],
input[type=month].is-disabled,
input[type=time][disabled],
input[type=time].is-disabled,
input[type=week][disabled],
input[type=week].is-disabled,
input[type=number][disabled],
input[type=number].is-disabled,
input[type=email][disabled],
input[type=email].is-disabled,
input[type=url][disabled],
input[type=url].is-disabled,
input[type=search][disabled],
input[type=search].is-disabled,
.ginput_container_fileupload[disabled],
.ginput_container_fileupload.is-disabled,
input[type=tel][disabled],
input[type=tel].is-disabled,
input[type=color][disabled],
input[type=color].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}
input[type=text][disabled]:focus, input[type=text][disabled]:active, input[type=text].is-disabled:focus, input[type=text].is-disabled:active,
input[type=password][disabled]:focus,
input[type=password][disabled]:active,
input[type=password].is-disabled:focus,
input[type=password].is-disabled:active,
input[type=datetime][disabled]:focus,
input[type=datetime][disabled]:active,
input[type=datetime].is-disabled:focus,
input[type=datetime].is-disabled:active,
input[type=datetime-local][disabled]:focus,
input[type=datetime-local][disabled]:active,
input[type=datetime-local].is-disabled:focus,
input[type=datetime-local].is-disabled:active,
input[type=date][disabled]:focus,
input[type=date][disabled]:active,
input[type=date].is-disabled:focus,
input[type=date].is-disabled:active,
input[type=month][disabled]:focus,
input[type=month][disabled]:active,
input[type=month].is-disabled:focus,
input[type=month].is-disabled:active,
input[type=time][disabled]:focus,
input[type=time][disabled]:active,
input[type=time].is-disabled:focus,
input[type=time].is-disabled:active,
input[type=week][disabled]:focus,
input[type=week][disabled]:active,
input[type=week].is-disabled:focus,
input[type=week].is-disabled:active,
input[type=number][disabled]:focus,
input[type=number][disabled]:active,
input[type=number].is-disabled:focus,
input[type=number].is-disabled:active,
input[type=email][disabled]:focus,
input[type=email][disabled]:active,
input[type=email].is-disabled:focus,
input[type=email].is-disabled:active,
input[type=url][disabled]:focus,
input[type=url][disabled]:active,
input[type=url].is-disabled:focus,
input[type=url].is-disabled:active,
input[type=search][disabled]:focus,
input[type=search][disabled]:active,
input[type=search].is-disabled:focus,
input[type=search].is-disabled:active,
.ginput_container_fileupload[disabled]:focus,
.ginput_container_fileupload[disabled]:active,
.ginput_container_fileupload.is-disabled:focus,
.ginput_container_fileupload.is-disabled:active,
input[type=tel][disabled]:focus,
input[type=tel][disabled]:active,
input[type=tel].is-disabled:focus,
input[type=tel].is-disabled:active,
input[type=color][disabled]:focus,
input[type=color][disabled]:active,
input[type=color].is-disabled:focus,
input[type=color].is-disabled:active,
select[disabled]:focus,
select[disabled]:active,
select.is-disabled:focus,
select.is-disabled:active,
textarea[disabled]:focus,
textarea[disabled]:active,
textarea.is-disabled:focus,
textarea.is-disabled:active,
.field[disabled]:focus,
.field[disabled]:active,
.field.is-disabled:focus,
.field.is-disabled:active {
  background-color: #d5edf8;
}

input[type=file] {
  line-height: 1.2;
}

.ginput_container_fileupload .screen-reader-text {
  float: left;
}

textarea {
  max-width: 100%;
  min-height: 90px;
  line-height: 1.5em;
}

select {
  -webkit-appearance: none; /* 1 */
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: right 1em center;
}

.event-search form {
  margin-top: 1em;
}
.event-search label {
  display: none;
}

.dropdown {
  width: 100%;
  float: left;
  overflow-y: visible;
  border-radius: 16px;
  position: relative;
}
.dropdown.active dd {
  visibility: visible;
  opacity: 1;
  top: 50px;
}
.dropdown dd span {
  padding: 3px 1em;
  display: block;
}
.dropdown li {
  padding: 5px 0;
  overflow: hidden;
}

.dropdown dd {
  visibility: hidden;
  opacity: 0;
  width: calc(100% + 2px);
  position: absolute;
  margin: 0 0 0 -8px;
  border-radius: 0;
  top: 30px;
  padding: 0 1em;
  z-index: 11;
  -webkit-transition: 0.2s ease-in-out;
  -moztransition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  background-color: #D7A0FF;
}
.dropdown dd a, .dropdown dd a:visited {
  color: #5d5d23;
  font-weight: 600;
}

.gform_wrapper {
  margin-bottom: 2.5em;
  display: block !important;
}
.gform_wrapper ul, .gform_wrapper li {
  list-style: none;
}

.gform_validation_container {
  display: none !important;
}

.event-search .search-field {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #000078;
  border-radius: 0;
  display: inline-block;
}
.event-search .search-field:hover, .event-search .search-field:focus, .event-search .search-field:active {
  background-color: transparent;
  outline: none;
}
.event-search input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  color: #000078;
  font-weight: 700;
  display: inline-block;
  outline: none;
}

.event-search .search-field {
  max-width: 540px;
}

.gfield_visibility_hidden {
  display: none !important;
}

.number-hidden {
  display: none !important;
}

#gform_5 label {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
#gform_5 input {
  border-color: #fff;
  height: 40px;
  margin-top: 0.25rem;
}
#gform_5 .ginput_container {
  width: 100%;
  margin-left: 0;
}
#gform_5 .gform_footer {
  margin-top: 0;
}

#gform_7 {
  margin-top: 4em;
}

#gform_2 {
  margin-top: 2em;
}

#field_7_14 .gfield_label, #field_1_44 .gfield_label {
  display: none;
}
#field_7_14 .ginput_container, #field_1_44 .ginput_container {
  margin-left: 0;
  width: 100%;
}

.gform_footer {
  margin-top: 2em;
}

li.gfield {
  margin-bottom: 14px;
}
li.gfield .instruction {
  display: none;
}
li.gfield .ginput_complex label {
  font-size: 0.8em;
  width: 100%;
  display: none;
}
li.gfield .ginput_complex input {
  margin-bottom: 14px;
}
li.gfield .ginput_complex > span:last-of-type input {
  margin-bottom: 0;
}

.gfield_checkbox {
  margin-top: 0;
}
.gfield_checkbox label {
  float: right !important;
  width: calc(100% - 2em) !important;
}

.ui-datepicker {
  background-color: #DFF7F2;
  padding: 1em 2em;
  text-transform: lowercase;
}
.ui-datepicker select {
  margin-bottom: 0.5em;
}

.ui-datepicker-next, .ui-datepicker-prev {
  display: none;
}

.side-form .gfield label, .side-form .gfield .gfield_description {
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}
.side-form .gsection_title {
  text-align: left;
}
.side-form .gfield_radio li {
  margin-bottom: 0.2em;
}
.side-form .gfield_checkbox li {
  zoom: 1;
}
.side-form .gfield_checkbox li:before, .side-form .gfield_checkbox li:after {
  content: "";
  display: table;
}
.side-form .gfield_checkbox li:after {
  clear: both;
}
.side-form .gform_hidden {
  display: none !important;
}

.gfield.extra-space {
  margin-top: 2em;
}

.ginput_container_consent input[type=checkbox] {
  margin-right: 0.25em;
}

#homesignup-form input[type=text],
#homesignup-form input[type=email],
#homesignup-form textarea,
#homesignup-form .field,
.updates-mailform input[type=text],
.updates-mailform input[type=email],
.updates-mailform textarea,
.updates-mailform .field,
.newsletter-footer input[type=text],
.newsletter-footer input[type=email],
.newsletter-footer textarea,
.newsletter-footer .field {
  color: rgb(255, 66, 0);
  border-radius: 0;
  vertical-align: middle;
  box-shadow: none;
  border: 1px solid rgb(255, 66, 0);
  background-color: transparent;
}
#homesignup-form input[type=text]:focus, #homesignup-form input[type=text]:active,
#homesignup-form input[type=email]:focus,
#homesignup-form input[type=email]:active,
#homesignup-form textarea:focus,
#homesignup-form textarea:active,
#homesignup-form .field:focus,
#homesignup-form .field:active,
.updates-mailform input[type=text]:focus,
.updates-mailform input[type=text]:active,
.updates-mailform input[type=email]:focus,
.updates-mailform input[type=email]:active,
.updates-mailform textarea:focus,
.updates-mailform textarea:active,
.updates-mailform .field:focus,
.updates-mailform .field:active,
.newsletter-footer input[type=text]:focus,
.newsletter-footer input[type=text]:active,
.newsletter-footer input[type=email]:focus,
.newsletter-footer input[type=email]:active,
.newsletter-footer textarea:focus,
.newsletter-footer textarea:active,
.newsletter-footer .field:focus,
.newsletter-footer .field:active {
  border-color: #000078;
  outline: none;
}
#homesignup-form .hidden_label label,
.updates-mailform .hidden_label label,
.newsletter-footer .hidden_label label {
  display: none;
}

.newsletter-footer input[type=text],
.newsletter-footer input[type=email],
.newsletter-footer textarea,
.newsletter-footer .field {
  border: 4px solid rgb(255, 66, 0);
  background-color: transparent;
}
.newsletter-footer .gfield_checkbox {
  color: rgb(255, 66, 0);
}

#homesignup-form input[type=text],
#homesignup-form input[type=email],
#homesignup-form textarea,
#homesignup-form .field,
.updates-mailform input[type=text],
.updates-mailform input[type=email],
.updates-mailform textarea,
.updates-mailform .field {
  display: block;
  height: 36px;
  line-height: 36px;
  padding: 4px 10px 0;
  font-size: 14px;
  width: 100%;
}
#homesignup-form ::placeholder,
.updates-mailform ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgb(255, 66, 0);
  opacity: 1; /* Firefox */
}
#homesignup-form :-ms-input-placeholder,
.updates-mailform :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: rgb(255, 66, 0);
}
#homesignup-form ::-ms-input-placeholder,
.updates-mailform ::-ms-input-placeholder { /* Microsoft Edge */
  color: rgb(255, 66, 0);
}
#homesignup-form .validation_error,
.updates-mailform .validation_error {
  display: none;
}
#homesignup-form .validation_error, #homesignup-form .validation_message,
.updates-mailform .validation_error,
.updates-mailform .validation_message {
  margin-left: 0;
}
#homesignup-form .gform_footer,
.updates-mailform .gform_footer {
  margin-top: 0;
  width: 50px;
  position: absolute;
  right: 0;
  bottom: 0;
}
#homesignup-form .gform_body,
.updates-mailform .gform_body {
  width: calc(100% - 50px - 12px);
  margin-right: 12px;
}
#homesignup-form .gform_wrapper,
.updates-mailform .gform_wrapper {
  margin-bottom: 0;
}
#homesignup-form form,
.updates-mailform form {
  position: relative;
}

#homesignup-form input[type=text],
#homesignup-form input[type=email],
#homesignup-form textarea,
#homesignup-form .field {
  height: 50px;
  line-height: 50px;
  padding: 4px 10px 0;
  font-size: 14px;
  color: #fff;
  background-color: transparent;
  border: 4px solid #fff;
}
#homesignup-form input[type=text]:focus, #homesignup-form input[type=text]:active,
#homesignup-form input[type=email]:focus,
#homesignup-form input[type=email]:active,
#homesignup-form textarea:focus,
#homesignup-form textarea:active,
#homesignup-form .field:focus,
#homesignup-form .field:active {
  border-color: #fff;
  background-color: transparent;
  outline: none;
}
#homesignup-form .hidden_label label {
  display: none;
}
#homesignup-form ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1; /* Firefox */
}
#homesignup-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
}
#homesignup-form ::-ms-input-placeholder { /* Microsoft Edge */
  color: #fff;
}

@media (min-width: 768px) {
  .gfield label, .gfield .gfield_description {
    float: left;
    width: 25%;
    clear: left;
  }
  .gfield label.validation_message, .gfield .gfield_description.validation_message {
    width: 100%;
  }
  .gfield .gfield_description {
    color: #9fa6b4;
  }
  .gfield .ginput_container {
    float: right;
    width: 70%;
    margin-left: 5%;
  }
  .side-form label, .side-form .gfield_description {
    width: 100%;
  }
  .side-form .gfield_description {
    width: 100%;
  }
  .side-form .gfield .ginput_container {
    width: 100%;
  }
  .side-form .gfield .ginput_container label {
    float: none;
    width: auto;
  }
  #gform_17 .gform_body,
  #gform_18 .gform_body {
    width: 74%;
    float: left;
  }
  #gform_17 .gform_footer,
  #gform_18 .gform_footer {
    width: 24%;
    float: right;
    margin-top: 1em;
  }
  #gform_17 .gform_fields > li,
  #gform_18 .gform_fields > li {
    float: left;
    width: 31.33%;
    margin-right: 3%;
  }
  #gform_17 .gform_fields > li:nth-of-type(3),
  #gform_18 .gform_fields > li:nth-of-type(3) {
    margin-right: 0;
  }
  #gform_17 .ginput_container,
  #gform_18 .ginput_container {
    float: none;
    width: 100%;
    margin-left: 0;
  }
  #homesignup-form .gform_fields,
  #updates-mailform .gform_fields {
    margin-bottom: 0;
    zoom: 1;
  }
  #homesignup-form .gform_fields:before, #homesignup-form .gform_fields:after,
  #updates-mailform .gform_fields:before,
  #updates-mailform .gform_fields:after {
    content: "";
    display: table;
  }
  #homesignup-form .gform_fields:after,
  #updates-mailform .gform_fields:after {
    clear: both;
  }
  #homesignup-form .gform_fields > li,
  #updates-mailform .gform_fields > li {
    float: left;
    width: calc(50% - 6px);
    margin-bottom: 0;
  }
  #homesignup-form .gform_fields > li:first-of-type,
  #updates-mailform .gform_fields > li:first-of-type {
    margin-right: 12px;
  }
  #homesignup-form .gform_footer,
  #updates-mailform .gform_footer {
    top: 0;
    bottom: auto;
  }
  #homesignup-form .ginput_container,
  #updates-mailform .ginput_container {
    float: none;
    width: 100%;
    margin-left: 0;
  }
  .quickdonate .gfield_price.halfwidth label {
    width: calc(50% - 0.5em);
  }
  .quickdonate .gfield_price.halfwidth div.ginput_container {
    width: calc(50% - 0.5em);
    margin-left: 0.5em;
  }
}
@media (min-width: 1024px) {
  .side-form .gfield .gfield_description,
  .side-form .gfield .ginput_container {
    float: right;
    width: 70%;
    margin-left: 5%;
  }
  .side-form .gfield label {
    width: 25%;
    margin-bottom: 0;
    margin-top: 0;
  }
  /*  #gform_17,
    #gform_18 {

      .gform_fields {

        > li {
          float: left;
          width: 24%;
          margin-right: 2%;

          &:first-of-type {
            width: 48%;

            .ginput_complex {
              span {
                float: left;
                width: 48%;
                margin-right: 4%;

                &:last-of-type {
                  margin-right: 0;
                }
              }
            }
          }

          &:last-of-type {
            width: 24%;
            margin-right: 0;
          }
        }
      }

      .ginput_container {
        float: none;
        width: 100%;
        margin-left: 0;
      }
    }*/
}
.gsection_title {
  text-align: center;
  margin-bottom: 0 !important;
}

.ginput_preview {
  clear: both;
}
.ginput_preview img {
  margin: 0 !important;
}

.ginput_container_fileupload {
  height: auto;
  line-height: 28px;
  padding: 0.5em;
}
.ginput_container_fileupload .screen-reader-text {
  display: none;
}

#gform_preview_3_4 .ginput_preview {
  padding-left: 30%;
}

.gfield .ginput_container_date .clear-multi div {
  width: 32%;
  float: left;
  margin-left: 0;
  margin-right: 2%;
}
.gfield .ginput_container_date .clear-multi div:nth-of-type(3) {
  margin-right: 0;
}
.gform_confirmation_message {
  margin: 2em 0;
}

#gform_5 .validation_error {
  display: none;
}
#gform_5 .validation_message {
  width: 100%;
  margin-left: 0;
}

.gform_validation_container,
.gform_hidden,
.gform_ajax_spinner {
  display: none;
}

#gform_17 .gfield_label,
#gform_18 .gfield_label {
  display: none;
}
#gform_17 .gfield_checkbox,
#gform_18 .gfield_checkbox {
  margin: 0;
}

.gfield_radio {
  margin: 0;
}
.gfield_radio label {
  float: none;
  margin-left: 0.5em;
}

.screen-reader-text {
  display: none;
}

.quickdonate .gfield_price > label,
#field_20_4 > label {
  display: none;
}
.quickdonate .gfield_price .ginput_container_radio,
#field_20_4 .ginput_container_radio {
  width: 100%;
}
.quickdonate .gfield_price .gfield_radio > li,
#field_20_4 .gfield_radio > li {
  text-align: center;
  background: #090059;
  background: -moz-linear-gradient(45deg, #090059 0%, #e50051 100%);
  background: -webkit-linear-gradient(45deg, #090059 0%, #e50051 100%);
  background: linear-gradient(45deg, #090059 0%, #e50051 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#090059", endColorstr="#e50051", GradientType=1);
  padding: 0.5em;
  margin-bottom: 1em;
}
.quickdonate .gfield_price .gfield_radio > li input,
#field_20_4 .gfield_radio > li input {
  display: none;
}
.quickdonate .gfield_price .gfield_radio > li input:checked + label,
#field_20_4 .gfield_radio > li input:checked + label {
  background-color: transparent;
  color: #fff;
}
.quickdonate .gfield_price .gfield_radio > li label,
#field_20_4 .gfield_radio > li label {
  width: 100%;
  height: 100%;
  margin: 0;
  display: block;
  cursor: pointer;
  background-color: #fff;
  padding: 0.5em;
  text-transform: uppercase;
  -webkit-transition: 0.14s ease-in-out;
  -moztransition: 0.14s ease-in-out;
  -ms-transition: 0.14s ease-in-out;
  -o-transition: 0.14s ease-in-out;
  transition: 0.14s ease-in-out;
  font-weight: bold;
}
.quickdonate .gfield_price .gfield_radio > li label:hover,
#field_20_4 .gfield_radio > li label:hover {
  background-color: transparent;
  color: #fff;
}
.quickdonate .gfield_price .gfield_radio > li label ul,
#field_20_4 .gfield_radio > li label ul {
  text-align: left;
}
.quickdonate .gfield_price .gfield_radio > li label ul li,
#field_20_4 .gfield_radio > li label ul li {
  font-weight: normal;
  text-transform: none;
  list-style: unset;
  list-style-position: outside;
  margin-left: 1.5em;
}
.quickdonate .gfield_price.halfwidth,
#field_20_4.halfwidth {
  width: calc(50% - 0.5em);
}

#field_20_4 .gfield_radio > li:nth-of-type(3) {
  margin-right: 0;
}

.quickdonate .gfield_price > label {
  display: block;
}
.quickdonate .gfield_price.hidden_label > label {
  display: none;
}

.ginput_price {
  display: none;
}

.gf_hidden {
  max-height: 0;
  overflow: hidden;
  margin: 0;
}

.gfield_total {
  font-weight: 700;
  border-top: 2px solid #000078;
  padding: 0.5em 0;
  border-bottom: 2px solid #000078;
  text-transform: uppercase;
}

.gfield.hidden_label .gfield_label {
  display: none !important;
}

#content, .editions-grid2, .editions-intro, .edition-dayparts, .contact-partners .about-partners, .contact-main, .main-call, .single-call, .call-footer, .account-content, .editions-top, .edition-pioneers, .edition-footer, .other-calls, .home-program, .pioneer-section, .program-feed, .home-news, .festivalpage-multiticket, .festival-pp, .festival-kassa, .festival-locations, .festival-discounts, .pioneer-main, .festival-bg, .home-featured, .single-news-page, .new-style .edition-lineup, .press-page, .single-event, .ticket-info-main {
  position: relative;
}
#content:before, #content:after, .editions-grid2:before, .editions-grid2:after, .editions-intro:before, .editions-intro:after, .edition-dayparts:before, .edition-dayparts:after, .contact-partners .about-partners:before, .contact-partners .about-partners:after, .contact-main:before, .contact-main:after, .main-call:before, .main-call:after, .single-call:before, .single-call:after, .call-footer:before, .call-footer:after, .account-content:before, .account-content:after, .editions-top:before, .editions-top:after, .edition-pioneers:before, .edition-pioneers:after, .edition-footer:before, .edition-footer:after, .other-calls:before, .other-calls:after, .home-program:before, .home-program:after, .pioneer-section:before, .pioneer-section:after, .program-feed:before, .program-feed:after, .home-news:before, .home-news:after, .festivalpage-multiticket:before, .festivalpage-multiticket:after, .festival-pp:before, .festival-pp:after, .festival-kassa:before, .festival-kassa:after, .festival-locations:before, .festival-locations:after, .festival-discounts:before, .festival-discounts:after, .pioneer-main:before, .pioneer-main:after, .festival-bg:before, .festival-bg:after, .home-featured:before, .home-featured:after, .single-news-page:before, .single-news-page:after, .new-style .edition-lineup:before, .new-style .edition-lineup:after, .press-page:before, .press-page:after, .single-event:before, .single-event:after, .ticket-info-main:before, .ticket-info-main:after {
  z-index: -1;
  background-repeat: repeat-y;
  background-size: 100% auto;
}

/***************** LILAC > white ********************/
.home-featured,
.festival-locations,
.contact-partners,
.about-partners,
.edition-dayparts,
.edition-footer,
.pioneer-section,
.festivalpage-multiticket {
  background-color: rgb(0, 160, 96);
}
.home-featured:before,
.festival-locations:before,
.contact-partners:before,
.about-partners:before,
.edition-dayparts:before,
.edition-footer:before,
.pioneer-section:before,
.festivalpage-multiticket:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/bg_new/black_left_01.svg);
  background-position: top left;
  left: 0;
  top: 2rem;
  width: 17.5vw;
  height: calc(100% - 2rem);
  z-index: 0;
}
.home-featured:after,
.festival-locations:after,
.contact-partners:after,
.about-partners:after,
.edition-dayparts:after,
.edition-footer:after,
.pioneer-section:after,
.festivalpage-multiticket:after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/bg_new/black_right_01.svg);
  background-position: top right;
  right: 0;
  top: 2rem;
  width: 17.5vw;
  height: calc(100% - 2rem);
  z-index: 0;
}

.festival-bg .home-featured:before, .festival-bg .home-featured:after {
  display: none;
}

/*************** BLUE > black *******************/
.home-news,
.home-program,
.program-feed,
.event-archive,
.single-event,
.editions-grid2,
.editions-top,
.edition-pioneers,
.contact-main,
.ticket-info-main,
.content-page,
.single-news-page,
.press-page,
.main-call,
.other-calls,
.account-content,
.single-call,
.call-footer,
.festival-pp,
.festival-discounts,
.pioneer-main,
.festival-kassa {
  background-color: rgb(0, 160, 96);
}
.home-news:before,
.home-program:before,
.program-feed:before,
.event-archive:before,
.single-event:before,
.editions-grid2:before,
.editions-top:before,
.edition-pioneers:before,
.contact-main:before,
.ticket-info-main:before,
.content-page:before,
.single-news-page:before,
.press-page:before,
.main-call:before,
.other-calls:before,
.account-content:before,
.single-call:before,
.call-footer:before,
.festival-pp:before,
.festival-discounts:before,
.pioneer-main:before,
.festival-kassa:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/bg_new/black_left_01.svg);
  background-position: top left;
  left: 0;
  top: 2rem;
  width: 17.5vw;
  height: calc(100% - 2rem);
  z-index: 0;
}
.home-news:after,
.home-program:after,
.program-feed:after,
.event-archive:after,
.single-event:after,
.editions-grid2:after,
.editions-top:after,
.edition-pioneers:after,
.contact-main:after,
.ticket-info-main:after,
.content-page:after,
.single-news-page:after,
.press-page:after,
.main-call:after,
.other-calls:after,
.account-content:after,
.single-call:after,
.call-footer:after,
.festival-pp:after,
.festival-discounts:after,
.pioneer-main:after,
.festival-kassa:after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/bg_new/black_right_01.svg);
  background-position: top right;
  right: 0;
  top: 2rem;
  width: 17.5vw;
  height: calc(100% - 2rem);
  z-index: 0;
}

/************** OLD ******************/
.festival-bg header,
.festival-bg section {
  position: relative;
  z-index: 2;
}
.festival-bg:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/bg/gmw-bg-home-festival.png);
  background-position: center left;
  left: 0;
  top: 0;
  bottom: 0;
  width: 15vw;
  background-size: contain;
  z-index: 0;
}
.festival-bg:after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/bg/gmw-bg-home-festival_b.png);
  background-position: center right;
  right: 0;
  top: 0;
  bottom: 0;
  width: 15vw;
  background-size: contain;
  z-index: 0;
}

/*** QUOTE BLOCKS ***/
.home-pro, .home-friend, .festival-hub, .festival-downloads, .contact-friend, .about-friend, .edition-social, .home-signupsection, .festival-app-banner {
  background-size: cover;
  background-position: center;
}

.home-pro {
  background-image: url(../images/bg/gmw-bg-fest-downloads.jpg);
}

.home-signupsection {
  background-image: url(../images/bg/gmw-bg-home-sub.jpg);
}

.home-friend, .contact-friend, .about-friend {
  background-image: url(../images/bg/gmw-bg-home-friend.jpg);
}

.festival-hub, .festival-app-banner {
  background-image: url(../images/bg/gmw-bg-fest-hub.jpg);
}

.festival-downloads {
  background-image: url(../images/bg/gmw-bg-fest-downloads-2.jpg);
}

.edition-social {
  background-image: url(../images/bg/gmw-bg-home-friend.jpg);
}

/*********************
INPUTS
*********************/
.custom-sections > section {
  padding: 2.5em 0 2.5em;
}
.custom-sections > section.no-pad {
  padding: 0;
}
.custom-sections > section.title-block {
  padding-bottom: 0;
}

.video-container.fw:before,
.img-container.fw:before {
  padding-bottom: 50%;
}

.visual-commentoverlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  font-size: 0.875rem;
  padding-bottom: 0.75rem;
}
.visual-commentoverlay:before {
  content: "";
  display: block;
  width: 100%;
  height: 44px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  position: absolute;
  bottom: 100%;
  left: 0;
}

.overlaytile {
  background-color: #fff;
  padding: 0.9375rem;
  box-shadow: 0 3px 6px rgba(9, 0, 89, 0.4);
  margin-bottom: 1.625rem;
}
.overlaytile h2,
.overlaytile h3 {
  font-size: 1rem;
  line-height: 1.375;
  margin-bottom: 1.125rem;
  margin-top: 1.125rem;
}
.overlaytile iframe {
  width: 100%;
  max-height: 12rem;
}

.quoteslide blockquote {
  margin: 0;
  font-size: 2.625em;
  font-weight: 600;
  font-family: "Dazzed", sans-serif;
  line-height: 1.18;
}

.mediaslider-block h2 {
  font-family: "Dazzed", sans-serif;
}

.edition-slider,
.mediaslider {
  margin-top: 1rem;
}

.slide-mediacontent {
  background-color: #fff;
  padding: 5px;
  overflow: hidden;
}
.slide-mediacontent iframe {
  display: block;
  width: 100%;
}

.title-block h2 {
  font-size: 2.625em;
  text-align: center;
  font-family: "Dazzed", sans-serif;
  font-weight: 600;
}

.hof-block {
  text-align: center;
  max-height: 32.5rem;
  overflow: hidden;
}
.hof-block h2 {
  text-align: center;
  font-family: "Dazzed", sans-serif;
}
.hof-block ul {
  margin-top: 2rem;
  list-style: none;
}
.hof-block.more {
  max-height: 9999px;
}

.block-section .entry-content blockquote {
  font-family: "Dazzed", sans-serif;
  margin-left: 33%;
}

.threecol-block .entry-content blockquote {
  padding: 0;
  color: rgb(255, 66, 0);
}
.threecol-block .entry-content img {
  width: 100%;
}

.threecol-block .entry-content h1, .threecol-block .entry-content h2, .threecol-block .entry-content h3,
.twocol-block .entry-content h1,
.twocol-block .entry-content h2,
.twocol-block .entry-content h3 {
  font-size: 1.375rem;
}
.threecol-block .entry-content h1, .threecol-block .entry-content h2, .threecol-block .entry-content h3, .threecol-block .entry-content h4, .threecol-block .entry-content h5,
.twocol-block .entry-content h1,
.twocol-block .entry-content h2,
.twocol-block .entry-content h3,
.twocol-block .entry-content h4,
.twocol-block .entry-content h5 {
  text-transform: none;
  font-family: "Dazzed", sans-serif;
  margin-top: 0;
  margin-bottom: 1rem;
}

/********* BREAKPOINTS *******/
@media (min-width: 768px) {
  .full-visual {
    position: relative;
  }
  .overlaytile {
    margin-top: 1.625rem;
  }
  .visual-tile-left {
    position: relative;
  }
  .visual-tile-left .img-container:before,
  .visual-tile-left .video-container:before {
    padding-bottom: 90%;
  }
  .visual-tile-right {
    position: relative;
  }
  .visual-tile-right .img-container,
  .visual-tile-right .video-container {
    position: absolute;
    max-height: 100%;
    left: 0;
    top: 0;
    width: calc(50% + 14.55rem);
  }
  .visual-tile-right .img-container:before,
  .visual-tile-right .video-container:before {
    padding-bottom: 60%;
  }
  .visual-tile-right .visual-commentoverlay {
    padding-left: 1.625rem;
    padding-right: 1.625rem;
  }
  .overlaytile.left {
    max-height: 39rem;
    overflow: hidden;
  }
  .overlaytile.right {
    margin-top: 8rem;
  }
  .full-visual-overlay.wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
  .overlaytile.left {
    float: left;
  }
  .overlaytile.right {
    float: right;
  }
  .quoteslide blockquote {
    font-size: 3.5rem;
  }
  .title-block h2 {
    font-size: 4rem;
  }
  .quoteslider {
    margin-left: calc(2.7rem + 1.25rem);
  }
  .hof-block ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
  }
}
@media (min-width: 1030px) {
  .quoteslider {
    margin-left: calc(3.96rem + 1.25rem);
  }
  .hof-block ul {
    columns: 3;
    -webkit-columns: 3;
    -moz-columns: 3;
  }
  .visual-tile-left .img-container:before,
  .visual-tile-left .video-container:before {
    padding-bottom: 70%;
  }
  .visual-tile-right .img-container,
  .visual-tile-right .video-container {
    width: calc(50% + 19.59rem);
    /*&:before {
      padding-bottom: 60%;
    }*/
  }
}
@media (min-width: 1240px) {
  .quoteslider {
    margin-left: calc(4.27rem + 1.25rem);
  }
  .visual-tile-left .img-container:before,
  .visual-tile-left .video-container:before {
    padding-bottom: 56%;
  }
  .visual-tile-right .img-container,
  .visual-tile-right .video-container {
    width: calc(50% + 20.83rem);
    /*&:before {
      padding-bottom: 60%;
    }*/
  }
}
/*********************
SLICK
*********************/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none !important;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  height: 24px;
  width: 24px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
  z-index: 20;
}
.slick-prev {
  left: -4rem;
  background-image: url("../images/slider_left.svg");
}

.slick-next {
  right: -4rem;
  background-image: url("../images/slider_right.svg");
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

/* Dots */
.slick-dots {
  list-style: none;
  display: block;
  text-align: right;
  padding: 0;
  margin: 2rem 0 0;
  width: 100%;
}
.slick-dots > li {
  display: inline-block;
}
.slick-dots > li:only-child {
  display: none;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  line-height: 10px;
  height: 14px;
  width: 14px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  background-color: rgba(0, 0, 0, 0.15);
  display: block;
  height: 14px;
  width: 14px;
  outline: none;
  cursor: pointer;
  opacity: 1;
  border-radius: 50%;
  color: transparent;
  padding: 0;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
  opacity: 0.8;
}
.slick-dots li.slick-active button {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.quotesslider .slick-slide {
  outline: none !important;
}

.edition-slider,
.mediaslider {
  width: calc(100% + 1.25rem);
  transform: translateX(-0.625rem);
  z-index: 1;
}
.edition-slider .mediaslide,
.mediaslider .mediaslide {
  padding: 0.625rem;
}

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/*********************
GENERAL STYLES
*********************/
body {
  font-family: "Dazzed", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #000;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.no-scroll {
  overflow: hidden;
  position: relative;
}
body.menu-active, body.search-active {
  position: fixed;
  overflow: hidden;
  left: 0;
  width: 100vw;
}
body.menu-active .header:after, body.search-active .header:after {
  opacity: 1;
}

/*.page {
  > section {
    padding-top: $section-padding-mob;
    padding-bottom: $section-padding-mob;
  }
}*/
/*********************
SMOOTHSTATE STYLES
*********************/
.site-content {
  transition: transform 0.28s, opacity 0.28s;
}

.slide-out .site-content {
  opacity: 0;
}

/*********************
LAYOUT & GRID STYLES
*********************/
img {
  max-width: 100%;
  height: auto;
}

#content.ticketshop-page {
  background-color: #E5E5EE;
}

.ticket-iframe {
  display: block;
  width: 100%;
  height: calc(90vh - 4em - 64px);
  border: none;
}

#container {
  top: 0;
  -webkit-transition: 0.25s ease-in-out;
  -moztransition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  position: relative;
  background-color: rgb(0, 160, 96);
}

.wrap, .wrap-s, .widecolumn {
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.fw-wrap {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.content-container {
  background-color: #fff;
  padding: 1.25rem 0.625rem;
  margin: 1.25rem 0;
  position: relative;
  z-index: 3;
}
.content-container.even {
  padding: 0.625rem;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
}

.widecolumn {
  padding-top: 2em;
}

#content {
  margin-top: 4.875rem;
  z-index: 2;
  min-height: 400px;
  position: relative;
}

/*.event-filter, #inner-content {
  padding-top: $content-padding-top;
}*/
.two-col > div {
  padding: 1.25rem 0;
  width: 100%;
  float: left;
  margin-bottom: 2em;
  border-top: 1px solid #000078;
  z-index: 1;
  position: relative;
}
.two-col > div:last-of-type {
  border-bottom: 1px solid #000078;
  margin-bottom: 2em;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
}

/*********************
LINK STYLES
*********************/
a, a:visited {
  color: #000078;
  text-decoration: none;
  /* on hover */
  /* on click */
}
a:hover, a:focus, a:visited:hover, a:visited:focus {
  color: rgb(255, 66, 0);
}
a:link, a:visited:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

a.back-btn {
  position: absolute;
  top: 0.5rem;
  left: 5%;
  z-index: 9;
  cursor: pointer;
  color: #fff;
}

.btn-container {
  padding: 1.5em 0 1.5em;
  text-align: center;
  clear: both;
  width: 100%;
}
.btn-container a {
  margin: 0 0.5em 1em;
}
.btn-container.no-pad {
  padding: 0;
}
.btn-container.no-pad a {
  margin: 0;
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, .h6 {
  text-rendering: optimizelegibility;
  font-weight: 700;
  margin-top: 0;
  /* removing text decoration from all headline links */
}
h1 a, h1 a:visited, .h1 a, .h1 a:visited, h2 a, h2 a:visited, .h2 a, .h2 a:visited, h3 a, h3 a:visited, .h3 a, .h3 a:visited, h4 a, h4 a:visited, .h4 a, .h4 a:visited, h5 a, h5 a:visited, .h5 a, .h5 a:visited, .h6 a, .h6 a:visited {
  text-decoration: none;
  color: #000078;
}
h1 a:hover, h1 a:focus, h1 a:active, h1 a:visited:hover, h1 a:visited:focus, h1 a:visited:active, .h1 a:hover, .h1 a:focus, .h1 a:active, .h1 a:visited:hover, .h1 a:visited:focus, .h1 a:visited:active, h2 a:hover, h2 a:focus, h2 a:active, h2 a:visited:hover, h2 a:visited:focus, h2 a:visited:active, .h2 a:hover, .h2 a:focus, .h2 a:active, .h2 a:visited:hover, .h2 a:visited:focus, .h2 a:visited:active, h3 a:hover, h3 a:focus, h3 a:active, h3 a:visited:hover, h3 a:visited:focus, h3 a:visited:active, .h3 a:hover, .h3 a:focus, .h3 a:active, .h3 a:visited:hover, .h3 a:visited:focus, .h3 a:visited:active, h4 a:hover, h4 a:focus, h4 a:active, h4 a:visited:hover, h4 a:visited:focus, h4 a:visited:active, .h4 a:hover, .h4 a:focus, .h4 a:active, .h4 a:visited:hover, .h4 a:visited:focus, .h4 a:visited:active, h5 a:hover, h5 a:focus, h5 a:active, h5 a:visited:hover, h5 a:visited:focus, h5 a:visited:active, .h5 a:hover, .h5 a:focus, .h5 a:active, .h5 a:visited:hover, .h5 a:visited:focus, .h5 a:visited:active, .h6 a:hover, .h6 a:focus, .h6 a:active, .h6 a:visited:hover, .h6 a:visited:focus, .h6 a:visited:active {
  color: #000078;
}

h1, .h1 {
  font-size: 2.75rem;
  line-height: 1em;
  margin: 0;
}
h1.edition-title, .h1.edition-title {
  font-size: 2rem;
  margin: 1em 0;
  text-align: center;
}
h1.edition-title span, .h1.edition-title span {
  color: #000078;
}

h2, .h2 {
  font-size: 2.25rem;
  line-height: 1.125;
  margin-bottom: 0;
}

h3, .h3, .page-title, .gsection_title {
  font-size: 1.75rem;
  line-height: 1.25em;
  margin-bottom: 0.75em;
}

/*.page-title, .section-title {
  margin-top: $section-padding-mob;
}*/
h4, .h4 {
  font-size: 1.375rem;
  line-height: 1.25em;
}

h5, .h5 {
  font-size: 1.125rem;
  line-height: 1.375em;
}

.h6 {
  font-size: 1.125rem;
  line-height: 1em;
  font-weight: 600;
  margin: 0;
}

.big-quote {
  font-weight: 600;
  font-size: 2.75rem;
  margin-bottom: 0.75em;
  text-transform: none;
  text-align: center;
  line-height: 1.2em;
  margin-top: 1em;
}

.section-title {
  text-transform: uppercase;
}

.icon {
  content: "";
  display: inline-block;
  position: relative;
  width: 26px;
  height: 26px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 6px;
}

.meta {
  display: none !important;
}

.locations-content h2.wp-block-heading, .locations-content h3.wp-block-heading, .locations-content h4.wp-block-heading, .locations-content h5.wp-block-heading, .locations-content h6.wp-block-heading {
  font-size: 1.75rem;
  line-height: 1.25em;
  margin-bottom: 0.75em;
}

/*********************
HEADER STYLES
*********************/
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 0.9375rem 0;
  background-color: rgb(0, 160, 96);
  z-index: 99;
  transition: background-color 0.3s ease-in-out;
}
.header:after {
  content: "";
  display: block;
  position: absolute;
  right: 5vw;
  bottom: 0;
  left: 5vw;
  height: 1px;
  background-color: #000;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

#inner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#logo {
  display: block;
  height: 3rem;
  fill: #000;
  z-index: 1;
}
#logo svg {
  display: block;
  width: auto;
  height: 100%;
}
#logo svg.header-logo-desktop {
  display: none;
}

.main-nav {
  display: none;
}

.utility-menu {
  display: flex;
  flex-direction: row;
  column-gap: 1.25rem;
}

.cart-toggle,
.playlist-toggle,
.search-toggle {
  display: block;
  height: 1.5rem;
  fill: #000;
  padding: 0;
}
.cart-toggle svg,
.playlist-toggle svg,
.search-toggle svg {
  display: block;
  width: auto;
  height: 100%;
}

.menu-toggle {
  position: relative;
  display: grid;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5rem;
  background: none;
  margin: 0;
  padding: 0;
  outline: none;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  z-index: 1;
}

.menu-toggle-label-opened,
.menu-toggle-label-closed {
  grid-column: 1;
  grid-row: 1;
  transition: opacity 0.3s ease-in-out;
}

.menu-toggle-label-opened {
  opacity: 0;
}

.secondary-nav {
  position: fixed;
  top: 4.875rem;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem 5vw;
  background-color: rgb(255, 66, 0);
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.secondary-nav.active {
  opacity: 1;
  pointer-events: auto;
}

.secondary-menu {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  margin: 0;
}
.secondary-menu li {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
.secondary-menu a, .secondary-menu a:visited {
  display: inline-block;
  color: #000;
  text-decoration: none;
}
.secondary-menu a:hover, .secondary-menu a:visited:hover {
  color: #000;
}

.tertiary-menu {
  display: flex;
  flex-direction: column;
  row-gap: 1.0625rem;
  margin: 4.375rem 0 0;
}
.tertiary-menu li {
  font-size: 1.625rem;
  line-height: 1;
}
.tertiary-menu a, .tertiary-menu a:visited {
  display: inline-block;
  color: #000;
  text-decoration: none;
}
.tertiary-menu a:hover, .tertiary-menu a:visited:hover {
  color: #000;
}

.language-menu {
  font-size: 1.25rem;
  line-height: 1.5rem;
  margin-bottom: 2.875rem;
}
.language-menu a, .language-menu a:visited {
  display: inline-block;
  text-decoration: none;
  color: #000;
}
.language-menu a:hover, .language-menu a:focus, .language-menu a:visited:hover, .language-menu a:visited:focus {
  color: #000;
}

.menu-active .header {
  background-color: rgb(255, 66, 0);
}
.menu-active .menu-toggle-label-closed {
  opacity: 0;
}
.menu-active .menu-toggle-label-opened {
  opacity: 1;
}

/*.header {
  //background-color: $lilac;
  background-color: $campaign_color;
  position: fixed;
  height: 50px;
  top: 50px;
  width: 100%;
  @include transition(0.25s ease-in-out);
  z-index: 99;

  &.no-top {
    top: 0;

    & + div {
      margin-top: 50px !important;
    }
  }
}*/
/*#inner-header {
  //background-color: $lilac;
  background-color: $campaign-color;
  position: relative;
  z-index: 30;
  min-height: 50px;
}*/
/*#logo {
  margin: 0.75em auto;
  position: relative;
  z-index: 9;
  display: block;
  width: 136px;


  img {
    width: 100%;
    display: block;
  }
}*/
.playlist-header {
  background-color: #000;
  color: #fff;
  font-weight: 600;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 999;
  line-height: 50px;
}
.playlist-header .playlist-btn {
  padding-right: 25px;
  background-image: url(../images/gmw-icon-muziek.svg);
  background-size: 15px;
  background-position: right center;
  background-repeat: no-repeat;
}
.playlist-header .playlist-btn:before {
  content: "show";
  display: inline;
  position: relative;
}
.playlist-header .playlist-btn.active:before {
  content: "hide";
}
.playlist-header span:first-of-type {
  display: none;
}

.pioneers-playlist {
  background-color: rgb(255, 66, 0);
  padding: 1.5em;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.45em;
}
.pioneers-playlist .playlist-btn2 {
  display: block;
  background-color: #fff;
  border: 1px solid #DFF7F2;
  height: 100%;
  width: 112px;
  float: left;
  text-align: center;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.5em;
  line-height: 1.2em;
  font-size: 0.875em;
  cursor: pointer;
  -webkit-transition: 0.25s ease-in-out;
  -moztransition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.pioneers-playlist .playlist-btn2 img {
  width: 50px;
  height: 50px;
}
.pioneers-playlist .playlist-btn2:hover, .pioneers-playlist .playlist-btn2:focus, .pioneers-playlist .playlist-btn2:active {
  background-color: #DFF7F2;
  border-color: #fff;
}
.pioneers-playlist > div {
  clear: both;
}

.search-bar {
  width: 100%;
  background-color: #fff;
  padding: 1em;
  opacity: 0;
  visibility: hidden;
  bottom: -120px;
  -webkit-transition: 0.25s ease-in-out;
  -moztransition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  position: fixed;
  z-index: 99;
  height: 120px;
}
.search-bar.active {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}

/*********************
NAVIGATION STYLES
*********************/
.icon-text {
  display: none;
  color: #5d5d23;
}

.cart-toggle {
  position: relative;
}

.cart-count {
  position: absolute;
  bottom: 0;
  right: 5px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 12px;
  border-radius: 50%;
  background-color: #000078;
  color: #fff;
  text-align: center;
}
.cart-count.hidden {
  display: none;
}

/*********************
POSTS & CONTENT STYLES
*********************/
.entry-content {
  /*
  image alignment on a screen this size may be
  a bit difficult. It's set to start aligning
  and floating images at the next breakpoint,
  but it's up to you. Feel free to change it up.
  */
}
.entry-content a {
  text-decoration: none;
  font-weight: 600;
}
.entry-content a[target=_blank]:after {
  content: "";
  display: inline-block;
  position: relative;
  width: 0.8em;
  height: 0.8em;
  background-image: url(../images/ext-link.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 0.25em;
  bottom: -2px;
}
.entry-content a[target=_blank]:hover:after, .entry-content a[target=_blank]:focus:after {
  background-image: url(../images/ext-link2.svg);
}
.entry-content a.mail-link:after {
  display: none !important;
}
.entry-content p {
  margin: 0 0 1.5em;
}
.entry-content ul {
  list-style: disc;
  list-style-position: inside;
}
.entry-content ol {
  list-style: decimal;
  list-style-position: inside;
}
.entry-content table {
  width: 100%;
  border: 1px solid #eaedf2;
  margin-bottom: 1.5em;
}
.entry-content table caption {
  margin: 0 0 7px;
  font-size: 0.75em;
  color: #9fa6b4;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.entry-content tr {
  border-bottom: 1px solid #eaedf2;
}
.entry-content tr:nth-child(even) {
  background-color: #f8f9fa;
}
.entry-content td {
  padding: 7px;
  border-right: 1px solid #eaedf2;
}
.entry-content td:last-child {
  border-right: 0;
}
.entry-content th {
  background-color: #f8f9fa;
  border-bottom: 1px solid #eaedf2;
  border-right: 1px solid #eaedf2;
}
.entry-content th:last-child {
  border-right: 0;
}
.entry-content blockquote {
  margin: 0 0 1.5em 0.75em;
  padding: 0 0 0 0.75em;
  border: none;
  font-style: italic;
  color: #9fa6b4;
}
.entry-content dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 1.5em;
}
.entry-content img {
  margin: 0 0 1.5em 0;
  max-width: 100%;
  height: auto;
}
.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail {
  max-width: 100%;
  height: auto;
}
.entry-content pre {
  background: #000;
  color: #f8f9fa;
  font-size: 0.9em;
  padding: 1.5em;
  margin: 0 0 1.5em;
  border-radius: 3px;
}
.entry-content .fluid-width-video-wrapper {
  margin-bottom: 1.5em;
}

/* end .entry-content */
.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
  /* images inside wp-caption */
}
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 4px 0 7px;
  text-align: center;
}

.tags {
  margin: 0;
}

/*********************
PAGE NAVI STYLES
*********************/
.pagination,
.wp-prev-next {
  margin: 0;
}

.pagination {
  text-align: center;
  width: 100%;
}
.pagination ul {
  display: inline-block;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
}
.pagination li {
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
}
.pagination a, .pagination span {
  margin: 0;
  text-decoration: none;
  line-height: 1em;
  font-size: 1.2em;
  padding: 0.75em;
  min-width: 1em;
  display: block;
  color: #000078;
  font-weight: 700;
}
.pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
  color: rgb(255, 66, 0);
}
.pagination .current {
  cursor: default;
  color: #000;
}
.pagination .current:hover, .pagination .current:focus {
  color: #000;
}

/* end .bones_page_navi */
/* fallback previous & next links */
.wp-prev-next .prev-link {
  float: left;
}
.wp-prev-next .next-link {
  float: right;
}

/* end .wp-prev-next */
/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  background-color: #000;
  color: #fff;
  z-index: 2;
  position: relative;
  padding: 2.5rem 0;
}
.footer h5 {
  text-transform: uppercase;
}
.footer .nav li {
  display: block;
}
.footer .nav li a {
  display: block;
  color: #fff;
  text-transform: lowercase;
}
.footer a {
  color: #fff;
}
.footer a:hover, .footer a:focus, .footer a:active {
  text-decoration: underline;
}
.footer .share a {
  background-color: #fff;
}
.footer .share a:hover svg, .footer .share a:focus svg, .footer .share a:active svg {
  fill: #000;
}
.footer .share svg {
  fill: #000;
}
.footer .share .st1 {
  fill: #fff;
}

.footer-partners {
  text-transform: lowercase;
}
.footer-partners a {
  display: block;
  clear: left;
  max-width: 180px;
}
.footer-partners a:hover, .footer-partners a:focus, .footer-partners a:active {
  color: #fff;
}
.footer-partners img {
  float: left;
  margin-right: 1.5em;
  height: 50px;
  margin-bottom: 0.5em;
  max-height: 100%;
  width: auto;
}

.footer-contact p {
  margin-top: 0;
}
.footer-contact a {
  text-decoration: underline;
}

.footer-copy {
  clear: both;
  border-top: 2px solid #fff;
  margin-top: 1.5em;
  font-size: 0.875em;
}

.footer-newsletter ul {
  margin: 0;
}
.footer-newsletter p {
  margin: 2em 0 0;
}
.footer-newsletter .gform_body,
.footer-newsletter .gform_footer {
  float: left;
}
.footer-newsletter .gform_body {
  margin-right: 0.5em;
  width: calc(100% - 48px);
}
.footer-newsletter .gform_footer .button {
  display: block;
  padding: 0;
  min-width: 0;
}

.pay-with img {
  height: 30px;
  width: auto;
  display: inline-block;
  position: relative;
  top: 10px;
}

.event-collab,
.event-header .event-sort,
.event-header-a .event-sort,
.featured-item > span {
  display: inline-block;
  color: #fff;
  background-color: #000078;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.875rem;
  margin: 1.5rem 0.5rem 0.75rem 0;
  height: 24px;
  line-height: 24px;
  padding: 0 8px;
}
.event-collab b,
.event-header .event-sort b,
.event-header-a .event-sort b,
.featured-item > span b {
  text-transform: uppercase;
  font-weight: 600;
}

.featured-item .watch-again {
  display: inline-block;
  color: #D7A0FF;
  margin: 0.5rem 0.5rem 0.75rem 0;
  font-weight: 600;
}

.event-collab .icon {
  width: 1rem;
  height: 1rem;
  background-image: url(../images/gmw-icon-ster.svg);
  top: 3px;
}

.event-header .event-sort,
.event-header .event-collab,
.event-header-a .event-collab {
  margin-top: 0;
}

.event-header-a .event-sort {
  margin-top: 0.5rem;
}

.event-header-a {
  position: relative;
}

/*********************
ARCHIVE EVENT
*********************/
.archive-event {
  border-top: 1px solid #000;
  position: relative;
  overflow: hidden;
  padding: 1.5em 0 0;
}
.archive-event a {
  color: #000;
  display: block;
}
.archive-event a:hover, .archive-event a:focus, .archive-event a:active {
  color: #000078;
}
.archive-event a:hover img, .archive-event a:focus img, .archive-event a:active img {
  opacity: 0.7;
}
.archive-event h3 {
  position: absolute;
  color: #fff;
  bottom: calc(100% + 1px);
  left: 0;
  padding: 0.5rem;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.66));
  font-size: 1.75rem;
  line-height: 1.25em;
  margin-bottom: 0.125rem;
}
.archive-event.postponed .date, .archive-event.postponed .time {
  position: relative;
}
.archive-event.postponed .date:after, .archive-event.postponed .time:after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: calc(100% - 24px);
  background-color: #000;
  bottom: 11px;
  right: 0;
}
.archive-event .arrow {
  width: 8px;
  height: auto;
  display: block;
  position: absolute;
  top: 0.5rem;
  left: 100%;
}

.data-byline {
  font-weight: 600;
  font-size: 0.875rem;
  margin: 0;
}
.data-byline span {
  display: inline-block;
  margin-right: 0.5em;
}

.event-header-a, .event-excerpt, .program-item-small, .featured-item, .daypartinfo-list, .daypart-sticky, .daypart-data {
  margin-bottom: 0.5em;
}
.event-header-a .byline, .event-excerpt .byline, .program-item-small .byline, .featured-item .byline, .daypartinfo-list .byline, .daypart-sticky .byline, .daypart-data .byline {
  font-weight: 700;
  margin: 0;
}
.event-header-a .byline span, .event-excerpt .byline span, .program-item-small .byline span, .featured-item .byline span, .daypartinfo-list .byline span, .daypart-sticky .byline span, .daypart-data .byline span {
  display: inline-block;
  margin-right: 0.5em;
  margin-bottom: 0em;
}
.event-header-a .date .icon, .event-excerpt .date .icon, .program-item-small .date .icon, .featured-item .date .icon, .daypartinfo-list .date .icon, .daypart-sticky .date .icon, .daypart-data .date .icon {
  background-image: url(../images/gmw-icon-datum.svg);
}
.event-header-a .date .icon:after, .event-excerpt .date .icon:after, .program-item-small .date .icon:after, .featured-item .date .icon:after, .daypartinfo-list .date .icon:after, .daypart-sticky .date .icon:after, .daypart-data .date .icon:after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/gmw-icon-datum-p.svg);
}
.event-header-a .time .icon, .event-excerpt .time .icon, .program-item-small .time .icon, .featured-item .time .icon, .daypartinfo-list .time .icon, .daypart-sticky .time .icon, .daypart-data .time .icon {
  background-image: url(../images/gmw-icon-tijd.svg);
}
.event-header-a .time .icon:after, .event-excerpt .time .icon:after, .program-item-small .time .icon:after, .featured-item .time .icon:after, .daypartinfo-list .time .icon:after, .daypart-sticky .time .icon:after, .daypart-data .time .icon:after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/gmw-icon-tijd-p.svg);
}
.event-header-a .location .icon, .event-excerpt .location .icon, .program-item-small .location .icon, .featured-item .location .icon, .daypartinfo-list .location .icon, .daypart-sticky .location .icon, .daypart-data .location .icon {
  background-image: url(../images/gmw-icon-locatie.svg);
}
.event-header-a .location .icon:after, .event-excerpt .location .icon:after, .program-item-small .location .icon:after, .featured-item .location .icon:after, .daypartinfo-list .location .icon:after, .daypart-sticky .location .icon:after, .daypart-data .location .icon:after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/gmw-icon-locatie-p.svg);
}
.event-header-a:hover .date .icon, .event-header-a:focus .date .icon, .event-header-a:active .date .icon, .event-excerpt:hover .date .icon, .event-excerpt:focus .date .icon, .event-excerpt:active .date .icon, .program-item-small:hover .date .icon, .program-item-small:focus .date .icon, .program-item-small:active .date .icon, .featured-item:hover .date .icon, .featured-item:focus .date .icon, .featured-item:active .date .icon, .daypartinfo-list:hover .date .icon, .daypartinfo-list:focus .date .icon, .daypartinfo-list:active .date .icon, .daypart-sticky:hover .date .icon, .daypart-sticky:focus .date .icon, .daypart-sticky:active .date .icon, .daypart-data:hover .date .icon, .daypart-data:focus .date .icon, .daypart-data:active .date .icon {
  background-image: url(../images/gmw-icon-datum-p.svg);
}
.event-header-a:hover .time .icon, .event-header-a:focus .time .icon, .event-header-a:active .time .icon, .event-excerpt:hover .time .icon, .event-excerpt:focus .time .icon, .event-excerpt:active .time .icon, .program-item-small:hover .time .icon, .program-item-small:focus .time .icon, .program-item-small:active .time .icon, .featured-item:hover .time .icon, .featured-item:focus .time .icon, .featured-item:active .time .icon, .daypartinfo-list:hover .time .icon, .daypartinfo-list:focus .time .icon, .daypartinfo-list:active .time .icon, .daypart-sticky:hover .time .icon, .daypart-sticky:focus .time .icon, .daypart-sticky:active .time .icon, .daypart-data:hover .time .icon, .daypart-data:focus .time .icon, .daypart-data:active .time .icon {
  background-image: url(../images/gmw-icon-tijd-p.svg);
}
.event-header-a:hover .location .icon, .event-header-a:focus .location .icon, .event-header-a:active .location .icon, .event-excerpt:hover .location .icon, .event-excerpt:focus .location .icon, .event-excerpt:active .location .icon, .program-item-small:hover .location .icon, .program-item-small:focus .location .icon, .program-item-small:active .location .icon, .featured-item:hover .location .icon, .featured-item:focus .location .icon, .featured-item:active .location .icon, .daypartinfo-list:hover .location .icon, .daypartinfo-list:focus .location .icon, .daypartinfo-list:active .location .icon, .daypart-sticky:hover .location .icon, .daypart-sticky:focus .location .icon, .daypart-sticky:active .location .icon, .daypart-data:hover .location .icon, .daypart-data:focus .location .icon, .daypart-data:active .location .icon {
  background-image: url(../images/gmw-icon-locatie-p.svg);
}

.pioneer-header .img-container:before,
.event-header .img-container:before {
  padding-bottom: 125%;
}

.event-headeroverlay .date .icon {
  background-image: url(../images/gmw-icon-datum-l.svg);
}
.event-headeroverlay .time .icon {
  background-image: url(../images/gmw-icon-tijd-l.svg);
}
.event-headeroverlay .location .icon {
  background-image: url(../images/gmw-icon-locatie-l.svg);
}

.event-buttons {
  margin-bottom: 1.5em;
}

header.event-thumb {
  margin-bottom: 1.5em;
  position: relative;
  min-height: 200px;
  background-color: #E5E5EE;
}
header.event-thumb img {
  display: block;
}

.status-label {
  position: absolute;
  top: 0.5em;
  right: 0;
  background-color: rgb(255, 66, 0);
  padding: 0.25em 0.75em;
  color: #fff;
  font-weight: 700;
}

.event-subtitle {
  text-transform: uppercase;
  margin: 0 0 1em;
}

.too-late {
  font-weight: bold;
  margin-bottom: 0.5em;
  display: block;
  /*  border: 2px solid $dark-blue;
    padding: 0.25em 0.5em;
  */
}

.event-combi {
  width: 100%;
  clear: both;
  position: relative;
  border-top: 1px solid #000078;
  padding: 1.5em 0;
}
.event-combi > a {
  color: #000;
}
.event-combi > a:hover, .event-combi > a:focus, .event-combi > a:active {
  color: #000078;
}
.event-combi .combi-title {
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
}
.event-combi .event-header-a {
  padding-top: 0.5em;
}
.event-combi .event-thumb {
  margin-bottom: 0;
}
.event-combi:hover .combi-tip, .event-combi:focus .combi-tip, .event-combi:active .combi-tip {
  background-color: #0000ab;
}

.combi-tip {
  background-color: #000078;
  color: #fff;
  width: 100%;
  display: block;
  height: 82px;
  line-height: 82px;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  font-size: 2.5rem !important;
}

.event-filter {
  font-weight: 700;
  text-transform: lowercase;
}

.cat-filter {
  color: #000078;
  display: none;
}
.cat-filter .expl {
  margin: 0.75em 0 0.5em;
  font-weight: bold;
}
.cat-filter ul {
  background-color: #fff;
  margin: 0;
}
.cat-filter .reset {
  top: 0.75rem;
  right: 0.75rem;
}
.cat-filter li {
  font-size: 1.25em;
  line-height: 1.1em;
  border-bottom: 2px solid transparent;
  position: relative;
  padding: 0.5em 1em;
}
.cat-filter li:hover a {
  color: rgb(255, 66, 0);
}
.cat-filter li.current {
  background-color: rgb(255, 66, 0);
}
.cat-filter li.current .reset,
.cat-filter li.current a {
  color: #fff;
}

.data-filters {
  background-color: #000078;
}
.data-filters dl.value-set dt a,
.data-filters dl.value-set dt a:visited {
  color: #D7A0FF;
}
.data-filters dl.value-set a:after {
  display: none;
}
.data-filters dt {
  border-bottom: 2px solid transparent;
  position: relative;
}
.data-filters dt a {
  color: #fff;
}
.data-filters dt a:hover, .data-filters dt a:focus, .data-filters dt a:active {
  color: #fff;
}
.data-filters dt a:hover:after, .data-filters dt a:focus:after, .data-filters dt a:active:after {
  top: 12px;
}
.data-filters dt a:first-of-type {
  max-width: calc(100% - 1em);
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
  white-space: nowrap;
}
.data-filters dt a:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 10px;
  background-image: url(../images/gmw-arrow-down-l.svg);
  background-size: contain;
  background-repeat: no-repeat;
  right: 0.25rem;
  top: 8px;
  -webkit-transition: top 0.25s ease-in-out;
  -moztransition: top 0.25s ease-in-out;
  -ms-transition: top 0.25s ease-in-out;
  -o-transition: top 0.25s ease-in-out;
  transition: top 0.25s ease-in-out;
}
.data-filters #show-filter {
  position: relative;
}
.data-filters #show-filter:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 10px;
  background-image: url(../images/gmw-arrow-down-l.svg);
  background-size: contain;
  background-repeat: no-repeat;
  right: 1rem;
  top: 1.25rem;
  -webkit-transition: top 0.25s ease-in-out;
  -moztransition: top 0.25s ease-in-out;
  -ms-transition: top 0.25s ease-in-out;
  -o-transition: top 0.25s ease-in-out;
  transition: top 0.25s ease-in-out;
}
.data-filters dd a:hover, .data-filters dd a:focus, .data-filters dd a:active {
  color: #000078;
  border-bottom: 2px solid #000078;
}
.data-filters dl, .data-filters .event-search, .data-filters #show-filter {
  float: left;
  margin: 0;
  padding: 0.75em 0.5em;
  display: block;
  color: #fff;
  border-radius: 0;
}
.data-filters .event-search dd {
  width: 84vw;
  padding-bottom: 1em;
}
.data-filters .event-search dd input {
  margin-top: -10px;
}
.data-filters .event-search,
.data-filters .event-date {
  border-right: 2px solid #fff;
}
.data-filters #show-filter {
  cursor: pointer;
}
.data-filters .event-ticket_type {
  display: none;
}
.data-filters .event-ticket_type dt a {
  /*&:before {
    @include pseudo(inline-block, absolute, "");
    width: 31px;
    height: 19px;
    background-image: url(../images/gmw-switch-off.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 6px;
    top: 2px;
    left: 0;
  }*/
}
.data-filters .event-ticket_type dt a:after {
  display: none;
}
.data-filters .reset {
  top: 2px;
}

.reset-filter {
  margin-top: 0.5rem;
  float: right;
  color: rgb(255, 66, 0);
  text-decoration: underline;
}
.reset-filter:hover, .reset-filter:focus, .reset-filter:active {
  text-decoration: none;
}

.no-events-found {
  text-align: center;
  max-width: 540px;
  margin: 0.5em auto 2em;
}

.sticky-menucontainer {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 78px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fff;
  height: calc(34px + 2rem);
  width: 100%;
  z-index: 50;
}

.daypartmenu-container {
  overflow: hidden;
  width: calc(100% - 33px);
  height: 34px;
  padding-right: 0.5rem;
}
.daypartmenu-container .daypartmenu {
  overflow: scroll;
  padding-bottom: 4rem;
}
.daypartmenu-container .daypartmenu ul {
  white-space: nowrap;
  margin: 0;
}
.daypartmenu-container .daypartmenu ul li {
  display: inline-block;
  margin-right: 1rem;
}
.layout-toggle {
  position: absolute;
  right: 0;
  top: 1rem;
  display: block;
  width: 34px;
  height: 34px;
  background-color: #000078;
  color: #fff;
  z-index: 99;
}
.layout-toggle svg {
  width: 20px;
  height: auto;
  display: block;
  position: absolute;
  top: 7px;
  right: 6px;
  margin: 0 auto;
}
.layout-toggle #list-icon {
  top: 9px;
}
.layout-toggle span {
  display: none;
  font-size: 14px;
  font-weight: 400;
  color: #000078;
}
.layout-toggle:before {
  content: "";
  position: absolute;
  left: -0.5rem;
  height: 44px;
  top: -5px;
  width: 1px;
  background-color: #000078;
}

.pp-cta {
  color: black;
  padding: 2.5rem 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  background-image: url("../images/bg_new/cta_bg_campaign.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgb(0, 160, 96);
}

.daypart-sticky {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 144px;
  background-color: #fff;
  z-index: 10;
  border-top: 1px solid #000;
  padding-top: 1em;
  padding-bottom: 1rem;
  margin-bottom: 0 !important;
  border-bottom: 1px solid black;
}
.daypart-sticky + ul {
  margin: 0;
}
.daypart-sticky + ul article:first-of-type {
  border-top: none;
}
.daypart-sticky h2 {
  margin: 0 0.5rem 0 0;
}
.daypart-sticky .byline {
  display: inline-block;
}
.daypart-sticky .main {
  float: left;
  width: calc(100% - 4.875rem - 1rem);
}
.daypart-sticky .event-buttons {
  float: right;
  width: 100px;
}
.daypart-sticky .event-buttons a {
  width: 100px;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
}

.daypartinfo-intro {
  text-align: center;
  margin: 0 auto 2rem;
}

.daypartinfo-list h2 {
  margin: 0 0.5rem 0 0;
}
.daypartinfo-list a, .daypartinfo-list a:visited {
  display: block;
  padding-right: 2rem;
  color: #000;
}
.daypartinfo-list a:hover, .daypartinfo-list a:focus, .daypartinfo-list a:active, .daypartinfo-list a:visited:hover, .daypartinfo-list a:visited:focus, .daypartinfo-list a:visited:active {
  color: #000078;
}
.daypartinfo-list a:hover .arrow path, .daypartinfo-list a:focus .arrow path, .daypartinfo-list a:active .arrow path, .daypartinfo-list a:visited:hover .arrow path, .daypartinfo-list a:visited:focus .arrow path, .daypartinfo-list a:visited:active .arrow path {
  fill: #000078 !important;
}
.daypartinfo-list .byline {
  display: inline-block;
}
.daypartinfo-list p {
  margin-bottom: 0;
}
.daypartinfo-list li {
  position: relative;
  padding: 1.5em 0;
  border-top: 1px solid #000;
}
.daypartinfo-list li:last-of-type {
  border-bottom: 1px solid #000;
}
.daypartinfo-list .arrow {
  width: 8px;
  height: auto;
  display: block;
  position: absolute;
  top: 1.9em;
  right: 0;
}

.timetable-container {
  position: relative;
  font-size: 15px;
  margin-bottom: 3rem;
}

.timetable-content {
  width: fit-content;
}

.timetable {
  overflow: scroll;
  padding-left: 140px;
  position: relative;
}

.timeline {
  display: flex;
  margin: 0;
  margin-left: -1.1rem;
  background-color: #fff;
  height: 2.5rem;
  padding: 1rem 0 0;
}
.timeline li {
  flex-grow: 0;
  flex-shrink: 0;
  display: block;
  width: 90px;
}
.timeline li:nth-child(even) {
  font-size: 14px;
  color: #929499;
}

.timetable-rows {
  margin: 0;
}
.timetable-rows ul {
  height: 4rem;
  margin: 0;
  background-image: linear-gradient(90deg, #929499 1px, #f8f9fa 1px);
  background-size: 45px;
  position: relative;
}
.timetable-rows ul:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(90deg, #000 2px, transparent 2px);
  background-size: 180px;
}
.timetable-rows ul:nth-child(even) {
  background-image: linear-gradient(90deg, #929499 1px, #E5E5EE 1px);
  background-size: 45px;
}
.timetable-rows ul li {
  position: absolute;
  height: 100%;
  width: 5px;
  transition: opacity 0.14s ease-in;
}
.timetable-rows ul li a, .timetable-rows ul li a:visited {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.25rem 0.5rem;
  background-color: #000078;
  border-bottom: 1px solid #60608c;
  color: #fff;
  overflow: hidden;
  line-height: 1.33;
  /*white-space: nowrap;
  text-overflow: ellipsis;*/
}
.timetable-rows ul li.hidden {
  opacity: 0;
}

.location-list {
  width: 140px;
  position: absolute;
  left: 0;
  top: 2.5rem;
  background-color: #fff;
  margin: 0;
}
.location-list li {
  height: 4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 6px;
  background-color: rgb(0, 160, 96);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.33;
}
.location-list li:nth-child(even) {
  background-color: #fff;
  color: #000;
}

/*********************
SINGLE EVENT
*********************/
.pioneer-header,
.event-header {
  position: relative;
}
.pioneer-header img,
.event-header img {
  display: block;
}

.pioneer-headeroverlay,
.event-headeroverlay {
  position: absolute;
  bottom: 0;
  color: #fff;
  padding: 1rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.66));
  width: 100%;
}
.pioneer-headeroverlay a, .pioneer-headeroverlay a:visited,
.event-headeroverlay a,
.event-headeroverlay a:visited {
  color: #fff;
}

.event-header .event-sort {
  position: absolute;
  display: block;
  top: 1rem;
  left: 1rem;
  margin-bottom: 0.3rem;
}

.event-footer > div, .pioneer-footer > div {
  border-top: 1px solid #000078;
}
.event-footer > div:last-of-type, .pioneer-footer > div:last-of-type {
  border-bottom: 1px solid #000078;
  margin-bottom: 4em;
}

.event-title span {
  font-size: 1rem;
}

.performers {
  margin: 1.5em 0;
}

.sidebar {
  margin-bottom: 2em;
}

.sidebar-folded {
  position: relative;
  margin-bottom: 2em;
}
.sidebar-folded h2 {
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid #000;
  margin-bottom: 0.5em;
  margin-top: 0;
  padding-bottom: 0.4rem;
}
.sidebar-folded button {
  display: block;
  position: absolute;
  right: 0.5em;
  top: 8px;
  height: 20px;
  overflow: hidden;
}
.sidebar-folded button span {
  background-image: url(../images/gmw-arrow-down-d.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  display: block;
  position: relative;
  top: 4px;
}
.sidebar-folded > div {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  -moztransition: 0.4s ease-in-out;
  -ms-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.sidebar-folded.active button span {
  transform: scaleY(-1);
  top: -4px;
}
.sidebar-folded.active > div {
  max-height: 1000px;
  opacity: 1;
}

.event-content {
  position: relative;
}
.event-content .updates-mailform {
  margin: 1.625rem 0;
  box-shadow: none;
}
.event-content .layout-toggle {
  top: 0;
}
.event-content .layout-toggle:before {
  display: none;
}

.map-dd {
  width: calc(100% - 36px);
  position: relative;
}
.map-dd button {
  display: block;
  position: absolute;
  right: 0;
  top: 4px;
  height: 20px;
  overflow: hidden;
}
.map-dd button span {
  background-image: url(../images/gmw-arrow-down-l.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  display: block;
  position: relative;
  top: 4px;
}
.map-dd button.active span {
  transform: scaleY(-1);
  top: -4px;
}

.event-address {
  display: block;
  width: calc(100% - 30px);
  line-height: 1.2;
  padding: 0.4rem 0;
  word-break: break-all;
}

.addeventatc {
  color: #000078;
  font-weight: 700;
  cursor: pointer;
}

.sidebar-partners {
  display: none;
}
.sidebar-partners img {
  width: auto;
  max-height: 40px;
  margin-right: 2%;
  height: auto;
}

.partner-section {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

/*********************
CONTACT
*********************/
#map {
  width: 100%;
  height: 30em;
  overflow: hidden;
  z-index: 8;
}
#map iframe {
  width: 100%;
  height: 100%;
}
#map h3 {
  font-size: 1.15rem;
}

#event-map {
  width: 100%;
  height: 300px;
  overflow: hidden;
  z-index: 8;
  max-height: 0;
  -webkit-transition: max-height 0.25s ease-in-out;
  -moztransition: max-height 0.25s ease-in-out;
  -ms-transition: max-height 0.25s ease-in-out;
  -o-transition: max-height 0.25s ease-in-out;
  transition: max-height 0.25s ease-in-out;
}
#event-map iframe {
  width: 100%;
  height: 100%;
}
#event-map.active {
  max-height: 999px;
}

.toggleMap {
  cursor: pointer;
}

.mapoverlay {
  background: transparent;
  position: absolute;
  width: 100%;
  height: 30em;
  z-index: 9;
  cursor: pointer;
}

.contact-partners,
.about-partners {
  text-align: center;
}
.contact-partners h5,
.about-partners h5 {
  margin-bottom: 0;
}

.partnergrid {
  margin-bottom: 4em;
}
.partnergrid:last-of-type {
  margin-bottom: 0;
}

.logogrid-item {
  display: inline-block;
  width: 50%;
  position: relative;
  margin: 0 -4px 0 0;
  padding: 1em;
}
.logogrid-item:after {
  content: "";
  display: block;
  position: relative;
  padding-bottom: 75%;
}
.logogrid-item img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
}

.contact-footer {
  padding-bottom: 2.5em;
}

/*********************
PROFS
*********************/
.call-entry {
  background-color: #000078;
  color: #fff;
  margin-bottom: 0.5em;
  text-align: center;
  padding: 1em 5em;
}
.call-entry a {
  color: #fff;
}
.call-entry a:hover, .call-entry a:active, .call-entry a:focus {
  color: #fff;
  text-decoration: underline;
}
.call-entry h4 {
  margin: 1em 0 0.5em;
}

.call-entries {
  padding: 2em 0;
}

.other-call {
  border-top: 1px solid #000078;
}
.other-call a {
  width: auto;
  margin: 0;
}

/*.call-cat {
  background-color: $white;
  padding: 1.5em 1.5em 0;
  margin-bottom: 1em;

  h4, p {
    margin-top: 0;
  }
}*/
.call-cat {
  border-top: 1px solid #000;
  padding: 2.5rem 0;
}

/*********************
SINGLE EVENT
*********************/
.single-event {
  padding-bottom: 4em;
}

.event-parent {
  padding: 1em;
  margin: 0;
}
.event-parent a {
  font-weight: 700;
  color: #fff !important;
}

.event-data {
  background-color: #000078;
  color: #fff;
  font-weight: 700;
  padding: 1em;
  margin: 0 0 1em;
}
.event-data a,
.event-data a:visited {
  color: #fff;
}
.event-data p {
  clear: both;
}
.event-data dl {
  margin-top: 0;
}
.event-data dt, .event-data dd {
  float: left;
  line-height: 2;
}
.event-data dt {
  clear: left;
  width: 35px;
}
.event-data .icon {
  top: 2px;
}
.event-data .price-icon {
  background-image: url(../images/gmw-icon-euro-l.svg);
}
.event-data .location-icon {
  background-image: url(../images/gmw-icon-locatie-l.svg);
}
.event-data .url-icon {
  background-image: url(../images/ext-link-l.svg);
}
.event-data .time-icon {
  background-image: url(../images/gmw-icon-tijd-l.svg);
}
.event-data .date-icon {
  background-image: url(../images/gmw-icon-datum-l.svg);
}
.event-data .star-icon {
  background-image: url(../images/gmw-icon-ster.svg);
}
.event-data.postponed .date, .event-data.postponed .time {
  position: relative;
}
.event-data.postponed .date:after, .event-data.postponed .time:after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #fff;
  bottom: 15px;
  right: 0;
}

.event-sidebar h5, .pioneer-sidebar h5 {
  border-bottom: 1px solid #000078;
  margin-bottom: 1em;
  margin-top: 1em;
}

.after-more {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  -webkit-transition: 0.25s ease-in-out;
  -moztransition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.after-more a, .after-more iframe, .after-more button {
  display: none;
}
.after-more p:first-of-type {
  margin-top: 0;
  font-weight: 400 !important;
}
.after-more > br {
  display: none;
}
.after-more.active {
  max-height: 9999px;
  opacity: 1;
}
.after-more.active a, .after-more.active button {
  display: inline-block;
}
.after-more.active iframe {
  display: block;
}

.entry-data dt {
  font-weight: 700;
}
.entry-data dd {
  margin-bottom: 1em;
}

.event-locations {
  margin-top: 3rem;
}

/*********************
SUBEVENT OVERVIEUW
*********************/
.subevent-grid article {
  margin-bottom: 1em;
}
.subevent-grid article .img-container:before {
  padding-bottom: 80%;
}
.subevent-grid article a {
  text-decoration: none !important;
  position: relative;
}
.subevent-grid article a:after {
  content: "";
  display: block;
  position: absolute;
  background: linear-gradient(45deg, #000078 0%, rgba(255, 230, 235, 0.25) 50%);
  opacity: 0.4;
  width: 100%;
  height: 100%;
  z-index: 3;
  top: 0;
  -webkit-transition: 0.1s ease-in;
  -moztransition: 0.1s ease-in;
  -ms-transition: 0.1s ease-in;
  -o-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
}
.subevent-grid article a:hover:after {
  background: linear-gradient(45deg, #000078 0%, rgba(255, 230, 235, 0.5) 100%);
  opacity: 0.7;
}
.subevent-grid article h2 {
  position: absolute;
  z-index: 4;
  padding: 0.5em;
  color: #fff;
  bottom: 0;
}
.subevent-grid .read-more {
  display: block;
  clear: both;
  margin-bottom: 1rem;
  padding-left: 0;
}

/*********************
POPUP EVENT
*********************/
.ticket-popup,
.quickdonate {
  position: absolute;
  height: 100%;
  width: 100%;
  top: -4.875rem;
  left: 0;
  background-color: rgba(9, 0, 89, 0.7);
  padding: 4em 1em;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.25s ease-in-out;
  -moztransition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  z-index: -1;
  -webkit-overflow-scrolling: touch; /* Avoid having to use 2 finger scroll on iOS    */
}
.ticket-popup.active,
.quickdonate.active {
  opacity: 1;
  visibility: visible;
  z-index: 999;
}
.ticket-popup.active .ticket-iframe-container,
.ticket-popup.active .quickdonate-content,
.quickdonate.active .ticket-iframe-container,
.quickdonate.active .quickdonate-content {
  top: 0;
}

.quickdonate {
  top: 0;
  padding: 2em 1em;
}
.quickdonate .validation_error {
  display: none;
}
.quickdonate h3 {
  margin-top: 0;
  width: calc(100% - 2.5rem);
}
.quickdonate .gfield_radio > li {
  float: left;
  width: calc(50% - 0.5em);
  height: 100px;
  margin-right: 1em;
}
.quickdonate .gfield_radio > li:nth-of-type(2n) {
  margin-right: 0;
}
.quickdonate .gform_button {
  min-width: 256px !important;
}
.quickdonate .gform_wrapper {
  margin: 0;
}

.ticket-iframe-container,
.quickdonate-content {
  width: 100%;
  background-color: #fff;
  position: relative;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  top: -40px;
  -webkit-transition: 0.5s ease-in-out;
  -moztransition: 0.5s ease-in-out;
  -ms-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  max-width: 840px;
  margin: 0 auto;
  max-height: calc(90vh - 4em);
  overflow: scroll;
}

.ticket-iframe-container {
  background-color: #fff;
}
.ticket-iframe-container h2 {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.quickdonate-content {
  padding: 1em;
  max-height: calc(100vh - 4em - 64px);
}

.pageiframe-container {
  position: relative;
}

.page-iframe {
  background-color: #fff;
  width: 100%;
  height: calc(100vh - 50px) !important;
  max-height: calc(100vh - 50px) !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  max-width: 740px;
}

/*.pageiframe-container {
  height: calc(100vh - 50px) !important;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}*/
.account-intro {
  background-color: #000078;
  color: #fff;
  text-align: center;
  padding: 2.5rem 0;
}
.account-intro a, .account-intro a:visited {
  color: #fff;
  margin: 0 1em;
}
.account-intro .btn-container {
  padding: 0;
}

.account-content {
  padding-bottom: 2.5em;
}

/*********************
HOME STYLES
*********************/
.headergame {
  width: 100%;
  margin: 0 auto;
  height: calc(100vh - 130px);
  z-index: 100;
  position: relative;
  overflow-y: hidden;
  display: none;
}

#video-background {
  display: none;
}

.home-pro, .home-friend, .home-signupsection {
  padding: 2.5rem 0;
  background-position: center;
  background-size: cover;
  text-align: center;
  color: #fff;
  background-color: #f8f9fa;
  z-index: 1;
  position: relative;
}
.home-pro p, .home-friend p, .home-signupsection p {
  font-size: 2em;
  font-weight: 700;
}

.home-video {
  text-align: center;
}
.home-video .h1 {
  color: #000078;
  margin-bottom: 0.5em;
}

.home-pioneers, .home-news, .home-program, .program-feed, .home-video, .pp-grid {
  position: relative;
  z-index: 2;
}

.festivalpage-head, .home-header-image, .home-header-video {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*.home-header {
  color: $white;
  padding-bottom: $section-padding-mob;

  .wrap {
    position: relative;
    z-index: 1;
  }

  p {
    font-size: 2.5em;
    line-height: 1.2em;
    white-space: pre-line;
    margin-bottom: 1.25em;
    margin-top: 1.25em;
    max-width: 70%;
    font-weight: 700;
  }

  span {
    font-weight: 600;
    font-size: 1.25em;
    display: block;
    line-height: 1.25em;
  }

  a {
    margin-top: 4em;
  }

  .btn-container {
    margin-top: $section-padding-mob;
  }

  &.campaign-23 {
    color: $orange;
    position: relative;

    .overlay-base {
      mix-blend-mode: multiply;
    }

    .overlay-copy {
      mix-blend-mode: luminosity;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      opacity: 0.9;

      .cta-btn {
        &:hover,
        &:focus {
          background-color: darken($orange, 5%);
          border-color: darken($orange, 5%);
          border-radius: 0;
        }
      }
    }

  }
}*/
.home-header[data-amount="1"] .home-header-item {
  width: 100vw;
  margin-left: -5vw;
}
.home-header[data-amount="1"] .home-header-item-content,
.home-header[data-amount="1"] .home-header-item-content-copy {
  padding: 2.5rem 5vw;
}
.home-header[data-amount="1"] .home-header-item-text {
  color: #fff;
}
.home-header[data-amount="1"] .home-header-item-text h2 {
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.2em;
  white-space: pre-line;
  margin-bottom: 1.25em;
  max-width: 70%;
}
.home-header[data-amount="1"] .home-header-item-text p {
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.25em;
}
.home-header[data-amount="1"] .home-header-item-btn {
  display: block;
  width: fit-content;
  margin: 2.5rem auto 0;
}
.home-header[data-amount="2"] .home-header-item-media::before, .home-header[data-amount="3"] .home-header-item-media::before {
  content: "";
  position: relative;
  display: block;
}
.home-header[data-amount="2"] .home-header-item-media::after, .home-header[data-amount="3"] .home-header-item-media::after {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.home-header[data-amount="2"] .home-header-item-content, .home-header[data-amount="3"] .home-header-item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.25rem;
}
.home-header[data-amount="2"] .home-header-item-content .home-header-item-btn, .home-header[data-amount="3"] .home-header-item-content .home-header-item-btn {
  margin-top: 1.625rem;
  flex-shrink: 0;
}
.home-header[data-amount="2"] .home-header-item-text, .home-header[data-amount="3"] .home-header-item-text {
  color: #fff;
}
.home-header[data-amount="2"] .home-header-item-text p, .home-header[data-amount="3"] .home-header-item-text p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin: 1.625rem 0 0;
}
.home-header[data-amount="2"] .home-header-item-media::before {
  padding-bottom: 62.5%;
}
.home-header[data-amount="2"] .home-header-item-content .home-header-item-btn {
  font-size: 1.25rem;
  line-height: 3rem;
  height: 3.125rem;
  padding: 0 1.25rem;
}
.home-header[data-amount="2"] .home-header-item-text h2 {
  font-size: 2rem;
  line-height: 2.1875rem;
}
.home-header[data-amount="3"] .home-header-item:nth-child(1) .home-header-item-content .home-header-item-btn {
  font-size: 1.25rem;
  line-height: 3rem;
  height: 3.125rem;
  padding: 0 1.25rem;
}
.home-header[data-amount="3"] .home-header-item:nth-child(1) .home-header-item-text h2 {
  font-size: 2rem;
  line-height: 2.1875rem;
}
.home-header[data-amount="3"] .home-header-item:nth-child(n+2) .home-header-item-content .home-header-item-link {
  font-size: 1.125rem;
  line-height: 21px;
  color: #fff;
  text-decoration: underline;
  margin-top: 1.625rem;
}
.home-header[data-amount="3"] .home-header-item:nth-child(n+2) .home-header-item-text h2 {
  font-size: 1.75rem;
  line-height: 1.9375rem;
}
.home-header[data-amount="3"] .home-header-item:nth-child(n+2) .home-header-item-text p {
  display: none;
}
.home-header[data-amount="3"] .home-header-item-media::before {
  padding-bottom: 70%;
}
.home-header > .wrap {
  display: grid;
  column-gap: 1.25rem;
  row-gap: 1.25rem;
}

.home-header-item {
  display: grid;
}

.home-header-item-media {
  position: relative;
  grid-column: 1;
  grid-row: 1;
}
.home-header-item-media img, .home-header-item-media video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-header-item-content {
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
}

.home-header-item-content-copy {
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
}

.festival-bg {
  background-color: #FFDC00;
}

.festivalheader-content {
  position: relative;
}
.festivalheader-content .img-container {
  height: 28.75rem;
}
.festivalheader-content .img-container:before {
  padding-bottom: 0;
}
.festivalheader-content .img-container:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 120, 0.5);
}
.festivalheader-content.pre, .festivalheader-content.live {
  color: #FFDC00;
}
.festivalheader-content.nextip, .festivalheader-content.playback {
  color: #FFF5B2;
}

.festivalheader-bluebanner {
  background-color: #000078;
  color: rgb(0, 163, 247);
  width: 100%;
  text-align: center;
  padding: 0.825rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
}

.festivalheader-overlay {
  padding: 1.625rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.updates-mailform {
  background-color: #fff;
  color: rgb(255, 66, 0);
  padding: 0.9375rem;
  margin-top: 1.25rem;
}
.updates-mailform > span {
  font-weight: 700;
  text-transform: uppercase;
}
.updates-mailform .center-container > span {
  font-weight: 700;
  text-transform: uppercase;
}

section.festivalpage-headform {
  background-color: #fff;
  position: relative;
  z-index: 3;
  padding: 0 !important;
}
section.festivalpage-headform .updates-mailform {
  background-color: transparent;
  box-shadow: none;
  margin: 0;
}

.festivalheader-program {
  background-color: #fff;
  padding: 0.9375rem;
  color: #000078;
}
.festivalheader-program h2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.5625rem;
  margin-top: 0;
}
.festivalheader-program .text-link {
  margin-top: 1rem;
}

.program-item-small {
  border-top: 1px #000078 solid;
  padding: 5px 0;
}
.program-item-small > span {
  display: block;
  color: rgb(255, 66, 0);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 1.25rem;
}
.program-item-small > span b {
  text-transform: uppercase;
  font-weight: 600;
}
.program-item-small h3 {
  font-size: 1.25rem;
  margin: 0.25rem 0 0.25rem;
  line-height: 1.1;
}
.program-item-small h3 a, .program-item-small h3 a:visited {
  color: #000;
}

.program-item-small .byline,
.featured-item .byline {
  line-height: 0.8;
  color: #000078;
}
.program-item-small .byline span,
.featured-item .byline span {
  margin-bottom: 0;
}
.program-item-small .byline span.event-collab,
.featured-item .byline span.event-collab {
  display: none;
}
.program-item-small .byline .date .icon,
.featured-item .byline .date .icon {
  background-image: url(../images/gmw-icon-datum-p.svg);
}
.program-item-small .byline .time .icon,
.featured-item .byline .time .icon {
  background-image: url(../images/gmw-icon-tijd-p.svg);
}
.program-item-small .byline .location .icon,
.featured-item .byline .location .icon {
  background-image: url(../images/gmw-icon-locatie-p.svg);
}

.featured-item .byline {
  line-height: 1;
}

.pioneer-grid {
  margin-top: 1.5em;
}

.pioneer-grid-container {
  z-index: 10;
  position: relative;
  width: calc(100% + 6px);
  margin-left: -3px;
}

.pioneer-slider-container {
  width: 100%;
  overflow: hidden;
}

.pioneer-thumb {
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  position: absolute;
  background-size: cover;
  background-position: center;
  opacity: 1;
  -webkit-transition: 0.25s ease-in-out;
  -moztransition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  top: 3px;
  left: 3px;
  z-index: 2;
}

.pioneer-tile {
  position: relative;
  min-height: 164px;
  padding: 3px;
}
.pioneer-tile > a {
  padding: 2em 1em;
  width: 100%;
  height: 100%;
  display: block;
}
.pioneer-tile > a:hover .pioneer-thumb, .pioneer-tile > a:focus .pioneer-thumb, .pioneer-tile > a:active .pioneer-thumb {
  opacity: 1;
}
.pioneer-tile > a:hover:after, .pioneer-tile > a:focus:after, .pioneer-tile > a:active:after {
  background: linear-gradient(45deg, #000078 0%, rgba(255, 230, 235, 0.5) 100%);
  opacity: 0.7;
}
.pioneer-tile > a:after {
  content: "";
  display: block;
  position: absolute;
  background: linear-gradient(45deg, #000078 0%, rgba(255, 230, 235, 0.25) 50%);
  opacity: 0.4;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  z-index: 4;
  top: 3px;
  left: 3px;
  -webkit-transition: 0.1s ease-in;
  -moztransition: 0.1s ease-in;
  -ms-transition: 0.1s ease-in;
  -o-transition: 0.1s ease-in;
  transition: 0.1s ease-in;
}
.pioneer-tile .overlay {
  position: relative;
  z-index: 6;
}
.pioneer-tile div:not(.pioneer-thumb) {
  width: 100%;
  text-align: center;
}
.pioneer-tile p, .pioneer-tile h4 {
  margin: 0;
  color: #fff;
}
.pioneer-tile h4 {
  font-size: 2.375em;
  line-height: 1em;
  word-spacing: 1000px;
  margin-bottom: 0.35rem;
}
.pioneer-tile p {
  font-weight: 700;
}

.home-featured {
  padding: 2.5rem 0;
}
.home-featured > * {
  z-index: 2;
}

.featured-grid {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
  flex-direction: row;
}

.featured-item {
  padding: 0.9375rem;
  padding-bottom: 8rem;
  position: relative;
  /*.blue-btn,
  .pink-btn {
    max-width: 100%;
    min-width: 150px;
    margin-left: 0;
    height: 35px;
    line-height: 27px;
    padding-top: 0;
    padding-bottom: 0;
  }*/
}
.featured-item h3 {
  margin: 0 0 0.25rem;
}
.featured-item h3 a, .featured-item h3 a:visited {
  color: #000;
}
.featured-item p {
  margin-bottom: 0.3rem;
}
.featured-item .btn-container {
  bottom: 2rem;
  left: 0;
  position: absolute;
}
.featured-item.anniversary_type {
  background-color: #fff;
  color: #000;
}
.featured-item.anniversary_type > span,
.featured-item.anniversary_type .watch-again {
  background-color: #D7A0FF;
}
.featured-item.anniversary_type h3 a, .featured-item.anniversary_type h3 a:visited {
  color: #000;
}
.featured-item.anniversary_type h3 a:hover, .featured-item.anniversary_type h3 a:active, .featured-item.anniversary_type h3 a:focus, .featured-item.anniversary_type h3 a:visited:hover, .featured-item.anniversary_type h3 a:visited:active, .featured-item.anniversary_type h3 a:visited:focus {
  color: #000;
}
.featured-item.pioneer_type, .featured-item.event_type, .featured-item.news_type {
  background-color: #fff;
}

.home-program article:last-of-type,
.program-feed article:last-of-type {
  border-bottom: 1px solid #000;
}

.news-grid {
  display: flex;
  flex-wrap: wrap;
}

.press-article a,
.news-article a {
  color: #000;
  display: block;
}
.press-article a:active, .press-article a:focus, .press-article a:hover,
.news-article a:active,
.news-article a:focus,
.news-article a:hover {
  color: #000078;
}
.press-article a:active img, .press-article a:focus img, .press-article a:hover img,
.news-article a:active img,
.news-article a:focus img,
.news-article a:hover img {
  opacity: 0.7;
}
.press-article .byline,
.news-article .byline {
  margin: 0;
  font-size: 0.875rem;
}
.press-article p,
.news-article p {
  margin-top: 0;
  display: inline;
  margin-right: 0.25em;
}
.press-article .link-style,
.news-article .link-style {
  display: block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: #D7A0FF;
}

.news-article a {
  margin: 1.5em 0;
}
.news-article img {
  width: 30%;
  height: auto;
  float: left;
}
.news-article .news-excerpt {
  width: 65%;
  float: right;
}
.news-article h4 {
  margin: 0.25rem 0 0.25rem;
}

.press-article {
  border-bottom: 1px solid #000078;
  margin-bottom: 1em;
}
.press-article a {
  margin: 0 0 1em;
}
.press-article img {
  width: 20%;
  height: auto;
  float: left;
}
.press-article .press-excerpt {
  width: 75%;
  float: right;
}
.press-article .press-excerpt p {
  margin: 0;
}
.press-article h4 {
  margin: 0;
}
.press-article.tiny a {
  margin: 1em 0;
}
.press-article.tiny .press-excerpt {
  width: 100%;
  float: none;
}
.press-article.tiny .press-excerpt p {
  width: 20%;
  float: left;
}
.press-article.tiny .press-excerpt h4 {
  width: 75%;
  float: right;
}

.more-press,
.more-news {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: 0.25s ease-in-out;
  -moztransition: 0.25s ease-in-out;
  -ms-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.more-press.active,
.more-news.active {
  max-height: none;
  opacity: 1;
}

.article-title {
  margin-bottom: 0.5em;
}

/*********************
PAGE STYLES
*********************/
.archive-title, .section-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.page-title {
  text-align: center;
}

.page-header .btn-container {
  padding-bottom: 0;
}

.page-header, .account-intro {
  text-align: center;
  padding-bottom: 2.5em;
}
.page-header p, .account-intro p {
  font-weight: 700;
  margin-top: 0;
}
.page-header .after-more p, .account-intro .after-more p {
  font-weight: 400;
}
.page-header .after-more p:first-of-type, .account-intro .after-more p:first-of-type {
  margin-top: 0;
}

.page-footer {
  background-color: #5d5d23;
  color: #fff;
  padding: 2.5rem 0;
}

/*.editions-intro, .edition-footer, .page-header, .locations, .contact-footer, .other-calls, .home-video {
  background-color: $mint;
}*/
/*
.editions-grid2, .edition-footer, .page-content, .home-program, .program-feed, .home-header, .home-pioneers, .home-news, .other-calls, .single-news, .login-section, .home-video {
  padding-bottom: $content-padding-bottom;
}
*/
.page > section {
  padding-bottom: 2.5em;
}

.festival-downloads, .festival-hub, .contact-friend, .about-friend, .edition-social, .festival-app-banner {
  background-color: #f8f9fa;
  color: #fff;
  padding: 1em 0 1.5em !important;
}
.festival-downloads .big-quote, .festival-hub .big-quote, .contact-friend .big-quote, .about-friend .big-quote, .edition-social .big-quote, .festival-app-banner .big-quote {
  font-weight: 600;
}

.newsletter-footer {
  background-color: #FFE6EB;
  padding: 2.5rem 0;
}
.newsletter-footer h2 {
  color: rgb(255, 66, 0);
}
.newsletter-footer .gform_button {
  max-width: 100%;
  min-width: 0 !important;
}

.new-style {
  /*&.editionlayout-mint {
    .edition-pioneers {
      background-color: $red;
      color: $white;

      a,a:visited {
        color: $white;

        &:focus,
        &:hover,
        &:active {
          color: $dark-blue;
        }
      }
    }

    .edition-footer,
    .edition-lineup {
      background-color: $white;
    }
  }*/
}
.new-style .editions-intro > * {
  position: relative;
  z-index: 2;
}
.new-style .editions-intro p {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
}
.new-style.editionlayout-yellow .edition-footer,
.new-style.editionlayout-yellow .edition-lineup {
  background-color: #FFF5B2;
}

.festivalpage-head > div {
  z-index: 2;
}
.festivalpage-head p {
  color: rgb(255, 66, 0);
}
.festivalpage-head p a, .festivalpage-head p a:visited {
  color: rgb(255, 66, 0);
  text-decoration: underline;
}

.festivalpage-footer .big-quote {
  font-size: 1.5em;
}

.anni-header {
  padding-bottom: 2.5em;
}
.anni-header .img-container:before {
  padding-bottom: 50%;
}

.anni-intro {
  background-color: #fff;
  text-align: center;
  margin-top: -4rem;
  padding: 1.625rem 0.9375rem 2.5em;
}
.anni-intro span {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.625;
  color: rgb(255, 66, 0);
  text-transform: uppercase;
}
.anni-intro h1 {
  font-weight: 600;
  color: rgb(255, 66, 0);
  text-transform: none;
}
.anni-intro .entry-content {
  margin-top: 2rem;
  font-weight: 600;
  line-height: 1.625;
}

.anniversary-tile .tile-inner {
  background-color: #FFE6EB;
  border-top: 1px solid #000078;
}
.anniversary-tile .tile-content {
  padding: 0.9375rem;
}
.anniversary-tile .tile-content > span {
  display: block;
  color: rgb(255, 66, 0);
  font-weight: 600;
  font-size: 1rem;
}
.anniversary-tile .tile-content > span b {
  text-transform: uppercase;
  font-weight: 600;
}
.anniversary-tile h3.h2 {
  margin: 0.5rem 0 0.5rem;
}
.anniversary-tile h3.h2 a, .anniversary-tile h3.h2 a:visited {
  font-weight: 600;
  text-decoration: underline;
  text-transform: none;
  font-size: 1.625rem;
  color: #000;
  display: inline-block;
  line-height: 1.2;
}
.anniversary-tile .blue-btn {
  min-width: 230px;
}

.single-anni-header {
  position: relative;
}
.single-anni-header .video-container:before,
.single-anni-header .img-container:before {
  padding-bottom: 44%;
}
.single-anni-header .video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.anni-intro-overlay {
  background-color: #fff;
  color: #000;
  padding: 0.9375rem;
  margin-top: -2.375rem;
  margin-bottom: 2.375rem;
  position: relative;
}
.anni-intro-overlay h1 {
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.125rem;
  text-decoration: underline;
  line-height: 1.55;
}
.anni-intro-overlay img {
  position: absolute;
  top: calc(100% + 10px);
  width: 22px;
  height: auto;
  display: block;
  left: 0;
  right: 0;
  margin: auto;
  cursor: pointer;
}

.anni-intro-quote {
  margin-bottom: 1rem;
}
.anni-intro-quote blockquote {
  margin: 0;
  font-size: 2.625em;
  font-weight: 600;
  line-height: 1.18;
}

.anni-intro-text {
  font-size: 1.25rem;
  font-weight: 600;
}

.single-anni-intro {
  margin-top: 1.25rem;
}

.fullscreen-poster {
  position: relative;
  overflow: hidden;
  display: block;
  height: calc(100vh - 80px);
  width: 100%;
}
.fullscreen-poster img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 101%;
  height: 101%;
  display: block;
}

.poster-overlay {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  color: #FFDC00;
  text-align: center;
  width: 100%;
}
.poster-overlay span.subtitle {
  font-weight: 600;
  text-transform: uppercase;
}
.poster-overlay p {
  margin: 0;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.22;
}

#content.livepage {
  margin-top: 0 !important;
  background-color: #E5E5EE;
}

.stream-main {
  width: 100%;
}

.stream-embed {
  width: 100%;
}

.stream-overlay {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.stream-overlay.toppart {
  margin-top: 0.9375rem;
}
.stream-overlay.bottompart {
  margin-bottom: 2.5em;
}

.stream-info {
  color: #000078;
  font-size: 0.875rem;
  position: relative;
}
.stream-info a, .stream-info a:visited {
  text-decoration: underline;
  font-weight: 600;
}
.stream-info h1 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: none;
  margin-top: 0.5rem;
  display: inline-block;
  margin-right: 0.5rem;
}
.stream-info .morelink {
  display: inline-block;
}

.stream-back {
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.stream-back svg {
  position: absolute;
  width: 12px;
  right: calc(100% + 0.45rem);
  display: block;
}
.stream-back svg path {
  fill: #000078;
}
.stream-back.offline {
  color: #fff;
}
.stream-back.offline svg path {
  fill: #fff;
}
.stream-back:hover, .stream-back:active, .stream-back:focus {
  color: #FFF5B2;
}
.stream-back:hover svg path, .stream-back:active svg path, .stream-back:focus svg path {
  fill: #FFF5B2;
}

.stream-donate {
  color: rgb(255, 66, 0);
  font-size: 1rem;
  line-height: 1.28;
  text-align: center;
  font-weight: 600;
}
.stream-donate .pink-btn, .stream-donate .pink-btn:visited {
  padding: 0 10px;
  height: 36px;
  min-width: 0;
  line-height: 32px;
}
.stream-donate .pink-btn:hover, .stream-donate .pink-btn:focus, .stream-donate .pink-btn:active, .stream-donate .pink-btn:visited:hover, .stream-donate .pink-btn:visited:focus, .stream-donate .pink-btn:visited:active {
  color: #fff;
}
.stream-donate .white-btn {
  padding: 0 10px;
  height: 36px;
  min-width: 0;
  line-height: 32px;
}

.stream-chatcontainer {
  background-color: #fff;
  margin-top: 0.9375rem;
  height: 500px;
  position: relative;
}
.stream-chatcontainer .chat-toggle {
  display: none;
}
.stream-chatcontainer span {
  display: block;
  padding: 0.9375rem 0.9375rem 0;
}
.stream-chatcontainer .chat-container {
  position: absolute;
  top: 48px;
  left: 0;
  width: 100%;
  height: calc(100% - 48px);
}

.img-container.blue-backgroundimage {
  height: 100%;
  position: absolute;
  width: 100%;
}
.img-container.blue-backgroundimage:before {
  padding-bottom: 0;
}
.img-container.blue-backgroundimage:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 120, 0.5);
}

.stream-offlineoverlay {
  position: relative;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding: 0.9375rem 0 2.5em;
}

.stream-offlineoverlay-parts {
  margin-top: 1.625rem;
}

.offline-comingsoon .date .icon {
  background-image: url(../images/gmw-icon-datum-l.svg);
}
.offline-comingsoon .time .icon {
  background-image: url(../images/gmw-icon-tijd-l.svg);
}
.offline-comingsoon .location .icon {
  background-image: url(../images/gmw-icon-locatie-l.svg);
}

.offline-tip,
.offline-comingsoon {
  color: #fff;
  margin-top: 3rem;
}
.offline-tip h2,
.offline-comingsoon h2 {
  text-transform: uppercase;
  border-bottom: 1px solid #fff;
  font-weight: 600;
  line-height: 1.33;
  margin-top: 11px;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}
.offline-tip a, .offline-tip a:visited,
.offline-comingsoon a,
.offline-comingsoon a:visited {
  color: #fff;
}
.offline-tip a:hover, .offline-tip a:focus, .offline-tip a:active, .offline-tip a:visited:hover, .offline-tip a:visited:focus, .offline-tip a:visited:active,
.offline-comingsoon a:hover,
.offline-comingsoon a:focus,
.offline-comingsoon a:active,
.offline-comingsoon a:visited:hover,
.offline-comingsoon a:visited:focus,
.offline-comingsoon a:visited:active {
  color: #fff;
}

.stream-message {
  text-align: center;
}
.stream-message h2 {
  text-transform: uppercase;
  border-bottom: 1px solid #FFDC00;
  font-weight: 600;
  line-height: 1.33;
  margin-top: 0;
}
.stream-message h3 {
  font-weight: 400;
  text-transform: none;
  line-height: 1.18;
  margin-top: 1.625rem;
  margin-bottom: 1.625rem;
}
.stream-message .date .icon {
  background-image: url(../images/gmw-icon-datum-y.svg);
}
.stream-message .time .icon {
  background-image: url(../images/gmw-icon-tijd-y.svg);
}
.stream-message .location .icon {
  background-image: url(../images/gmw-icon-locatie-y.svg);
}
.stream-message.light {
  color: #FFF5B2;
}
.stream-message.light h2 {
  border-color: #FFF5B2;
}
.stream-message.light .date .icon {
  background-image: url(../images/gmw-icon-datum-ly.svg);
}
.stream-message.light .time .icon {
  background-image: url(../images/gmw-icon-tijd-ly.svg);
}
.stream-message.light .location .icon {
  background-image: url(../images/gmw-icon-locatie-ly.svg);
}

/*********************
PIONEER STYLES
*********************/
.pioneer-title {
  margin: 0.25em 0 0.5em;
}

.pioneer-quote {
  background-color: rgb(255, 66, 0);
  padding: 1em 0;
  color: #fff;
  text-align: center;
}
.pioneer-quote .big-quote {
  margin-bottom: 0.5em;
}

.pioneer-bio {
  padding: 1em;
  overflow: hidden;
  background-color: #f8f9fa;
  margin-bottom: 2.5rem;
}
.pioneer-bio a {
  max-width: 100%;
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
  white-space: nowrap;
}
.pioneer-bio h3 {
  margin: 0;
}

.pioneer-sidebar img {
  display: block;
  width: 100%;
}

.pioneer-content {
  clear: left;
}
.pioneer-content .list-title {
  margin-top: 1.5em;
  margin-bottom: 1rem;
}

.pioneer-content {
  margin-top: 1.5em;
  margin-bottom: 2em;
}

.pioneerslider-nav {
  position: absolute;
  top: 3px;
  right: 0;
  z-index: 5;
}
.pioneerslider-nav > span {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-color: rgb(255, 66, 0);
  border-radius: 1rem;
  position: relative;
  cursor: pointer;
}
.pioneerslider-nav > span svg {
  width: 8px;
  height: auto;
  position: absolute;
  top: 9px;
  left: 13px;
}
.pioneerslider-nav > span.pioneerslider-prev {
  margin-right: 5px;
}
.pioneerslider-nav > span.pioneerslider-prev svg {
  left: 11px;
}

.small-pioneer-grid {
  display: none;
}

/*********************
EDITION STYLES
*********************/
.archive-edition {
  position: relative;
  margin-bottom: 2em;
}
.archive-edition a {
  background-color: #f8f9fa;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  color: #fff;
  position: absolute;
  height: 100%;
  z-index: 9;
}
.archive-edition a h2 {
  word-spacing: 10000px;
  font-size: 2.25rem;
}
.archive-edition a:hover, .archive-edition a:active, .archive-edition a:focus {
  color: #fff;
}
.archive-edition a header {
  text-align: center;
  width: 100%;
}
.archive-edition:after {
  content: "";
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}

.contact-intro,
.ticket-info-intro,
.events-intro,
.editions-intro {
  margin: 0 auto 3rem auto;
  text-align: center;
  /*span {
    color: $red;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 2rem;
  }*/
}
.contact-intro p:first-of-type,
.ticket-info-intro p:first-of-type,
.events-intro p:first-of-type,
.editions-intro p:first-of-type {
  font-weight: 600;
  margin-top: 0;
}

.about-intro,
.festival-info-intro {
  text-align: center;
}
.about-intro p:first-of-type,
.festival-info-intro p:first-of-type {
  font-weight: 600;
  margin-top: 0;
}

.events-intro {
  margin: 0 auto 0rem auto;
}

.edition-pioneers {
  text-align: center;
}
.edition-pioneers li {
  font-size: 2.375em;
  font-weight: bold;
}
.edition-pioneers a {
  color: #000;
}
.edition-pioneers a:hover, .edition-pioneers a:focus, .edition-pioneers a:active {
  color: #000078;
}
.edition-pioneers h3 {
  margin-bottom: 1em;
}

.edition-lineup {
  padding: 2.5rem 0;
}
.edition-lineup p {
  text-align: center;
}

.edition-video {
  padding-bottom: 2em;
}

/*********************
FETSIVAL-ON STYLES
*********************/
.home-pioneers,
.festival-pioneers {
  /*background-color: $red; */
  padding: 2.5rem 0 1.5rem;
  /*.h3 {
    color: $white;
  }*/
}
.home-pioneers .pioneer-grid,
.festival-pioneers .pioneer-grid {
  margin-bottom: 2.5rem;
}

.pioneer-grid {
  position: relative;
  z-index: 3;
}

.pp-grid .price span {
  font-weight: 700;
}
.pp-grid a {
  color: #000;
}
.pp-grid a:hover, .pp-grid a:focus, .pp-grid a:active {
  color: #000078;
}

.discount-grid, .pp-grid {
  margin: 0;
}
.discount-grid li, .pp-grid li {
  border-top: 1px solid #000078;
}
.discount-grid h4, .pp-grid h4 {
  margin: 1em 0 0.25em;
  text-transform: uppercase;
}

.discount-grid li:last-of-type {
  border-bottom: 1px solid #000078;
}

.hub-text {
  padding: 2em;
  background-color: rgba(255, 255, 255, 0.9);
}
.hub-text p {
  font-weight: 700;
  font-size: 1.375em;
  color: #000;
  text-align: center;
}

.location-grid {
  margin-top: 2em;
  clear: both;
  display: none;
}
.location-grid li {
  padding-left: 2.5em;
  background-image: url(../images/gmw-icon-locatie.svg);
  background-position: left top -4px;
  background-repeat: no-repeat;
  background-size: 40px;
  margin-top: 2em;
  cursor: pointer;
}
.location-grid h5 {
  margin: 0;
}
.location-grid p {
  margin-top: 0;
  white-space: pre-line;
}

.show-locations {
  margin-top: 1em;
  position: relative;
  padding-right: 2em;
  display: block;
  cursor: pointer;
}
.show-locations:before {
  content: "hide";
  display: inline;
  position: relative;
  margin-right: 4px;
}
.show-locations:after {
  content: "";
  display: inline-block;
  position: relative;
  width: 10px;
  height: 10px;
  background-image: url(../images/gmw-arrow-down-d.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 6px;
  top: 2px;
}
.show-locations.active:after {
  transform: rotate(180deg);
  top: -2px;
}
.show-locations.active:before {
  content: "show";
}

.contact-tickets,
.contact-info,
.ticket-info-left-column,
.ticket-info-right-column {
  padding: 0.9375rem 0;
  border-top: 1px solid #000078;
}

.contact-info,
.ticket-info-right-column {
  border-bottom: 1px solid #000078;
  margin-bottom: 2em;
}

.ticket-info-right-column .ticket-btn {
  width: max-content;
  max-width: 100%;
}

/*********************
SEARCH STYLES
*********************/
.search-other {
  border-top: 1px solid #000078;
  padding: 1.5em 0;
}
.search-other p {
  margin: 0;
}
.search-other a {
  color: #000;
}
.search-other a:hover, .search-other a:focus, .search-other a:active {
  color: #000078;
}
.search-other a:hover img, .search-other a:focus img, .search-other a:active img {
  opacity: 0.7;
}

.search-title {
  text-transform: none;
  margin: 0.2em 0;
}
.search-title span {
  text-transform: lowercase;
}

.search-results {
  margin-bottom: 3em;
}
.search-results article:last-of-type {
  border-bottom: 1px solid #000078;
}

.result-thumb img {
  max-width: 100%;
}

/*********************
IMG CONTAINER
*********************/
.img-container {
  position: relative;
  overflow: hidden;
  display: block;
}
.img-container:before {
  content: "";
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
.img-container img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 101%;
  height: 101%;
  display: block;
}

.video-container {
  position: relative;
  overflow: hidden;
}
.video-container:before {
  content: "";
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  margin: 0 auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
  display: block;
  z-index: 0;
}

.compat-object-fit {
  background-size: cover;
  background-position: center center;
}
.compat-object-fit img {
  opacity: 0;
}

/*********************
NEWS STYLES
*********************/
.single-news .share a svg {
  fill: #fff;
}
.single-news .share a:hover svg, .single-news .share a:focus svg, .single-news .share a:active svg {
  fill: #FFE6EB;
}

/*********************
PRESS
*********************/
.press-sidebar > div {
  background-color: #000078;
  padding: 1.5em;
  color: #fff;
  margin-bottom: 1.5em;
}
.press-sidebar > div a {
  color: #fff !important;
}
.press-sidebar > div a:hover, .press-sidebar > div a:active {
  color: rgb(255, 66, 0) !important;
}
.press-sidebar p, .press-sidebar dl {
  margin: 0;
}
.press-sidebar h3 {
  margin: 0 0 0.5em;
}
.press-sidebar ul {
  margin-bottom: 1.5em;
}

.press-grid {
  margin-bottom: 3em;
}

.press-footer {
  clear: both;
  padding: 2.5rem 0 3em;
}

.press-img-grid > div {
  position: relative;
  margin-bottom: 1em;
}
.press-img-grid img {
  display: block;
  width: 100%;
}
.press-img-grid a {
  position: absolute;
  bottom: 1em;
  right: 1em;
}

.article-media {
  clear: both;
  border-top: 1px solid #000;
  padding-top: 2.5rem;
}

.article-content {
  margin-bottom: 3em;
}

.press-dl-grid {
  margin: 2em 0;
}

.press-page-dl li,
.press-dl-grid li {
  margin-bottom: 0.25em;
}

.article-header .h3 {
  margin-top: 0;
}

/*********************
COOKIEBAR
*********************/
#cookie-bar {
  background: #fff;
  line-height: 24px;
  color: #000;
  text-align: center;
  z-index: 95;
  position: fixed;
  width: 100%;
  bottom: 0;
}
#cookie-bar .cb-link {
  text-decoration: underline;
  font-weight: 700;
}
#cookie-bar p {
  margin: 0.5em 1em 0.5em;
}

/*********************
DONATE POPUP
*********************/
#donate-popup {
  position: fixed;
  bottom: 0;
  z-index: 99;
  width: 100vw;
  display: none;
}

.donate-popup-inner {
  background-color: #fff;
  padding: 1em 2em 1.5em;
  text-align: center;
  width: 100vw;
  background-image: url("../images/donate_banner_bg.jpg");
  background-size: cover;
  background-position: center;
}
.donate-popup-inner p {
  color: #000078;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}
.donate-popup-inner p span {
  color: rgb(255, 66, 0);
}
.donate-popup-inner .blue-btn {
  background-color: #fff;
}
.donate-popup-inner .blue-btn:hover, .donate-popup-inner .blue-btn:focus, .donate-popup-inner .blue-btn:active {
  background-color: #000078;
  color: #fff;
}
.donate-popup-inner .close-btn {
  right: 0.25rem;
  top: 0;
}

/*********************
*
* NEW
*
*********************/
/*********************
* HEADER
*********************/
.header-form {
  margin-top: 4.375rem;
  width: 100%;
}
.header-form .gform_body {
  width: 100% !important;
}
.header-form .gform_fields {
  position: relative;
}
.header-form .gfield {
  margin: 0 !important;
  width: 100% !important;
  float: none !important;
}
.header-form input[type=email] {
  background: none;
  border: 0;
  border-bottom: 1px solid #000;
  font-size: 1.25rem;
  line-height: 1;
  height: 2.5rem;
  padding: 0 1.25rem 0 0;
  margin: 0 !important;
  width: 100% !important;
}
.header-form .gfield--type-submit {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0;
  width: max-content !important;
}
.header-form input[type=submit] {
  border: 0;
  padding: 0;
  margin: 0 !important;
  background: none;
  font-size: 1.25rem;
  line-height: 2.5rem;
  width: 100% !important;
  min-width: 0;
}
.header-form .ginput_container {
  float: none;
  width: 100%;
  margin-left: 0;
}
.header-form ::-webkit-input-placeholder {
  color: #000;
}
.header-form ::-moz-placeholder {
  color: #000;
}
.header-form :-ms-input-placeholder {
  color: #000;
}
.header-form :-moz-placeholder {
  color: #000;
}

.header-form-title {
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1rem;
}

/*********************
* SEARCH OVERLAY
*********************/
.search-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 5.8125rem 5vw 0.9375rem;
  background-color: rgb(0, 160, 96);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.search-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.search-form {
  position: relative;
  width: 100%;
}
.search-form input[type=text] {
  display: block;
  font-size: 28px;
  line-height: 1;
  width: 100%;
  height: 56px;
  padding: 0 31px 0 0;
  background: none;
  border: 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.search-form input[type=text]:focus, .search-form input[type=text]:active {
  border-bottom-color: #000;
}
.search-form ::-webkit-input-placeholder {
  color: #000;
}
.search-form ::-moz-placeholder {
  color: #000;
}
.search-form :-ms-input-placeholder {
  color: #000;
}
.search-form :-moz-placeholder {
  color: #000;
}

.search-submit {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 28px;
  line-height: 55px;
  background: none;
  outline: none;
  border: 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
  padding: 0 0 0 1rem;
}

.popular-searches {
  margin-top: 1rem;
}
.popular-searches span {
  display: inline-block;
  margin-right: 0.5rem;
}
.popular-searches a, .popular-searches a:visited {
  display: inline-block;
  color: #000;
  font-weight: 600;
  margin-right: 0.5rem;
  text-decoration: underline;
}

/*********************
* PLAYLIST OVERLAY
*********************/
.playlist-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  background-color: rgba(0, 0, 120, 0.7);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.playlist-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.playlist-overlay.active iframe {
  display: block;
}

.playlist-inner-overlay {
  display: block;
  width: calc(90vw - 2.5rem);
  background-color: #fff;
}
.playlist-inner-overlay iframe {
  display: none;
  max-width: 100%;
  height: 100%;
}

.close-playlist-overlay-btn {
  position: absolute;
  top: 5vw;
  left: 5vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgb(255, 66, 0);
  fill: #fff;
  padding: 0;
  border: 0;
  border-radius: 50%;
  outline: none;
}
.close-playlist-overlay-btn svg {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
}

.playlist-overlay-message {
  margin: 0;
  padding: 5vw 5vw 0;
}

/*********************
* FESTIVAL INFO
*********************/
.festival-info-main .btn-container {
  padding-bottom: 0;
}

.festival-info-header {
  position: relative;
  display: grid;
  align-items: flex-end;
}

.fih-image {
  position: relative;
  width: 100%;
  height: 100%;
  grid-column: 1;
  grid-row: 1;
}
.fih-image img {
  position: absolute;
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.fih-content {
  padding: 1.25rem 0;
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
  text-align: center;
  color: rgb(255, 66, 0);
}
.fih-content h1 {
  margin-bottom: 1rem;
}
.fih-content .h3 {
  color: rgb(255, 66, 0);
}

.fih-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
  row-gap: 1rem;
}

.daypartinfo-list.with-order-button .event-buttons {
  margin-bottom: 0;
}
.daypartinfo-list.with-order-button .event-buttons a {
  width: 100px;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
  margin: 0 0 0 auto;
}

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /*********************
  NAVIGATION STYLES
  *********************/
  .menu ul {
    /* end .menu ul li */
    /* highlight current page */
  }
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */
  }
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }
  /*********************
  FOOTER STYLES
  *********************/
  /*********************
  EVENT ARCHIVE STYLES
  *********************/
  .event-location dd {
    width: 400px;
  }
  .event-location ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .event-location ul li {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
  }
  /*********************
  PAGE STYLES
  *********************/
  .edition-lineup p {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .logogrid-item {
    display: inline-block;
    width: 25%;
  }
  .pioneers-playlist > div {
    padding: 0.5em 1em;
    float: left;
    width: calc(100% - 112px);
    clear: none;
  }
  .entry-data dt {
    width: 30%;
    float: left;
    clear: left;
  }
  .entry-data dd {
    width: 70%;
    float: left;
    margin-bottom: 0;
  }
  .press-dl-grid {
    column-count: 3;
    column-gap: 1em;
  }
  .festivalheader-content .img-container {
    height: 23rem;
    /*&:before {
      padding-bottom: 64%;
    }*/
  }
}
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /*********************
  GENERAL STYLES
  *********************/
  /*.page {
    > section {
      padding-top: $section-padding-desk;
      padding-bottom: $section-padding-desk;
    }
  }*/
  h1, .h1 {
    font-size: 4.875rem;
  }
  h1.edition-title, .h1.edition-title {
    font-size: 1.5em;
  }
  h2, .h2 {
    font-size: 3rem;
  }
  h3, .h3, .page-title, .gsection_title {
    font-size: 2.25rem;
  }
  /*
  .page-title, .section-title {
    margin-top: $section-padding-desk;
  }
  */
  h4, .h4 {
    font-size: 1.625rem;
  }
  h5, .h5 {
    font-size: 1.125rem;
  }
  .h6 {
    font-size: 1.125rem;
  }
  .big-quote {
    font-size: 2.5rem;
  }
  .locations-content h2.wp-block-heading, .locations-content h3.wp-block-heading, .locations-content h4.wp-block-heading, .locations-content h5.wp-block-heading, .locations-content h6.wp-block-heading {
    font-size: 2.25rem;
  }
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  .ticket-popup {
    top: -130px;
  }
  .wrap {
    width: 740px;
  }
  .wrap-s, .widecolumn {
    width: 740px;
  }
  .content-container {
    padding: 2.5rem 1.25rem;
    margin: 2.5rem 0;
  }
  .content-container.even {
    padding: 1.25rem;
  }
  .wrap-s .content-container {
    padding: 2.5rem 2.5rem;
  }
  a.back-btn {
    left: calc(50% - 370px);
  }
  /*.ticket-iframe-container {
    padding: 2em;
  }*/
  /*********************
  HEADER STYLES
  *********************/
  .header:after {
    right: calc((100vw - 740px) / 2);
    left: calc((100vw - 740px) / 2);
  }
  .secondary-nav {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    column-gap: 1rem;
    padding-right: calc((100vw - 740px) / 2);
    padding-left: calc((100vw - 740px) / 2);
  }
  .secondary-menu {
    width: calc(50% - 0.5rem);
  }
  .tertiary-menu {
    width: calc(50% - 0.5rem);
    margin: 0;
  }
  .language-menu {
    width: 100%;
  }
  /*.header {
    height: 80px;

    &.no-top {
      & + div {
        margin-top: 80px !important;
      }
    }
  }

  #inner-header {
    height: 80px;
    background-color: transparent;
  }*/
  /*#logo {
    float: left;
    margin: 0.75em 0 0.75em;
    //width: 160px;
    width: 138px;

    img {
      width: 100%;
      margin: 0.75em 0 0.75em;
    }
  }*/
  .playlist-header .playlist-btn {
    float: right;
  }
  .playlist-header span:first-of-type {
    display: inline;
  }
  /*********************
  NAVIGATION STYLES
  *********************/
  /*********************
  SIDEBARS & ASIDES
  *********************/
  /*********************
  HOME
  *********************/
  /*
  .home-header {

    p {
      font-size: 5em;
      margin-bottom: 0.25em;
      margin-top: 0.75em;
      line-height: 1.1em;
      width: 50%;
    }

    span {
      font-size: 2em;
    }
  }
  */
  .home-header[data-amount="1"] .home-header-item {
    margin-left: calc(-50vw + 370px);
  }
  .home-header[data-amount="1"] .home-header-item-content,
  .home-header[data-amount="1"] .home-header-item-content-copy {
    padding-left: calc(50vw - 370px);
    padding-right: calc(50vw - 370px);
  }
  .home-header[data-amount="1"] .home-header-item-text h2 {
    font-size: 5em;
    line-height: 1.1em;
    margin-bottom: 0.25em;
    width: 50%;
  }
  .home-header[data-amount="1"] .home-header-item-text p {
    font-size: 2em;
  }
  .home-header[data-amount="2"] > .wrap, .home-header[data-amount="3"] > .wrap {
    width: calc(100vw - 2.5rem);
    grid-template-columns: 1fr 1fr;
  }
  .home-header[data-amount="3"] .home-header-item:nth-child(1) {
    grid-column: 1/span 2;
  }
  .home-featured {
    padding: 5rem 0;
  }
  .home-pro, .home-friend, .home-signupsection {
    padding: 5rem 0;
  }
  .daypartinfo-list .arrow {
    top: 50%;
    transform: translate(0, -50%);
  }
  /*********************
  ARCHIVE EVENT
  *********************/
  .event-buttons {
    float: right;
  }
  .event-buttons a {
    display: block;
  }
  .cat-filter {
    display: block;
    padding-top: 1rem;
    padding-bottom: 2rem;
  }
  .cat-filter ul {
    height: 66px;
  }
  .cat-filter li {
    float: left;
    width: 20%;
    border-right: 2px solid rgb(255, 66, 0);
    height: 100%;
    padding: 0.5em;
  }
  .cat-filter li .reset {
    top: 0.25rem;
    right: 0.5rem;
  }
  .cat-filter li:last-of-type {
    border: none;
  }
  .data-filters dl, .data-filters .event-search {
    float: left;
    width: 17%;
    margin: 0;
    padding: 0.75em 0 0.75em 0.5em;
    border-right: 2px solid #fff;
  }
  .data-filters .event-search dd {
    width: calc(740px - 2.5rem);
    text-align: center;
    height: 90px;
  }
  .data-filters .event-location,
  .data-filters .event-type,
  .data-filters .event-ticket_type {
    display: block;
  }
  .data-filters .event-ticket_type {
    border-right: 0;
  }
  .data-filters .event-ticket_type {
    width: 32%;
    margin-right: 0;
    float: right;
    text-align: right;
  }
  .data-filters .event-ticket_type a {
    padding-left: 4%;
  }
  .data-filters #show-filter {
    display: none;
  }
  .data-filters dt.value-set a {
    color: #DFF7F2;
  }
  .dropdown dd {
    margin: 0 0 0 -0.5em;
  }
  header.event-thumb {
    min-height: 0;
    background-color: transparent;
  }
  .pioneer-header .img-container:before,
  .event-header .img-container:before {
    padding-bottom: 56%;
  }
  .small-pioneer-grid {
    display: block;
  }
  .small-pioneer-grid .small-pioneer-tile {
    position: relative;
    padding: 5px;
    margin-bottom: 0.25rem;
  }
  .small-pioneer-grid .overlay {
    color: #fff;
    height: 50px;
    position: relative;
    font-weight: 600;
    text-align: center;
    font-size: 14px;
    z-index: 6;
  }
  .small-pioneer-grid .pioneer-thumb {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
  .event-data dl {
    width: 50%;
    float: left;
  }
  .event-data .ticket-btn {
    width: auto;
    float: right;
  }
  /*********************
  PAGE STYLES
  *********************/
  .edition-lineup p {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
  .edition-lineup {
    padding: 5rem 0;
  }
  .event-buttons {
    margin-bottom: 0;
  }
  .two-col > div {
    width: 48%;
    margin-bottom: 0;
    border-bottom: 1px solid #000078;
  }
  .two-col > div:not(:nth-of-type(2n)) {
    margin-right: 4%;
  }
  .two-col > div:nth-of-type(2n+1) {
    clear: left;
  }
  .two-col > div:last-of-type {
    margin-bottom: 0;
  }
  .archive-event {
    /* .arrow {
       top: 50%;
       transform: translate(0, -50%);
     }*/
  }
  .archive-event h3 {
    color: #000;
    position: relative;
    bottom: auto;
    left: auto;
    padding: 0;
    background: none;
    font-size: 1.625rem;
  }
  .archive-event a:hover h3, .archive-event a:active h3, .archive-event a:focus h3, .archive-event a:visited:hover h3, .archive-event a:visited:active h3, .archive-event a:visited:focus h3 {
    color: #000078 !important;
  }
  .event-content {
    margin-top: 1.5em;
  }
  /*.sticky-menucontainer {
    //top: 79px;
    top: 80px;
  }*/
  .daypart-sticky {
    position: sticky;
  }
  .daypart-sticky .main {
    width: calc(100% - 132px - 1rem);
  }
  .daypart-sticky .event-buttons {
    width: 132px;
  }
  .daypart-sticky .event-buttons a {
    width: 132px;
  }
  .pp-cta {
    padding: 2.5rem 2.5rem;
  }
  .location-list {
    width: 200px;
  }
  .timetable {
    padding-left: 200px;
  }
  .anni-intro {
    margin-top: -6rem;
  }
  .anni-intro .entry-content {
    padding: 0 2.7rem;
  }
  .anniversary-tile.medium-tile {
    padding: 0 calc(3.95rem);
  }
  .anniversary-tile.medium-tile .img-container {
    width: calc(100% + 7.9rem);
    transform: translateX(-3.95rem);
  }
  .anniversary-tile.large-tile {
    padding: 0 calc(3.95rem);
  }
  .anniversary-tile.large-tile .tile-inner {
    padding: 0 calc(3.95rem);
  }
  .anniversary-tile.large-tile .img-container {
    width: calc(100% + 15.8rem);
    transform: translateX(-7.9rem);
  }
  .anni-intro-quote blockquote {
    font-size: 4rem;
  }
  .anni-intro-text {
    margin: 1.25rem 0;
  }
  .anni-intro-overlay {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
    margin-top: -3.25rem;
    padding: 1.625rem;
  }
  .single-anni-intro {
    margin-top: 2.5em;
  }
  .poster-overlay p {
    font-size: 2.8125rem;
  }
  .anniversary-related {
    display: flex;
    flex-wrap: wrap;
  }
  /*********************
  PROF STYLES
  *********************/
  .account-intro {
    padding: 2.5rem 0;
  }
  /*.call-cat {
    width: calc(100% + 3em);
    position: relative;
    left: -1.5em;
  }*/
  .other-call a {
    width: 100%;
  }
  /*********************
  FESTIVAL STYLES
  *********************/
  .hub-text {
    padding: 2em 4em;
  }
  .home-pioneers,
  .festival-pioneers {
    padding: 5rem 0;
  }
  /*********************
  CONTACT STYLES
  *********************/
  .contact-tickets,
  .contact-info,
  .ticket-info-left-column,
  .ticket-info-right-column {
    float: left;
    width: 48%;
  }
  .contact-tickets,
  .ticket-info-left-column {
    margin-right: 4%;
    border-bottom: 1px solid #000078;
  }
  .contact-info,
  .ticket-info-right-column {
    margin-bottom: 0;
  }
  .logogrid-item {
    width: 16.66%;
  }
  /*********************
  PRESS
  *********************/
  .press-img-grid > div:hover a, .press-img-grid > div:active a {
    opacity: 1;
    pointer-events: auto;
  }
  .press-img-grid a {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.1s ease-in;
    -moztransition: 0.1s ease-in;
    -ms-transition: 0.1s ease-in;
    -o-transition: 0.1s ease-in;
    transition: 0.1s ease-in;
  }
  /*********************
  FORM
  *********************/
  #field_20_4 .gfield_radio > li {
    float: left;
    width: 32%;
    margin-right: 2%;
    height: 212px;
  }
  .quickdonate .gfield_radio > li {
    width: calc(25% - 0.75em);
    height: 150px;
    margin-right: 1em;
  }
  .quickdonate .gfield_radio > li:nth-of-type(2n) {
    margin-right: 1em;
  }
  .quickdonate .gfield_radio > li:nth-of-type(4n) {
    margin-right: 0;
  }
  .quickdonate .halfwidth {
    margin-left: calc(50% + 0.5em);
  }
  /*********************
  SEARCH STYLES
  *********************/
  .search-bar {
    position: relative;
    top: -20px;
    bottom: unset !important;
  }
  .search-bar.active {
    top: 0;
  }
  .search-other img {
    float: left;
  }
  /*********************
  DONATE POPUP
  *********************/
  #donate-popup {
    bottom: 80px;
  }
  .donate-popup-inner p {
    font-size: 2em;
  }
  .donate-popup-inner .close-btn {
    right: 0.75rem;
    top: 0.25rem;
  }
  .festivalheader-program {
    margin-top: 1.25rem;
  }
  .stream-offlineoverlay {
    width: calc(100% - 3.25rem);
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
  .stream-offlineoverlay-parts > div {
    padding: 0.9375rem;
  }
  .offline-tip,
  .offline-comingsoon {
    margin-top: 0;
  }
  .stream-offline-side {
    margin-top: 1.625rem;
  }
  .stream-offline-side > div {
    float: left;
    width: calc(50% - 0.625rem);
  }
  .stream-offline-side > div:first-of-type {
    margin-right: 1.25rem;
  }
  .festivalheader-content .img-container {
    height: 31.25rem;
  }
  #content.ticketshop-page {
    min-height: calc(100vh - 80px);
  }
  .page-iframe {
    height: calc(100vh - 80px) !important;
    max-height: calc(100vh - 80px) !important;
  }
  /*********************
  FOOTER STYLES
  *********************/
  .footer {
    padding: 5rem 0;
  }
  .footer .nav li a {
    display: inline-block;
  }
  .copyright {
    float: left;
  }
  .pay-with {
    float: right;
    margin: 0;
  }
  /*********************
  *
  * NEW
  *
  *********************/
  .daypartinfo-list.with-order-button .daypartinfo-item-link {
    width: calc(100% - 132px - 1rem);
    float: left;
  }
  .daypartinfo-list.with-order-button .arrow {
    display: none;
  }
  .daypartinfo-list.with-order-button .event-buttons {
    float: right;
    width: 132px;
  }
  .daypartinfo-list.with-order-button .event-buttons a {
    width: 132px;
  }
  /*********************
  * HEADER
  *********************/
  .header-form {
    width: calc(50% - 0.5rem);
    margin: 4.375rem 0 0 auto;
  }
  /*********************
  * SEARCH OVERLAY
  *********************/
  .search-overlay {
    padding-right: calc(50vw - 370px + (100vw - (100vw - 740px) - 7rem) / 8 + 1rem);
    padding-left: calc(50vw - 370px + (100vw - (100vw - 740px) - 7rem) / 8 + 1rem);
  }
  /*********************
  * PLAYLIST OVERLAY
  *********************/
  .playlist-inner-overlay {
    width: calc(50vw - 370px + (100vw - (100vw - 740px) - 7rem) / 8 * 4 + 4rem);
  }
  .close-playlist-overlay-btn {
    top: 0.9375rem;
    right: calc(50vw - 370px + (100vw - (100vw - 740px) - 7rem) / 8 * 4 + 5rem);
    left: auto;
  }
  .playlist-overlay-message {
    padding: 0.9375rem calc(50vw - 370px) 0 1rem;
  }
  /*********************
  * FESTIVAL INFO
  *********************/
  .fih-content {
    padding: 2.5rem 0;
  }
}
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1024px) {
  .wrap {
    width: 980px;
  }
  .wrap-s {
    width: 760px;
  }
  .fw-wrap {
    width: calc(100% - 3.25rem);
  }
  .h6 {
    font-size: 2.375em;
  }
  .header {
    padding: 1.6875rem 0;
  }
  .header:after {
    right: calc((100vw - 980px) / 2);
    left: calc((100vw - 980px) / 2);
  }
  #logo {
    height: 2.875rem;
  }
  #logo svg.header-logo-mobile {
    display: none;
  }
  #logo svg.header-logo-desktop {
    display: block;
  }
  .main-nav {
    display: block;
    margin: 0 auto;
  }
  .main-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 2.5rem;
    margin: 0;
  }
  .main-menu li {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5rem;
  }
  .main-menu a, .main-menu a:visited {
    display: inline-block;
    color: #000;
    text-decoration: none;
  }
  .main-menu a:hover, .main-menu a:visited:hover {
    color: #000;
  }
  .utility-menu {
    margin: 0 1.25rem 0 0;
  }
  .secondary-nav {
    top: 6.25rem;
    padding-right: calc((100vw - 980px) / 2);
    padding-left: calc((100vw - 980px) / 2);
  }
  .secondary-menu {
    width: calc((100% - 11rem) / 12 * 7 + 6rem);
  }
  .secondary-menu li {
    font-size: 3.5rem;
  }
  .tertiary-menu {
    width: calc((100% - 11rem) / 12 * 5 + 4rem);
    row-gap: 1.1875rem;
  }
  .tertiary-menu li {
    font-size: 2rem;
  }
  a.back-btn {
    left: calc(50% - 490px);
  }
  .edition-lineup p {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
  .data-filters dl, .data-filters .event-search {
    width: 18%;
    margin: 0;
    padding: 0.75em 0.5em 0.75em 1em;
  }
  .data-filters .event-ticket_type {
    width: 28%;
  }
  .data-filters .event-search dd {
    width: calc(980px - 2.5rem);
  }
  .dropdown dd {
    margin: 0 0 0 -16px;
  }
  .cat-filter li {
    padding: 0.5em 1em;
  }
  .ticket-popup,
  .quickdonate {
    padding: 4em 10em;
  }
  .home-header-image {
    background-image: url(../images/bg/gmw-bg-home-banner-l2.jpg);
    background-position: center;
  }
  .home-header-video {
    background-image: none;
    /* span:first-of-type {
       color: $white !important;
     }*/
  }
  /*.home-header {
    padding-bottom: 4em;
  }*/
  .home-header[data-amount="1"] .home-header-item {
    margin-left: calc(-50vw + 490px);
  }
  .home-header[data-amount="1"] .home-header-item-content,
  .home-header[data-amount="1"] .home-header-item-content-copy {
    padding: 4em calc(50vw - 490px);
  }
  .home-header[data-amount="2"] > .wrap {
    grid-template-columns: calc((100% - (100% - 980px) - 13.75rem) / 12 * 7 + 7.5rem + 50% - 490px) calc((100% - (100% - 980px) - 13.75rem) / 12 * 5 + 5rem + 50% - 490px);
  }
  .home-header[data-amount="3"] > .wrap {
    grid-template-columns: calc((100% - (100% - 980px) - 13.75rem) / 12 * 6 + 6.25rem + 50% - 490px) calc((50% - 0.625rem) / 2 - 0.625rem) calc((50% - 0.625rem) / 2 - 0.625rem);
  }
  .home-header[data-amount="3"] .home-header-item:nth-child(1) {
    grid-column: 1;
  }
  .headergame {
    display: block;
  }
  #video-background {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    display: block;
    z-index: 0;
  }
  /*********************
  FESTIVAL STYLES
  *********************/
  .discount-grid li {
    border-bottom: 1px solid #000078;
  }
  .share a {
    margin-right: 5px;
  }
  /*********************
  PAGE STYLES
  *********************/
  /*.editions-intro {
    width: $wrap-768-s;
  }*/
  .anni-intro {
    margin-top: -8rem;
  }
  .anni-intro .entry-content {
    padding: 0 7.92rem;
  }
  .anniversary-tile.medium-tile {
    padding: 0 calc(5.21rem);
  }
  .anniversary-tile.medium-tile .img-container {
    width: calc(100% + 10.42rem);
    transform: translateX(-5.21rem);
  }
  .anniversary-tile.large-tile {
    padding: 0 calc(5.21rem);
  }
  .anniversary-tile.large-tile .tile-inner {
    padding: 0 calc(5.21rem);
  }
  .anniversary-tile.large-tile .img-container {
    width: calc(100% + 20.84rem);
    transform: translateX(-10.42rem);
  }
  .anni-intro-overlay {
    width: 50%;
  }
  .anni-back-btn {
    margin-top: -2rem;
    display: block;
  }
  .single-anni-intro {
    margin-top: calc(2rem + 0.9375rem);
  }
  .festivalheader-program {
    margin-top: 0;
  }
  .updates-mailform {
    margin-top: 0;
  }
  .stream-main {
    width: 100%;
    position: relative;
    background-color: #000;
    overflow: hidden;
  }
  .stream-overlay {
    position: absolute;
    width: calc(100% - 3.25rem);
    left: 0;
    right: 0;
  }
  .stream-overlay.toppart {
    top: 0;
    margin-top: 0;
  }
  .stream-overlay.toppart:before {
    content: "";
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.75);
    width: calc(100% + 3.25rem);
    left: -1.625rem;
    top: 0;
    pointer-events: none;
  }
  .stream-overlay.toppart:after {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.75);
    width: calc(100% + 3.25rem);
    left: -1.625rem;
    top: 100%;
    pointer-events: none;
    height: 44px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  }
  .stream-overlay.bottompart {
    bottom: 0;
    margin-bottom: 0;
  }
  .stream-embed .fluid-width-video-wrapper {
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    padding-top: 0 !important;
  }
  .stream-embed .fluid-width-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
  }
  /*.daypartinfo-intro {
    width: 66.67%;
  }*/
  /*********************
  *
  * NEW
  *
  *********************/
  /*********************
  * HEADER
  *********************/
  /*********************
  * SEARCH OVERLAY
  *********************/
  /*********************
  * PLAYLIST OVERLAY
  *********************/
}
@media only screen and (min-width: 1024px) and (min-aspect-ratio: 16/9) {
  .stream-embed .fluid-width-video-wrapper iframe {
    /* height = 100 * (9 / 16) = 56.25 */
    height: 56.25vw;
  }
}
@media only screen and (min-width: 1024px) and (max-aspect-ratio: 16/9) {
  .stream-embed .fluid-width-video-wrapper iframe {
    /* width = 100 / (9 / 16) = 177.777777 */
    width: 177.78vh;
  }
}
@media only screen and (min-width: 1024px) {
  .stream-info {
    color: #fff;
    padding-top: 1rem;
  }
  .stream-info a, .stream-info a:visited {
    color: #fff;
  }
  .stream-info a:hover, .stream-info a:focus, .stream-info a:active, .stream-info a:visited:hover, .stream-info a:visited:focus, .stream-info a:visited:active {
    color: #fff;
  }
  .stream-back svg {
    right: calc(100% + 8px);
  }
  .stream-back svg path {
    fill: #fff;
  }
  .stream-main {
    height: 100vh;
  }
  .stream-message h3 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .stream-offlineoverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
  .stream-offline-side {
    margin-top: 0;
  }
  .stream-offline-side > div {
    width: 100%;
    float: none;
  }
  .stream-offline-side > div:first-of-type {
    margin-right: 0;
  }
  .stream-donate {
    padding: 0.9375rem 0;
    border-top: 1px solid #fff;
    color: #fff;
    text-align: left;
    font-size: 0.875rem;
  }
  .stream-donate p {
    float: left;
    width: 67%;
    margin: 0;
  }
  .stream-donate .pink-btn, .stream-donate .pink-btn:visited {
    float: right;
    max-width: 20%;
    border: 4px solid #fff;
    color: #fff;
  }
  .stream-donate .pink-btn:hover, .stream-donate .pink-btn:focus, .stream-donate .pink-btn:active, .stream-donate .pink-btn:visited:hover, .stream-donate .pink-btn:visited:focus, .stream-donate .pink-btn:visited:active {
    background-color: #fff;
    color: rgb(255, 66, 0);
  }
  .stream-donate.offline {
    margin-top: 5em;
  }
  .stream-donate.offline p {
    font-size: 1.25rem;
    font-weight: 700;
    float: none;
    width: 100%;
    text-align: center;
  }
  .stream-chatcontainer {
    background-color: #E5E5EE;
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    transition: height 0.67s ease-in-out;
    cursor: pointer;
  }
  .stream-chatcontainer.active {
    height: 72vh;
  }
  .stream-chatcontainer.active .chat-toggle {
    transform: rotate(0);
  }
  .stream-chatcontainer .chat-toggle {
    display: block;
    position: absolute;
    right: 0.9375rem;
    top: 1.1375rem;
    cursor: pointer;
    transform: rotate(180deg);
    transition: transform 0.5s ease-in-out;
  }
  .stream-chatcontainer .chat-toggle img {
    display: block;
    width: 17px;
    height: auto;
  }
  .festivalheader-content .img-container {
    height: 29.25rem;
  }
  .pioneer-header,
  .event-header {
    margin-bottom: 0.5em;
  }
  .pioneer-headeroverlay,
  .event-headeroverlay {
    padding-right: calc(30% + 0.625rem);
  }
  .pioneer-sidebar {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: calc(10rem + 100px);
  }
  .pioneer-sidebar .pioneer-bio {
    margin-top: -100px;
  }
  .event-sidebar {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: calc(10rem + 100px);
  }
  .event-sidebar .event-data {
    margin-top: -100px;
  }
  .event-data dl {
    width: 100%;
    float: none;
  }
  .event-data .ticket-btn {
    width: 100%;
    float: none;
  }
  .sidebar-partners {
    display: block;
  }
  .partner-section {
    display: none;
  }
  .daypartinfo-list li a {
    padding-right: 33%;
  }
  .daypartmenu-container {
    width: calc(100% - 132px);
  }
  .layout-toggle {
    width: 132px;
    padding-right: 36px;
    text-align: right;
    top: 0.6rem;
    padding-top: 0.66rem;
    height: 44px;
  }
  .layout-toggle span {
    display: block;
    font-size: 16px;
    color: #fff;
  }
  .layout-toggle svg {
    top: 12px;
  }
  .layout-toggle #list-icon {
    top: 15px;
  }
  .layout-toggle:before {
    top: 0;
  }
  .pp-cta {
    padding: 2.5rem 5.125rem;
  }
  .event-content .layout-toggle {
    top: 1.3rem;
  }
  #content {
    margin-top: 6.25rem;
  }
  .sticky-menucontainer {
    top: 6.25rem;
  }
  .daypart-sticky {
    top: 166px;
  }
  .header-form {
    width: calc((100% - 11rem) / 12 * 5 + 4rem);
  }
  .search-overlay {
    padding: 7.5rem calc(50vw - 490px + (100vw - (100vw - 980px) - 11rem) / 12 + 1rem) 1.25rem;
  }
  .playlist-inner-overlay {
    width: calc(50vw - 490px + (100vw - (100vw - 980px) - 11rem) / 12 * 4 + 4rem);
  }
  .close-playlist-overlay-btn {
    right: calc(50vw - 490px + (100vw - (100vw - 980px) - 11rem) / 12 * 4 + 5rem);
  }
  .playlist-overlay-message {
    padding: 1.25rem calc(50vw - 490px) 0 1rem;
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  .wrap {
    width: 1040px;
  }
  .wrap-s {
    width: 760px;
  }
  .header:after {
    right: calc((100vw - 1040px) / 2);
    left: calc((100vw - 1040px) / 2);
  }
  .secondary-nav {
    padding-right: calc((100vw - 1040px) / 2);
    padding-left: calc((100vw - 1040px) / 2);
  }
  a.back-btn {
    left: calc(50% - 520px);
  }
  .data-filters dl, .data-filters .event-search {
    width: 18.5%;
    margin: 0;
  }
  .data-filters .event-ticket_type {
    width: 26%;
  }
  .data-filters .event-search dd {
    width: calc(1040px - 2.5rem);
  }
  .share a {
    margin-right: 9px;
  }
  .home-header[data-amount="1"] .home-header-item {
    margin-left: calc(-50vw + 520px);
  }
  .home-header[data-amount="1"] .home-header-item-content,
  .home-header[data-amount="1"] .home-header-item-content-copy {
    padding-left: calc(50vw - 520px);
    padding-right: calc(50vw - 520px);
  }
  .home-header[data-amount="2"] > .wrap {
    grid-template-columns: calc((100% - (100% - 1040px) - 13.75rem) / 12 * 7 + 7.5rem + 50% - 520px) calc((100% - (100% - 1040px) - 13.75rem) / 12 * 5 + 5rem + 50% - 520px);
  }
  .home-header[data-amount="2"] .home-header-item-content {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    column-gap: 1.25rem;
  }
  .home-header[data-amount="2"] .home-header-item-content .home-header-item-btn {
    margin-top: 0;
  }
  .home-header[data-amount="3"] > .wrap {
    grid-template-columns: calc((100% - (100% - 1040px) - 13.75rem) / 12 * 6 + 6.25rem + 50% - 520px) calc((50% - 0.625rem) / 2 - 0.625rem) calc((50% - 0.625rem) / 2 - 0.625rem);
  }
  .home-header[data-amount="3"] .home-header-item:nth-child(1) .home-header-item-content {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    column-gap: 1.25rem;
  }
  .home-header[data-amount="3"] .home-header-item:nth-child(1) .home-header-item-content .home-header-item-btn {
    margin-top: 0;
  }
  /*********************
  PAGE STYLES
  *********************/
  .anni-intro {
    margin-top: -10.25rem;
  }
  .anni-intro .entry-content {
    padding: 0 8.54rem;
  }
  .anniversary-tile.medium-tile {
    padding: 0 calc(5.52rem);
  }
  .anniversary-tile.medium-tile .img-container {
    width: calc(100% + 11.04rem);
    transform: translateX(-5.52rem);
  }
  .anniversary-tile.large-tile {
    padding: 0 calc(5.52rem);
  }
  .anniversary-tile.large-tile .tile-inner {
    padding: 0 calc(5.52rem);
  }
  .anniversary-tile.large-tile .img-container {
    width: calc(100% + 22.08rem);
    transform: translateX(-11.04rem);
  }
  .stream-message h3 {
    width: 57%;
    font-size: 3.4375rem;
  }
  .festivalheader-content .img-container:before {
    padding-bottom: 53%;
  }
  .festivalpage-headform .updates-mailform,
  .festival-header .updates-mailform {
    padding: 0.46875rem;
  }
  .festivalpage-headform .updates-mailform .center-container,
  .festival-header .updates-mailform .center-container {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .festivalpage-headform .updates-mailform span,
  .festival-header .updates-mailform span {
    float: left;
    display: block;
    margin-top: 7px;
    width: 310px;
  }
  .festivalpage-headform .updates-mailform .gform_wrapper,
  .festival-header .updates-mailform .gform_wrapper {
    float: left;
    margin-left: 1.25rem;
    width: calc(100% - 310px - 1.25rem);
  }
  .festivalpage-headform .updates-mailform .gform_wrapper ul,
  .festival-header .updates-mailform .gform_wrapper ul {
    margin: 0;
  }
  .festivalheader-content .img-container {
    height: 32.55rem;
  }
  /*********************
  *
  * NEW
  *
  *********************/
  /*********************
  * HEADER
  *********************/
  .header-form {
    width: calc((100% - 11rem) / 12 * 5 + 4rem);
  }
  /*********************
  * SEARCH OVERLAY
  *********************/
  .search-overlay {
    padding-right: calc(50vw - 520px + (100vw - (100vw - 1040px) - 11rem) / 12 + 1rem);
    padding-left: calc(50vw - 520px + (100vw - (100vw - 1040px) - 11rem) / 12 + 1rem);
  }
  /*********************
  * PLAYLIST OVERLAY
  *********************/
  .playlist-inner-overlay {
    width: calc(50vw - 520px + (100vw - (100vw - 1040px) - 11rem) / 12 * 3 + 3rem);
  }
  .close-playlist-overlay-btn {
    right: calc(50vw - 520px + (100vw - (100vw - 1040px) - 11rem) / 12 * 3 + 4rem);
  }
  .playlist-overlay-message {
    padding-right: calc(50vw - 520px);
  }
}
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /*
  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:

  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }

  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:

  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }

  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 

  */
}
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Print Stylesheet

  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.

  ******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}
