@charset "UTF-8";
/*
//////////////////////////////
// Config
//////////////////////////////
*/
/**
 * @file /config/_config.scss
 * Base file for all includes - import bower components here
 * TODO: look at replacing bower with eyeglass
 */
html {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

embed,
img,
object,
video {
  max-width: 100%;
  height: auto;
}

/*
 * A partial implementation of the Ruby list functions from Compass:
 * https://github.com/Compass/compass/blob/stable/lib/compass/sass_extensions/functions/lists.rb
 */
/*
 * A partial implementation of the Ruby constants functions from Compass:
 * https://github.com/Compass/compass/blob/stable/lib/compass/sass_extensions/functions/constants.rb
 */
/*
 * A partial implementation of the Ruby display functions from Compass:
 * https://github.com/Compass/compass/blob/stable/core/lib/compass/core/sass_extensions/functions/display.rb
 */
/**
 * @file /config/variables.scss
 * all the variables
 */
/**
 * @file /config/_mixins.scss
 * all our mixins
 */
/*
////////////
*/
/*
//////////////////////////////
// GLOBALS
*/
/**
 * @file /global/_normalizes.scss
 * our normalize pasted partial here
 */
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

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

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

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

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

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

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

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

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

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

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

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #FF0;
  color: #000;
}

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

td,
th {
  padding: 0;
}

/* Custom Normalize Additions
   ========================================================================== */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

ul.tabs.primary {
  max-width: none;
}

/**
 * @file /global/_extends.scss
 * Extendable classes go here
 */
.margin-above-small {
  margin-top: 30px;
}
@media screen and (max-width: 650px) {
  .margin-above-small {
    margin-top: 20px;
  }
}

.margin-above-medium {
  margin-top: 60px;
}
@media screen and (max-width: 650px) {
  .margin-above-medium {
    margin-top: 40px;
  }
}

.margin-above-large {
  margin-top: 90px;
}
@media screen and (max-width: 650px) {
  .margin-above-large {
    margin-top: 60px;
  }
}

/**
 * @file /global/_typography.scss
 * All typography base declarations go here.
 */
body,
html {
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 300;
  line-height: 1.5;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 16px;
  font-size: 1.6rem;
}

p {
  margin: 0;
}
p + p {
  margin-top: 30px;
}
p + h2,
p + h3,
p + h4,
p + h5,
p + h6 {
  margin-top: 45px;
}
p + ul,
p + ol {
  margin-top: 15px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 10px;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  line-height: 1.2;
}

h1 + h2,
h2 + h3,
h3 + h4,
h4 + h5,
h5 + h6 {
  margin-top: 0.5em;
  margin-bottom: 0;
}

h1,
.node--type-person .top .block-entity-fieldnodefield-title,
.node--type-person .top .block-entity-fieldnodetitle,
.page-node-type-person .top .block-entity-fieldnodefield-title,
.page-node-type-person .top .block-entity-fieldnodetitle {
  font-size: 60px;
  font-weight: 300;
  color: #333333;
}
@media screen and (max-width: 800px) {
  h1,
.node--type-person .top .block-entity-fieldnodefield-title,
.node--type-person .top .block-entity-fieldnodetitle,
.page-node-type-person .top .block-entity-fieldnodefield-title,
.page-node-type-person .top .block-entity-fieldnodetitle {
    font-size: 50px;
  }
}

h2 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 300;
  color: #4A4A4A;
}
@media (min-width: 64em) {
  h2 {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
.enhanced_teaser h2, .teaser h2 {
  font-size: 18px;
  font-size: 1.8rem;
}
@media (min-width: 64em) {
  .enhanced_teaser h2, .teaser h2 {
    font-size: 20px;
    font-size: 2rem;
  }
}
h2.subtitle {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}
@media (min-width: 64em) {
  h2.subtitle {
    font-size: 20px;
    font-size: 2rem;
    max-width: 720px;
  }
}
h2.site-slogan {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 800;
}
@media (min-width: 64em) {
  h2.site-slogan {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

h3,
.sub-menu h3 a {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 300;
  text-transform: uppercase;
}
@media (min-width: 64em) {
  h3,
.sub-menu h3 a {
    font-size: 20px;
    font-size: 2rem;
  }
}

h4 {
  font-size: 16px;
  font-size: 1.6rem;
  color: #606060;
  font-weight: 300;
}
@media (min-width: 64em) {
  h4 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

h5 {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 400;
}
@media (min-width: 64em) {
  h5 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

h6 {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
}
@media (min-width: 64em) {
  h6 {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

label {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
}

input,
textarea {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
}

table {
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
}

figcaption {
  line-height: 1.5;
  vertical-align: middle;
}
figcaption cite {
  font-size: 14px;
  font-size: 1.4rem;
}
figcaption span {
  font-size: 12px;
  font-size: 1.2rem;
  vertical-align: middle;
}

blockquote {
  font-size: 16px;
  font-size: 1.6rem;
}
@media (min-width: 64em) {
  blockquote {
    font-size: 20px;
    font-size: 2rem;
  }
}

ul,
ol {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
}

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

/*
////////////
*/
/*
//////////////////////////////
// COMPONENTS
//////////////////////////////
*/
/**
 * @file /components/_components.scss
 *
 * all components
 */
/**
 * @file /components/_wrapper.scss
 * base styles for wrapper component
 * This extend can be applied to any selector that
 * you would like cleared, centered and given our max-width of $grid-width variable
 * also padding is applied at resolutions above $x-large so that at smaller resolutions
 * content doesn't hug the browser edges.
 */
.wrapper,
.view-id-taxonomy_term,
.block-views-blockacc-artists-block-1,
.container,
.node--type-homepage.node--view-mode-full {
  margin: 0 auto;
  max-width: 1220px;
  padding: 15px 30px;
}
body.season-show-artists-page .wrapper, .view-id-taxonomy_term, .block-views-blockacc-artists-block-1, .container, .node--type-homepage.node--view-mode-full {
  max-width: 1220px;
  padding: 7.5px 15px;
}
@media (min-width: 78.75em) {
  body.season-show-artists-page .wrapper, .view-id-taxonomy_term, .block-views-blockacc-artists-block-1, .container, .node--type-homepage.node--view-mode-full {
    padding: 0;
  }
}

@media (min-width: 78.75em) {
  .wrapper,
.view-id-taxonomy_term,
.block-views-blockacc-artists-block-1,
.container,
.node--type-homepage.node--view-mode-full {
    padding: 0;
  }
}
header .wrapper,
header .view-id-taxonomy_term,
header .block-views-blockacc-artists-block-1,
header .container,
header .node--type-homepage.node--view-mode-full {
  max-width: 1220px;
}

.top + .wrapper {
  padding: 0 30px;
}
@media (min-width: 78.75em) {
  .top + .wrapper {
    padding: 0;
  }
}

.top.colorbar + .wrapper {
  padding: 30px;
}
@media (min-width: 78.75em) {
  .top.colorbar + .wrapper {
    padding: 30px 0;
  }
}

/**
 * @file /components/_container.scss
 *
 * container partial. 
 */
.container, .node--type-homepage.node--view-mode-full {
  padding: 0;
}

/**
 * @file /components/_header.scss
 * base styles for header element
 */
.site-header {
  padding: 5px 15px !important;
  color: #8E8E8E;
  border-bottom: 2px solid #D8D8D8;
  position: relative;
  z-index: 5;
}
.site-header .header-blurb {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 22px;
  font-weight: 300;
  top: 25px;
  font-weight: 300;
  color: #262626;
}
@media screen and (max-width: 1200px) {
  .site-header .header-blurb {
    display: none;
  }
}
.site-header > .container, .site-header > .node--type-homepage.node--view-mode-full {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}
.site-header > .container > a, .site-header > .node--type-homepage.node--view-mode-full > a {
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  max-width: 280px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 800px) {
  .site-header > .container > a, .site-header > .node--type-homepage.node--view-mode-full > a {
    max-width: 220px;
  }
}
.site-header > .container > nav, .site-header > .node--type-homepage.node--view-mode-full > nav {
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.site-header > .container > div, .site-header > .node--type-homepage.node--view-mode-full > div {
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (max-width: 1201px) {
  .site-header > .container > div:not(#block-responsivemenumobileicon), .site-header > .node--type-homepage.node--view-mode-full > div:not(#block-responsivemenumobileicon) {
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (min-width: 64em) {
  .site-header {
    padding: 45px 15px;
  }
}
.site-header .search-modal {
  display: none;
}
.site-header [data-lightbox] {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  text-indent: -9999px;
  overflow: hidden;
  margin-top: -2px;
}
@media screen and (max-width: 1200px) {
  .site-header [data-lightbox] {
    width: 55px;
    height: 55px;
  }
}
@media screen and (min-width: 601px) and (max-width: 1180px) {
  .site-header [data-lightbox] {
    margin-right: 15px;
  }
}
.site-header [data-lightbox]::before {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 21.9 21.9' style='enable-background:new 0 0 21.9 21.9;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:none;stroke:%23262626;stroke-miterlimit:10;%7D%0A%3C/style%3E%3Cg id='Group_405' transform='translate(-158.555 -606.047) rotate(-45)'%3E%3Ccircle id='Ellipse_2' class='st0' cx='-316.4' cy='552.6' r='7.9'/%3E%3Cline id='Line_178' class='st0' x1='-316.4' y1='571.2' x2='-316.4' y2='560.5'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
@media (min-width: 37.5em) {
  .site-header [data-lightbox]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23.249' height='23.249' viewBox='0 0 23.249 23.249'%3E%3Cg id='Group_405' data-name='Group 405' transform='translate(-157.848 -606.824) rotate(-45)'%3E%3Ccircle id='Ellipse_2' data-name='Ellipse 2' cx='6.878' cy='6.878' r='6.878' transform='translate(-324.352 549.583)' fill='none' stroke='%23222' stroke-miterlimit='10' stroke-width='2'/%3E%3Cline id='Line_178' data-name='Line 178' y1='9.245' transform='translate(-317.474 563.339)' fill='none' stroke='%23222' stroke-miterlimit='10' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
}
@media (min-width: 75em) {
  .site-header [data-lightbox]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23.249' height='23.249' viewBox='0 0 23.249 23.249'%3E%3Cg id='Group_405' data-name='Group 405' transform='translate(-157.848 -606.824) rotate(-45)'%3E%3Ccircle id='Ellipse_2' data-name='Ellipse 2' cx='6.878' cy='6.878' r='6.878' transform='translate(-324.352 549.583)' fill='none' stroke='%23222' stroke-miterlimit='10' stroke-width='2'/%3E%3Cline id='Line_178' data-name='Line 178' y1='9.245' transform='translate(-317.474 563.339)' fill='none' stroke='%23222' stroke-miterlimit='10' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.lity {
  background-color: rgba(255, 255, 255, 0.9);
}
.lity .lity-close {
  height: 123px;
  overflow: hidden;
  right: 20px;
  text-indent: -9999px;
  top: 75px;
  width: 128px;
}
@media (min-width: 35em) {
  .lity .lity-close {
    right: 50px;
  }
}
.lity .lity-close::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='128' height='124.471' viewBox='0 0 128 124.471'%3E%3Cg id='Group_414' data-name='Group 414' transform='translate(-1197 -135.529)'%3E%3Cline id='Line_179' data-name='Line 179' x2='77.952' transform='translate(1233.807 192.064) rotate(-45)' fill='none' stroke='%23198da1' stroke-linecap='round' stroke-width='2'/%3E%3Cg id='Group_413' data-name='Group 413'%3E%3Cline id='Line_179-2' data-name='Line 179' x2='77.952' transform='translate(1233.807 138.228) rotate(45)' fill='none' stroke='%23198da1' stroke-linecap='round' stroke-width='2'/%3E%3Ctext id='CLOSE_SEARCH' data-name='CLOSE SEARCH' transform='translate(1197 217)' fill='%23262626' font-size='14' font-family='Helvetica' letter-spacing='0.08em'%3E%3Ctspan x='2.992' y='11'%3ECLOSE SEARCH%3C/tspan%3E%3C/text%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.lity .lity-wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 250px;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mm-page {
  overflow: hidden;
}

/**
 * @file /components/_logo.scss
 * base styles for logo components
 * .logo exists in both the header and footer and houses different ACC brand components.
 * .acc is used in the header as the main site logo at $small-medium and up resolutions > 560px
 * .acc-inline-c is used in the header as the main site logo at below $small-medium resolutions < 560px.
 * .acc-c is used in the footer as a nice brand book end.
 * All other logos found here are used in the styleguide as examples.
 *
 * For layout styles see /layouts/_header.scss and /layouts/_footer.scss
 */
.logo {
  display: block;
  width: 100%;
}
.logo.footer-logo {
  max-width: 250px;
  min-width: 50px;
}
@media (min-width: 64em) {
  .logo.footer-logo {
    max-width: 400px;
  }
}
.logo .logo {
  margin: 0;
  padding: 0;
  text-indent: -1000px;
  overflow: hidden;
  height: 0;
  padding-bottom: 50%;
  width: 100%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.logo .logo.acc-c {
  background-image: url(images/cd7b206901e52388057a006711d0a248.svg);
  padding-bottom: 100%;
  background-position: left center;
}
.logo .logo.acc-c-white {
  background-image: url(images/90764931c191bde79ad78f013e19321d.svg);
  padding-bottom: 100%;
  background-position: left center;
}
.logo .logo.acc-stacked-c {
  background-image: url(images/dcf9bd08db3d21acde6fe614cce2e651.svg);
  background-position: left center;
  padding-bottom: 50%;
}
.logo .logo.acc-stacked {
  background-image: url(images/2410e9673a8f3d107f8e703f8cb7e076.svg);
  background-position: left center;
}
.logo .logo.acc-inline {
  background-image: url(images/c79182ac672af94816c75582a8282125.svg);
}
.logo .logo.acc-inline-c {
  background-image: url(images/ed9fea69fafd7a82a5f62dc02052175b.svg);
  background-position: left center;
  padding-bottom: 25%;
}
.logo .logo.acc {
  background-image: url(images/424387adf5ebf698a0149fe8ace64957.svg);
  background-position: left center;
  padding-bottom: 70%;
}
.logo .logo.acc-white {
  background-image: url(images/8edd0acc98761f0561603951628be9a6.svg);
  background-position: left center;
  padding-bottom: 50%;
}

/**
 * @file /components/_link.scss
 * base flink styles as they appear inside and outside of article elements
 */
a,
a:link {
  color: #1998AB;
  text-decoration: none;
  transition: all 0.15s;
}
a:visited,
a:link:visited {
  color: #17899a;
}
a:hover,
a:link:hover {
  color: #0a3d44;
}
.page-node-type-blog .main article a:not(.button):not(.paragraph--type-gallery-image),
.page-node-type-blog .main article a:link:not(.button):not(.paragraph--type-gallery-image) {
  border-bottom: 3px solid #1998AB;
  transition: all 0.2s;
}
.page-node-type-blog .main article a:not(.button):not(.paragraph--type-gallery-image):hover,
.page-node-type-blog .main article a:link:not(.button):not(.paragraph--type-gallery-image):hover {
  background-color: #99E8F4;
  border-color: #5c8b92;
  background-position: -100%;
}
.page-node-type-blog .main article a:not(.button):not(.paragraph--type-gallery-image):visited,
.page-node-type-blog .main article a:link:not(.button):not(.paragraph--type-gallery-image):visited {
  border-color: #d1eaee;
}
.page-node-type-blog .main article a:not(.button):not(.paragraph--type-gallery-image):visited:hover,
.page-node-type-blog .main article a:link:not(.button):not(.paragraph--type-gallery-image):visited:hover {
  border-color: #0f5b67;
  color: #0f5b67;
}
.page-node-type-blog .main article a.wysiwyg-button,
.page-node-type-blog .main article a:link.wysiwyg-button {
  border-bottom: 0 !important;
}
.page-node-type-article .main article a,
.page-node-type-article .main article a:link {
  text-decoration: underline;
}

/**
 * @file /components/_list.scss
 * base ordered and unordered list styles
 * classed-style for check ul
 */
ul,
ol {
  margin: 0;
  padding: 0;
}
article ul,
article ol {
  margin-bottom: 15px;
  padding-left: 30px;
}
article ul li,
article ol li {
  margin-bottom: 10px;
}
ul + p,
ul + h2,
ul + h3,
ul + h4,
ul + h5,
ul + h6,
ol + p,
ol + h2,
ol + h3,
ol + h4,
ol + h5,
ol + h6 {
  margin-top: 30px;
}
ul ul,
ol ul {
  list-style-type: disc;
}
ul ol,
ol ol {
  list-style-type: decimal;
}
ul.check,
ol.check {
  margin-bottom: 30px;
  padding-left: 0;
}
ul.check li,
ol.check li {
  margin-bottom: 15px;
  padding-left: 30px;
  list-style-type: none;
}

/**
 * @file /components/_button.scss
 *
 * Button styles - base, primary, secondary, tertiary and quaternary.
 */
button,
.button,
a.button,
a.button:link,
a.button:visited,
.node--type-show-artist.node--view-mode-shop-links .field a,
.node--type-show-seasons .field--type-link a,
.node--type-call-to-action.dark .field--name-field-link a,
.field--name-field-link a,
.block-acc-events.block-events-pager-block a,
.block-acc-events.block-events-pager-block a:link,
.block-acc-events.block-events-pager-block a:visited,
.more-link a,
input[type=submit] {
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 700;
  padding: 15px 30px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 0;
  -webkit-appearance: none;
  transition: all 0.1s;
}
@media (min-width: 64em) {
  button,
.button,
a.button,
a.button:link,
a.button:visited,
.node--type-show-artist.node--view-mode-shop-links .field a,
.node--type-show-seasons .field--type-link a,
.node--type-call-to-action.dark .field--name-field-link a,
.field--name-field-link a,
.block-acc-events.block-events-pager-block a,
.block-acc-events.block-events-pager-block a:link,
.block-acc-events.block-events-pager-block a:visited,
.more-link a,
input[type=submit] {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
button.more-link,
.button.more-link,
a.button.more-link,
a.button:link.more-link,
a.button:visited.more-link,
.node--type-show-artist.node--view-mode-shop-links .field a.more-link,
.node--type-show-seasons .field--type-link a.more-link,
.node--type-call-to-action.dark .field--name-field-link a.more-link,
.field--name-field-link a.more-link,
.block-acc-events.block-events-pager-block a.more-link,
.more-link a.more-link,
input[type=submit].more-link {
  font-weight: 800;
  text-align: center;
}

input[type=submit],
a.btn-primary,
a.btn-primary:link,
a.btn-primary:visited,
.btn-primary,
.btn-primary:link,
.btn-primary:visited,
.node--type-show-artist.node--view-mode-shop-links .field a,
.node--type-show-seasons .field--type-link a,
.field--name-field-link a,
.more-link a,
article .button {
  background-color: #51C6D8;
  color: #000;
  border: 1px solid #28a1b4;
  text-decoration: none !important;
  display: inline-block;
}
input[type=submit]:hover,
a.btn-primary:hover,
a.btn-primary:link:hover,
a.btn-primary:visited:hover,
.btn-primary:hover,
.btn-primary:link:hover,
.btn-primary:visited:hover,
.node--type-show-artist.node--view-mode-shop-links .field a:hover,
.node--type-show-seasons .field--type-link a:hover,
.field--name-field-link a:hover,
.more-link a:hover,
article .button:hover {
  background-color: #8fdae6;
  border-color: #51C6D8;
}

a.btn-secondary,
a.btn-secondary:link,
a.btn-secondary:visited,
.btn-secondary:link,
.btn-secondary:visited,
.btn-secondary {
  background-color: #F3E442;
  color: #000;
  border: 1px solid #dbc90e;
}
a.btn-secondary:hover,
a.btn-secondary:link:hover,
a.btn-secondary:visited:hover,
.btn-secondary:link:hover,
.btn-secondary:visited:hover,
.btn-secondary:hover {
  background-color: #f8ee8a;
  border-color: #F3E442;
}

a.btn-secondary.menu-open {
  background-color: #000;
  color: #FFFFFF;
}
a.btn-secondary.menu-open:link, a.btn-secondary.menu-open:visited, a.btn-secondary.menu-open:hover {
  color: #FFFFFF;
  background-color: #262626;
}

a.btn-tertiary,
a.btn-tertiary:link,
a.btn-tertiary:visited,
.btn-tertiary,
.btn-tertiary:link,
.btn-tertiary:visited,
.node--type-show-seasons.teaser .field--name-field-buy-tickets a,
.node--type-call-to-action.dark .field--name-field-link a,
.block-acc-events.block-events-pager-block a,
.block-acc-events.block-events-pager-block a:link,
.block-acc-events.block-events-pager-block a:visited,
.callout.secondary .field--name-field-link a,
.callout.primary .field--name-field-link a,
.callout.dark .field--name-field-link a,
.callout.default .field--name-field-link a {
  background-color: #FFFFFF;
  color: #000;
  border: 1px solid #d9d9d9;
}
a.btn-tertiary:hover,
a.btn-tertiary:link:hover,
a.btn-tertiary:visited:hover,
.btn-tertiary:hover,
.btn-tertiary:link:hover,
.btn-tertiary:visited:hover,
.node--type-show-seasons.teaser .field--name-field-buy-tickets a:hover,
.node--type-call-to-action.dark .field--name-field-link a:hover,
.block-acc-events.block-events-pager-block a:hover,
.callout.secondary .field--name-field-link a:hover,
.callout.primary .field--name-field-link a:hover,
.callout.dark .field--name-field-link a:hover,
.callout.default .field--name-field-link a:hover {
  opacity: 0.8;
  border-color: #000;
}

a.btn-quaternary,
a.btn-quaternary:link,
a.btn-quaternary:visited,
.btn-quaternary,
.btn-quaternary:link,
.btn-quaternary:visited,
.node--type-show-seasons .field--type-link.field--name-field-accommodations a {
  background-color: #000;
  color: #FFFFFF;
  border: 1px solid #262626;
}
a.btn-quaternary:hover,
a.btn-quaternary:link:hover,
a.btn-quaternary:visited:hover,
.btn-quaternary:hover,
.btn-quaternary:link:hover,
.btn-quaternary:visited:hover,
.node--type-show-seasons .field--type-link.field--name-field-accommodations a:hover {
  opacity: 0.8;
  border-color: #000;
}

a.button.btn-small,
a.button.btn-small:link,
a.button.btn-small:visited,
a.btn-small,
.btn-small,
.node--type-show-seasons .field--type-link a,
.node--type-call-to-action.dark .field--name-field-link a,
.field--name-field-link a,
.block-acc-events.block-events-pager-block a,
.block-acc-events.block-events-pager-block a:link,
.block-acc-events.block-events-pager-block a:visited,
.more-link a,
article .button {
  font-size: 12px;
  font-size: 1.2rem;
  padding: 10px 15px;
}
@media (min-width: 64em) {
  a.button.btn-small,
a.button.btn-small:link,
a.button.btn-small:visited,
a.btn-small,
.btn-small,
.node--type-show-seasons .field--type-link a,
.node--type-call-to-action.dark .field--name-field-link a,
.field--name-field-link a,
.block-acc-events.block-events-pager-block a,
.block-acc-events.block-events-pager-block a:link,
.block-acc-events.block-events-pager-block a:visited,
.more-link a,
article .button {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

a.button.btn-x-small,
a.button.btn-x-small:link,
a.button.btn-x-small:visited,
a.btn-x-small,
.btn-x-small {
  font-size: 12px;
  font-size: 1.2rem;
  padding: 10px;
}
@media (min-width: 64em) {
  a.button.btn-x-small,
a.button.btn-x-small:link,
a.button.btn-x-small:visited,
a.btn-x-small,
.btn-x-small {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/**
 * @file /components/_menu.scss
 * base styles for .menu classes elements
 */
.menu,
ul.menu {
  margin: 0;
  padding: 0;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
}
.menu li,
ul.menu li {
  margin: 0;
  padding: 0;
}

@-webkit-keyframes growDown {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
}

@keyframes growDown {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
}
@media screen and (max-width: 1200px) {
  .menu--main {
    display: none !important;
  }
}
.menu--main > ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu--main > ul .nav-link-support > a {
  border: #48BFD3 1px solid;
  margin: 0 10px 0 0;
  padding: 7.5px 15px;
  text-transform: uppercase;
  background-color: #48BFD3;
  border-color: #48BFD3;
  color: #262626;
}
.menu--main > ul .nav-link-support .menu {
  display: none !important;
}
.menu--main > ul .nav-link-magazine-subscription > a {
  background: #48BFD3;
  border: #48BFD3 1px solid;
  margin: 0 10px 0 0;
  padding: 7.5px 15px;
  text-transform: uppercase;
}
.menu--main > ul .nav-link-magazine-subscription .menu {
  display: none !important;
}
.menu--main > ul > li {
  list-style: none;
  padding: 0;
  white-space: nowrap;
}
.menu--main > ul > li .menu {
  background-color: #fff;
  display: none;
  padding: 0 15px 15px;
  position: absolute;
  margin-top: 20px;
  z-index: 1;
}
.menu--main > ul > li .menu li {
  list-style: none;
  padding: 0 0 20px;
}
.menu--main > ul > li .menu li a {
  font-weight: 300 !important;
  color: #262626;
}
.menu--main > ul > li .menu li a:hover, .menu--main > ul > li .menu li a:active {
  color: #037083;
}
.menu--main > ul > li.open.animating-in .menu {
  -webkit-animation: growDown 300ms ease forwards;
          animation: growDown 300ms ease forwards;
}
.menu--main > ul > li.open .menu {
  display: block;
}
.menu--main > ul > li.open .menu::before {
  background-color: #fff;
  border-bottom: 2px solid #D8D8D8;
  bottom: -2px;
  content: "";
  display: block;
  left: -100vw;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 200vw;
  z-index: -1;
}
.menu--main > ul > li.open .menu::after {
  background-color: #48BFD3;
  bottom: 20px;
  content: "";
  display: block;
  left: 5px;
  pointer-events: none;
  position: absolute;
  top: -40px;
  width: 1px;
}
.menu--main > ul > li > a, .menu--main > ul > li span {
  color: black;
  font-weight: bold;
  padding: 10px 15px;
}
.menu--main > ul > li > span {
  cursor: default;
}

/**
 * @file /components/_submenu.scss
 * styles for submenu components - levels 2-4 of the main menu
 * as they appear in the sidebar-one region in panels panes. 
 */
.sub-menu li.js-hidden--large {
  display: none;
}
.sub-menu ul.menu {
  margin: 0;
  padding: 0;
}
.sub-menu li {
  margin: 0;
  padding: 0;
}
.sub-menu li a {
  background-position: 5px center;
}
.sub-menu h3 {
  margin: 0;
  border-bottom: 6px solid #fff;
}
.sub-menu h3 a {
  color: #FFFFFF;
  background-color: #4A4A4A;
}
.sub-menu h3 a:visited {
  color: #FFFFFF;
}
.sub-menu h3 a:visited:hover {
  color: #FFFFFF;
  background-color: #4A4A4A;
}
.sub-menu a {
  font-size: 14px;
  font-size: 1.4rem;
  display: block;
  font-weight: 400;
  background-color: #51C6D8;
  color: #000;
  padding: 10px 30px;
  font-weight: 400;
  text-align: left;
}
.sub-menu a:hover {
  color: #FFFFFF;
  background-color: #4A4A4A;
}
.sub-menu a:visited {
  color: #000;
}
.sub-menu a:visited:hover {
  color: #FFFFFF;
  background-color: #4A4A4A;
}
.sub-menu a.active, .sub-menu a.is-active {
  color: #FFFFFF;
  background-color: #333333;
}
.sub-menu a.active:hover, .sub-menu a.is-active:hover {
  color: #FFFFFF;
  background-color: #333333;
}
.sub-menu a.active:visited, .sub-menu a.is-active:visited {
  color: #FFFFFF;
  background-color: #333333;
}
@media (min-width: 64em) {
  .sub-menu a {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 15px 30px;
  }
}
.sub-menu li.menu-item--active-trail a,
.sub-menu li.menu-item--active-trail a:link,
.sub-menu li.menu-item--active-trail a:hover {
  background-color: #333333;
  color: #FFFFFF;
}
.sub-menu ul.menu ul.menu {
  width: 100%;
}
.sub-menu ul.menu ul.menu a {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 400;
  padding: 10px 45px;
  color: #E0E0E0;
  background-color: #333333;
}
@media (min-width: 64em) {
  .sub-menu ul.menu ul.menu a {
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 400;
    padding: 10px 45px;
  }
}
.sub-menu ul.menu ul.menu a:hover {
  color: #FFFFFF;
  background-color: #8E8E8E;
}
.sub-menu ul.menu ul.menu a:visited {
  color: #E0E0E0;
}
.sub-menu ul.menu ul.menu a:visited:hover {
  color: #FFFFFF;
  background-color: #8E8E8E;
}
.sub-menu ul.menu ul.menu a.active, .sub-menu ul.menu ul.menu a.is-active {
  color: #FFFFFF;
  background-color: #4A4A4A;
}
.sub-menu ul.menu ul.menu a.active:hover, .sub-menu ul.menu ul.menu a.is-active:hover {
  color: #FFFFFF;
  background-color: #4A4A4A;
}
.sub-menu ul.menu ul.menu a.active:visited, .sub-menu ul.menu ul.menu a.is-active:visited {
  color: #FFFFFF;
  background-color: #4A4A4A;
}

.sidebar-trigger {
  display: block;
}
.sidebar-trigger i {
  display: inline-block;
  padding: 15px;
  background-size: 20px;
  background-position: center;
  vertical-align: middle;
}
@media (min-width: 48em) {
  .sidebar-trigger {
    display: none;
  }
}

.block-region-sidebar-one {
  display: none;
}
.block-region-sidebar-one.menu-open {
  display: block;
}
@media (min-width: 48em) {
  .block-region-sidebar-one {
    display: block;
  }
}

/**
 * @file /components/_article.scss
 *
 * Article styles
 */
article {
  position: relative;
}
article p .button {
  margin-top: 15px;
}
article .field--name-body .button {
  display: block;
}
@media (min-width: 64em) {
  article .field--name-body .button {
    display: inline-block;
  }
}

/**
 * @file /components/_article-inactive.scss
 *
 * Articles can be made "inactive" which means that they are in the system
 * and teasers of them are displayed, but they cannot be viewed. (Enticing
 * users to buy the print magazine.) These "inactive" articles are shown
 * on Issue nodes with some additional styling. See _teaser.scss for the
 * global teaser styles.
 */
article.inactive {
  position: relative;
}
article.inactive img {
  -webkit-filter: grayscale(80%);
          filter: grayscale(80%);
}
article.inactive .title-wrap {
  border-top-color: #5ADAEE !important;
}
article.inactive .node__content {
  min-height: 100px;
}
article.inactive .button {
  display: block;
  box-shadow: rgba(0, 0, 0, 0.25) 0 1px 15px;
}
article.inactive .inactive-fade {
  position: absolute;
  height: 100px;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 15px 15px;
  text-align: center;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(254, 254, 254, 0.6) 10%, rgba(250, 250, 250, 0.8) 45%, rgba(247, 247, 247, 0.9) 69%, #f4f4f4 100%);
}

/**
 * @file /components/_article-info.scss
 *
 * Article meta data is wrapped in article-intro
 */
.article-info,
.page-node-type-recognized-person .middle {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2;
  padding: 15px;
  background-color: #F4F4F4;
  font-style: italic;
  border-bottom: 6px solid #E0E0E0;
}
.article-info div,
.page-node-type-recognized-person .middle div {
  display: inline-block;
  padding: 0 5px;
}
.article-info div.published,
.page-node-type-recognized-person .middle div.published {
  display: block;
  margin-bottom: 10px;
}
.article-info div.categories,
.page-node-type-recognized-person .middle div.categories {
  font-size: 12px;
  font-size: 1.2rem;
  display: block;
  padding: 0;
}

/**
 * @file /components/_teaser.scss
 * all teaser styles
 * @TODO: explore how to consolidate any of this further - or separate into view_mode partials.
 */
article.teaser,
article.enhanced_teaser {
  width: 100%;
}
article.teaser .article-title,
article.enhanced_teaser .article-title {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0;
}
@media (min-width: 64em) {
  article.teaser .article-title,
article.enhanced_teaser .article-title {
    font-size: 20px;
    font-size: 2rem;
  }
}
article.teaser .title-wrap,
article.enhanced_teaser .title-wrap {
  padding: 15px 30px;
}
article.teaser a.linked-wrap,
article.enhanced_teaser a.linked-wrap {
  display: block;
  transition: all 0.15s;
}
article.teaser a.linked-wrap + .node__content,
article.enhanced_teaser a.linked-wrap + .node__content {
  padding: 0 30px 30px;
}
article.teaser a.linked-wrap h2,
article.enhanced_teaser a.linked-wrap h2 {
  color: #262626;
  text-decoration: none;
}
article.teaser a.linked-wrap figure,
article.enhanced_teaser a.linked-wrap figure {
  background-color: #5ADAEE;
  transition: all 0.15s;
}
article.teaser a.linked-wrap:hover,
article.enhanced_teaser a.linked-wrap:hover {
  transition: all 0.15s;
}
article.teaser a.linked-wrap:hover figure,
article.enhanced_teaser a.linked-wrap:hover figure {
  background-color: #5ADAEE;
  transition: all 0.15s;
}
article.teaser a.linked-wrap:hover figure img,
article.enhanced_teaser a.linked-wrap:hover figure img {
  -webkit-filter: saturate(0%);
          filter: saturate(0%);
  opacity: 0.7;
}
article.teaser a.linked-wrap:hover h2,
article.enhanced_teaser a.linked-wrap:hover h2 {
  color: #0a3d44;
}
article.teaser .title-wrap,
article.enhanced_teaser .title-wrap {
  display: block;
  margin: 0;
}
article.teaser .node-content,
article.teaser .node__content,
article.enhanced_teaser .node-content,
article.enhanced_teaser .node__content {
  display: block;
  margin: 0;
}

article.teaser.show, article.teaser.show_seasons {
  background-color: #F3E442;
}
article.teaser.show .node-content,
article.teaser.show .node__content, article.teaser.show_seasons .node-content,
article.teaser.show_seasons .node__content {
  background-color: #F3E442;
  color: #000;
}
article.teaser.show span.date, article.teaser.show_seasons span.date {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
}
article.teaser.show a .article-title, article.teaser.show_seasons a .article-title {
  color: #000;
}
article.teaser.show a .article-title:hover, article.teaser.show_seasons a .article-title:hover {
  color: #4A4A4A;
}
article.teaser.show p, article.teaser.show_seasons p {
  margin-bottom: 15px;
}
article.teaser.show .field--type-link, article.teaser.show_seasons .field--type-link {
  margin-bottom: 0.5em;
}
@media (min-width: 23.75em) {
  article.teaser.show .field--type-link, article.teaser.show_seasons .field--type-link {
    display: inline-block;
  }
}
article.teaser.show .field--type-link a, article.teaser.show_seasons .field--type-link a {
  display: block;
  font-size: 0.8em;
  width: 100%;
}
@media (min-width: 23.75em) {
  article.teaser.show .field--type-link a, article.teaser.show_seasons .field--type-link a {
    display: inline;
    width: auto;
  }
}

/**
 * @file /components/_node--view-mode-acc-search.scss
 * Node style for search result teasers
 */
.node--view-mode-acc-search {
  margin: 15px auto;
  padding: 15px;
  background-color: #F4F4F4;
}

/**
 * @file /components/_node--view-mode-teaser.scss
 * A teaser for "Issues" used on the "Past Issues" page. It features the
 * issue cover image (linked) the title, and the summary of the body and
 * links to the full issue content.
 *
 * For the view these actually appear in, check out _view-magazine-issues.scss
 */
.node--type-issue.node--view-mode-teaser {
  overflow: hidden;
  *zoom: 1;
  margin-bottom: 1rem;
}
.node--type-issue.node--view-mode-teaser .field--name-field-media-hero {
  width: 33%;
  float: left;
  margin-right: 1rem;
}
@media (min-width: 58.75em) and (max-width: 68.75em), (min-width: 37.5em) and (max-width: 48em) {
  .node--type-issue.node--view-mode-teaser .field--name-field-media-hero {
    width: 25%;
  }
}
.node--type-issue.node--view-mode-teaser .field--name-body {
  overflow: hidden;
}

/**
 * @file /components/_forms.scss
 * base styles for forms
 */
fieldset {
  padding: 0 0 30px;
  border: 0;
}
fieldset:last-of-type {
  padding: 0;
}
fieldset h4 {
  margin-bottom: 10px;
}

.form-item.text, .form-item.textarea, .form-item.select {
  font-weight: 700;
}

label + input[type=text],
label + input[type=password],
label + textarea {
  display: block;
  padding: 10px;
}

input[type=text],
input[type=email],
input[type=password],
textarea {
  border: 2px solid #51C6D8;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
textarea:focus {
  border-color: #5ADAEE;
  outline-color: #5ADAEE;
}

input[type=text],
input[type=email],
input[type=password] {
  width: 100%;
}
@media (min-width: 48em) {
  input[type=text],
input[type=email],
input[type=password] {
    width: 300px;
  }
}

textarea {
  width: 100%;
}
@media (min-width: 48em) {
  textarea {
    width: 400px;
  }
}

article form {
  max-width: 720px;
  padding: 30px;
  background-color: #F4F4F4;
}

/**
 * @file /components/_checkbox.scss
 * Styles for input[type="checkbox"]
 */
div:not(#foo) input[type=checkbox] {
  display: inline-block;
  margin: 0;
  float: left;
  width: 1px;
  opacity: 0;
  padding: 7.5px;
  vertical-align: middle;
}
div:not(#foo) input[type=checkbox].required {
  border-color: #BF0B0B;
}
div:not(#foo) input[type=checkbox] + label {
  display: inline-block;
  margin: 0 15px 15px 0;
  clear: none;
  padding: 0 0 0 30px;
  background-size: 20px;
  background-position: left center;
  cursor: pointer;
}
div:not(#foo) input[type=checkbox] + label.required {
  border-color: #BF0B0B;
  color: #BF0B0B;
}
div:not(#foo) input[type=checkbox]:checked + label {
  /* Make look clickable because they are */
  cursor: pointer;
  color: #000;
  font-weight: 700;
}

/**
 * @file /components/_radio.scss
 * Styles for input[type="radio"]
 */
div:not(#foo) input[type=radio] {
  display: inline-block;
  margin: 0;
  float: left;
  padding: 7.5px;
  opacity: 0;
  width: 1px;
  vertical-align: middle;
}
div:not(#foo) input[type=radio].required {
  border-color: #BF0B0B;
}
div:not(#foo) input[type=radio] + label {
  display: inline-block;
  margin: 0 15px 15px 0;
  clear: none;
  padding: 0 0 0 30px;
  background-size: 20px;
  background-position: left center;
  cursor: pointer;
}
div:not(#foo) input[type=radio] + label.required {
  border-color: #BF0B0B;
  color: #BF0B0B;
}
div:not(#foo) input[type=radio]:checked + label {
  /* Make them look clickable because they are */
  cursor: pointer;
  color: #000;
  font-weight: 700;
}

/**
 * @file /components/_hr.scss
 *styles horizontral rule
 */
hr {
  border: 0;
  height: 4px;
  background: #4A4A4A;
}
hr.color {
  background: #5ADAEE;
}

/**
 * @file /components/_table.scss
 * styles for table elements
 */
table {
  margin: 25px 0;
  border-collapse: collapse;
  border: 1px solid #E0E0E0;
  border-bottom: 2px solid #CCCCCC;
}
table tr:hover {
  background: #F4F4F4;
}
table tr:hover td {
  color: #333333;
}
table th, table td {
  color: #8E8E8E;
  border: 1px solid #E0E0E0;
  border-collapse: collapse;
  padding: 7.5px 15px;
}
@media (min-width: 64em) {
  table th, table td {
    padding: 15px 30px;
  }
}
table th {
  background: #000;
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 14px;
}
table th.last {
  border-right: none;
}

/**
 * @file /components/_table-wrap.scss
 * provide base-level responsiveness toward tables
 * by applying a wrapper for overflowing content via horizonal scroll
 */
.table-wrap {
  max-width: 1050px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
body.season-show-artists-page .table-wrap {
  max-width: 1220px;
}

/**
 * @file /components/_footer.scss
 * base styles for footer element
 * see /layouts/_footer.scss for all layout-related styling
 */
footer.site-footer {
  background-color: #262626;
  color: #FFFFFF;
  margin-top: 60px;
  padding: 60px 30px;
}

/**
 * @file /components/_site-slogan.scss
 * styles for site-slogan as it appears in the footer.
 */
.site-slogan {
  color: #4A4A4A;
}
footer .site-slogan {
  color: #FFFFFF;
}

/**
 * @file /components/_footer-menu.scss
 * base styles for footer menu
 * see /components/_footer.scss and /components/footer-menu.scss for all layout styling
 */
.footer-menu ul,
.menu--footer ul {
  margin: 0;
  padding: 0;
}
.footer-menu li,
.menu--footer li {
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
}
.footer-menu li a,
.menu--footer li a {
  color: white;
}
.footer-menu li a:hover,
.menu--footer li a:hover {
  color: #FFFFFF;
}

/**
 * @file /components/_callout.scss
 *
 * base callout styles for CTA content type.
 */
.callout {
  background-color: #F4F4F4;
  color: #000;
  font-weight: 700;
}
@media (min-width: 35em) {
  .callout {
    margin: 0 auto;
    max-width: 500px;
  }
}
@media (min-width: 64em) {
  .callout {
    max-width: 100%;
  }
}
.callout .field--name-field-media-hero {
  display: none;
}
@media (min-width: 48em) {
  .callout .field--name-field-media-hero {
    display: block;
  }
}
.callout figure img {
  width: 100%;
}
.callout .callout-content {
  padding: 15px;
  border-top: 6px solid #E0E0E0;
}
@media (min-width: 64em) {
  .callout .callout-content {
    padding: 30px;
  }
}
.callout.dark, .callout.default {
  background-color: #333333;
  padding: 0;
  color: #FFFFFF;
  border: 0;
}
.callout.dark .callout-content, .callout.default .callout-content {
  border-top: 6px solid #5ADAEE;
}
.callout.dark h2, .callout.default h2 {
  color: #FFFFFF;
  font-weight: 800;
}
.callout.primary {
  background-color: #F6EC7D;
  padding: 0;
  color: #333333;
  border: 0;
}
.callout.primary .callout-content {
  border-top: 6px solid #F3E442;
}
.callout.primary h2 {
  color: #333333;
  font-weight: 800;
}
.callout.secondary {
  background-color: #5ADAEE;
  padding: 0;
  color: #333333;
  border: 0;
}
.callout.secondary .callout-content {
  border-top: 6px solid #1998AB;
}
.callout.secondary h2 {
  color: #333333;
  font-weight: 800;
}
.callout h2 {
  margin-bottom: 15px;
}
.callout p {
  margin-bottom: 30px;
}
.callout + .callout {
  margin-top: 30px;
}

.block-region-sidebar-two .block-cta-block {
  display: none;
}
@media (min-width: 48em) {
  .block-region-sidebar-two .block-cta-block {
    display: block;
  }
}

.block-cta-block.mobile-only {
  display: block;
}
@media (min-width: 48em) {
  .block-cta-block.mobile-only {
    display: none;
  }
}

/**
 * @file /components/_colorbar.scss
 *
 * base styles for colorbar wrapping of page title and subtitle
 */
.colorbar {
  background-color: #4A4A4A;
}
@media (min-width: 78.75em) {
  .colorbar {
    padding: 60px 30px;
  }
}
.colorbar + article {
  margin-top: 30px;
}
.colorbar.gray, .colorbar.default {
  background-color: #4A4A4A;
}
.colorbar.gray h1, .colorbar.gray h2, .colorbar.default h1, .colorbar.default h2 {
  color: #FFFFFF;
  border: 0;
}
.colorbar.yellow, .colorbar.primary {
  background-color: #F3E442;
}
.colorbar.yellow h1, .colorbar.yellow h2, .colorbar.primary h1, .colorbar.primary h2 {
  color: #333333;
  border: 0;
}
.colorbar.blue, .colorbar.secondary {
  background-color: #5ADAEE;
}
.colorbar.blue h1, .colorbar.blue h2, .colorbar.secondary h1, .colorbar.secondary h2 {
  color: #333333;
  border: 0;
}

/**
 * @file /components/_blockquotes.scss
 *
 * blockquote styles
 */
blockquote {
  margin: 15px 30px 30px;
  color: #4A4A4A;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 700;
  padding: 10px 0 10px 60px;
  font-style: italic;
  max-width: 720px;
  background-size: 34px;
  background-position: left 50%;
}

/**
 * @file /components/_figure.scss
 * base styles for figure element
 */
figure {
  margin: 0;
  padding: 0;
  line-height: 0;
  position: relative;
}
figure.view-mode-default {
  max-width: 720px;
}
figure.image-full {
  margin-bottom: 15px;
}
@media (min-width: 48em) {
  figure.image-full {
    max-width: 720px;
  }
}
figure.image-half {
  margin-bottom: 15px;
}
@media (min-width: 48em) {
  figure.image-half {
    max-width: 430px;
  }
}
figure.image-half + p {
  max-width: 860px;
}
@media (min-width: 48em) {
  figure.left {
    float: left;
    margin-right: 15px;
  }
}
@media (min-width: 48em) {
  figure.right {
    float: right;
    margin-left: 15px;
  }
}

/**
 * @file /components/_figcaption.scss
 * base styles for figcaption element
 */
.caption > figcaption {
  display: block;
}

figcaption {
  overflow: hidden;
  *zoom: 1;
  display: block;
  margin-top: 5px;
  text-align: right;
  font-size: 12px;
}
figcaption cite {
  font-style: normal;
  font-size: 12px;
}
figcaption span {
  display: block;
  font-size: 12px;
}
figcaption span.credit {
  padding-top: 5px;
}
figcaption span.source, figcaption span.copyright {
  display: inline-block;
  padding-top: 5px;
}
figcaption span.source + .copyright:before {
  content: "/";
}

/**
 * @file /components/_video.scss
 * intrinsic ratio settings for all video elements
 */
.video {
  margin-bottom: 30px;
}
.video .video-wrap {
  padding-bottom: 56.25%;
  position: relative;
}
.video .video-wrap > :first-child {
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

span.play-button {
  width: 100%;
  height: 100%;
  position: absolute;
  background: url("/themes/custom/craft_council/img/icons/png/play-button.png") no-repeat;
  background-position: 50% 50%;
  background-size: 100%;
  pointer-events: none;
}

/**
 * @file /components/_message.scss
 * base styles for messages
 */
.message,
.messages {
  font-size: 18px;
  font-size: 1.8rem;
  margin: 15px 0;
  padding: 15px 15px 15px 90px;
  font-weight: 700;
  background-position: 30px center;
  background-size: 32px;
  box-shadow: none;
  border-radius: 0;
}
.message.error,
.messages.error {
  color: #FFFFFF;
  background-color: #BF0B0B;
  border: 6px solid #6A0606;
}
.message.warning,
.messages.warning {
  background-color: #F3E442;
  border: 6px solid #CEBD0D;
}
.message.success, .message.status,
.messages.success,
.messages.status {
  background-color: #3EBF0B;
  border: 6px solid #226A06;
}

/**
 * @file /components/_utility-menu.scss
 * base styles for the user menu AKA utility-menu
 * see /layouts/_utility-menu for all things layouts
 * also see /layouts/_header.scss for base width settings
 */
.utility-menu ul.menu,
.menu--account ul.menu {
  margin: 0;
  padding: 0;
}
.utility-menu a,
.menu--account a {
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0;
  padding: 7.5px;
}
@media (min-width: 48em) {
  .utility-menu a,
.menu--account a {
    padding: 10px 15px;
  }
}

/**
 * @file /componenets/_views-exposed-form-acc-search-page-page-1.scss
 * The header search form provided as a Views Exposed Filter form
 */
#views-exposed-form-acc-search-page-page-1 {
  margin: 0;
}
#views-exposed-form-acc-search-page-page-1 [type=text] {
  padding: 10px 10px 10px 45px;
  border: 2px solid #A3A3A3;
  width: 100%;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
  background-color: #F7F7F7;
  border-radius: 0 !important;
  background-image: none;
  padding: 10px;
  font-weight: 300;
}
@media (min-width: 35em) {
  #views-exposed-form-acc-search-page-page-1 [type=text] {
    font-size: 24px;
    padding: 15px;
  }
}
@media (min-width: 64em) {
  #views-exposed-form-acc-search-page-page-1 [type=text] {
    width: auto;
  }
}
#views-exposed-form-acc-search-page-page-1 [type=text]:focus {
  border-color: #5ADAEE;
  outline-color: #5ADAEE;
}
#views-exposed-form-acc-search-page-page-1 .form-item {
  margin: 0;
  padding: 0;
}
#views-exposed-form-acc-search-page-page-1 .form--inline {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: calc(100vw - 40px);
}
@media (min-width: 35em) {
  #views-exposed-form-acc-search-page-page-1 .form--inline {
    max-width: calc(100vw - 100px);
  }
}
#views-exposed-form-acc-search-page-page-1 .form-actions {
  position: absolute;
  right: 0;
  top: 0;
}
#views-exposed-form-acc-search-page-page-1 .form-actions::before {
  position: absolute;
  display: block;
  right: 10px;
  top: 10px;
  height: 40px;
  width: 40px;
  pointer-events: none;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='27.376' height='43.43' viewBox='0 0 27.376 43.43'%3E%3Cg id='Group_414' data-name='Group 414' transform='translate(325.352 -548.583)'%3E%3Ccircle id='Ellipse_2' data-name='Ellipse 2' cx='12.688' cy='12.688' r='12.688' transform='translate(-324.352 549.583)' fill='none' stroke='%23198da1' stroke-miterlimit='10' stroke-width='2'/%3E%3Cline id='Line_178' data-name='Line 178' y1='17.054' transform='translate(-311.664 574.959)' fill='none' stroke='%23198da1' stroke-miterlimit='10' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#views-exposed-form-acc-search-page-page-1 [type=submit] {
  display: block;
  background: transparent;
  border: 0;
  width: 60px;
  height: 88px;
  text-indent: -9999px;
}

/**
 * @file /componenets/_view-magazine-issues.scss
 * The view of Past Issues on the /magazine/issues page. For theming
 * the nodes themselves, check out _node--view-mode-magazine-past-issues.scss
 */
.view-magazine-issues {
  overflow: hidden;
  *zoom: 1;
}
.view-magazine-issues .block-views-blockmagazine-issues-block-1 {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.view-magazine-issues h3 {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 30px 0 15px;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
.view-magazine-issues .view-content,
.view-magazine-issues .view-content > .views-infinite-scroll-content-wrapper {
  overflow: hidden;
  *zoom: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  clear: both;
}
.view-magazine-issues .views-row {
  display: block;
  margin: 0;
  padding: 10px;
  list-style: none;
  word-wrap: break-word;
  width: 100%;
}
@media (min-width: 35em) {
  .view-magazine-issues .views-row {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
            align-content: stretch;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
}
.view-magazine-issues .views-row + h3 {
  padding-top: 30px;
  border-top: 6px solid #F4F4F4;
}
.view-magazine-issues .views-row a.linked-wrap + .node__content {
  display: block;
  padding: 0;
  clear: both;
}
.view-magazine-issues .views-row h2.article-title {
  font-size: 18px;
  font-size: 1.8rem;
}
.view-magazine-issues .views-row .node__content {
  font-size: 14px;
  font-size: 1.4rem;
}

/**
 * @file /components/_view-acc-issue-articles.scss
 * This view displays on Issue nodes (in full view mode on the node page
 * variant) in two ways. First to show all "Featured" articles in an
 * issue. Then again to show all articles in an issue divided up by their
 * "Department" field value. (The <h3> is the divider.)
 */
.view-acc-issue-articles {
  overflow: hidden;
  *zoom: 1;
}
.view-acc-issue-articles .row-group {
  overflow: hidden;
  *zoom: 1;
}
.view-acc-issue-articles .view-content,
.view-acc-issue-articles .block-views {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
}
.block-views-blockacc-issue-articles-block-1 .view-acc-issue-articles .view-content {
  display: block;
}
.view-acc-issue-articles .views-row {
  padding: 15px 0;
}
.view-acc-issue-articles .views-row article {
  background-color: #F4F4F4;
}
.view-acc-issue-articles h3 {
  font-size: 12px;
  font-size: 1.2rem;
  margin: 0;
  padding: 10px 7.5px;
}
.view-acc-issue-articles .row-group {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
  padding: 10px;
  width: 100%;
}
.view-acc-issue-articles .row-group > div {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  border: 1px solid #bcbcbc;
}
@media (min-width: 29.6875em) and (max-width: 47.9375em) {
  .view-acc-issue-articles .row-group {
    width: 50%;
  }
}
@media (min-width: 48em) {
  .view-acc-issue-articles .row-group {
    width: 33.33%;
  }
}

.block-views-blockacc-issue-articles-block-2 {
  overflow: hidden;
  *zoom: 1;
  margin-top: 30px;
}

/**
 * @file /componenets/_view-upcoming-acc-shows.scss
 * A View block of upcoming ACC Shows ("Season Show" / machine name `show_seasons`)
 * which highlights all upcoming shows within the current season on a page at /shows
 */
.view-upcoming-acc-shows {
  overflow: hidden;
  *zoom: 1;
  margin-top: 30px;
}
@media (min-width: 58.75em), (min-width: 37.5em) and (max-width: 48em) {
  .view-upcoming-acc-shows .row-group {
    overflow: hidden;
    *zoom: 1;
  }
  .view-upcoming-acc-shows .views-row {
    width: 49%;
    width: calc(50% - 0.5rem);
    margin-right: 2%;
    margin-right: 1rem;
    float: left;
  }
  .view-upcoming-acc-shows .views-row:nth-child(2n+1) {
    clear: left;
  }
  .view-upcoming-acc-shows .views-row:nth-child(2n) {
    margin-right: 0;
  }
}

/**
 * @file /components/_badge.scss
 * Base styles for badge-like elements - used for inactive-articles.
 */
.badge {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 15px 30px;
}
article.inactive .badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #99E8F4;
  color: #000;
  padding: 30px;
  z-index: 1;
}
article.inactive .badge .badge-content {
  position: relative;
  text-align: center;
}
article.inactive .badge span {
  display: inline-block;
}

/**
 * @file /components/_selection.scss
 * styles for text selection - fanciness 
 */
::-moz-selection {
  background-color: #F3E442;
  color: #333333;
}

::selection {
  background-color: #F3E442;
  color: #333333;
}

/**
 * @file /components/_node__content.scss
 * styles for node__content component - which applies to all nodes
 */
.node__content {
  margin-top: 7.5px;
}

/**
 * @file /components/_breadcrumbs.scss
 *
 * breadcrumb styles
 */
.breadcrumb,
.breadcrumbs {
  margin: 0 auto;
  width: 100%;
  max-width: 1220px;
  padding: 7.5px 30px;
}
body.season-show-artists-page .breadcrumb, .breadcrumbs {
  max-width: 1220px;
  padding: 7.5px 15px;
}
@media (min-width: 78.75em) {
  body.season-show-artists-page .breadcrumb, .breadcrumbs {
    padding: 7.5px 0;
  }
}

@media (min-width: 78.75em) {
  .breadcrumb,
.breadcrumbs {
    padding: 7.5px 0;
  }
}
.breadcrumb li,
.breadcrumbs li {
  text-transform: capitalize;
}
.breadcrumb a,
.breadcrumbs a {
  color: #8E8E8E;
  text-transform: capitalize;
}
.breadcrumb a:hover,
.breadcrumbs a:hover {
  color: #51C6D8;
}

/**
 * @file /components/_js-pager__items.scss
 * styles for the js-pager__items views more link
 */
article ul.js-pager__items {
  margin: 30px 0;
  padding: 0;
  max-width: 100%;
  text-align: center;
}
/**
 * @file /components/_social.scss
 * styles for unordered lists classed .social
 */
.social {
  margin-top: 60px;
  margin-bottom: 30px;
}
@media (min-width: 48em) {
  .social {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.main .social {
  margin: 0 0 15px;
}
.social .block-region-social {
  background-color: #F4F4F4;
  padding: 15px;
}
@media (min-width: 48em) {
  .social .block-region-social {
    display: inline-block;
  }
}
.social .block-region-social h2 {
  font-size: 14px;
  font-size: 1.4rem;
  display: inline-block;
  margin: 0;
  font-weight: 400;
  vertical-align: middle;
}
.social .block-region-social .sharethis-wrapper {
  display: inline-block;
}

/**
 * @file /components/_toolbar-administration.scss
 * Theming override fix for odd toolbar behavior -
 * in that it would disappear at specific breakpoints.
 * this might, at somepoint, be removed and tested with subsequent module updates
*/
#toolbar-administration {
  font-size: 14px;
  font-size: 1.4rem;
}
#toolbar-administration .toolbar-lining,
#toolbar-administration .toolbar-bar {
  overflow: visible;
}
#toolbar-administration .toolbar-menu.root {
  font-size: 14px;
  font-size: 1.4rem;
}

/**
 * @file /components/_more-link.scss
 * styles for more-link component
 * related to /components/_main-menu.scss
 */
.has-more-link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.more-link {
  overflow: hidden;
  *zoom: 1;
  margin-top: 15px;
  text-align: center;
}
.menu .more-link {
  margin-top: 0;
}
.more-link a {
  display: inline-block;
}

/**
 * @file /components/_badge-wrapper.scss
 * Show artist wrapper for badges.
 */
.badge-wrapper {
  font-size: 14px;
  font-size: 1.4rem;
  background-color: #51C6D8;
  margin-top: 0;
  padding: 7.5px 15px;
  color: #000;
  font-weight: 800;
}
.full .badge-wrapper {
  margin-bottom: 15px;
}
.badge-wrapper label {
  font-weight: bold;
}
.badge-wrapper label:after {
  content: ":";
}
.badge-wrapper .field__item:not(:last-child):not(:empty):after {
  content: "/";
}

/**
 * @file /components/_dates.scss
 * Date field wrapping styles and nested start and end date styling.
 * applies to Event and Show nodes
 */
.dates {
  overflow: hidden;
  *zoom: 1;
  display: block;
  margin: 15px 0;
}
.dates .field__label {
  padding-left: 30px;
  background-size: 24px;
  background-position: left top;
}

.start-date,
.end-date {
  font-size: 16px;
  font-size: 1.6rem;
  display: block;
  padding: 15px;
  font-weight: 700;
}
.start-date h3,
.end-date h3 {
  display: block;
}
@media (min-width: 48em) {
  .node--type-event .start-date,
.node--type-event .end-date {
    display: inline-block;
  }
}

.start-date {
  background-color: #DAF6FB;
  border-bottom: 6px solid #5ADAEE;
}
@media (min-width: 48em) {
  .node--type-event .start-date {
    width: 49.2063492063%;
    float: left;
    margin-right: -100%;
    margin-left: 0;
    clear: none;
  }
}

.end-date {
  background-color: #FCFADD;
  border-bottom: 6px solid #F6EC7D;
}
@media (min-width: 48em) {
  .node--type-event .end-date {
    width: 49.2063492063%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }
}

/**
 * @file /components/featured-artist.scss
 * design for featured artist flagged show artist appearance content.
 */
.featured-artist a:after {
  font-size: 13px;
  font-size: 1.3rem;
  display: block;
  font-weight: 700;
  content: "Featured";
  width: 100%;
  text-align: center;
  padding: 7.5px;
  background-color: #FFFFFF;
  text-transform: uppercase;
  border: 6px double #5ADAEE;
}

/**
 * @file /components/_privy.scss
 *
 * custom CSS contributed by ACC staff
 */
.privy-tab-text {
  font-family: inherit !important;
  font-weight: bold;
}

/**
 * @file /components/_black-acc-events.scss
 *
 * styles for event blocks
 */
.block-acc-events {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
  margin: 15px 0;
}
@media (min-width: 48em) {
  .block-acc-events {
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.block-acc-events.block-events-date-title-block {
  margin: 30px 0;
}
.block-acc-events.block-events-pager-block {
  margin: 30px 0;
}
.block-acc-events.block-events-pager-block a,
.block-acc-events.block-events-pager-block a:link,
.block-acc-events.block-events-pager-block a:visited {
  display: inline-block;
  vertical-align: middle;
  background-size: 20px;
  width: 50%;
}
@media (min-width: 29.6875em) {
  .block-acc-events.block-events-pager-block a,
.block-acc-events.block-events-pager-block a:link,
.block-acc-events.block-events-pager-block a:visited {
    width: auto;
  }
}
.block-acc-events.block-events-pager-block a.previous-link,
.block-acc-events.block-events-pager-block a:link.previous-link,
.block-acc-events.block-events-pager-block a:visited.previous-link {
  background-position: left center;
  padding-left: 30px;
}
.block-acc-events.block-events-pager-block a.next-link,
.block-acc-events.block-events-pager-block a:link.next-link,
.block-acc-events.block-events-pager-block a:visited.next-link {
  background-position: right center;
  padding-right: 30px;
}
@media (min-width: 29.6875em) {
  .block-acc-events.block-events-pager-block a.next-link,
.block-acc-events.block-events-pager-block a:link.next-link,
.block-acc-events.block-events-pager-block a:visited.next-link {
    margin-left: 30px;
  }
}
.block-acc-events.block-events-filter-block .events-filter-form {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.block-acc-events.block-events-filter-block .events-filter-form .form-item {
  margin: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 35em) {
  .block-acc-events.block-events-filter-block .events-filter-form .form-item {
    width: 80%;
  }
}
.block-acc-events.block-events-filter-block .events-filter-form .form-text {
  font-size: 12px;
  font-size: 1.2rem;
  width: 100%;
  padding: 10px;
}
.block-acc-events.block-events-filter-block .events-filter-form .form-item,
.block-acc-events.block-events-filter-block .events-filter-form .form-submit {
  display: inline-block;
}
.block-acc-events.block-events-filter-block .events-filter-form .form-submit {
  margin: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 35em) {
  .block-acc-events.block-events-filter-block .events-filter-form .form-submit {
    width: 20%;
  }
}

/**
 * @file /components/_block-views-block.scss
 *
 * base styles for block-views-block
 * /events page views blocks
 */
.block-views-blockacc-events-acc-event-season-show .acc-shows {
  margin-bottom: 30px;
}
@media (min-width: 53.4375em) {
  .block-views-blockacc-events-acc-event-season-show .acc-shows {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
            align-content: stretch;
  }
}
.block-views-blockacc-events-acc-event-season-show .views-row {
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background-color: #F3E442;
  width: 100%;
}
.block-views-blockacc-events-acc-event-season-show .views-row + .views-row {
  margin-top: 15px;
}
@media (min-width: 53.4375em) {
  .block-views-blockacc-events-acc-event-season-show .views-row {
    width: 50%;
    padding: 15px 7.5px;
  }
}

.block-views-blockacc-events-acc-event-acc-events .acc-events {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 6px solid #F4F4F4;
}
.block-views-blockacc-events-acc-event-acc-events .acc-events .views-row {
  background-color: transparent;
  width: 100%;
}
@media (min-width: 53.4375em) {
  .block-views-blockacc-events-acc-event-acc-events .acc-events .views-row {
    width: 50%;
    padding: 15px 7.5px;
  }
}

.block-views-blockacc-events-acc-event-community {
  margin-top: 30px;
}
.block-views-blockacc-events-acc-event-community .community-event {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 6px solid #F4F4F4;
}
@media (min-width: 53.4375em) {
  .block-views-blockacc-events-acc-event-community .community-event {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
            align-content: stretch;
  }
}
.block-views-blockacc-events-acc-event-community .views-row {
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.block-views-blockacc-events-acc-event-community .views-row + .views-row {
  margin-top: 15px;
}
@media (min-width: 53.4375em) {
  .block-views-blockacc-events-acc-event-community .views-row {
    width: 50%;
    padding: 15px 7.5px;
  }
  .block-views-blockacc-events-acc-event-community .views-row + .views-row {
    margin-top: 0;
  }
}

.block-views-blockacc-events-acc-event-exhibitions .exhibition-event {
  margin-bottom: 30px;
}
@media (min-width: 53.4375em) {
  .block-views-blockacc-events-acc-event-exhibitions .exhibition-event {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
            align-content: stretch;
  }
}
.block-views-blockacc-events-acc-event-exhibitions .views-row {
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.block-views-blockacc-events-acc-event-exhibitions .views-row + .views-row {
  margin-top: 15px;
}
@media (min-width: 53.4375em) {
  .block-views-blockacc-events-acc-event-exhibitions .views-row {
    width: 50%;
    padding: 15px 7.5px;
  }
  .block-views-blockacc-events-acc-event-exhibitions .views-row + .views-row {
    margin-top: 0;
  }
}

/**
 * @file /components/_block-page-title-block.scss
 * Center the page title when in block form.
 */
.block-page-title-block {
  margin: 0 auto;
  width: 100%;
  max-width: 1220px;
  padding: 15px 30px 0;
}
body.season-show-artists-page .block-page-title-block {
  max-width: 1220px;
  padding: 7.5px 15px;
}
@media (min-width: 78.75em) {
  body.season-show-artists-page .block-page-title-block {
    padding: 7.5px 0;
  }
}

@media (min-width: 78.75em) {
  .block-page-title-block {
    padding: 7.5px 0;
  }
}

/**
 * Remove duplicate title block from these content types.
 */
.page-node-type-article .block-page-title-block,
.node--type-article .block-page-title-block,
.page-node-type-blog .block-page-title-block,
.node--type-blog .block-page-title-block,
.page-node-type-call-to-action .block-page-title-block,
.node--type-call-to-action .block-page-title-block,
.page-node-type-event .block-page-title-block,
.node--type-event .block-page-title-block,
.page-node-type-issue .block-page-title-block,
.node--type-issue .block-page-title-block,
.page-node-type-location .block-page-title-block,
.node--type-location .block-page-title-block,
.page-node-type-page .block-page-title-block,
.node--type-page .block-page-title-block,
.page-node-type-person .block-page-title-block,
.node--type-person .block-page-title-block,
.page-node-type-recognized-person .block-page-title-block,
.node--type-recognized-person .block-page-title-block,
.page-node-type-resource .block-page-title-block,
.node--type-resource .block-page-title-block,
.page-node-type-show-seasons .block-page-title-block,
.node--type-show-seasons .block-page-title-block,
.page-node-type-show-artist-appearance .block-page-title-block,
.node--type-show-artist-appearance .block-page-title-block,
.path-about-acc .block-page-title-block {
  display: none;
}

/**
 * Remove third title block from resources pages and remove duplicate title on
 * show pages.
 */
.page-node-type-resource .block-entity-fieldnodetitle,
.node--type-resource .block-entity-fieldnodetitle {
  display: none;
}

/**
 * @file /components/_filter-toggle.scss
 * Theming for toggle filters.
 */
/**
 * @file /components_with-separator.scss
 * with-separator
 */
.with-separator .field__item:not(:last-child):after {
  content: "/";
}

/**
 * @file /components/_layout-aside-one.scss
 * styles for layout aside one region
 */
.layout-aside-one {
  overflow: hidden;
  *zoom: 1;
  clear: both;
}

/**
 * @file /components/_embedded-entity.scss
 *
 * base styles for embedded entities
 */
.embedded-entity:not(.embedded-entity--acc_gallery) {
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (min-width: 35em) {
  .embedded-entity:not(.embedded-entity--acc_gallery) {
    margin-top: 10px;
    margin-bottom: 6px;
  }
  .embedded-entity:not(.embedded-entity--acc_gallery).align-center {
    margin-bottom: 30px;
  }
}
.embedded-entity:not(.embedded-entity--acc_gallery) + p {
  margin-top: 15px;
}
@media (min-width: 35em) {
  .embedded-entity:not(.embedded-entity--acc_gallery) {
    width: 55%;
  }
}
@media (min-width: 35em) {
  .embedded-entity:not(.embedded-entity--acc_gallery).align-left {
    float: left;
    margin-right: 15px;
  }
}
@media (min-width: 35em) {
  .embedded-entity:not(.embedded-entity--acc_gallery).align-right {
    float: right;
    margin-left: 15px;
  }
}
.embedded-entity:not(.embedded-entity--acc_gallery).align-center {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.embedded-entity:not(.embedded-entity--acc_gallery).align-center figure {
  margin: 0 auto;
  max-width: 500px;
}

/**
 * @file /components/_field--label-inline.scss
 *
 * base styles for inline fields
 */
.field--label-inline .field__label,
.field--label-inline > .field__item,
.field--label-inline .field__items,
.field--label-inline .field__items .field__item {
  float: none;
}

/**
 * @file /components/_field--name-field-intro.scss
 * base field styles for intro field that appears before articles and blog entries.
 */
.node.default .field--name-field-intro, .node.full .field--name-field-intro {
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}
@media (min-width: 64em) {
  .node.default .field--name-field-intro, .node.full .field--name-field-intro {
    font-size: 20px;
    font-size: 2rem;
  }
}

/**
 * @file /components/_field--name-field-web-extras.scss
 * base field styles for web extras
 * TODO: change to flex styles if time permits
 */
.field--name-field-web-extras {
  overflow: hidden;
  *zoom: 1;
  clear: both;
  width: 100%;
}
.field--name-field-web-extras ul {
  overflow: hidden;
  *zoom: 1;
  margin: 15px 0 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
}
.field--name-field-web-extras li figure {
  background-color: #5ADAEE;
  line-height: 0;
}
.field--name-field-web-extras li figure a img {
  display: block;
  line-height: 0;
  transition: all 0.15s;
}
.field--name-field-web-extras li figure a:hover img {
  transition: all 0.15s;
  -webkit-filter: saturate(0%);
          filter: saturate(0%);
  opacity: 0.7;
}
@media (min-width: 23.75em) {
  .field--name-field-web-extras li {
    width: 50%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 0%;
    padding: 6px;
  }
}
@media (min-width: 35em) {
  .field--name-field-web-extras li {
    width: 33.3333333333%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 0%;
    padding: 6px;
  }
  .field--name-field-web-extras li:nth-child(3n+1) {
    clear: left;
  }
}
@media (min-width: 48em) {
  .field--name-field-web-extras li {
    width: 25%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 0%;
  }
  .field--name-field-web-extras li:nth-child(3n+1) {
    clear: right;
  }
  .field--name-field-web-extras li:nth-child(4n+1) {
    clear: left;
  }
}

/**
 * @file /components/_field--name-field-issue-starting-month.scss
 * base field styles for issue-starting-month field
 */
.field--name-field-issue-starting-month {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 64em) {
  .field--name-field-issue-starting-month {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

/**
 * @file /components/_field--name-field-issue-ending-month.scss
 * base field styles for issue-ending-month field
 */
.field--name-field-issue-ending-month {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 64em) {
  .field--name-field-issue-ending-month {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

/**
 * @file /components/_field--name-field-issue-year.scss
 * base field styles for issue-year field
 */
.field--name-field-issue-year {
  font-size: 16px;
  font-size: 1.6rem;
  display: block;
}
@media (min-width: 64em) {
  .field--name-field-issue-year {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

/**
 * @file /components/_field--name-field-issue-number.scss
 * base field styles for Issue Number
 */
.field--name-field-issue-number {
  font-size: 14px;
  font-size: 1.4rem;
  display: inline-block;
  padding: 7.5px;
  text-transform: uppercase;
  color: #4A4A4A;
}
.field--name-field-issue-number .field__item,
.field--name-field-issue-number .field__label {
  display: inline-block;
}

/**
 * @file /components/_field--name-field-volume-number.scss
 * base field styles for Volume Number
 */
.field--name-field-volume-number {
  font-size: 14px;
  font-size: 1.4rem;
  display: inline-block;
  padding: 7.5px;
  text-transform: uppercase;
  color: #4A4A4A;
}
.field--name-field-volume-number .field__item,
.field--name-field-volume-number .field__label {
  display: inline-block;
}

/**
 * @file /components/_field--name-field-medium.scss
 * base field styles for taxonomy vocabulary medium field
 */
.field--name-field-medium {
  display: inline-block;
}
.field--name-field-medium .field__label,
.field--name-field-medium .field__items,
.field--name-field-medium .field__item {
  display: inline-block;
}

/**
 * @file /components/_field--name-field-author.scss
 *
 * base styles for author field
 */
.field--name-field-author {
  display: inline-block;
}

/**
 * @file /components/_field--name-field-media-gallery.scss
 * Provide styles for the display of image galleries.
 * Note: The PhotoSwipe lightbox display is defined in the library CSS.
 */
.field--name-field-media-gallery {
  overflow: hidden;
  *zoom: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  clear: both;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
}
.field--name-field-media-gallery.field--type-entity-reference > .field__item {
  display: block;
  padding: 7.5px;
}
.field--name-field-media-gallery figure.field__item {
  display: block;
}
.field--name-field-media-gallery .pswp-gallery-item {
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  border: 1px solid transparent;
  width: 50%;
}
.field--name-field-media-gallery .pswp-gallery-item:hover {
  border-color: #CCCCCC;
}
@media (min-width: 37.5em) {
  .field--name-field-media-gallery .pswp-gallery-item {
    width: 33.333%;
  }
}
@media (min-width: 48em) {
  .field--name-field-media-gallery .pswp-gallery-item {
    width: 20%;
  }
}
.field--name-field-media-gallery article {
  background-color: transparent;
  height: 100%;
  background-color: #F4F4F4;
}
.field--name-field-media-gallery article figcaption p {
  padding: 0 1rem;
}
.field--name-field-media-gallery img {
  width: 100%;
}
.field--name-field-media-gallery a {
  display: block;
}
.field--name-field-media-gallery a:hover img {
  -webkit-filter: saturate(0%);
          filter: saturate(0%);
  opacity: 0.7;
}

.pswp__zoom-wrap {
  text-align: center;
}
.pswp__zoom-wrap:before {
  display: inline-block;
  content: "";
  height: 100%;
  vertical-align: middle;
}

.pswp__item .wrapper {
  display: inline-block;
  margin: 0 auto;
  line-height: 0;
  width: 100%;
  max-width: 900px;
  position: relative;
  vertical-align: middle;
  text-align: left;
  z-index: 1045;
}
.pswp__item .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
  width: 100%;
}
.pswp__item .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
 * @file /components/_field--name-field-recognition.scss
 * Sbadge styles for recognized persons term of recognition.
 */
.field--name-field-recognition {
  display: inline-block;
}
.field--name-field-recognition .field__label,
.field--name-field-recognition .field__items,
.field--name-field-recognition .field__item {
  display: inline-block;
}

/**
 * @file /components_field--type-entity-reference.scss
 * base styles for field--type-entity-reference fields
 */
.field--type-list-string .field__label,
.field--type-entity-reference .field__label {
  display: inline-block;
}
.field--type-list-string .field__item,
.field--type-entity-reference .field__item {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.field--type-list-string.field--name-field-media-hero .field__item,
.field--type-entity-reference.field--name-field-media-hero .field__item {
  display: block;
}

/**
 * @file /components/_field--name-field-is-acc-staff.scss
 * base field styles for yellow badge component on ACC Staff Person nodes
 */
.field--name-field-is-acc-staff {
  font-size: 14px;
  font-size: 1.4rem;
  display: inline-block;
  padding: 7.5px 15px;
  background-color: #F3E442;
  text-transform: uppercase;
  font-weight: 700;
}
.field--name-field-is-acc-staff:empty {
  display: none;
}

/**
 * @file /components/_field--name-field-link.scss
 * base field styles for field-links - more info links.
 */
.field--name-field-link {
  margin-top: 15px;
}
.field--name-field-link a {
  display: block;
}
.field--name-field-link .field__item {
  display: block;
}
@media (min-width: 78.75em) {
  .field--name-field-link .field__item {
    display: inline-block;
  }
}

/**
 * @file /components/_field--name-field-event-type.scss
 *
 * styles for event type taxonomy term field as it appears on event nodes
 */
.field--name-field-event-type {
  font-size: 14px;
  font-size: 1.4rem;
  display: inline-block;
  margin-top: 7.5px;
  padding-top: 7.5px;
  text-transform: uppercase;
  font-weight: 700;
  border-top: 6px solid #5ADAEE;
}
.field--name-field-event-type .field__label {
  color: #606060;
}
.field--name-field-event-type .field__label,
.field--name-field-event-type .field__item {
  display: inline-block;
}
.colorbar.default .field--name-field-event-type .field__label {
  color: #FFFFFF;
  border-top: 6px solid #DAF6FB;
}
.colorbar.default .field--name-field-event-type a {
  color: #FFFFFF;
}
.colorbar.default .field--name-field-event-type a:hover {
  color: #5ADAEE;
}
.colorbar.primary .field--name-field-event-type {
  border-color: #606060;
}
.colorbar.primary .field--name-field-event-type .field__label {
  color: #606060;
}
.colorbar.primary .field--name-field-event-type a {
  color: #606060;
}
.colorbar.primary .field--name-field-event-type a:hover {
  color: #333333;
}
.colorbar.secondary .field--name-field-event-type {
  border-color: #606060;
}
.colorbar.secondary .field--name-field-event-type .field__label {
  color: #606060;
}
.colorbar.secondary .field--name-field-event-type a {
  color: #606060;
}
.colorbar.secondary .field--name-field-event-type a:hover {
  color: #333333;
}

/**
 * @file /components/_field--name-field-hero-image.scss
 * base field styles for hero image field.
 */
.full .field--name-field-hero-image {
  margin-bottom: 15px;
}

/**
 * @file /components/_field--name-field-related-content.scss
 * base styles for related content
 */
.field--name-field-related-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
}
.field--name-field-related-content > .field__item {
  margin: 0;
  list-style: none;
}
@media (min-width: 35em) {
  .field--name-field-related-content > .field__item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
            align-content: stretch;
  }
}
@media (min-width: 48em) {
  .field--name-field-related-content > .field__item {
    width: 33.33%;
  }
}
@media (min-width: 64em) {
  .field--name-field-related-content > .field__item {
    width: 25%;
  }
}
.field--name-field-related-content > .field__item > article {
  margin: 7.5px;
  background-color: #F4F4F4;
}
.field--name-field-related-content > .field__item figure article {
  margin: 0;
}

/**
 * @file /components/_field--name-field-subtitle.scss
 * base styles for subtitle field that appears under the page title on several content types.
 */
.field--name-field-subtitle {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}
@media (min-width: 64em) {
  .field--name-field-subtitle {
    font-size: 20px;
    font-size: 2rem;
  }
}

/**
 * @file /components/_field--name-field-show-date-display.scss
 * styles for show season date disaply field
 */
.field--name-field-show-date-display {
  margin-bottom: 15px;
}

/**
 * @file /components/_field--name-field-related-shows-events.scss
 * Overrides to the "Related Shows / Events" field which appears
 * on Blog Posts and Articles.
 */
html .field--name-field-related-shows-events .field__item {
  display: block;
}

/**
 * @file /components/_field--type-disqus-comment.scss
 *
 * Disqus comment field styles
 */
.field--type-disqus-comment {
  margin: 30px 0 0;
}

@media screen and (min-width: 1201px) {
  #block-responsivemenumobileicon {
    display: none;
  }
}
#block-responsivemenumobileicon .responsive-menu-toggle-icon {
  width: auto;
}
#block-responsivemenumobileicon .toggle::before {
  display: none;
}
#block-responsivemenumobileicon .toggle::after {
  display: none;
}
#block-responsivemenumobileicon .toggle .label {
  color: #262626;
  text-align: center;
  position: static;
  display: block;
}
#block-responsivemenumobileicon .toggle .icon {
  display: block;
  height: 30px;
  width: 46px;
  position: static;
  margin: 0 auto 3px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='30' viewBox='0 0 46 30'%3E%3Cg id='Group_415' data-name='Group 415' transform='translate(-353.5 -112.5)'%3E%3Cline id='Line_179' data-name='Line 179' x2='44' transform='translate(354.5 113.5)' fill='none' stroke='%23198da1' stroke-linecap='round' stroke-width='2'/%3E%3Cline id='Line_179-2' data-name='Line 179' x2='44' transform='translate(354.5 127.5)' fill='none' stroke='%23198da1' stroke-linecap='round' stroke-width='2'/%3E%3Cline id='Line_179-3' data-name='Line 179' x2='44' transform='translate(354.5 141.5)' fill='none' stroke='%23198da1' stroke-linecap='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
}

.mm-menu:not(#foo) .mm-panels {
  background-color: #fff;
  border-right: 1px solid #C6C6C6;
}
.mm-menu:not(#foo) .mm-listview > li a:not(.mm-next),
.mm-menu:not(#foo) .mm-listview > li span:not(.mm-next) {
  color: #262626;
  font-size: 22px;
  font-weight: 300;
  padding: 20px;
}
.mm-menu:not(#foo) .mm-title {
  color: #262626;
}
.mm-menu:not(#foo) .mm-listview > li:not(:last-of-type):not(.mm-divider)::after {
  left: 0;
  width: 100%;
  border-bottom-color: #C6C6C6;
}
.mm-menu:not(#foo) .mm-listview > li:last-of-type:not(.mm-divider)::after {
  display: none !important;
}
.mm-menu:not(#foo) .mm-listview > li .mm-next::before {
  display: none;
}
.mm-menu:not(#foo) .mm-listview > li .mm-next::after {
  border-color: #C6C6C6;
  width: 16px;
  height: 16px;
}
.mm-menu:not(#foo) .mm-prev::before {
  border-color: #C6C6C6;
  width: 16px;
  height: 16px;
}
.mm-menu:not(#foo) .nav-link-support a,
.mm-menu:not(#foo) .nav-link-magazine-subscription a {
  color: #1998AB !important;
  font-weight: bold;
}

@media screen and (max-width: 1350px) {
  .sliding-popup-bottom {
    height: 120px !important;
  }
}
@media screen and (max-width: 730px) {
  .sliding-popup-bottom {
    height: 140px !important;
  }
}
@media screen and (max-width: 520px) {
  .sliding-popup-bottom {
    height: 160px !important;
  }
}
@media screen and (max-width: 410px) {
  .sliding-popup-bottom {
    height: 180px !important;
  }
}

.eu-cookie-compliance-banner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 5px 0;
}
.eu-cookie-compliance-banner .eu-cookie-compliance-message {
  width: 100%;
  float: none;
  clear: both;
  text-align: center;
  max-width: 100%;
}
.eu-cookie-compliance-banner .eu-cookie-compliance-message p {
  font-size: 16px;
  font-weight: 500;
}
.eu-cookie-compliance-banner .eu-cookie-compliance-buttons {
  text-align: center;
  width: 100%;
  float: none;
  clear: both;
  max-width: 100%;
  margin: 10px 0 0;
}
.eu-cookie-compliance-banner .eu-cookie-compliance-content {
  max-width: 100%;
  padding: 0 40px;
}
.eu-cookie-compliance-banner button.agree-button.eu-cookie-compliance-default-button {
  margin: 0;
  background: #51C6D8;
  color: #000;
  border: 1px solid #28A1B4;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  text-shadow: none;
  padding: 15px 30px;
  line-height: 15px;
  max-height: 47px;
}
.eu-cookie-compliance-banner .eu-cookie-times {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: 0;
  padding: 0;
}
.eu-cookie-compliance-banner .eu-cookie-times svg {
  fill: #DDD;
}

/*
//////////////////////////////
// Layouts
//////////////////////////////
*/
/**
 * @file /layouts/_layouts.scss
 * layout base import file
 */
/**
 * @file /layouts/_html.scss
 * layout styles for the HTML base layout
 * We're giving the body a display: flex and min-height to get the footer to be sticky
 */
body {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

/**
 * @file /layouts/_header.scss
 * layout styles for the header
 * see /components/_header.scss for all color/presentation-related styling
 */
header .container, header .node--type-homepage.node--view-mode-full {
  overflow: hidden;
  *zoom: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  overflow: visible;
  width: 100%;
}
@media (min-width: 35em) {
  header .container, header .node--type-homepage.node--view-mode-full {
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
  }
}
@media (min-width: 64em) {
  header .container, header .node--type-homepage.node--view-mode-full {
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-align-content: space-between;
        -ms-flex-line-pack: justify;
            align-content: space-between;
  }
}
header a.logo {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  width: 80%;
  display: block;
}
header a.logo .acc-inline-c {
  display: none;
}
header .utility {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  width: 100%;
}
@media (min-width: 48em) {
  header .utility {
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-align-content: flex-end;
        -ms-flex-line-pack: end;
            align-content: flex-end;
  }
}
header .utility-menu,
header .menu--account {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
@media (min-width: 35em) {
  header .utility-menu,
header .menu--account {
    line-height: 1.5;
  }
}
@media (min-width: 48em) {
  header .utility-menu,
header .menu--account {
    -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
            align-self: flex-end;
  }
}
header .views-exposed-form {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  margin-top: 7.5px;
  margin-bottom: 15px;
}
@media (min-width: 48em) {
  header .views-exposed-form {
    margin: 0;
    width: auto;
    -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
            align-self: flex-end;
  }
}
header .views-exposed-form form {
  width: 100%;
}
header .main-menu,
header .menu--main {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 15px;
}
@media (min-width: 35em) {
  header .main-menu,
header .menu--main {
    margin-top: 0;
  }
}

/**
 * @file /layouts/_utility-menu.scss
 * layout styles for utility menu aka user menu
 * see /components/utility-menu for all things color and style related
 */
.utility-menu ul.menu,
.menu--account ul.menu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
}
@media (min-width: 48em) {
  .utility-menu ul.menu,
.menu--account ul.menu {
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.utility-menu li,
.menu--account li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-flex: 1 auto;
      -ms-flex: 1 auto;
          flex: 1 auto;
}

/**
 * @file /layouts/_sub-menu.scss
 * layout styles for the sub-menu
 * see /components/sub-menu.scss for all color/styling properties
 */
.layout-sidebar-first .menu--main ul,
.sub-menu ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.layout-sidebar-first .menu--main li,
.sub-menu li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
.layout-sidebar-first .menu--main li a,
.sub-menu li a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  width: 100%;
}

/**
 * @file /layouts/_footer-menu.scss
 * layout styles for the footer menu
 * see /components/_footer.scss and /components/footer-menu.scss for all color/presentation-related styling
 */
.footer-menu ul.menu,
.menu--footer ul.menu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-content: flex-end;
      -ms-flex-line-pack: end;
          align-content: flex-end;
  width: 100%;
}
@media (min-width: 64em) {
  .footer-menu ul.menu,
.menu--footer ul.menu {
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-align-content: flex-end;
        -ms-flex-line-pack: end;
            align-content: flex-end;
  }
}
.footer-menu li,
.menu--footer li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.footer-menu li a,
.menu--footer li a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 15px;
}

/**
 * @file /layouts/_footer.scss
 * layout styles for the footer
 * see /components/_footer.scss for all color/presentation-related styling
 */
footer .instagram, footer .icon-instagram-white {
  background-image: url(images/eb1b022916cf970c6d2a027a42f35d14.svg);
}
footer.site-footer {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
}
footer .brand,
footer .block-system-branding-block {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  width: 100%;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 48em) {
  footer .brand,
footer .block-system-branding-block {
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
            align-content: flex-start;
    width: 60%;
  }
}
footer .logo {
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
              -ms-grid-row-align: center;
          align-self: center;
}
footer .site-slogan {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  width: 50%;
}
footer .social {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  width: 100%;
  padding: 0;
}
@media (min-width: 48em) {
  footer .social {
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-align-content: flex-end;
        -ms-flex-line-pack: end;
            align-content: flex-end;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 40%;
  }
}
footer .social li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  list-style-type: none;
  width: 15%;
}
@media (min-width: 48em) {
  footer .social li {
    width: auto;
  }
}
footer .social a {
  display: block;
  margin: 0 10px;
  background-size: contain;
  padding-bottom: 32px;
  width: 32px;
  height: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  opacity: 1;
}
@media (min-width: 48em) {
  footer .social a {
    padding-bottom: 26px;
    width: 26px;
  }
}
footer .social a:hover {
  opacity: 0.7;
}
footer nav.menu--footer {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
}

/**
 * @file /layouts/_path-node.scss
 * default base styles for all path-nodes
 */
.path-node .top {
  overflow: hidden;
  *zoom: 1;
  clear: both;
}
.path-node .middle {
  margin: 0 0 15px 0;
}
.path-node main {
  overflow: hidden;
  *zoom: 1;
  overflow: visible;
  margin: 15px 0;
}
@media (min-width: 48em) {
  .path-node main {
    margin: 0 0 15px 0;
  }
}

/**
 * @file /layouts/_path-resources.scss
 * resources panel view block page path styles
 */
.path-resources .block-page-title-block .page-title {
  text-transform: capitalize;
}

/**
 * @file /layouts/_path-recognitions.scss
 * recognitions panel view block page path styles
 */
.path-recognitions .block-page-title-block {
  display: none;
}
.path-recognitions .social,
.path-recognitions .middle {
  margin: 0 0 30px 0;
}
.path-recognitions .top > .wrapper {
  padding-bottom: 0;
}
.path-recognitions main {
  overflow: hidden;
  *zoom: 1;
}

/**
 * @file /layouts/_node--type-show-artist.scss
 * layout and styles for node--type-show-artist
 */
@media (min-width: 78.75em) {
  .page-node-type-show-artist #block-craft-council-content > .wrapper {
    padding-left: 100px;
    box-sizing: content-box;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  .page-node-type-show-artist #block-craft-council-content > .wrapper main.main {
    overflow: visible;
  }
}
@media screen and (max-width: 767px) {
  .page-node-type-show-artist main.main {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-node-type-show-artist .sidebar-top-wrap {
    display: none;
  }
}
.page-node-type-show-artist .artwork-slick {
  display: none;
}
.page-node-type-show-artist .artwork-slick.slick-initialized {
  display: block;
  margin: 0 0 25px;
}
.page-node-type-show-artist .artwork-thumbnails {
  display: none;
  left: -100px;
  position: absolute;
  top: 0;
  width: 80px;
}
@media (min-width: 78.75em) {
  .page-node-type-show-artist .artwork-thumbnails {
    display: block;
  }
}
.page-node-type-show-artist .artwork-thumbnails-mobile {
  display: block;
  text-align: center;
}
@media screen and (max-width: 550px) {
  .page-node-type-show-artist .artwork-thumbnails-mobile img {
    height: 50px;
    width: auto !important;
  }
}
@media (min-width: 78.75em) {
  .page-node-type-show-artist .artwork-thumbnails-mobile {
    display: none;
  }
}
.page-node-type-show-artist .artwork-thumbnail {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border-radius: 0;
  border: 0;
  margin: 0 0 15px;
  max-width: 100%;
  padding: 0;
}
.page-node-type-show-artist .artwork-thumbnail:focus {
  outline: 1px dotted #333;
}
.page-node-type-show-artist .artwork-thumbnail img {
  width: 100%;
}
.page-node-type-show-artist .artwork-thumbnail.is-active img {
  -webkit-filter: grayscale(0.5);
          filter: grayscale(0.5);
  opacity: 0.5;
}
.page-node-type-show-artist .block-region-main {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 1 auto;
      -ms-flex: 1 auto;
          flex: 1 auto;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
}
.page-node-type-show-artist .block-region-main > .block-entity-viewnode {
  width: 100%;
}
.page-node-type-show-artist .block-views-blockshow-artists-views-show-artist-appearance-hero {
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  max-width: 100%;
}
.page-node-type-show-artist .block-views-blockshow-artists-views-artist-info {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media (min-width: 64em) {
  .page-node-type-show-artist .block-views-blockshow-artists-views-artist-info {
    width: 50%;
  }
}
.page-node-type-show-artist .block-views-blockshow-artists-views-show-artist-upcoming-shows {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 1 auto;
      -ms-flex: 1 auto;
          flex: 1 auto;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 30px;
  width: 100%;
}
.page-node-type-show-artist .block-views-blockshow-artists-views-show-artist-upcoming-shows .upcoming-show-block,
.page-node-type-show-artist .block-views-blockshow-artists-views-show-artist-upcoming-shows .views-element-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
}
.page-node-type-show-artist .block-views-blockshow-artists-views-show-artist-upcoming-shows .upcoming-show-block .view-content,
.page-node-type-show-artist .block-views-blockshow-artists-views-show-artist-upcoming-shows .views-element-container .view-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.page-node-type-show-artist .block-views-blockshow-artists-views-show-artist-upcoming-shows .upcoming-show-block .views-row,
.page-node-type-show-artist .block-views-blockshow-artists-views-show-artist-upcoming-shows .views-element-container .views-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 1 auto;
      -ms-flex: 1 auto;
          flex: 1 auto;
}
@media (min-width: 48em) {
  .page-node-type-show-artist .block-views-blockshow-artists-views-show-artist-upcoming-shows .upcoming-show-block .views-row,
.page-node-type-show-artist .block-views-blockshow-artists-views-show-artist-upcoming-shows .views-element-container .views-row {
    width: 50%;
  }
}
.page-node-type-show-artist .block-views-blockshow-artists-views-show-artist-upcoming-shows .field--name-field-season-show.field--type-entity-reference .field__item {
  display: block;
}
.page-node-type-show-artist .node--type-show-artist {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 1 auto;
      -ms-flex: 1 auto;
          flex: 1 auto;
}

/*
 * @file @/layouts/_path-magazine.scss
 * layout components for magazine panel views page
 */
.path-magazine .block-views-blockamerican-craft-magazine-current-issue-block-1 {
  overflow: hidden;
  *zoom: 1;
  clear: both;
}
.path-magazine .block-views-blockamerican-craft-magazine-current-issue-block-1 .views-row {
  padding: 30px 0;
}
.path-magazine .block-views-blockfavorite-articles-magazine-page-acc-magazine-favorites-articles {
  overflow: hidden;
  *zoom: 1;
  clear: both;
}
.path-magazine .sidebar .block-block-content {
  padding: 15px;
}
.path-magazine .sidebar .block-block-content ul {
  margin: 0;
  padding: 15px 0;
}
.path-magazine .sidebar .block-block-content ul li {
  list-style: none;
  vertical-align: middle;
}
.path-magazine .sidebar .block-block-content ul a {
  display: block;
  padding-left: 30px;
  background-size: 20px;
  vertical-align: middle;
}
.path-magazine .block-views-blockauthors-magazine-page-block-1 {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
  padding: 15px;
}
.path-magazine .block-views-blockauthors-magazine-page-block-1 h2 {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.path-magazine .block-views-blockauthors-magazine-page-block-1 .views-element-container {
  width: 100%;
}
.path-magazine .block-views-blockauthors-magazine-page-block-1 .view-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.path-magazine .block-views-blockauthors-magazine-page-block-1 .views-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
.path-magazine .block-views-blockauthors-magazine-page-block-1 .views-row + .views-row {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 6px solid #F4F4F4;
}
@media (min-width: 23.75em) {
  .path-magazine .block-views-blockauthors-magazine-page-block-1 .views-row {
    width: 50%;
  }
  .path-magazine .block-views-blockauthors-magazine-page-block-1 .views-row + .views-row {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
  .path-magazine .block-views-blockauthors-magazine-page-block-1 .views-row > article {
    padding: 7.5px;
  }
}
@media (min-width: 48em) {
  .path-magazine .block-views-blockauthors-magazine-page-block-1 .views-row {
    width: 100%;
  }
  .path-magazine .block-views-blockauthors-magazine-page-block-1 .views-row + .views-row {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 6px solid #F4F4F4;
  }
}
.path-magazine .view-favorite-articles-magazine-page .view-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
}
.path-magazine .view-favorite-articles-magazine-page .view-content .views-row {
  display: block;
  margin: 0;
  list-style: none;
  word-wrap: break-word;
  width: 100%;
}
@media (min-width: 35em) {
  .path-magazine .view-favorite-articles-magazine-page .view-content .views-row {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
            align-content: stretch;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
}
.path-magazine .view-favorite-articles-magazine-page .view-content .views-row > article {
  margin: 7.5px;
  background-color: #F4F4F4;
}

/**
 * @file /layouts/_two-column.scss
 * layout styles for panels layout
 */
@media (min-width: 64em) {
  .middle {
    width: 68.75%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 0%;
  }
}
.middle .block-region-middle {
  overflow: hidden;
  *zoom: 1;
  clear: both;
}

.main.two-column {
  width: 100%;
  float: none;
}

.layout-sidebar-second + .main {
  clear: left;
  margin-top: 30px;
}
@media (min-width: 48em) {
  .layout-sidebar-second + .main {
    margin-top: 0;
  }
}

@media (min-width: 48em) {
  .sidebar-top-wrap,
.layout-sidebar-third,
.layout-sidebar-fourth {
    width: 30.1587301587%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }
}

.sidebar-top-wrap,
.layout-sidebar-third {
  clear: right;
}
@media (min-width: 48em) {
  .sidebar-top-wrap,
.layout-sidebar-third {
    border-left: 6px solid #F4F4F4;
  }
}

.block-acc-node-sidebar,
.block-acc-cta {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (min-width: 48em) {
  .block-acc-node-sidebar,
.block-acc-cta {
    padding: 15px;
  }
}

.layout-aside-one {
  overflow: hidden;
  *zoom: 1;
  clear: both;
}
.layout-aside-one aside + aside,
.layout-aside-one + aside {
  margin-top: 30px;
}

.page-node-full-width .sidebar-top-wrap,
.page-node-full-width .layout-aside-one {
  display: none;
}
.page-node-full-width .main.two-column {
  width: 100%;
}

.media--type-acc-gallery {
  padding: 20px 0;
}
.media--type-acc-gallery header {
  position: relative;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  border-bottom: 5px solid #E0E0E0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0 5px;
  width: 100%;
}
.media--type-acc-gallery figure {
  background-color: transparent;
}
.media--type-acc-gallery figure img {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  width: auto;
}
.media--type-acc-gallery .gallery-title {
  color: #000;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  text-transform: none;
}
.media--type-acc-gallery .slick-count {
  color: #000;
  font-weight: bold;
}
.media--type-acc-gallery .slick-previous,
.media--type-acc-gallery .slick-next {
  background: transparent;
  border: 0;
  color: #1998AB;
  padding: 0;
}
.media--type-acc-gallery .slick-zoom {
  background: rgba(255, 255, 255, 0.7);
  border: 0;
  bottom: -31px;
  color: #000;
  font-weight: normal;
  height: 26px;
  padding: 5px 5px 7px;
  position: absolute;
  right: 0;
  text-transform: none;
  z-index: 1;
}
.media--type-acc-gallery .slick-zoom::after {
  background-image: url(images/7f2837ee5bf896a652f3d645ad1f5784.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 14px;
  width: 14px;
}

.media-acc-image.view-mode-carousel-with-meta figure,
.media--type-acc-image.view-mode-carousel-with-meta figure {
  background-color: transparent;
}
.media-acc-image.view-mode-carousel-with-meta figure img,
.media--type-acc-image.view-mode-carousel-with-meta figure img {
  height: auto;
  margin: 0 auto;
  width: auto;
  max-height: 50vw;
}
.media-acc-image.view-mode-carousel-with-meta figure a:link:not(.button),
.media--type-acc-image.view-mode-carousel-with-meta figure a:link:not(.button) {
  border-bottom: 0;
  color: transparent;
  display: block;
}
.media-acc-image.view-mode-carousel-with-meta figure a:link:not(.button):hover,
.media--type-acc-image.view-mode-carousel-with-meta figure a:link:not(.button):hover {
  background-color: transparent;
}
.media-acc-image.media--view-mode-teaser-medium-no-meta img, .media-acc-image.media--view-mode-teaser-small-no-meta img,
.media--type-acc-image.media--view-mode-teaser-medium-no-meta img,
.media--type-acc-image.media--view-mode-teaser-small-no-meta img {
  width: 100%;
}

/**
 * @file /layouts/_node--type-issue.scss
 * layout and styles for node--type-issue
 */
.node--type-issue {
  overflow: hidden;
  *zoom: 1;
  margin-bottom: 30px;
  clear: both;
}
.node--type-issue .field--name-field-image {
  display: inline-block;
  margin-bottom: 15px;
  border: 1px solid #CCCCCC;
}
.node--type-issue.teaser {
  max-width: 400px;
}
.node--type-issue.teaser figure {
  width: 100%;
}
.node--type-issue.teaser figure img {
  width: 100%;
}
.node--type-issue.teaser .title-wrap {
  display: inline-block;
  padding: 0;
}
@media (min-width: 29.6875em) {
  .node--type-issue.full .field--name-field-image, .node--type-issue.enhanced_teaser .field--name-field-image {
    width: 50%;
    max-width: 450px;
    float: left;
    margin-right: 15px;
  }
}
.node--type-issue.full .node__content, .node--type-issue.enhanced_teaser .node__content {
  margin-top: 15px;
}
.node--type-issue .field--name-field-issue-number,
.node--type-issue .field--name-field-volume-number {
  display: inline-block;
  background-color: #F4F4F4;
  margin-bottom: 15px;
}

body.page-node-type-issue .block-entity-fieldnodefield-subtitle .field--name-field-subtitle {
  color: #fff;
}

/**
 * @file /layouts/_node--type-blog.scss
 * layout and styles for node--type-blog
 */
.floating-video-container {
  background: #F4F4F4;
}

.floating-video-close {
  background: rgba(244, 244, 244, 0.85);
  bottom: -40px;
  height: 40px;
  left: 0;
  line-height: 40px;
  pointer-events: none;
  position: absolute;
  right: 0;
  text-align: right;
  padding: 0 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #1998AB;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  width: 100%;
}

.floating-video-wrapper.is-sticky {
  position: fixed;
  z-index: 100000;
}
.floating-video-wrapper.is-sticky.stick-top {
  top: 0;
}
.floating-video-wrapper.is-sticky.stick-bottom {
  bottom: 40px;
}
.floating-video-wrapper.is-sticky .floating-video-close {
  opacity: 1;
  pointer-events: all;
}
body.toolbar-horizontal .floating-video-wrapper.is-sticky.stick-top {
  top: 42px;
}
body.toolbar-horizontal.toolbar-tray-open .floating-video-wrapper.is-sticky.stick-top {
  top: 92px;
}

.page-node-type-blog .hero-image,
.node--type-blog .hero-image {
  margin-top: 30px;
  margin-bottom: 30px;
}

/**
 * @file /layouts/_node--type-recognized-person.scss
 * layout and styles for node--type-recognized-person
 */
.node--type-recognized-person.full {
  overflow: hidden;
  *zoom: 1;
  clear: both;
}
.node--type-recognized-person.full figure {
  display: inline-block;
  margin-bottom: 15px;
  margin-right: 15px;
}
@media (min-width: 48em) {
  .node--type-recognized-person.full figure {
    width: 50%;
    max-width: 450px;
    float: left;
  }
}
.node--type-recognized-person.full .field--name-field-link {
  margin-top: 15px;
  margin-bottom: 30px;
}
.node--type-recognized-person.full .node__content {
  margin-top: 30px;
}
.node--type-recognized-person.teaser {
  font-size: 14px;
  font-size: 1.4rem;
}
.node--type-recognized-person.teaser figure {
  margin-bottom: 15px;
}
.node--type-recognized-person.teaser figure img {
  vertical-align: bottom;
}

.page-node-type-recognized-person .middle {
  overflow: hidden;
  *zoom: 1;
}
.page-node-type-recognized-person .middle .field-block {
  display: inline-block;
  padding: 0 5px;
}
.page-node-type-recognized-person .middle .field {
  padding-left: 10px;
  padding-right: 10px;
}
.page-node-type-recognized-person main {
  overflow: hidden;
  *zoom: 1;
  margin: 30px 0;
}

/**
 * @file /layouts/_node--type-person.scss
 * layout and styles for node--type-person
 */
.node--type-person .top,
.page-node-type-person .top {
  overflow: hidden;
  *zoom: 1;
  clear: both;
}
.node--type-person .top .block-entity-fieldnodefield-title,
.node--type-person .top .block-entity-fieldnodetitle,
.page-node-type-person .top .block-entity-fieldnodefield-title,
.page-node-type-person .top .block-entity-fieldnodetitle {
  display: inline-block;
}
.node--type-person .top .block-entity-fieldnodefield-title + .block-entity-fieldnodetitle,
.page-node-type-person .top .block-entity-fieldnodefield-title + .block-entity-fieldnodetitle {
  padding-left: 7.5px;
}
.node--type-person .staff-top,
.page-node-type-person .staff-top {
  position: relative;
}
.node--type-person .staff-top figure,
.page-node-type-person .staff-top figure {
  display: inline-block;
  margin-bottom: 15px;
}
@media (min-width: 35em) {
  .node--type-person .staff-top figure,
.page-node-type-person .staff-top figure {
    width: 50%;
    max-width: 300px;
    float: left;
    margin-right: 15px;
  }
}
.node--type-person .field--name-field-is-acc-staff,
.page-node-type-person .field--name-field-is-acc-staff {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 0;
}
.node--type-person .contact-info,
.page-node-type-person .contact-info {
  font-size: 14px;
  font-size: 1.4rem;
  display: block;
  padding: 30px 0;
}
.node--type-person .contact-info .field,
.page-node-type-person .contact-info .field {
  padding-top: 7.5px;
}
.node--type-person.teaser .field--name-field-professional-title,
.page-node-type-person.teaser .field--name-field-professional-title {
  font-size: 14px;
  font-size: 1.4rem;
  display: block;
  margin-bottom: 15px;
}
.node--type-person.teaser .field--name-field-email-address,
.page-node-type-person.teaser .field--name-field-email-address {
  font-size: 14px;
  font-size: 1.4rem;
  padding-left: 30px;
  background-size: 20px;
  vertical-align: middle;
  background-position: left top;
  word-wrap: break-word;
}

/**
 * @file /layouts/_node--type-resource.scss
 * layout and styles for node--type-resource
 */
.page-node-type-resource .block + .block {
  margin-top: 7.5px;
}
.page-node-type-resource .field--type-list-string,
.page-node-type-resource .field--type-entity-reference {
  font-size: 14px;
  font-size: 1.4rem;
  display: inline-block;
}
.page-node-type-resource .field--type-list-string .field__items,
.page-node-type-resource .field--type-list-string .field__label,
.page-node-type-resource .field--type-list-string .field__item,
.page-node-type-resource .field--type-entity-reference .field__items,
.page-node-type-resource .field--type-entity-reference .field__label,
.page-node-type-resource .field--type-entity-reference .field__item {
  display: inline-block;
  float: none;
}
.page-node-type-resource .field--name-field-intro {
  margin-top: 30px;
}

/**
 * @file /layouts/_node--type-call-to-action.scss
 * layout and styles for node--type-call-to-action
 */
.node--type-call-to-action.dark .field--name-field-link {
  margin-top: 15px;
}
.node--type-call-to-action.dark .field--name-field-link a {
  display: block;
}
.node--type-call-to-action.dark .field--name-field-link .field__item {
  display: block;
}
.node--type-call-to-action.dark .field--name-field-link .field__item img {
  width: 100%;
}
@media (min-width: 64em) {
  .node--type-call-to-action.dark .field--name-field-link .field__item {
    display: inline-block;
  }
}

/**
 * @file /layouts/_node--type-event.scss
 * layout and styles for node--type-event
 */
.page-node-type-event .location-info,
.node--type-event .location-info {
  overflow: hidden;
  *zoom: 1;
  padding: 15px;
  background-color: #F4F4F4;
  border-bottom: 6px solid #CCCCCC;
  margin-bottom: 30px;
}
.page-node-type-event .location-info .node--type-location .node__content > *,
.node--type-event .location-info .node--type-location .node__content > * {
  width: 100%;
  display: block;
  float: none;
  clear: both;
}
.page-node-type-event .location-info h3.field__label,
.node--type-event .location-info h3.field__label {
  padding-left: 30px;
  background-size: 24px;
  background-position: left top;
}
@media (min-width: 48em) {
  .page-node-type-event .location-info h3.field__label,
.node--type-event .location-info h3.field__label {
    width: 49.2063492063%;
    float: left;
    margin-right: -100%;
    margin-left: 0;
    clear: none;
  }
}
.page-node-type-event .location-info article .field,
.node--type-event .location-info article .field {
  font-size: 14px;
  font-size: 1.4rem;
}
.page-node-type-event .location-info article h2,
.node--type-event .location-info article h2 {
  font-size: 16px;
  font-size: 1.6rem;
}
@media (min-width: 48em) {
  .page-node-type-event .location-info article .node__content,
.node--type-event .location-info article .node__content {
    width: 49.2063492063%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }
}
.page-node-type-event .more-info,
.node--type-event .more-info {
  display: block;
  margin: 15px 0;
  padding: 15px;
}
.page-node-type-event .field--name-body + .article-info,
.node--type-event .field--name-body + .article-info {
  display: inline-block;
  margin-top: 30px;
}

.node--type-event.node--view-mode-teaser .field--name-field-start-date,
.node--type-event.node--view-mode-teaser .field--name-field-end-date {
  font-size: 14px;
  font-size: 1.4rem;
  display: inline-block;
}
.node--type-event.node--view-mode-teaser .field--name-field-start-date .field__label,
.node--type-event.node--view-mode-teaser .field--name-field-start-date .field__item,
.node--type-event.node--view-mode-teaser .field--name-field-end-date .field__label,
.node--type-event.node--view-mode-teaser .field--name-field-end-date .field__item {
  display: inline-block;
}
.node--type-event.node--view-mode-teaser .node__content .field--label-inline .field__label,
.node--type-event.node--view-mode-teaser .node__content .field--label-inline > .field__item,
.node--type-event.node--view-mode-teaser .node__content .field--label-inline .field__items,
.node--type-event.node--view-mode-teaser .node__content .field--label-inline .field__items .field__item {
  display: block;
}
.node--type-event.node--view-mode-teaser .node__content .field--name-field-contact-number.field__items {
  display: none;
}
.node--type-event.node--view-mode-teaser .field--name-field-start-date {
  border-bottom: 6px solid #DAF6FB;
  margin-top: 7.5px;
  padding: 7.5px;
}
.node--type-event.node--view-mode-teaser .field--name-field-end-date {
  border-bottom: 6px solid #FCFADD;
  margin-top: 7.5px;
  padding: 7.5px;
}
.node--type-event.node--view-mode-teaser .field--name-body {
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 15px;
}
.node--type-event.node--view-mode-teaser .field--name-field-location {
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 15px;
}
.node--type-event.node--view-mode-teaser .field--name-field-location .address-line1,
.node--type-event.node--view-mode-teaser .field--name-field-location .address-line2,
.node--type-event.node--view-mode-teaser .field--name-field-location .postal-code,
.node--type-event.node--view-mode-teaser .field--name-field-location .country,
.node--type-event.node--view-mode-teaser .field--name-field-location br {
  display: none;
}

/**
 * @file _node--type-show-artist-appearance.scss
 * layout and styles for node--type-show-artist-appearance
 */
.node--type-show-artist-appearance.node--view-mode-artist-meta {
  font-size: 18px;
}
.node--type-show-artist-appearance.node--view-mode-artist-meta .node__content {
  margin: 0;
}
.node--type-show-artist-appearance.node--view-mode-artist-meta .field--name-field-secondary-artists-names .field__item {
  display: inline;
}
.node--type-show-artist-appearance.teaser > .node__content {
  padding: 0 0 10px !important;
}
.node--type-show-artist-appearance.teaser .article-title {
  color: black;
  text-align: center;
  font-size: 18px;
}
.node--type-show-artist-appearance.teaser .teaser-button-wrap {
  margin: -5px -5px 0;
  padding: 0 15px 10px;
  text-align: center;
}
.node--type-show-artist-appearance.teaser .teaser-link-wrapper,
.node--type-show-artist-appearance.teaser .field--name-field-webstore-url {
  display: inline-block;
  margin: 0 5px;
  text-align: center;
}
.node--type-show-artist-appearance.teaser .teaser-link-wrapper .field__item,
.node--type-show-artist-appearance.teaser .field--name-field-webstore-url .field__item {
  display: block;
}
.node--type-show-artist-appearance.teaser .teaser-link-wrapper a,
.node--type-show-artist-appearance.teaser .field--name-field-webstore-url a {
  color: black;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.096em;
  text-decoration: underline;
  text-transform: uppercase;
}
.node--type-show-artist-appearance.teaser .teaser-link-wrapper a:hover, .node--type-show-artist-appearance.teaser .teaser-link-wrapper a:active,
.node--type-show-artist-appearance.teaser .field--name-field-webstore-url a:hover,
.node--type-show-artist-appearance.teaser .field--name-field-webstore-url a:active {
  text-decoration: underline;
  text-transform: uppercase;
}
.node--type-show-artist-appearance.teaser .teaser-link-wrapper a::after,
.node--type-show-artist-appearance.teaser .field--name-field-webstore-url a::after {
  display: none;
}
.node--type-show-artist-appearance .field--name-field-booth {
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 0;
  font-weight: 800;
  padding: 0 15px;
}
.full.node--type-show-artist-appearance .field--name-field-booth {
  background-color: #F6EC7D;
  padding: 7.5px 15px;
}

.node--type-show-artist-appearance .field--name-field-show-artist-medium {
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 0;
  padding: 7.5px 15px;
  color: #000;
  font-weight: 800;
}
.full.node--type-show-artist-appearance .field--name-field-show-artist-medium {
  background-color: #E0E0E0;
}
.full.node--type-show-artist-appearance .field--name-field-show-artist-medium > .field__item:not(:last-child)::after {
  content: ",";
  display: inline-block;
  margin-left: -2px;
}

.teaser.node--type-show-artist-appearance .badge-wrapper {
  background: transparent;
  padding: 0 15px;
}

.node--type-show-artist-appearance .field--name-field-season-show.field--type-entity-reference .field__item {
  display: block;
}
.node--type-show-artist-appearance.full {
  max-width: 500px;
}
.node--type-show-artist-appearance.enhanced_teaser .node__content {
  padding: 0;
}
.node--type-show-artist-appearance.featured-artist::after {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.3px;
  position: absolute;
  display: block;
  font-weight: 700;
  content: "Featured";
  text-align: center;
  padding: 7.5px;
  background-color: black;
  color: white;
  text-transform: uppercase;
  top: 5px;
  left: 5px;
  padding: 5px;
}

/**
 * @file /layouts/_node--type-article.scss
 * layout and styles for node--type-article
 */
.page-node-type-article .hero-image,
.node--type-article .hero-image {
  margin-top: 30px;
  margin-bottom: 30px;
}

/**
 * @file /layouts/_node--type-show-seasons.scss
 * Layouts with component overrides for the `show_seasons` node type
 * which is called "Season Show" in the UI.
 */
.node--type-show-seasons.full .more-info {
  margin: 15px 0 30px;
}
.node--type-show-seasons .field--type-link {
  margin-bottom: 0.5em;
}
@media (min-width: 23.75em) {
  .node--type-show-seasons .field--type-link {
    display: block;
  }
}
.node--type-show-seasons .field--type-link a {
  display: block;
}
@media (min-width: 48em) {
  .node--type-show-seasons .field--type-link a {
    display: block;
  }
}
.node--type-show-seasons .acc-season-show--link-to-show-artists-view {
  margin: 15px 0;
}
.node--type-show-seasons .acc-season-show--link-to-show-artists-view a {
  display: inline-block;
}
.node--type-show-seasons .dates {
  overflow: hidden;
  *zoom: 1;
  display: block;
  margin: 15px 0;
}
.node--type-show-seasons .dates .field__label {
  padding-left: 30px;
  background-size: 24px;
  background-position: left top;
}
.node--type-show-seasons .start-date {
  font-size: 16px;
  font-size: 1.6rem;
  display: block;
  padding: 15px;
  font-weight: 700;
}
.node--type-show-seasons .start-date {
  background-color: #DAF6FB;
  border-bottom: 6px solid #5ADAEE;
}
.node--type-show-seasons .location-info {
  overflow: hidden;
  *zoom: 1;
  padding: 15px;
  background-color: #F4F4F4;
  border-bottom: 6px solid #CCCCCC;
}
.node--type-show-seasons .location-info h3.field__label {
  padding-left: 30px;
  background-size: 24px;
  background-position: left top;
}
@media (min-width: 48em) {
  .node--type-show-seasons .location-info h3.field__label {
    width: 49.2063492063%;
    float: left;
    margin-right: -100%;
    margin-left: 0;
    clear: none;
  }
}
.node--type-show-seasons .location-info .field__item {
  width: 100%;
}
.node--type-show-seasons .location-info article .field {
  font-size: 14px;
  font-size: 1.4rem;
}
.node--type-show-seasons .location-info article h2 {
  font-size: 16px;
  font-size: 1.6rem;
}
@media (min-width: 48em) {
  .node--type-show-seasons .location-info article .node__content {
    width: 49.2063492063%;
    float: right;
    margin-left: 0;
    margin-right: 0;
    clear: none;
  }
}
.node--type-show-seasons .more-info {
  display: block;
  margin: 15px 0;
}
.node--type-show-seasons .field--name-body + .article-info {
  display: inline-block;
  margin-top: 30px;
}

/**
 * @file /layouts/_node--type-homepage-splash.scss
 * Theming for homepage-splash content
 */
.node--type-homepage-splash {
  width: 100%;
  overflow: hidden;
  height: 100%;
  padding-bottom: 100%;
  z-index: 1;
}
@media (min-width: 29.6875em) {
  .node--type-homepage-splash {
    padding-bottom: 42.8571428571%;
  }
}
@media (min-width: 78.75em) {
  .node--type-homepage-splash {
    padding: 0;
    height: 600px;
  }
}
.node--type-homepage-splash .media-acc-image.view-mode-full {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #000;
  overflow: hidden;
  padding-bottom: 42.8571428571%;
}
@media (min-width: 78.75em) {
  .node--type-homepage-splash .media-acc-image.view-mode-full {
    padding: 0;
    height: 600px;
  }
}
.node--type-homepage-splash .media-acc-image.view-mode-full figure {
  margin: 0 auto;
  position: relative;
  width: 100%;
  height: auto;
  max-width: 1600px;
}
.node--type-homepage-splash .splash-position {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.node--type-homepage-splash .splash-wrap {
  margin: 0 auto;
  max-width: 720px;
  padding: 30px;
  z-index: 1;
}
@media (min-width: 48em) {
  .node--type-homepage-splash .splash-wrap {
    padding: 30px 30px 60px;
  }
}
.node--type-homepage-splash .splash-wrap h1,
.node--type-homepage-splash .splash-wrap h2 {
  color: #FFFFFF;
  text-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
}

/**
 * @file /layouts/_node--type-acc-booth.scss
 * layout and styles for node--type-acc-booth
 */
.node--type-acc-booth.teaser {
  font-size: 14px;
  font-size: 1.4rem;
}

/**
 * @file /layouts/_node--type-show-artist.scss
 * layout and styles for node--type-show-artist
 */
.node--type-show-artist.node--view-mode-artist-meta {
  font-size: 18px;
}
.node--type-show-artist.node--view-mode-artist-meta .node__content {
  margin: 0;
}
.node--type-show-artist.node--view-mode-artist-meta .name-wrapper div {
  display: inline;
}
.node--type-show-artist.node--view-mode-artist-meta .field--name-field-facebook-name {
  display: inline-block;
  line-height: 1;
  margin: 0 5px 20px 0;
  vertical-align: middle;
}
.node--type-show-artist.node--view-mode-artist-meta .field--name-field-facebook-name a {
  display: block;
  height: 27px;
  overflow: hidden;
  overflow: hidden;
  position: relative;
  text-indent: -1000px;
  width: 27px;
}
.node--type-show-artist.node--view-mode-artist-meta .field--name-field-facebook-name a::after {
  background-image: url(images/e00bdc7155607d273facc706d2f1abb9.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.node--type-show-artist.node--view-mode-artist-meta .field--name-field-instagram-name {
  display: inline-block;
  line-height: 1;
  margin: 0 5px 20px 0;
  vertical-align: middle;
}
.node--type-show-artist.node--view-mode-artist-meta .field--name-field-instagram-name a {
  display: block;
  height: 27px;
  overflow: hidden;
  overflow: hidden;
  position: relative;
  text-indent: -1000px;
  width: 27px;
}
.node--type-show-artist.node--view-mode-artist-meta .field--name-field-instagram-name a::after {
  background-image: url(images/c057d500fd72706e52f87b057eaeb883.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.node--type-show-artist.node--view-mode-shop-links {
  margin: 0 0 20px;
}
.node--type-show-artist.node--view-mode-shop-links .field {
  display: inline-block;
  margin: 0;
}
.node--type-show-artist.node--view-mode-shop-links .field a {
  line-height: 1;
  height: 50px;
  display: block;
  background: #000;
  border: 2px solid #000 !important;
  color: #FFF;
  letter-spacing: 1px;
  margin: 0 7.5px 7.5px 0;
}
.node--type-show-artist.node--view-mode-shop-links .field a:hover {
  background: #333;
}
.node--type-show-artist.node--view-mode-shop-links .field:last-of-type:not(:first-of-type) a {
  background: #FFF;
  color: #000;
}
.node--type-show-artist.node--view-mode-shop-links .field:last-of-type:not(:first-of-type) a:hover {
  background: #DDD;
}
.node--type-show-artist.node--view-mode-full {
  font-size: 18px;
  margin: 0 0 25px;
}
.node--type-show-artist.node--view-mode-full .field--name-field-company-name {
  margin-top: 15px;
}

/**
 * @file /layouts/_view-id-staff_directory.scss
 * Theming staff directory of ACC flagged Persons.
 * /about-acc/staff
 */
.view-id-staff_directory .item-list + .item-list {
  margin-top: 30px;
  padding-top: 30px;
}
.view-id-staff_directory .item-list ul:not(.contextual-links) {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
  max-width: 100%;
}
.view-id-staff_directory .item-list ul:not(.contextual-links) li {
  display: block;
  margin: 0;
  padding: 7.5px;
  list-style: none;
  word-wrap: break-word;
  width: 100%;
}
@media (min-width: 35em) {
  .view-id-staff_directory .item-list ul:not(.contextual-links) li {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
            align-content: stretch;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
}
@media (min-width: 48em) {
  .view-id-staff_directory .item-list ul:not(.contextual-links) li {
    width: 33.33%;
  }
}
@media (min-width: 64em) {
  .view-id-staff_directory .item-list ul:not(.contextual-links) li {
    width: 25%;
  }
}
.view-id-staff_directory .item-list ul:not(.contextual-links) li > article {
  background-color: #F4F4F4;
}

/**
 * @file /layouts/_view-id-authored_by_person.scss
 * layout styles for authored by person view as it appears on "person" nodes.
 */
.view-id-authored_by_person figure {
  line-height: 0;
}
.view-id-authored_by_person figure a img {
  display: block;
  line-height: 0;
  transition: all 0.15s;
  width: 100%;
}
.view-id-authored_by_person figure a:hover img {
  transition: all 0.15s;
  -webkit-filter: saturate(0%);
          filter: saturate(0%);
  opacity: 0.7;
}
.view-id-authored_by_person .item-list {
  overflow: hidden;
  *zoom: 1;
  clear: both;
  padding: 15px 0;
}
.view-id-authored_by_person .item-list ul:not(.contextual-links) {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
  padding: 0;
  max-width: 100%;
}
.view-id-authored_by_person .item-list ul:not(.contextual-links) li {
  margin: 0;
  padding: 0;
  width: 100%;
}
@media (min-width: 35em) {
  .view-id-authored_by_person .item-list ul:not(.contextual-links) li {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 50%;
  }
}
@media (min-width: 64em) {
  .view-id-authored_by_person .item-list ul:not(.contextual-links) li {
    width: 25%;
  }
}
.view-id-authored_by_person .item-list ul:not(.contextual-links) li > article {
  margin: 7.5px;
  background-color: #F4F4F4;
}

/**
 * @file /layouts/_view-id-resources.scss
 * Theming resources taxonomy term page views lists of resource nodes.
 * /resources/term-name
 */
.view-id-resources .attachment {
  margin: 30px 0 0;
  background-color: #F4F4F4;
  border-bottom: 6px solid #E0E0E0;
  padding: 15px;
}
@media (min-width: 48em) {
  .view-id-resources .attachment {
    display: inline-block;
    min-width: 50%;
  }
}
.view-id-resources .attachment a {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
}
.view-id-resources figure {
  float: left;
  max-width: 40%;
  margin-right: 15px;
  margin-bottom: 15px;
}
.view-id-resources .item-list {
  overflow: hidden;
  *zoom: 1;
  margin: 0;
  clear: both;
  padding: 30px 0;
}
.view-id-resources .item-list > ul {
  display: block;
  margin: 0;
  padding: 0;
  max-width: 100%;
}
.view-id-resources .item-list ul li,
.view-id-resources .views-row {
  overflow: hidden;
  *zoom: 1;
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0;
  clear: both;
  padding: 30px 15px;
}
@media (min-width: 35em) {
  .view-id-resources .item-list ul li,
.view-id-resources .views-row {
    width: 50%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 0%;
  }
  .view-id-resources .item-list ul li:nth-child(2n+1),
.view-id-resources .views-row:nth-child(2n+1) {
    clear: left;
  }
}
@media (min-width: 64em) {
  .view-id-resources .item-list ul li,
.view-id-resources .views-row {
    width: 33.3333333333%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 0%;
  }
  .view-id-resources .item-list ul li:nth-child(2n+1),
.view-id-resources .views-row:nth-child(2n+1) {
    clear: right;
  }
  .view-id-resources .item-list ul li:nth-child(3n+1),
.view-id-resources .views-row:nth-child(3n+1) {
    clear: left;
  }
}
.view-id-resources .field--name-field-medium,
.view-id-resources .field--name-field-programs,
.view-id-resources .field--name-field-location {
  margin-top: 15px;
}
.view-id-resources .field--name-field-link {
  clear: both;
}
@media (min-width: 64em) {
  .view-id-resources .field--name-field-link {
    clear: none;
  }
}

/**
 * @file /layouts/_view-id-resources_landing_page.scss
 * Theming resources landing page of taxonomy terms.
 * /resources
 */
.view-id-resources_landing_page .item-list {
  overflow: hidden;
  *zoom: 1;
  clear: both;
  padding: 30px 0;
}
.view-id-resources_landing_page .item-list > ul {
  display: block;
  margin: 0;
  padding: 0;
  max-width: 100%;
}
.view-id-resources_landing_page .item-list h2 > a {
  display: inline-block;
}
.view-id-resources_landing_page .item-list li {
  margin: 0;
  padding: 7.5px;
  list-style-type: none;
}
.view-id-resources_landing_page .item-list li + li {
  margin-top: 30px;
  padding-top: 15px;
}

/**
 * @file /layouts/_view-id-stories.scss
 * Theming stories views/panel page that combines blog/article content into one feed
 * /stories
 */
.view-id-stories .item-list {
  overflow: hidden;
  *zoom: 1;
  margin: 0;
  clear: both;
}
.view-id-stories .item-list ul:not(.contextual-links) {
  display: block;
  margin: 0;
  padding: 0;
  max-width: 100%;
}
.view-id-stories .item-list ul:not(.contextual-links) li {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 64em) {
  .view-id-stories .item-list.stories {
    margin-top: 15px;
    padding-top: 15px;
  }
}
.view-id-stories .item-list.stories + .item-list.stories {
  margin-top: 0;
  padding-top: 0;
}
.view-id-stories .item-list.stories ul:not(.contextual-links) {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
}
.view-id-stories .item-list.stories ul:not(.contextual-links) li {
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 35em) {
  .view-id-stories .item-list.stories ul:not(.contextual-links) li {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 50%;
  }
}
@media (min-width: 48em) {
  .view-id-stories .item-list.stories ul:not(.contextual-links) li {
    width: 33.33%;
  }
}
.view-id-stories .item-list.stories ul:not(.contextual-links) li > article {
  margin: 7.5px;
  border: 1px solid #bcbcbc;
}

.block-views-blockstories-block-2 .item-list.featured-stories ul:not(.contextual-links) {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
}
.block-views-blockstories-block-2 .item-list.featured-stories ul:not(.contextual-links) li {
  padding: 7.5px;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  width: 100%;
}
@media (min-width: 35em) {
  .block-views-blockstories-block-2 .item-list.featured-stories ul:not(.contextual-links) li {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 50%;
  }
}
.block-views-blockstories-block-2 .item-list.featured-stories ul:not(.contextual-links) li > article {
  border: 1px solid #bcbcbc;
}

/**
 * @file /layouts/_view-id-recognized_persons.scss
 * Theming recognized person views displays.
 */
.view-id-recognized_persons figure {
  background-color: #5ADAEE;
}
.view-id-recognized_persons figure img {
  width: 100%;
}
.view-id-recognized_persons .item-list {
  overflow: hidden;
  *zoom: 1;
  clear: both;
  padding: 0 0 30px 0;
}
.view-id-recognized_persons .item-list > ul {
  display: block;
  margin: 0;
  padding: 0;
  max-width: 100%;
}
.view-id-recognized_persons .item-list h2 > a {
  display: inline-block;
}
.view-id-recognized_persons .item-list li {
  margin: 0 0 30px;
  padding: 0 7.5px;
  list-style-type: none;
}
@media (min-width: 35em) {
  .view-id-recognized_persons .item-list li {
    width: 50%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 0%;
  }
  .view-id-recognized_persons .item-list li:nth-child(2n+1) {
    clear: left;
  }
}
@media (min-width: 64em) {
  .view-id-recognized_persons .item-list li {
    width: 33.3333333333%;
    clear: right;
    float: left;
    margin-left: 0;
    margin-right: 0%;
  }
  .view-id-recognized_persons .item-list li:nth-child(2n+1) {
    clear: right;
  }
  .view-id-recognized_persons .item-list li:nth-child(3n+1) {
    clear: left;
  }
}
.view-id-recognized_persons article.teaser {
  padding: 0;
}
.view-id-recognized_persons article.teaser .node__content {
  padding: 0;
}
.view-id-recognized_persons article.teaser .field--name-field-medium,
.view-id-recognized_persons article.teaser .field--name-field-recognition {
  font-size: 13px;
  font-size: 1.3rem;
  margin-top: 10px;
  color: #606060;
  font-style: italic;
}

/**
 * @file /layouts/_view-id-acc_artists.scss
 * Theming acc artist views displays.
 * related: see /components/_filter-toggle.scss for expand/collapse styles
 */
.season-show-artists-page h1 {
  max-width: none;
}

.block-views-blockacc-artists-block-1 {
  padding: 0;
}

.view-id-acc_artists.view-display-id-block_1 {
  margin-top: 50px;
}
.view-id-acc_artists.view-display-id-block_1 .bef-nested ul {
  list-style: none;
  padding: 0;
}
.view-id-acc_artists.view-display-id-block_1 .bef-nested ul li li {
  margin: 5px 0;
}
.view-id-acc_artists.view-display-id-block_1 .bef-nested ul [type=checkbox] {
  position: absolute;
}
.view-id-acc_artists.view-display-id-block_1 .views-exposed-form {
  background-color: transparent;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  padding: 0;
  width: 100%;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (min-width: 48em) {
  .view-id-acc_artists.view-display-id-block_1 .views-exposed-form {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
.view-id-acc_artists.view-display-id-block_1 .views-artists-column-1 {
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  width: 100%;
}
@media (min-width: 48em) {
  .view-id-acc_artists.view-display-id-block_1 .views-artists-column-1 {
    -webkit-flex-basis: 200px;
        -ms-flex-preferred-size: 200px;
            flex-basis: 200px;
    width: 200px;
  }
}
.view-id-acc_artists.view-display-id-block_1 .views-artists-column-2 {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 30px;
}
@media (min-width: 48em) {
  .view-id-acc_artists.view-display-id-block_1 .views-artists-column-2 {
    padding-left: 30px;
    padding-top: 0;
  }
}
.view-id-acc_artists.view-display-id-block_1 .views-narrow {
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #4A4A4A;
  color: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 10px 0 30px;
  padding: 20px 15px;
}
.view-id-acc_artists.view-display-id-block_1 .views-narrow .views-narrow-label {
  width: 100%;
  padding-bottom: 10px;
}
@media (min-width: 63.75em) {
  .view-id-acc_artists.view-display-id-block_1 .views-narrow {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    padding: 25px 30px;
  }
  .view-id-acc_artists.view-display-id-block_1 .views-narrow .views-narrow-label {
    width: auto;
    margin-bottom: 0;
  }
}
.view-id-acc_artists.view-display-id-block_1 .views-narrow div:not(#foo) input[type=checkbox] + label {
  background-image: none;
  margin: 0 25px 0 0;
  position: relative;
  letter-spacing: 0.043em;
}
.view-id-acc_artists.view-display-id-block_1 .views-narrow div:not(#foo) input[type=checkbox] + label::before {
  background: #fff;
  content: "";
  display: block;
  height: 20px;
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 20px;
  top: calc(50% - 10px);
}
.view-id-acc_artists.view-display-id-block_1 .views-narrow div:not(#foo) input[type=checkbox]:checked + label {
  color: #fff;
  font-weight: normal;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
}
.view-id-acc_artists.view-display-id-block_1 .views-narrow div:not(#foo) input[type=checkbox]:checked + label::after {
  border-color: #4A4A4A;
  border-style: solid;
  border-width: 0 2px 2px 0;
  content: "";
  display: block;
  height: 12px;
  left: 7px;
  pointer-events: none;
  position: absolute;
  top: calc(50% - 7px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 7px;
}
.view-id-acc_artists.view-display-id-block_1 .views-narrow .views-narrow-label {
  letter-spacing: 0.043em;
  line-height: 1;
  padding-right: 25px;
  text-transform: uppercase;
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  margin-bottom: 10px;
}
@media (min-width: 35em) {
  .view-id-acc_artists.view-display-id-block_1 .views-narrow .views-narrow-label {
    margin-bottom: 0;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
  }
}
.view-id-acc_artists.view-display-id-block_1 .views-sort {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.view-id-acc_artists.view-display-id-block_1 .views-sort .views-artists-results-summary {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  letter-spacing: 0.053em;
  text-transform: uppercase;
}
.view-id-acc_artists.view-display-id-block_1 .views-sort label {
  text-transform: uppercase;
}
.view-id-acc_artists.view-display-id-block_1 .views-sort label::after {
  display: inline;
  content: ":";
}
.view-id-acc_artists.view-display-id-block_1 .views-filters .top-level-filters {
  margin-top: 30px;
}
.view-id-acc_artists.view-display-id-block_1 .views-filters .form-item-artist-or-company {
  position: relative;
}
.view-id-acc_artists.view-display-id-block_1 .views-filters .form-item-artist-or-company label {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}
.view-id-acc_artists.view-display-id-block_1 .views-filters .form-item-artist-or-company::before {
  background-image: url(images/9c6976d3818e73b6ecedaa6a0b75fa26.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 30px;
  left: 5px;
  pointer-events: none;
  position: absolute;
  top: 5px;
  width: 30px;
}
.view-id-acc_artists.view-display-id-block_1 .views-filters .form-item-artist-or-company [type=text] {
  border-color: #061518;
  border-width: 0 0 1px 0;
  font-size: 16px;
  margin: 1px;
  padding-bottom: 20px;
  padding-left: 45px;
}
.view-id-acc_artists.view-display-id-block_1 .views-filters .form-item-artist-or-company [type=text]:focus {
  outline: 1px dotted #061518;
}
.view-id-acc_artists.view-display-id-block_1 .views-filters [type=text] {
  max-width: 100%;
}
.view-id-acc_artists.view-display-id-block_1 .views-filters div:not(#foo) input[type=checkbox] + label {
  background-image: none;
  font-weight: normal;
  position: relative;
  margin: 0 0 10px;
}
.view-id-acc_artists.view-display-id-block_1 .views-filters div:not(#foo) input[type=checkbox] + label::before {
  background: #fff;
  content: "";
  display: block;
  height: 20px;
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 20px;
  border: 1px solid #4A4A4A;
}
.view-id-acc_artists.view-display-id-block_1 .views-filters div:not(#foo) input[type=checkbox]:checked + label::after {
  border-color: #4A4A4A;
  border-style: solid;
  border-width: 0 2px 2px 0;
  content: "";
  display: block;
  height: 12px;
  left: 7px;
  pointer-events: none;
  position: absolute;
  top: 3px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 7px;
}
.view-id-acc_artists.view-display-id-block_1 .views-filters .fieldset-legend {
  display: none;
}
.view-id-acc_artists.view-display-id-block_1 .views-filters .expand-medium {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  font-weight: normal;
}
.view-id-acc_artists.view-display-id-block_1 .views-filters .expand-medium + ul {
  display: none;
}
.view-id-acc_artists.view-display-id-block_1 .views-filters .expand-medium.is-selected {
  margin: 0 0 5px;
  color: #51C6D8;
}
.view-id-acc_artists.view-display-id-block_1 .views-filters .expand-medium.is-selected + ul {
  display: block;
}
.view-id-acc_artists.view-display-id-block_1 .artists-page {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 -7.5px;
}
.view-id-acc_artists.view-display-id-block_1 .artists-page > .views-row {
  padding: 7.5px;
  width: 100%;
}
@media (min-width: 23.75em) {
  .view-id-acc_artists.view-display-id-block_1 .artists-page > .views-row {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%;
    min-width: 50%;
    width: 50%;
  }
}
@media (min-width: 48em) {
  .view-id-acc_artists.view-display-id-block_1 .artists-page > .views-row {
    -webkit-flex-basis: 33.33%;
        -ms-flex-preferred-size: 33.33%;
            flex-basis: 33.33%;
    max-width: 33.33%;
    min-width: 33.33%;
    width: 33.33%;
  }
}
@media (min-width: 64em) {
  .view-id-acc_artists.view-display-id-block_1 .artists-page > .views-row {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%;
    min-width: 25%;
    width: 25%;
  }
}
.view-id-acc_artists.view-display-id-block_1 .artists-page figure {
  background-color: transparent;
}

/**
 * @file /layouts/_view-id-taxonomy_term.scss
 * Layout and styles for taxonomy terms
 */
.view-id-taxonomy_term .view-content,
.view-id-taxonomy_term .views-infinite-scroll-content-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.view-id-taxonomy_term .views-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 7.5px;
  width: 100%;
}
@media (min-width: 35em) {
  .view-id-taxonomy_term .views-row {
    width: 50%;
  }
}
@media (min-width: 64em) {
  .view-id-taxonomy_term .views-row {
    width: 33.33%;
  }
}
.view-id-taxonomy_term .node--view-mode-teaser {
  background-color: #F4F4F4;
}
.view-id-taxonomy_term .node--view-mode-teaser.node--type-resource {
  padding: 15px;
}

/*
//////////////////////////////
// Style Guide
//////////////////////////////
*/
.toc {
  overflow: hidden;
  *zoom: 1;
  background-color: #000;
  border-bottom: 6px solid #5ADAEE;
}
.toc .sg-text {
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-flex: 1 auto;
      -ms-flex: 1 auto;
          flex: 1 auto;
  background-color: #333333;
  color: #FFFFFF;
  padding: 10px;
  text-align: center;
}
@media (min-width: 64em) {
  .toc .sg-text {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.toc ol {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  width: 100%;
  padding: 0;
}
.toc li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  display: inline-block;
  /* non-flexbox browsers */
  margin: 0;
  -webkit-flex: 1 auto;
      -ms-flex: 1 auto;
          flex: 1 auto;
  padding: 0;
  list-style-type: none;
}
.toc li a {
  font-size: 12px;
  font-size: 1.2rem;
  display: block;
  text-align: center;
  vertical-align: text-top;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  color: #FFFFFF;
  padding: 10px;
}
@media (min-width: 64em) {
  .toc li a {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.toc li a:hover {
  color: #000;
  background-color: #99E8F4;
}

@media (min-width: 48em) {
  .styleguide-system .sub-menu,
.styleguide-system .callout {
    max-width: 500px;
  }
}
@media (min-width: 48em) {
  .styleguide-system .teaser {
    max-width: 350px;
  }
}
.styleguide-system .teaser img {
  width: 100%;
}
header .styleguide-system .logo {
  width: 100%;
}
.styleguide-system header + .wrapper {
  margin-top: 30px;
}
.styleguide-system .wrapper section + section {
  margin-top: 30px;
  padding-bottom: 60px;
}
.styleguide-system section {
  overflow: hidden;
  *zoom: 1;
}
.styleguide-system section.wrapper h1 {
  border-bottom: 6px solid #CCCCCC;
  margin-bottom: 30px;
}
.styleguide-system section.colorbar h1 {
  margin-bottom: 10px;
}
.styleguide-system section.images {
  max-width: 860px;
}
.styleguide-system section.images article + article {
  margin-top: 60px;
  clear: both;
}
.styleguide-system aside {
  max-width: 720px;
}

.swatchgrid {
  overflow: hidden;
  *zoom: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 15px 0 30px;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 0;
}
@media (min-width: 64em) {
  .swatchgrid {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
.swatchgrid .swatch {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  display: inline-block;
  /* non-flexbox browsers */
  margin: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  border: 6px solid #FFFFFF;
  box-shadow: 0;
  position: relative;
  padding: 15px;
  z-index: 0;
}
@media (min-width: 64em) {
  .swatchgrid .swatch {
    -webkit-flex: 1 auto;
        -ms-flex: 1 auto;
            flex: 1 auto;
  }
}
.swatchgrid .swatch.color-swatch-1, .swatchgrid .swatch.color-swatch-13 {
  width: 50%;
}
.swatchgrid .swatch span {
  display: block;
  margin: 0;
  padding: 0;
  word-wrap: break-word;
  text-align: center;
  z-index: 0;
}
.swatchgrid .swatch span:after {
  display: block;
  z-index: 5;
}
.swatchgrid .swatch.color-swatch-1 {
  background-color: #51C6D8;
}
.swatchgrid .swatch.color-swatch-1 span:after {
  content: "#51C6D8";
}
.swatchgrid .swatch.color-swatch-2 {
  background-color: #F3E442;
}
.swatchgrid .swatch.color-swatch-2 span:after {
  content: "#F3E442";
}
.swatchgrid .swatch.color-swatch-3 {
  background-color: #5ADAEE;
}
.swatchgrid .swatch.color-swatch-3 span:after {
  content: "#5ADAEE";
}
.swatchgrid .swatch.color-swatch-4 {
  background-color: #126D7A;
}
.swatchgrid .swatch.color-swatch-4 span:after {
  content: "#126D7A";
  color: #FFFFFF;
}
.swatchgrid .swatch.color-swatch-5 {
  background-color: #E0D23C;
}
.swatchgrid .swatch.color-swatch-5 span:after {
  content: "#E0D23C";
}
.swatchgrid .swatch.color-swatch-6 {
  background-color: #BF0B0B;
}
.swatchgrid .swatch.color-swatch-6 span:after {
  content: "#BF0B0B";
  color: #FFFFFF;
}
.swatchgrid .swatch.color-swatch-7 {
  background-color: #4A4A4A;
}
.swatchgrid .swatch.color-swatch-7 span:after {
  content: "#4A4A4A";
  color: #FFFFFF;
}
.swatchgrid .swatch.color-swatch-8 {
  background-color: #CCCCCC;
}
.swatchgrid .swatch.color-swatch-8 span:after {
  content: "#CCCCCC";
}
.swatchgrid .swatch.color-swatch-9 {
  background-color: #E0E0E0;
}
.swatchgrid .swatch.color-swatch-9 span:after {
  content: "#E0E0E0";
}
.swatchgrid .swatch.color-swatch-10 {
  background-color: #F4F4F4;
}
.swatchgrid .swatch.color-swatch-10 span:after {
  content: "#F4F4F4";
}
.swatchgrid .swatch.color-swatch-11 {
  background-color: #8E8E8E;
}
.swatchgrid .swatch.color-swatch-11 span:after {
  content: "#8E8E8E";
  color: #FFFFFF;
}
.swatchgrid .swatch.color-swatch-12 {
  background-color: #333333;
}
.swatchgrid .swatch.color-swatch-12 span:after {
  content: "#333333";
  color: #FFFFFF;
}
.swatchgrid .swatch.color-swatch-13 {
  background-color: #000;
}
.swatchgrid .swatch.color-swatch-13 span:after {
  content: "#000";
  color: #FFFFFF;
}
.swatchgrid .swatch.color-swatch-14 {
  background-color: #F3E442;
}
.swatchgrid .swatch.color-swatch-14 span:after {
  content: "#F3E442";
}
.swatchgrid .swatch.color-swatch-15 {
  background-color: #3EBF0B;
}
.swatchgrid .swatch.color-swatch-15 span:after {
  content: "#3EBF0B";
  color: #FFFFFF;
}

.icon-list {
  overflow: hidden;
  *zoom: 1;
  max-width: 100%;
  padding: 0;
}
.icon-list li {
  display: block;
  margin: 0 0 15px;
  list-style: none;
  padding: 0;
}
@media (min-width: 35em) {
  .icon-list li {
    display: inline-block;
    float: left;
    width: 50%;
  }
}
@media (min-width: 48em) {
  .icon-list li {
    width: 33.33%;
  }
}
.icon-list icon {
  display: inline-block;
  padding-left: 26px;
  background-size: 20px;
}

ul.logos {
  overflow: hidden;
  *zoom: 1;
  display: block;
}
ul.logos li {
  display: block;
  list-style: none;
  float: left;
  width: 50%;
  margin-bottom: 15px;
  padding: 10px 0;
}
ul.logos li a {
  border-bottom: 0;
}
ul.logos li a:hover {
  border-bottom: 0;
}
ul.logos li span {
  display: block;
}

.buttons button {
  margin-bottom: 1.5em;
}
.buttons button + button {
  margin-top: 1em;
}
@media (min-width: 64em) {
  .buttons button + button {
    margin-left: 1em;
  }
}

.color.background {
  padding: 30px;
  margin-bottom: 15px;
  background-color: #E0D23C;
}
.color.background.mid h2 {
  color: #4A4A4A;
}
.color.background.dark {
  background-color: #333333;
}
.color.background.dark h2 {
  color: #FFFFFF;
}
.color.background.light {
  background-color: #FFFFFF;
}

/*
////////////
*/
/*
//////////////////////////////
// Vendor requirements
//////////////////////////////
*/
/* Slider */
.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;
  display: none;
}
[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;
}

.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -ms-touch-action: pan-Y;
      touch-action: pan-Y;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.glide--rtl {
  direction: rtl;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 1;
}
.glide__arrow:focus {
  outline: none;
}
.glide__arrow:hover {
  border-color: white;
}
.glide__arrow--left {
  left: 2em;
}
.glide__arrow--right {
  right: 2em;
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  list-style: none;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}
.glide__bullet--active {
  background-color: white;
}
.glide--swipeable {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.glide--dragging {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

ul.glide__slides {
  max-width: none;
}

.glide__track {
  max-width: 100%;
}

#timeline-embed {
  position: relative;
  z-index: 1;
}

.share-block {
  margin: 20px 0 0;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.share-block .sharethis-wrapper {
  display: none;
  position: absolute;
  background: #fff;
  padding: 10px;
  border: 1px solid #000;
  width: 156px;
  margin-top: 10px;
}
.share-block .sharethis-wrapper:before, .share-block .sharethis-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 100%;
  width: 0;
  height: 0;
}
.share-block .sharethis-wrapper:before {
  left: 19px;
  border: 11px solid transparent;
  border-bottom-color: #000;
}
.share-block .sharethis-wrapper:after {
  left: 20px;
  border: 10px solid transparent;
  border-bottom-color: #fff;
}
.share-block:hover .sharethis-wrapper {
  display: block;
}
.share-block .social-popover {
  border: 0;
  background: #f7f7f7;
  padding: 5px 12px 2px 10px;
  font-size: 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.share-block .social-popover::before {
  display: inline-block;
  content: "";
  background: url(images/374af9cbd97d2d0e96f0ecd79ace78f8.svg) no-repeat;
  width: 19px;
  height: 24px;
}
.share-block .social-popover span {
  position: relative;
  top: -5px;
}

.node--type-ad-bottom-billboard {
  background: #F7F7F7;
  padding: 10px 15px 28px;
  text-align: center;
  margin-bottom: -60px;
  margin-top: 40px;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}
.node--type-ad-bottom-billboard .field__label {
  display: block;
  font-weight: normal;
  font-size: 12px;
  opacity: 0.37;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media screen and (max-width: 600px) {
  .node--type-ad-bottom-billboard .field--name-field-image {
    display: none;
  }
}
.node--type-ad-bottom-billboard .field--name-field-mobile-image {
  display: none;
}
@media screen and (max-width: 600px) {
  .node--type-ad-bottom-billboard .field--name-field-mobile-image {
    display: block;
  }
}

.node--type-ad-large-rectangle {
  position: relative;
  padding: 10px 15px 28px;
  text-align: center;
}
.node--type-ad-large-rectangle::before {
  content: "";
  display: block;
  background: #F7F7F7;
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 50%;
  margin-left: -50vw;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}
.node--type-ad-large-rectangle .field__label {
  display: block;
  font-weight: normal;
  font-size: 12px;
  opacity: 0.37;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media screen and (max-width: 600px) {
  .node--type-ad-large-rectangle .field--name-field-image {
    display: none;
  }
}
.node--type-ad-large-rectangle .field--name-field-mobile-image {
  display: none;
}
@media screen and (max-width: 600px) {
  .node--type-ad-large-rectangle .field--name-field-mobile-image {
    display: block;
  }
}

.node--type-ad-top-leaderboard {
  background: #F7F7F7;
  padding: 10px 15px 28px;
  text-align: center;
}
.node--type-ad-top-leaderboard .field__label {
  display: block;
  font-weight: normal;
  font-size: 12px;
  opacity: 0.37;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media screen and (max-width: 600px) {
  .node--type-ad-top-leaderboard .field--name-field-media-image-1 {
    display: none;
  }
}
.node--type-ad-top-leaderboard .field--name-field-mobile-image {
  display: none;
}
@media screen and (max-width: 600px) {
  .node--type-ad-top-leaderboard .field--name-field-mobile-image {
    display: block;
  }
}

.node--type-article.node--view-mode-meta {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  font-weight: 300;
}
@media screen and (max-width: 650px) {
  .node--type-article.node--view-mode-meta {
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.node--type-article.node--view-mode-meta .group-left {
  width: 50%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 30px;
  padding: 30px 30px 30px 0;
}
@media screen and (max-width: 650px) {
  .node--type-article.node--view-mode-meta .group-left {
    width: 100%;
    padding: 0;
  }
}
.node--type-article.node--view-mode-meta .group-left .field,
.node--type-article.node--view-mode-meta .group-left .field--name-field-issue {
  margin-bottom: 4px;
}
.node--type-article.node--view-mode-meta .group-left .field h1,
.node--type-article.node--view-mode-meta .group-left .field--name-field-issue h1 {
  font-size: 50px;
}
.node--type-article.node--view-mode-meta .group-right {
  width: 50%;
}
@media screen and (max-width: 650px) {
  .node--type-article.node--view-mode-meta .group-right {
    width: 100%;
    margin-bottom: 10px;
  }
}
.node--type-article.node--view-mode-meta.hide-hero-image > .group-left {
  width: 100%;
}
.node--type-article.node--view-mode-meta.hide-hero-image .media--view-mode-hero-large-meta {
  display: none;
}
.node--type-article.node--view-mode-meta .field--name-field-supertitle {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
}
.node--type-article.node--view-mode-meta .field--name-field-subtitle {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 300;
  margin-top: -8px;
  margin-bottom: 10px !important;
}
.node--type-article.node--view-mode-meta .field--name-field-author,
.node--type-article.node--view-mode-meta .field--name-field-medium {
  display: block;
  font-weight: 300;
}
.node--type-article.node--view-mode-meta .field--name-field-author .field__label,
.node--type-article.node--view-mode-meta .field--name-field-medium .field__label {
  font-weight: 300;
  padding-right: 0;
}
.node--type-article.node--view-mode-meta .field--name-field-author a,
.node--type-article.node--view-mode-meta .field--name-field-medium a {
  border-bottom: 0px !important;
  text-decoration: underline;
}
.node--type-article.node--view-mode-full.node--unpublished {
  max-width: 1220px;
  margin: 0 auto;
}
.node--type-article.node--view-mode-full .field--name-field-intro {
  font-weight: 300;
  font-size: 22px;
}
.node--type-article.node--view-mode-teaser-featured {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 48em) {
  .node--type-article.node--view-mode-teaser-featured {
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.node--type-article.node--view-mode-teaser-featured .group-left,
.node--type-article.node--view-mode-teaser-featured .group-right {
  width: 100%;
}
@media (min-width: 48em) {
  .node--type-article.node--view-mode-teaser-featured .group-left,
.node--type-article.node--view-mode-teaser-featured .group-right {
    width: 50%;
  }
}
.node--type-article.node--view-mode-teaser-featured .group-left img {
  width: 100%;
}
.node--type-article.node--view-mode-teaser-featured .group-right {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width: 48em) {
  .node--type-article.node--view-mode-teaser-featured .group-right {
    margin-top: 0;
    padding-left: 4rem;
  }
}
.node--type-article.node--view-mode-teaser-featured .group-right .field--name-node-link {
  margin-top: 2rem;
}
.node--type-article.node--view-mode-teaser-featured .group-right .field--name-node-link a {
  background-color: #fff;
  color: #262626;
  border: 1px solid #48BFD3;
  font-size: 15px;
  font-weight: bold;
  padding: 1rem 3rem;
  text-transform: uppercase;
}
.node--type-article.node--view-mode-teaser-featured .group-right .field--name-node-link a:hover {
  background-color: #48BFD3;
  color: #fff;
}
.node--type-article.node--view-mode-teaser-featured, .node--type-article.node--view-mode-enhanced-teaser, .node--type-article.node--view-mode-teaser {
  overflow: hidden;
}
.node--type-article.node--view-mode-teaser-featured .field--name-field-image, .node--type-article.node--view-mode-enhanced-teaser .field--name-field-image, .node--type-article.node--view-mode-teaser .field--name-field-image {
  overflow: hidden;
}
.node--type-article.node--view-mode-teaser-featured .field--name-field-image img, .node--type-article.node--view-mode-enhanced-teaser .field--name-field-image img, .node--type-article.node--view-mode-teaser .field--name-field-image img {
  transition: all 0.15s;
}
.node--type-article.node--view-mode-teaser-featured .article-title, .node--type-article.node--view-mode-enhanced-teaser .article-title, .node--type-article.node--view-mode-teaser .article-title {
  transition: all 0.15s;
}
.node--type-article.node--view-mode-teaser-featured:hover img, .node--type-article.node--view-mode-enhanced-teaser:hover img, .node--type-article.node--view-mode-teaser:hover img {
  -webkit-filter: none !important;
          filter: none !important;
  opacity: 1 !important;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.node--type-article.node--view-mode-teaser-featured:hover .article-title, .node--type-article.node--view-mode-enhanced-teaser:hover .article-title, .node--type-article.node--view-mode-teaser:hover .article-title {
  color: #48BFD3;
  text-decoration: underline;
}

body.page-node-type-article .block-entity-fieldnodetitle,
body.page-node-type-article .block-entity-fieldnodefield-subtitle {
  display: none;
}

.node--type-blog.node--view-mode-full {
  margin-top: 1rem;
}
@media (min-width: 48em) {
  .node--type-blog.node--view-mode-full {
    margin-top: 3rem;
  }
}
.node--type-blog.node--view-mode-full .hero-image img {
  width: 100%;
}
.node--type-blog.node--view-mode-meta {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  font-weight: 300;
}
@media screen and (max-width: 650px) {
  .node--type-blog.node--view-mode-meta {
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.node--type-blog.node--view-mode-meta .group-left {
  width: 50%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 650px) {
  .node--type-blog.node--view-mode-meta .group-left {
    width: 100%;
    padding-right: 0;
  }
}
.node--type-blog.node--view-mode-meta .group-left .field {
  margin-bottom: 4px;
}
.node--type-blog.node--view-mode-meta .group-left .field h1 {
  font-size: 50px;
}
.node--type-blog.node--view-mode-meta .group-right {
  width: 50%;
}
@media screen and (max-width: 650px) {
  .node--type-blog.node--view-mode-meta .group-right {
    width: 100%;
    margin-bottom: 10px;
  }
}
.node--type-blog.node--view-mode-meta.hide-hero-image > .group-left {
  width: 100%;
}
.node--type-blog.node--view-mode-meta.hide-hero-image .media--view-mode-hero-large-meta {
  display: none;
}
.node--type-blog.node--view-mode-meta .field--name-field-supertitle,
.node--type-blog.node--view-mode-meta .field--name-field-magazine-department {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
}
.node--type-blog.node--view-mode-meta .field--name-field-magazine-department a {
  color: #000;
}
.node--type-blog.node--view-mode-meta .field--name-field-magazine-department a:hover {
  background-color: transparent !important;
}
.node--type-blog.node--view-mode-meta .field--name-field-subtitle {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 300;
  margin-top: -8px;
  margin-bottom: 10px !important;
}
.node--type-blog.node--view-mode-meta .field--name-field-author,
.node--type-blog.node--view-mode-meta .field--name-field-medium {
  display: block;
  font-weight: 300;
}
.node--type-blog.node--view-mode-meta .field--name-field-author .field__label,
.node--type-blog.node--view-mode-meta .field--name-field-medium .field__label {
  font-weight: 300;
  padding-right: 0;
}
.node--type-blog.node--view-mode-meta .field--name-field-author a,
.node--type-blog.node--view-mode-meta .field--name-field-medium a {
  border-bottom: 0px !important;
  text-decoration: underline;
}
.node--type-blog.node--view-mode-meta .field--name-field-issue a {
  border-bottom: 0px !important;
}
.node--type-blog.node--view-mode-enhanced-teaser {
  overflow: hidden;
}
.node--type-blog.node--view-mode-enhanced-teaser .field--name-field-image {
  overflow: hidden;
}
.node--type-blog.node--view-mode-enhanced-teaser .field--name-field-image img {
  transition: all 0.15s;
}
.node--type-blog.node--view-mode-enhanced-teaser .article-title {
  transition: all 0.15s;
}
.node--type-blog.node--view-mode-enhanced-teaser:hover img {
  -webkit-filter: none !important;
          filter: none !important;
  opacity: 1 !important;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.node--type-blog.node--view-mode-enhanced-teaser:hover .article-title {
  color: #48BFD3;
  text-decoration: underline;
}
.node--type-blog.node--view-mode-full.node--unpublished {
  max-width: 1220px;
  margin: 0 auto;
}
.node--type-blog.node--view-mode-full .field--name-field-intro {
  font-weight: 300;
  font-size: 22px;
}

body.page-node-type-blog .block-entity-fieldnodetitle,
body.page-node-type-blog .block-entity-fieldnodefield-subtitle {
  display: none;
}

.node--type-homepage.node--view-mode-full {
  overflow-x: inherit;
  overflow-y: inherit;
}
.node--type-homepage.node--view-mode-full .field--name-field-components {
  padding-bottom: 30px;
}
@media (min-width: 35em) {
  .node--type-homepage.node--view-mode-full .field--name-field-components {
    padding-bottom: 50px;
  }
}
.node--type-homepage.node--view-mode-full .field--name-field-components > .field__item:first-of-type > .paragraph {
  padding-top: 10px;
}
@media (min-width: 48em) {
  .node--type-homepage.node--view-mode-full .field--name-field-components > .field__item:first-of-type > .paragraph {
    padding-top: 50px;
  }
}

.page-node-type-homepage h1.page-title {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  padding: 0;
}

.node--type-issue.node--view-mode-full {
  overflow: visible;
  position: relative;
  margin-top: 2rem;
}
.node--type-issue.node--view-mode-full h1 {
  margin-bottom: 0;
}
.node--type-issue.node--view-mode-full .group--body {
  position: relative;
  padding: 4rem 0;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (min-width: 48em) {
  .node--type-issue.node--view-mode-full .group--body {
    margin-top: 3rem;
  }
}
.node--type-issue.node--view-mode-full .group--body:before {
  content: "";
  display: block;
  position: absolute;
  left: -100vw;
  right: 0;
  top: 0;
  background-color: #F7F7F7;
  width: 200vw;
  height: 100%;
  z-index: -1;
}
@media (min-width: 48em) {
  .node--type-issue.node--view-mode-full .group--body > article.media {
    float: right;
    margin-top: -17rem;
    margin-left: 4rem;
  }
}

.paragraph--type-accordion h2 {
  text-align: center;
  font-weight: 300;
  font-size: 35px;
  color: #000;
  margin-bottom: 20px;
}
.paragraph--type-accordion details {
  margin: 0;
  border: 1px solid #8E8E8E;
  border-bottom: 0;
}
.paragraph--type-accordion .field__item:last-child > details {
  border-bottom: 1px solid #8E8E8E;
}
.paragraph--type-accordion summary {
  background: #F7F7F7;
  font-size: 22px;
  padding: 26px 70px 26px 26px;
  position: relative;
  font-weight: 300;
  list-style: none;
}
.paragraph--type-accordion summary:hover {
  background: #f2f2f2;
}
.paragraph--type-accordion summary:after {
  content: "";
  display: block;
  background: url(images/5d5347ca80d42f513d553cc7844aaf13.svg) no-repeat;
  width: 16px;
  height: 8px;
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -4px;
  transition: all 0.3s;
}
.paragraph--type-accordion summary::-webkit-details-marker {
  display: none;
}
.paragraph--type-accordion details[open] summary:hover {
  background: #F7F7F7;
}
.paragraph--type-accordion details[open] summary:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.paragraph--type-accordion .field--name-field-text {
  padding: 26px;
}

.paragraph--type-banner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 auto;
  max-width: calc(100vw - 40px);
  padding: 30px 0;
}
@media (min-width: 35em) {
  .paragraph--type-banner {
    padding: 50px 0;
  }
}
@media (min-width: 48em) {
  .paragraph--type-banner {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
.paragraph--type-banner > * {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
}
@media (min-width: 48em) {
  .paragraph--type-banner > * {
    width: 50%;
    max-width: 50%;
    min-width: 50%;
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
  }
}
.paragraph--type-banner .group-right {
  padding: 0;
}
@media (min-width: 48em) {
  .paragraph--type-banner .group-right {
    padding: 40px;
  }
}
.paragraph--type-banner .group-left {
  padding: 0 0 20px;
}
@media (min-width: 48em) {
  .paragraph--type-banner .group-left {
    padding: 0;
  }
}
.paragraph--type-banner .field--name-field-images:not(.slick-initialized) {
  display: none;
}
.paragraph--type-banner .field--name-field-text {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.3;
  text-rendering: geometricPrecision;
}
@media (min-width: 35em) {
  .paragraph--type-banner .field--name-field-text {
    font-size: 35px;
  }
}
.paragraph--type-banner .field--name-field-call-to-action {
  margin: 10px 0;
}
.paragraph--type-banner .field--name-field-call-to-action a {
  border: #48BFD3 1px solid;
  padding: 7.5px 15px;
  text-transform: uppercase;
  display: inline-block;
  color: #262626;
  font-weight: bold;
}
.paragraph--type-banner .field--name-field-caption,
.paragraph--type-banner .field--name-field-caption-html {
  font-weight: 300;
  margin-top: 10px;
  font-size: 12px;
}
.paragraph--type-banner img {
  width: 100%;
}

.paragraph--type-call-to-action {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 auto;
  overflow: inherit;
  padding: 30px 0;
  position: relative;
}
@media (min-width: 35em) {
  .paragraph--type-call-to-action {
    padding: 50px 0;
  }
}
@media (min-width: 48em) {
  .paragraph--type-call-to-action {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    padding: 50px 0 105px;
  }
}
.paragraph--type-call-to-action h2 {
  color: #262626;
  font-size: 35px;
  font-weight: 300;
}
.paragraph--type-call-to-action form {
  max-width: none;
  background-color: transparent;
  padding: 0;
  margin: 30px 0;
}
.paragraph--type-call-to-action form [type=text],
.paragraph--type-call-to-action form [type=email] {
  border: 1px solid transparent;
  padding: 20px 15px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0 0 15px;
}
.paragraph--type-call-to-action form [type=text]:focus,
.paragraph--type-call-to-action form [type=email]:focus {
  border: 1px solid #48BFD3;
  border-radius: 0;
  outline: none;
}
.paragraph--type-call-to-action form label {
  display: block;
  margin: 0 0 15px;
}
.paragraph--type-call-to-action form [type=submit] {
  background-color: #262626;
  color: #fff;
  padding: 7.5px 25px;
  border: 1px solid #262626;
  margin-top: 10px;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.paragraph--type-call-to-action form [type=submit]:hover {
  background-color: #262626;
  color: #fff;
}
.paragraph--type-call-to-action > * {
  background-color: #F7F7F7;
}
.paragraph--type-call-to-action > .group-right {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 40px 20px;
}
@media (min-width: 48em) {
  .paragraph--type-call-to-action > .group-right {
    padding: 120px 40px 40px 10px;
  }
}
.paragraph--type-call-to-action > .group-right img {
  display: block;
  float: right;
  margin-bottom: 10px;
  margin-left: 10px;
  width: 190px;
  object-fit: cover;
  object-position: top center;
  margin-top: -65px;
}
@media (min-width: 48em) {
  .paragraph--type-call-to-action > .group-right img {
    display: none;
  }
}
.paragraph--type-call-to-action > .group-left img {
  display: none;
}
@media (min-width: 48em) {
  .paragraph--type-call-to-action > .group-left {
    max-width: 480px;
    margin-left: 55px;
    width: auto;
  }
  .paragraph--type-call-to-action > .group-left img {
    -webkit-transform: translate3d(-55px, 55px, 0);
            transform: translate3d(-55px, 55px, 0);
    width: 100%;
    height: auto;
    display: block;
  }
}

.paragraph--type-columns {
  padding: 30px 0;
  margin: 0 auto;
  max-width: calc(100vw - 40px);
}
@media (min-width: 35em) {
  .paragraph--type-columns {
    padding: 50px 0;
  }
}
@media (min-width: 80.625em) {
  .paragraph--type-columns {
    margin: 0 -50px;
    max-width: none;
  }
}
.paragraph--type-columns h2 {
  color: #262626;
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 15px;
}
.paragraph--type-columns .field--name-field-columns {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (min-width: 48em) {
  .paragraph--type-columns .field--name-field-columns {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
.paragraph--type-columns .field--name-field-columns > * {
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}
@media (min-width: 48em) {
  .paragraph--type-columns .field--name-field-columns > * {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    width: 50%;
    max-width: 50%;
    min-width: 50%;
  }
}
.paragraph--type-columns .field--name-field-columns .field--name-field-columns > .field__item + .field__item {
  border-top: 1px solid #D8D8D8;
  padding-top: 50px;
}
@media (min-width: 48em) {
  .paragraph--type-columns .field--name-field-columns .field--name-field-columns > .field__item + .field__item {
    border-left: 2px solid #D8D8D8;
    border-top: 0;
    padding-top: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1290px) {
  .paragraph--type-columns .field--name-field-columns .field__item .paragraph {
    padding-left: 0;
  }
  .paragraph--type-columns .field--name-field-columns .field__item + .field__item .paragraph {
    padding-left: 50px;
    padding-right: 0;
  }
}
.paragraph--type-columns .paragraph--type-column {
  padding: 0 0 50px;
}
@media (min-width: 48em) {
  .paragraph--type-columns .paragraph--type-column {
    padding: 0 50px 50px;
  }
}
.paragraph--type-columns .field--name-field-text {
  font-size: 22px;
  text-rendering: geometricPrecision;
  font-weight: 300;
}

.paragraph--type-feature-grid {
  overflow: inherit;
  padding: 30px 0;
  margin: 0 -20px;
}
@media (min-width: 35em) {
  .paragraph--type-feature-grid {
    padding: 50px 0;
  }
}
@media (min-width: 75em) {
  .paragraph--type-feature-grid {
    margin: 0;
  }
}
.paragraph--type-feature-grid h2 {
  padding: 0 20px;
  max-width: 100vw;
  margin: 0 auto;
  font-size: 22px;
  font-weight: bold;
  color: #262626;
}
.paragraph--type-feature-grid h3 {
  font-weight: 300;
  font-size: 22px;
  color: #262626;
  text-transform: none;
  line-height: 32px;
}
.paragraph--type-feature-grid .field--name-field-supertitle {
  color: #262626;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 2px;
}
.paragraph--type-feature-grid .field--name-field-items:not(.slick-initialized) {
  display: none;
}
.paragraph--type-feature-grid .field--name-field-items {
  max-width: calc(100vw - 40px);
  margin: 0 auto;
}
@media (min-width: 43.75em) {
  .paragraph--type-feature-grid .field--name-field-items {
    max-width: none;
    padding: 0 20px;
  }
}
@media (min-width: 75em) {
  .paragraph--type-feature-grid .field--name-field-items {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.paragraph--type-feature-grid img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}
.paragraph--type-feature-grid .paragraph--type-feature-grid-item {
  padding: 10px 0;
}
@media (min-width: 43.75em) {
  .paragraph--type-feature-grid .paragraph--type-feature-grid-item {
    padding: 20px;
  }
}
.paragraph--type-feature-grid .slick-prev {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  height: 70px;
  left: -30px;
  position: absolute;
  text-indent: -9999px;
  top: 35vw;
  width: 50px;
  z-index: 99;
  background-color: #fff;
  border-radius: 0;
}
@media (min-width: 43.75em) {
  .paragraph--type-feature-grid .slick-prev {
    top: calc(22vw - 35px);
    left: 10px;
  }
}
@media (min-width: 68.75em) {
  .paragraph--type-feature-grid .slick-prev {
    top: calc(15vw - 35px);
  }
}
@media (min-width: 80em) {
  .paragraph--type-feature-grid .slick-prev {
    left: -50px;
    top: 170px;
  }
}
@media (min-width: 84.375em) {
  .paragraph--type-feature-grid .slick-prev {
    left: -75px;
  }
}
.paragraph--type-feature-grid .slick-prev::before {
  display: block;
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23.168' height='50.018' viewBox='0 0 23.168 50.018'%3E%3Cpath id='Path_461' data-name='Path 461' d='M557.2,531.248l20.78-23.885.343-.44-.374-.5-9.138-10.5L557.17,482.542' transform='translate(579.583 531.904) rotate(180)' fill='none' stroke='%23198da1' stroke-miterlimit='10' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
  width: 100%;
  height: 50px;
  top: 10px;
  left: 0;
}
.paragraph--type-feature-grid .slick-next {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-radius: 0;
  border: 0;
  height: 70px;
  position: absolute;
  right: -30px;
  text-indent: -9999px;
  top: 35vw;
  width: 50px;
  z-index: 99;
}
@media (min-width: 43.75em) {
  .paragraph--type-feature-grid .slick-next {
    top: calc(22vw - 35px);
    right: 10px;
  }
}
@media (min-width: 68.75em) {
  .paragraph--type-feature-grid .slick-next {
    top: calc(15vw - 35px);
  }
}
@media (min-width: 80em) {
  .paragraph--type-feature-grid .slick-next {
    right: -50px;
    top: 170px;
  }
}
@media (min-width: 84.375em) {
  .paragraph--type-feature-grid .slick-next {
    right: -75px;
  }
}
.paragraph--type-feature-grid .slick-next::before {
  display: block;
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23.168' height='50.018' viewBox='0 0 23.168 50.018'%3E%3Cpath id='Path_461' data-name='Path 461' d='M557.2,531.248l20.78-23.885.343-.44-.374-.5-9.138-10.5L557.17,482.542' transform='translate(579.583 531.904) rotate(180)' fill='none' stroke='%23198da1' stroke-miterlimit='10' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  content: "";
  width: 100%;
  height: 50px;
  top: 10px;
  left: 0;
}

.paragraph--type-feature-stories-layout {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 auto;
  max-width: calc(100vw - 40px);
  overflow: inherit;
  padding: 20px 0;
}
@media (min-width: 48em) {
  .paragraph--type-feature-stories-layout {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    max-width: calc(100vw - 150px);
    padding: 50px 0;
  }
}
.paragraph--type-feature-stories-layout .group-left {
  display: block;
  padding: 30px 0 20px;
  width: 100%;
}
@media (min-width: 48em) {
  .paragraph--type-feature-stories-layout .group-left {
    width: 66.67%;
    padding: 0 30px 0 0;
  }
}
.paragraph--type-feature-stories-layout .group-right {
  width: 100%;
  padding: 0 0 30px;
}
@media (min-width: 48em) {
  .paragraph--type-feature-stories-layout .group-right {
    width: auto;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0 0 0 20px;
  }
}
.paragraph--type-feature-stories-layout .field--name-field-images:not(.slick-initialized) {
  display: none;
}
.paragraph--type-feature-stories-layout h2 {
  font-weight: 300;
  font-size: 22px;
  line-height: 32px;
}
.paragraph--type-feature-stories-layout .field--name-field-supertitle {
  text-transform: uppercase;
  color: #262626;
  font-weight: bold;
  font-size: 15px;
}
.paragraph--type-feature-stories-layout .paragraph--type-small-feature {
  margin: 0;
  padding: 50px 0 0;
}
@media (min-width: 48em) {
  .paragraph--type-feature-stories-layout .paragraph--type-small-feature {
    padding: 0;
    margin: 0 0 20px;
  }
}
.paragraph--type-feature-stories-layout .paragraph--type-small-feature img {
  margin-bottom: 10px;
  width: 100%;
}
.paragraph--type-feature-stories-layout .paragraph--type-large-feature {
  position: relative;
  overflow: inherit;
}
.paragraph--type-feature-stories-layout .paragraph--type-large-feature img {
  width: 100%;
  height: auto;
}
.paragraph--type-feature-stories-layout .paragraph--type-large-feature .inner-wrapper {
  display: block;
  background-color: #fff;
  padding: 20px 0;
}
@media (min-width: 48em) {
  .paragraph--type-feature-stories-layout .paragraph--type-large-feature .inner-wrapper {
    position: absolute;
    padding: 40px;
    top: 150px;
    left: -75px;
    width: 250px;
  }
}
.paragraph--type-feature-stories-layout .paragraph--type-large-feature .inner-wrapper::after {
  display: block;
  width: 55px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='53.122' height='24.056' viewBox='0 0 53.122 24.056'%3E%3Cg id='Group_416' data-name='Group 416' transform='translate(-48.5 -2974.472)'%3E%3Cline id='Line_177' data-name='Line 177' x2='52' transform='translate(48.5 2986.5)' fill='none' stroke='%2348bfd3' stroke-width='2'/%3E%3Cpath id='Path_462' data-name='Path 462' d='M557.184,505.285l9.7-11.153.16-.206-.174-.231-9.7-11.153' transform='translate(-466.685 2492.587)' fill='none' stroke='%2348bfd3' stroke-miterlimit='10' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  content: "";
  position: relative;
}

.paragraph--type-full-image.width-full .field--name-field-image {
  width: 100vw;
  margin-left: calc(-1 * (100vw - 100%)/2);
}
.paragraph--type-full-image.width-full.parallax .field--name-field-image {
  overflow: hidden;
}
.paragraph--type-full-image .field--name-field-caption {
  margin-top: 5px;
  text-align: right;
  font-size: 12px;
}
.paragraph--type-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.paragraph--type-half-half-layout {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .paragraph--type-half-half-layout {
    display: block;
  }
}
.paragraph--type-half-half-layout .field--name-field-main-left {
  width: 50%;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .paragraph--type-half-half-layout .field--name-field-main-left {
    width: 100%;
    padding: 0;
  }
}
.paragraph--type-half-half-layout .field--name-field-main-right {
  width: 50%;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .paragraph--type-half-half-layout .field--name-field-main-right {
    width: 100%;
    padding: 0;
  }
}

.paragraph--type-image img {
  width: 100%;
}
.paragraph--type-image .field--name-field-caption {
  margin-top: 5px;
  text-align: right;
  font-size: 12px;
}

.paragraph--type-image-gallery {
  text-align: center;
}
@media screen and (max-width: 600px) {
  .paragraph--type-image-gallery .image-field-items {
    margin: 0 -22px;
    width: calc(100% + 44px);
  }
}

.paragraph--type-gallery-image .caption {
  font-size: 12px !important;
  background-color: rgba(255, 255, 255, 0.9) !important;
  color: #000;
}
.paragraph--type-gallery-image img {
  height: auto;
  max-width: 100%;
}

#cboxWrapper #cboxTitle {
  display: block !important;
  padding: 4px 6px !important;
  height: auto !important;
  background: rgba(255, 255, 255, 0.9);
}

.paragraph--type-left-sidebar-layout {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .paragraph--type-left-sidebar-layout {
    display: block;
  }
}
.paragraph--type-left-sidebar-layout .field--name-field-sidebar-left {
  width: 35%;
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  .paragraph--type-left-sidebar-layout .field--name-field-sidebar-left {
    width: 100%;
    padding: 0;
  }
}
.paragraph--type-left-sidebar-layout .field--name-field-main-right {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .paragraph--type-left-sidebar-layout .field--name-field-main-right {
    width: 100%;
  }
}

.paragraph--type-pullquote {
  position: relative;
}
.paragraph--type-pullquote::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #8e8e8e;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
}
.paragraph--type-pullquote > div {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background: #F7F7F7;
  padding: 30px 60px 50px 60px;
}
.paragraph .paragraph--type-pullquote > div {
  padding: 30px 30px 40px;
}
@media screen and (max-width: 800px) {
  .paragraph--type-pullquote > div {
    padding: 30px 30px 40px 30px;
  }
}
.paragraph--type-pullquote .field--name-field-quote {
  color: #262626;
  font-size: 22px;
  line-height: 1.3em;
  font-weight: 300;
}
.paragraph--type-pullquote .field--name-field-quote::before {
  content: "“";
  display: block;
  font-size: 90px;
  line-height: 1em;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 900;
  margin-bottom: -30px;
}
.paragraph--type-pullquote .field--name-field-attribution {
  font-size: 12px;
  line-height: 1.6em;
  margin-top: 5px;
}
.paragraph--type-pullquote .field--name-field-attribution .field__item {
  display: inline-block;
}
.paragraph--type-pullquote .field--name-field-attribution::before {
  display: inline-block;
  content: "—";
}

.paragraph--type-right-sidebar-layout {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .paragraph--type-right-sidebar-layout {
    display: block;
  }
}
.paragraph--type-right-sidebar-layout .field--name-field-sidebar-right {
  width: 35%;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .paragraph--type-right-sidebar-layout .field--name-field-sidebar-right {
    width: 100%;
    padding: 0;
  }
}
.paragraph--type-right-sidebar-layout .field--name-field-main-left {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .paragraph--type-right-sidebar-layout .field--name-field-main-left {
    width: 100%;
  }
}

.paragraph--type-rule::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #8E8E8E;
}

.paragraph--type-slideshow h2 {
  text-align: center;
  font-weight: 300;
  font-size: 35px;
  color: #000;
  margin-bottom: 20px;
}
.paragraph--type-slideshow .view-slideshow {
  position: relative;
}
.paragraph--type-slideshow .row {
  margin: 0;
  display: block;
}
.paragraph--type-slideshow .slick-track {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.paragraph--type-slideshow .slick-slide {
  position: relative;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 900px) {
  .paragraph--type-slideshow .field--name-field-image {
    padding: 0 30px;
  }
}
.paragraph--type-slideshow img {
  max-height: 526px;
  width: auto;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .paragraph--type-slideshow img {
    max-width: 100%;
    height: auto;
  }
}
.paragraph--type-slideshow .slick-prev {
  padding: 0;
  background: none;
  border: none;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: calc(50% - 41px);
}
@media screen and (max-width: 900px) {
  .paragraph--type-slideshow .slick-prev {
    left: -20px;
  }
}
.paragraph--type-slideshow .slick-prev::before {
  content: url(images/6d85135af77c6223260854df88c6ae2a.svg);
  display: inline-block;
  transition: all 0.1s;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.paragraph--type-slideshow .slick-prev:hover::before {
  -webkit-transform: scale(-1, 1) scale(1.1);
          transform: scale(-1, 1) scale(1.1);
}
.paragraph--type-slideshow .slick-next {
  padding: 0;
  background: none;
  border: none;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: calc(50% - 41px);
  right: 0;
}
@media screen and (max-width: 900px) {
  .paragraph--type-slideshow .slick-next {
    right: -20px;
  }
}
.paragraph--type-slideshow .slick-next::before {
  content: url(images/6d85135af77c6223260854df88c6ae2a.svg);
  display: inline-block;
  transition: all 0.1s;
}
.paragraph--type-slideshow .slick-next:hover::before {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.paragraph--type-slideshow .slick-disabled {
  opacity: 0.3;
}
.paragraph--type-slideshow .field--name-field-caption-html {
  font-size: 14px;
  margin-top: 10px;
}

.paragraph--type-text .field--type-text-long {
  font-weight: 300;
}
.paragraph--type-text .field--type-text-long .text-align-center {
  text-align: center;
}
.paragraph--type-text .field--type-text-long img.align-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.paragraph--type-text .field--type-text-long img.align-right {
  display: block;
  margin-left: auto;
}

.paragraph--type-text-box {
  background: var(--component-bg-color);
  color: var(--component-text-color);
  padding: 30px;
}
.paragraph--type-text-box h3 {
  text-transform: none;
  font-weight: 400;
  font-size: 22px;
}
.paragraph--type-text-box .field--name-field-text {
  font-size: 14px;
  font-weight: 300;
}

.paragraph--type-video {
  text-align: center;
}
.paragraph--type-video .field--name-field-caption {
  font-size: 12px;
  margin-top: 10px;
}
.paragraph--type-video iframe {
  max-width: 100%;
}

.view-article-blog-post-listing {
  overflow: hidden;
  *zoom: 1;
}
.view-article-blog-post-listing .row-group {
  overflow: hidden;
  *zoom: 1;
}
.view-article-blog-post-listing .views-infinite-scroll-content-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
}
.view-article-blog-post-listing .views-row {
  padding: 7.5px 0;
}
.view-article-blog-post-listing h3 {
  font-size: 12px;
  font-size: 1.2rem;
  margin: 0;
  padding: 10px 7.5px;
}
.view-article-blog-post-listing .views-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
  padding: 10px;
  width: 100%;
}
.view-article-blog-post-listing .views-row > article {
  border: 1px solid #bcbcbc;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.view-article-blog-post-listing .views-row > article .title-wrap {
  border-top: 0;
}
.view-article-blog-post-listing .views-row > article .node__content {
  background-color: transparent;
}
@media (min-width: 35em) {
  .view-article-blog-post-listing .views-row {
    width: 50%;
  }
}
@media (min-width: 48em) {
  .view-article-blog-post-listing .views-row {
    width: 50%;
  }
}
@media (min-width: 57.75em) {
  .view-article-blog-post-listing .views-row {
    width: 33.33%;
  }
}

.mm-navbar_sticky {
  top: 0 !important;
}

.mm-btn_next {
  border-left: 0 !important;
}

.field--type-text-long p {
  margin: 1em 0;
}
.field--type-text-long p:first-child {
  margin-top: 0;
}
.field--type-text-long .wysiwyg-button {
  padding: 7.5px 25px;
  border-width: 1px;
  border-style: solid;
  display: inline-block;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 15px;
  margin-top: 7px;
  text-decoration: none !important;
}
.field--type-text-long .wysiwyg-button.teal {
  background-color: #48BFD3;
  border-color: #48BFD3;
  color: #262626;
}
.field--type-text-long .wysiwyg-button.teal:hover {
  color: #262626;
}
.field--type-text-long .wysiwyg-button.black {
  background-color: #262626;
  border-color: #262626;
  color: #fff;
}
.field--type-text-long .wysiwyg-button.black:hover {
  color: #fff;
}
.field--type-text-long .wysiwyg-button.white {
  background-color: #fff;
  color: #262626;
  border-color: #48BFD3;
}
.field--type-text-long .wysiwyg-small-text {
  font-size: 15px;
}
.field--type-text-long .wysiwyg-large-text {
  font-size: 22px;
}
.field--type-text-long .align-left {
  float: left;
  margin-right: 35px;
  margin-bottom: 20px;
  max-width: 60%;
}
.field--type-text-long.align-right {
  float: right;
  margin-left: 35px;
  margin-bottom: 20px;
  max-width: 60%;
}
.field--type-text-long blockquote {
  max-width: 100%;
}

#colorbox {
  z-index: 9999;
}

.messages--error {
  display: none;
}
