/**
 * @name hes: HES frontend
 * @version 0.1.0: Thu, 04 Aug 2022 11:21:51 GMT
 * @author lewis
 * @license ISC
 */@charset "UTF-8";
@-webkit-viewport {
  width: device-width; }

@-moz-viewport {
  width: device-width; }

@-ms-viewport {
  width: device-width;
  zoom: 1.0; }

@viewport {
  width: device-width; }

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

/* Set background colour in case user-styles use a different colour */
html,
body {
  background: #fff; }

/* Stop unwanted automatic text resizing on some mobile devices */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

/* Override defaults on all elements */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, main {
  background: transparent;
  border: 0;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline; }

/* Display block on HTML5 elements */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block; }

/* 
STANDARDISE THE STYLE OF COMMON ELEMENTS
========================================
*/
* {
  text-rendering: optimizeLegibility; }

strong,
b {
  font-weight: bold; }

em,
i {
  font-style: italic; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none; }

ins {
  text-decoration: none; }

mark {
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

dfn {
  font-style: italic; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td {
  vertical-align: top; }

hr {
  border: 0;
  display: block;
  height: 1px;
  margin: 0;
  padding: 0; }

address {
  font-style: normal; }

/*
 * 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects text not wrapping in FF3 
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */ }

/* Addresses margin not present in IE6/7/8/9, S5, O11 */
figure {
  margin: 0; }

/* Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4 */
[hidden] {
  display: none; }

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

/* 
IMAGES
======
*/
/* Improve image quality when scaled in IE7 / Remove the gap between images and borders on image containers: h5bp.com/i/440
 */
img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  -ms-interpolation-mode: bicubic; }

/* 
HYPERLINKS
==========
*/
/* Improves readability when focused and also mouse hovered in all browsers */
a {
  text-decoration: none; }

a:hover,
a:focus,
a:active {
  outline: 0;
  text-decoration: none; }

a:focus {
  outline: 1px dotted; }

/* 
CODE BLOCKS ETC
===============
*/
/* Standardise code blocks */
pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  line-height: 100%; }

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

/* 
FORM ELEMENTS
=============
*/
/* Remove default appearance from inputs */
input,
button {
  -moz-appearance: none;
  -webkit-appearance: none; }

input,
button,
select {
  border: 0;
  -webkit-border-radius: 0;
          border-radius: 0;
  outline: 0;
  padding: 0;
  vertical-align: middle; }

/* Remove default appearance from search inputs in Webkit */
input[type="search"] {
  -webkit-border-radius: 0;
          border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none; }

input[type="checkbox"] {
  -moz-appearance: checkbox;
  -webkit-appearance: checkbox; }

input[type="radio"] {
  -moz-appearance: radio;
  -webkit-appearance: radio; }

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none; }

/* Remove inner padding and border in FF3/4: h5bp.com/l */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/*
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 * 4. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  line-height: normal;
  /* 4 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */ }

/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  /* 1 */
  -webkit-appearance: button;
  /* 2 */ }

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

/*
 * 1. Remove default vertical scrollbar in IE6/7/8/9
 * 2. Allow only vertical resizing
 */
textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical; }

textarea:hover,
textarea:active,
textarea:focus {
  outline: none; }

/* 
CLEARFIX 
========
*/
.clearfix:before,
.clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

html.form-loading {
  height: 100%; }
  html.form-loading body {
    height: 100%;
    position: relative; }
    html.form-loading body:before {
      content: "";
      position: fixed;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100vh;
      width: 100vw;
      background-color: rgba(0, 0, 0, 0.8);
      background-image: url(/Content/images/loading.gif);
      background-position: center center;
      background-repeat: no-repeat;
      z-index: 999; }

body {
  width: 100%; }
  body:before, body:after {
    content: "";
    display: table; }
  body:after {
    clear: both; }

/*=VARIABLES - GRID 
------------------------------------------------*/
/* GRID - BREAKPOINTS
------------------------------------------------*/
/* GRID - CLASSES
------------------------------------------------*/
.col {
  float: left;
  margin-left: 1.25%;
  margin-right: 1.25%; }
  @media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
      .col {
        margin-left: -webkit-calc(1.25% - 0.3px);
        margin-left: calc(1.25% - 0.3px);
        margin-right: -webkit-calc(1.25% - 0.3px);
        margin-right: calc(1.25% - 0.3px); } } }

.small_1 {
  width: 5.83333%; }

.small_2 {
  width: 14.16667%; }

.small_3 {
  width: 22.5%; }

.small_4 {
  width: 30.83333%; }

.small_5 {
  width: 39.16667%; }

.small_6 {
  width: 47.5%; }

.small_7 {
  width: 55.83333%; }

.small_8 {
  width: 64.16667%; }

.small_9 {
  width: 72.5%; }

.small_10 {
  width: 80.83333%; }

.small_12 {
  width: 97.5%;
  display: block; }

@media screen and (min-width: 40em) {
  .small-medium_1 {
    width: 5.83333%; } }

@media screen and (min-width: 40em) {
  .small-medium_2 {
    width: 14.16667%; } }

@media screen and (min-width: 40em) {
  .small-medium_3 {
    width: 22.5%; } }

@media screen and (min-width: 40em) {
  .small-medium_4 {
    width: 30.83333%; } }

@media screen and (min-width: 40em) {
  .small-medium_5 {
    width: 39.16667%; } }

@media screen and (min-width: 40em) {
  .small-medium_6 {
    width: 47.5%; } }

@media screen and (min-width: 40em) {
  .small-medium_7 {
    width: 55.83333%; } }

@media screen and (min-width: 40em) {
  .small-medium_8 {
    width: 64.16667%; } }

@media screen and (min-width: 40em) {
  .small-medium_9 {
    width: 72.5%; } }

@media screen and (min-width: 40em) {
  .small-medium_10 {
    width: 80.83333%; } }

@media screen and (min-width: 40em) {
  .small-medium_11 {
    width: 89.16667%; } }

@media screen and (min-width: 40em) {
  .small-medium_12 {
    width: 97.5%; } }

@media screen and (min-width: 48em) {
  .medium_1 {
    width: 5.83333%; } }

@media screen and (min-width: 48em) {
  .medium_2 {
    width: 14.16667%; } }

@media screen and (min-width: 48em) {
  .medium_3 {
    width: 22.5%; } }

@media screen and (min-width: 48em) {
  .medium_4 {
    width: 30.83333%; } }

@media screen and (min-width: 48em) {
  .medium_5 {
    width: 39.16667%; } }

@media screen and (min-width: 48em) {
  .medium_6 {
    width: 47.5%; } }

@media screen and (min-width: 48em) {
  .medium_7 {
    width: 55.83333%; } }

@media screen and (min-width: 48em) {
  .medium_8 {
    width: 64.16667%; } }

@media screen and (min-width: 48em) {
  .medium_9 {
    width: 72.5%; } }

@media screen and (min-width: 48em) {
  .medium_10 {
    width: 80.83333%; } }

@media screen and (min-width: 48em) {
  .medium_11 {
    width: 89.16667%; } }

@media screen and (min-width: 48em) {
  .medium_12 {
    width: 97.5%; } }

@media screen and (min-width: 60em) {
  .large_1 {
    width: 5.83333%; } }

@media screen and (min-width: 60em) {
  .large_2 {
    width: 14.16667%; } }

@media screen and (min-width: 60em) {
  .large_3 {
    width: 22.5%; } }

@media screen and (min-width: 60em) {
  .large_4 {
    width: 30.83333%; } }

@media screen and (min-width: 60em) {
  .large_5 {
    width: 39.16667%; } }

@media screen and (min-width: 60em) {
  .large_6 {
    width: 47.5%; } }

@media screen and (min-width: 60em) {
  .large_7 {
    width: 55.83333%; } }

@media screen and (min-width: 60em) {
  .large_8 {
    width: 64.16667%; } }

@media screen and (min-width: 60em) {
  .large_9 {
    width: 72.5%; } }

@media screen and (min-width: 60em) {
  .large_10 {
    width: 80.83333%; } }

@media screen and (min-width: 60em) {
  .large_11 {
    width: 80.83333%; } }

@media screen and (min-width: 60em) {
  .large_12 {
    width: 97.5%;
    display: block;
    float: none; } }

@media screen and (min-width: 90.075em) {
  .xlarge_1 {
    width: 5.83333%; } }

@media screen and (min-width: 90.075em) {
  .xlarge_2 {
    width: 14.16667%; } }

@media screen and (min-width: 90.075em) {
  .xlarge_3 {
    width: 22.5%; } }

@media screen and (min-width: 90.075em) {
  .xlarge_4 {
    width: 30.83333%; } }

@media screen and (min-width: 90.075em) {
  .xlarge_5 {
    width: 39.16667%; } }

@media screen and (min-width: 90.075em) {
  .xlarge_6 {
    width: 47.5%; } }

@media screen and (min-width: 90.075em) {
  .xlarge_7 {
    width: 55.83333%; } }

@media screen and (min-width: 90.075em) {
  .xlarge_8 {
    width: 64.16667%; } }

@media screen and (min-width: 90.075em) {
  .xlarge_9 {
    width: 72.5%; } }

@media screen and (min-width: 90.075em) {
  .xlarge_10 {
    width: 80.83333%; } }

@media screen and (min-width: 60em) {
  .pull_1--large {
    margin-right: 9.58333%; } }

@media screen and (min-width: 60em) {
  .push_1--large {
    margin-left: 9.58333%; } }

@media screen and (min-width: 60em) {
  .pull_2--large {
    margin-right: 17.91667%; } }

@media screen and (min-width: 60em) {
  .push_2--large {
    margin-left: 17.91667%; } }

@media screen and (min-width: 90.075em) {
  .push_1--xlarge {
    margin-left: 9.58333%; } }

@media screen and (min-width: 90.075em) {
  .push_2--xlarge {
    margin-left: 17.91667%; } }

@media screen and (min-width: 90.075em) {
  .pull_2--xlarge {
    margin-right: 17.91667%; } }

@media screen and (min-width: 60em) {
  .push_3--large {
    margin-left: 26.25%; } }

@media screen and (min-width: 60em) {
  .push_4--large {
    margin-left: 34.58333%; } }

@media screen and (min-width: 48em) {
  .push_1--medium {
    margin-left: 9.58333%; } }

@media screen and (min-width: 48em) {
  .pull_1--medium {
    margin-right: 9.58333%; } }

@media screen and (min-width: 48em) {
  .push_2--medium {
    margin-left: 17.91667%; } }

@media screen and (min-width: 48em) {
  .pull_3--medium {
    margin-right: 26.25%; } }

@media screen and (min-width: 48em) {
  .push_3--medium {
    margin-left: 26.25%; } }

@media screen and (min-width: 48em) {
  .push_4--medium {
    margin-left: 34.58333%; } }

@media screen and (min-width: 48em) {
  .push_8--medium {
    margin-left: 67.91667%; } }

@media screen and (min-width: 48em) {
  .push_9--medium {
    margin-left: 76.25%; } }

.row {
  display: block;
  width: 102.5%;
  margin-left: -1.25% !important;
  margin-right: -1.25% !important; }
  .row:before, .row:after {
    content: "";
    display: table; }
  .row:after {
    clear: both; }
  .row:before, .row:after {
    content: "";
    display: table; }
  .row:after {
    clear: both; }
  @media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
      .row {
        margin-left: -webkit-calc(-1.25% - 0.3px) !important;
        margin-left: calc(-1.25% - 0.3px) !important;
        margin-right: -webkit-calc(-1.25% - 0.3px) !important;
        margin-right: calc(-1.25% - 0.3px) !important; } } }

.wrapper {
  margin: 0 auto;
  width: 94%; }
  .wrapper:before, .wrapper:after {
    content: "";
    display: table; }
  .wrapper:after {
    clear: both; }
  @media screen and (min-width: 60em) {
    .wrapper {
      max-width: 1200px;
      width: 96%; } }
  @media screen and (min-width: 90.075em) {
    .wrapper {
      max-width: 1400px;
      width: 96%; } }

@media screen and (max-width: 59.938em) {
  .wrapper--nav {
    margin: 0 auto;
    width: 100%; } }

.wrapper--medium-up:before, .wrapper--medium-up:after {
  content: "";
  display: table; }

.wrapper--medium-up:after {
  clear: both; }

@media screen and (min-width: 48em) {
  .wrapper--medium-up {
    margin: 0 auto;
    width: 94%; } }

@media screen and (min-width: 60em) {
  .wrapper--medium-up {
    max-width: 1200px;
    width: 96%; } }

@media screen and (min-width: 90.075em) {
  .wrapper--medium-up {
    max-width: 1400px;
    width: 96%; } }

/*=VARIABLES - COLOURS
------------------------------------------------*/
/* Branding ---------------------- */
/*= Grayscale colours
------------------------------------------------*/
/*= Variables - Text size
------------------------------------------------*/
/*= Variables - Fonts
------------------------------------------------*/
/*= Convert pixels to REMs
------------------------------------------------*/
@-webkit-keyframes tween {
  from {
    width: 0%; }
  to {
    width: 100%;
    left: 0;
    right: 0; } }
@keyframes tween {
  from {
    width: 0%; }
  to {
    width: 100%;
    left: 0;
    right: 0; } }

.block {
  display: block; }

.inline-block {
  display: inline-block !important;
  width: auto !important; }

.absolute {
  position: absolute; }

.relative {
  position: relative; }

@media screen and (min-width: 60em) {
  .relative--large {
    position: relative; } }

.overflow-hide {
  overflow: hidden; }

.centered {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.pull-right {
  float: right !important; }

@media screen and (min-width: 40em) {
  .pull-right--small-medium {
    float: right !important; } }

@media screen and (min-width: 48em) {
  .pull-right--medium {
    float: right !important; } }

@media screen and (min-width: 60em) {
  .pull-right--large {
    float: right !important; } }

.pull-left {
  float: left !important; }

@media screen and (min-width: 48em) {
  .pull-left--medium {
    float: left; } }

@media screen and (min-width: 60em) {
  .pull-left--large {
    float: left; } }

.svg-helper {
  width: 100%; }

@media screen and (min-width: 48em) {
  .highlight-min-height {
    min-height: 170px; } }

.align--bottom {
  position: absolute;
  bottom: 12.8px;
  bottom: 0.8rem; }

/*---------------- Image ratios -------------*/
.img-overlay__wrap--5x3 {
  width: 100%;
  height: 0;
  padding-bottom: 60%; }

.img-overlay__wrap--2x1 {
  width: 100%;
  height: 0;
  padding-bottom: 50%; }

.img-overlay__wrap--1x1 {
  width: 100%;
  height: 0;
  padding-bottom: 100%; }

.img-overlay__wrap--1x1 {
  width: 100%;
  height: 0;
  padding-bottom: 100%; }

.col--ratio {
  position: relative; }
  .col--ratio:after {
    content: '';
    display: block;
    width: 100%; }

@media screen and (min-width: 40em) {
  .col--ratio-5x3:after {
    width: 100%;
    height: 0;
    padding-bottom: 60%; } }

@media screen and (min-width: 40em) {
  .col--ratio-2p5x3:after {
    width: 100%;
    height: 0;
    padding-bottom: 126.68919%; } }

@media screen and (min-width: 40em) {
  .col--ratio__inner {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0; } }

/*---------------- Add/remove margins -------------*/
.push {
  margin: 24px !important;
  margin: 1.5rem !important; }

@media screen and (min-width: 48em) {
  .push--medium {
    margin: 1.5rem !important; } }

.push--top {
  margin-top: 24px !important;
  margin-top: 1.5rem !important; }

.push--right {
  margin-right: 24px !important;
  margin-right: 1.5rem !important; }

.push--bottom {
  margin-bottom: 24px !important;
  margin-bottom: 1.5rem !important; }

.push--left {
  margin-left: 24px !important;
  margin-left: 1.5rem !important; }

.push--ends {
  margin-top: 24px !important;
  margin-top: 1.5rem !important;
  margin-bottom: 24px !important;
  margin-bottom: 1.5rem !important; }

.push-double--ends {
  margin-top: 48px !important;
  margin-top: 3rem !important;
  margin-bottom: 48px !important;
  margin-bottom: 3rem !important; }

.push-double--left {
  margin-left: 48px !important;
  margin-left: 3rem !important; }

.push-double--bottom {
  margin-bottom: 48px !important;
  margin-bottom: 3rem !important; }

.push--sides {
  margin-right: 24px !important;
  margin-right: 1.5rem !important;
  margin-left: 24px !important;
  margin-left: 1.5rem !important; }

.push-half {
  margin: 12px !important;
  margin: 0.75rem !important; }

.push-half--top {
  margin-top: 12px !important;
  margin-top: 0.75rem !important; }

.push-quarter--top {
  margin-top: 6px !important;
  margin-top: 0.375rem !important; }

.push-half--right {
  margin-right: 12px !important;
  margin-right: 0.75rem !important; }

.push-half--bottom {
  margin-bottom: 12px !important;
  margin-bottom: 0.75rem !important; }

.push-half--left {
  margin-left: 12px !important;
  margin-left: 0.75rem !important; }

.push-half--ends {
  margin-top: 12px !important;
  margin-top: 0.75rem !important;
  margin-bottom: 12px !important;
  margin-bottom: 0.75rem !important; }

.push-half--sides {
  margin-right: 12px !important;
  margin-right: 0.75rem !important;
  margin-left: 12px !important;
  margin-left: 0.75rem !important; }

.push-small--ends {
  margin-top: 6px !important;
  margin-bottom: 6px !important; }

.push-small--top {
  margin-top: 6px !important; }

.push-small--bottom {
  margin-bottom: 6px !important; }

.push-double--top {
  margin-top: 48px !important;
  margin-top: 3rem !important; }

.flush {
  margin: 0 !important; }

.flush--top {
  margin-top: 0 !important; }

.flush--right {
  margin-right: 0 !important; }

.flush--bottom {
  margin-bottom: 0 !important; }

.flush--left {
  margin-left: 0 !important; }

.flush--ends {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.flush--sides {
  margin-right: 0 !important;
  margin-left: 0 !important; }

/*--------------Nagative top margin ----------------*/
.overlap-top {
  margin-top: -36px; }

/*---------------- Add/remove paddings -------------*/
.soft {
  padding: 24px !important;
  padding: 1.5rem !important; }

.soft--top {
  padding-top: 24px !important;
  padding-top: 1.5rem !important; }

.soft--right {
  padding-right: 24px !important;
  padding-right: 1.5rem !important; }

.soft--bottom {
  padding-bottom: 24px !important;
  padding-bottom: 1.5rem !important; }

.soft--left {
  padding-left: 24px !important;
  padding-left: 1.5rem !important; }

.soft--ends {
  padding-top: 24px !important;
  padding-top: 1.5rem !important;
  padding-bottom: 24px !important;
  padding-bottom: 1.5rem !important; }

.soft--sides {
  padding-right: 24px !important;
  padding-right: 1.5rem !important;
  padding-left: 24px !important;
  padding-left: 1.5rem !important; }

.soft-half {
  padding: 12px !important;
  padding: 0.75rem !important; }

.soft-half--top {
  padding-top: 12px !important;
  padding-top: 0.75rem !important; }

.soft-small--top {
  padding-top: 6px !important; }

.soft-double--top {
  padding-top: 48px !important;
  padding-top: 3rem !important; }

.soft-double--bottom {
  padding-bottom: 48px !important;
  padding-bottom: 3rem !important; }

.soft-double--left {
  padding-left: 48px !important;
  padding-left: 3rem !important; }

.soft-half--right {
  padding-right: 12px !important;
  padding-right: 0.75rem !important; }

.soft-half--bottom {
  padding-bottom: 12px !important;
  padding-bottom: 0.75rem !important; }

.soft-half--left {
  padding-left: 12px !important;
  padding-left: 0.75rem !important; }

.soft-half--ends {
  padding-top: 12px !important;
  padding-top: 0.75rem !important;
  padding-bottom: 12px !important;
  padding-bottom: 0.75rem !important; }

.soft-half--sides {
  padding-right: 12px !important;
  padding-right: 0.75rem !important;
  padding-left: 12px !important;
  padding-left: 0.75rem !important; }

@media screen and (min-width: 48em) {
  .soft--medium {
    padding: 1.5rem !important; } }

@media screen and (min-width: 60em) {
  .soft--large {
    padding: 1.5rem !important; } }

@media screen and (min-width: 60em) {
  .soft-half--large {
    padding: 0.75rem !important; } }

@media screen and (min-width: 60em) {
  .soft-right--large {
    padding-right: 24px !important; } }

.soft-double--ends {
  padding-bottom: 48px !important;
  padding-bottom: 3rem !important;
  padding-top: 48px !important;
  padding-top: 3rem !important; }

@media (max-width: 48em) {
  .soft--ends-mobile {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; } }

@media screen and (min-width: 60em) {
  .push-right--large {
    margin-right: 1.5rem; } }

@media screen and (max-width: 40em) {
  .push-bottom--small {
    margin-bottom: 1.5rem !important; } }

@media screen and (min-width: 48em) {
  .gutter-left--medium {
    padding-left: 0.75rem !important; } }

@media screen and (min-width: 60em) {
  .gutter-right--large {
    padding-right: 0.75rem !important; } }

@media screen and (min-width: 60em) {
  .gutter-left--large {
    padding-left: 0.75rem !important; } }

.hard {
  padding: 0 !important; }

.hard--top {
  padding-top: 0 !important; }

.hard--right {
  padding-right: 0 !important; }

.hard--bottom {
  padding-bottom: 0 !important; }

.hard--left {
  padding-left: 0 !important; }

.hard--ends {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.hard--sides {
  padding-right: 0 !important;
  padding-left: 0 !important; }

.border--light {
  border: 1px solid #eaeaea; }

.border-bottom--light {
  border-bottom: 1px solid #f0f0f0; }

.border-top--light {
  border-top: 1px solid #f0f0f0; }

.border-top--white {
  border-top: 1px solid #ffffff; }

.border-top--thick {
  border-top: 2px solid #f0f0f0; }

.border--rounded {
  -webkit-border-radius: 5px;
          border-radius: 5px; }

.divider {
  color: #686867;
  line-height: 25.6px;
  line-height: 1.6rem;
  border-bottom: 1px solid #ececec;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  position: relative; }
  @media screen and (min-width: 48em) {
    .divider {
      font-size: 1.2rem;
      line-height: 1.6rem; } }
  .divider:after {
    background-color: #ffffff;
    background-image: url("/content/images/divider.svg");
    background-repeat: no-repeat;
    background-position: center;
    bottom: -14px;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    width: 24px;
    height: 26px;
    margin: 0 auto; }

.flex-equal-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%; }
  .flex-equal-height > .col {
    float: none; }

@media (min-width: 48em) {
  .flex-equal-height--medium {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 100%; }
    .flex-equal-height--medium > .col {
      float: none; } }

@media (min-width: 48em) {
  .flex-equal-height--medium-102-5 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 102.5%; }
    .flex-equal-height--medium-102-5 > .col {
      float: none; } }

.ecru {
  color: #F1F1F1; }

.ecru--75 {
  color: whitesmoke; }

.ecru--50 {
  color: #f8f8f8; }

.ecru--25 {
  color: #fcfcfc; }

.bg-ecru {
  background-color: #F1F1F1; }

.bg-ecru--75 {
  background-color: whitesmoke; }

.bg-ecru--50 {
  background-color: #f8f8f8; }

.bg-ecru--25 {
  background-color: #fcfcfc; }

.black {
  color: #1B181C; }

.black--75 {
  color: #545255; }

.black--50 {
  color: #8d8c8e; }

.black--25 {
  color: #c6c5c6; }

.bg-black {
  background-color: #1B181C; }

.bg-black--75 {
  background-color: #545255; }

.bg-black--50 {
  background-color: #8d8c8e; }

.bg-black--25 {
  background-color: #c6c5c6; }

.grey {
  color: #666666; }

.grey--75 {
  color: #8c8c8c; }

.grey--50 {
  color: #b3b3b3; }

.grey--25 {
  color: #d9d9d9; }

.grey--5 {
  color: #f7f7f7; }

.bg-grey {
  background-color: #666666; }

.bg-grey--75 {
  background-color: #8c8c8c; }

.bg-grey--50 {
  background-color: #b3b3b3; }

.bg-grey--25 {
  background-color: #d9d9d9; }

.bg-grey--7 {
  background-color: #f4f4f4; }

.bg-grey--5 {
  background-color: #f7f7f7; }

.white {
  color: #ffffff; }

.muted {
  color: #888888; }

.bg-white {
  background-color: #ffffff; }

.bg-dark-grey {
  background-color: #555555; }

.bg-dark-grey-1 {
  background-color: #333333; }

.bg-mid-grey-1 {
  background-color: #666666; }

.bg-mid-grey-2 {
  background-color: #777777; }

.bg-mid-grey-3 {
  background-color: #888888; }

.bg-light-grey {
  background-color: #cccccc; }

.bg-light-grey-1 {
  background-color: #eaeaea; }

.bg-light-grey-2 {
  background-color: #dddddd; }

.bg-light-grey-3 {
  background-color: #fafafa; }

.brand-primary {
  color: #305983; }

.brand-primary--10 {
  color: #eaeef3; }

.brand-primary--20 {
  color: #d6dee6; }

.brand-primary--30 {
  color: #c1cdda; }

.brand-primary--40 {
  color: #acbdcd; }

.bg-brand-primary {
  background-color: #305983; }

.bg-brand-primary--10 {
  background-color: #eaeef3; }

.bg-brand-primary--20 {
  background-color: #d6dee6; }

.bg-brand-primary--30 {
  background-color: #c1cdda; }

.bg-brand-primary--40 {
  background-color: #acbdcd; }

.bg-brand-primary--50 {
  background-color: #98acc1; }

.bg-brand-primary--60 {
  background-color: #839bb5; }

.bg-brand-primary--70 {
  background-color: #6e8ba8; }

.bg-brand-primary--80 {
  background-color: #557799; }

.bg-brand-primary--90 {
  background-color: #41668d; }

.brand-secondary {
  color: #77b0a4; }

.brand-secondary-20 {
  color: #e4efed; }

.brand-secondary--30 {
  color: #d6e7e4; }

.brand-secondary--40 {
  color: #c9dfdb; }

.bg-brand-secondary {
  background-color: #77b0a4; }

.bg-brand-secondary--20 {
  background-color: #e4efed; }

.bg-brand-secondary--30 {
  background-color: #d6e7e4; }

.bg-brand-secondary--40 {
  background-color: #c9dfdb; }

.brand-tertiary {
  color: #424241; }

.brand-tertiary-20 {
  color: #d9d9d9; }

.brand-tertiary--30 {
  color: #c6c6c6; }

.brand-tertiary--40 {
  color: #b3b3b3; }

.brand-tertiary--80 {
  color: #686867; }

.brand-tertiary--90 {
  color: #ececec; }

.bg-brand-tertiary {
  background-color: #424241; }

.bg-brand-tertiary--20 {
  background-color: #d9d9d9; }

.bg-brand-tertiary--30 {
  background-color: #c6c6c6; }

.bg-brand-tertiary--40 {
  background-color: #b3b3b3; }

.bg-brand-tertiary--shade-50 {
  background-color: #212121; }

.brand-inverlochy {
  color: #00485A; }

.brand-inverlochy-20 {
  color: #ccdade; }

.brand-inverlochy--30 {
  color: #b3c8ce; }

.brand-inverlochy--40 {
  color: #99b6bd; }

.bg-brand-inverlochy {
  background-color: #00485A; }

.bg-brand-inverlochy--20 {
  background-color: #ccdade; }

.bg-brand-inverlochy--30 {
  background-color: #b3c8ce; }

.bg-brand-inverlochy--40 {
  background-color: #99b6bd; }

.red {
  color: #8a012a; }

.red-20 {
  color: #e8ccd4; }

.red--30 {
  color: #dcb3bf; }

.red--40 {
  color: #d099aa; }

.bg-red {
  background-color: #8a012a; }

.bg-red--20 {
  background-color: #e8ccd4; }

.bg-red--30 {
  background-color: #dcb3bf; }

.bg-red--40 {
  background-color: #d099aa; }

.gold {
  color: #d7c482; }

.gold-20 {
  color: #f7f3e6; }

.gold--30 {
  color: #f3edda; }

.gold--40 {
  color: #efe7cd; }

.bg-gold {
  background-color: #d7c482; }

.bg-gold--20 {
  background-color: #f7f3e6; }

.bg-gold--30 {
  background-color: #f3edda; }

.bg-gold--40 {
  background-color: #efe7cd; }

.bg-gold--30 {
  background-color: #f3edda; }

.bg-black-opacity--80 {
  background-color: rgba(50, 50, 50, 0.8); }

.btn {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-color: #333333;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: "gill-sans-nova", sans-serif;
  font-size: 17.6px;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 25.6px;
  line-height: 1.6rem;
  outline: none;
  padding: 6.4px 16px 9.6px 16px;
  padding: 0.4rem 1rem 0.6rem 1rem;
  position: relative;
  text-decoration: none;
  text-rendering: auto;
  overflow: hidden; }
  @media screen and (min-width: 60em) {
    .btn {
      -webkit-transition: background-color 0.25s ease-in-out;
      transition: background-color 0.25s ease-in-out; } }
  .btn:hover, .btn:focus {
    background-color: #555555;
    color: #ffffff;
    text-decoration: none; }
  .btn:visited {
    color: #ffffff; }
  .btn.active, .btn:active {
    background-color: #333333;
    color: #ffffff; }
  .btn .icon {
    font-size: 14.4px;
    font-size: 0.9rem;
    line-height: 42px;
    padding-left: 12.8px;
    padding-left: 0.8rem;
    padding-right: 8px;
    padding-right: 0.5rem; }

.btn--icon {
  padding-right: 56px;
  padding-right: 3.5rem;
  position: relative; }
  .btn--icon .icon {
    color: #fff;
    height: 100%;
    right: 0;
    position: absolute;
    top: 0;
    z-index: 1; }

.btn--icon:after {
  right: -4px;
  bottom: 0;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none; }

.btn--icon:after {
  border-width: 70px 0px 164px 52px;
  border-color: transparent transparent rgba(0, 0, 0, 0.08) transparent; }

.btn--icon--right {
  padding-left: 56px;
  padding-left: 3.5rem;
  padding-right: 16px;
  padding-right: 1rem;
  position: relative; }
  .btn--icon--right .icon {
    left: 0;
    right: auto; }
  .btn--icon--right:after {
    right: auto;
    left: -4px; }
  .btn--icon--right:after {
    border-width: 70px 52px 164px 0px; }

.btn--primary {
  background: #007994;
  color: #ffffff !important; }
  .btn--primary:hover {
    background: #006176;
    color: #ffffff; }
  .btn--primary:focus {
    background: #006176; }
  .btn--primary.active, .btn--primary:active {
    background-color: #007994;
    color: #ffffff; }

.btn--exhibition {
  background: #F9BE00;
  color: #1B181C !important;
  min-width: 128px;
  min-width: 8rem;
  padding-right: 48px !important;
  padding-right: 3rem !important; }
  .btn--exhibition:hover {
    color: #fff !important; }
  .btn--exhibition:focus {
    background: transparent;
    color: white !important;
    outline: 2px solid white; }
  .btn--exhibition:before {
    display: block;
    right: -4px;
    bottom: 0;
    border-style: solid;
    border-width: 70px 0 164px 52px;
    border-color: transparent transparent rgba(0, 0, 0, 0.08) transparent;
    content: ' ';
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none; }
  .btn--exhibition:after {
    content: '\e75e';
    font-family: fontello;
    font-style: normal;
    font-weight: 400;
    speak: none;
    display: inline-block;
    position: absolute;
    right: 3.2px;
    right: 0.2rem;
    top: -webkit-calc(50% - 0.5rem);
    top: calc(50% - 0.5rem);
    text-decoration: inherit;
    width: 1em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.btn--exhibition-alt {
  background: #4e1e66;
  color: #fff !important;
  min-width: 128px;
  min-width: 8rem;
  padding-right: 48px !important;
  padding-right: 3rem !important; }
  .btn--exhibition-alt:hover {
    color: #fff !important; }
  .btn--exhibition-alt:before {
    display: block;
    right: -4px;
    bottom: 0;
    border-style: solid;
    border-width: 70px 0 164px 52px;
    border-color: transparent transparent rgba(0, 0, 0, 0.08) transparent;
    content: ' ';
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none; }
  .btn--exhibition-alt:after {
    content: '\e75e';
    font-family: fontello;
    font-style: normal;
    font-weight: 400;
    speak: none;
    display: inline-block;
    position: absolute;
    right: 3.2px;
    right: 0.2rem;
    top: -webkit-calc(50% - 0.5rem);
    top: calc(50% - 0.5rem);
    text-decoration: inherit;
    width: 1em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.btn--faux {
  background: transparent;
  font-family: "gill-sans-nova", sans-serif; }
  .btn--faux:focus {
    outline: 1px dotted; }

.btn--white {
  background: #ececec;
  color: #686867; }
  .btn--white:hover, .btn--white:focus {
    background: #e3e3e3;
    color: #424241; }
  .btn--white:visited {
    color: #686867; }
  .btn--white .icon {
    color: #686867; }

.btn--outline {
  background-color: transparent;
  border: 1px solid #007994;
  color: #007994; }
  .btn--outline:visited {
    color: #007994; }
  .btn--outline:hover, .btn--outline:focus {
    color: #ffffff;
    text-decoration: none; }

.btn--filming {
  float: left;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  margin-left: 12px;
  margin-left: 0.75rem;
  position: relative; }
  @media screen and (min-width: 59.938em) {
    .btn--filming {
      margin-bottom: 0;
      position: absolute;
      right: 1.5rem;
      top: 12px; } }

.btn--full-width {
  width: 100%; }

.btn--date {
  font-size: 14.4px;
  font-size: 0.9rem;
  height: 41px;
  width: 100%;
  padding: 0; }
  .btn--date.icon:before {
    margin: 0; }
  .btn--date:focus {
    background: #33b3d0; }

.nav-btn--section {
  background: #007994;
  color: #ffffff;
  display: none;
  font-family: "gill-sans-nova", sans-serif;
  font-size: 19.2px;
  font-size: 1.2rem;
  position: relative; }
  @media screen and (max-width: 59.938em) {
    .nav-btn--section {
      display: block;
      width: 100%;
      text-align: left;
      padding: 1em 0.8em 1em 3.5rem; } }
  .nav-btn--section:before {
    position: absolute;
    left: 24px;
    top: 24px;
    display: inline-block;
    content: "";
    width: 14px;
    height: 14px;
    border-right: 2px solid;
    border-top: 2px solid;
    -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
            transform: rotate(135deg); }
    .active .nav-btn--section:before {
      -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
              transform: rotate(-45deg);
      top: 32px; }
  .nav-btn--section:hover {
    background: #00647A; }

.nav-btn {
  background: #456a8f;
  bottom: 0;
  color: #ffffff;
  font-family: "gill-sans-nova", sans-serif;
  padding: 6.4px;
  padding: 0.4rem;
  position: absolute;
  top: 0;
  height: 100%; }
  .nav-btn:hover {
    background: #00647A;
    color: #ffffff; }
  .nav-btn:hover i {
    color: #ffffff; }
  .nav-btn [class^="icon-"]:before, .nav-btn [class*=" icon-"]:before {
    margin-left: 3.2px;
    margin-left: .2rem; }

.nav-btn--menu {
  display: none;
  right: 50px; }
  @media screen and (max-width: 59.938em) {
    .nav-btn--menu {
      display: block; } }

.nav-btn-close {
  background: rgba(255, 255, 255, 0.2);
  bottom: 0;
  color: #ffffff;
  display: block;
  font-family: "gill-sans-nova", sans-serif;
  padding: 6.4px;
  padding: 0.4rem;
  position: absolute;
  right: 0;
  top: 0;
  height: 66px;
  width: 66px;
  text-align: center; }
  .nav-btn-close:hover {
    background: #00647A;
    color: #ffffff; }
  .nav-btn-close:hover i {
    color: #ffffff; }
  .nav-btn-close [class^="icon-"]:before, .nav-btn-close [class*=" icon-"]:before {
    margin-left: 3.2px;
    margin-left: .2rem; }
  @media screen and (min-width: 60em) {
    .nav-btn-close {
      display: none; } }

.nav-btn--search {
  display: none; }
  @media screen and (max-width: 59.938em) {
    .nav-btn--search {
      background: #597a9c;
      bottom: 0;
      color: #ffffff;
      display: block;
      font-family: "gill-sans-nova", sans-serif;
      padding: 0.4rem;
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: 50px;
      text-align: center; }
      .nav-btn--search:hover {
        background: #00647A;
        color: #ffffff; }
      .nav-btn--search:hover i {
        color: #ffffff; }
      .nav-btn--search [class^="icon-"]:before, .nav-btn--search [class*=" icon-"]:before {
        margin-left: .2rem; } }

.nav-btn__label {
  color: #a1a1a0; }
  .nav-btn__label:hover {
    color: #ffffff; }

a,
btn,
button,
div.dark-link {
  -webkit-transition: color 0.5s ease-in-out,background-color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out,background-color 0.5s ease-in-out; }

/*= Thumbnail image overlay with caption
------------------------------------------------*/
.img-overlay__wrap {
  -webkit-animation: anima 2s;
  animation: anima 2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  overflow: hidden;
  display: block; }

.img-overlay__caption {
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(48, 89, 131, 0.8);
  padding: 10px;
  text-align: center;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=($opacity * 100))";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  top: 0;
  left: 0; }

.img-overlay__cover {
  width: 100%; }

.img-overlay__image {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.img-overlay:hover .img-overlay__image,
.img-overlay:focus .img-overlay__image,
.img-overlay__wrap:hover .img-overlay__image,
.img-overlay__wrap:focus .img-overlay__image {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05); }

.img-overlay__wrap .img-overlay__image,
.img-overlay__caption,
.img-overlay__wrap:hover .img-overlay__caption,
.img-overlay__wrap:focus .img-overlay__caption,
.img-overlay__wrap:hover img,
.img-overlay__wrap:focus img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease; }

.img-overlay:hover .img-overlay__caption,
.img-overlay:focus .img-overlay__caption,
.img-overlay__wrap:hover .img-overlay__caption,
.img-overlay__wrap:focus .img-overlay__caption {
  top: 0;
  left: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=($opacity * 100))";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  user-select: none; }

a.img-overlay {
  color: #322f33; }

a:hover.img-overlay,
a:focus.img-overlay {
  color: #3394a9; }

.img-overlay__image--product {
  background: #ffffff;
  border: 1px solid #eaeaea;
  padding: 16px;
  padding: 1rem; }

/*= Thumbnail image overlay
-----------------------------------------------*/
.img-overlay__wrap {
  position: relative;
  overflow: hidden;
  display: block;
  -webkit-animation: anima 2s;
  animation: anima 2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.img-overlay__effect {
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #5f5d60;
  padding: 10px;
  text-align: center;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=($opacity * 100))";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  top: 0;
  left: 0; }

.img-overlay__effect--light {
  background: #dddddd; }

.img-overlay__image {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.img-overlay:hover .img-overlay__image,
.img-overlay:focus .img-overlay__image,
.img-overlay__wrap:hover .img-overlay__image,
.img-overlay__wrap:focus .img-overlay__image {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03); }

.img-overlay__wrap .img-overlay__image,
.img-overlay__effect,
.img-overlay__wrap:hover .img-overlay__effect,
.img-overlay__wrap:focus .img-overlay__effect,
.img-overlay__wrap:hover img,
.img-overlay__wrap:focus img {
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease; }

.img-overlay:hover .img-overlay__effect,
.img-overlay:focus .img-overlay__effect,
.img-overlay__wrap:hover .img-overlay__effect,
.img-overlay__wrap:focus .img-overlay__effect {
  top: 0;
  left: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=($opacity * 100))";
  filter: alpha(opacity=40);
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  opacity: 0.4;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.img-overlay__image--home {
  width: 100%; }
  @media screen and (min-width: 70em) {
    .img-overlay__image--home {
      max-width: none;
      margin-left: -110px;
      width: auto; } }
  @media screen and (min-width: 92em) {
    .img-overlay__image--home {
      max-width: 100%;
      margin-left: 0; } }

/*= Article block links above footer
------------------------------------------------*/
.line-effect h3 {
  color: #ffffff; }

.line-effect h3::before,
.line-effect h3::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 20%;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  content: '';
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
      transform: scale(1); }

.line-effect h3::after {
  opacity: 0;
  -webkit-transition: top 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: top 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  transition: top 0.3s, opacity 0.3s, transform 0.3s;
  transition: top 0.3s, opacity 0.3s, transform 0.3s, -webkit-transform 0.3s; }

.upsell:hover.line-effect h3::before,
.upsell:hover.line-effect h3::after,
.upsell:focus.line-effect h3::before,
.upsell:focus.line-effect h3::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
      transform: scale(1); }

.upsell:hover.line-effect h3::after,
.upsell:hover.line-effect h3::after {
  top: 0%;
  opacity: 1; }

/* Animations http://devinvinson.com/delayed-fade-in-effects-with-css/
-------------------------------------------------------------- */
@-webkit-keyframes fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fade-in {
  opacity: 0;
  -webkit-animation: fade-in ease-out 1;
          animation: fade-in ease-out 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation-duration: .75s;
          animation-duration: .75s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s; }

@-webkit-keyframes fade-in-out {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fade-in-out {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.fade-in-out {
  opacity: 0;
  -webkit-animation: fade-in-out ease-in-out 1;
          animation: fade-in-out ease-in-out 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s; }

.no-csstransitions .fade-in-out {
  opacity: 1; }

@-webkit-keyframes fade-in-up {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px); }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes fade-in-up {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px); }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.fade-in-up {
  opacity: 0;
  -webkit-animation: fade-in-up ease-out 1;
          animation: fade-in-up ease-out 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation-duration: .75s;
          animation-duration: .75s;
  -webkit-animation-delay: .33s;
          animation-delay: .33s; }

.no-csstransitions .fade-in-up {
  opacity: 1; }

.fade-in-up--1 {
  -webkit-animation-delay: .5s;
          animation-delay: .5s; }

.fade-in-up--2 {
  -webkit-animation-delay: .75s;
          animation-delay: .75s; }

.fade-in-up--3 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s; }

.fade-in-up--4 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s; }

/* Keyframes for the fade-in */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fade-in {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
  animation-duration: 1s; }

.no-csstransitions .fade-in {
  opacity: 1; }

.fade-in--1 {
  -webkit-animation-delay: .3s;
          animation-delay: .3s; }

.fade-in--2 {
  -webkit-animation-delay: .6s;
          animation-delay: .6s; }

.fade-in--3 {
  -webkit-animation-delay: .9s;
          animation-delay: .9s; }

.fade-in--4 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s; }

.fade-in--5 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s; }

.fade-in--6 {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s; }

.fade-in--7 {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s; }

.fade-in--8 {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s; }

.fade-in--9 {
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s; }

.fade-in--10 {
  -webkit-animation-delay: 3s;
          animation-delay: 3s; }

.fade-in--11 {
  -webkit-animation-delay: 3.3s;
          animation-delay: 3.3s; }

.fade-in--11 {
  -webkit-animation-delay: 3.3s;
          animation-delay: 3.3s; }

.img-overlay-push {
  padding-top: 15%; }

.img-overlay__title {
  padding: 0;
  color: #ececec;
  font-size: 16px;
  font-size: 1rem;
  line-height: 16px;
  line-height: 1rem;
  letter-spacing: 3px; }

.img-overlay__title-text {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0; }

.img-overlay__title-insert {
  display: inline-block;
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  position: relative; }

.img-overlay__title-keystone-top,
.img-overlay__title-keystone-bottom {
  display: block;
  height: 20px;
  overflow: hidden;
  position: relative; }

.no-csstransitions .img-overlay:hover .img-overlay__title-keystone-top:before {
  opacity: 1; }

.no-csstransitions .img-overlay:hover .img-overlay__title-keystone-bottom:before {
  opacity: 1; }

.no-csstransitions .img-overlay:hover .img-overlay__title-inner {
  opacity: 1; }

.img-overlay:hover .img-overlay__title-keystone-top:before {
  content: '';
  background-image: url("/content/images/venue-keystone-dark.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  display: block;
  width: 78px;
  height: 90px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  opacity: 0;
  -webkit-animation: keystone ease-in-out 1;
          animation: keystone ease-in-out 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation-duration: .3s;
          animation-duration: .3s;
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
  overflow: hidden; }

.img-overlay:hover .img-overlay__title-keystone-bottom:before {
  content: '';
  background-image: url("/content/images/venue-keystone-dark.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  display: block;
  width: 78px;
  height: 90px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 5px;
  opacity: 0;
  -webkit-animation: keystonecaption ease-in-out 1;
          animation: keystonecaption ease-in-out 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation-duration: .3s;
          animation-duration: .3s;
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
  overflow: hidden; }

@-webkit-keyframes keystonecaption {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 10px);
            transform: translate(0, 10px); }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes keystonecaption {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 10px);
            transform: translate(0, 10px); }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.img-overlay:hover .img-overlay__title-insert:before {
  -webkit-animation: tweencaption 0.5s ease-in-out forwards;
          animation: tweencaption 0.5s ease-in-out forwards;
  background-color: #6e8ba8;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  right: 50%;
  width: 0;
  height: 2px; }

.img-overlay:hover .img-overlay__title-insert:after {
  -webkit-animation: tweencaption 0.5s ease-in-out forwards;
          animation: tweencaption 0.5s ease-in-out forwards;
  background-color: #6e8ba8;
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  right: 50%;
  width: 0;
  height: 2px; }

@-webkit-keyframes tweencaption {
  from {
    width: 0%; }
  to {
    width: 100%;
    left: 0;
    right: 0; } }

@keyframes tweencaption {
  from {
    width: 0%; }
  to {
    width: 100%;
    left: 0;
    right: 0; } }

.img-overlay:hover .img-overlay__title-inner {
  display: block;
  opacity: 0;
  -webkit-animation: fade-in-up ease-in-out 1;
          animation: fade-in-up ease-in-out 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation-duration: .1s;
          animation-duration: .1s; }

body {
  color: #424241;
  font-family: Arial,"Helvetica Neue",Helvetica,sans-serif;
  font-size: 16px;
  line-height: 24px; }
  @media screen and (min-width: 60em) {
    body.has-sub-nav {
      padding-top: 193px; } }
  @media screen and (min-width: 60em) {
    body {
      padding-top: 145px; } }

.mti-active body,
.wf-loading body,
body {
  font-family: "gill-sans-nova", sans-serif; }

.primary-font {
  font-family: "gill-sans-nova", sans-serif;
  font-weight: 400; }

.primary-font--semi {
  font-family: "gill-sans-nova", sans-serif;
  font-weight: 600; }

.primary-font--bold, .privacy-banner__title, .privacy-banner__form-title {
  font-family: "gill-sans-nova", sans-serif;
  font-weight: 700; }

.secondary-font--light {
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 300; }

.secondary-font {
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 400; }

.secondary-font--bold {
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 700; }

.trajan {
  font-family: 'Trajan W01', sans-serif; }

.vesta {
  font-family: 'Vesta W01', sans-serif; }

.exa {
  font-size: 35.2px;
  font-size: 2.2rem;
  line-height: 38.4px;
  line-height: 2.4rem; }
  @media screen and (min-width: 48em) {
    .exa {
      font-size: 3rem;
      line-height: 3.4rem; } }
  @media screen and (min-width: 60em) {
    .exa {
      font-size: 3.8rem;
      line-height: 4rem; } }

.peta {
  font-size: 35.2px;
  font-size: 2.2rem;
  line-height: 38.4px;
  line-height: 2.4rem; }
  @media screen and (min-width: 48em) {
    .peta {
      font-size: 2.8rem;
      line-height: 3.2rem; } }
  @media screen and (min-width: 60em) {
    .peta {
      font-size: 3rem;
      line-height: 3.6rem; } }

.tera {
  font-size: 32px;
  font-size: 2rem;
  line-height: 35.2px;
  line-height: 2.2rem; }
  @media screen and (min-width: 48em) {
    .tera {
      font-size: 2.4rem;
      line-height: 2.6rem; } }
  @media screen and (min-width: 60em) {
    .tera {
      font-size: 2.6rem;
      line-height: 2.8rem; } }

.giga {
  font-size: 25.6px;
  font-size: 1.6rem;
  line-height: 32px;
  line-height: 2rem; }
  @media screen and (min-width: 48em) {
    .giga {
      font-size: 1.8rem;
      line-height: 2rem; } }
  @media screen and (min-width: 60em) {
    .giga {
      font-size: 2rem;
      line-height: 2.4rem; } }

.mega {
  font-size: 22.4px;
  font-size: 1.4rem;
  line-height: 25.6px;
  line-height: 1.6rem; }
  @media screen and (min-width: 48em) {
    .mega {
      font-size: 1.5rem;
      line-height: 1.8rem; } }
  @media screen and (min-width: 60em) {
    .mega {
      font-size: 1.8rem;
      line-height: 2.4rem; } }

.kilo, .privacy-banner__title, .privacy-banner__form-title {
  font-size: 20.8px;
  font-size: 1.3rem;
  line-height: 25.6px;
  line-height: 1.6rem; }

.alpha {
  font-size: 19.2px;
  font-size: 1.2rem;
  line-height: 22.4px;
  line-height: 1.4rem; }

.beta {
  font-size: 17.6px;
  font-size: 1.1rem;
  line-height: 22.4px;
  line-height: 1.4rem; }

.gamma {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19.2px;
  line-height: 1.2rem; }

.delta {
  font-size: 12.8px;
  font-size: 0.8rem;
  line-height: 19.2px;
  line-height: 1.2rem; }

.summary {
  font-size: 12.8px;
  font-size: 0.8rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  line-height: 19.2px;
  line-height: 1.2rem; }

a {
  color: #007994;
  text-decoration: none; }
  a:hover {
    color: #00647A; }

.uppercase {
  text-transform: uppercase; }

a:focus, button:focus,
[role="button"]:focus,
input:focus,
select:focus,
[id^="FileUpload"]:focus,
textarea:focus,
.responsive-tabs__list__item--active:focus {
  outline: 2px solid #fb0; }

.mono-link,
a.mono-link,
.mono-link a {
  color: #ffffff; }

.mono-link:hover,
a.mono-link:hover,
.mono-link a:hover {
  color: #d1d1d2; }

.dark-link {
  color: #322f33; }

.dark-link:hover {
  color: #3394a9; }

.line-link {
  border-top: 2px solid #f0f0f0;
  -webkit-transition: 0.5s;
  transition: 0.5s; }
  .line-link:hover {
    border-top: 2px solid #add0c8; }

.facebook-link {
  color: #3B5998; }
  .facebook-link:hover {
    color: #4E71BA; }

.twitter-link {
  color: #5EA9DD; }
  .twitter-link:hover {
    color: #7DBBE3; }

.underline {
  text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
  font-family: "gill-sans-nova", sans-serif;
  font-weight: 500; }

p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 20.8px;
  line-height: 1.3rem;
  margin-bottom: 1em; }

.para-flush p {
  margin-bottom: 0; }

.para-flush ul {
  list-style-type: disc;
  padding-left: 30px; }

.para-flush ol {
  list-style-type: decimal;
  padding-left: 30px; }

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

.text-right {
  text-align: right; }

@media screen and (min-width: 48em) {
  .text-right--medium {
    text-align: right; } }

.no-wrap {
  white-space: nowrap; }

.tracking--small {
  letter-spacing: 1px; }

.tracking--medium {
  letter-spacing: 3px; }

.bold {
  font-weight: bold; }

.semi-bold {
  font-weight: 600; }

.download-heading {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 8px; }
  .download-heading:before {
    content: "\e80c";
    display: block;
    float: left;
    font-family: fontello;
    margin-right: 8px; }

.formats h3 {
  display: none; }

.formats h3:first-of-type {
  display: block; }

.formats__item {
  display: block;
  padding-top: 12px;
  padding-top: 0.75rem;
  position: relative; }
  .formats__item:before {
    background: #dddddd;
    content: '';
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    top: 0;
    width: 40px; }
  .formats__item:first-of-type:before {
    display: none; }
  .formats__item a:not(.btn) {
    text-decoration: underline; }
    .formats__item a:not(.btn):hover {
      text-decoration: none; }

.related-documents__item a:not(.btn) {
  text-decoration: underline; }
  .related-documents__item a:not(.btn):hover {
    text-decoration: none; }

.line-length {
  max-width: 74ch; }

.site-footer {
  padding: 16px 0;
  padding: 1rem 0; }

.site-footer h2 {
  margin-bottom: 1em; }

.site-footer p,
.site-footer {
  color: #bbbabb; }

.site-footer p {
  max-width: 600px; }

.site-footer a {
  color: #bbbabb; }

.site-footer a:hover {
  color: #e8e8e8; }

@media screen and (max-width: 40em) {
  .footer-logo {
    width: 100%; } }

.logo-link {
  height: 60px;
  overflow: hidden;
  width: 180px; }
  .logo-link img {
    margin-left: -10px;
    margin-top: -16px;
    max-width: none;
    width: 200px; }

.masthead {
  background-color: #f6f6f6;
  position: relative; }
  @media screen and (min-width: 60em) {
    .masthead {
      background: none;
      border: none;
      padding: 0;
      position: absolute;
      top: 0;
      width: 100%;
      height: 100px; } }

.site-logo {
  margin-top: 16px;
  margin-top: 1rem;
  margin-bottom: 16px;
  margin-bottom: 1rem; }
  @media screen and (max-width: 40em) {
    .site-logo {
      width: 100%; } }
  @media screen and (min-width: 60em) {
    .site-logo {
      margin-top: 1.3rem;
      margin-bottom: 0;
      max-width: 290px; } }
  @media (min-width: 1050px) {
    .site-logo {
      max-width: none; } }

.skip {
  position: absolute;
  left: -9999px;
  height: 0;
  background: #305983;
  color: #fff;
  padding: 8px 20px; }
  .skip:focus {
    position: absolute;
    left: 10px;
    top: 10px;
    height: auto;
    z-index: 99999; }

.js .nav-primary {
  display: none; }
  @media screen and (min-width: 60em) {
    .js .nav-primary {
      display: block !important; } }

.nav-primary {
  background: #456a8f; }
  @media screen and (min-width: 60em) {
    .nav-primary {
      background: transparent;
      overflow: visible;
      margin: 0 auto;
      padding: 0;
      position: absolute;
      width: 100%;
      top: 100px;
      z-index: 10; }
      .nav-primary.has-sub-nav {
        margin-bottom: 48px; } }

@media screen and (min-width: 60em) {
  .nav-primary__list {
    background: #F1F1F1;
    float: left;
    width: 97.5%;
    margin-left: 1.25%;
    margin-right: 1.25%; } }

.nav-primary__item {
  border-bottom: 1px solid #597a9c;
  padding: 4.8px 16px 4.8px 25.6px;
  padding: 0.3rem 1rem 0.3rem 1.6rem;
  position: relative;
  min-height: 48px; }
  @media screen and (min-width: 60em) {
    .nav-primary__item {
      border-bottom: 0;
      float: left;
      margin: 0;
      overflow: visible;
      width: auto;
      min-height: 0;
      padding: 0;
      position: static; }
      .nav-primary__item.active .nav-secondary {
        display: block !important; } }
  @media screen and (min-width: 60em) {
    .nav-primary__item.active {
      background: #456a8f;
      margin-top: -3px;
      padding-top: 3px; }
      .nav-primary__item.active .nav-primary__link:after {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(68, 105, 143, 0);
        border-top-color: #44698f;
        border-width: 8px;
        margin-left: -8px;
        z-index: 99; } }
  .fixed .nav-primary__item:first-child.active {
    background-color: #d6dee6; }
  .nav-primary__item:first-child.active .nav-primary__link:after {
    display: none; }

.nav-primary__link {
  color: #ffffff;
  display: block;
  line-height: 19.2px;
  line-height: 1.2rem;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  padding: 0.5em 0;
  text-rendering: auto;
  text-transform: uppercase;
  letter-spacing: 1.5px; }
  .nav-primary__link:hover {
    color: #d9d9d9; }
  @media screen and (min-width: 60em) {
    .nav-primary__link {
      border-bottom: none;
      color: #424241;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: normal;
      text-transform: none;
      padding: 13px 6px;
      position: relative; }
      .nav-primary__link:hover, .nav-primary__link:focus {
        background-color: #e7e7e7;
        color: #456a8f; } }
  @media screen and (min-width: 71em) {
    .nav-primary__link {
      padding: 13px;
      font-size: 1.1rem; } }

@media screen and (min-width: 60em) {
  .active .nav-primary__link {
    color: #ffffff; }
    .active .nav-primary__link:hover, .active .nav-primary__link:focus {
      background: none;
      color: #eaeef3; } }

.js .nav-secondary {
  display: none; }

.nav-secondary {
  margin: 16px 0 32px 0;
  margin: 1rem 0 2rem 0; }
  @media screen and (min-width: 60em) {
    .nav-secondary {
      left: 0;
      top: 45px;
      position: absolute;
      width: 100%;
      margin: 0; } }

.nav-secondary__list {
  padding: 0; }
  .nav-secondary__list:before, .nav-secondary__list:after {
    content: "";
    display: table; }
  .nav-secondary__list:after {
    clear: both; }
  @media screen and (min-width: 60em) {
    .nav-secondary__list {
      background: #1d354f;
      border-top: 3px solid #456a8f;
      display: block;
      margin-left: auto;
      margin-right: auto;
      max-width: 1200px;
      padding: 0;
      width: 97.5%; } }
  @media screen and (min-width: 90.075em) {
    .nav-secondary__list {
      max-width: 1400px; } }

.nav-secondary__item {
  border-bottom: 1px solid #4f7296; }
  @media screen and (min-width: 60em) {
    .nav-secondary__item {
      border-bottom: 0;
      float: left;
      margin: 0;
      padding: 0; } }

.nav-secondary__link {
  color: #ffffff;
  display: block;
  line-height: 19.2px;
  line-height: 1.2rem;
  font-weight: 400;
  font-size: 17.6px;
  font-size: 1.1rem;
  padding: 9.6px 0 9.6px 0;
  padding: 0.6rem 0 0.6rem 0; }
  .nav-secondary__link:hover {
    color: #d1d1d2; }
  @media screen and (min-width: 60em) {
    .nav-secondary__link {
      color: #c1cdda;
      font-size: 1rem;
      letter-spacing: -0.5px;
      padding: 0.8rem 0.5rem 0.8rem 0.5rem; }
      .nav-secondary__link:hover {
        color: #eaeef3; } }
  @media screen and (min-width: 90.075em) {
    .nav-secondary__link {
      letter-spacing: normal;
      padding: 0.8em 0.5rem 0.8em 0.5rem; } }

.nav-secondary__item.active {
  position: relative; }
  @media screen and (min-width: 60em) {
    .nav-secondary__item.active .nav-secondary__link {
      color: white;
      font-weight: 700; } }

.expander {
  display: none; }
  @media screen and (max-width: 59.938em) {
    .expander {
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      height: 48px;
      padding: 14px;
      background: rgba(0, 0, 0, 0.1);
      line-height: 22px; } }

.nav-tertiary-wrapper {
  background: #333333;
  display: none;
  margin: 0 auto; }
  .active .nav-tertiary-wrapper {
    display: block; }
  @media screen and (min-width: 60em) {
    .nav-tertiary-wrapper {
      background: #00323f;
      display: block !important;
      margin-bottom: 1.5rem;
      margin-top: -60px;
      position: relative;
      z-index: 900; } }

.nav-tertiary {
  margin: 0 auto;
  width: 100%; }
  .nav-tertiary:before, .nav-tertiary:after {
    content: "";
    display: table; }
  .nav-tertiary:after {
    clear: both; }
  @media screen and (min-width: 60em) {
    .nav-tertiary {
      max-width: 1200px;
      width: 96%; } }
  @media screen and (min-width: 90.075em) {
    .nav-tertiary {
      max-width: 1400px;
      width: 96%; } }

.nav-tertiary__list {
  padding: 16px 16px 24px 56px;
  padding: 1rem 1rem 1.5rem 3.5rem; }
  .nav-tertiary__list:before, .nav-tertiary__list:after {
    content: "";
    display: table; }
  .nav-tertiary__list:after {
    clear: both; }
  @media screen and (min-width: 60em) {
    .nav-tertiary__list {
      margin-left: 1.25%;
      margin-right: 1.25%;
      margin-top: 0;
      margin-bottom: 0;
      padding: 0; } }

@media screen and (min-width: 60em) {
  .nav-tertiary__item {
    border-bottom: 0;
    float: left;
    margin: 0 1.6rem 0 0;
    padding: 0.8rem 0; }
    .nav-tertiary__item.active {
      background-color: #ffffff;
      border-bottom: 3px solid white;
      padding: 0.8rem; } }

.nav-tertiary__link {
  color: #ffffff;
  display: block;
  line-height: 19.2px;
  line-height: 1.2rem;
  font-weight: 400;
  font-size: 19.2px;
  font-size: 1.2rem;
  padding: 6.4px 0 6.4px 0;
  padding: 0.4rem 0 0.4rem 0; }
  @media screen and (min-width: 60em) {
    .nav-tertiary__link {
      border-bottom: none;
      font-size: 1.4rem; } }
  .nav-tertiary__link:hover {
    color: #e8e8e8; }

@media screen and (min-width: 60em) {
  .active .nav-tertiary__link {
    color: #305983;
    font-weight: 600; } }

.nav-header {
  margin: 0 auto;
  position: relative; }
  .nav-header:before, .nav-header:after {
    content: "";
    display: table; }
  .nav-header:after {
    clear: both; }
  @media screen and (min-width: 60em) {
    .nav-header {
      max-width: 1200px;
      width: 96%; } }
  @media screen and (min-width: 90.075em) {
    .nav-header {
      max-width: 1400px;
      width: 96%; } }

@media screen and (min-width: 60em) {
  .nav-header__list {
    position: absolute;
    top: -101px;
    right: 325px;
    margin-left: 1.25%;
    margin-right: 1.25%; } }

.nav-header__item {
  border-bottom: 1px solid #597a9c;
  padding: 4.8px 16px 4.8px 25.6px;
  padding: 0.3rem 1rem 0.3rem 1.6rem;
  min-height: 48px; }
  @media screen and (min-width: 60em) {
    .nav-header__item {
      border: none;
      display: block;
      float: left;
      margin-right: 1rem;
      padding: 0 1rem 0 0;
      min-height: 0;
      position: relative; }
      .nav-header__item:last-child {
        border: none;
        padding-right: 0; }
      .nav-header__item:first-child:after, .nav-header__item:nth-child(2):after {
        background: #eaeaea;
        content: '';
        width: 1px;
        height: 16px;
        position: absolute;
        top: 2px;
        right: 2px; } }

.nav-header__link {
  color: #ffffff;
  display: block;
  line-height: 19.2px;
  line-height: 1.2rem;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  padding: 0.5em 0;
  text-rendering: auto;
  text-transform: uppercase;
  letter-spacing: 1.5px; }
  .nav-header__link:hover {
    color: #d9d9d9; }
  @media screen and (min-width: 60em) {
    .nav-header__link {
      color: #424241;
      font-size: 0.9rem;
      padding: 0; }
      .nav-header__link:hover {
        color: #c6c6c6; } }

.breadcrumb-modifier .nav-breadcrumb {
  background-color: #f8f8f8; }

.nav-breadcrumb {
  display: none; }
  @media screen and (min-width: 60em) {
    .nav-breadcrumb {
      display: block;
      padding: 0.5rem 0; } }

.nav-breadcrumb__list {
  display: block; }
  .nav-breadcrumb__list:before, .nav-breadcrumb__list:after {
    content: "";
    display: table; }
  .nav-breadcrumb__list:after {
    clear: both; }

.nav-breadcrumb__item {
  color: #666666;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  line-height: normal;
  text-rendering: auto; }
  @media screen and (min-width: 60em) {
    .nav-breadcrumb__item {
      font-size: 0.9rem; } }

.nav-breadcrumb__link {
  color: #007994;
  margin: 0;
  padding: 0; }
  .nav-breadcrumb__link:hover {
    color: #4da1b4; }
  .nav-breadcrumb__link:after {
    border-bottom: none;
    content: '\e762';
    font-family: "fontello";
    font-size: 80%;
    margin-left: 8px;
    margin-left: 0.5rem;
    margin-right: 8px;
    margin-right: 0.5rem;
    padding: 0; }

.pointer-events-on {
  pointer-events: bounding-box; }

.pager {
  padding-left: 0;
  margin: 16px 0;
  margin: 1rem 0;
  list-style: none; }
  .pager:before, .pager:after {
    content: "";
    display: table; }
  .pager:after {
    clear: both; }

.pager__item {
  display: inline; }

.pager__link {
  display: inline-block; }
  .pager__link .icon {
    padding-left: 0;
    padding-right: 0; }

.pager__item--previous {
  float: left; }

.pager__item--next {
  float: right; }

.pager__count {
  text-align: center;
  margin-bottom: -28px; }

.paging-wrapper {
  float: left;
  min-height: 65px;
  position: relative;
  width: 100%; }

.numbered-paging {
  display: none;
  left: 50%;
  position: absolute;
  text-align: center;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60%; }
  .numbered-paging ul {
    padding: 0 0 0 0;
    margin: 0;
    list-style: none; }
    .numbered-paging ul li {
      display: inline-block;
      margin: 0 5px;
      padding: 0; }
      .numbered-paging ul li a {
        display: block;
        font-size: 16px;
        font-size: 1rem;
        line-height: 41.6px;
        line-height: 2.6rem; }
    .numbered-paging ul .active a {
      color: #888888;
      cursor: default;
      opacity: 0.75; }
  @media screen and (min-width: 60em) {
    .numbered-paging ul li a {
      font-size: 1.3rem; } }
  @media screen and (min-width: 48em) {
    .numbered-paging {
      display: block; } }

.pagination-btn--left {
  left: 0;
  position: absolute;
  width: 120px; }

.pagination-btn--right {
  position: absolute;
  right: 0;
  width: 120px; }

.fixed .nav-primary__item:first-child .nav-primary__link {
  padding: 0; }

.sticky-icon {
  opacity: 0; }

@media screen and (min-width: 60em) {
  .fixed .sticky-icon {
    width: 73px;
    display: block;
    height: 45px;
    margin: 0 auto;
    background-image: url("/content/images/logo-mini.svg");
    background-position: center;
    background-repeat: no-repeat; } }

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

@media screen and (min-width: 60em) {
  .no-touch .nav-primary.fixed {
    -webkit-transition: background-color 0.25s;
    transition: background-color 0.25s;
    background: #F1F1F1;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999; }
    .no-touch .nav-primary.fixed .sticky-icon {
      -webkit-transition: opacity 0.5s ease-in-out;
      transition: opacity 0.5s ease-in-out;
      opacity: 1; }
    .no-touch .nav-primary.fixed .nav-secondary {
      -webkit-transition: background-color 0.25s;
      transition: background-color 0.25s;
      background: #1d354f;
      border-top: 3px solid #456a8f; }
    .no-touch .nav-primary.fixed .nav-secondary__list {
      border: none; } }

.list {
  list-style-type: none; }
  .list:before, .list:after {
    content: "";
    display: table; }
  .list:after {
    clear: both; }

.list__item {
  padding: 3.2px 0;
  padding: 0.2rem 0; }
  .list__item:last-child {
    border-bottom: none; }

.list__link,
.list__title {
  display: block;
  text-decoration: none;
  word-wrap: break-word; }

.second-level-facet-list {
  margin-left: 30px; }

.list--lined .list__item {
  padding-top: 8px;
  padding-top: 0.5rem; }

.list--lined .list__link {
  display: block; }

.list--footer .list__item {
  line-height: 16px;
  line-height: 1rem;
  padding: 3.2px 0;
  padding: 0.2rem 0; }

.list--icons .list__item {
  line-height: 20.8px;
  line-height: 1.3rem;
  padding-left: 32px;
  padding-left: 2rem;
  position: relative; }

.list--icons .list__link {
  font-size: 16px;
  font-size: 1rem;
  display: block;
  padding: 6.4px 6.4px 6.4px 22.4px;
  padding: 0.4rem 0.4rem 0.4rem 1.4rem; }

.list--icons .list__icon {
  color: #b3b3b3;
  left: 0;
  position: absolute;
  top: 3.2px;
  top: 0.2rem;
  margin: 0; }

.list--facets .list__item {
  line-height: 16px;
  line-height: 1rem;
  padding: 0;
  position: relative; }

.list--facets .list__link {
  color: #5f5d60;
  font-size: 16px;
  font-size: 1rem;
  font-family: "gill-sans-nova", sans-serif;
  display: block;
  padding: 6.4px 6.4px 6.4px 32px;
  padding: 0.4rem 0.4rem 0.4rem 2rem; }
  .list--facets .list__link:hover {
    color: #767477; }

.list--facets .active .list__link {
  font-weight: 700; }

.list--facets .active .list__link,
.list--facets .active .list__icon,
.list--facets .active .list__count {
  color: #555554; }

.list--facets .list__count {
  color: #5f5d60;
  font-size: 12.8px;
  font-size: 0.8rem; }

.list--facets .list__icon {
  color: #b3b3b3;
  left: 0;
  position: absolute;
  top: 6.4px;
  top: 0.4rem;
  margin: 0; }

.list--append .list__item {
  border-bottom: 2px solid #fff;
  display: block;
  padding: 0;
  position: relative; }

.list--append .list__link {
  background-color: #f6f6f6;
  color: #333333;
  display: block;
  margin-bottom: 1px;
  padding: 16px 55.92px 16px 16px;
  padding: 1rem 3.495rem 1rem 1rem;
  position: relative; }
  .list--append .list__link:hover {
    background-color: #ececec;
    color: #494649; }

.list--append .list__icon {
  background-color: #e3e3e3;
  bottom: 0;
  display: inline-block;
  height: 100%;
  line-height: 56px;
  line-height: 3.5rem;
  right: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 3em; }

.list--inline .list__item {
  float: left;
  margin-right: 16px;
  margin-right: 1rem; }

.list--inline-icons .list__item {
  background-repeat: no-repeat;
  display: block;
  float: left;
  margin-bottom: 4.8px;
  margin-bottom: 0.3rem;
  margin-right: 4.8px;
  margin-right: 0.3rem;
  min-width: 36px;
  min-height: 36px; }

.list--related .list--related__item {
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 0.5em;
  padding-top: 0.5em; }
  .list--related .list--related__item:before, .list--related .list--related__item:after {
    content: "";
    display: table; }
  .list--related .list--related__item:after {
    clear: both; }

.list--related .list--related__heading {
  float: left;
  width: 70%; }

.list--related .list--related__category {
  color: #999;
  float: right;
  text-align: right;
  width: 28%; }

.list--benefits .list__item {
  line-height: 22.4px;
  line-height: 1.4rem;
  font-size: 17.6px;
  font-size: 1.1rem;
  padding: 0 0 16px 64px;
  padding: 0 0 1rem 4rem;
  position: relative;
  min-height: 60px; }

.list--benefits .list__icon {
  left: 0;
  position: absolute;
  top: 3.2px;
  top: 0.2rem;
  margin-left: 6px;
  width: 32px; }

.list__item--nav {
  border-bottom: 1px solid #e8e8e8; }
  @media screen and (max-width: 48em) {
    .list__item--nav:last-child {
      border-bottom: 1px solid #e8e8e8; } }
  .list__item--nav.active {
    background-color: #e8e8e8; }

.list__link--nav {
  display: block;
  padding: 8px 48px 8px 0;
  padding: 0.5rem 3rem 0.5rem 0;
  position: relative; }
  .list__link--nav .icon {
    position: absolute;
    right: 0;
    top: 20px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%); }
    @media screen and (min-width: 48em) {
      .list__link--nav .icon {
        top: 50%; } }

.list--nav-last .list__item--nav:last-child {
  border-bottom: 0; }

.sitemap--list a {
  text-decoration: underline; }
  .sitemap--list a:hover {
    text-decoration: none; }

.sitemap--list li {
  margin: 24px 0;
  margin: 1.5rem 0; }
  .sitemap--list li a {
    font-size: 19.2px;
    font-size: 1.2rem;
    line-height: 22.4px;
    line-height: 1.4rem; }

.sitemap--list .sitemap--list li {
  list-style: disc inside;
  margin: 12px 0;
  margin: 0.75rem 0; }
  .sitemap--list .sitemap--list li a {
    font-size: 17.6px;
    font-size: 1.1rem;
    line-height: 22.4px;
    line-height: 1.4rem; }

.sitemap--list .sitemap--list .sitemap--list li {
  list-style: circle  inside !important;
  margin: 12px 0;
  margin: 0.75rem 0; }
  .sitemap--list .sitemap--list .sitemap--list li a {
    font-size: 17.6px;
    font-size: 1.1rem;
    line-height: 22.4px;
    line-height: 1.4rem; }

ul.list--features li {
  list-style: disc inside none;
  display: list-item; }

.event-performance {
  display: block;
  padding-top: 28px;
  padding-top: 1.75rem;
  position: relative; }
  .event-performance:before {
    background: #dddddd;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    top: 12px;
    top: 0.75rem;
    width: 70px; }

.event-performance__cost {
  display: block;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  position: relative; }
  .event-performance__cost span {
    display: block;
    font-weight: bold; }

.event-performance__description {
  display: block;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  position: relative; }

@font-face {
  font-family: 'fontello';
  src: url("../fonts/font/fontello.eot?17194029");
  src: url("../fonts/font/fontello.eot?17194029#iefix") format("embedded-opentype"), url("../fonts/font/fontello.woff2?17194029") format("woff2"), url("../fonts/font/fontello.woff?17194029") format("woff"), url("../fonts/font/fontello.ttf?17194029") format("truetype"), url("../fonts/font/fontello.svg?17194029#fontello") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'fontello';
    src: url('../font/fontello.svg?9323064#fontello') format('svg');
  }
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }

.icon-image:before {
  content: '\e800'; }

/* '' */
.icon-clock:before {
  content: '\e801'; }

/* '' */
.icon-search:before {
  content: '\e802'; }

/* '' */
.icon-check:before {
  content: '\e803'; }

/* '' */
.icon-menu:before {
  content: '\e804'; }

/* '' */
.icon-layout:before {
  content: '\e805'; }

/* '' */
.icon-mail:before {
  content: '\e806'; }

/* '' */
.icon-feather:before {
  content: '\e807'; }

/* '' */
.icon-cancel:before {
  content: '\e808'; }

/* '' */
.icon-tick:before {
  content: '\e809'; }

/* '' */
.icon-list:before {
  content: '\e80a'; }

/* '' */
.icon-tag:before {
  content: '\e80b'; }

/* '' */
.icon-card:before {
  content: '\e80c'; }

/* '' */
.icon-location:before {
  content: '\e80d'; }

/* '' */
.icon-info:before {
  content: '\e80e'; }

/* '' */
.icon-phone:before {
  content: '\e80f'; }

/* '' */
.icon-calendar:before {
  content: '\e810'; }

/* '' */
.icon-disabled-toilets:before {
  content: '\e811'; }

/* '' */
.icon-plus:before {
  content: '\e812'; }

/* '' */
.icon-expand:before {
  content: '\e813'; }

/* '' */
.icon-minus:before {
  content: '\e814'; }

/* '' */
.icon-left-open-1:before {
  content: '\e815'; }

/* '' */
.icon-right-open-1:before {
  content: '\e816'; }

/* '' */
.icon-download:before {
  content: '\e817'; }

/* '' */
.icon-user:before {
  content: '\e818'; }

/* '' */
.icon-wrench:before {
  content: '\e819'; }

/* '' */
.icon-instagram:before {
  content: '\e81a'; }

/* '' */
.icon-facebook-1:before {
  content: '\e81b'; }

/* '' */
.icon-map:before {
  content: '\e81c'; }

/* '' */
.icon-left-open:before {
  content: '\e81d'; }

/* '' */
.icon-right-open:before {
  content: '\e81e'; }

/* '' */
.icon-down:before {
  content: '\e81f'; }

/* '' */
.icon-right:before {
  content: '\e820'; }

/* '' */
.icon-toilets:before {
  content: '\e821'; }

/* '' */
.icon-display:before {
  content: '\e822'; }

/* '' */
.icon-cafe:before {
  content: '\e823'; }

/* '' */
.icon-angle-right-1:before {
  content: '\e824'; }

/* '' */
.icon-angle-left:before {
  content: '\e825'; }

/* '' */
.icon-dogs:before {
  content: '\e826'; }

/* '' */
.icon-shop:before {
  content: '\e827'; }

/* '' */
.icon-wheelchair-access:before {
  content: '\e828'; }

/* '' */
.icon-castle:before {
  content: '\e83d'; }

/* '' */
.icon-external:before {
  content: '\f08e'; }

/* '' */
.icon-check-empty:before {
  content: '\f096'; }

/* '' */
.icon-twitter-1:before {
  content: '\f099'; }

/* '' */
.icon-gplus:before {
  content: '\f0d5'; }

/* '' */
.icon-angle-double-left:before {
  content: '\f100'; }

/* '' */
.icon-angle-double-right:before {
  content: '\f101'; }

/* '' */
.icon-angle-right:before {
  content: '\f105'; }

/* '' */
.icon-ticket:before {
  content: '\f145'; }

/* '' */
.icon-youtube:before {
  content: '\f166'; }

/* '' */
.icon-youtube-1:before {
  content: '\f167'; }

/* '' */
.icon-youtube-play:before {
  content: '\f16a'; }

/* '' */
.icon-instagram-1:before {
  content: '\f16d'; }

/* '' */
.icon-file-pdf:before {
  content: '\f1c1'; }

/* '' */
.icon-file-word:before {
  content: '\f1c2'; }

/* '' */
.icon-file-excel:before {
  content: '\f1c3'; }

/* '' */
.icon-file-powerpoint:before {
  content: '\f1c4'; }

/* '' */
.icon-pinterest:before {
  content: '\f231'; }

/* '' */
.icon-twitter:before {
  content: '\f30a'; }

/* '' */
.icon-facebook:before {
  content: '\f30d'; }

/* '' */
.icon-google:before {
  content: '\f310'; }

/* '' */
.icon-linkedin:before {
  content: '\f319'; }

/* '' */
.intro {
  position: relative;
  overflow: hidden; }

@media screen and (min-width: 60em) {
  .has-sub-nav .intro {
    margin-top: -48px; } }

.intro__image {
  background-color: #383837;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 250px;
  position: relative; }
  @media screen and (min-width: 48em) {
    .intro__image {
      min-height: 400px; } }
  @media screen and (min-width: 60em) {
    .intro__image {
      min-height: 550px; } }

.intro__header {
  z-index: 1; }
  .intro__header:before, .intro__header:after {
    content: "";
    display: table; }
  .intro__header:after {
    clear: both; }
  @media screen and (max-width: 47.938em) {
    .intro__header {
      background: #424241; } }
  @media screen and (min-width: 48em) {
    .intro__header {
      background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(56%, rgba(0, 0, 0, 0.8)));
      background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 56%);
      background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 56%);
      bottom: 0;
      left: 50%;
      margin-left: -50%;
      padding-top: 1.5rem;
      position: absolute;
      width: 100%; } }

.ie9 .intro__header {
  background: url("/content/images/bg-shadow.png");
  background-repeat: repeat-x;
  background-position: top left; }

.intro__panel {
  padding: 22.4px 0;
  padding: 1.4rem 0;
  position: relative; }
  @media screen and (min-width: 48em) {
    .intro__panel {
      padding: 0 0 2rem 0; } }
  @media screen and (min-width: 60em) {
    .intro__panel {
      padding: 0 0 6rem 0; } }

@media screen and (min-width: 48em) {
  .intro__panel--shallow {
    padding: 0 0 2rem 0; } }

@media screen and (min-width: 60em) {
  .intro__panel--shallow {
    padding: 0 0 3rem 0; } }

.intro__explore {
  z-index: 1; }
  .intro__explore:before, .intro__explore:after {
    content: "";
    display: table; }
  .intro__explore:after {
    clear: both; }
  @media screen and (min-width: 60em) {
    .intro__explore {
      bottom: 0;
      left: 50%;
      margin-left: -50%;
      position: absolute;
      width: 100%;
      top: 50px; } }

.intro--map {
  min-height: 550px;
  height: 80vh;
  position: relative;
  width: 90%;
  margin: 16px auto 32px auto;
  margin: 1rem auto 2rem auto; }
  @media screen and (min-width: 60em) {
    .intro--map {
      min-height: 800px;
      height: 70vh;
      margin: 0;
      width: 50%;
      float: right;
      z-index: 1; } }

.intro--map-results {
  height: 270px;
  position: relative; }
  @media screen and (min-width: 48em) {
    .intro--map-results {
      height: 400px; } }

.intro--explore-height {
  min-height: 750px; }

.intro__summary {
  font-size: 19.2px;
  font-size: 1.2rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  color: #ffffff;
  margin-bottom: 12px; }

.intro__tel {
  color: #ffffff;
  text-decoration: underline; }
  .intro__tel:hover {
    color: #eaeaea; }

.intro__logo {
  background-color: rgba(50, 50, 50, 0.8);
  padding: 24px; }
  @media screen and (min-width: 48em) {
    .intro__logo {
      position: absolute;
      right: 24px;
      width: 200px;
      background-color: transparent;
      bottom: 24px;
      padding: 0; } }
  @media screen and (min-width: 60em) {
    .intro__logo {
      display: none; } }

.intro__days {
  display: inline-block;
  color: white;
  margin-left: 8px;
  margin-left: 0.5rem; }

.editor-content {
  /*	a[href^="http"]:after{
		color: $blue;
		content: '\F08E';
		display: inline;
		font-family: "fontello";
		font-size: 60%;
		margin-left: 0.4em;
		margin-right: 0.4em; 
	} */ }
  @media screen and (min-width: 60em) {
    .editor-content {
      padding-right: 1.5rem; } }
  .editor-content h2, .editor-content h3, .editor-content h4, .editor-content h5 {
    color: #494649;
    font-family: "gill-sans-nova", sans-serif;
    margin-bottom: 24px;
    margin-bottom: 1.5rem; }
  .editor-content h3, .editor-content h4, .editor-content h5 {
    font-family: "gill-sans-nova", sans-serif;
    font-weight: 600; }
  .editor-content h2 {
    font-size: 28.8px;
    font-size: 1.8rem;
    line-height: 38.4px;
    line-height: 2.4rem;
    margin-bottom: 16px;
    margin-bottom: 1rem;
    margin-top: 24px;
    margin-top: 1.5rem; }
    @media screen and (min-width: 48em) {
      .editor-content h2 {
        font-size: 2rem;
        line-height: 1.25; } }
    @media screen and (min-width: 60em) {
      .editor-content h2 {
        font-size: 2.25rem;
        line-height: 1.25; } }
  .editor-content h2:first-of-type {
    margin-top: 0; }
  .editor-content h3 {
    font-size: 19.2px;
    font-size: 1.2rem;
    line-height: 22.4px;
    line-height: 1.4rem;
    margin-top: 24px;
    margin-top: 1.5rem;
    margin-bottom: 12.8px;
    margin-bottom: 0.8rem; }
  .editor-content h4 {
    font-size: 17.6px;
    font-size: 1.1rem;
    line-height: 22.4px;
    line-height: 1.4rem;
    margin-bottom: 4.8px;
    margin-bottom: 0.3rem; }
  .editor-content h5 {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 19.2px;
    line-height: 1.2rem;
    margin-bottom: 4.8px;
    margin-bottom: 0.3rem; }
  .editor-content p, .editor-content ul, .editor-content ol, .editor-content div {
    font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
    font-weight: 300;
    color: #666666;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 16px;
    margin-bottom: 1rem; }
  .editor-content ul ul {
    margin-bottom: 0;
    margin-top: 4.8px;
    margin-top: 0.3rem; }
  .editor-content ul ul li {
    list-style-type: circle; }
  .editor-content small {
    color: #666666;
    display: block;
    font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: 14px;
    margin-bottom: 0.875rem; }
  .editor-content ul li {
    list-style-type: disc; }
  .editor-content ol li {
    list-style-type: decimal; }
  .editor-content ul, .editor-content ol {
    margin-left: 19.2px;
    margin-left: 1.2rem;
    margin-right: 24px;
    margin-right: 1.5rem;
    margin-bottom: 24px;
    margin-bottom: 1.5rem; }
  .editor-content li {
    margin-bottom: 8px;
    margin-bottom: 0.5rem; }
  .editor-content a {
    text-decoration: underline; }
    .editor-content a:hover {
      -webkit-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out;
      text-decoration: none; }
  .editor-content p span {
    color: inherit !important; }
  .editor-content a[href*="historicenvironment.scot"]:after {
    display: none; }
  .editor-content .campaign__wrapper a[href^="http"]:after {
    color: #fff; }
  .editor-content .pull-center {
    float: none; }
    @media screen and (min-width: 48em) {
      .editor-content .pull-center {
        text-align: center; } }
  .editor-content .pull-left {
    float: none; }
    @media screen and (min-width: 48em) {
      .editor-content .pull-left {
        float: left;
        margin: 0 1.5rem 1.5rem 0;
        width: 45%; } }
  .editor-content .pull-right {
    float: none; }
    @media screen and (min-width: 48em) {
      .editor-content .pull-right {
        float: right;
        margin: 0 0 1.5rem 1.5rem;
        width: 45%; } }
  .editor-content figcaption {
    margin: 4.8px 0 32px 0;
    margin: 0.3rem 0 2rem 0;
    min-height: 0; }
  .editor-content .image {
    margin: 32px 0 16px 0;
    margin: 2rem 0 1rem 0;
    position: relative; }
  .editor-content .image figcaption {
    color: #666666;
    padding: 8px 0 12.8px 0;
    padding: 0.5rem 0 0.8rem 0; }
  .editor-content .image figcaption p {
    font-size: 13.6px;
    font-size: 0.85rem;
    margin: 0; }
  .editor-content a.btn {
    text-decoration: none; }
  @media screen and (max-width: 40em) {
    .editor-content .table-container {
      overflow-x: scroll;
      width: 100%; } }

.editor-content--smaller p, .editor-content--smaller ul, .editor-content--smaller ol, .editor-content--smaller div {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  color: inherit;
  font-weight: 300;
  color: #666666;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif; }

.editor-content--smaller h2 {
  font-size: 28.8px;
  font-size: 1.8rem;
  line-height: 32px;
  line-height: 2rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  margin-top: 32px;
  margin-top: 2rem; }

.editor-content--dark h2, .editor-content--dark h3, .editor-content--dark h4, .editor-content--dark h5 {
  color: #ececec; }

.editor-content--dark p, .editor-content--dark ul, .editor-content--dark ol {
  color: #ececec; }

.editor-content--dark small {
  color: #ececec; }

.editor-content--dark a {
  color: #92c0b6; }
  .editor-content--dark a:hover {
    color: #fafafa; }

.editor-content--dark a[href^="http"]:after {
  color: #007994; }

.editor-content--dark .image figcaption {
  color: #ececec; }

.exhibition-content .editor-content--dark a {
  color: #F9BE00; }
  .exhibition-content .editor-content--dark a:hover {
    text-decoration: none;
    color: rgba(249, 190, 0, 0.75); }

.exhibition-alt-content .editor-content a:not(.btn) {
  color: #4e1e66;
  text-decoration: underline; }
  .exhibition-alt-content .editor-content a:not(.btn):hover {
    text-decoration: none;
    color: #4e1e66; }
  .exhibition-alt-content .editor-content a:not(.btn):after {
    color: #4e1e66 !important; }

.caption-overlay {
  margin-top: 4.8px;
  margin-top: 0.3rem; }
  @media screen and (min-width: 40em) {
    .caption-overlay {
      background-color: rgba(0, 0, 0, 0.7);
      color: #ffffff;
      margin: 0;
      padding: 0.6rem 1.4rem;
      position: absolute;
      bottom: 0;
      right: 0; } }

blockquote {
  color: #494649;
  border-top: 3px solid #cbd6e0;
  border-bottom: 1px solid #cbd6e0;
  display: block;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-size: 20.8px;
  font-size: 1.3rem;
  line-height: 28.8px;
  line-height: 1.8rem;
  margin: 40px 0 40px 0;
  margin: 2.5rem 0 2.5rem 0;
  padding: 24px 0 24px 48px;
  padding: 1.5rem 0 1.5rem 3rem;
  position: relative; }

blockquote:before {
  border-top: 3px solid #305983;
  display: block;
  color: #305983;
  content: "\201C";
  font-family: georgia, serif;
  font-size: 64px;
  font-size: 4rem;
  line-height: normal;
  left: 0px;
  padding-top: 16px;
  padding-top: 1rem;
  position: absolute;
  top: -3px; }

blockquote cite {
  color: #494649;
  font-size: 15.2px;
  font-size: 0.95rem;
  display: block;
  margin-top: 15px; }

.rich-link {
  border-top: 2px solid #cbd6e0;
  border-bottom: 2px solid #cbd6e0;
  padding: 24px 0;
  padding: 1.5rem 0;
  margin: 32px 0;
  margin: 2rem 0; }
  .rich-link:before, .rich-link:after {
    content: "";
    display: table; }
  .rich-link:after {
    clear: both; }
  @media screen and (min-width: 48em) {
    .rich-link {
      float: right;
      margin-left: 1.5rem;
      width: 30%; } }
  @media screen and (min-width: 90.075em) {
    .rich-link {
      float: left;
      width: 26%;
      margin-left: -15rem; } }

@media screen and (max-width: 47.938em) {
  .rich-link__image {
    float: left;
    width: 38%;
    margin-right: 2%; } }

@media screen and (max-width: 47.938em) {
  .rich-link__container {
    float: left;
    width: 60%; } }

h3.rich-link__heading {
  font-size: 17.6px;
  font-size: 1.1rem;
  margin-top: 0; }
  @media screen and (min-width: 48em) {
    h3.rich-link__heading {
      margin-top: 0.9rem; } }

p.rich-link__intro {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 3.2px;
  margin-bottom: 0.2rem; }

a.rich-link__link {
  font-size: 14.4px;
  font-size: 0.9rem;
  margin-bottom: 0; }

@media screen and (min-width: 60em) {
  .pull-right-large--location {
    float: right;
    width: 23%;
    margin: 0;
    position: relative;
    right: 1.25%;
    top: 0;
    z-index: 900; } }

@media screen and (min-width: 65em) {
  .pull-right-large--location {
    margin-bottom: -330px;
    top: -330px; } }

@media screen and (min-width: 60em) {
  .pull-right-large--top {
    float: none;
    width: 23%;
    margin: 0;
    position: absolute;
    right: 1.25%;
    top: 0; } }

.editor-gallery {
  position: relative; }

.editor-gallery .gallery-expand {
  background: #1B181C;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  padding: 9.6px 12.8px 9.6px 12.8px;
  padding: 0.6rem 0.8rem 0.6rem 0.8rem;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s; }
  .editor-gallery .gallery-expand:hover {
    color: #ececec; }

.gallery-expand--intro {
  display: inline-block;
  top: -50px;
  left: 1.25%;
  right: auto;
  margin-bottom: 16px;
  margin-bottom: 1rem; }
  @media screen and (min-width: 48em) {
    .gallery-expand--intro {
      top: auto;
      bottom: 1rem;
      position: absolute;
      margin: 0; } }

@media screen and (min-width: 60em) {
  .push-min {
    min-height: 38rem; } }

.standfirst > p:first-of-type {
  color: #686867;
  font-size: 17.6px;
  font-size: 1.1rem;
  line-height: 25.6px;
  line-height: 1.6rem;
  border-bottom: 1px solid #ececec;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  position: relative; }
  @media screen and (min-width: 48em) {
    .standfirst > p:first-of-type {
      font-size: 1.2rem;
      line-height: 1.6rem; } }
  .standfirst > p:first-of-type:after {
    background-color: #ffffff;
    background-image: url("/content/images/divider.svg");
    background-repeat: no-repeat;
    background-position: center;
    bottom: -14px;
    content: '';
    left: 0;
    position: absolute;
    right: 0;
    width: 24px;
    height: 26px;
    margin: 0 auto; }

.editor-content--wall ul li {
  list-style-type: disc; }

.editor-content--wall ol li {
  list-style-type: decimal; }

.editor-content--wall ul, .editor-content--wall ol {
  margin-left: 19.2px;
  margin-left: 1.2rem;
  margin-right: 24px;
  margin-right: 1.5rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem; }

.editor-content--wall li {
  margin-bottom: 8px;
  margin-bottom: 0.5rem; }

.editor-content--wall > p:first-of-type {
  color: #e4efed;
  font-size: 19.2px;
  font-size: 1.2rem;
  line-height: 25.6px;
  line-height: 1.6rem;
  border-bottom: 1px solid #4b4b4b;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem; }
  @media screen and (min-width: 48em) {
    .editor-content--wall > p:first-of-type {
      font-size: 1.6rem;
      line-height: 2rem; } }

.editor-content--wall p, .editor-content--wall ul li {
  color: #e4efed;
  font-size: 19.2px;
  font-size: 1.2rem;
  line-height: 24px;
  line-height: 1.5rem; }

.editor-content--wall a {
  text-decoration: underline;
  color: #ffffff; }
  .editor-content--wall a:hover {
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    text-decoration: none;
    color: #ffffff; }

.event-upsell {
  margin: 0 0 32px 0;
  margin: 0 0 2rem 0; }
  .event-upsell:before, .event-upsell:after {
    content: "";
    display: table; }
  .event-upsell:after {
    clear: both; }
  @media screen and (min-width: 90.075em) {
    .event-upsell {
      position: absolute;
      left: 1.25%;
      top: 24px;
      width: 14.16667%; } }

.logo-grid--1 {
  margin-bottom: 16px;
  margin-bottom: 1rem; }
  .logo-grid--1:before, .logo-grid--1:after {
    content: "";
    display: table; }
  .logo-grid--1:after {
    clear: both; }
  .logo-grid--1 img {
    max-width: 100%; }

.logo-grid--2 {
  margin-bottom: 16px;
  margin-bottom: 1rem; }
  .logo-grid--2:before, .logo-grid--2:after {
    content: "";
    display: table; }
  .logo-grid--2:after {
    clear: both; }
  .logo-grid--2 img {
    float: left;
    margin-bottom: 32px;
    margin-bottom: 2rem;
    max-width: 100%; }
  @media (min-width: 30em) {
    .logo-grid--2 img {
      margin-bottom: 0;
      margin-left: 2rem;
      max-width: 45%; }
      .logo-grid--2 img:first-child {
        margin-left: 0; } }

.logo-grid--3 {
  margin-bottom: 16px;
  margin-bottom: 1rem; }
  .logo-grid--3:before, .logo-grid--3:after {
    content: "";
    display: table; }
  .logo-grid--3:after {
    clear: both; }
  .logo-grid--3 img {
    float: left;
    margin-bottom: 32px;
    margin-bottom: 2rem;
    max-width: 100%; }
  @media screen and (min-width: 48em) {
    .logo-grid--3 img {
      margin-bottom: 0;
      margin-left: 2rem;
      max-width: 28%; }
      .logo-grid--3 img:first-child {
        margin-left: 0; } }

.logo-grid--4:before, .logo-grid--4:after {
  content: "";
  display: table; }

.logo-grid--4:after {
  clear: both; }

.logo-grid--4 img {
  float: left;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  max-width: 100%; }

@media (min-width: 30em) {
  .logo-grid--4 img {
    margin-bottom: 1rem;
    margin-left: 2rem;
    max-width: 45%; }
    .logo-grid--4 img:first-child, .logo-grid--4 img:nth-child(3) {
      margin-left: 0; } }

@media screen and (min-width: 60em) {
  .logo-grid--4 img {
    margin-bottom: 0;
    margin-left: 2rem;
    max-width: 20%; }
    .logo-grid--4 img:first-child {
      margin-left: 0; }
    .logo-grid--4 img:nth-child(3) {
      margin-left: 2rem; } }

/* .publication {

	a[href^="http"]:after{
		display: none;
	}

} */
.logo-row {
  display: block;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  margin-top: 16px;
  margin-top: 1rem; }

.logo-row__logo {
  border-top: 1px solid #eaeaea;
  display: inline-block;
  max-width: 90px;
  max-height: 110px;
  padding: 16px  6.4px 24px;
  padding: 1rem  0.4rem 1.5rem;
  margin: 0 6.4px;
  margin: 0 0.4rem;
  vertical-align: top; }
  @media (min-width: 40em) {
    .logo-row__logo {
      max-width: 130px;
      max-height: 120px;
      padding: 1rem 1rem 1.5rem;
      opacity: 0.9; } }
  .logo-row__logo:hover {
    border-top: 1px solid #77b0a4;
    opacity: 1; }
  .logo-row__logo:after {
    display: none !important; }

.fully-booked__indicator {
  background: white;
  color: #a61f29;
  font-size: 14.4px;
  font-size: 0.9rem;
  left: 0;
  padding: 4px 10px;
  position: absolute;
  top: 0; }

.fully-booked__hero-container {
  position: relative; }

.fully-booked__indicator--hero {
  display: inline-block;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-size: 17.6px;
  font-size: 1.1rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  padding: 8px 10px 8px;
  position: relative;
  top: auto; }

.tickets-available-soon__indicator {
  background: white;
  color: #333333;
  font-size: 12.8px;
  font-size: 0.8rem;
  left: 0;
  line-height: 1.2;
  padding: 4px 10px;
  position: absolute;
  top: 0; }

.tickets-available-soon__hero-container {
  position: relative; }

.tickets-available-soon__indicator--hero {
  background: transparent;
  display: inline-block;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  margin-top: 16px;
  margin-top: 1rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  padding: 0;
  position: relative;
  top: auto; }

@media screen and (min-width: 48em) {
  .form .error,
  .form .indent {
    display: block;
    margin-left: 34.5%; } }

.form legend {
  display: block;
  font-weight: bold;
  margin: 16px 0;
  margin: 1rem 0;
  padding: 8px 12.8px;
  padding: 0.5rem 0.8rem; }

.form ul {
  margin: 0;
  list-style: none; }

.form li {
  display: block;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem; }
  .form li:before, .form li:after {
    content: "";
    display: table; }
  .form li:after {
    clear: both; }
  @media screen and (min-width: 48em) {
    .form li {
      margin-bottom: 1rem;
      padding-bottom: 1rem; } }

.form li:last-child {
  border-bottom: none; }

.form label, .form #site-label, .form .label {
  cursor: pointer;
  display: block;
  font-size: 19.2px;
  font-size: 1.2rem;
  font-family: "gill-sans-nova", sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
  margin-bottom: 0.5rem; }

.form .sublabel {
  display: block;
  font-style: italic; }

.form #site-label {
  padding: 0; }

.form .label-inline {
  display: inline;
  margin-right: 0.5em; }

.form input[type="text"],
.form input[type="password"],
.form input[type="email"],
.form input[type="date"],
.form input[type="integer"],
.form input[type="tel"],
.form input[type="number"],
.form select,
.form textarea {
  border: 1px solid #d1d1d1;
  color: #666666;
  font-size: 16px;
  font-size: 1rem;
  font-family: "gill-sans-nova", sans-serif;
  padding: 8px 12.8px;
  padding: 0.5rem 0.8rem;
  width: 100%;
  -webkit-border-radius: 4px;
  border-radius: 4px; }
  @media screen and (min-width: 48em) {
    .form input[type="text"],
    .form input[type="password"],
    .form input[type="email"],
    .form input[type="date"],
    .form input[type="integer"],
    .form input[type="tel"],
    .form input[type="number"],
    .form select,
    .form textarea {
      display: inline-block; } }

.form .select--inline {
  width: auto; }

.form input[type="number"]:focus {
  background: #F1F1F1; }

.form input[type="text"],
.form input[type="email"],
.form input[type="password"],
.form input[type="date"],
.form input[type="integer"],
.form input[type="tel"],
.form textarea {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s; }

.form input[type="text"]:focus,
.form input[type="email"]:focus,
.form input[type="password"]:focus,
.form input[type="integer"]:focus,
.form input[type="tel"]:focus,
.form textarea:focus {
  background: #F1F1F1; }

.form .form-group--short input[type="text"],
.form .form-group--short input[type="email"],
.form .form-group--short input[type="password"],
.form .form-group--short input[type="integer"],
.form .form-group--short input[type="tel"],
.form .form-group--short textarea {
  max-width: 200px; }

.form input[type=checkbox] {
  width: auto; }

.form .radio, .form .checkbox {
  display: block;
  min-height: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px; }

.form .radio label, .form .checkbox label {
  border: 0;
  display: inline;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 400;
  font-size: 17.6px;
  font-size: 1.1rem;
  cursor: pointer; }

.form .radio input[type=radio],
.form .radio-inline input[type=radio],
.form .checkbox input[type=checkbox],
.form .checkbox-inline input[type=checkbox] {
  float: left;
  margin-left: -20px;
  width: auto; }

.form input[type=radio], .form input[type=checkbox] {
  margin: 4px 0 0;
  line-height: normal;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0; }

.form input[type="text"].input--small {
  width: 60%; }
  @media screen and (min-width: 48em) {
    .form input[type="text"].input--small {
      width: 30%; } }

.form .input-spacer {
  margin-bottom: 16px;
  margin-bottom: 1rem; }
  @media screen and (min-width: 48em) {
    .form .input-spacer {
      margin-bottom: 0; } }

.form select {
  height: 41.6px; }
  .form select:focus {
    background: #F1F1F1; }

.editor-content .form .form__header {
  font-size: 22.4px;
  font-size: 1.4rem;
  line-height: 25.6px;
  line-height: 1.6rem;
  font-weight: 300; }
  @media screen and (min-width: 48em) {
    .editor-content .form .form__header {
      font-size: 1.5rem;
      line-height: 1.8rem; } }
  @media screen and (min-width: 60em) {
    .editor-content .form .form__header {
      font-size: 1.8rem;
      line-height: 2.4rem; } }

.form--signup li {
  margin-bottom: 0; }
  @media screen and (min-width: 48em) {
    .form--signup li {
      margin-bottom: 0; } }
  .form--signup li:last-of-type {
    margin-top: 16px;
    margin-top: 1rem; }

.checkbox-indent {
  font-weight: bold;
  display: inline-block;
  margin-right: 1em; }

.form--signup {
  position: relative; }

input[type=email].signup__field {
  padding: 12.8px 120px 12.8px 12.8px;
  padding: 0.8rem 7.5rem 0.8rem 0.8rem; }

.signup__input {
  position: absolute;
  top: 6px;
  right: 6px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 39px;
  height: 39px; }

.validation-success {
  color: #6b9316;
  font-weight: 600;
  font-size: 19.2px;
  font-size: 1.2rem;
  font-family: "gill-sans-nova", sans-serif; }

.validation-error,
.parsley-errors-list {
  color: #EB0000;
  font-weight: 600;
  font-size: 19.2px;
  font-size: 1.2rem;
  font-family: "gill-sans-nova", sans-serif; }

.required-asterisk {
  color: #EB0000; }

/* @media (-webkit-min-device-pixel-ratio: 0) {
  select,
  select[size="0"],
  select[size="1"] {
    -webkit-appearance: none;
    background-image: url(data:image/png;base64,R0lGODlhDQAEAIAAAAAAAP8A/yH5BAEHAAEALAAAAAANAAQAAAILhA+hG5jMDpxvhgIAOw==);
    background-repeat: no-repeat;
    background-position: center right ;
    padding-right: 20px;
  }
} */
.romeStartDate-wrapper {
  position: relative;
  display: inline-block;
  width: 100%; }
  .romeStartDate-wrapper:before {
    pointer-events: none;
    position: absolute;
    top: 12px;
    right: 5px;
    color: black; }

.form.form--dark {
  color: #ffffff; }
  .form.form--dark label, .form.form--dark legend, .form.form--dark .label {
    color: #ffffff; }
  .form.form--dark a {
    color: #F9BE00; }
    .form.form--dark a:focus {
      outline: 2px solid #F9BE00; }
  .form.form--dark select {
    -webkit-border-radius: 0;
            border-radius: 0;
    background-color: #212121;
    color: #ffffff; }
    .form.form--dark select:focus {
      outline: 3px solid #F9BE00;
      background-color: #212121; }
  .form.form--dark.form--competition .required-asterisk, .form.form--dark.form--competition h2, .form.form--dark.form--competition legend {
    color: white; }
  .form.form--dark.form--competition label, .form.form--dark.form--competition .label, .form.form--dark.form--competition #site-label {
    font-size: 17.6px;
    font-size: 1.1rem;
    line-height: 22.4px;
    line-height: 1.4rem;
    font-weight: 300; }
  .form.form--dark.form--competition legend {
    display: block;
    padding: 0;
    margin: 0 0 8px 0;
    margin: 0 0 0.5rem 0;
    font-size: 19.2px;
    font-size: 1.2rem;
    font-family: "gill-sans-nova", sans-serif;
    font-weight: 300; }
  .form.form--dark.form--competition input[type="text"],
  .form.form--dark.form--competition input[type="email"],
  .form.form--dark.form--competition input[type="password"],
  .form.form--dark.form--competition input[type="integer"],
  .form.form--dark.form--competition input[type="tel"],
  .form.form--dark.form--competition textarea {
    background: #454346;
    border: 1px solid #cccccc;
    -webkit-border-radius: 0;
            border-radius: 0;
    color: white; }
  .form.form--dark.form--competition input[type="text"]:focus,
  .form.form--dark.form--competition input[type="email"]:focus,
  .form.form--dark.form--competition input[type="password"]:focus,
  .form.form--dark.form--competition input[type="integer"]:focus,
  .form.form--dark.form--competition input[type="tel"]:focus,
  .form.form--dark.form--competition textarea:focus {
    outline: 2px solid #F9BE00; }
  .form.form--dark.form--competition .form-group {
    margin-bottom: 24px;
    margin-bottom: 1.5rem; }
  .form.form--dark.form--competition hr {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 2px solid #777777;
    padding-top: 16px;
    padding-top: 1rem;
    margin-bottom: 24px;
    margin-bottom: 1.5rem; }
  .form.form--dark.form--competition hr + .form-group {
    margin-top: 40px;
    margin-top: 2.5rem; }
  .form.form--dark.form--competition .radio {
    padding-left: 0;
    padding-bottom: 8px;
    padding-bottom: 0.5rem;
    position: relative; }
    .form.form--dark.form--competition .radio input {
      position: absolute;
      z-index: 1;
      top: -2px;
      left: 0;
      width: 25px;
      height: 25px;
      cursor: pointer;
      margin: 0; }
      .form.form--dark.form--competition .radio input:focus {
        outline: none; }
    .form.form--dark.form--competition .radio label {
      padding-left: 40px;
      position: relative;
      display: block;
      margin: 0;
      z-index: 2; }
      .form.form--dark.form--competition .radio label:before {
        content: "";
        display: inline-block;
        position: absolute;
        left: 0;
        top: 0px;
        width: 24px;
        width: 1.5rem;
        height: 24px;
        height: 1.5rem;
        background-color: white;
        -webkit-border-radius: 15px;
                border-radius: 15px; }
    .form.form--dark.form--competition .radio input:focus + label {
      outline: 2px solid #F9BE00; }
    .form.form--dark.form--competition .radio input:checked + label:after {
      content: "";
      display: inline-block;
      position: absolute;
      left: 4px;
      top: 4px;
      width: 16px;
      width: 1rem;
      height: 16px;
      height: 1rem;
      background-color: #454346;
      -webkit-border-radius: 15px;
              border-radius: 15px; }
  .form.form--dark.form--competition .checkbox {
    padding-left: 0;
    padding-bottom: 8px;
    padding-bottom: 0.5rem;
    position: relative; }
    .form.form--dark.form--competition .checkbox input {
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      width: 25px;
      height: 25px;
      cursor: pointer;
      margin: 0; }
      .form.form--dark.form--competition .checkbox input:focus {
        outline: none; }
    .form.form--dark.form--competition .checkbox label {
      padding-left: 40px;
      position: relative;
      z-index: 2;
      display: block;
      margin: 0; }
      .form.form--dark.form--competition .checkbox label:before {
        content: "";
        display: inline-block;
        position: absolute;
        left: 0;
        top: 2px;
        width: 24px;
        width: 1.5rem;
        height: 24px;
        height: 1.5rem;
        background-color: white; }
    .form.form--dark.form--competition .checkbox input:focus + label {
      outline: 2px solid #F9BE00; }
    .form.form--dark.form--competition .checkbox input:checked + label:after {
      content: "";
      display: inline-block;
      position: absolute;
      left: 8px;
      top: 3px;
      width: 8px;
      width: 0.5rem;
      height: 16px;
      height: 1rem;
      border-right: 2px solid #454346;
      border-bottom: 2px solid #454346;
      -webkit-transform: rotate(40deg);
          -ms-transform: rotate(40deg);
              transform: rotate(40deg); }
    .form.form--dark.form--competition .checkbox input:focus + label {
      outline: 2px solid #F9BE00; }
    .form.form--dark.form--competition .checkbox input:checked + label:after {
      content: "";
      display: inline-block;
      position: absolute;
      left: 8px;
      top: 3px;
      width: 8px;
      width: 0.5rem;
      height: 16px;
      height: 1rem;
      border-right: 2px solid #454346;
      border-bottom: 2px solid #454346;
      -webkit-transform: rotate(40deg);
          -ms-transform: rotate(40deg);
              transform: rotate(40deg); }
  .form.form--dark.form--competition ul {
    margin: 0 0 0 28px;
    list-style: disc;
    list-style-type: disc;
    list-style-position: outside; }
  .form.form--dark.form--competition li {
    display: list-item;
    list-style-type: disc;
    margin: 0 12px 24px 0;
    padding: 0; }
    .form.form--dark.form--competition li:before, .form.form--dark.form--competition li:after {
      display: none; }
    @media screen and (min-width: 48em) {
      .form.form--dark.form--competition li {
        margin: 0 12px 24px 0;
        padding: 0; } }
  .form.form--dark.form--competition .btn--primary {
    background: #F9BE00;
    -webkit-border-radius: 0;
            border-radius: 0;
    color: #1B181C !important;
    padding: 16px !important;
    padding: 1rem !important;
    min-width: 200px; }
    .form.form--dark.form--competition .btn--primary:focus {
      background: #262427;
      color: white !important;
      outline: 2px solid white; }
  .form.form--dark .error, .form.form--dark .parsley-errors-list, .form.form--dark .parsley-errors-list li {
    display: block;
    margin: 0 !important;
    padding-bottom: 0 !important;
    color: #FF4D4D; }

.file-upload input {
  opacity: 0;
  position: absolute;
  z-index: -1; }
  .file-upload input:focus + .btn {
    background-color: #F9BE00; }
  .file-upload input:disabled + .btn,
  .file-upload input[readonly] + .btn {
    background: white;
    border: none;
    color: black;
    opacity: 0.5;
    cursor: none; }

.file-upload__details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex; }

.file-upload__filename {
  background: #454346;
  border: 1px solid #777777;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: white !important;
  padding: 8px 12.8px;
  padding: 0.5rem 0.8rem;
  margin: 0 !important;
  font-size: 16px;
  font-size: 1rem;
  font-family: "gill-sans-nova", sans-serif; }

.file-upload label.btn--secondary {
  -webkit-flex-basis: 100px;
      -ms-flex-preferred-size: 100px;
          flex-basis: 100px;
  background-color: white;
  color: black;
  -webkit-border-radius: 0;
          border-radius: 0;
  text-align: center;
  margin: 0;
  cursor: pointer; }

.panel-header {
  background-color: #f8f8f8;
  padding: 24px 0;
  padding: 1.5rem 0; }
  @media screen and (min-width: 60em) {
    .panel-header {
      min-height: 165px;
      padding-top: 4rem;
      padding-bottom: 2rem;
      margin-top: -1.5rem; } }
  @media screen and (min-width: 60em) {
    .has-sub-nav .panel-header {
      padding-top: 6.5rem;
      padding-bottom: 1rem;
      margin-top: -88px; } }

.panel-header--dark {
  background-image: url("/content/images/dark_embroidery.png");
  background-color: #212121;
  color: white; }
  .panel-header--dark a {
    color: white;
    text-decoration: none; }
    .panel-header--dark a:hover, .panel-header--dark a:focus {
      text-decoration: underline; }
    .panel-header--dark a:focus {
      outline: 2px solid #F9BE00; }

@media screen and (min-width: 60em) {
  .has-sub-nav .panel-header--push {
    padding-top: 4.5rem;
    padding-bottom: 3rem;
    margin-top: -48px; } }

.panel-overlay {
  position: relative;
  background-color: #322f33;
  padding: 12px;
  padding: 0.75rem; }
  @media screen and (min-width: 53.75em) {
    .panel-overlay {
      background-color: #322f33;
      bottom: 0;
      left: 0;
      margin-top: -3rem;
      padding: 1.8rem;
      width: 100%;
      z-index: 100; } }
  @media screen and (min-width: 70em) {
    .panel-overlay {
      background-color: #322f33;
      background-color: rgba(27, 24, 28, 0.9);
      margin-top: 0;
      position: absolute;
      width: 70%; } }

.panel-overlay__page-type {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  padding: 4px 16px;
  padding: 0.25rem 1rem;
  color: #ffffff;
  background-color: #322f33;
  /* Done as a before element rather than a border to avoid 1px rendering 
	   gap in Chrome */ }
  .panel-overlay__page-type:before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    top: -2px;
    left: 0;
    background-color: #F9BE00; }
  @media screen and (min-width: 70em) {
    .panel-overlay__page-type {
      background-color: #322f33;
      background-color: rgba(27, 24, 28, 0.9); } }

.accent-velvet .panel-overlay__page-type {
  background-color: #4e1e66 !important; }

.accent-clyde .panel-overlay__page-type:before {
  background-color: #c35a1a !important; }

.accent-staffa .panel-overlay__page-type:before {
  background-color: #9184be !important; }

.accent-rust .panel-overlay__page-type {
  background-color: #ac3f10 !important; }

.panel-overlay__title {
  font-size: 20.8px;
  font-size: 1.3rem;
  line-height: 25.6px;
  line-height: 1.6rem; }
  @media screen and (min-width: 60em) {
    .panel-overlay__title {
      font-size: 1.6rem;
      line-height: 2rem; } }

a.panel-overlay-link,
.panel-overlay-link {
  color: #ffffff; }
  @media screen and (min-width: 53.75em) {
    a.panel-overlay-link,
    .panel-overlay-link {
      color: #ffffff; } }

.panel-overlay__summary {
  color: #d9d9d9;
  font-size: 14.4px;
  font-size: 0.9rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  margin-bottom: 0; }
  @media screen and (min-width: 53.75em) {
    .panel-overlay__summary {
      color: #d9d9d9; } }

@media screen and (min-width: 40em) {
  .panel-overlay--center {
    min-height: 185px; } }

@media screen and (min-width: 48em) {
  .panel-overlay--center {
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    min-height: 185px;
    text-align: center;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease; } }

@media screen and (min-width: 60em) {
  .panel-overlay--center {
    bottom: 0;
    top: 30%;
    left: 0;
    right: 0;
    width: 100%; } }

@media screen and (min-width: 90.075em) {
  .panel-overlay--center {
    bottom: auto;
    min-height: 190px;
    width: 75%; } }

@media screen and (min-width: 45em) {
  .panel-overlay--home {
    background-color: #322f33;
    background-color: rgba(27, 24, 28, 0.7);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 63%; } }

@media screen and (min-width: 60em) {
  .panel-overlay--home {
    width: 100%; } }

@media screen and (min-width: 70em) {
  .panel-overlay--home {
    width: 70%; } }

.upsell {
  padding: 16px 32px 32px 32px;
  padding: 1rem 2rem 2rem 2rem;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out; }
  @media screen and (min-width: 48em) {
    .upsell {
      float: left;
      padding: 1.5rem 2rem 2.5rem 2rem;
      width: 33.3333%;
      margin: 0;
      min-height: 8em; } }
  @media screen and (min-width: 60em) {
    .upsell {
      padding: 3rem 2.8rem 4rem 2.8rem; } }

.upsell:hover {
  background: #477a6f; }

.upsell__heading {
  color: #ffffff;
  position: relative;
  padding: 16px 0;
  padding: 1rem 0;
  margin-bottom: 16px;
  margin-bottom: 1rem; }

.upsell__desc {
  color: #ffffff;
  margin: 0; }
  @media screen and (min-width: 90.075em) {
    .upsell__desc {
      padding-right: 4rem; } }

@media screen and (min-width: 48em) {
  .upsell--home {
    float: left;
    padding: 1.5rem 2rem 2.5rem 2rem;
    width: 50%;
    margin: 0;
    min-height: auto; } }

@media screen and (min-width: 60em) {
  .upsell--home {
    width: 25%; } }

@media screen and (min-width: 90.075em) {
  .upsell--home .upsell__desc {
    padding-right: 0; } }

.panel-regions {
  background: #ffffff;
  padding: 16px;
  padding: 1rem; }
  .panel-regions:before, .panel-regions:after {
    content: "";
    display: table; }
  .panel-regions:after {
    clear: both; }

.panel-link--text {
  padding: 24px;
  padding: 1.5rem; }
  @media screen and (min-width: 48em) {
    .panel-link--text {
      float: left;
      height: 100%;
      width: 100%; } }
  @media screen and (min-width: 60em) {
    .panel-link--text {
      width: 62.5%; } }
  @media screen and (min-width: 90.075em) {
    .panel-link--text {
      width: 52.5%; } }

.panel-app {
  background-color: #262427;
  padding: 22.4px;
  padding: 1.4rem;
  position: relative;
  min-height: 280px; }

.panel-app__img {
  position: absolute;
  bottom: 0;
  right: 0;
  display: none; }
  @media screen and (min-width: 60em) {
    .panel-app__img {
      display: block; } }

.panel-app__intro {
  padding-bottom: 12.8px;
  padding-bottom: 0.8rem; }
  @media screen and (min-width: 60em) {
    .panel-app__intro {
      padding-right: 8rem; } }
  @media screen and (min-width: 90.075em) {
    .panel-app__intro {
      padding-right: 12rem; } }

@media screen and (min-width: 48em) {
  .bg-visitor {
    background-image: url("/content/images/bg-visitor-panel-medium.png");
    background-repeat: no-repeat;
    background-position: bottom right; } }

@media screen and (min-width: 90.075em) {
  .bg-visitor {
    background-image: url("/content/images/bg-visitor-panel.png"); } }

.panel-refine__inner {
  display: none; }
  @media screen and (min-width: 60em) {
    .panel-refine__inner {
      display: block;
      height: 100%;
      left: 0px;
      position: absolute;
      top: 0px;
      width: 25%;
      z-index: -1; } }

.feature {
  padding: 16px;
  padding: 1rem; }
  @media screen and (min-width: 48em) {
    .feature {
      padding: 1rem 1rem 0 0; } }
  @media screen and (min-width: 60em) {
    .feature {
      padding: 1rem 0 0 1rem; } }

.feature--right {
  padding: 16px;
  padding: 1rem; }
  @media screen and (min-width: 48em) {
    .feature--right {
      padding: 1.3rem 1.5rem 0 0; } }
  @media screen and (min-width: 60em) {
    .feature--right {
      padding: 1.3rem 1.5rem 0 0; } }
  .feature--right h2 {
    margin-bottom: 12px; }
  .feature--right hr {
    background: #888888;
    border: 0;
    display: block;
    height: 2px;
    margin: 10px 0 10px 0;
    padding: 0;
    text-align: left;
    width: 20px; }
  .feature--right hr.hide.small {
    display: none; }
    @media (min-width: 48em) {
      .feature--right hr.hide.small {
        display: block; } }
  .feature--right .location {
    bottom: 0;
    margin-bottom: 0;
    margin-top: 24px;
    margin-top: 1.5rem;
    line-height: 1;
    position: relative; }
    @media (min-width: 48em) {
      .feature--right .location {
        bottom: 0.8rem;
        position: absolute;
        margin-top: 0; } }

@media screen and (min-width: 60em) {
  .panel-benefits {
    margin-top: -340px;
    position: relative;
    z-index: 9999; } }

.campaign__wrapper {
  width: 100%; }
  .campaign__wrapper:before, .campaign__wrapper:after {
    content: "";
    display: table; }
  .campaign__wrapper:after {
    clear: both; }
  @media screen and (min-width: 48em) {
    .campaign__wrapper {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex; } }
  @media screen and (min-width: 60em) {
    .campaign__wrapper {
      margin-left: -32.08333%;
      width: 180.83333%;
      min-height: 120px;
      padding-left: 10px; } }

.campaign__wrapper--right .campaign__image {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  float: right; }
  @media screen and (min-width: 48em) {
    .campaign__wrapper--right .campaign__image {
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
         -moz-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; } }

.campaign__wrapper--right .campaign__text {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
     -moz-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  float: left; }
  @media screen and (min-width: 48em) {
    .campaign__wrapper--right .campaign__text {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
         -moz-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; } }

.campaign__wrapper--dark .campaign__text {
  background: #dddddd; }
  .campaign__wrapper--dark .campaign__text p {
    color: #333333; }

.campaign__wrapper--dark h3.campaign__title {
  color: #333333; }

.campaign__image {
  margin-bottom: 0 !important;
  overflow: hidden;
  position: relative;
  width: 100%; }
  @media screen and (min-width: 48em) {
    .campaign__image img {
      bottom: 0;
      left: 0;
      max-width: none;
      position: absolute;
      right: 0;
      top: 0; } }
  @media screen and (min-width: 48em) {
    .campaign__image {
      width: 50%; } }
  @media screen and (min-width: 60em) {
    .campaign__image {
      width: 60%; } }

.campaign__text {
  background: #1d354f;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 0 !important;
  max-width: none;
  padding: 24px 24px;
  padding: 1.5rem 1.5rem;
  position: relative;
  text-align: center;
  width: 100%; }
  .campaign__text p {
    color: #fff;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 22.4px;
    line-height: 1.4rem;
    text-align: center; }
  @media screen and (min-width: 48em) {
    .campaign__text {
      max-width: 500px;
      padding: 1.5rem 3rem 3rem; }
      .campaign__text p {
        font-size: 1.1rem; } }

h3.campaign__title {
  border-top: 1px solid #6e8ba8;
  border-bottom: 1px solid #6e8ba8;
  color: #fff;
  display: inline-block;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  padding: 2.4px 0 5.6px;
  padding: 0.15rem 0 0.35rem;
  position: relative;
  text-align: center;
  width: auto; }
  h3.campaign__title:before {
    background-image: url("/content/images/venue-keystone-dark.svg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    content: '';
    display: block;
    height: 10px;
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: -10px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 38px; }
  h3.campaign__title:after {
    background-image: url("/content/images/venue-keystone-dark.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    bottom: -10px;
    content: '';
    display: block;
    height: 10px;
    left: 50%;
    overflow: hidden;
    position: absolute;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 38px; }

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

@media screen and (min-width: 40em) {
  .show-for-small-only {
    display: none !important; } }

@media screen and (max-width: 39.938em) {
  .hide-for-small {
    display: none !important; } }

@media screen and (min-width: 47.938em) {
  .hide-for-medium-up {
    display: none !important; } }

@media screen and (max-width: 59.95em) {
  .show-for-large-up {
    display: none !important; } }

@media screen and (max-width: 70em) {
  .show-for-xlarge-up {
    display: none !important; } }

@media screen and (max-width: 47.938em) {
  .show-for-medium-up {
    display: none !important; } }

@media screen and (min-width: 48em) {
  .show-hide-show {
    display: none !important; } }

@media screen and (min-width: 60em) {
  .show-hide-show {
    display: block !important; } }

@media screen and (min-width: 59.95em) {
  .hide-for-large-up {
    display: none !important; } }

.overflow-show {
  overflow: visible; }

.js .guide-steps.show {
  display: block !important; }

.js .guide-steps {
  display: none; }
  @media screen and (min-width: 48em) {
    .js .guide-steps {
      display: block !important; } }

@media screen and (min-width: 48em) {
  .guide-link {
    display: none; } }

.map {
  height: 100%;
  width: 100%;
  z-index: 0;
  position: absolute; }

.map--small {
  background: #eaeaea;
  height: 300px;
  position: static; }

.gmnoprint img {
  max-width: none; }

.gm-style img {
  max-width: none; }

.explore-map {
  width: 50%;
  float: left; }

.explore-listers {
  width: 50%;
  float: left; }

.infobox-wrapper {
  display: none; }

.map-popup {
  width: 200px;
  font-size: 12px;
  line-height: 14px; }
  @media screen and (min-width: 40em) {
    .map-popup {
      width: 250px;
      font-size: 14px;
      line-height: 16px; } }
  .map-popup:after {
    content: '';
    display: table;
    clear: both;
    width: 100%; }

.map-popup__img-container {
  width: 45%;
  padding-right: 5%;
  float: left; }

.map-popup__img {
  position: relative;
  margin-bottom: 8px; }
  .map-popup__img img {
    max-width: 100%; }

.map-popup__link {
  background-color: black;
  color: white !important;
  padding: 4px 8px;
  text-transform: uppercase;
  font-size: 11.2px;
  font-size: 0.7rem; }
  .map-popup__link:hover {
    background-color: #007994; }

.map-popup__main {
  width: 55%;
  float: left; }

.map-popup__title {
  font-weight: bold; }

.map-popup__tel {
  display: block; }

.map-popup__title,
.map-popup__address,
.map-popup__tel {
  margin-bottom: 4px; }

.map-popup__bd {
  font-size: 12.8px;
  font-size: 0.8rem; }

.map-popup__address {
  margin-bottom: 4px; }

.map-giveaway__msg {
  padding-top: 5px;
  color: #a61f29; }

.map-popup__soldout {
  color: #a61f29;
  font-weight: bold;
  font-size: 12.8px;
  font-size: 0.8rem; }

.privacy-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 9999;
  padding: 24px 0 64px;
  padding: 1.5rem 0 4rem;
  -webkit-box-shadow: 0 1px 3px 1px #ccc;
          box-shadow: 0 1px 3px 1px #ccc; }

.privacy-content {
  margin-left: auto;
  margin-right: auto;
  width: 96%;
  max-width: 1400px; }
  .privacy-content p {
    margin: 0 0 8px;
    margin: 0 0 0.5rem;
    max-width: 700px; }
    .privacy-content p:last-of-type {
      margin: 0 0 24px;
      margin: 0 0 1.5rem; }
  .privacy-content a {
    text-decoration: underline; }
    .privacy-content a:hover {
      text-decoration: none; }

.privacy-banner__title {
  margin-bottom: 12px;
  margin-bottom: 0.75rem; }

.privacy-banner__form-title {
  margin-bottom: 12px;
  margin-bottom: 0.75rem; }

.form-control-label {
  padding-left: 30px;
  display: block;
  position: relative; }

.privacy-banner__label-text {
  display: block;
  font-weight: 500; }

.form-row-checkbox__checkbox {
  position: absolute;
  left: 0;
  top: 5px; }

.privacy-banner__label-description {
  font-size: 12.8px;
  font-size: 0.8rem; }

.form-row {
  border-bottom: 1px dotted #e6e6e6;
  padding: 6px 0;
  padding: .375rem 0;
  margin-bottom: 6px;
  margin-bottom: .375rem; }

.privacy-banner__fieldset {
  margin-bottom: 24px;
  margin-bottom: 1.5rem; }

.privacy-banner__legend {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal; }

.cookie-message {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 200px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.cookie-message__link {
  color: #fff;
  text-decoration: underline;
  background: #000;
  display: block;
  text-align: center;
  padding: 40px; }
  .cookie-message__link {
    text-decoration: none; }

.collapse__heading {
  padding: 16px 16px 16px 24px;
  padding: 1rem 1rem 1rem 1.5rem;
  margin-bottom: 3.2px;
  margin-bottom: 0.2rem;
  position: relative; }

.collapse__heading a {
  display: block; }

.collapse__heading i {
  position: absolute;
  left: 0;
  top: 16px;
  top: 1rem; }

.collapse__heading .icon-down {
  display: none; }

.open .icon-right {
  display: none; }

.open .icon-down {
  display: inline-block; }

.collapse__heading .icon-minus {
  display: none; }

.open .icon-plus {
  display: none; }

.open .icon-minus {
  display: inline-block; }

.collapse__body {
  overflow: hidden; }

.collapse__body--accordion {
  float: left;
  height: 0;
  -webkit-transform: translateZ(0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
  display: block !important; }

.collapse__heading--boxed {
  background-color: #F1F1F1;
  margin-bottom: 12.8px;
  margin-bottom: 0.8rem;
  padding: 0;
  position: relative; }

.collapse__heading--boxed > a {
  display: block;
  padding: 16px 16px 16px 48px;
  padding: 1rem 1rem 1rem 3rem; }

.collapse__heading--boxed i {
  position: absolute;
  left: 16px;
  left: 1rem;
  top: 16px;
  top: 1rem; }

@media screen and (max-width: 59.938em) {
  .global-search {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    height: 100vh; } }

@media screen and (min-width: 60em) {
  .global-search {
    display: block !important;
    position: absolute;
    top: 30px;
    right: 1.25%;
    width: 285px; } }

@media screen and (max-width: 59.938em) {
  .search-wrapper {
    background-color: transparent;
    color: #e6e6e6;
    left: 50%;
    margin-left: -50%;
    position: absolute;
    width: 100%;
    z-index: 101;
    top: 4rem; } }

.global-search__form {
  border-bottom: 2px solid #666666;
  width: auto;
  position: relative;
  margin: 32px 24px;
  margin: 2rem 1.5rem; }
  @media screen and (min-width: 48em) {
    .global-search__form {
      margin: 2rem 3rem; } }
  @media screen and (min-width: 60em) {
    .global-search__form {
      border-bottom: 2px solid #d6dee6;
      margin: 0; } }

.global-search__field {
  background: transparent;
  border: 0;
  color: #ffffff;
  font-size: 22.4px;
  font-size: 1.4rem;
  font-family: "gill-sans-nova", sans-serif;
  padding: 24px 24px 24px 24px;
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  width: 100%;
  height: auto;
  border-right: 35px solid transparent; }
  @media screen and (min-width: 60em) {
    .global-search__field {
      color: #666666;
      font-size: 1rem;
      padding: 0.5rem 0.5rem 0.5rem 0.5rem;
      overflow: visible;
      line-height: 30px; } }
  .global-search__field:focus {
    border-bottom: 1px solid #ffffff;
    outline: none; }
    @media screen and (min-width: 60em) {
      .global-search__field:focus {
        background: #f1f1f1;
        border-bottom: none; } }

.global-search__field::-ms-clear {
  display: none; }

.global-search__btn {
  background: transparent;
  bottom: 0.2em;
  color: #007994;
  font-size: 28.8px;
  font-size: 1.8rem;
  font-weight: 600;
  right: 3px;
  top: 3px;
  padding: 0;
  position: absolute;
  line-height: 1;
  height: auto; }
  @media screen and (min-width: 60em) {
    .global-search__btn {
      font-size: 1rem; } }

.global-search__btn:hover,
.global-search__btn:focus {
  background: transparent;
  color: #00647A; }

.search-overlay {
  background-color: rgba(0, 0, 0, 0.9);
  bottom: 0;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999; }
  @media screen and (min-width: 60em) {
    .search-overlay {
      display: none !important; } }

.search-inset {
  position: relative;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 430px; }
  @media screen and (min-width: 90.075em) {
    .search-inset {
      max-width: none;
      width: 70%; } }

.search-inset--full {
  max-width: none; }
  @media screen and (min-width: 90.075em) {
    .search-inset--full {
      width: 100%; } }

.search-inset__field {
  border: 1px solid #d9d9d9;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #666666;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-family: "gill-sans-nova", sans-serif;
  padding: 9.6px 32px 9.6px 12.8px;
  padding: 0.6rem 2rem 0.6rem 0.8rem;
  position: relative;
  width: 100%; }
  @media screen and (min-width: 48em) {
    .search-inset__field {
      font-size: 1.2rem;
      padding: 0.6rem 4.5rem 0.6rem 0.8rem; } }
  .search-inset__field:focus {
    background: #f1f1f1;
    border: 1px solid #a1a1a0; }

.search-inset__btn {
  background: transparent;
  bottom: 0.2em;
  color: #545255;
  cursor: pointer;
  font-size: 22.4px;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0;
  position: absolute;
  right: 6px;
  top: 3px;
  text-transform: none;
  line-height: 12.8px;
  line-height: 0.8rem;
  z-index: 1;
  height: 48px;
  -webkit-transition: background-color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out; }
  @media screen and (min-width: 48em) {
    .search-inset__btn {
      padding: 0 1rem;
      right: 3px; } }
  .search-inset__btn[class^='icon-']:before, .search-inset__btn[class*=' icon-']:before {
    margin: 0; }

.search-inset__btn:hover {
  background: #ffffff;
  color: #66cc66; }
  @media screen and (min-width: 48em) {
    .search-inset__btn:hover {
      background: #66cc66;
      color: #ffffff; } }

.search-inset__btn:active {
  background: #66cc66; }

.search-inset--small {
  margin-bottom: 16px;
  margin-bottom: 1rem;
  width: 100%; }
  .search-inset--small .search-inset__field {
    font-size: 16px;
    font-size: 1rem;
    padding: 9.6px 56px 9.6px 12.8px;
    padding: 0.6rem 3.5rem 0.6rem 0.8rem; }

.btn-inset--small {
  background: transparent;
  bottom: 0.2em;
  color: #007994;
  font-size: 17.6px;
  font-size: 1.1rem;
  right: 3px;
  top: 5px;
  padding: 0;
  line-height: 1;
  height: auto;
  padding: 0 8px;
  padding: 0 0.5rem;
  position: absolute; }
  .btn-inset--small:focus {
    color: #00647A; }

.btn-inset--small:hover {
  background: transparent;
  color: #00647A; }

.facet__heading {
  font-size: 14.4px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
  padding: 16px 16px 8px 0;
  padding: 1rem 1rem 0.5rem 0; }

.facet__heading a {
  color: #5f5d60; }
  .facet__heading a:hover {
    color: #8d8c8e; }

.facet__heading--mono a {
  color: #ececec; }
  .facet__heading--mono a:hover {
    color: #a1a1a0; }

.sticky-search {
  float: right; }

.sticky-search__label {
  color: #ffffff; }
  @media screen and (max-width: 65em) {
    .sticky-search__label {
      display: none; } }

.search-results a[href*='.pdf'] {
  padding-right: 64px;
  padding-right: 4rem; }
  .search-results a[href*='.pdf']:before {
    border-left: 1px dotted #eaeaea;
    content: '\f1c1';
    font-family: 'fontello';
    font-size: 33.6px;
    font-size: 2.1rem;
    line-height: normal;
    padding-left: 16px;
    padding-left: 1rem;
    position: absolute;
    right: 0;
    top: 30px;
    bottom: 30px; }

.search-results a[href*='.doc'],
.search-results a[href*='.docx'],
.search-results a[href*='.docm'],
.search-results a[href*='.dotx'],
.search-results a[href*='.dotm'],
.search-results a[href*='.docb'] {
  padding-right: 64px;
  padding-right: 4rem; }
  .search-results a[href*='.doc']:before,
  .search-results a[href*='.docx']:before,
  .search-results a[href*='.docm']:before,
  .search-results a[href*='.dotx']:before,
  .search-results a[href*='.dotm']:before,
  .search-results a[href*='.docb']:before {
    border-left: 1px dotted #eaeaea;
    content: '\f1c2';
    font-family: 'fontello';
    font-size: 33.6px;
    font-size: 2.1rem;
    line-height: normal;
    padding-left: 16px;
    padding-left: 1rem;
    position: absolute;
    right: 0;
    top: 30px;
    bottom: 30px; }

.clearable__search {
  position: relative; }
  .clearable__search.has--value .clearable__search-submit {
    display: none; }
  .clearable__search.has--value .clearable__search-button {
    z-index: 1;
    top: 13px;
    cursor: pointer; }

.card h2 {
  padding-bottom: 10px; }

.card hr {
  background: #888888;
  border: 0;
  display: block;
  height: 2px;
  margin: 10px 0 10px 0;
  padding: 0;
  text-align: left;
  width: 20px; }

.card .location {
  line-height: 1;
  padding-left: 15px;
  padding-right: 5px; }
  .card .location span {
    left: -5px;
    position: absolute; }

.search-banner {
  color: #333;
  padding: 16px;
  padding: 1rem;
  line-height: 26px;
  border: 2px #007994 solid;
  overflow: hidden; }
  .search-banner p {
    font-size: 22px;
    font-size: 1.375rem;
    margin: 0; }
  .search-banner a {
    text-decoration: underline; }

.cdsROW.narrow {
  border: 1px solid #dddddd !important;
  width: 100% !important; }

.widSSPData {
  padding: 0 !important; }

.gm-style .gm-style-iw {
  font-family: "gill-sans-nova", sans-serif;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  overflow: hidden;
  text-align: center;
  margin-top: 4.8px;
  margin-top: 0.3rem; }

#mc_embed_signup {
  background: #fff;
  clear: left;
  font: 14px Helvetica,Arial,sans-serif; }

.social-links {
  float: left;
  width: 100%;
  margin: 0 0 24px 0;
  margin: 0 0 1.5rem 0; }
  @media screen and (min-width: 48em) {
    .social-links {
      float: right;
      margin: 0;
      position: absolute;
      right: 0;
      text-align: right;
      top: 0;
      width: auto; } }

.sorting {
  position: absolute;
  right: 0;
  top: 0; }
  @media screen and (min-width: 60em) {
    .sorting {
      margin: 0;
      text-align: right;
      top: -110px;
      width: auto; } }

.counter {
  display: block;
  position: relative; }

.counter__link {
  display: block;
  color: #ffffff;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  opacity: 0; }
  .counter__link:before, .counter__link:after {
    content: "";
    display: table; }
  .counter__link:after {
    clear: both; }

.counter__heading {
  color: #ffffff; }

.counter__intro {
  color: #d9d9d9;
  margin-bottom: 8px;
  margin-bottom: 0.5rem; }

.counter__btn {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  bottom: 0;
  display: block;
  padding-top: 8px;
  padding-top: 0.5rem;
  position: absolute;
  width: 92%; }
  .counter__btn i {
    right: 0;
    top: 25%;
    position: absolute; }

counter__link:hover,
a:hover .counter__heading,
a:hover .counter__intro,
a:hover .counter__btn {
  color: #c6c6c6;
  -webkit-transition: 0.5s;
  transition: 0.5s; }

a .counter__heading,
a .counter__intro,
a .counter__btn {
  -webkit-transition: 0.5s;
  transition: 0.5s; }

.video-container {
  cursor: pointer;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden; }

.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.soundcloud-container iframe,
.soundcloud-container object,
.soundcloud-container embed {
  width: 100%; }

.tab__list {
  display: block;
  font-size: 19.2px;
  font-size: 1.2rem;
  height: 48px;
  height: 3rem;
  list-style: none;
  padding: 0; }
  .tab__list:before, .tab__list:after {
    content: "";
    display: table; }
  .tab__list:after {
    clear: both; }

@media screen and (min-width: 60em) {
  .tab__list--indent .tab__item:first-child {
    padding-left: 17.8%; } }

.tab__item {
  display: block;
  float: left;
  list-style: none; }

.tab__link {
  background-color: #f4f4f4;
  border-spacing: 0;
  color: #545255;
  display: block;
  font-family: "gill-sans-nova", sans-serif;
  font-weight: 600;
  font-size: 17.6px;
  font-size: 1.1rem;
  height: 48px;
  height: 3rem;
  line-height: 32px;
  line-height: 2rem;
  margin: 0;
  padding: 8px 12.8px;
  padding: 0.5rem 0.8rem;
  text-decoration: none; }
  .tab__link:hover {
    color: #8d8c8e;
    cursor: pointer;
    text-decoration: none; }
  .tab__link:visited {
    color: #666666; }
    .tab__link:visited:hover {
      color: #666666; }
  @media screen and (min-width: 48em) {
    .tab__link {
      font-size: 1.3rem;
      padding: 0.5rem 1.6rem; } }

.tab__link[aria-selected] {
  background-color: #1B181C;
  border-spacing: 0;
  color: #ffffff;
  cursor: default;
  margin-left: 0; }

.tab__link--light {
  background-color: transparent;
  color: #666666;
  padding: 0 16px 0 0;
  position: relative; }
  @media screen and (min-width: 48em) {
    .tab__link--light {
      padding: 0 24px 0 0; } }
  .tab__link--light[aria-selected] {
    background-color: transparent;
    color: #1B181C; }
    .tab__link--light[aria-selected]:after {
      content: '';
      background-color: #007994;
      bottom: 0;
      display: block;
      position: absolute;
      width: 50px;
      height: 3px; }

.tab__panel {
  padding: 48px 0; }

[role="tabpanel"][aria-hidden="true"] {
  display: none; }

[role="tabpanel"]:focus {
  outline: thin dotted; }

.tab__list--scroll {
  margin-left: 1.25%;
  margin-right: 1.25%; }
  @media screen and (max-width: 40em) {
    .tab__list--scroll {
      overflow-x: scroll;
      overflow-y: hidden;
      display: block;
      white-space: nowrap; }
      .tab__list--scroll .tab__item {
        display: inline-block;
        float: none;
        list-style: none; } }

@media screen and (max-width: 48em) {
  .tabs__shadow {
    position: relative; }
    .tabs__shadow:before {
      left: 0;
      -webkit-box-shadow: inset 8px 0 7px -7px rgba(0, 0, 0, 0.5);
              box-shadow: inset 8px 0 7px -7px rgba(0, 0, 0, 0.5); }
    .tabs__shadow:after {
      right: 0;
      -webkit-box-shadow: inset -8px 0 7px -7px rgba(0, 0, 0, 0.5);
              box-shadow: inset -8px 0 7px -7px rgba(0, 0, 0, 0.5); }
    .tabs__shadow:before, .tabs__shadow:after {
      content: '';
      position: absolute;
      top: 0;
      height: 100%;
      width: 100%;
      pointer-events: none; } }

.guide-container {
  margin-bottom: 32px;
  margin-bottom: 2rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem; }
  @media screen and (min-width: 48em) {
    .guide-container {
      border-bottom: 1px solid #e8e8e8; } }

@media screen and (min-width: 48em) {
  .guide-container--dark {
    border-bottom: 1px solid #4b4b4b; } }

.guide-steps__item {
  list-style-type: decimal;
  margin-left: 24px;
  margin-left: 1.5rem; }

.guide-steps__link {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  padding: 6.4px 0;
  padding: 0.4rem 0; }
  @media screen and (min-width: 60em) {
    .guide-steps__link {
      min-height: 3rem; } }

.guide-steps__item.active a {
  color: #333333; }
  .guide-steps__item.active a:hover {
    cursor: default; }

.guide-steps--dark .guide-steps__item {
  color: #a1a1a0;
  list-style-type: decimal;
  margin-left: 24px;
  margin-left: 1.5rem; }

.guide-steps--dark .guide-steps__link {
  display: block;
  color: #a1a1a0;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  padding: 6.4px 0;
  padding: 0.4rem 0; }
  @media screen and (min-width: 60em) {
    .guide-steps--dark .guide-steps__link {
      min-height: 3rem; } }

.guide-steps--dark .guide-steps__item.active a {
  color: #ececec; }
  .guide-steps--dark .guide-steps__item.active a:hover {
    cursor: default; }

.prev-next {
  border-top: 1px solid #e8e8e8;
  margin: 32px 0 40px 0;
  margin: 2rem 0 2.5rem 0;
  position: relative;
  width: 100%; }

.prev-tab,
.next-tab {
  border-bottom: none;
  color: #545255;
  display: block;
  float: left;
  font-size: 16px;
  font-size: 1rem;
  font-family: "gill-sans-nova", sans-serif;
  font-weight: 700;
  line-height: 17.6px;
  line-height: 1.1rem;
  min-height: 72px;
  min-height: 4.5rem;
  padding-bottom: 12.8px;
  padding-bottom: 0.8rem;
  padding-top: 12.8px;
  padding-top: 0.8rem;
  position: relative;
  text-decoration: none;
  width: 50%; }
  .prev-tab:hover,
  .next-tab:hover {
    background-color: #fafafa; }
  .prev-tab span,
  .next-tab span {
    font-weight: 400; }

.next-tab {
  float: right;
  padding-right: 55.92px;
  padding-right: 3.495rem;
  text-align: right; }

.prev-tab {
  padding-left: 55.92px;
  padding-left: 3.495rem; }

.prev-next .icon-right-open.after:before {
  content: none; }

.prev-next .icon-right-open:after,
.prev-next .icon-left-open:before {
  color: #dddddd;
  font-size: 22.4px;
  font-size: 1.4rem;
  position: absolute;
  right: 0;
  top: 25px;
  width: auto; }

.prev-next .icon-right-open:after {
  content: '\e75e';
  display: inline-block;
  font-family: fontello;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1em;
  margin-left: 0.2em;
  margin-right: 0.2em;
  text-align: center;
  text-decoration: inherit;
  text-transform: none;
  width: 1em; }

.prev-next .icon-left-open:before {
  left: 5px;
  right: auto; }

.prev-next--dark {
  border-top: 1px solid #4b4b4b; }
  .prev-next--dark .prev-tab,
  .prev-next--dark .next-tab {
    color: #ececec; }
    .prev-next--dark .prev-tab:hover,
    .prev-next--dark .next-tab:hover {
      background-color: #1a1a1a; }
    .prev-next--dark .prev-tab span,
    .prev-next--dark .next-tab span {
      font-weight: 400; }

.faq-block {
  display: block;
  margin-bottom: 48px;
  padding-bottom: 48px;
  position: relative; }

.faq-block__title {
  font-size: 25.6px;
  font-size: 1.6rem;
  line-height: 32px;
  line-height: 2rem;
  display: block;
  padding: 16px 0 48px;
  position: relative; }
  @media screen and (min-width: 48em) {
    .faq-block__title {
      font-size: 1.8rem;
      line-height: 2rem; } }
  @media screen and (min-width: 60em) {
    .faq-block__title {
      font-size: 2rem;
      line-height: 2.4rem; } }
  .faq-block__title:before {
    background: #007994;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    top: 0;
    width: 50px; }
  @media (min-width: 60em) {
    .faq-block__title {
      font-size: 1.4rem;
      line-height: 1.6rem;
      padding-right: 24px; } }
  @media screen and (min-width: 60em) and (min-width: 48em) {
    .faq-block__title {
      font-size: 1.5rem;
      line-height: 1.8rem; } }
  @media screen and (min-width: 60em) and (min-width: 60em) {
    .faq-block__title {
      font-size: 1.8rem;
      line-height: 2.4rem; } }

.faq-all {
  padding-bottom: 96px;
  position: relative; }

.faq-item {
  display: block;
  position: relative; }
  .faq-item.active .faq-item__trigger {
    border-top: 1px solid #007994; }
    .faq-item.active .faq-item__trigger:after {
      -webkit-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
              transform: rotate(180deg); }
  .faq-item.active .faq-item__content {
    height: auto;
    opacity: 1;
    padding: 24px 0;
    visibility: visible; }

.faq-item__trigger {
  font-size: 20.8px;
  font-size: 1.3rem;
  line-height: 25.6px;
  line-height: 1.6rem;
  background: none;
  border-top: 1px solid #dddddd;
  color: #424241;
  display: block;
  padding: 19.2px 48px 19.2px 0;
  position: relative;
  text-align: left;
  -webkit-transition: border-top 0.5s ease-in-out, color 0.5s ease-in-out;
  transition: border-top 0.5s ease-in-out, color 0.5s ease-in-out;
  width: 100%; }
  .faq-item__trigger:after {
    content: '\e760';
    font-family: fontello;
    font-size: 28px;
    opacity: 0.7;
    position: absolute;
    right: 12px;
    top: 19.2px;
    -webkit-transition: color 0.5s ease-in-out, -webkit-transform 0.25s ease-in-out;
    transition: color 0.5s ease-in-out, -webkit-transform 0.25s ease-in-out;
    transition: transform 0.25s ease-in-out, color 0.5s ease-in-out;
    transition: transform 0.25s ease-in-out, color 0.5s ease-in-out, -webkit-transform 0.25s ease-in-out;
    text-align: center; }
  @media (min-width: 60em) {
    .faq-item__trigger:hover, .faq-item__trigger:focus {
      border-top: 1px solid #007994;
      color: #007994; }
      .faq-item__trigger:hover:after, .faq-item__trigger:focus:after {
        color: #007994;
        opacity: 1; } }

.faq-item__trigger--velvet {
  border-top-color: #4e1e66; }
  @media (min-width: 60em) {
    .faq-item__trigger--velvet:hover, .faq-item__trigger--velvet:focus {
      border-top-color: #4e1e66; } }
  .faq-item.active .faq-item__trigger--velvet {
    border-top-color: #4e1e66; }

.faq-item__content {
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 0;
  -webkit-transition: padding 0.25s ease-in-out, opacity 0.5s ease-in-out;
  transition: padding 0.25s ease-in-out, opacity 0.5s ease-in-out;
  visibility: hidden; }

.return-link {
  bottom: 0;
  left: 0;
  opacity: 0;
  padding: 12px;
  position: fixed;
  right: 0;
  text-align: right;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  visibility: hidden; }
  .return-link.visible {
    opacity: 1;
    visibility: visible;
    z-index: 1; }
  .return-link .btn {
    display: inline-block;
    position: relative;
    z-index: 300; }
  .return-link .icon-down {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 38px;
    padding-left: 8px;
    padding-left: 0.5rem;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }

.table, .editor-content table {
  color: #666666;
  font-size: 14.4px;
  font-size: 0.9rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  line-height: 24px;
  line-height: 1.5rem;
  width: 100%;
  margin: 24px 0;
  margin: 1.5rem 0; }
  .table th, .editor-content table th {
    background-color: #eaeaea;
    color: #666666;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
    padding: 9.6px;
    padding: 0.6rem;
    text-align: left;
    vertical-align: bottom; }
  .table td, .editor-content table td {
    padding: 9.6px;
    padding: 0.6rem;
    text-align: left;
    vertical-align: top; }
  .table tr, .editor-content table tr {
    border-top: 1px solid #eaeef3; }
    @media screen and (max-width: 48em) {
      .table tr, .editor-content table tr {
        border-top: 3px solid #eaeaea; } }

.table {
  background: #ffffff;
  line-height: 1.3em;
  width: 100%;
  margin: 0; }

.table th {
  background: #eaeef3;
  color: #5f5d60;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.3em;
  text-align: left;
  padding: 0.8em; }
  @media screen and (max-width: 48em) {
    .table th {
      display: none; } }

@media screen and (max-width: 48em) {
  .table tr {
    display: block;
    margin-bottom: 0;
    padding: 0; } }

@media screen and (min-width: 48em) {
  .table tr:last-child {
    border-bottom: none; } }

.table tr:hover {
  background: #f5f7f9;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }

.table td {
  padding: 0.5em;
  font-size: 1em;
  line-height: 1.4em;
  vertical-align: top; }
  @media screen and (max-width: 48em) {
    .table td {
      display: block;
      padding: 0.4em 0;
      min-height: 40px; } }
  @media screen and (min-width: 48em) {
    .table td {
      border: 0;
      padding: 0.8em; } }

.table td.action {
  font-weight: bold; }

.table select {
  min-width: 10em; }

.table--striped tr:nth-child(3n+1) {
  background-color: #fafafa; }

.table .table-footer tr {
  background-color: #ffffff;
  border: none;
  border-bottom: none;
  margin: 0;
  padding: 0; }

.table .table-footer td {
  border: none;
  padding: 0.3em 0; }
  @media screen and (min-width: 48em) {
    .table .table-footer td {
      padding: 0.4em 0.5em; } }

@media screen and (max-width: 48em) {
  .table {
    border: none; }
    .table thead,
    .table tbody,
    .table th,
    .table td,
    .table tr {
      display: block; }
  .table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px; }
  .table tr {
    padding-bottom: 0.5em;
    padding-top: 0.5em; }
  .table td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%; }
  .table td:last-child {
    border-bottom: none; }
  .table td:before {
    content: attr(data-title);
    font-weight: bold;
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: normal;
    line-height: 1.2em; }
  .table td.two-lines {
    min-height: 37px; } }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */ }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

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

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%; }

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none; }

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden; }

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
   *  Owl Carousel - Animate Plugin
   */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
   * 	Owl Carousel - Auto Height Plugin
   */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

/*
   * 	Owl Carousel - Lazy Load Plugin
   */
.owl-carousel .owl-item {
  /**
			  This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			  calculation of the height of the owl-item that breaks page layouts
		   */ }

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0; }

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d; }

/*
   * 	Owl Carousel - Video Plugin
   */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }

.owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  -webkit-border-radius: 3px;
          border-radius: 3px; }

.owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none; }

.owl-nav .disabled {
  opacity: 0.5;
  cursor: default; }

.owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }

.owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline; }

.owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  -webkit-border-radius: 30px;
          border-radius: 30px; }

.owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span {
  background: #869791; }

.owl-carousel--locations {
  padding: 0 19.2px;
  padding: 0 1.2rem; }
  @media screen and (min-width: 48em) {
    .owl-carousel--locations {
      padding: 0 2rem; } }

.owl-carousel--events-aside .owl-dots {
  margin-top: 0;
  text-align: left; }

@media screen and (min-width: 90.075em) {
  .owl-carousel--events-aside .img-overlay__title {
    font-size: 0.8rem; } }

.owl-carousel-row {
  margin-left: -8px;
  margin-left: -0.5rem;
  margin-right: -8px;
  margin-right: -0.5rem; }

.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

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

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

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

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

.owl-carousel .owl-item {
  float: left; }
  .owl-carousel .owl-item img {
    width: 100%; }

.owl-carousel .owl-item .item {
  margin-left: 8px;
  margin-left: 0.5rem;
  margin-right: 8px;
  margin-right: 0.5rem; }

.owl-carousel--flush .owl-item .item {
  margin-left: 0;
  margin-right: 0; }

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

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

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

.owl-dots {
  margin-top: 10px;
  text-align: center; }

.owl-nav div:hover {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
  text-decoration: none; }

.owl-page {
  display: inline-block; }

.owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  background: #869791; }

.owl-page.active span,
.owl-page:hover span {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1; }

.owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  border-radius: 30px; }

.owl-item.loading {
  min-height: 150px;
  background: url(/_/images/icons/AjaxLoader.gif) no-repeat center center; }

.owl-nav {
  text-align: center; }
  @media screen and (max-width: 47.95em) {
    .owl-nav {
      display: none; } }

.owl-carousel .owl-nav button[class*='owl-'] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  display: inline-block;
  background: #305983;
  color: #ffffff;
  font-size: 0;
  height: 48px;
  height: 3rem;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 25%; }
  @media screen and (min-width: 50em) {
    .owl-carousel .owl-nav button[class*='owl-'] {
      top: 15%; } }
  @media screen and (min-width: 60em) {
    .owl-carousel .owl-nav button[class*='owl-'] {
      top: 20%; } }
  @media screen and (min-width: 90.075em) {
    .owl-carousel .owl-nav button[class*='owl-'] {
      top: 25%; } }

@media screen and (min-width: 48em) {
  .owl-carousel.owl-carousel--gallery .owl-nav button[class*='owl-'] {
    top: -webkit-calc(50% - 48px);
    top: calc(50% - 48px); } }

@media screen and (min-width: 50em) {
  .owl-carousel.owl-carousel--gallery .owl-nav button[class*='owl-'] {
    top: -webkit-calc(50% - 48px);
    top: calc(50% - 48px); } }

@media screen and (min-width: 60em) {
  .owl-carousel.owl-carousel--gallery .owl-nav button[class*='owl-'] {
    top: -webkit-calc(50% - 48px);
    top: calc(50% - 48px); } }

@media screen and (min-width: 90.075em) {
  .owl-carousel.owl-carousel--gallery .owl-nav button[class*='owl-'] {
    top: -webkit-calc(50% - 48px);
    top: calc(50% - 48px); } }

.owl-carousel .owl-nav button[class*='owl-']:hover {
  text-decoration: none; }

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s; }

.owl-carousel .owl-nav button.owl-prev {
  left: 0; }

.owl-carousel .owl-nav button.owl-next {
  right: 0; }

.owl-carousel .owl-nav button.owl-prev:before,
.owl-carousel .owl-nav button.owl-next:before {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  color: #ffffff;
  content: '\e75d';
  display: block;
  line-height: 48px;
  height: 48px;
  height: 3rem;
  font-family: "fontello";
  font-size: 19.2px;
  font-size: 1.2rem;
  text-align: center;
  width: 48px;
  width: 3rem; }

.owl-carousel .owl-nav button.owl-prev:hover:before,
.owl-carousel .owl-nav button.owl-next:hover:before {
  -webkit-transform: translateX(4px);
  -ms-transform: translateX(4px);
      transform: translateX(4px); }
  @media screen and (min-width: 48em) {
    .owl-carousel .owl-nav button.owl-prev:hover:before,
    .owl-carousel .owl-nav button.owl-next:hover:before {
      color: #eaeaea; } }

.owl-carousel .owl-nav button.owl-prev:hover:before {
  -webkit-transform: translateX(-4px);
  -ms-transform: translateX(-4px);
      transform: translateX(-4px); }

.owl-carousel .owl-nav button.owl-next:before {
  content: '\e75e'; }

.owl-carousel .owl-nav button.owl-next:before {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

.owl-carousel .owl-nav button.owl-prev:before {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

.tooltipped {
  position: relative; }

.tooltipped::after {
  position: absolute;
  z-index: 1000000;
  display: none;
  padding: 5px 8px;
  font: 8px;
  font-family: "gill-sans-nova", sans-serif;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: break-word;
  white-space: pre;
  pointer-events: none;
  content: attr(aria-label);
  background: #305983;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  -webkit-font-smoothing: subpixel-antialiased;
  opacity: 0; }

.tooltipped::before {
  position: absolute;
  z-index: 1000001;
  display: none;
  width: 0;
  height: 0;
  color: #305983;
  pointer-events: none;
  content: "";
  border: 5px solid transparent;
  opacity: 0; }

@-webkit-keyframes tooltip-appear {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes tooltip-appear {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.tooltipped:hover::before, .tooltipped:hover::after,
.tooltipped:active::before,
.tooltipped:active::after,
.tooltipped:focus::before,
.tooltipped:focus::after {
  display: inline-block;
  text-decoration: none;
  -webkit-animation-name: tooltip-appear;
          animation-name: tooltip-appear;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s; }

.tooltipped-no-delay:hover::before, .tooltipped-no-delay:hover::after,
.tooltipped-no-delay:active::before,
.tooltipped-no-delay:active::after,
.tooltipped-no-delay:focus::before,
.tooltipped-no-delay:focus::after {
  opacity: 1;
  -webkit-animation: none;
          animation: none; }

.tooltipped-multiline:hover::after,
.tooltipped-multiline:active::after,
.tooltipped-multiline:focus::after {
  display: table-cell; }

.tooltipped-s::after,
.tooltipped-se::after,
.tooltipped-sw::after {
  top: 100%;
  right: 50%;
  margin-top: 5px; }

.tooltipped-s::before,
.tooltipped-se::before,
.tooltipped-sw::before {
  top: auto;
  right: 50%;
  bottom: -5px;
  margin-right: -5px;
  border-bottom-color: #305983; }

.tooltipped-se::after {
  right: auto;
  left: 50%;
  margin-left: -15px; }

.tooltipped-sw::after {
  margin-right: -15px; }

.tooltipped-n::after,
.tooltipped-ne::after,
.tooltipped-nw::after {
  right: 50%;
  bottom: 100%;
  margin-bottom: 5px; }

.tooltipped-n::before,
.tooltipped-ne::before,
.tooltipped-nw::before {
  top: -5px;
  right: 50%;
  bottom: auto;
  margin-right: -5px;
  border-top-color: #305983; }

.tooltipped-ne::after {
  right: auto;
  left: 50%;
  margin-left: -15px; }

.tooltipped-nw::after {
  margin-right: -15px; }

.tooltipped-s::after,
.tooltipped-n::after {
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%); }

.tooltipped-w::after {
  right: 100%;
  bottom: 50%;
  margin-right: 5px;
  -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%); }

.tooltipped-w::before {
  top: 50%;
  bottom: 50%;
  left: -5px;
  margin-top: -5px;
  border-left-color: #305983; }

.tooltipped-e::after {
  bottom: 50%;
  left: 100%;
  margin-left: 5px;
  -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%); }

.tooltipped-e::before {
  top: 50%;
  right: -5px;
  bottom: 50%;
  margin-top: -5px;
  border-right-color: #305983; }

.touch .list--inline-icons .list__item {
  float: none; }
  .touch .list--inline-icons .list__item.tooltipped::after {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    background-color: transparent;
    margin-bottom: 0;
    display: inline-block;
    opacity: 1;
    word-wrap: normal;
    white-space: normal;
    text-align: left;
    vertical-align: middle;
    content: attr(aria-label);
    color: #424241;
    padding-left: 50px;
    line-height: 1.2; }
  .touch .list--inline-icons .list__item.tooltipped::before {
    display: none; }

.lg-actions .lg-next, .lg-actions .lg-prev, .lg-sub-html, .lg-toolbar {
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1080; }

#lg-counter, .lg-outer .lg-video-cont {
  vertical-align: middle;
  display: inline-block; }

@font-face {
  font-family: lg;
  src: url(../fonts/fonts-lightgallery/lg.eot?n1z373);
  src: url(../fonts/fonts-lightgallery/lg.eot?#iefixn1z373) format("embedded-opentype"), url(../fonts/fonts-lightgallery/lg.woff?n1z373) format("woff"), url(../fonts/fonts-lightgallery/lg.ttf?n1z373) format("truetype"), url(../fonts/fonts-lightgallery/lg.svg?n1z373#lg) format("svg");
  font-weight: 400;
  font-style: normal; }

.lg-icon {
  font-family: lg;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.lg-actions .lg-next, .lg-actions .lg-prev {
  -webkit-border-radius: 2px;
          border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%; }

.lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
  pointer-events: none;
  opacity: .5; }

.lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
  color: #FFF; }

.lg-actions .lg-next {
  right: 20px; }

.lg-actions .lg-next:before {
  content: "\e095"; }

.lg-actions .lg-prev {
  left: 20px; }

.lg-actions .lg-prev:after {
  content: "\e094"; }

@-webkit-keyframes lg-right-end {
  0%, 100% {
    left: 0; }
  50% {
    left: -30px; } }

@keyframes lg-right-end {
  0%, 100% {
    left: 0; }
  50% {
    left: -30px; } }

@-webkit-keyframes lg-left-end {
  0%, 100% {
    left: 0; }
  50% {
    left: 30px; } }

@keyframes lg-left-end {
  0%, 100% {
    left: 0; }
  50% {
    left: 30px; } }

.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end .3s;
  animation: lg-right-end .3s;
  position: relative; }

.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end .3s;
  animation: lg-left-end .3s;
  position: relative; }

.lg-toolbar {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%; }

.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: 0; }

.lg-toolbar .lg-icon:hover {
  color: #FFF; }

.lg-toolbar .lg-close:after {
  content: "\e070"; }

.lg-toolbar .lg-download:after {
  content: "\e0f2"; }

.lg-sub-html {
  bottom: 0;
  color: #EEE;
  font-size: 16px;
  left: 0;
  padding: 20px 40px;
  position: fixed;
  right: 0;
  text-align: center; }

.lg-sub-html h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700; }

.lg-sub-html p {
  font-size: 16px;
  margin: 5px 0 0; }

#lg-counter {
  color: #999;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px; }

.lg-next, .lg-prev, .lg-toolbar {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
  -webkit-transition: opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s; }

.lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0); }

.lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0); }

.lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0); }

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
  -webkit-transition: -webkit-transform 250ms ease 0s, opacity 250ms !important;
  -webkit-transition: opacity 250ms, -webkit-transform 250ms ease 0s !important;
  transition: opacity 250ms, -webkit-transform 250ms ease 0s !important;
  transition: transform 250ms ease 0s, opacity 250ms !important;
  transition: transform 250ms ease 0s, opacity 250ms, -webkit-transform 250ms ease 0s !important;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%; }

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1; }

.lg-outer .lg-thumb-outer {
  background-color: #0D0A0A;
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 1080;
  max-height: 350px;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s; }

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab; }

.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing; }

.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important; }

.lg-outer.lg-thumb-open .lg-thumb-outer {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.lg-outer .lg-thumb {
  padding: 10px 0;
  height: 100%;
  margin-bottom: -5px; }

.lg-outer .lg-thumb-item {
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border: 2px solid #FFF;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  margin-bottom: 5px; }

@media (min-width: 1025px) {
  .lg-outer .lg-thumb-item {
    -webkit-transition: border-color .25s ease;
    transition: border-color .25s ease; } }

.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  border-color: #a90707; }

.lg-outer .lg-thumb-item img {
  width: 100%;
  height: 100%; }

.lg-outer.lg-has-thumb .lg-item {
  padding-bottom: 120px; }

.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0; }

.lg-outer.lg-pull-caption-up .lg-sub-html {
  -webkit-transition: bottom .25s ease;
  transition: bottom .25s ease; }

.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  bottom: 100px; }

.lg-outer .lg-toogle-thumb {
  background-color: #0D0A0A;
  -webkit-border-radius: 2px 2px 0 0;
          border-radius: 2px 2px 0 0;
  color: #999;
  cursor: pointer;
  font-size: 24px;
  height: 39px;
  line-height: 27px;
  padding: 5px 0;
  position: absolute;
  right: 20px;
  text-align: center;
  top: -39px;
  width: 50px; }

.lg-outer .lg-toogle-thumb:after {
  content: "\e1ff"; }

.lg-outer .lg-toogle-thumb:hover {
  color: #FFF; }

.lg-outer .lg-video-cont {
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 0 5px; }

.lg-outer .lg-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative; }

.lg-outer .lg-video .lg-object {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important; }

.lg-outer .lg-video .lg-video-play {
  width: 84px;
  height: 59px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -42px;
  margin-top: -30px;
  z-index: 1080;
  cursor: pointer; }

.lg-outer .lg-has-vimeo .lg-video-play {
  background: url(../img/vimeo-play.png) no-repeat; }

.lg-outer .lg-has-vimeo:hover .lg-video-play {
  background: url(../img/vimeo-play.png) 0 -58px no-repeat; }

.lg-outer .lg-has-html5 .lg-video-play {
  background: url(../img/video-play.png) no-repeat;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  width: 64px;
  opacity: .8; }

.lg-outer .lg-has-html5:hover .lg-video-play {
  opacity: 1; }

.lg-outer .lg-has-youtube .lg-video-play {
  background: url(../img/youtube-play.png) no-repeat; }

.lg-outer .lg-has-youtube:hover .lg-video-play {
  background: url(../img/youtube-play.png) 0 -60px no-repeat; }

.lg-outer .lg-video-object {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0; }

.lg-outer .lg-has-video .lg-video-object {
  visibility: hidden; }

.lg-outer .lg-has-video.lg-video-playing .lg-object, .lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  display: none; }

.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  visibility: visible; }

.lg-progress-bar {
  background-color: #333;
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1080;
  opacity: 0;
  -webkit-transition: opacity 80ms ease 0s;
  transition: opacity 80ms ease 0s; }

.lg-progress-bar .lg-progress {
  background-color: #a90707;
  height: 5px;
  width: 0; }

.lg-progress-bar.lg-start .lg-progress {
  width: 100%; }

.lg-show-autoplay .lg-progress-bar {
  opacity: 1; }

.lg-autoplay-button:after {
  content: "\e01d"; }

.lg-show-autoplay .lg-autoplay-button:after {
  content: "\e01a"; }

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image, .lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition-duration: 0s;
  transition-duration: 0s; }

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: -webkit-transform .3s ease 0s;
  transition: -webkit-transform .3s ease 0s;
  transition: transform .3s ease 0s;
  transition: transform .3s ease 0s, -webkit-transform .3s ease 0s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.3s ease 0s, opacity 0.15s !important;
  -webkit-transition: opacity 0.15s, -webkit-transform 0.3s ease 0s !important;
  transition: opacity 0.15s, -webkit-transform 0.3s ease 0s !important;
  transition: transform 0.3s ease 0s, opacity 0.15s !important;
  transition: transform 0.3s ease 0s, opacity 0.15s, -webkit-transform 0.3s ease 0s !important;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

#lg-zoom-in:after {
  content: "\e311"; }

#lg-actual-size {
  font-size: 20px; }

#lg-actual-size:after {
  content: "\e033"; }

#lg-zoom-out {
  opacity: .5;
  pointer-events: none; }

#lg-zoom-out:after {
  content: "\e312"; }

.lg-zoomed #lg-zoom-out {
  opacity: 1;
  pointer-events: auto; }

.lg-outer .lg-pager-outer {
  bottom: 60px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 1080;
  height: 10px; }

.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  overflow: visible; }

.lg-outer .lg-pager-cont {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  margin: 0 5px; }

.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  -webkit-box-shadow: 0 0 0 2px #fff inset;
          box-shadow: 0 0 0 2px #fff inset; }

.lg-outer .lg-pager-thumb-cont {
  background-color: #fff;
  color: #FFF;
  bottom: 100%;
  height: 83px;
  left: 0;
  margin-bottom: 20px;
  margin-left: -60px;
  opacity: 0;
  padding: 5px;
  position: absolute;
  width: 120px;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  -webkit-transition: opacity .15s ease 0s,-webkit-transform .15s ease 0s;
  transition: opacity .15s ease 0s,-webkit-transform .15s ease 0s;
  transition: opacity .15s ease 0s,transform .15s ease 0s;
  transition: opacity .15s ease 0s,transform .15s ease 0s,-webkit-transform .15s ease 0s;
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0); }

.lg-outer .lg-pager-thumb-cont img {
  width: 100%;
  height: 100%; }

.lg-outer .lg-pager {
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 50%;
          border-radius: 50%;
  -webkit-box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
          box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  display: block;
  height: 12px;
  -webkit-transition: box-shadow .3s ease 0s;
  -webkit-transition: -webkit-box-shadow .3s ease 0s;
  transition: -webkit-box-shadow .3s ease 0s;
  transition: box-shadow .3s ease 0s;
  transition: box-shadow .3s ease 0s, -webkit-box-shadow .3s ease 0s;
  width: 12px; }

.lg-outer .lg-pager:focus, .lg-outer .lg-pager:hover {
  -webkit-box-shadow: 0 0 0 8px #fff inset;
          box-shadow: 0 0 0 8px #fff inset; }

.lg-outer .lg-caret {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px dashed;
  bottom: -10px;
  display: inline-block;
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  vertical-align: middle;
  width: 0; }

.lg-outer, .lg-outer .lg, .lg-outer .lg-inner {
  width: 100%;
  height: 100%; }

.lg-fullscreen:after {
  content: "\e20c"; }

.lg-fullscreen-on .lg-fullscreen:after {
  content: "\e20d"; }

.group:after, .group:before {
  display: table;
  content: "";
  line-height: 0; }

.group:after {
  clear: both; }

.lg-outer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  opacity: 0;
  -webkit-transition: opacity .15s ease 0s;
  transition: opacity .15s ease 0s; }

.lg-outer * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.lg-outer.lg-visible {
  opacity: 1; }

.lg-outer.lg-css3 .lg-item.lg-current, .lg-outer.lg-css3 .lg-item.lg-next-slide, .lg-outer.lg-css3 .lg-item.lg-prev-slide {
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important; }

.lg-outer.lg-css3.lg-dragging .lg-item.lg-current, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1; }

.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab; }

.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing; }

.lg-outer .lg {
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  max-height: 100%; }

.lg-outer .lg-inner {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap; }

.lg-outer .lg-item {
  background: url(../images/loading.gif) center center no-repeat;
  display: none !important; }

.lg-outer.lg-css .lg-current, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide, .lg-outer.lg-css3 .lg-prev-slide {
  display: inline-block !important; }

.lg-outer .lg-img-wrap, .lg-outer .lg-item {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%; }

.lg-outer .lg-img-wrap:before, .lg-outer .lg-item:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px; }

.lg-outer .lg-img-wrap {
  position: static;
  padding: 0 5px; }

.lg-outer .lg-item.lg-complete {
  background-image: none; }

.lg-outer .lg-item.lg-current {
  z-index: 1060; }

.lg-outer .lg-image {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important; }

.lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
  opacity: 0;
  -webkit-transition: opacity .15s ease 0s;
  transition: opacity .15s ease 0s; }

.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object, .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
  opacity: 1; }

.lg-outer .lg-empty-html, .lg-outer.lg-hide-download #lg-download {
  display: none; }

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity .15s ease 0s;
  transition: opacity .15s ease 0s; }

.lg-backdrop.in {
  opacity: 1; }

.lg-css3.lg-no-trans .lg-current, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-prev-slide {
  -webkit-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important; }

.lg-css3.lg-use-css3 .lg-item, .lg-css3.lg-use-left .lg-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.lg-css3.lg-fade .lg-item {
  opacity: 0; }

.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1; }

.lg-css3.lg-fade .lg-item.lg-current, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-prev-slide {
  -webkit-transition: opacity .1s ease 0s;
  transition: opacity .1s ease 0s; }

.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0; }

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1; }

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s; }

.lg-css3.lg-slide.lg-use-left .lg-item {
  opacity: 0;
  position: absolute;
  left: 0; }

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  left: -100%; }

.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  left: 100%; }

.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  left: 0;
  opacity: 1; }

.lg-css3.lg-slide.lg-use-left .lg-item.lg-current, .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s; }

.hero {
  background-color: #383837;
  position: relative;
  overflow: hidden; }
  @media screen and (min-width: 60em) {
    .has-sub-nav .hero {
      margin-top: -48px; } }

.hero__item {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 300px; }
  @media screen and (min-width: 40em) {
    .hero__item {
      height: 400px; } }
  @media screen and (min-width: 48em) {
    .hero__item {
      height: 500px; } }
  @media screen and (min-width: 48em) {
    .hero__item {
      height: 550px; } }
  .hero__item:before {
    display: none; }
    @media screen and (min-width: 48em) {
      .hero__item:before {
        content: '';
        background-image: url("/content/images/home-mask.png");
        display: block;
        height: 800px;
        position: absolute;
        left: -400px;
        width: 1035px;
        top: 10%;
        z-index: 0; } }
    @media screen and (min-width: 60em) {
      .hero__item:before {
        left: -310px; } }
    @media screen and (min-width: 90.075em) {
      .hero__item:before {
        left: -115px; } }

.hero__header {
  background: #424241;
  z-index: 10;
  padding-top: 24px;
  padding-top: 1.5rem;
  position: relative; }
  .hero__header:before, .hero__header:after {
    content: "";
    display: table; }
  .hero__header:after {
    clear: both; }
  @media screen and (min-width: 48em) {
    .hero__header {
      background: transparent;
      top: 15%;
      left: 50%;
      margin-left: -50%;
      position: absolute;
      width: 100%; } }

@media screen and (min-width: 48em) {
  .hero__gutter {
    padding-left: 10px; } }

@media screen and (min-width: 60em) {
  .hero__gutter {
    padding-left: 0; } }

.hero__title--primary {
  color: #ffffff;
  font-size: 32px;
  font-size: 2rem;
  line-height: 35.2px;
  line-height: 2.2rem; }
  @media screen and (min-width: 48em) {
    .hero__title--primary {
      font-size: 2.2rem;
      line-height: 2.6rem; } }
  @media screen and (min-width: 60em) {
    .hero__title--primary {
      font-size: 2.4rem;
      line-height: 2.8rem; } }
  @media screen and (min-width: 48em) {
    .hero__title--primary span {
      display: block;
      line-height: 4.2rem;
      font-size: 5rem;
      font-weight: 700;
      margin-bottom: 0.5rem; } }

.hero__title--secondary {
  color: #ffffff;
  font-size: 32px;
  font-size: 2rem;
  line-height: 35.2px;
  line-height: 2.2rem; }
  @media screen and (min-width: 48em) {
    .hero__title--secondary {
      font-size: 2.8rem;
      line-height: 3.2rem; } }
  @media screen and (min-width: 90.075em) {
    .hero__title--secondary {
      font-size: 3.6rem;
      line-height: 3.8rem;
      padding-right: 3rem; } }

.hero__location {
  color: #dddddd;
  background-color: rgba(0, 0, 0, 0.4);
  top: 257px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  padding: 9.6px 16px;
  padding: 0.6rem 1rem;
  position: absolute;
  z-index: 10;
  right: 0;
  text-align: right;
  width: 100%; }
  @media screen and (min-width: 40em) {
    .hero__location {
      font-size: 1.1rem;
      top: 357px; } }
  @media screen and (min-width: 48em) {
    .hero__location {
      top: auto;
      bottom: 99px;
      left: 15%;
      right: auto;
      width: 60%;
      text-align: left; } }
  @media screen and (min-width: 60em) {
    .hero__location {
      left: 20%;
      width: 39%; } }
  @media screen and (min-width: 75em) {
    .hero__location {
      left: 35%; } }

.location-search__link {
  float: left;
  margin-right: 15px; }
  @media screen and (max-width: 48em) {
    .location-search__link {
      display: block;
      float: none;
      margin-right: 0; }
      .location-search__link:not(:last-child) {
        border-bottom: 1px solid black;
        margin-bottom: 10px;
        padding-bottom: 10px; }
      .location-search__link:before {
        width: 35px;
        height: 35px;
        margin-right: 10px;
        line-height: 35px;
        background: black;
        -webkit-border-radius: 50%;
                border-radius: 50%; } }

@media screen and (min-width: 48em) {
  .hero__location--visit {
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
    width: 40%;
    text-align: left;
    z-index: 9990; } }

@media screen and (min-width: 60em) {
  .hero__location--visit {
    left: auto;
    right: 0;
    width: 25%; } }

@media screen and (min-width: 70em) {
  .hero__location--visit {
    left: auto;
    right: 0; } }

@media screen and (min-width: 75em) {
  .hero__location--visit {
    left: auto;
    right: 0; } }

.hero__location--visit--left {
  left: 0;
  right: auto; }
  .hero__location--visit--left a {
    float: right; }
    @media (max-width: 48em) {
      .hero__location--visit--left a {
        float: left; } }

.hero-logo {
  height: 0;
  padding-bottom: 0;
  padding-top: 0;
  position: relative;
  width: 100%;
  z-index: 9991; }
  @media screen and (min-width: 48em) {
    .hero-logo {
      padding-bottom: 5rem;
      padding-top: 1rem;
      position: absolute;
      bottom: 0;
      right: 1.25%; } }
  .hero-logo:after {
    content: '';
    background-color: rgba(50, 50, 50, 0.8);
    width: 96%;
    float: right;
    z-index: -1;
    height: 100%;
    position: relative;
    top: -86px; }
    @media screen and (min-width: 48em) {
      .hero-logo:after {
        width: 25%;
        height: 150px; } }

.hero-logo__image {
  display: block;
  float: left;
  z-index: 99; }

/*.hero__intro{
    color:$white;
	@include respond-min($large){
        position: absolute;
        display: block;
        bottom:99px;
        left:45%;
        width: 420px;
        height: 350px;
	}
}*/
.hero__intro {
  color: #ffffff; }
  @media screen and (min-width: 60em) {
    .hero__intro {
      max-width: 460px; } }

.hero__figures {
  display: none;
  z-index: 9999; }
  @media screen and (min-width: 48em) {
    .hero__figures {
      background-size: contain;
      position: absolute;
      display: block;
      bottom: 99px;
      left: 45%;
      width: 420px;
      height: 350px; } }
  @media screen and (min-width: 60em) {
    .hero__figures {
      left: 50%;
      width: 500px;
      height: 417px; } }

@media screen and (min-width: 40em) {
  .hero--home .hero__item:before {
    top: 5%; } }

.hero--landing .hero__figures {
  z-index: 9; }
  @media screen and (min-width: 48em) {
    .hero--landing .hero__figures {
      width: 580px;
      height: 484px;
      bottom: 0; } }

@media (min-width: 48em) {
  .hero--no-overlap .hero__header {
    top: 30%; } }

@media (min-width: 60em) {
  .hero--no-overlap .hero__header {
    top: 35%; } }

.commercial--landing .hero__item {
  background-position: bottom center; }
  .commercial--landing .hero__item:after {
    display: none; }
  @media screen and (min-width: 48em) {
    .commercial--landing .hero__item:after {
      bottom: 0; } }

.commercial--landing .hero__intro {
  color: #ffffff; }
  @media screen and (min-width: 60em) {
    .commercial--landing .hero__intro {
      max-width: 540px; } }

@media screen and (min-width: 48em) {
  .commercial--landing .hero__header {
    top: 22%; } }

@media screen and (min-width: 48em) {
  .commercial--landing .hero__location {
    bottom: 0;
    right: 0;
    left: auto;
    width: 50%; } }

.pullup-home {
  margin-top: 24px;
  margin-top: 1.5rem; }
  @media screen and (min-width: 48em) {
    .pullup-home {
      padding: 1.1rem;
      margin-top: -100px;
      position: relative;
      z-index: 2; } }

.hero--exhibition .wrapper {
  max-width: 1200px; }

@media screen and (min-width: 48em) {
  .hero--exhibition .hero__header {
    background: black;
    background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 56%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(56%, rgba(0, 0, 0, 0.8)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 56%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 56%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#00d4ff",GradientType=1);
    top: auto;
    bottom: 0; } }

.hero--exhibition .hero__item:before {
  display: none; }

@media screen and (min-width: 48em) {
  .hero--exhibition .hero__title--primary span {
    font-size: 2.2rem;
    line-height: 2.4rem;
    font-weight: 300;
    margin-bottom: 12px; } }
  @media screen and (min-width: 48em) and (min-width: 48em) {
    .hero--exhibition .hero__title--primary span {
      font-size: 3rem;
      line-height: 3.4rem; } }
  @media screen and (min-width: 48em) and (min-width: 60em) {
    .hero--exhibition .hero__title--primary span {
      font-size: 3.8rem;
      line-height: 4rem; } }

.hero--exhibition .hero__intro {
  font-size: 19.2px;
  font-size: 1.2rem;
  line-height: 22.4px;
  line-height: 1.4rem; }
  @media screen and (min-width: 60em) {
    .hero--exhibition .hero__intro {
      max-width: 100%; } }

.hs-logo-new {
  max-width: 220px;
  max-height: 66px; }

.history-logo {
  max-width: 235px;
  max-height: 80px;
  margin: 0 auto;
  float: none; }

.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0; }

.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0; }

.rslides li:first-child {
  position: relative;
  display: block;
  float: left; }

.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0; }

.rslides_nav {
  position: absolute;
  bottom: 50%;
  left: 0;
  z-index: 99;
  opacity: 0.7;
  text-indent: -9999px;
  overflow: hidden;
  text-decoration: none;
  height: 61px;
  width: 38px;
  background: transparent url("../images/common/themes.gif") no-repeat left top;
  margin-top: -45px; }

.rslides_nav:active {
  opacity: 1.0; }

.rslides_nav.next {
  left: auto;
  background-position: right top;
  right: 0; }

.rslides_nav:focus {
  outline: none; }

.rslides_tabs {
  position: absolute;
  bottom: 10%;
  right: 0;
  font-size: 0.9em;
  font-weight: 700;
  list-style: none;
  padding: 1em;
  margin: 0;
  text-align: center;
  z-index: 999999; }

.rslides_tabs li {
  display: inline;
  float: none;
  margin-right: 1px; }

.rslides_tabs a {
  width: auto;
  line-height: 20px;
  padding: 9px 20px;
  height: auto;
  background: transparent;
  display: inline; }

.rslides_tabs a:hover {
  border: 0; }

.rslides_tabs li:first-child {
  margin-left: 0; }

.rslides_tabs .rslides_here a {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: bold; }

.home-hero-btns_nav {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  display: block;
  z-index: 3;
  position: absolute;
  top: 35%;
  left: 0;
  opacity: 0.4;
  text-indent: -9999px;
  overflow: hidden;
  text-decoration: none;
  height: 48px;
  width: 48px;
  background: transparent url("../images/slider-nav.svg") no-repeat;
  background-position: left top;
  margin-top: -45px;
  opacity: 0.8; }
  .home-hero-btns_nav:hover {
    opacity: 0.6; }
  @media screen and (min-width: 48em) {
    .home-hero-btns_nav {
      background-position: 12px 0;
      left: -22px;
      top: 50%; } }
  @media screen and (min-width: 80em) {
    .home-hero-btns_nav {
      background-position: left top;
      left: 0; } }

.home-hero-btns_nav.next {
  left: auto;
  background-position: right top;
  right: 0; }
  @media screen and (min-width: 48em) {
    .home-hero-btns_nav.next {
      background-position: -59px 0;
      right: -22px; } }
  @media screen and (min-width: 80em) {
    .home-hero-btns_nav.next {
      background-position: right top;
      right: 0; } }

.home-hero-btns_tabs {
  text-align: center; }
  @media screen and (min-width: 48em) {
    .home-hero-btns_tabs {
      top: 63%;
      left: 0;
      right: 0;
      text-align: left;
      margin: 0 auto;
      max-width: 1400px;
      width: 96%;
      padding-left: 1.25%;
      padding-right: 1.25%;
      position: absolute;
      z-index: 9999; } }
  @media screen and (min-width: 60em) {
    .home-hero-btns_tabs {
      max-width: 1200px;
      width: 96%; } }
  @media screen and (min-width: 90.075em) {
    .home-hero-btns_tabs {
      max-width: 1400px;
      width: 96%; } }
  .home-hero-btns_tabs li {
    display: inline;
    float: none;
    margin-right: 5px; }
  .home-hero-btns_tabs a {
    -webkit-border-radius: 15px;
    border-radius: 15px;
    text-indent: -9999px;
    overflow: hidden;
    background: #2C3E50;
    display: inline-block;
    width: 14px;
    height: 14px; }
  .home-hero-btns_tabs .home-hero-btns_here a {
    background: #ACDFFA; }

/* Gallery slider */
.gallery-slider {
  position: relative; }
  .gallery-slider ul {
    margin: 0; }
  .gallery-slider .home-hero-btns_nav {
    top: 50%;
    height: 48px;
    width: 48px;
    margin-top: 0;
    opacity: 1; }
    .gallery-slider .home-hero-btns_nav.next {
      background-position: left top;
      left: auto;
      right: -8px;
      right: -0.5rem;
      -webkit-transform: translateY(-50%) rotate(180deg);
          -ms-transform: translateY(-50%) rotate(180deg);
              transform: translateY(-50%) rotate(180deg);
      -webkit-transition: 0.1s all ease;
      transition: 0.1s all ease; }
      .gallery-slider .home-hero-btns_nav.next:hover {
        background-position: -4px 0px; }
    .gallery-slider .home-hero-btns_nav.prev {
      left: -8px;
      left: -0.5rem;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      -webkit-transition: 0.1s all ease;
      transition: 0.1s all ease; }
      .gallery-slider .home-hero-btns_nav.prev:hover {
        background-position: -4px 0px; }
  .gallery-slider .gallery-slider__controls {
    text-align: center; }
    .gallery-slider .gallery-slider__controls ul {
      bottom: -16px;
      bottom: -1rem;
      display: inline-block;
      height: 18px;
      left: 50%;
      position: absolute;
      text-align: center;
      top: auto;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      width: 100%; }
      .gallery-slider .gallery-slider__controls ul li {
        margin-right: 0; }
      .gallery-slider .gallery-slider__controls ul a {
        background: #869791;
        height: 12px;
        margin: 5px 7px;
        opacity: 0.5;
        width: 12px; }
      .gallery-slider .gallery-slider__controls ul .home-hero-btns_here a {
        opacity: 1.0; }
  .gallery-slider div:not(.competition-gallery__gallery-header) {
    margin-bottom: 0; }
  .gallery-slider .owl-buttons .owl-prev {
    left: -8px;
    left: -0.5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
  .gallery-slider .owl-buttons .owl-next {
    right: -8px;
    right: -0.5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }
  .gallery-slider .owl-controls .owl-page span {
    height: 8px;
    margin: 5px 2px;
    width: 8px; }
    @media screen and (min-width: 48em) {
      .gallery-slider .owl-controls .owl-page span {
        height: 12px;
        margin: 5px 7px;
        width: 12px; } }
  .gallery-slider .owl-pagination {
    left: 50%;
    position: absolute;
    text-align: center;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%); }
    .gallery-slider .owl-pagination ul {
      bottom: -16px;
      bottom: -1rem;
      display: inline-block;
      height: 18px;
      left: 50%;
      position: absolute;
      text-align: center;
      top: auto;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      width: 100%; }
      .gallery-slider .owl-pagination ul li {
        margin-right: 0; }
      .gallery-slider .owl-pagination ul a {
        background: #869791;
        height: 12px;
        margin: 5px 7px;
        opacity: 0.5;
        width: 12px; }
      .gallery-slider .owl-pagination ul .home-hero-btns_here a {
        opacity: 1.0; }

.pika-single {
  z-index: 99999;
  display: block;
  position: relative;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }

.pika-single:before,
.pika-single:after {
  content: " ";
  display: table; }

.pika-single:after {
  clear: both; }

.pika-single.is-hidden {
  display: none; }

.pika-single.is-bound {
  position: absolute !important;
  -webkit-box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
          box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5); }

.pika-lendar {
  float: left;
  width: 240px;
  margin: 8px; }

.pika-title {
  position: relative;
  text-align: center; }

.pika-label {
  display: inline-block;
  position: relative;
  z-index: 9999;
  overflow: hidden;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  background-color: #fff; }

.pika-title select {
  cursor: pointer;
  position: absolute;
  z-index: 9998;
  margin: 0;
  left: 0;
  top: 5px;
  filter: alpha(opacity=0);
  opacity: 0; }

.pika-prev,
.pika-next {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  width: 20px;
  height: 30px;
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  opacity: .5; }

.pika-prev:hover,
.pika-next:hover {
  opacity: 1; }

.pika-prev,
.is-rtl .pika-next {
  float: left;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg=="); }

.pika-next,
.is-rtl .pika-prev {
  float: right;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII="); }

.pika-prev.is-disabled,
.pika-next.is-disabled {
  cursor: default;
  opacity: .2; }

.pika-select {
  display: inline-block; }

.pika-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0; }

.pika-table th,
.pika-table td {
  width: 14.285714285714286%;
  padding: 0; }

.pika-table th {
  color: #999;
  font-size: 12px;
  line-height: 25px;
  font-weight: bold;
  text-align: center; }

.pika-button {
  cursor: pointer;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: none;
  border: 0;
  margin: 0;
  width: 100%;
  padding: 5px;
  color: #666;
  font-size: 12px;
  line-height: 15px;
  text-align: right;
  background: #f5f5f5; }

.pika-week {
  font-size: 11px;
  color: #999; }

.is-today .pika-button {
  color: #33aaff;
  font-weight: bold; }

.is-selected .pika-button {
  color: #fff;
  font-weight: bold;
  background: #33aaff;
  -webkit-box-shadow: inset 0 1px 3px #178fe5;
          box-shadow: inset 0 1px 3px #178fe5;
  -webkit-border-radius: 3px;
          border-radius: 3px; }

.is-disabled .pika-button {
  pointer-events: none;
  cursor: default;
  color: #999;
  opacity: .3; }

.pika-button:hover {
  color: #fff !important;
  background: #ff8000 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-border-radius: 3px !important;
          border-radius: 3px !important; }

.pika-table abbr {
  border-bottom: none;
  cursor: help; }

.responsive-tabs__heading {
  display: none; }

.responsive-tabs__list__item {
  cursor: pointer;
  display: inline; }

@media screen and (max-width: 47.95em) {
  .responsive-tabs__list {
    display: none; }
  .responsive-tabs__heading {
    cursor: pointer;
    display: block; }
  .responsive-tabs__panel--closed-accordion-only {
    display: none; } }

@media screen and (min-width: 48em) {
  .responsive-tabs__panel--closed-accordion-only {
    display: block !important; } }

.responsive-tabs-wrapper {
  clear: both; }

.responsive-tabs-wrapper:before,
.responsive-tabs-wrapper:after {
  content: "";
  display: table; }

.responsive-tabs-wrapper:after {
  clear: both; }

.responsive-tabs__heading:focus,
.responsive-tabs__list__item:focus {
  outline: 1px solid #ccc; }

.responsive-tabs__list {
  border-bottom: solid 1px #dddddd;
  height: 48px;
  height: 3rem;
  margin: 0;
  padding: 0; }
  .responsive-tabs__list:before, .responsive-tabs__list:after {
    content: "";
    display: table; }
  .responsive-tabs__list:after {
    clear: both; }

.responsive-tabs__list__item {
  background-color: #fff;
  border-bottom: solid 1px #dddddd;
  border-right: #fff;
  color: #333333;
  cursor: pointer;
  display: block;
  font-size: 19.2px;
  font-size: 1.2rem;
  float: left;
  font-family: "gill-sans-nova", sans-serif;
  height: 48px;
  height: 3rem;
  line-height: 48px;
  line-height: 3rem;
  list-style: none;
  margin: 0;
  padding: 0 24px;
  padding: 0 1.5rem;
  position: relative; }
  .responsive-tabs__list__item:hover {
    background-color: #eaeaea;
    cursor: pointer; }

.responsive-tabs__list__item--active,
.responsive-tabs__list__item--active:hover {
  background-color: #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  color: #333333;
  cursor: pointer;
  text-shadow: none; }
  .responsive-tabs__list__item--active:before,
  .responsive-tabs__list__item--active:hover:before {
    background: #777777;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px; }

.responsive-tabs__panel {
  margin-bottom: 50px; }

@media screen and (max-width: 47.95em) {
  .responsive-tabs__heading {
    background-color: #fff;
    border-top: 2px solid #e8e8e8;
    color: #333333;
    cursor: pointer;
    font-family: "gill-sans-nova", sans-serif;
    font-size: 1.2rem;
    margin: 0;
    padding: 1rem 0 1rem 1.5rem;
    position: relative; }
  .responsive-tabs__heading:after {
    color: #007994;
    content: '\2b';
    display: block;
    font-family: "fontello";
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 1rem; }
  .responsive-tabs__heading:hover,
  .responsive-tabs__heading--active:hover {
    color: #00647A; }
  .responsive-tabs__heading--active {
    background: #fff; }
  .responsive-tabs__heading--active:after {
    content: '\2d'; } }

.responsive-tabs--commercial .responsive-tabs__list {
  border-bottom: 1px solid #eaeaea; }

.responsive-tabs--commercial .responsive-tabs__list__item {
  background: transparent;
  border: 0;
  color: #007994;
  font-size: 19.2px;
  font-size: 1.2rem; }
  @media screen and (min-width: 60em) {
    .responsive-tabs--commercial .responsive-tabs__list__item {
      border: 0; } }
  .responsive-tabs--commercial .responsive-tabs__list__item:hover {
    background-color: #ebf3f1;
    color: #00647A; }

.responsive-tabs--commercial .responsive-tabs__list__item--active,
.responsive-tabs--commercial .responsive-tabs__list__item--active:hover {
  background-color: #fff;
  color: #333333;
  border-left: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
  border-top: 1px solid #eaeaea; }
  @media screen and (min-width: 60em) {
    .responsive-tabs--commercial .responsive-tabs__list__item--active,
    .responsive-tabs--commercial .responsive-tabs__list__item--active:hover {
      border: 0; } }

@media screen and (min-width: 60em) {
  .pullup-frame {
    height: 60px; } }

@media screen and (min-width: 60em) {
  .pullup-tabs {
    margin-top: -72px; } }

/**
 * rome - Customizable date (and time) picker. Opt-in UI, no jQuery!
 * @version v2.1.22
 * @link https://github.com/bevacqua/rome
 * @license MIT
 */
.rd-container {
  display: none;
  border: 1px solid #dddddd;
  background-color: #fff;
  padding: 10px;
  text-align: center; }

.rd-container-attachment {
  position: absolute; }

.rd-month {
  display: inline-block;
  margin-right: 25px; }

.rd-month:last-child {
  margin-right: 0; }

.rd-back,
.rd-next {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  padding: 0;
  margin: 0; }

.rd-back[disabled],
.rd-next[disabled] {
  cursor: default; }

.rd-back {
  float: left; }

.rd-next {
  float: right; }

.rd-back:before {
  display: block;
  content: '\2190'; }

.rd-next:before {
  display: block;
  content: '\2192'; }

.rd-day-body {
  border: 1px solid #1B181C;
  cursor: pointer;
  text-align: center;
  padding: 4.8px 9.6px;
  padding: 0.3rem 0.6rem; }

.rd-day-selected,
.rd-time-selected,
.rd-time-option:hover {
  cursor: pointer;
  background-color: #305983;
  color: #fff; }

.rd-day-prev-month,
.rd-day-next-month {
  color: #999999; }

.rd-day-disabled {
  cursor: default;
  border: 0 none;
  color: #999999;
  background: #f9f9f9; }

.rd-time {
  position: relative;
  display: inline-block;
  margin-top: 5px;
  min-width: 80px; }

.rd-time-list {
  display: none;
  position: absolute;
  overflow-y: scroll;
  max-height: 160px;
  left: 0;
  right: 0;
  background-color: #fff;
  color: #333; }

.rd-time-selected {
  padding: 5px; }

.rd-time-option {
  padding: 5px; }

.rd-day-concealed {
  visibility: hidden; }

.rd-back:disabled,
.rd-next:disabled {
  display: none; }

.rd-day-next-month, .rd-day-prev-month {
  visibility: hidden;
  pointer-events: none; }

.rome-calender--events .rd-container,
.rome-calender--events .rd-month,
.rome-calender--events .rd-days {
  width: 100%; }

.rome-calender--events .rd-day-head,
.rome-calender--events .rd-day-body {
  width: 14.285714285714286%;
  padding: 0; }

.js-wall {
  list-style-type: none; }

.js-wall-item {
  will-change: height; }

.js-wall-trigger {
  background: transparent;
  cursor: pointer;
  display: block;
  min-height: 180px;
  width: 100%; }

.js-wall-trigger--locations {
  min-height: 416px; }
  @media screen and (min-width: 59.938em) {
    .js-wall-trigger--locations {
      min-height: 356px; } }

.js-wall-child {
  visibility: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
  border: 0;
  max-height: 0;
  z-index: 2;
  background: #262626;
  /*transition: max-height 500ms ease-in;*/ }

.js-wall-button-close,
.js-wall-button-previous,
.js-wall-button-next {
  background: transparent;
  border: none;
  color: #666666;
  cursor: pointer;
  font-size: 36.8px;
  font-size: 2.3rem;
  position: absolute;
  outline: none;
  top: 40%;
  z-index: 1; }
  .js-wall-button-close:hover,
  .js-wall-button-previous:hover,
  .js-wall-button-next:hover {
    color: #305983; }

.js-wall-button-previous,
.js-wall-button-next {
  display: none; }
  @media screen and (min-width: 48em) {
    .js-wall-button-previous,
    .js-wall-button-next {
      background-color: #fff;
      display: block; } }

.js-wall-button-close {
  font-size: 24px;
  font-size: 1.5rem;
  right: 24px;
  right: 1.5rem;
  top: 24px;
  top: 1.5rem; }

@media screen and (min-width: 48em) {
  .js-wall-button-previous {
    left: 0; } }

@media screen and (min-width: 48em) {
  .js-wall-button-next {
    right: 0; } }

.js-wall-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  clear: left;
  overflow: hidden; }

.js-wall-panel-inner {
  opacity: 0;
  will-change: opacity;
  -webkit-transition: opacity 333ms ease;
  transition: opacity 333ms ease; }

.js-is-animating.js-wall--on .js-wall-panel-inner {
  opacity: 0;
  -webkit-transition: opacity 333ms ease;
  transition: opacity 333ms ease; }

.js-wall--on .js-wall-panel-inner {
  opacity: 1; }

.wall-trigger {
  border-bottom: 1px solid #eaeaea;
  padding: 24px 0 24px 24px;
  padding: 1.5rem 0 1.5rem 1.5rem;
  position: relative; }
  @media screen and (min-width: 48em) {
    .wall-trigger {
      height: 10.5rem; } }
  .wall-trigger:hover {
    border-bottom: 4px solid #888888; }
    .wall-trigger:hover .wall-trigger__title {
      color: #305983; }

.js-wall-trigger[aria-expanded="true"] {
  position: relative; }
  .js-wall-trigger[aria-expanded="true"]:after {
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 18px solid #eaeaea;
    bottom: 0;
    content: '';
    height: 0;
    margin-right: -18px;
    right: 50%;
    position: absolute;
    width: 0; }

.wall-trigger__title {
  font-size: 15px;
  line-height: 1.2; }
  @media screen and (min-width: 48em) {
    .wall-trigger__title {
      font-size: 1rem;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); } }

.wall--dark .js-wall-panel {
  background-color: #424241; }

.wall--dark .js-wall-button-close {
  color: #ffffff; }
  .wall--dark .js-wall-button-close:hover {
    color: #dddddd; }

.wall--dark .js-wall-trigger[aria-expanded="true"]:after {
  border-bottom: 18px solid #424241; }

.wall--light .js-wall-panel {
  background-color: #eaeaea; }

.wall--light .js-wall-button-close {
  color: #666666; }
  .wall--light .js-wall-button-close:hover {
    color: #777777; }

.wall--light .js-wall-trigger[aria-expanded="true"]:after {
  border-bottom: 18px solid #eaeaea; }

.wall__min {
  min-height: 150px; }
  @media screen and (min-width: 40em) {
    .wall__min {
      min-height: 200px; } }
  @media screen and (min-width: 90.075em) {
    .wall__min {
      min-height: 180px; } }

.js-wall2-style .js-wall-item {
  will-change: height; }

.js-wall2-style .js-wall-trigger {
  width: 100%;
  display: block;
  cursor: pointer;
  background: transparent;
  text-align: left; }

.js-wall2-style .js-wall-child {
  visibility: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
  border: 0;
  max-height: 0;
  z-index: 2;
  background: #262626; }

.js-wall2-style .js-wall-close,
.js-wall2-style .js-wall-previous,
.js-wall2-style .js-wall-next {
  background: transparent;
  border: none;
  color: #666666;
  cursor: pointer;
  font-size: 36.8px;
  font-size: 2.3rem;
  position: absolute;
  outline: none;
  top: 40%;
  z-index: 1; }
  .js-wall2-style .js-wall-close:hover,
  .js-wall2-style .js-wall-previous:hover,
  .js-wall2-style .js-wall-next:hover {
    color: #305983; }

.js-wall2-style .js-wall-previous,
.js-wall2-style .js-wall-next {
  display: none;
  height: 36px; }
  @media screen and (min-width: 48em) {
    .js-wall2-style .js-wall-previous,
    .js-wall2-style .js-wall-next {
      background-color: #fff;
      display: block; } }

.js-wall2-style .js-wall-close {
  font-size: 24px;
  font-size: 1.5rem;
  right: 24px;
  right: 1.5rem;
  top: 24px;
  top: 1.5rem; }
  .js-wall2-style .js-wall-close svg {
    fill: #fff; }

@media screen and (min-width: 48em) {
  .js-wall2-style .js-wall-previous {
    left: 0; } }

@media screen and (min-width: 48em) {
  .js-wall2-style .js-wall-next {
    right: 0; } }

.js-wall2-style .js-wall-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  background-color: #424241;
  clear: left;
  overflow: hidden;
  visibility: hidden; }

.js-wall2-style .js-wall--is-open .js-wall-panel {
  visibility: visible;
  z-index: 1; }

.js-wall2-style .js-wall-panel-inner {
  opacity: 0;
  will-change: opacity;
  -webkit-transition: opacity 260ms ease;
  transition: opacity 260ms ease; }

.js-wall2-style .js-is-animating.js-wall--is-open .js-wall-panel-inner {
  opacity: 0;
  -webkit-transition: opacity 260ms ease;
  transition: opacity 260ms ease; }

.js-wall2-style .js-wall--is-open .js-wall-panel-inner {
  opacity: 1; }

@media (min-width: 1650px) {
  .hero--wb .hero__title--primary {
    max-width: 550px; } }

.hero--wb .hero__intro {
  max-width: 540px; }

.wb-intro {
  background: #eaeaea;
  display: block;
  padding: 48px 0 96px;
  position: relative; }

.wb-intro__content {
  font-weight: 300; }
  .wb-intro__content p {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 19.2px;
    line-height: 1.2rem;
    max-width: 74ch; }
  .wb-intro__content p:first-of-type {
    font-size: 22.4px;
    font-size: 1.4rem;
    line-height: 25.6px;
    line-height: 1.6rem;
    max-width: 64ch;
    margin-bottom: 24px; }
    @media screen and (min-width: 48em) {
      .wb-intro__content p:first-of-type {
        font-size: 1.5rem;
        line-height: 1.8rem; } }
    @media screen and (min-width: 60em) {
      .wb-intro__content p:first-of-type {
        font-size: 1.8rem;
        line-height: 2.4rem; } }

.wb-reminder {
  display: block;
  padding-bottom: 36px;
  position: relative; }

.wb-reminder__content {
  background: #305983;
  color: #ffffff;
  margin-top: 24px;
  padding: 24px 24px 24px 96px;
  position: relative; }
  .wb-reminder__content:before {
    color: #ffffff;
    content: '!';
    font-size: 90px;
    font-weight: 600;
    left: 36px;
    opacity: 0.7;
    position: absolute;
    top: 36px; }

.wb-site-list {
  display: block;
  padding: 48px 0 48px;
  position: relative; }

.wb-what-to-expect {
  background: #305983;
  color: #ffffff;
  display: block;
  padding: 72px 0 72px;
  position: relative; }

.wb-ticket-link {
  background: none;
  color: #305983;
  font-family: "gill-sans-nova", sans-serif; }

.wb-flag-list {
  list-style-type: none; }

.wb-flag-list__item {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  display: block;
  margin-bottom: 48px;
  list-style-type: none;
  position: relative; }
  .wb-flag-list__item:before {
    background: url("/Content/images/pictograms/flag-yellow.svg");
    content: '';
    display: block;
    height: 40px;
    margin-bottom: 12px;
    position: relative;
    width: 40px; }
  .wb-flag-list__item:nth-child(2):before, .wb-flag-list__item:nth-child(5):before, .wb-flag-list__item:nth-child(8):before {
    background: url("/Content/images/pictograms/flag-green.svg"); }
  .wb-flag-list__item:nth-child(3):before, .wb-flag-list__item:nth-child(6):before, .wb-flag-list__item:nth-child(9):before {
    background: url("/Content/images/pictograms/flag-blue.svg"); }

.wb-flag-list__flag {
  display: block;
  width: 40px; }

.wb-pictograms {
  background: #305983;
  color: #ffffff;
  display: block;
  overflow: hidden;
  padding: 0 0 72px;
  position: relative; }
  .wb-pictograms:after {
    background: url("/Content/images/pictograms/flags.svg");
    background-repeat: no-repeat;
    bottom: -10px;
    content: '';
    height: 140px;
    position: absolute;
    right: -20px;
    width: 140px;
    z-index: 1; }
    @media (min-width: 48em) {
      .wb-pictograms:after {
        bottom: -20px;
        height: 180px;
        right: -30px;
        width: 180px; } }
    @media (min-width: 60em) {
      .wb-pictograms:after {
        bottom: -30px;
        height: 210px;
        right: -40px;
        width: 210px; } }

.wb-pictograms__item {
  background: rgba(0, 0, 0, 0.15);
  display: block;
  margin-bottom: 24px;
  padding: 12px 24px 24px;
  position: relative;
  z-index: 2; }

.wb-pictograms__icon {
  display: block;
  margin-bottom: 12px;
  text-align: center; }
  @media (min-width: 48em) {
    .wb-pictograms__icon {
      display: inline-block;
      margin-bottom: 0;
      max-width: 200px;
      padding-right: 24px;
      width: 33%;
      vertical-align: top; } }
  @media (min-width: 60em) {
    .wb-pictograms__icon {
      max-width: 400px; } }
  .wb-pictograms__icon img {
    max-height: 180px;
    max-width: 190px; }

.wb-pictograms__content {
  display: block; }
  @media (min-width: 48em) {
    .wb-pictograms__content {
      display: inline-block;
      padding: 24px 0;
      width: 65%;
      vertical-align: top; } }
  @media (min-width: 90.075em) {
    .wb-pictograms__content {
      padding-left: 40px; } }
  .wb-pictograms__content p {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 19.2px;
    line-height: 1.2rem;
    font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
    max-width: 74ch; }

.wb-opening-soon {
  display: block;
  padding: 48px 0;
  position: relative; }

.wb-opening-soon__block {
  display: block;
  position: relative;
  margin-bottom: 36px; }
  @media (min-width: 60em) {
    .wb-opening-soon__block {
      margin-bottom: 24px; } }

.wb-opening-soon__block-title {
  border-top: 1px solid #666666;
  display: block;
  padding: 12px 0 36px; }

.wb-opening-soon__block-list {
  display: block; }

.wb-opening-soon__block-list-item {
  font-size: 19.2px;
  font-size: 1.2rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  display: block;
  font-weight: 500;
  padding: 12px 0 24px; }
  .wb-opening-soon__block-list-item span {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 19.2px;
    line-height: 1.2rem;
    color: #424241;
    display: block;
    font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
    font-weight: 400;
    margin-top: 8px; }

.wb-video {
  background: #305983;
  margin-top: 72px; }

.wb-video__content {
  margin-top: -48px;
  position: relative; }

.wb-video__wrapper {
  height: 0;
  padding-bottom: 56.25%;
  padding-top: 25px;
  position: relative; }
  .wb-video__wrapper iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%; }

.wb-list {
  background: #eaeaea;
  display: block;
  padding: 48px 0;
  position: relative; }

.wb-list__list {
  list-style-type: none; }

.wb-list__item {
  margin-bottom: 36px;
  position: relative; }
  .wb-list__item:before {
    background: url("/Content/images/pictograms/flag-yellow.svg");
    content: '';
    display: block;
    height: 40px;
    margin-bottom: 12px;
    position: relative;
    width: 40px; }
  .wb-list__item:nth-child(2):before, .wb-list__item:nth-child(5):before, .wb-list__item:nth-child(8):before {
    background: url("/Content/images/pictograms/flag-green.svg"); }
  .wb-list__item:nth-child(3):before, .wb-list__item:nth-child(6):before, .wb-list__item:nth-child(9):before {
    background: url("/Content/images/pictograms/flag-blue.svg"); }
  @media (min-width: 60em) {
    .wb-list__item {
      padding-right: 36px; } }

.wb-signpost {
  background: #eaeaea;
  display: block;
  padding-bottom: 48px;
  position: relative; }

.wb-signpost__container {
  background: #ffffff;
  display: block;
  margin-bottom: 48px;
  margin-top: 48px;
  position: relative; }

.wb-signpost__image {
  background: #ffffff;
  display: block;
  position: relative;
  overflow: hidden; }
  .wb-signpost__image img {
    position: relative;
    width: 100%; }
  @media (min-width: 48em) {
    .wb-signpost__image {
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      overflow: hidden;
      width: -webkit-calc((100% / 12)*4);
      width: calc((100% / 12)*4); }
      .wb-signpost__image img {
        -webkit-flex-shrink: 0;
            -ms-flex-negative: 0;
                flex-shrink: 0;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover; } }

.wb-signpost__content {
  display: block;
  padding: 36px 24px 12px;
  position: relative; }
  @media (min-width: 48em) {
    .wb-signpost__content {
      display: inline-block;
      padding: 36px 24px 12px 48px;
      width: -webkit-calc((100% / 12)*8);
      width: calc((100% / 12)*8); } }
  .wb-signpost__content * {
    position: relative; }

.wb-signpost__title span {
  display: inline-block;
  font-size: 60px;
  margin-top: 20px;
  position: relative; }
  .wb-signpost__title span:before {
    background: #007994;
    content: '';
    height: 1px;
    left: 5px;
    position: absolute;
    right: 5px;
    top: -30px; }
  @media (min-width: 48em) {
    .wb-signpost__title span {
      font-size: 80px; } }

.wb-signpost--texture {
  background: #ffffff; }
  .wb-signpost--texture .wb-signpost__content {
    background-color: #eaeaea;
    overflow: hidden; }
    .wb-signpost--texture .wb-signpost__content:before {
      background-color: #eaeaea;
      background-image: url("/Content/images/pictograms/bricks.png");
      background-position: center center;
      background-size: cover;
      bottom: 0;
      content: '';
      left: 0;
      opacity: 0.4;
      overflow: hidden;
      position: absolute;
      right: 0;
      top: 0;
      z-index: 1; }
    .wb-signpost--texture .wb-signpost__content * {
      z-index: 2; }

.modal {
  background-color: #ffffff;
  height: 0;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 0; }

.modal.active {
  background: rgba(0, 0, 0, 0.3);
  bottom: 0;
  height: auto;
  left: 0;
  opacity: 1;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
  text-align: center;
  visibility: visible;
  width: 100%;
  z-index: 150; }
  .modal.active .modal__content {
    background: #ffffff;
    bottom: 100px;
    -webkit-box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    top: 20vh;
    width: 90%;
    z-index: 100; }

.modal__overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1; }

.modal__close {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 10px 20px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  -webkit-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
  width: 60px; }
  .modal__close svg {
    height: 70%;
    opacity: 0.6;
    -webkit-transition: fill 0.5s ease-in-out, opacity 0.5s ease-in-out;
    transition: fill 0.5s ease-in-out, opacity 0.5s ease-in-out;
    width: 100%; }
  .modal__close:hover, .modal__close:focus {
    background-color: #eaeaea;
    cursor: pointer; }
    .modal__close:hover svg, .modal__close:focus svg {
      fill: #007994;
      opacity: 1; }

.modal__header {
  display: block;
  padding: 24px;
  padding-right: 80px;
  position: relative;
  min-height: 50px;
  text-align: left; }

.modal__title {
  font-size: 22.4px;
  font-size: 1.4rem;
  line-height: 25.6px;
  line-height: 1.6rem; }
  @media screen and (min-width: 48em) {
    .modal__title {
      font-size: 1.5rem;
      line-height: 1.8rem; } }
  @media screen and (min-width: 60em) {
    .modal__title {
      font-size: 1.8rem;
      line-height: 2.4rem; } }

.modal-link {
  font-size: 19.2px;
  font-size: 1.2rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #dddddd;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 80px 24px 24px;
  position: relative;
  min-height: 100px; }
  .modal-link svg {
    fill: #007994;
    height: 18px;
    opacity: 0;
    position: absolute;
    right: 28.8px;
    -webkit-transition: right 0.5s ease-in-out, opacity 0.5s ease-in-out;
    transition: right 0.5s ease-in-out, opacity 0.5s ease-in-out;
    width: 24px; }
  .modal-link:hover, .modal-link:focus {
    background: #eaeaea; }
    .modal-link:hover svg, .modal-link:focus svg {
      opacity: 1;
      right: 20px; }

.venue-landing {
  background-image: url("/content/images/dark_embroidery.png");
  background-color: #212121;
  padding-bottom: 48px;
  padding-bottom: 3rem;
  padding-top: 32px;
  padding-top: 2rem; }
  @media screen and (min-width: 60em) {
    .venue-landing {
      padding-bottom: 4rem;
      padding-top: 4rem;
      margin-top: -48px; } }

.venue-header {
  text-align: center;
  margin: 32px 0;
  margin: 2rem 0; }
  @media screen and (min-width: 48em) {
    .venue-header {
      margin: 1rem 0 3rem 0; } }

.venue-header__title {
  padding: 0;
  color: #ececec;
  font-size: 35.2px;
  font-size: 2.2rem;
  line-height: 38.4px;
  line-height: 2.4rem; }
  @media screen and (min-width: 48em) {
    .venue-header__title {
      font-size: 2.8rem;
      line-height: 3.2rem; } }
  @media screen and (min-width: 60em) {
    .venue-header__title {
      font-size: 3.2rem;
      line-height: 3.6rem; } }

.venue-header__sub-title {
  max-width: 50%;
  margin: 0 auto; }

.venue-header__buttons .btn {
  display: block;
  max-width: 250px;
  margin: 0 auto 8px auto;
  margin: 0 auto 0.5rem auto;
  -webkit-border-radius: 0;
          border-radius: 0; }
  .venue-header__buttons .btn:last-child {
    margin-bottom: 0; }
  .venue-header__buttons .btn:focus {
    outline: 3px solid white; }

.venue-header__buttons .btn--primary {
  background: #F9BE00;
  color: #1B181C !important;
  padding: 16px !important;
  padding: 1rem !important; }
  .venue-header__buttons .btn--primary:before, .venue-header__buttons .btn--primary:after {
    display: none; }
  .venue-header__buttons .btn--primary:focus {
    background: #262427;
    color: white !important;
    outline: 2px solid white; }

.venue-header__buttons .btn--outline {
  border-color: #F9BE00;
  -webkit-border-radius: 0;
          border-radius: 0;
  color: #F9BE00; }

.venue-header__insert {
  display: inline-block;
  padding-top: 22.4px;
  padding-top: 1.4rem;
  padding-bottom: 28.8px;
  padding-bottom: 1.8rem;
  position: relative;
  z-index: 10; }
  .venue-header__insert:before {
    -webkit-animation: tween 2s ease forwards;
            animation: tween 2s ease forwards;
    background-color: #7b7b7a;
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    right: 50%;
    width: 0;
    height: 2px; }
  .venue-header__insert:after {
    -webkit-animation: tween 2s ease forwards;
            animation: tween 2s ease forwards;
    background-color: #7b7b7a;
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 2px; }

.venue-header__insert-inner {
  display: block;
  opacity: 0;
  opacity: 1 \9;
  /*just in case ie*/
  -webkit-animation: fade-in-up ease-out 1;
          animation: fade-in-up ease-out 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  letter-spacing: 8px; }

.accent-velvet .venue-header__insert:before, .accent-velvet .venue-header__insert:after {
  background-color: #4e1e66; }

.accent-clyde .venue-header__insert:before, .accent-clyde .venue-header__insert:after {
  background-color: #c35a1a; }

.accent-staffa .venue-header__insert:before, .accent-staffa .venue-header__insert:after {
  background-color: #9184be; }

.accent-rust .venue-header__insert:before, .accent-rust .venue-header__insert:after {
  background-color: #ac3f10; }

@media screen and (min-width: 48em) {
  .not-found {
    background-image: url("/content/images/bg-404.jpg");
    background-size: cover;
    position: relative; }
    .not-found:after {
      content: '';
      background: rgba(0, 0, 0, 0.4);
      height: 100%;
      width: 100%;
      position: absolute;
      top: 0; } }

.not-found__content {
  position: relative;
  z-index: 10; }

.field-validation-error {
  color: red; }

.owl-carousel--atoz {
  margin-top: 24px;
  margin-top: 1.5rem; }
  .owl-carousel--atoz .owl-buttons {
    display: none !important; }
  .owl-carousel--atoz .item {
    margin-left: 0 !important;
    margin-right: 0 !important; }

.item__counter {
  background: #305983;
  color: #ffffff;
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center; }

.item__counter--null {
  background: #1f3a55;
  color: #ffffff; }

[hidden] {
  display: none; }

.visually-hidden {
  position: absolute;
  clip: rect(0, 0, 0, 0); }

div.awesomplete {
  position: relative; }

div.awesomplete > ul {
  position: absolute;
  left: 0;
  z-index: 100000;
  min-width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
  padding: 0;
  -webkit-border-radius: .3em;
          border-radius: .3em;
  margin: .2em 0 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0.05em 0.2em 0.6em rgba(0, 0, 0, 0.2);
          box-shadow: 0.05em 0.2em 0.6em rgba(0, 0, 0, 0.2);
  text-shadow: none; }

div.awesomplete > ul[hidden],
div.awesomplete > ul:empty {
  display: none; }

@supports ((-webkit-transform: scale(0)) or (transform: scale(0))) {
  div.awesomplete > ul {
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    -webkit-transform-origin: 1.43em -.43em;
        -ms-transform-origin: 1.43em -.43em;
            transform-origin: 1.43em -.43em; }
  div.awesomplete > ul[hidden],
  div.awesomplete > ul:empty {
    opacity: 0;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    display: block;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease; } }

div.awesomplete > ul:before {
  content: "";
  position: absolute;
  top: -.43em;
  left: 1em;
  width: 0;
  height: 0;
  padding: .4em;
  background: white;
  border: inherit;
  border-right: 0;
  border-bottom: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg); }

div.awesomplete > ul > li {
  border-bottom: 1px solid #eaeaea;
  color: #666666;
  position: relative;
  padding: .4em .5em;
  cursor: pointer; }

div.awesomplete > ul > li:hover {
  background: #eaeef3;
  color: black; }

div.awesomplete > ul > li[aria-selected="true"] {
  background: #3d6d8f;
  color: white; }

div.awesomplete mark {
  font-style: normal; }

div.awesomplete li:hover mark {
  background: #eaeef3; }

div.awesomplete li[aria-selected="true"] mark {
  color: inherit; }

.tg {
  /*
	.site-logo__link {
		display: block;
		margin: 0 auto;
		width: 250px;
		@include respond-min($medium) {
			display: block;
			margin: 0;
			width: auto;
		}
	}
	
	.site-logo {
		margin-top: 0;
		margin-bottom: 0;
		width: 250px;
		@include respond-min($medium) {
			margin-bottom: 1.3rem;
		}
	}

	.header {
		border-bottom: 2px solid $gold;

		.social {
			
			@include respond-min($medium) {
				margin-top: 18px;
			}
		}

	}

		a {
		color: $gold;
		&:hover {
			color: shade( $gold, 15% );
		}
	}
*/
  /*
	.ragged {
		margin-bottom: calc(38px + 2rem);
		position: relative;
		&:after {
			background: url("/content/images/ragged-repeat.png") repeat-x;
			bottom: -38px;
			content: "";
			display: block;
			min-height: 38px;
			left: 0;
			position: absolute;
			width: 100%;
		}
	}
	*/ }
  .tg .tg__font {
    font-family: 'Vesta W01', sans-serif; }
  .tg .hero-panel img {
    width: 100%; }
  .tg .hero-panel--closed {
    position: relative; }
    .tg .hero-panel--closed:after {
      background: #305983;
      bottom: 0;
      content: '';
      left: 0;
      opacity: 0.8;
      position: absolute;
      right: 0;
      top: 0; }
  .tg .hero-logo {
    background: rgba(50, 50, 50, 0.8);
    display: block;
    height: auto;
    padding: 0 0 12px;
    padding: 0 0 0.75rem;
    position: relative; }
    .tg .hero-logo .hero-logo__image {
      float: none;
      height: 50px;
      position: relative;
      vertical-align: baseline; }
    .tg .hero-logo:after {
      display: none; }
    @media (min-width: 48em) {
      .tg .hero-logo {
        display: inline-block;
        float: right;
        padding: 1rem 0 0.75rem;
        position: relative;
        margin-top: -100px;
        z-index: +100;
        width: 260px; }
        .tg .hero-logo .hero-logo__image {
          display: inline-block;
          height: auto;
          max-width: none;
          position: relative; } }
  @media screen and (min-width: 48em) {
    .tg .main-heading {
      padding-left: 7rem; } }
  .tg .quote {
    border: 1px solid #597a9c;
    display: none; }
    .tg .quote blockquote {
      border: 0;
      color: #f3edda;
      margin: 0;
      padding: 0 0 0 40px;
      padding: 0 0 0 2.5rem; }
      .tg .quote blockquote:before {
        border-top: 0;
        color: #77b0a4;
        margin-top: -10px;
        padding-top: 0; }
    .tg .quote cite {
      color: #f3edda;
      display: block;
      font-style: normal;
      line-height: 19.2px;
      line-height: 1.2rem;
      margin-left: 40px;
      margin-left: 2.5rem; }
    @media screen and (min-width: 48em) {
      .tg .quote {
        display: block; } }
  .tg .btn {
    background: #007994;
    -webkit-border-radius: 0px;
            border-radius: 0px;
    font-size: 16px;
    font-size: 1rem; }
    .tg .btn:hover {
      background: #3394a9;
      color: #fff; }
    .tg .btn.global-search__btn {
      background: none;
      -webkit-transition: all 0.1s ease-in-out;
      transition: all 0.1s ease-in-out; }
      .tg .btn.global-search__btn:hover {
        color: #0289A6; }
  .tg .postcode {
    border: 1px solid #77b0a4;
    padding: 16px 160px 16px 16px;
    padding: 1rem 10rem 1rem 1rem;
    width: 100%; }
  .tg .postcode__btn {
    background: #007994;
    border-bottom: 1px solid transparent;
    color: #fff;
    font-family: "gill-sans-nova", sans-serif;
    font-size: 17.6px;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 19.2px;
    line-height: 1.2rem;
    padding: 16px 24px;
    padding: 1rem 1.5rem;
    position: absolute;
    right: 0;
    top: 0; }
    .tg .postcode__btn:hover {
      background: #3394a9; }
  .tg .close-date {
    background: #f3edda;
    border: 5px solid #77b0a4;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    color: #264769;
    display: none;
    height: 96px;
    height: 6rem;
    font-size: 44px;
    font-size: 2.75rem;
    font-weight: bold;
    line-height: 86.4px;
    line-height: 5.4rem;
    position: absolute;
    left: 0;
    text-align: center;
    top: 0;
    width: 96px;
    width: 6rem; }
    .tg .close-date .intro {
      color: #305983;
      display: block;
      font-size: 12.8px;
      font-size: 0.8rem;
      line-height: 16px;
      line-height: 1rem;
      left: 50%;
      position: absolute;
      text-transform: uppercase;
      top: 8px;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%); }
    .tg .close-date .date {
      display: block;
      margin-top: -3px;
      position: relative; }
    .tg .close-date .month {
      bottom: 6px;
      color: #305983;
      display: block;
      font-size: 17.6px;
      font-size: 1.1rem;
      line-height: 19.2px;
      line-height: 1.2rem;
      position: absolute;
      left: 50%;
      text-transform: uppercase;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%); }
    @media screen and (min-width: 48em) {
      .tg .close-date {
        display: block; } }
  .tg .close-date--closed {
    background: #f3edda;
    border: 5px solid #8a012a; }
    .tg .close-date--closed .closed {
      display: block;
      font-size: 19.2px;
      font-size: 1.2rem;
      position: relative;
      text-transform: uppercase; }
  .tg .map-wrapper .icon-location {
    display: none;
    font-size: 51.2px;
    font-size: 3.2rem; }
    @media screen and (min-width: 48em) {
      .tg .map-wrapper .icon-location {
        display: block; } }
  @media screen and (min-width: 48em) {
    .tg .social-inner {
      float: right; } }
  .tg .social {
    text-align: center; }
    .tg .social ul {
      margin: 0; }
      .tg .social ul li {
        display: inline-block;
        margin: 0; }
        .tg .social ul li a {
          background: #d7c482;
          color: #1B181C;
          display: block;
          font-size: 16px;
          font-size: 1rem;
          padding: 6px; }
          .tg .social ul li a:hover.facebook {
            background: #3b5999;
            color: #fff; }
          .tg .social ul li a:hover.twitter {
            background: #57a2d9;
            color: #fff; }
          .tg .social ul li a:hover.instagram {
            background: #cc5859;
            color: #fff; }
          .tg .social ul li a:hover.pinterest {
            background: #ca211e;
            color: #fff; }
          .tg .social ul li a:hover.youtube {
            background: #bf211e;
            color: #fff; }
          .tg .social ul li a:hover.gplus {
            background: #de4b39;
            color: #fff; }
    @media screen and (min-width: 48em) {
      .tg .social {
        text-align: left; }
        .tg .social ul {
          margin: 0; }
          .tg .social ul li {
            margin: 0; } }
  .tg .footer-nav {
    text-align: center; }
    .tg .footer-nav ul {
      margin: 0; }
      .tg .footer-nav ul li {
        display: inline-block;
        margin: 0;
        margin-left: 8px;
        margin-left: 0.5rem;
        padding: 6px 0; }
  .tg .footer-logo .site-logo__link {
    display: block;
    margin: 0 auto;
    margin-top: 16px;
    margin-top: 1rem;
    width: 200px; }
    @media screen and (min-width: 48em) {
      .tg .footer-logo .site-logo__link {
        display: block;
        margin: 0;
        margin-top: 0;
        width: auto; } }
  .tg .footer-logo .site-logo {
    float: right;
    max-width: 200px; }

.custom-tweet__title {
  font-weight: 300;
  font-size: 27px; }

.custom-tweet__profile-image {
  -webkit-border-radius: 50%;
          border-radius: 50%;
  height: 30px;
  width: 30px;
  float: left;
  margin-top: 16px;
  margin-top: 1rem;
  margin-left: 8px;
  margin-left: 0.5rem; }

.custom-tweet__container {
  padding: 8px 16px 8px 56px;
  padding: 0.5rem 1rem 0.5rem 3.5rem;
  border-top: 1px solid #ddd;
  margin-bottom: 0 !important; }
  .custom-tweet__container:hover, .custom-tweet__container:focus {
    background-color: #f3f3f3; }
  .custom-tweet__container a {
    text-decoration: none; }
    .custom-tweet__container a:after {
      display: none !important; }

.custom-tweet__created-by {
  font-weight: bold;
  font-size: 13.6px;
  font-size: 0.85rem;
  color: #2f2f2f; }
  .custom-tweet__created-by:hover, .custom-tweet__created-by:focus {
    color: #33aae1; }

.custom-tweet__screen-name {
  font-size: 12px;
  font-size: 0.75rem;
  color: #8899a6; }

.custom-tweet__tweet-text {
  font-size: 16px !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  color: #1f1f1f !important; }

.custom-tweet__time {
  font-size: 12px;
  font-size: 0.75rem;
  color: #8899a6; }
  .custom-tweet__time:before {
    content: '\00b7';
    padding-right: 5px; }

.custom-tweet__quote-tweet-container {
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  border: 1px solid #ddd; }
  .custom-tweet__quote-tweet-container:hover, .custom-tweet__quote-tweet-container:focus {
    border: 1px solid #aaa; }
  .custom-tweet__quote-tweet-container .custom-tweet__tweet-text {
    margin-bottom: 8px !important;
    margin-bottom: 0.5rem !important; }

.tweet--link {
  color: #1f1f1f; }

.tweet--profile-img {
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
          border-radius: 50%; }

.tweet--media-items-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%; }
  .tweet--media-items-container > a {
    -webkit-box-flex: 4;
    -webkit-flex-grow: 4;
       -moz-box-flex: 4;
        -ms-flex-positive: 4;
            flex-grow: 4; }

.tweet--media-item-wrapper {
  max-height: 260px;
  width: 100%;
  overflow: hidden; }
  .tweet--media-item-wrapper > img {
    width: 100%; }

/* required styles */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0; }

.leaflet-container {
  overflow: hidden; }

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-user-drag: none; }

/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast; }

/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0; }

.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block; }

/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer {
  max-width: none !important;
  max-height: none !important; }

.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y; }

.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action: none;
  touch-action: pinch-zoom; }

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none; }

.leaflet-container {
  -webkit-tap-highlight-color: transparent; }

.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4); }

.leaflet-tile {
  -webkit-filter: inherit;
          filter: inherit;
  visibility: hidden; }

.leaflet-tile-loaded {
  visibility: inherit; }

.leaflet-zoom-box {
  width: 0;
  height: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 800; }

/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none; }

.leaflet-pane {
  z-index: 400; }

.leaflet-tile-pane {
  z-index: 200; }

.leaflet-overlay-pane {
  z-index: 400; }

.leaflet-shadow-pane {
  z-index: 500; }

.leaflet-marker-pane {
  z-index: 600; }

.leaflet-tooltip-pane {
  z-index: 650; }

.leaflet-popup-pane {
  z-index: 700; }

.leaflet-map-pane canvas {
  z-index: 100; }

.leaflet-map-pane svg {
  z-index: 200; }

.leaflet-vml-shape {
  width: 1px;
  height: 1px; }

.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute; }

/* control positioning */
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto; }

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none; }

.leaflet-top {
  top: 0; }

.leaflet-right {
  right: 0; }

.leaflet-bottom {
  bottom: 0; }

.leaflet-left {
  left: 0; }

.leaflet-control {
  float: left;
  clear: both; }

.leaflet-right .leaflet-control {
  float: right; }

.leaflet-top .leaflet-control {
  margin-top: 10px; }

.leaflet-bottom .leaflet-control {
  margin-bottom: 10px; }

.leaflet-left .leaflet-control {
  margin-left: 10px; }

.leaflet-right .leaflet-control {
  margin-right: 10px; }

/* zoom and fade animations */
.leaflet-fade-anim .leaflet-tile {
  will-change: opacity; }

.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear; }

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1; }

.leaflet-zoom-animated {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0; }

.leaflet-zoom-anim .leaflet-zoom-animated {
  will-change: transform; }

.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1), -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1); }

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  -webkit-transition: none;
  transition: none; }

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden; }

/* cursors */
.leaflet-interactive {
  cursor: pointer; }

.leaflet-grab {
  cursor: -webkit-grab;
  cursor: -moz-grab; }

.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair; }

.leaflet-popup-pane,
.leaflet-control {
  cursor: auto; }

.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing; }

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none; }

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive {
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto; }

/* visual tweaks */
.leaflet-container {
  background: #ddd;
  outline: 0; }

.leaflet-container a {
  color: #0078A8; }

.leaflet-container a.leaflet-active {
  outline: 2px solid orange; }

.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5); }

/* general typography */
.leaflet-container {
  font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif; }

/* general toolbar styles */
.leaflet-bar {
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  -webkit-border-radius: 4px;
          border-radius: 4px; }

.leaflet-bar a,
.leaflet-bar a:hover {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black; }

.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block; }

.leaflet-bar a:hover {
  background-color: #f4f4f4; }

.leaflet-bar a:first-child {
  -webkit-border-top-left-radius: 4px;
          border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;
          border-top-right-radius: 4px; }

.leaflet-bar a:last-child {
  -webkit-border-bottom-left-radius: 4px;
          border-bottom-left-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
          border-bottom-right-radius: 4px;
  border-bottom: none; }

.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb; }

.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px; }

.leaflet-touch .leaflet-bar a:first-child {
  -webkit-border-top-left-radius: 2px;
          border-top-left-radius: 2px;
  -webkit-border-top-right-radius: 2px;
          border-top-right-radius: 2px; }

.leaflet-touch .leaflet-bar a:last-child {
  -webkit-border-bottom-left-radius: 2px;
          border-bottom-left-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
          border-bottom-right-radius: 2px; }

/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px 'Lucida Console', Monaco, monospace;
  text-indent: 1px; }

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px; }

/* layers control */
.leaflet-control-layers {
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  -webkit-border-radius: 5px;
          border-radius: 5px; }

.leaflet-control-layers-toggle {
  background-image: url(images/layers.png);
  width: 36px;
  height: 36px; }

.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(images/layers-2x.png);
  background-size: 26px 26px; }

.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px; }

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none; }

.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative; }

.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff; }

.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px; }

.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px; }

.leaflet-control-layers label {
  display: block; }

.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px; }

/* Default icon URLs */
.leaflet-default-icon-path {
  background-image: url(images/marker-icon.png); }

/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  margin: 0; }

.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333; }

.leaflet-control-attribution a {
  text-decoration: none; }

.leaflet-control-attribution a:hover {
  text-decoration: underline; }

.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
  font-size: 11px; }

.leaflet-left .leaflet-control-scale {
  margin-left: 5px; }

.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px; }

.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  background: rgba(255, 255, 255, 0.5); }

.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px; }

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777; }

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  -webkit-box-shadow: none;
          box-shadow: none; }

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box; }

/* popup */
.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px; }

.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  -webkit-border-radius: 12px;
          border-radius: 12px; }

.leaflet-popup-content {
  margin: 13px 19px;
  line-height: 1.4; }

.leaflet-popup-content p {
  margin: 18px 0; }

.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none; }

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  -webkit-box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4); }

.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 4px 0 0;
  border: none;
  text-align: center;
  width: 18px;
  height: 14px;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  color: #c3c3c3;
  text-decoration: none;
  font-weight: bold;
  background: transparent; }

.leaflet-container a.leaflet-popup-close-button:hover {
  color: #999; }

.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd; }

.leaflet-oldie .leaflet-popup-content-wrapper {
  zoom: 1; }

.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678); }

.leaflet-oldie .leaflet-popup-tip-container {
  margin-top: -1px; }

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999; }

/* div icon */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666; }

/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); }

.leaflet-tooltip.leaflet-clickable {
  cursor: pointer;
  pointer-events: auto; }

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: ""; }

/* Directions */
.leaflet-tooltip-bottom {
  margin-top: 6px; }

.leaflet-tooltip-top {
  margin-top: -6px; }

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px; }

.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff; }

.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff; }

.leaflet-tooltip-left {
  margin-left: -6px; }

.leaflet-tooltip-right {
  margin-left: 6px; }

.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px; }

.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff; }

.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff; }

.marker-cluster-small {
  background-color: rgba(181, 226, 140, 0.6); }

.marker-cluster-small div {
  background-color: rgba(110, 204, 57, 0.6); }

.marker-cluster-medium {
  background-color: rgba(241, 211, 87, 0.6); }

.marker-cluster-medium div {
  background-color: rgba(240, 194, 12, 0.6); }

.marker-cluster-large {
  background-color: rgba(253, 156, 115, 0.6); }

.marker-cluster-large div {
  background-color: rgba(241, 128, 23, 0.6); }

/* IE 6-8 fallback colors */
.leaflet-oldie .marker-cluster-small {
  background-color: #b5e28c; }

.leaflet-oldie .marker-cluster-small div {
  background-color: #6ecc39; }

.leaflet-oldie .marker-cluster-medium {
  background-color: #f1d357; }

.leaflet-oldie .marker-cluster-medium div {
  background-color: #f0c20c; }

.leaflet-oldie .marker-cluster-large {
  background-color: #fd9c73; }

.leaflet-oldie .marker-cluster-large div {
  background-color: #f18017; }

.marker-cluster {
  background-clip: padding-box;
  -webkit-border-radius: 20px;
          border-radius: 20px; }

.marker-cluster div {
  width: 30px;
  height: 30px;
  margin-left: 5px;
  margin-top: 5px;
  text-align: center;
  -webkit-border-radius: 15px;
          border-radius: 15px;
  font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif; }

.marker-cluster span {
  line-height: 30px; }

.live-wrapper .live {
  color: #B20000; }
  .live-wrapper .live:before {
    background: #B20000;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    content: "";
    display: inline-block;
    height: 12px;
    height: 0.75rem;
    margin-right: 4px;
    margin-right: 0.25rem;
    width: 12px;
    width: 0.75rem; }

.live-wrapper .date {
  display: inline-block; }
  @media screen and (min-width: 60em) {
    .live-wrapper .date {
      display: block; } }

.live-wrapper .time {
  display: inline-block; }
  @media screen and (min-width: 60em) {
    .live-wrapper .time {
      display: block; } }

.updates {
  border-top: 1px solid #1B181C; }

.dark-social-links a {
  border-top: 1px solid #1B181C;
  color: #1B181C; }
  .dark-social-links a:hover {
    opacity: 0.8; }

.dark-social-links [class^="icon-"]:before, .dark-social-links [class*=" icon-"]:before {
  margin-left: 0;
  margin-right: 8px;
  margin-right: 0.5rem; }

.dark-social-links .icon span {
  padding-top: 6px;
  vertical-align: top; }
  @media screen and (min-width: 60em) {
    .dark-social-links .icon span {
      padding-top: 8px;
      vertical-align: top; } }

.dark-borders {
  border-top: 12px solid #000;
  border-bottom: 2px solid #000; }
  .dark-borders img {
    width: 100%; }

p.intro {
  color: #000;
  font-family: "gill-sans-nova", sans-serif;
  font-weight: bold;
  font-size: 25.6px;
  font-size: 1.6rem;
  line-height: 32px;
  line-height: 2rem;
  margin-bottom: 0;
  padding-bottom: 96px;
  padding-bottom: 6rem;
  position: relative; }
  @media screen and (min-width: 48em) {
    p.intro {
      font-size: 1.8rem;
      line-height: 2rem; } }
  @media screen and (min-width: 60em) {
    p.intro {
      font-size: 2rem;
      line-height: 2.4rem; } }
  p.intro:after {
    background: #000;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    width: 96px;
    width: 6rem;
    bottom: 48px;
    bottom: 3rem; }

.editor-content--dark-page {
  padding-right: 0; }
  .editor-content--dark-page a.btn {
    margin-bottom: 24px;
    margin-bottom: 1.5rem; }
  .editor-content--dark-page a.btn--primary {
    background: #1B181C;
    color: #ffffff; }
    .editor-content--dark-page a.btn--primary:hover {
      background: #1B181C;
      color: #ffffff; }
    .editor-content--dark-page a.btn--primary:focus {
      background: #1B181C; }
    .editor-content--dark-page a.btn--primary.active, .editor-content--dark-page a.btn--primary:active {
      background-color: #1B181C;
      color: #ffffff; }
  .editor-content--dark-page .btn--icon:after {
    border-color: transparent transparent rgba(255, 255, 255, 0.08) transparent; }
  @media screen and (min-width: 60em) {
    .editor-content--dark-page p, .editor-content--dark-page ul, .editor-content--dark-page ol {
      width: 72.5%; } }
  .editor-content--dark-page p, .editor-content--dark-page ul, .editor-content--dark-page ol, .editor-content--dark-page div {
    color: #000; }
  .editor-content--dark-page blockquote {
    color: #494649;
    border-top: 3px solid #c6c5c6;
    border-bottom: 1px solid #c6c5c6; }
  .editor-content--dark-page blockquote:before {
    border-top: 3px solid #1B181C;
    color: #1B181C; }
  .editor-content--dark-page blockquote cite {
    color: #494649; }
  .editor-content--dark-page .gallery-slider {
    margin-left: 8px;
    margin-right: 8px; }

div.alert-panel {
  background: #B20000;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  padding: 24px;
  padding: 1.5rem; }
  div.alert-panel .alert-icon {
    color: #fff;
    display: block;
    font-family: "gill-sans-nova", sans-serif;
    font-weight: 700;
    font-size: 22.4px;
    font-size: 1.4rem;
    line-height: 25.6px;
    line-height: 1.6rem;
    margin: 0;
    padding: 0 0 0 40px;
    padding: 0 0 0 2.5rem;
    position: relative; }
    div.alert-panel .alert-icon:before {
      background-image: url("/content/images/icons/icon-alert.svg");
      background-size: contain;
      content: "";
      display: block;
      height: 24px;
      height: 1.5rem;
      left: 0;
      position: absolute;
      top: 4px;
      width: 24px;
      width: 1.5rem; }

.alert-panel__border {
  position: relative; }
  .alert-panel__border:after {
    background: #c94d4d;
    content: "";
    display: none;
    height: 110%;
    left: -12px;
    left: -0.75rem;
    position: absolute;
    top: 0;
    width: 1px; }
  @media screen and (min-width: 48em) {
    .alert-panel__border:after {
      display: block; } }
  @media screen and (min-width: 1060px) {
    .alert-panel__border:after {
      left: 0; } }

.alert-panel__btn {
  background: #fff;
  color: #333333;
  margin-top: 24px;
  margin-top: 1.5rem; }
  .alert-panel__btn .icon {
    color: #333333; }
  .alert-panel__btn:hover {
    background: #cfcfcf;
    color: #333333; }
  .alert-panel__btn:visited {
    color: #333333; }
  @media screen and (min-width: 48em) {
    .alert-panel__btn {
      margin-top: 0;
      position: absolute;
      right: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%); } }

.emergency-banner__wrapper {
  background: #a61f29;
  bottom: 0;
  color: #fff;
  display: block;
  font-family: "gill-sans-nova", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 25.6px;
  line-height: 1.6rem;
  left: 0;
  padding: 12px 0;
  padding: 0.75rem 0;
  position: fixed;
  right: 0;
  z-index: 99999; }
  @media screen and (min-width: 48em) {
    .emergency-banner__wrapper {
      font-size: 1.2rem; } }
  .emergency-banner__wrapper .emergency-banner {
    padding-left: 72px;
    padding-left: 4.5rem;
    padding-right: 48px;
    padding-right: 3rem;
    position: relative; }
  .emergency-banner__wrapper .live {
    color: #f9be00;
    left: 0;
    position: absolute;
    top: 0; }
    .emergency-banner__wrapper .live:before {
      background: #f9be00;
      -webkit-border-radius: 50%;
              border-radius: 50%;
      content: "";
      display: inline-block;
      height: 12px;
      height: 0.75rem;
      margin-right: 4px;
      margin-right: 0.25rem;
      width: 12px;
      width: 0.75rem; }
  .emergency-banner__wrapper a {
    color: #f3d9d9;
    text-decoration: underline; }
    .emergency-banner__wrapper a:hover {
      text-decoration: none; }
  .emergency-banner__wrapper .emergency-banner__btn {
    background: #8e0000;
    -webkit-border-radius: 2px;
            border-radius: 2px;
    color: #fff;
    display: block;
    font-family: "gill-sans-nova", sans-serif;
    font-weight: bold;
    line-height: 16px;
    padding: 2px 8px 8px 8px;
    position: absolute;
    right: 0;
    text-decoration: none;
    top: 0; }

.block--dark h3 {
  color: #fff; }

.block--dark p {
  color: #eaeaea; }

.block--dark:hover h3 {
  color: #fff; }

.block--dark:hover p {
  color: #fff; }

.newsletter-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 48px;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden; }
  @media screen and (min-width: 760px) {
    .newsletter-panel {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
         -moz-box-orient: horizontal;
         -moz-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }

.newsletter-panel--green .newsletter-panel__text {
  background: #41A298; }
  .newsletter-panel--green .newsletter-panel__text:after {
    background: #41A298; }

.newsletter-panel--green .newsletter-panel__image {
  background-image: url("/content/images/newsletter-02.jpg"); }

.newsletter-panel--velvet .newsletter-panel__text {
  background: #4e1e66; }
  .newsletter-panel--velvet .newsletter-panel__text:after {
    background: #4e1e66; }

.newsletter-panel--velvet .newsletter-panel__image {
  background-image: url("/content/images/newsletter-03.jpg"); }

.newsletter-panel__text {
  background: #00A0C4;
  padding: 24px;
  padding: 1.5rem;
  position: relative;
  width: 100%; }
  .newsletter-panel__text .btn {
    z-index: 2; }
  @media screen and (min-width: 760px) {
    .newsletter-panel__text {
      width: 40%; }
      .newsletter-panel__text:after {
        background: #00A0C4;
        content: "";
        display: block;
        height: 400px;
        position: absolute;
        right: -50px;
        -webkit-transform: rotate(20deg);
            -ms-transform: rotate(20deg);
                transform: rotate(20deg);
        top: -40px;
        width: 110px;
        z-index: 1; } }
  @media screen and (min-width: 930px) {
    .newsletter-panel__text {
      width: 40%; }
      .newsletter-panel__text:after {
        height: 400px;
        right: -40px;
        top: -40px;
        width: 110px; } }

.newsletter-panel__desc {
  position: relative;
  z-index: 2; }

.newsletter-panel__image {
  background-image: url("/content/images/newsletter-01.jpg");
  background-position: 70%;
  background-size: cover;
  height: 0;
  padding-bottom: 40%;
  width: 100%; }
  @media screen and (min-width: 760px) {
    .newsletter-panel__image {
      height: auto;
      padding-bottom: 0;
      width: 60%; } }
  @media screen and (min-width: 930px) {
    .newsletter-panel__image {
      background-position: right;
      width: 60%; } }

.promo-panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 48px;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden; }
  @media screen and (min-width: 760px) {
    .promo-panel {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
         -moz-box-orient: horizontal;
         -moz-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }

.promo-panel--gold .promo-panel__text {
  background: #d7c482; }

.promo-panel--gold .promo-panel__image {
  background-image: url("/content/images/tester-event.png"); }

.promo-panel--green .promo-panel__text {
  background: #41A298; }
  .promo-panel--green .promo-panel__text:after {
    background: #41A298; }

.promo-panel--green .promo-panel__image {
  background-image: url("/content/images/newsletter-02.jpg"); }

.promo-panel--velvet .promo-panel__text {
  background: #4e1e66; }
  .promo-panel--velvet .promo-panel__text:after {
    background: #4e1e66; }

.promo-panel--velvet .promo-panel__image {
  background-image: url("/content/images/newsletter-03.jpg"); }

.promo-panel__text {
  background: #d7c482;
  display: block;
  padding: 24px;
  padding: 1.5rem;
  position: relative;
  width: 100%; }
  .promo-panel__text *:not(.btn) {
    display: block;
    position: relative;
    z-index: 4; }
  .promo-panel__text .btn {
    position: relative;
    z-index: 4; }
  @media screen and (min-width: 760px) {
    .promo-panel__text {
      padding: 4.5rem 1.5rem 4.5rem 0.5rem;
      width: 50%; }
      .promo-panel__text:after {
        background: #d7c482;
        content: "";
        display: block;
        height: 700px;
        left: -120px;
        position: absolute;
        -webkit-transform: rotate(20deg);
            -ms-transform: rotate(20deg);
                transform: rotate(20deg);
        top: -40px;
        width: 200px;
        z-index: 1; } }
  @media screen and (min-width: 930px) {
    .promo-panel__text {
      padding: 4.5rem 3rem 4.5rem 0.5rem;
      width: 50%; }
      .promo-panel__text:after {
        height: 600px;
        left: -100px;
        top: -40px;
        width: 200px; } }

.promo-panel__desc {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2; }

.promo-panel__image {
  background-position: 70%;
  background-size: cover;
  height: 0;
  padding-bottom: 40%;
  width: 100%; }
  @media screen and (min-width: 760px) {
    .promo-panel__image {
      height: auto;
      padding-bottom: 0;
      width: 50%; } }
  @media screen and (min-width: 930px) {
    .promo-panel__image {
      background-position: right;
      width: 50%; } }

.intro__boxed {
  background-color: #fafafa;
  padding: 3.75%;
  margin-bottom: 48px;
  position: relative; }
  @media screen and (min-width: 48em) {
    .intro__boxed {
      width: 80.83333%;
      margin-left: -1.25%;
      margin-top: -48px;
      padding: 2.5%; } }
  @media screen and (min-width: 60em) {
    .intro__boxed {
      width: 64.16667%; } }

.event-notice {
  border-top: 3px solid #77b0a4;
  padding-top: 24px; }
  @media screen and (min-width: 48em) {
    .event-notice {
      margin-left: 24px; } }

.event-notice__title {
  font-size: 22.4px;
  font-size: 1.4rem;
  line-height: 25.6px;
  line-height: 1.6rem;
  margin-bottom: 12px; }
  @media screen and (min-width: 48em) {
    .event-notice__title {
      font-size: 1.5rem;
      line-height: 1.8rem; } }

.event-notice__summary {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif; }

.event-col {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  font-weight: 400;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif; }

.event-col--heading {
  font-size: 16px;
  font-size: 1rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  margin-bottom: 6px; }
  @media screen and (min-width: 48em) {
    .event-col--heading {
      margin-bottom: 0; } }

.event__subtitle {
  font-size: 12.8px;
  font-size: 0.8rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  font-weight: 700;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  text-transform: uppercase;
  margin-bottom: 4px;
  margin-top: 24px; }

.event-tickets {
  margin-bottom: 24px; }

.event-tickets__inner {
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  margin-bottom: 12px; }

.event-tickets__title {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  font-weight: 600; }

.event-tickets__sub {
  font-size: 12.8px;
  font-size: 0.8rem;
  line-height: 19.2px;
  line-height: 1.2rem; }

.event-note {
  margin-top: 24px; }

.event-note__item {
  font-size: 12.8px;
  font-size: 0.8rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  margin-bottom: 4px; }

.event-list {
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  padding-bottom: 24px; }

.event-list__item {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  margin-bottom: 4px; }

.events__btn {
  display: block;
  margin-bottom: 36px;
  text-align: center; }
  @media screen and (min-width: 48em) {
    .events__btn {
      display: inline-block; } }

.events-paging {
  display: block;
  margin: 48px auto 0 auto;
  text-align: center;
  max-width: 250px; }

.event-location {
  border-bottom: 1px solid #dddddd;
  margin-bottom: 24px;
  padding-bottom: 24px; }

.event-location__title {
  font-size: 19.2px;
  font-size: 1.2rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 600;
  margin-bottom: 6px; }

.event-location__summary {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 300;
  margin-bottom: 6px; }

.event-location__link {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif; }

.event-partner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }

.event-partner__item {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
              -ms-grid-row-align: center;
          align-self: center;
  margin-bottom: 24px;
  margin-right: 24px; }

.programme:first-child .programme__date {
  border: 0;
  padding-top: 0; }

@media screen and (min-width: 48em) {
  .programme__inner {
    border-top: 2px solid #dddddd;
    padding-top: 24px; } }

.programme__date {
  font-size: 17.6px;
  font-size: 1.1rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 700;
  margin-bottom: 12px; }
  @media screen and (max-width: 48em) {
    .programme__date {
      border-top: 2px solid #dddddd;
      padding-top: 24px; } }

.programme__summary {
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  width: 100%; }
  @media screen and (min-width: 40em) {
    .programme__summary {
      width: 64.16667%; } }

.programme__session {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 24px;
  width: 100%; }

.programme__title {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 700;
  margin-bottom: 6px; }

.programme__time {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
  width: 100%; }
  @media screen and (min-width: 40em) {
    .programme__time {
      width: 30.83333%;
      padding-right: 24px; } }

.programme-list__item {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  margin-bottom: 6px; }

.event-speaker__title {
  font-size: 17.6px;
  font-size: 1.1rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 600;
  margin-bottom: 6px; }

.event-speaker__position {
  font-size: 12.8px;
  font-size: 0.8rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  color: #666666;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 400; }

.event-meta {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  color: #666666;
  display: inline-block;
  margin-right: 12px;
  margin-top: 6px; }

.accordion {
  border-bottom: 2px solid #dddddd; }

.accordion__heading {
  border-bottom: 2px solid #dddddd;
  font-size: 17.6px;
  font-size: 1.1rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 700;
  margin-top: 48px;
  padding-bottom: 24px; }
  .accordion__heading:first-of-type {
    margin-top: 0; }

.accordion-btn {
  background-color: transparent;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 0;
  position: relative;
  text-align: left;
  width: 100%; }
  .accordion-btn:after {
    position: absolute;
    right: 20px;
    top: 20px;
    display: inline-block;
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid #666666;
    border-bottom: 2px solid #666666;
    -webkit-transform: translateY(-50%) rotate(45deg);
        -ms-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg); }
    .active .accordion-btn:after {
      top: 28px;
      -webkit-transform: translateY(-50%) rotate(-135deg);
          -ms-transform: translateY(-50%) rotate(-135deg);
              transform: translateY(-50%) rotate(-135deg); }

.accordion__inner {
  display: none;
  overflow: hidden;
  padding-bottom: 24px; }
  .active .accordion__inner {
    display: block; }

.pic-content {
  border-bottom: 1px solid #eaeaea;
  float: left;
  margin-left: 1.25%;
  margin-right: 1.25%;
  margin-bottom: 24px;
  margin-top: 12px;
  width: 97.5%; }
  @media screen and (min-width: 48em) {
    .pic-content {
      width: 80.83333%; } }
  @media screen and (min-width: 60em) {
    .pic-content {
      width: 64.16667%;
      min-height: 38rem;
      margin-top: 0; } }
  @media screen and (min-width: 70em) {
    .pic-content {
      width: 55.83333%;
      margin-left: 17.91667%;
      min-height: 38rem;
      margin-top: 0; } }

.pic-language {
  margin-top: 24px; }

.pic-aside {
  float: left;
  margin-left: 1.25%;
  margin-right: 1.25%;
  width: 97.5%;
  margin-top: 24px; }
  @media screen and (min-width: 60em) {
    .pic-aside {
      float: right;
      width: 30.83333%;
      margin: 0;
      position: relative;
      right: 1.25%;
      top: 0;
      z-index: 900; } }
  @media screen and (min-width: 65em) {
    .pic-aside {
      margin-bottom: -330px; } }
  @media screen and (min-width: 70em) {
    .pic-aside {
      width: 23%;
      margin-bottom: -330px;
      top: -330px; } }

.pic-upsell {
  float: left;
  margin-left: 1.25%;
  margin-right: 1.25%;
  margin-bottom: 24px;
  width: 97.5%; }
  @media screen and (min-width: 48em) {
    .pic-upsell {
      width: 97.5%; } }
  @media screen and (min-width: 60em) {
    .pic-upsell {
      width: 64.16667%; } }
  @media screen and (min-width: 70em) {
    .pic-upsell {
      width: 55.83333%;
      margin-left: 17.91667%; } }

/*! Flickity v2.1.1
---------------------------------------------- */
.flickity-enabled {
  position: relative; }

.flickity-enabled:focus {
  outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%; }

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%; }

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #333; }

.flickity-button:hover {
  background: white;
  cursor: pointer; }

.flickity-button:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 5px #666666;
          box-shadow: 0 0 0 5px #666666; }

.flickity-button:active {
  opacity: 0.6; }

.flickity-button:disabled {
  opacity: 0;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none; }

.flickity-button-icon {
  fill: #333; }

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 36px;
  height: 36px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  /* vertically center */
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); }
  @media (min-width: 60em) {
    .flickity-prev-next-button {
      cursor: pointer;
      width: 44px;
      height: 44px;
      visibility: visible; } }

.flickity-prev-next-button.previous {
  left: -48px; }
  .flickity-prev-next-button.previous svg {
    display: none; }
  .flickity-prev-next-button.previous:after {
    color: #fff;
    content: '\e808';
    font-family: fontello;
    font-size: 16px;
    left: 0;
    position: absolute;
    right: 3px;
    text-align: center;
    top: 5px; }
    @media (min-width: 48em) {
      .flickity-prev-next-button.previous:after {
        font-size: 25px;
        top: 5px; } }

.flickity-prev-next-button.next {
  right: -48px; }
  .flickity-prev-next-button.next svg {
    display: none; }
  .flickity-prev-next-button.next:after {
    color: #fff;
    content: '\e809';
    font-family: fontello;
    font-size: 16px;
    left: 2px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 5px; }
    @media (min-width: 48em) {
      .flickity-prev-next-button.next:after {
        font-size: 25px;
        top: 5px; } }

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px; }

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px; }

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%; }

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1; }

.flickity-rtl .flickity-page-dots {
  direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  opacity: 0.25;
  cursor: pointer; }

.flickity-page-dots .dot.is-selected {
  opacity: 1; }

/* disable links and inputs in all cells */
.exhibition-gallery__item a {
  display: none; }

/* enable links and inputs in selected cell */
.exhibition-gallery__item.is-selected a {
  display: block; }

.modal-gallery__outer {
  display: none;
  opacity: 0;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease; }

.modal-gallery__outer.active {
  display: block;
  opacity: 1; }

.modal-gallery__img-container {
  text-align: center; }

.modal-gallery__img {
  max-width: 80%;
  max-height: 80vh;
  width: auto; }

.modal-gallery__item {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: auto;
  padding-top: 60px; }

.modal-gallery__item.active {
  opacity: 1;
  visibility: visible; }

.modal-gallery__next {
  position: fixed;
  bottom: 50%;
  right: 25px;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  -webkit-border-radius: 50%;
          border-radius: 50%; }
  .exhibit .modal-gallery__next {
    background: #F9BE00; }

.modal-gallery__previous {
  position: fixed;
  bottom: 50%;
  left: 25px;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  -webkit-border-radius: 50%;
          border-radius: 50%; }
  .exhibit .modal-gallery__previous {
    background: #F9BE00; }

.modal-gallery__close {
  position: fixed;
  top: 15px;
  right: 25px;
  background: none; }
  .modal-gallery__close:focus {
    outline: 2px solid #F9BE00; }

.modal-gallery__close svg,
.modal-gallery__previous svg,
.modal-gallery__next svg {
  display: none; }

.modal-gallery__close:hover svg,
.modal-gallery__previous:hover svg,
.modal-gallery__next:hover svg {
  display: none; }

.modal-gallery__close:hover:after,
.modal-gallery__previous:hover:after,
.modal-gallery__next:hover:after {
  opacity: 1; }

.modal-gallery__close:after {
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  color: #fff;
  content: '\2715';
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-family: fontello;
  font-size: 22.4px;
  font-size: 1.4rem;
  line-height: 25.6px;
  line-height: 1.6rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative; }
  @media screen and (min-width: 48em) {
    .modal-gallery__close:after {
      font-size: 1.5rem;
      line-height: 1.8rem; } }
  @media screen and (min-width: 60em) {
    .modal-gallery__close:after {
      font-size: 1.8rem;
      line-height: 2.4rem; } }

.modal-gallery__next:after, .modal-gallery__previous:after {
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  color: #fff;
  content: '\e824';
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-family: fontello;
  font-size: 22.4px;
  font-size: 1.4rem;
  line-height: 25.6px;
  line-height: 1.6rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative; }
  @media screen and (min-width: 48em) {
    .modal-gallery__next:after, .modal-gallery__previous:after {
      font-size: 1.5rem;
      line-height: 1.8rem; } }
  @media screen and (min-width: 60em) {
    .modal-gallery__next:after, .modal-gallery__previous:after {
      font-size: 1.8rem;
      line-height: 2.4rem; } }
  .exhibit .modal-gallery__next:after, .exhibit .modal-gallery__previous:after {
    color: #000; }

.modal-gallery__next:hover,
.modal-gallery__previous:hover {
  background: #555; }
  .modal-gallery__next:hover:after,
  .modal-gallery__previous:hover:after {
    color: #fff; }

.modal-gallery__previous:after {
  content: '\e825'; }

.modal-gallery__close:after, .modal-gallery__next:after, .modal-gallery__previous:after {
  opacity: .7;
  -webkit-transition: all .1s ease-out;
  transition: all .1s ease-out; }

.modal-gallery__total {
  letter-spacing: 4.8px;
  letter-spacing: .3rem;
  position: absolute;
  top: 25px;
  left: 25px;
  color: #fff;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif; }

.modal-gallery__details {
  text-align: center;
  color: #fff;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  padding: 24px;
  font-size: 19.2px;
  font-size: 1.2rem;
  line-height: 22.4px;
  line-height: 1.4rem; }
  @media (min-width: 48em) {
    .modal-gallery__details {
      padding: 24px 120px 36px; } }

.loading:after {
  color: #fff;
  z-index: 1;
  width: 100%;
  position: fixed;
  display: block;
  text-align: center;
  top: 45%;
  content: 'Loading...'; }

.gallery__item {
  display: inline-block; }

.exhibition {
  background-color: #262427;
  color: #ffffff; }

.exhibition-container {
  display: block;
  margin: 0 auto;
  position: relative; }
  @media (min-width: 90.075em) {
    .exhibition-container > .wrapper > .row {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: end;
      -webkit-align-items: flex-end;
         -moz-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end; } }
  .exhibition-container--with-border .wrapper {
    border-bottom: 1px solid #666666; }

.exhibition__intro {
  display: block;
  padding: 36px 0 48px 0;
  position: relative; }
  .exhibition__intro a {
    color: #F9BE00 !important; }
    .exhibition__intro a:after {
      color: #F9BE00 !important; }

.exhibition__buttons .btn {
  display: block;
  width: 100%;
  text-align: center;
  -webkit-border-radius: 0;
          border-radius: 0;
  margin-bottom: 12px; }
  @media screen and (min-width: 60em) {
    .exhibition__buttons .btn {
      max-width: 250px; } }
  .exhibition__buttons .btn:last-child {
    margin-bottom: 0; }
  .exhibition__buttons .btn:focus {
    outline: 3px solid white; }

.exhibition__buttons .btn--primary {
  background: #F9BE00;
  color: #1B181C !important;
  padding: 16px !important;
  padding: 1rem !important; }
  .exhibition__buttons .btn--primary:before, .exhibition__buttons .btn--primary:after {
    display: none; }
  .exhibition__buttons .btn--primary:focus {
    background: #262427;
    color: white !important;
    outline: 2px solid white; }

.exhibition__buttons .btn--outline {
  border-color: #F9BE00;
  -webkit-border-radius: 0;
          border-radius: 0;
  color: #F9BE00;
  padding: 16px !important;
  padding: 1rem !important; }

.editor-content p.exhibition__buttons {
  margin-top: 56px;
  margin-top: 3.5rem; }

.exhibition__info {
  display: block;
  padding: 12px 0;
  position: relative;
  margin: 0 auto;
  font-size: 17.6px;
  font-size: 1.1rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  text-align: center; }

.exhibition-section-title {
  display: block;
  padding: 24px 24px 24px;
  text-align: center; }

.exhibition-item {
  background: #ffffff;
  border-top: 1px solid #dddddd;
  margin: 0 auto 24px;
  padding: 36px 16px 16px;
  position: relative;
  text-align: center;
  width: 90%; }
  .exhibition-item:after {
    background: #fafafa;
    bottom: -48px;
    bottom: -3rem;
    content: '';
    height: 48px;
    height: 3rem;
    left: 50%;
    position: absolute;
    width: 1px; }
  .exhibition-item:last-of-type:after {
    display: none; }

.exhibition-item__info {
  color: #333333; }

.exhibition-item__title {
  display: block;
  margin-bottom: 24px;
  position: relative;
  font-size: 27.2px;
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff; }

.exhibition-links__item {
  display: inline-block;
  margin-right: 8px;
  padding: 8px 12px;
  position: relative; }

.exhibition-gallery {
  display: block;
  padding-top: 12px;
  position: relative;
  width: 100%;
  z-index: 5; }
  .exhibition-gallery .flickity-page-dots {
    display: none; }
  .exhibition-gallery .flickity-prev-next-button {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #F9BE00;
    color: #1B181C;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 36px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 36px;
    z-index: 2; }
    @media (min-width: 60em) {
      .exhibition-gallery .flickity-prev-next-button {
        height: 44px;
        width: 44px; } }
    .exhibition-gallery .flickity-prev-next-button.previous:after, .exhibition-gallery .flickity-prev-next-button.next:after {
      position: static;
      color: #1B181C;
      content: '\e75e';
      font-family: fontello;
      font-style: normal;
      font-weight: 400;
      font-size: 16px;
      font-size: 1rem; }
    .exhibition-gallery .flickity-prev-next-button .flickity-button-icon {
      height: 18px;
      left: auto;
      opacity: 0.6;
      top: auto;
      -webkit-transition: all 0.1s ease-out;
      transition: all 0.1s ease-out;
      width: 18px; }
      @media (min-width: 60em) {
        .exhibition-gallery .flickity-prev-next-button .flickity-button-icon {
          height: 24px;
          width: 24px; } }
    .exhibition-gallery .flickity-prev-next-button.previous {
      left: 12.8px;
      left: 0.8rem; }
      .exhibition-gallery .flickity-prev-next-button.previous:after {
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg); }
      @media (min-width: 90.075em) {
        .exhibition-gallery .flickity-prev-next-button.previous {
          left: -1.5rem; } }
    .exhibition-gallery .flickity-prev-next-button.next {
      right: 12.8px;
      right: 0.8rem; }
      @media (min-width: 90.075em) {
        .exhibition-gallery .flickity-prev-next-button.next {
          right: -1.5rem; } }
    .exhibition-gallery .flickity-prev-next-button:hover {
      background-color: #555555;
      color: #ffffff; }
      .exhibition-gallery .flickity-prev-next-button:hover .flickity-button-icon {
        opacity: 1; }
      .exhibition-gallery .flickity-prev-next-button:hover.previous:after, .exhibition-gallery .flickity-prev-next-button:hover.next:after {
        color: #ffffff; }

.exhibition-gallery__item {
  position: relative;
  margin: 0 4px;
  width: 90%;
  z-index: 5; }
  .exhibition-gallery__item picture {
    width: 100%; }
    .exhibition-gallery__item picture img {
      max-width: none;
      width: 100%; }
  @media (min-width: 40em) {
    .exhibition-gallery__item {
      width: 50%; } }
  @media (min-width: 48em) {
    .exhibition-gallery__item {
      width: 33.3333%; } }

.exhibition-gallery__item-expand {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F9BE00;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 8px;
  top: 8px;
  border: 4px solid transparent;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 40px; }
  .exhibition-gallery__item-expand:after, .exhibition-gallery__item-expand:before {
    content: "";
    background: url("/Content/images/icons/expand-arrow.svg");
    background-size: cover;
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 2px;
    right: 2px; }
  .exhibition-gallery__item-expand:before {
    top: auto;
    right: auto;
    bottom: 2px;
    left: 2px;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
  .exhibition-gallery__item-expand:hover, .exhibition-gallery__item-expand:focus {
    border: 2px solid transparent;
    background: #555555; }
    .exhibition-gallery__item-expand:hover:after, .exhibition-gallery__item-expand:hover:before, .exhibition-gallery__item-expand:focus:after, .exhibition-gallery__item-expand:focus:before {
      background: url("/Content/images/icons/expand-arrow--white.svg");
      background-size: cover; }
  .exhibition-gallery__item-expand:focus {
    outline: 4px solid #333333; }

.exhibition__text {
  display: block;
  position: relative;
  z-index: 2;
  margin-top: 24px; }
  .exhibition__text.col {
    padding: 24px 0 0 0;
    padding: 1.5rem 0 0 0; }
  .exhibition__text:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: #F9BE00; }
  .exhibition__text a:not(.btn) {
    color: #F9BE00;
    text-decoration: underline; }
    .exhibition__text a:not(.btn):hover {
      text-decoration: none;
      color: rgba(249, 190, 0, 0.75); }
    .exhibition__text a:not(.btn):after {
      color: #F9BE00 !important; }
  @media (min-width: 90.075em) {
    .exhibition__text {
      margin-top: 0; }
      .exhibition__text:before {
        width: 90%; } }

.exhibition__text-only .exhibition__text {
  margin-top: 0;
  padding-left: 24px; }
  .exhibition__text-only .exhibition__text:before {
    width: 2px;
    height: 100%; }

.exhibition__description {
  display: block;
  margin-bottom: 24px;
  position: relative; }
  .exhibition__description p {
    word-break: break-word; }
  .exhibition__description.active .exhibition__text-expand {
    max-height: none;
    opacity: 1;
    padding: 0 0 12px; }
  .exhibition__description.active .exhibition__expand-btn {
    display: none; }
  .exhibition__description.active .exhibition__collapse-btn {
    display: inline-block; }

.exhibition__quote {
  background: #ffffff;
  display: block;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 300;
  font-size: 25.6px;
  font-size: 1.6rem;
  line-height: 32px;
  line-height: 2rem;
  line-height: 1.3;
  position: relative; }
  @media screen and (min-width: 48em) {
    .exhibition__quote {
      font-size: 1.8rem;
      line-height: 2rem; } }
  @media screen and (min-width: 60em) {
    .exhibition__quote {
      font-size: 2rem;
      line-height: 2.4rem; } }
  .exhibition__quote:before {
    content: '\e801';
    color: #77b0a4;
    font-family: fontello;
    font-size: 32px;
    font-size: 2rem;
    line-height: 35.2px;
    line-height: 2.2rem;
    position: absolute;
    left: 24px;
    top: -24px; }
    @media screen and (min-width: 48em) {
      .exhibition__quote:before {
        font-size: 2.4rem;
        line-height: 2.6rem; } }
    @media screen and (min-width: 60em) {
      .exhibition__quote:before {
        font-size: 2.6rem;
        line-height: 2.8rem; } }
  .exhibition__quote:after {
    bottom: -12px;
    content: '\e801';
    color: #77b0a4;
    font-family: fontello;
    font-size: 22.4px;
    font-size: 1.4rem;
    line-height: 25.6px;
    line-height: 1.6rem;
    position: absolute;
    right: 24px;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
    @media screen and (min-width: 48em) {
      .exhibition__quote:after {
        font-size: 1.5rem;
        line-height: 1.8rem; } }
    @media screen and (min-width: 60em) {
      .exhibition__quote:after {
        font-size: 1.8rem;
        line-height: 2.4rem; } }
  @media (min-width: 48em) {
    .exhibition__quote {
      padding: 24px;
      font-size: 1.4rem;
      line-height: 1.6rem; } }
  @media screen and (min-width: 48em) and (min-width: 48em) {
    .exhibition__quote {
      font-size: 1.5rem;
      line-height: 1.8rem; } }
  @media screen and (min-width: 48em) and (min-width: 60em) {
    .exhibition__quote {
      font-size: 1.8rem;
      line-height: 2.4rem; } }
  @media (min-width: 60em) {
    .exhibition__quote {
      font-size: 1.6rem;
      line-height: 2rem; } }
  @media screen and (min-width: 60em) and (min-width: 48em) {
    .exhibition__quote {
      font-size: 1.8rem;
      line-height: 2rem; } }
  @media screen and (min-width: 60em) and (min-width: 60em) {
    .exhibition__quote {
      font-size: 2rem;
      line-height: 2.4rem; } }

.exhibition__large-image-row {
  display: block;
  padding: 48px 0;
  padding: 3rem 0;
  position: relative; }
  .exhibition__large-image-row .exhibition-gallery__item {
    position: relative;
    margin: 0 4px;
    width: 100%;
    z-index: 5; }
    @media (min-width: 40em) {
      .exhibition__large-image-row .exhibition-gallery__item {
        width: 100%; } }
    @media (min-width: 48em) {
      .exhibition__large-image-row .exhibition-gallery__item {
        width: 100%; } }

.exhibition__text-row {
  padding: 48px 0;
  padding: 3rem 0; }

.exhibition__video-row {
  display: block;
  padding: 24px 0 48px;
  position: relative; }
  .exhibition__video-row .exhibition__video-container {
    max-width: 800px;
    margin: 0 -3%;
    text-align: center; }
    @media (min-width: 40em) {
      .exhibition__video-row .exhibition__video-container {
        margin: 0 auto; } }
  .exhibition__video-row .exhibition__video {
    height: 0;
    margin: 0 auto;
    padding-bottom: 56.25%;
    position: relative;
    text-align: center; }
    .exhibition__video-row .exhibition__video iframe {
      bottom: 0;
      height: 100%;
      left: 0;
      position: absolute;
      top: 0;
      width: 100%; }
  .exhibition__video-row .exhibition__video-info {
    background: #ffffff;
    display: inline-block;
    padding: 16px 24px 24px 36px;
    position: relative;
    text-align: left;
    width: 100%; }
    @media (min-width: 40em) {
      .exhibition__video-row .exhibition__video-info {
        padding: 16px 24px 24px 48px;
        width: 80%; } }
    .exhibition__video-row .exhibition__video-info:before {
      background: #77b0a4;
      bottom: -12px;
      content: '';
      left: 3%;
      position: absolute;
      top: 12px;
      width: 1px; }
      @media (min-width: 40em) {
        .exhibition__video-row .exhibition__video-info:before {
          left: 24px; } }
  .exhibition__video-row .exhibition__video-title {
    font-size: 19.2px;
    font-size: 1.2rem;
    line-height: 22.4px;
    line-height: 1.4rem;
    font-weight: 600;
    margin-bottom: 6px; }
  .exhibition__video-row .exhibition__video-author {
    margin-bottom: 0; }

.exhibition-tip {
  display: block;
  position: relative;
  background: #322f33; }
  @media (min-width: 48em) {
    .exhibition-tip {
      padding: 48px 0; } }

.exhibition-tip__content {
  display: inline-block;
  font-size: 22.4px;
  font-size: 1.4rem;
  line-height: 25.6px;
  line-height: 1.6rem;
  padding: 24px 16px;
  position: relative;
  margin: 0 auto;
  text-align: center; }
  @media screen and (min-width: 48em) {
    .exhibition-tip__content {
      font-size: 1.5rem;
      line-height: 1.8rem; } }
  @media screen and (min-width: 60em) {
    .exhibition-tip__content {
      font-size: 1.8rem;
      line-height: 2.4rem; } }
  @media (min-width: 48em) {
    .exhibition-tip__content {
      padding: 24px; } }

.exhibition-tip__quote {
  border: none;
  font-size: 16px;
  font-size: 1rem;
  line-height: 32px;
  line-height: 2rem;
  padding: 0 32px;
  padding: 0 2rem;
  color: #ffffff;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 300;
  display: inline-block;
  margin: 0 auto !important;
  position: relative; }
  @media (min-width: 48em) {
    .exhibition-tip__quote {
      padding: 0 4.5rem;
      font-size: 1.5rem;
      line-height: 3rem; } }
  @media (min-width: 60em) {
    .exhibition-tip__quote {
      max-width: 70%;
      margin: 0 auto; } }
  .exhibition-tip__quote p {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 32px;
    line-height: 2rem; }
  .exhibition-tip__quote:before {
    color: #F9BE00;
    border: none;
    font-size: 64px;
    font-size: 4rem;
    line-height: 0;
    font-family: fontello;
    top: 16px;
    top: 1rem;
    left: 0;
    padding: 0;
    position: absolute; }
    @media (min-width: 48em) {
      .exhibition-tip__quote:before {
        font-size: 8rem;
        top: 1.5rem; } }
  .exhibition-tip__quote:after {
    display: block;
    color: #F9BE00;
    content: "\201C";
    font-family: fontello;
    font-size: 64px;
    font-size: 4rem;
    line-height: 0;
    padding-top: 0;
    position: absolute;
    right: 0;
    bottom: 64px;
    bottom: 4rem;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
    @media (min-width: 48em) {
      .exhibition-tip__quote:after {
        font-size: 8rem;
        bottom: 6rem; } }
  .exhibition-tip__quote footer {
    display: inline-block;
    padding: 0 48px;
    border-top: 2px solid #F9BE00;
    font-style: italic; }

.exhibition__entry {
  display: block;
  position: relative; }
  @media (min-width: 48em) {
    .exhibition__entry:nth-of-type(even) .exhibition__text-row .exhibition__text {
      width: 72.5%; } }
  @media (min-width: 60em) {
    .exhibition__entry:nth-of-type(even) .exhibition__text-row .exhibition__text {
      width: 64.16667%; } }
  .exhibition__entry:nth-of-type(even) .exhibition__large-image-row .exhibition-gallery,
  .exhibition__entry:nth-of-type(even) .exhibition__large-image-row .video-wrap,
  .exhibition__entry:nth-of-type(even) .exhibition__large-image-row .bbc-container {
    width: 97.5%; }
    @media (min-width: 90.075em) {
      .exhibition__entry:nth-of-type(even) .exhibition__large-image-row .exhibition-gallery,
      .exhibition__entry:nth-of-type(even) .exhibition__large-image-row .video-wrap,
      .exhibition__entry:nth-of-type(even) .exhibition__large-image-row .bbc-container {
        width: 64.16667%; } }
  .exhibition__entry:nth-of-type(even) .exhibition__large-image-row .exhibition__text {
    width: 97.5%; }
    @media (min-width: 48em) {
      .exhibition__entry:nth-of-type(even) .exhibition__large-image-row .exhibition__text {
        width: 72.5%; } }
    @media (min-width: 90.075em) {
      .exhibition__entry:nth-of-type(even) .exhibition__large-image-row .exhibition__text {
        width: 30.83333%; } }
  .exhibition__entry:nth-of-type(even) .exhibition__large-image-row .exhibition__text-only .exhibition__text {
    width: 97.5%; }
    @media (min-width: 48em) {
      .exhibition__entry:nth-of-type(even) .exhibition__large-image-row .exhibition__text-only .exhibition__text {
        width: 72.5%; } }
    @media (min-width: 60em) {
      .exhibition__entry:nth-of-type(even) .exhibition__large-image-row .exhibition__text-only .exhibition__text {
        width: 64.16667%; } }
  .exhibition__entry:nth-of-type(odd) .exhibition__text-row .exhibition__text {
    width: 97.5%; }
    @media (min-width: 48em) {
      .exhibition__entry:nth-of-type(odd) .exhibition__text-row .exhibition__text {
        width: 72.5%;
        margin-left: 26.25%; } }
    @media (min-width: 60em) {
      .exhibition__entry:nth-of-type(odd) .exhibition__text-row .exhibition__text {
        width: 64.16667%;
        margin-left: 34.58333%; } }
  .exhibition__entry:nth-of-type(odd) .exhibition__large-image-row .exhibition-gallery,
  .exhibition__entry:nth-of-type(odd) .exhibition__large-image-row .video-wrap,
  .exhibition__entry:nth-of-type(odd) .exhibition__large-image-row .bbc-container {
    width: 97.5%; }
    @media (min-width: 90.075em) {
      .exhibition__entry:nth-of-type(odd) .exhibition__large-image-row .exhibition-gallery,
      .exhibition__entry:nth-of-type(odd) .exhibition__large-image-row .video-wrap,
      .exhibition__entry:nth-of-type(odd) .exhibition__large-image-row .bbc-container {
        width: 64.16667%;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
           -moz-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2; } }
  .exhibition__entry:nth-of-type(odd) .exhibition__large-image-row .exhibition__text {
    width: 97.5%; }
    @media (min-width: 48em) {
      .exhibition__entry:nth-of-type(odd) .exhibition__large-image-row .exhibition__text {
        width: 72.5%; } }
    @media (min-width: 90.075em) {
      .exhibition__entry:nth-of-type(odd) .exhibition__large-image-row .exhibition__text {
        width: 30.83333%;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
           -moz-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1; } }

.exhibition-img-overlay-link {
  height: 100%;
  min-height: 150px; }
  .exhibition-img-overlay-link:focus {
    outline: 3px solid #F9BE00; }

.exhibition-img-overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  background: #777777; }
  .exhibition-img-overlay .panel-overlay {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
       -moz-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-top: 0; }
  .exhibition-img-overlay .panel-overlay__page-type {
    margin-bottom: 0; }

.exhibition-subheading {
  padding: 48px 0 12px 0;
  margin-bottom: 60px;
  position: relative; }
  .exhibition-subheading:after {
    content: '';
    height: 8px;
    position: absolute;
    bottom: 0;
    background-color: #F6BA34;
    width: 85px; }

.exhibition-subheading__title {
  font-size: 32px;
  font-size: 2rem;
  line-height: 35.2px;
  line-height: 2.2rem;
  color: #4e1e66;
  font-weight: 600;
  margin-bottom: 24px;
  max-width: 780px; }
  @media screen and (min-width: 48em) {
    .exhibition-subheading__title {
      font-size: 2.4rem;
      line-height: 2.6rem; } }
  @media screen and (min-width: 60em) {
    .exhibition-subheading__title {
      font-size: 2.6rem;
      line-height: 2.8rem; } }

.exhibition-subheading__subtitle {
  font-size: 17.6px;
  font-size: 1.1rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  margin-bottom: 24px;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 300;
  color: #666666;
  max-width: 780px; }

.exhibition-alt .wrapper--border {
  border-top: 10px #f6bb35 solid; }

.exhibition-alt-container {
  display: block;
  margin: 0 auto;
  position: relative; }
  @media (min-width: 60em) {
    .exhibition-alt-container > .wrapper > .row {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: end;
      -webkit-align-items: flex-end;
         -moz-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end; } }
  .exhibition-alt-container--with-border .wrapper {
    border-bottom: 1px solid #666666; }

.exhibition-alt__intro {
  display: block;
  padding: 36px 0 48px 0;
  position: relative; }
  .exhibition-alt__intro a {
    color: #4e1e66 !important; }
    .exhibition-alt__intro a:after {
      color: #4e1e66 !important; }

.exhibition-alt__info {
  display: block;
  padding: 12px 0;
  position: relative;
  margin: 0 auto;
  font-size: 17.6px;
  font-size: 1.1rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  text-align: center; }

.exhibition-alt-section-title {
  display: block;
  padding: 24px 24px 24px;
  text-align: center; }

.exhibition-alt-item {
  background: #ffffff;
  border-top: 1px solid #dddddd;
  margin: 0 auto 24px;
  padding: 36px 16px 16px;
  position: relative;
  text-align: center;
  width: 90%; }
  .exhibition-alt-item:after {
    background: #fafafa;
    bottom: -48px;
    bottom: -3rem;
    content: "";
    height: 48px;
    height: 3rem;
    left: 50%;
    position: absolute;
    width: 1px; }
  .exhibition-alt-item:last-of-type:after {
    display: none; }

.exhibition-alt-item__info {
  color: #333333; }

.exhibition-alt-item__title {
  display: block;
  margin-bottom: 24px;
  position: relative;
  font-size: 27.2px;
  font-size: 1.7rem;
  font-weight: 700; }

.exhibition-alt-links__item {
  display: inline-block;
  margin-right: 8px;
  padding: 8px 12px;
  position: relative; }

.exhibition-alt-gallery,
.exhibition-alt-sketchfab {
  display: block;
  padding-top: 12px;
  position: relative;
  width: 100%;
  z-index: 5; }
  .exhibition-alt-gallery .flickity-page-dots,
  .exhibition-alt-sketchfab .flickity-page-dots {
    display: none; }
  .exhibition-alt-gallery .flickity-prev-next-button,
  .exhibition-alt-sketchfab .flickity-prev-next-button {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #4e1e66;
    color: #fff;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 36px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 36px;
    z-index: 2; }
    @media (min-width: 60em) {
      .exhibition-alt-gallery .flickity-prev-next-button,
      .exhibition-alt-sketchfab .flickity-prev-next-button {
        height: 44px;
        width: 44px; } }
    .exhibition-alt-gallery .flickity-prev-next-button.previous:after, .exhibition-alt-gallery .flickity-prev-next-button.next:after,
    .exhibition-alt-sketchfab .flickity-prev-next-button.previous:after,
    .exhibition-alt-sketchfab .flickity-prev-next-button.next:after {
      position: static;
      color: #fff;
      content: "\e75e";
      font-family: fontello;
      font-style: normal;
      font-weight: 400;
      font-size: 16px;
      font-size: 1rem; }
    .exhibition-alt-gallery .flickity-prev-next-button .flickity-button-icon,
    .exhibition-alt-sketchfab .flickity-prev-next-button .flickity-button-icon {
      height: 18px;
      left: auto;
      opacity: 0.6;
      top: auto;
      -webkit-transition: all 0.1s ease-out;
      transition: all 0.1s ease-out;
      width: 18px; }
      @media (min-width: 60em) {
        .exhibition-alt-gallery .flickity-prev-next-button .flickity-button-icon,
        .exhibition-alt-sketchfab .flickity-prev-next-button .flickity-button-icon {
          height: 24px;
          width: 24px; } }
    .exhibition-alt-gallery .flickity-prev-next-button.previous,
    .exhibition-alt-sketchfab .flickity-prev-next-button.previous {
      left: 12.8px;
      left: 0.8rem; }
      .exhibition-alt-gallery .flickity-prev-next-button.previous:after,
      .exhibition-alt-sketchfab .flickity-prev-next-button.previous:after {
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg); }
      @media (min-width: 60em) {
        .exhibition-alt-gallery .flickity-prev-next-button.previous,
        .exhibition-alt-sketchfab .flickity-prev-next-button.previous {
          left: -1.5rem; } }
    .exhibition-alt-gallery .flickity-prev-next-button.next,
    .exhibition-alt-sketchfab .flickity-prev-next-button.next {
      right: 12.8px;
      right: 0.8rem; }
      @media (min-width: 60em) {
        .exhibition-alt-gallery .flickity-prev-next-button.next,
        .exhibition-alt-sketchfab .flickity-prev-next-button.next {
          right: -1.5rem; } }
    .exhibition-alt-gallery .flickity-prev-next-button:hover,
    .exhibition-alt-sketchfab .flickity-prev-next-button:hover {
      background-color: #555555;
      color: #ffffff; }
      .exhibition-alt-gallery .flickity-prev-next-button:hover .flickity-button-icon,
      .exhibition-alt-sketchfab .flickity-prev-next-button:hover .flickity-button-icon {
        opacity: 1; }
      .exhibition-alt-gallery .flickity-prev-next-button:hover.previous:after, .exhibition-alt-gallery .flickity-prev-next-button:hover.next:after,
      .exhibition-alt-sketchfab .flickity-prev-next-button:hover.previous:after,
      .exhibition-alt-sketchfab .flickity-prev-next-button:hover.next:after {
        color: #ffffff; }

.exhibition-alt-gallery__item {
  position: relative;
  margin: 0 4px;
  width: 90%;
  z-index: 5; }
  .exhibition-alt-gallery__item picture {
    width: 100%; }
    .exhibition-alt-gallery__item picture img {
      max-width: none;
      width: 100%; }
  @media (min-width: 40em) {
    .exhibition-alt-gallery__item {
      width: 50%; } }
  @media (min-width: 48em) {
    .exhibition-alt-gallery__item {
      width: 33.3333%; } }

.exhibition-alt-gallery__item-expand {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #4e1e66;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 8px;
  top: 8px;
  border: 4px solid transparent;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 40px; }
  .exhibition-alt-gallery__item-expand:after, .exhibition-alt-gallery__item-expand:before {
    content: "";
    background: url("/Content/images/icons/expand-arrow--white.svg");
    background-size: cover;
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 2px;
    right: 2px; }
  .exhibition-alt-gallery__item-expand:before {
    top: auto;
    right: auto;
    bottom: 2px;
    left: 2px;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
  .exhibition-alt-gallery__item-expand:hover, .exhibition-alt-gallery__item-expand:focus {
    border: 2px solid transparent;
    background: #555555; }
    .exhibition-alt-gallery__item-expand:hover:after, .exhibition-alt-gallery__item-expand:hover:before, .exhibition-alt-gallery__item-expand:focus:after, .exhibition-alt-gallery__item-expand:focus:before {
      background: url("/Content/images/icons/expand-arrow--white.svg");
      background-size: cover; }
  .exhibition-alt-gallery__item-expand:focus {
    outline: 4px solid #333333; }

.exhibition-alt__text {
  display: block;
  position: relative;
  z-index: 2;
  margin-top: 24px; }
  .exhibition-alt__text.col {
    padding: 24px 0 0 0;
    padding: 1.5rem 0 0 0; }
  .exhibition-alt__text:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: #4e1e66; }
  .exhibition-alt__text a:not(.btn) {
    color: #4e1e66;
    text-decoration: underline; }
    .exhibition-alt__text a:not(.btn):hover {
      text-decoration: none;
      color: #4e1e66; }
    .exhibition-alt__text a:not(.btn):after {
      color: #4e1e66 !important; }
  @media (min-width: 60em) {
    .exhibition-alt__text {
      margin-top: 0; }
      .exhibition-alt__text:before {
        width: 90%; } }

.exhibition-alt__text-only .exhibition-alt__text {
  margin-top: 0;
  padding-left: 24px; }
  .exhibition-alt__text-only .exhibition-alt__text:before {
    width: 2px;
    height: 100%; }

.exhibition-alt__description {
  display: block;
  margin-bottom: 24px;
  position: relative; }
  .exhibition-alt__description p {
    word-break: break-word; }
  .exhibition-alt__description.active .exhibition-alt__text-expand {
    max-height: none;
    opacity: 1;
    padding: 0 0 12px; }
  .exhibition-alt__description.active .exhibition-alt__expand-btn {
    display: none; }
  .exhibition-alt__description.active .exhibition-alt__collapse-btn {
    display: inline-block; }

.exhibition-alt__quote {
  background: #ffffff;
  display: block;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 300;
  font-size: 25.6px;
  font-size: 1.6rem;
  line-height: 32px;
  line-height: 2rem;
  line-height: 1.3;
  position: relative; }
  @media screen and (min-width: 48em) {
    .exhibition-alt__quote {
      font-size: 1.8rem;
      line-height: 2rem; } }
  @media screen and (min-width: 60em) {
    .exhibition-alt__quote {
      font-size: 2rem;
      line-height: 2.4rem; } }
  .exhibition-alt__quote:before {
    content: "\e801";
    color: #77b0a4;
    font-family: fontello;
    font-size: 32px;
    font-size: 2rem;
    line-height: 35.2px;
    line-height: 2.2rem;
    position: absolute;
    left: 24px;
    top: -24px; }
    @media screen and (min-width: 48em) {
      .exhibition-alt__quote:before {
        font-size: 2.4rem;
        line-height: 2.6rem; } }
    @media screen and (min-width: 60em) {
      .exhibition-alt__quote:before {
        font-size: 2.6rem;
        line-height: 2.8rem; } }
  .exhibition-alt__quote:after {
    bottom: -12px;
    content: "\e801";
    color: #77b0a4;
    font-family: fontello;
    font-size: 22.4px;
    font-size: 1.4rem;
    line-height: 25.6px;
    line-height: 1.6rem;
    position: absolute;
    right: 24px;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
    @media screen and (min-width: 48em) {
      .exhibition-alt__quote:after {
        font-size: 1.5rem;
        line-height: 1.8rem; } }
    @media screen and (min-width: 60em) {
      .exhibition-alt__quote:after {
        font-size: 1.8rem;
        line-height: 2.4rem; } }
  @media (min-width: 48em) {
    .exhibition-alt__quote {
      padding: 24px;
      font-size: 1.4rem;
      line-height: 1.6rem; } }
  @media screen and (min-width: 48em) and (min-width: 48em) {
    .exhibition-alt__quote {
      font-size: 1.5rem;
      line-height: 1.8rem; } }
  @media screen and (min-width: 48em) and (min-width: 60em) {
    .exhibition-alt__quote {
      font-size: 1.8rem;
      line-height: 2.4rem; } }
  @media (min-width: 60em) {
    .exhibition-alt__quote {
      font-size: 1.6rem;
      line-height: 2rem; } }
  @media screen and (min-width: 60em) and (min-width: 48em) {
    .exhibition-alt__quote {
      font-size: 1.8rem;
      line-height: 2rem; } }
  @media screen and (min-width: 60em) and (min-width: 60em) {
    .exhibition-alt__quote {
      font-size: 2rem;
      line-height: 2.4rem; } }

.exhibition-alt__large-image-row {
  display: block;
  padding: 48px 0;
  padding: 3rem 0;
  position: relative; }
  .exhibition-alt__large-image-row .exhibition-alt-gallery__item {
    position: relative;
    margin: 0 4px;
    width: 100%;
    z-index: 5; }
    @media (min-width: 40em) {
      .exhibition-alt__large-image-row .exhibition-alt-gallery__item {
        width: 100%; } }
    @media (min-width: 48em) {
      .exhibition-alt__large-image-row .exhibition-alt-gallery__item {
        width: 100%; } }

.exhibition-alt__text-row {
  padding: 48px 0;
  padding: 3rem 0; }

.exhibition-alt__video-row {
  display: block;
  padding: 24px 0 48px;
  position: relative; }
  .exhibition-alt__video-row .exhibition-alt__video-container {
    max-width: 800px;
    margin: 0 -3%;
    text-align: center; }
    @media (min-width: 40em) {
      .exhibition-alt__video-row .exhibition-alt__video-container {
        margin: 0 auto; } }
  .exhibition-alt__video-row .exhibition-alt__video {
    height: 0;
    margin: 0 auto;
    padding-bottom: 56.25%;
    position: relative;
    text-align: center; }
    .exhibition-alt__video-row .exhibition-alt__video iframe {
      bottom: 0;
      height: 100%;
      left: 0;
      position: absolute;
      top: 0;
      width: 100%; }
  .exhibition-alt__video-row .exhibition-alt__video-info {
    background: #ffffff;
    display: inline-block;
    padding: 16px 24px 24px 36px;
    position: relative;
    text-align: left;
    width: 100%; }
    @media (min-width: 40em) {
      .exhibition-alt__video-row .exhibition-alt__video-info {
        padding: 16px 24px 24px 48px;
        width: 80%; } }
    .exhibition-alt__video-row .exhibition-alt__video-info:before {
      background: #77b0a4;
      bottom: -12px;
      content: "";
      left: 3%;
      position: absolute;
      top: 12px;
      width: 1px; }
      @media (min-width: 40em) {
        .exhibition-alt__video-row .exhibition-alt__video-info:before {
          left: 24px; } }
  .exhibition-alt__video-row .exhibition-alt__video-title {
    font-size: 19.2px;
    font-size: 1.2rem;
    line-height: 22.4px;
    line-height: 1.4rem;
    font-weight: 600;
    margin-bottom: 6px; }
  .exhibition-alt__video-row .exhibition-alt__video-author {
    margin-bottom: 0; }

.exhibition-alt-tip {
  display: block;
  position: relative;
  background-color: #4e1e66; }

.exhibition-alt-tip__content {
  display: inline-block;
  padding: 24px 30px;
  position: relative;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  overflow: hidden; }
  .exhibition-alt-tip__content:before, .exhibition-alt-tip__content:after {
    content: "";
    display: block;
    position: absolute;
    left: -80px;
    top: -30px;
    bottom: -30px;
    width: 100px;
    background: #4e1e66;
    -webkit-transform: rotate(-8deg);
        -ms-transform: rotate(-8deg);
            transform: rotate(-8deg); }
  .exhibition-alt-tip__content:after {
    left: auto;
    right: -80px; }
  @media (min-width: 48em) {
    .exhibition-alt-tip__content {
      padding: 72px 50px; } }

.exhibition-alt-tip__quote {
  border: none;
  padding: 0;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 300;
  display: inline-block;
  margin: 0 auto !important;
  position: relative; }
  .exhibition-alt-tip__quote p {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0; }
  @media (min-width: 60em) {
    .exhibition-alt-tip__quote {
      max-width: 70%; }
      .exhibition-alt-tip__quote p {
        font-size: 1.5rem; } }
  .exhibition-alt-tip__quote:before, .exhibition-alt-tip__quote:after {
    color: #4e1e66;
    display: block;
    border: 0;
    font-size: 48px;
    font-size: 3rem;
    line-height: 0;
    font-family: fontello;
    content: "\201C";
    padding: 0;
    position: absolute;
    top: 0;
    left: 0; }
    @media (min-width: 48em) {
      .exhibition-alt-tip__quote:before, .exhibition-alt-tip__quote:after {
        font-size: 8rem;
        left: -70px; } }
  .exhibition-alt-tip__quote:after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    right: 0;
    left: auto;
    bottom: 0; }
    @media (min-width: 48em) {
      .exhibition-alt-tip__quote:after {
        right: -70px; } }
  .exhibition-alt-tip__quote footer {
    display: inline-block;
    padding: 12px 48px 0;
    margin-top: 12px;
    border-top: 2px solid #4e1e66;
    font-style: italic;
    font-size: 12px;
    font-size: 0.75rem; }
    @media (min-width: 48em) {
      .exhibition-alt-tip__quote footer {
        font-size: 1rem; } }

.exhibition-alt-tip__quote-footer {
  font-size: 16px;
  font-size: 1rem; }

.exhibition-alt-sketchfab {
  padding-top: 56.25%;
  position: relative; }
  .exhibition-alt-sketchfab iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.exhibition-alt__entry {
  display: block;
  position: relative; }
  @media (min-width: 48em) {
    .exhibition-alt__entry:nth-of-type(even) .exhibition-alt__text-row .exhibition-alt__text {
      width: 72.5%; } }
  @media (min-width: 60em) {
    .exhibition-alt__entry:nth-of-type(even) .exhibition-alt__text-row .exhibition-alt__text {
      width: 64.16667%; } }
  .exhibition-alt__entry:nth-of-type(even) .exhibition-alt__large-image-row .exhibition-alt-gallery,
  .exhibition-alt__entry:nth-of-type(even) .exhibition-alt__large-image-row .exhibition-alt-sketchfab,
  .exhibition-alt__entry:nth-of-type(even) .exhibition-alt__large-image-row .video-wrap,
  .exhibition-alt__entry:nth-of-type(even) .exhibition-alt__large-image-row .bbc-container {
    width: 97.5%; }
    @media (min-width: 60em) {
      .exhibition-alt__entry:nth-of-type(even) .exhibition-alt__large-image-row .exhibition-alt-gallery,
      .exhibition-alt__entry:nth-of-type(even) .exhibition-alt__large-image-row .exhibition-alt-sketchfab,
      .exhibition-alt__entry:nth-of-type(even) .exhibition-alt__large-image-row .video-wrap,
      .exhibition-alt__entry:nth-of-type(even) .exhibition-alt__large-image-row .bbc-container {
        width: 64.16667%; } }
  .exhibition-alt__entry:nth-of-type(even) .exhibition-alt__large-image-row .exhibition-alt__text {
    width: 97.5%; }
    @media (min-width: 48em) {
      .exhibition-alt__entry:nth-of-type(even) .exhibition-alt__large-image-row .exhibition-alt__text {
        width: 72.5%; } }
    @media (min-width: 60em) {
      .exhibition-alt__entry:nth-of-type(even) .exhibition-alt__large-image-row .exhibition-alt__text {
        width: 30.83333%; } }
  .exhibition-alt__entry:nth-of-type(even) .exhibition-alt__large-image-row .exhibition-alt__text-only .exhibition-alt__text {
    width: 97.5%; }
    @media (min-width: 48em) {
      .exhibition-alt__entry:nth-of-type(even) .exhibition-alt__large-image-row .exhibition-alt__text-only .exhibition-alt__text {
        width: 72.5%; } }
    @media (min-width: 60em) {
      .exhibition-alt__entry:nth-of-type(even) .exhibition-alt__large-image-row .exhibition-alt__text-only .exhibition-alt__text {
        width: 64.16667%; } }
  .exhibition-alt__entry:nth-of-type(odd) .exhibition-alt__text-row .exhibition-alt__text {
    width: 97.5%; }
    @media (min-width: 48em) {
      .exhibition-alt__entry:nth-of-type(odd) .exhibition-alt__text-row .exhibition-alt__text {
        width: 72.5%;
        margin-left: 26.25%; } }
    @media (min-width: 60em) {
      .exhibition-alt__entry:nth-of-type(odd) .exhibition-alt__text-row .exhibition-alt__text {
        width: 64.16667%;
        margin-left: 34.58333%; } }
  .exhibition-alt__entry:nth-of-type(odd) .exhibition-alt__large-image-row .exhibition-alt-gallery,
  .exhibition-alt__entry:nth-of-type(odd) .exhibition-alt__large-image-row .exhibition-alt-sketchfab,
  .exhibition-alt__entry:nth-of-type(odd) .exhibition-alt__large-image-row .video-wrap,
  .exhibition-alt__entry:nth-of-type(odd) .exhibition-alt__large-image-row .bbc-container {
    width: 97.5%; }
    @media (min-width: 60em) {
      .exhibition-alt__entry:nth-of-type(odd) .exhibition-alt__large-image-row .exhibition-alt-gallery,
      .exhibition-alt__entry:nth-of-type(odd) .exhibition-alt__large-image-row .exhibition-alt-sketchfab,
      .exhibition-alt__entry:nth-of-type(odd) .exhibition-alt__large-image-row .video-wrap,
      .exhibition-alt__entry:nth-of-type(odd) .exhibition-alt__large-image-row .bbc-container {
        width: 64.16667%;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
           -moz-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2; } }
  .exhibition-alt__entry:nth-of-type(odd) .exhibition-alt__large-image-row .exhibition-alt__text {
    width: 97.5%; }
    @media (min-width: 48em) {
      .exhibition-alt__entry:nth-of-type(odd) .exhibition-alt__large-image-row .exhibition-alt__text {
        width: 72.5%; } }
    @media (min-width: 60em) {
      .exhibition-alt__entry:nth-of-type(odd) .exhibition-alt__large-image-row .exhibition-alt__text {
        width: 30.83333%;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
           -moz-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1; } }

.exhibition-alt-img-overlay-link {
  height: 100%; }

.exhibition-alt-img-overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%; }
  .exhibition-alt-img-overlay .panel-overlay {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
       -moz-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }

.virtual-visits .panel-overlay__page-type {
  color: #fff;
  background: #4c2364; }
  .virtual-visits .panel-overlay__page-type::before {
    display: none; }

.virtual-visits .venue-header__title,
.virtual-visits .venue-header__sub-title {
  color: #212121; }

.iframe__wrapper {
  width: 100%;
  position: relative; }
  .iframe__wrapper--4by3 {
    padding-bottom: 75%; }
  .iframe__wrapper--16by9 {
    padding-bottom: 56.25%; }
  .iframe__wrapper--1by1 {
    padding-bottom: 100%; }
  .iframe__wrapper iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%; }

.os_widget, [name=opinionstage-widget] {
  margin: 0 auto;
  width: 94%;
  margin-bottom: 24px;
  margin-bottom: 1.5rem; }
  .os_widget:before, .os_widget:after, [name=opinionstage-widget]:before, [name=opinionstage-widget]:after {
    content: "";
    display: table; }
  .os_widget:after, [name=opinionstage-widget]:after {
    clear: both; }
  @media screen and (min-width: 60em) {
    .os_widget, [name=opinionstage-widget] {
      max-width: 1200px;
      width: 96%; } }
  @media screen and (min-width: 90.075em) {
    .os_widget, [name=opinionstage-widget] {
      max-width: 1400px;
      width: 96%; } }

[name=opinionstage-widget] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex; }

.privacy-content__overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85); }
  .privacy-content__overlay .privacy-content {
    z-index: 2;
    padding: 24px;
    padding: 1.5rem;
    width: unset; }

.blur-overlay {
  filter: blur(8px);
  -webkit-filter: blur(8px); }

.thinglink {
  padding-top: 56.25%;
  position: relative; }
  .thinglink iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.bbc-iframe-container {
  padding-bottom: 77.25%;
  width: 100%;
  position: relative; }

.bbc-iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%; }

.sharefile-container.iframe__wrapper {
  padding-bottom: 235%; }
  @media screen and (min-width: 40em) {
    .sharefile-container.iframe__wrapper {
      padding-bottom: 70%; } }
  @media screen and (min-width: 60em) {
    .sharefile-container.iframe__wrapper {
      padding-bottom: 155%; } }
  @media screen and (min-width: 90.075em) {
    .sharefile-container.iframe__wrapper {
      padding-bottom: 55%; } }

.competition-gallery {
  background-image: url("/content/images/dark_embroidery.png");
  background-color: #212121;
  padding-bottom: 48px;
  padding-bottom: 3rem;
  padding-top: 32px;
  padding-top: 2rem;
  padding-bottom: 0; }
  @media screen and (min-width: 60em) {
    .competition-gallery {
      padding-bottom: 4rem;
      padding-top: 4rem;
      margin-top: -48px; } }
  @media screen and (min-width: 60em) {
    .competition-gallery {
      padding-bottom: 0; } }
  .competition-gallery__header {
    text-align: center;
    margin: 32px 0;
    margin: 2rem 0;
    padding-bottom: 32px;
    padding-bottom: 2rem; }
    @media screen and (min-width: 48em) {
      .competition-gallery__header {
        margin: 1rem 0 3rem 0; } }
    @media screen and (min-width: 60em) {
      .competition-gallery__header {
        padding-bottom: 2rem; } }
  .competition-gallery__title {
    padding: 0;
    color: #ececec;
    font-size: 35.2px;
    font-size: 2.2rem;
    line-height: 38.4px;
    line-height: 2.4rem; }
    @media screen and (min-width: 48em) {
      .competition-gallery__title {
        font-size: 2.8rem;
        line-height: 3.2rem; } }
    @media screen and (min-width: 60em) {
      .competition-gallery__title {
        font-size: 3.2rem;
        line-height: 3.6rem; } }
  .competition-gallery__header-insert {
    display: inline-block;
    padding-top: 22.4px;
    padding-top: 1.4rem;
    padding-bottom: 28.8px;
    padding-bottom: 1.8rem;
    position: relative;
    z-index: 10; }
    .competition-gallery__header-insert:before {
      -webkit-animation: tween 2s ease forwards;
              animation: tween 2s ease forwards;
      background-color: #7b7b7a;
      content: "";
      display: block;
      position: absolute;
      left: 50%;
      top: 0;
      right: 50%;
      width: 0;
      height: 2px; }
    .competition-gallery__header-insert:after {
      -webkit-animation: tween 2s ease forwards;
              animation: tween 2s ease forwards;
      background-color: #7b7b7a;
      content: "";
      display: block;
      position: absolute;
      left: 50%;
      bottom: 0;
      right: 50%;
      width: 0;
      height: 2px; }
  .competition-gallery__header-insert-inner {
    display: block;
    opacity: 0;
    opacity: 1 \9;
    /*just in case ie*/
    -webkit-animation: fade-in-up ease-out 1;
            animation: fade-in-up ease-out 1;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-animation-duration: 0.75s;
            animation-duration: 0.75s;
    letter-spacing: 8px; }
  .competition-gallery__content {
    background-color: #212121;
    padding-top: 32px;
    padding-top: 2rem;
    padding-bottom: 48px;
    padding-bottom: 3rem;
    overflow: hidden; }
    @media screen and (min-width: 60em) {
      .competition-gallery__content {
        padding-bottom: 4rem; } }
  .competition-gallery__page-title {
    margin-bottom: 24px; }
  .competition-gallery__content-intro {
    padding-top: 32px;
    padding-top: 2rem;
    padding-bottom: 32px;
    padding-bottom: 2rem; }
    .competition-gallery__content-intro > p {
      font-size: 20.8px;
      font-size: 1.3rem;
      line-height: 25.6px;
      line-height: 1.6rem; }
    .competition-gallery__content-intro ul li {
      list-style-type: disc; }
    .competition-gallery__content-intro ol li {
      list-style-type: decimal; }
    .competition-gallery__content-intro ul, .competition-gallery__content-intro ol {
      margin-left: 24px;
      margin-left: 1.5rem;
      margin-right: 24px;
      margin-right: 1.5rem;
      margin-bottom: 24px;
      margin-bottom: 1.5rem; }
    .competition-gallery__content-intro li {
      font-size: 20.8px;
      font-size: 1.3rem;
      line-height: 25.6px;
      line-height: 1.6rem;
      margin-bottom: 8px;
      margin-bottom: 0.5rem; }
    .competition-gallery__content-intro a:not(.btn) {
      color: #F9BE00;
      text-decoration: underline; }
      .competition-gallery__content-intro a:not(.btn):hover, .competition-gallery__content-intro a:not(.btn):focus {
        text-decoration: none; }
      .competition-gallery__content-intro a:not(.btn):focus {
        outline: 2px solid #F9BE00; }
    @media screen and (min-width: 60em) {
      .competition-gallery__content-intro {
        margin-bottom: 4rem; }
        .competition-gallery__content-intro > * {
          max-width: 66%; } }
  .competition-gallery__gallery:not(:last-child) {
    border-bottom: 2px solid #777777;
    padding-bottom: 75px;
    padding-bottom: 4.6875rem;
    margin-bottom: 75px;
    margin-bottom: 4.6875rem; }
  .competition-gallery__gallery--large .owl-carousel__row-wrap {
    margin: 0 auto; }
    @media screen and (min-width: 60em) {
      .competition-gallery__gallery--large .owl-carousel__row-wrap {
        width: 50%; } }
  .competition-gallery__gallery--large .owl-carousel {
    position: static; }
  .competition-gallery__gallery--large .owl-stage-outer {
    overflow: visible; }
  @media screen and (max-width: 47.95em) {
    .competition-gallery__gallery--large .owl-carousel.owl-carousel--modal-gallery .owl-nav {
      position: static; } }
  .competition-gallery__gallery--large .owl-carousel.owl-carousel--modal-gallery .owl-nav button[class*='owl-'] {
    top: 33%; }
  .competition-gallery__gallery-header {
    font-size: 19.2px;
    font-size: 1.2rem;
    line-height: 22.4px;
    line-height: 1.4rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 48px;
    margin-bottom: 3rem; }
    .competition-gallery__gallery-header a {
      color: white;
      text-decoration: underline; }
      .competition-gallery__gallery-header a:hover, .competition-gallery__gallery-header a:focus {
        text-decoration: none; }
      .competition-gallery__gallery-header a:focus {
        outline: 2px solid #F9BE00; }
  .competition-gallery__gallery-title {
    font-size: 25.6px;
    font-size: 1.6rem;
    line-height: 32px;
    line-height: 2rem;
    color: #ffffff; }
    @media screen and (min-width: 48em) {
      .competition-gallery__gallery-title {
        font-size: 1.8rem;
        line-height: 2rem; } }
    @media screen and (min-width: 60em) {
      .competition-gallery__gallery-title {
        font-size: 2rem;
        line-height: 2.4rem; } }
  .competition-gallery__gallery-item {
    display: block;
    text-align: center;
    color: #ffffff;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    .competition-gallery__gallery-item > * {
      display: block; }
    .competition-gallery__gallery-item:hover, .competition-gallery__gallery-item:focus {
      color: #F9BE00; }
      .competition-gallery__gallery-item:hover .competition-gallery__gallery-thumbnail-wrapper, .competition-gallery__gallery-item:focus .competition-gallery__gallery-thumbnail-wrapper {
        background: -webkit-linear-gradient(top, #F9BE00 2px, transparent 2px, transparent -webkit-calc(100% - 2px), #F9BE00 -webkit-calc(100% - 2px)) no-repeat, -webkit-linear-gradient(right, #F9BE00 2px, transparent 2px, transparent -webkit-calc(100% - 2px), #F9BE00 -webkit-calc(100% - 2px)) no-repeat;
        background: linear-gradient(to bottom, #F9BE00 2px, transparent 2px, transparent calc(100% - 2px), #F9BE00 calc(100% - 2px)) no-repeat, linear-gradient(to left, #F9BE00 2px, transparent 2px, transparent calc(100% - 2px), #F9BE00 calc(100% - 2px)) no-repeat;
        background-position: center;
        background-size: 85% 100%, 100% 85%; }
        @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
          .competition-gallery__gallery-item:hover .competition-gallery__gallery-thumbnail-wrapper, .competition-gallery__gallery-item:focus .competition-gallery__gallery-thumbnail-wrapper {
            background-image: none;
            border: 2px solid #F9BE00; } }
      .competition-gallery__gallery-item:hover .competition-gallery__gallery-item-title, .competition-gallery__gallery-item:focus .competition-gallery__gallery-item-title {
        background-image: url(/content/images/venue-keystone-yellow.svg); }
      .competition-gallery__gallery-item:hover .competition-gallery__gallery-item-separator, .competition-gallery__gallery-item:focus .competition-gallery__gallery-item-separator {
        color: #F9BE00; }
  .competition-gallery__gallery-thumbnail-wrapper {
    display: inline-block;
    padding: 10px;
    padding: 0.625rem;
    margin-bottom: 12px;
    margin-bottom: 0.75rem;
    background-image: -webkit-linear-gradient(top, gray 2px, transparent 2px, transparent -webkit-calc(100% - 2px), gray -webkit-calc(100% - 2px)), -webkit-linear-gradient(right, gray 2px, transparent 2px, transparent -webkit-calc(100% - 2px), gray -webkit-calc(100% - 2px));
    background-image: linear-gradient(to bottom, gray 2px, transparent 2px, transparent calc(100% - 2px), gray calc(100% - 2px)), linear-gradient(to left, gray 2px, transparent 2px, transparent calc(100% - 2px), gray calc(100% - 2px));
    background-repeat: no-repeat;
    background-position: center;
    background-size: 85% 100%, 100% 85%; }
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      .competition-gallery__gallery-thumbnail-wrapper {
        background-image: none;
        border: 2px solid gray; } }
  .competition-gallery__gallery-thumbnail {
    display: block;
    width: auto;
    margin: 0 auto;
    background: url(/content/images/loading.gif) no-repeat center center; }
  .competition-gallery__gallery-item-title {
    font-size: 19.2px;
    font-size: 1.2rem;
    line-height: 22.4px;
    line-height: 1.4rem;
    padding-top: 32px;
    padding-top: 2rem;
    margin-bottom: 8px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    -webkit-transition: background-image 0.2s ease-in-out;
    transition: background-image 0.2s ease-in-out;
    background-image: url(/content/images/venue-keystone.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 1.5rem; }
  .competition-gallery__gallery-item-separator {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    line-height: 0;
    padding-bottom: 3px; }
  .competition-gallery__gallery-item-copyright, .competition-gallery__gallery-item-separator {
    color: #cccccc; }
  .competition-gallery__list .row > * {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 24px; }
    @media screen and (min-width: 60em) {
      .competition-gallery__list .row > *:nth-child(even) {
        padding-top: 96px; } }
    .competition-gallery__list .row > * > * {
      padding: 0 7.5%; }
      @media screen and (max-width: 60em) {
        .competition-gallery__list .row > * > * {
          margin-top: 24px; } }
      .competition-gallery__list .row > * > * img {
        max-height: 400px; }

.owl-carousel.owl-carousel--modal-gallery .owl-nav {
  /*Overrides from other carousel types*/ }
  .owl-carousel.owl-carousel--modal-gallery .owl-nav button[class*='owl-'] {
    background: rgba(249, 190, 0, 0.8);
    height: 72px;
    height: 4.5rem;
    -webkit-border-radius: 0;
            border-radius: 0; }
    .owl-carousel.owl-carousel--modal-gallery .owl-nav button[class*='owl-']:before {
      color: #1B181C;
      height: 72px;
      height: 4.5rem;
      line-height: 72px;
      font-size: 36px;
      font-size: 2.25rem;
      content: "\e824"; }
    .owl-carousel.owl-carousel--modal-gallery .owl-nav button[class*='owl-']:focus {
      background: white; }
  .owl-carousel.owl-carousel--modal-gallery .owl-nav button.owl-prev:before {
    content: "\e825"; }
  @media screen and (max-width: 60em) {
    .owl-carousel.owl-carousel--modal-gallery .owl-nav {
      position: absolute;
      width: 100%;
      top: 25%; } }
  @media screen and (max-width: 47.95em) {
    .owl-carousel.owl-carousel--modal-gallery .owl-nav {
      display: block;
      position: absolute;
      width: 100%;
      top: 25%; } }

.owl-item.selected .competition-gallery__gallery-thumbnail-wrapper {
  background: -webkit-linear-gradient(top, #F9BE00 2px, transparent 2px, transparent -webkit-calc(100% - 2px), #F9BE00 -webkit-calc(100% - 2px)) no-repeat, -webkit-linear-gradient(right, #F9BE00 2px, transparent 2px, transparent -webkit-calc(100% - 2px), #F9BE00 -webkit-calc(100% - 2px)) no-repeat;
  background: linear-gradient(to bottom, #F9BE00 2px, transparent 2px, transparent calc(100% - 2px), #F9BE00 calc(100% - 2px)) no-repeat, linear-gradient(to left, #F9BE00 2px, transparent 2px, transparent calc(100% - 2px), #F9BE00 calc(100% - 2px)) no-repeat;
  background-position: center;
  background-size: 85% 100%, 100% 85%; }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .owl-item.selected .competition-gallery__gallery-thumbnail-wrapper {
      background-image: none;
      border: 2px solid #F9BE00; } }

.owl-item.selected .competition-gallery__gallery-item-title {
  background-image: url(/content/images/venue-keystone-yellow.svg); }

.modal-gallery__outer--competition .modal-gallery__item {
  padding: 0 12px;
  overflow: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }
  @media screen and (min-width: 60em) {
    .modal-gallery__outer--competition .modal-gallery__item {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 0 100px; } }

.modal-gallery__outer--competition .modal-gallery__item-wrap {
  margin-top: 60px; }
  @media screen and (min-width: 60em) {
    .modal-gallery__outer--competition .modal-gallery__item-wrap {
      margin-top: 0;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
      -webkit-flex: 1;
         -moz-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      max-height: 80vh; } }

.modal-gallery__outer--competition .modal-gallery__img-container {
  padding-bottom: 36px; }
  @media screen and (min-width: 60em) {
    .modal-gallery__outer--competition .modal-gallery__img-container {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
         -moz-box-orient: vertical;
         -moz-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
         -moz-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-flex-basis: 60%;
          -ms-flex-preferred-size: 60%;
              flex-basis: 60%;
      margin-right: 2.5%;
      padding-bottom: 0;
      height: 80vh; } }

.modal-gallery__outer--competition .modal-gallery__details {
  position: static;
  text-align: left; }
  @media screen and (min-width: 60em) {
    .modal-gallery__outer--competition .modal-gallery__details {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
         -moz-box-orient: vertical;
         -moz-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
         -moz-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 40%;
         -moz-box-flex: 0;
          -ms-flex: 0 0 40%;
              flex: 0 0 40%;
      padding: 0 0 0 2.5%;
      border-left: 2px solid #333333; } }
  .modal-gallery__outer--competition .modal-gallery__details a {
    color: white;
    text-decoration: underline; }

.modal-gallery__outer--competition .modal-gallery__img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  font-family: 'object-fit: contain;';
  position: static;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
              -ms-grid-row-align: center;
          align-self: center; }

.modal-gallery__outer--competition .modal-gallery__title {
  text-transform: uppercase;
  font-weight: 600; }

.modal-gallery__outer--competition .modal-gallery__description {
  font-size: 17.6px;
  font-size: 1.1rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  margin-top: 24px; }
  .modal-gallery__outer--competition .modal-gallery__description .btn {
    display: inline-block;
    margin-top: 24px;
    text-decoration: none; }

.modal-gallery__outer--competition .modal-gallery__artist {
  font-size: 17.6px;
  font-size: 1.1rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  font-weight: 600;
  margin-top: 24px; }

.modal-gallery__outer--competition .modal-gallery__copyright {
  font-size: 17.6px;
  font-size: 1.1rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  font-weight: 300; }

.modal-gallery__outer--competition .modal-gallery__next, .modal-gallery__outer--competition .modal-gallery__previous {
  height: 48px;
  height: 3rem;
  bottom: 75%;
  right: 0;
  -webkit-border-radius: 0;
          border-radius: 0;
  background: rgba(249, 190, 0, 0.6); }
  .modal-gallery__outer--competition .modal-gallery__next:after, .modal-gallery__outer--competition .modal-gallery__previous:after {
    color: #1B181C;
    background: rgba(249, 190, 0, 0.6);
    height: 48px;
    height: 3rem;
    line-height: 48px;
    font-size: 24px;
    font-size: 1.5rem;
    font-family: fontello;
    content: "\e824"; }
  @media screen and (min-width: 60em) {
    .modal-gallery__outer--competition .modal-gallery__next, .modal-gallery__outer--competition .modal-gallery__previous {
      height: 4.5rem;
      bottom: 50%;
      right: 25px;
      background: #F9BE00; }
      .modal-gallery__outer--competition .modal-gallery__next:after, .modal-gallery__outer--competition .modal-gallery__previous:after {
        background: #F9BE00;
        height: 4.5rem;
        line-height: 72px;
        font-size: 2.25rem; } }
  .modal-gallery__outer--competition .modal-gallery__next:focus:after, .modal-gallery__outer--competition .modal-gallery__previous:focus:after {
    color: #1B181C;
    background: white; }
  @media screen and (min-width: 60em) {
    .modal-gallery__outer--competition .modal-gallery__next:focus, .modal-gallery__outer--competition .modal-gallery__previous:focus {
      background: white; }
      .modal-gallery__outer--competition .modal-gallery__next:focus:after, .modal-gallery__outer--competition .modal-gallery__previous:focus:after {
        background: white; } }

.modal-gallery__outer--competition .modal-gallery__close svg {
  display: inline-block;
  fill: white;
  width: 24px;
  height: 24px; }

.modal-gallery__outer--competition .modal-gallery__close:after {
  display: none; }

.modal-gallery__outer--competition .modal-gallery__previous {
  right: auto;
  left: 0; }
  .modal-gallery__outer--competition .modal-gallery__previous:after {
    content: "\e825"; }
  @media screen and (min-width: 60em) {
    .modal-gallery__outer--competition .modal-gallery__previous {
      left: 25px; } }

.modal-gallery__outer--competition .modal-gallery__share-title {
  font-size: 17.6px;
  font-size: 1.1rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  margin-bottom: 6px; }

.modal-gallery__outer--competition .modal-gallery__share {
  margin-top: 48px; }

.modal-gallery__outer--competition .modal-gallery__share-item {
  display: inline-block; }
  .modal-gallery__outer--competition .modal-gallery__share-item a {
    color: #888888;
    text-decoration: none; }
    .modal-gallery__outer--competition .modal-gallery__share-item a:hover, .modal-gallery__outer--competition .modal-gallery__share-item a:focus {
      color: #F9BE00; }

.exhibition-alt-container .competition-gallery__gallery {
  width: 100%; }

.exhibition-alt-container .competition-gallery__gallery-item {
  color: #1B181C; }
  .exhibition-alt-container .competition-gallery__gallery-item:hover .competition-gallery__gallery-item-title {
    text-decoration: underline; }

.exhibition-container .competition-gallery__gallery {
  width: 100%; }

.is--open-gallery-modal, .is--open-gallery-modal body {
  max-height: 100vh;
  overflow: hidden; }

.pagination {
  margin: 48px 0;
  text-align: center; }
  .pagination__list {
    display: inline-block; }
  .pagination__item {
    display: inline-block; }
  .pagination__link {
    display: inline-block;
    padding: 4px 12px;
    border-bottom: 1px solid transparent;
    color: white;
    text-decoration: none; }
    .pagination__link.active, .pagination__link:hover, .pagination__link:focus {
      color: white;
      border-bottom: 1px solid white; }
  .pagination__button:after {
    display: inline-block;
    width: 36px;
    width: 2.25rem;
    height: 36px;
    height: 2.25rem;
    line-height: 36px;
    color: #1B181C;
    background: #F9BE00;
    font-size: 24px;
    font-size: 1.5rem;
    font-family: fontello;
    content: "\e824";
    -webkit-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out; }
  .pagination__button:hover:after, .pagination__button:focus:after {
    background: white; }
  .pagination__button--next {
    margin-left: 24px; }
  .pagination__button--previous {
    margin-right: 24px; }
    .pagination__button--previous:after {
      content: "\e825"; }

.downloads {
  background-color: #F1F1F1;
  padding: 48px 24px;
  max-width: 768px; }

.downloads__title {
  font-size: 27.2px;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 24px; }

.downloads__item {
  border-top: 1px solid #4e1e66;
  padding: 12px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
  -webkit-align-items: start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: start; }

.downloads__item-bd {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }

.downloads__item-title {
  font-weight: 700;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif; }

.downloads__item-footer {
  font-size: 12.8px;
  font-size: 0.8rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif; }

.downloads__item-meta + .downloads__item-meta {
  margin-left: 12px; }

.downloads__item-btn {
  margin-top: 3px; }

.downloads--dark {
  background-color: #322f33;
  color: #fff; }
  .downloads--dark .downloads__item {
    border-top-color: #666666; }
  .downloads--dark .downloads__item-footer {
    color: #d9d9d9; }

.keystone-top {
  display: block;
  height: 30px;
  overflow: hidden;
  position: relative; }
  .keystone-top:before {
    content: '';
    background-image: url("/content/images/venue-keystone.svg");
    background-repeat: no-repeat;
    background-position: top center;
    display: block;
    width: 133px;
    height: 55px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
    opacity: 0;
    opacity: 1 \9;
    /*just in case ie*/
    -webkit-animation: keystone ease-out 1;
            animation: keystone ease-out 1;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-animation-duration: .6s;
            animation-duration: .6s;
    -webkit-animation-delay: .6s;
            animation-delay: .6s;
    overflow: hidden; }

.keystone-bottom {
  display: block;
  height: 30px;
  overflow: hidden;
  position: relative; }
  .keystone-bottom:before {
    content: '';
    background-image: url("/content/images/venue-keystone.svg");
    background-repeat: no-repeat;
    background-position: bottom center;
    display: block;
    width: 133px;
    height: 30px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 10px;
    opacity: 0;
    opacity: 1 \9;
    /*just in case ie*/
    -webkit-animation: keystone ease-out 1;
            animation: keystone ease-out 1;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-animation-duration: .6s;
            animation-duration: .6s;
    -webkit-animation-delay: .6s;
            animation-delay: .6s;
    overflow: hidden; }

@-webkit-keyframes keystone {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 10px);
            transform: translate(0, 10px); }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes keystone {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 10px);
            transform: translate(0, 10px); }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.accent-velvet .keystone-top:before,
.accent-velvet .keystone-bottom:before {
  background-image: url("/content/images/venue-keystone--velvet.svg"); }

.accent-clyde .keystone-top:before,
.accent-clyde .keystone-bottom:before {
  background-image: url("/content/images/venue-keystone--clyde.svg"); }

.accent-staffa .keystone-top:before,
.accent-staffa .keystone-bottom:before {
  background-image: url("/content/images/venue-keystone--staffa.svg"); }

.accent-rust .keystone-top:before,
.accent-rust .keystone-bottom:before {
  background-image: url("/content/images/venue-keystone--rust.svg"); }

.masthead-velvet {
  background-color: #4e1e66;
  color: #fff; }
  .masthead-velvet .breadcrumb-modifier .nav-breadcrumb,
  .masthead-velvet .panel-header {
    background-color: transparent; }
  .masthead-velvet * {
    color: #fff !important; }

.masthead-image {
  position: relative;
  background: black;
  color: #fff;
  overflow: hidden; }
  .masthead-image .breadcrumb-modifier .nav-breadcrumb {
    padding: 0; }
  .masthead-image .nav-breadcrumb__list {
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 13px;
    padding: 0.5rem 13px; }
  .masthead-image .breadcrumb-modifier .nav-breadcrumb,
  .masthead-image .panel-header {
    background-color: transparent;
    position: relative;
    z-index: 1; }
  .masthead-image * {
    color: #fff !important; }
  .masthead-image:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    background: -webkit-gradient(linear, left bottom, left top, from(black), to(rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(bottom, black 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(0deg, black 0%, rgba(255, 255, 255, 0) 100%); }

.masthead-image__picture {
  display: block; }

.masthead-image__img {
  max-width: none;
  min-width: 100%;
  position: absolute;
  min-height: 100%;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%); }

.feedback {
  background-color: #F1F1F1;
  padding: 48px 24px;
  max-width: 768px;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  color: #555555; }
  .feedback a {
    color: currentColor;
    text-decoration: underline; }
    .feedback a:hover {
      text-decoration: none; }

.feedback__title,
.feedback__success {
  font-size: 27.2px;
  font-size: 1.7rem;
  font-weight: 700;
  font-family: "gill-sans-nova", sans-serif;
  margin-bottom: 36px;
  color: #333333; }

.feedback__success {
  margin-bottom: 0; }

.feedback__form-row {
  margin-bottom: 36px;
  position: relative; }
  .feedback__form-row.error:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -24px;
    width: 2px;
    background-color: #EB0000; }

.feedback__form-label {
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 12px;
  max-width: 600px; }

.feedback__rating-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }

.feedback__rating-item + .feedback__rating-item {
  margin-left: 24px; }

.feedback__rating-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px; }

.feedback__rating-label {
  display: inline-block;
  cursor: pointer;
  padding: 4px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  background-color: #fff;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  -webkit-transition: background-color 60ms ease;
  transition: background-color 60ms ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.feedback__rating-input:focus + .feedback__rating-label {
  outline: 2px solid #F9BE00; }

.feedback__rating-input:checked + .feedback__rating-label {
  background-color: #007994;
  color: #fff; }
  .feedback__rating-input:checked + .feedback__rating-label svg {
    fill: #fff; }

.feedback__rating-icon {
  display: block;
  margin-right: 8px;
  margin-top: 3px;
  margin-bottom: 3px;
  margin-left: -4px; }

.feedback__rating-textarea {
  border: 1px solid #b3b3b3;
  color: #666666;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  padding: 8px 12.8px;
  padding: 0.5rem 0.8rem;
  width: 100%;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  margin-bottom: 12px;
  font-size: 16px;
  font-size: 1rem; }

.feedback-form__error {
  margin-bottom: 24px;
  margin-top: -24px;
  color: #EB0000;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem; }

.exhibition .feedback {
  background-color: #322f33;
  color: #d9d9d9; }
  .exhibition .feedback .feedback__success,
  .exhibition .feedback .feedback__title {
    color: #fff; }
  .exhibition .feedback .feedback__rating-label {
    color: #333333; }
  .exhibition .feedback .feedback__rating-input:checked + .feedback__rating-label {
    color: #fff; }
    .exhibition .feedback .feedback__rating-input:checked + .feedback__rating-label svg {
      fill: #fff; }
  .exhibition .feedback .feedback-form__error {
    color: #ff6565; }
  .exhibition .feedback .feedback__form-row.error:before {
    background-color: #ff6565; }

@keyframes fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes fade-in-up-slow {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 5px);
            transform: translate(0, 5px); }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes fade-in-up-slow {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 5px);
            transform: translate(0, 5px); }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.collections-title {
  margin-bottom: 12px; }
  @media screen and (min-width: 48em) {
    .collections-title {
      margin-bottom: 0; } }
  .collections-title h1 {
    color: #444444;
    font-family: "gill-sans-nova", sans-serif;
    font-weight: 400;
    font-size: 25.6px;
    font-size: 1.6rem;
    line-height: 32px;
    line-height: 2rem; }
    @media screen and (min-width: 48em) {
      .collections-title h1 {
        font-size: 1.8rem;
        line-height: 2rem; } }
    @media screen and (min-width: 60em) {
      .collections-title h1 {
        font-size: 2rem;
        line-height: 2.4rem; } }
  .collections-title:hover h1, .collections-title:focus h1 {
    color: #00647a; }

.collection-title {
  font-size: 25.6px;
  font-size: 1.6rem;
  line-height: 32px;
  line-height: 2rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 400;
  position: relative;
  color: #333;
  margin: 24px 0 48px; }
  @media screen and (min-width: 48em) {
    .collection-title {
      font-size: 1.8rem;
      line-height: 2rem; } }
  @media screen and (min-width: 60em) {
    .collection-title {
      font-size: 2rem;
      line-height: 2.4rem; } }
  @media screen and (min-width: 40em) {
    .collection-title {
      padding-right: 96px; } }
  @media screen and (min-width: 48em) {
    .collection-title {
      margin: 48px 0; } }
  .collection-title:after {
    content: '';
    border-top: 3px solid #555;
    width: 24px;
    position: absolute;
    bottom: -16px;
    left: 0; }

.collection-title--landing-page {
  font-size: 32px;
  font-size: 2rem;
  line-height: 35.2px;
  line-height: 2.2rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 600; }
  @media screen and (min-width: 48em) {
    .collection-title--landing-page {
      font-size: 2.4rem;
      line-height: 2.6rem; } }
  @media screen and (min-width: 60em) {
    .collection-title--landing-page {
      font-size: 2.6rem;
      line-height: 2.8rem; } }
  @media screen and (min-width: 48em) {
    .collection-title--landing-page {
      margin-top: 24px; } }

.collections-paragraph {
  font-size: 17.6px;
  font-size: 1.1rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 400;
  max-width: 65ch;
  color: #555;
  -webkit-transition: color 0.2s ease-in;
  transition: color 0.2s ease-in; }
  .collections-paragraph strong {
    color: #777777; }

.btn-collections__add-comment {
  font-size: 17.6px;
  font-size: 1.1rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 700;
  background: transparent;
  color: #007994;
  margin: 24px 0; }

.collections__featured-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }

.collections__featured {
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin-bottom: 12px;
  background: #5b7698; }
  @media screen and (min-width: 48em) {
    .collections__featured {
      margin-bottom: 24px; } }
  .collections__featured:hover, .collections__featured:focus {
    background-color: #477a6f; }
    .collections__featured:hover .collections-featured__highlight-container, .collections__featured:focus .collections-featured__highlight-container {
      color: #eaeaea; }

.collections--featured-image {
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in; }
  .collections--featured-image.lazyloaded {
    opacity: 1; }

.collections-featured__highlight-container {
  padding: 24px;
  color: #fafafa;
  z-index: +1; }

.collections-featured__highlight-title {
  font-size: 19.2px;
  font-size: 1.2rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 600;
  position: relative; }
  .collections-featured__highlight-title:after {
    content: '';
    width: 24px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.4);
    left: 0;
    position: absolute;
    bottom: -12px; }

.collections-featured__highlight-description {
  font-size: 12.8px;
  font-size: 0.8rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 400;
  margin-top: 24px; }

.collections-category__title {
  font-size: 25.6px;
  font-size: 1.6rem;
  line-height: 32px;
  line-height: 2rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 400;
  color: #333;
  padding: 24px 0 12px; }
  @media screen and (min-width: 48em) {
    .collections-category__title {
      font-size: 1.8rem;
      line-height: 2rem; } }
  @media screen and (min-width: 60em) {
    .collections-category__title {
      font-size: 2rem;
      line-height: 2.4rem; } }

.collections-category__description {
  font-size: 17.6px;
  font-size: 1.1rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 400;
  visibility: hidden;
  height: 0;
  color: #555;
  line-height: 24px;
  margin-bottom: 24px; }
  @media screen and (min-width: 40em) {
    .collections-category__description {
      visibility: visible;
      height: auto; } }

.collections-categories {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }

.collections-categories__item-description {
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
  padding: 12px 6px; }

.collections-categories__item:hover .collections-categories__item-description, .collections-categories__item:focus .collections-categories__item-description {
  background-color: #eaeaea; }

.collections-categories__item:hover .collections-paragraph, .collections-categories__item:focus .collections-paragraph {
  color: #444444; }

.collection__container {
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 400;
  min-height: 100vh; }
  @media screen and (min-width: 48em) {
    .collection__container {
      margin-top: 24px; } }

.collection-items__container {
  margin-bottom: 24px;
  -webkit-animation: fade-in-up-slow 0.5s ease-in-out forwards;
          animation: fade-in-up-slow 0.5s ease-in-out forwards; }

.collection-item__container {
  position: relative; }

.collection-item__link {
  padding: 12px;
  margin: 12px 0;
  height: 100%;
  position: relative;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in; }
  .collection-item__link:hover, .collection-item__link:focus {
    background-color: #eaeaea; }
    .collection-item__link:hover .collection-item__picture img, .collection-item__link:focus .collection-item__picture img {
      -webkit-transform: scale(1.05);
          -ms-transform: scale(1.05);
              transform: scale(1.05); }
    .collection-item__link:hover .collection-item__title, .collection-item__link:focus .collection-item__title {
      color: #00647a; }

.collection-item__picture-container {
  height: 100%;
  min-height: 15vh;
  max-width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media screen and (min-width: 60em) {
    .collection-item__picture-container {
      min-height: 25vh; } }

.collection-item__picture {
  width: 100%;
  text-align: center; }
  .collection-item__picture img {
    max-height: 50vh;
    height: auto;
    width: auto;
    -webkit-transition: opacity 0.2s ease-in, -webkit-transform 0.2s ease-in;
    transition: opacity 0.2s ease-in, -webkit-transform 0.2s ease-in;
    transition: transform 0.2s ease-in, opacity 0.2s ease-in;
    transition: transform 0.2s ease-in, opacity 0.2s ease-in, -webkit-transform 0.2s ease-in; }
    @media screen and (min-width: 48em) {
      .collection-item__picture img {
        max-height: 33vh; } }

.collection-item__title {
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  margin-bottom: 12px;
  color: #444444; }

.collection-item__description {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  color: #444444;
  max-width: 60ch;
  padding-bottom: 12px;
  margin-bottom: 12px; }

.collection-item__code {
  font-size: 12.8px;
  font-size: 0.8rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 600;
  color: #333;
  margin: 24px 0 0 0;
  position: relative; }
  .collection-item__code:after {
    content: '';
    border-top: 2px solid #555;
    width: 24px;
    position: absolute;
    top: -16px;
    left: 0; }

.collection-item__code-title {
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 400;
  color: #666666;
  display: block; }

.collection-item__key-info {
  margin-bottom: 24px; }
  @media screen and (min-width: 48em) {
    .collection-item__key-info {
      margin-top: 24px; } }
  @media screen and (min-width: 60em) {
    .collection-item__key-info {
      padding-left: 24px;
      border-left: 1px solid #eaeaea; } }
  .collection-item__key-info dl {
    margin-right: 4.8px;
    margin-bottom: 12px; }

.collection-item__key-info-title {
  font-size: 12.8px;
  font-size: 0.8rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 400;
  color: #555;
  margin-bottom: 6px; }

.collection-item__key-info-tag,
.collection-item__key-info-link {
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 600;
  font-size: 11.6px;
  font-size: 0.725rem;
  line-height: 17.6px;
  line-height: 1.1rem;
  display: inline-block;
  -webkit-border-radius: 48px;
          border-radius: 48px;
  outline: none;
  border: 1px solid #eaeaea;
  background-color: #eaeaea;
  color: #555;
  letter-spacing: 0.25px;
  margin-bottom: 6px;
  padding: 8px 19.2px 6.85714px;
  -webkit-transition: background-color 0.2s ease-in, border-color 0.2s ease-in, color 0.2s ease-in;
  transition: background-color 0.2s ease-in, border-color 0.2s ease-in, color 0.2s ease-in; }
  .collection-item__key-info-tag:focus, .collection-item__key-info-tag:hover,
  .collection-item__key-info-link:focus,
  .collection-item__key-info-link:hover {
    background-color: #dddddd;
    border-color: #333;
    color: #333; }

.collection__container.grid .collection-items__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
  margin-bottom: 48px; }
  .collection__container.grid .collection-items__container:before, .collection__container.grid .collection-items__container:after {
    content: '';
    display: table; }
  .collection__container.grid .collection-items__container:after {
    clear: both; }
  @media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
      .collection__container.grid .collection-items__container {
        margin-left: -webkit-calc((-24px / 2) - 0.3px);
        margin-left: calc((-24px / 2) - 0.3px);
        margin-right: -webkit-calc((-24px / 2) - 0.3px);
        margin-right: calc((-24px / 2) - 0.3px); } } }

.collection__container.grid .collection-item__container {
  float: left;
  margin-left: 12px;
  margin-right: 12px;
  width: 45%;
  width: -webkit-calc(((99.999% / 12) * 6) - (24px));
  width: calc(((99.999% / 12) * 6) - (24px));
  margin-top: 12px;
  margin-bottom: 12px; }
  @media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
      .collection__container.grid .collection-item__container {
        margin-left: -webkit-calc((24px / 2) - 0.3px);
        margin-left: calc((24px / 2) - 0.3px);
        margin-right: -webkit-calc((24px / 2) - 0.3px);
        margin-right: calc((24px / 2) - 0.3px); } } }
  .collection__container.grid .collection-item__container:before {
    pointer-events: none;
    content: '';
    position: absolute;
    border-bottom: 1px solid #dddddd;
    bottom: -24px;
    left: 0px;
    width: -webkit-calc(100% - 0px);
    width: calc(100% - 0px); }
  .collection__container.grid .collection-item__container:nth-child(odd):after {
    pointer-events: none;
    content: '';
    position: absolute;
    border-right: 1px solid #dddddd;
    right: -12px;
    height: 100%;
    top: 12px; }
  .collection__container.grid .collection-item__container:last-child:after {
    content: none; }
  @media screen and (min-width: 48em) {
    .collection__container.grid .collection-item__container {
      width: 28.33333%;
      width: -webkit-calc(((99.999% / 12) * 4) - (24px));
      width: calc(((99.999% / 12) * 4) - (24px)); }
      .collection__container.grid .collection-item__container:after {
        pointer-events: none;
        content: '';
        position: absolute;
        border-right: 1px solid #dddddd;
        right: -12px;
        height: 100%;
        top: 12px; }
      .collection__container.grid .collection-item__container:nth-child(3n):after {
        content: none; } }
  @media screen and (min-width: 60em) {
    .collection__container.grid .collection-item__container {
      width: 20%;
      width: -webkit-calc(((99.999% / 12) * 3) - (24px));
      width: calc(((99.999% / 12) * 3) - (24px)); }
      .collection__container.grid .collection-item__container:nth-child(3n):after {
        pointer-events: none;
        content: '';
        position: absolute;
        border-right: 1px solid #dddddd;
        right: -12px;
        height: 100%;
        top: 12px; }
      .collection__container.grid .collection-item__container:nth-child(4n):after {
        content: none; } }
  @media screen and (min-width: 90.075em) {
    .collection__container.grid .collection-item__container {
      width: 15%;
      width: -webkit-calc(((99.999% / 12) * 2.4) - (24px));
      width: calc(((99.999% / 12) * 2.4) - (24px)); }
      .collection__container.grid .collection-item__container:nth-child(4n):after {
        pointer-events: none;
        content: '';
        position: absolute;
        border-right: 1px solid #dddddd;
        right: -12px;
        height: 100%;
        top: 12px; }
      .collection__container.grid .collection-item__container:nth-child(5n):after {
        content: none; }
      .collection__container.grid .collection-item__container:last-child:after {
        content: none; } }

.collection__container.grid .collection-item__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.collection__container.grid .collection-item__title {
  margin-top: 12px; }

.collection__container.grid .collection-item__picture-container {
  max-height: 50vh; }
  @media screen and (min-width: 48em) {
    .collection__container.grid .collection-item__picture-container {
      max-height: 33vh; } }

.collection__container.grid .collection-item__content {
  min-height: 96px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }

.collection__container.grid .collection-item__key-info,
.collection__container.grid .collection-item__description {
  display: none; }

.collection__container.list .collection-item__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px; }
  .collection__container.list .collection-item__container:before, .collection__container.list .collection-item__container:after {
    content: '';
    display: table; }
  .collection__container.list .collection-item__container:after {
    clear: both; }
  @media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
      .collection__container.list .collection-item__container {
        margin-left: -webkit-calc((-24px / 2) - 0.3px);
        margin-left: calc((-24px / 2) - 0.3px);
        margin-right: -webkit-calc((-24px / 2) - 0.3px);
        margin-right: calc((-24px / 2) - 0.3px); } } }
  .collection__container.list .collection-item__container:before {
    pointer-events: none;
    content: '';
    position: absolute;
    border-bottom: 1px solid #dddddd;
    bottom: 0;
    left: 24px;
    width: -webkit-calc(100% - 48px);
    width: calc(100% - 48px); }
  .collection__container.list .collection-item__container:last-child:before {
    content: none; }

.collection__container.list .collection-item__link {
  float: left;
  margin-left: 12px;
  margin-right: 12px;
  width: 95%;
  width: -webkit-calc(((99.999% / 12) * 12) - (24px));
  width: calc(((99.999% / 12) * 12) - (24px));
  padding: 12px 0; }
  @media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
      .collection__container.list .collection-item__link {
        margin-left: -webkit-calc((24px / 2) - 0.3px);
        margin-left: calc((24px / 2) - 0.3px);
        margin-right: -webkit-calc((24px / 2) - 0.3px);
        margin-right: calc((24px / 2) - 0.3px); } } }
  @media screen and (min-width: 60em) {
    .collection__container.list .collection-item__link {
      width: 70%;
      width: -webkit-calc(((99.999% / 12) * 9) - (24px));
      width: calc(((99.999% / 12) * 9) - (24px));
      height: auto;
      padding: 12px; } }

.collection__container.list .collection-item__picture-container {
  float: left;
  margin-left: 12px;
  margin-right: 12px;
  width: 95%;
  width: -webkit-calc(((99.999% / 12) * 12) - (24px));
  width: calc(((99.999% / 12) * 12) - (24px));
  margin-bottom: 24px; }
  @media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
      .collection__container.list .collection-item__picture-container {
        margin-left: -webkit-calc((24px / 2) - 0.3px);
        margin-left: calc((24px / 2) - 0.3px);
        margin-right: -webkit-calc((24px / 2) - 0.3px);
        margin-right: calc((24px / 2) - 0.3px); } } }
  @media screen and (min-width: 48em) {
    .collection__container.list .collection-item__picture-container {
      width: 28.33333%;
      width: -webkit-calc(((99.999% / 12) * 4) - (24px));
      width: calc(((99.999% / 12) * 4) - (24px));
      margin-bottom: 0; } }
  @media screen and (min-width: 60em) {
    .collection__container.list .collection-item__picture-container {
      width: 20%;
      width: -webkit-calc(((99.999% / 12) * 3) - (24px));
      width: calc(((99.999% / 12) * 3) - (24px)); } }

.collection__container.list .collection-item__content {
  height: 100%; }
  @media screen and (min-width: 48em) {
    .collection__container.list .collection-item__content {
      border-left: 1px solid #eaeaea;
      padding: 24px; } }

.collection__list-grid-toggle__container:before, .collection__list-grid-toggle__container:after {
  content: '';
  display: table; }

.collection__list-grid-toggle__container:after {
  clear: both; }

.collection__list-grid-toggle {
  position: relative;
  float: right;
  padding-bottom: 24px; }
  .collection__list-grid-toggle:before, .collection__list-grid-toggle:after {
    content: '';
    display: table; }
  .collection__list-grid-toggle:after {
    clear: both; }
  @media screen and (min-width: 40em) {
    .collection__list-grid-toggle {
      position: absolute;
      right: 8px;
      top: 27px; } }
  @media screen and (min-width: 48em) {
    .collection__list-grid-toggle {
      top: 51px; } }
  @media screen and (min-width: 60em) {
    .collection__list-grid-toggle {
      right: 17.14286px; } }
  .collection__list-grid-toggle .btn {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    -webkit-border-radius: 0;
            border-radius: 0;
    margin: 0;
    padding: 2.4px 12px 0;
    max-width: 48px;
    -webkit-transition: border-color 0.2s ease-in, background-color 0.2s ease-in;
    transition: border-color 0.2s ease-in, background-color 0.2s ease-in; }
    .collection__list-grid-toggle .btn svg {
      height: 16px; }
    .collection__list-grid-toggle .btn path {
      fill: #666666;
      -webkit-transition: fill 0.2s ease-in;
      transition: fill 0.2s ease-in; }
    .collection__list-grid-toggle .btn.active {
      background-color: #456a8f;
      border-color: #456a8f; }
      .collection__list-grid-toggle .btn.active path {
        fill: #ffffff; }
    .collection__list-grid-toggle .btn:focus, .collection__list-grid-toggle .btn:hover {
      border-color: #456a8f;
      background-color: #9db7d0;
      outline: none; }
      .collection__list-grid-toggle .btn:focus path, .collection__list-grid-toggle .btn:hover path {
        fill: #456a8f; }

.tabs__nav {
  position: relative;
  border-bottom: 1px solid #eaeaea; }
  @media screen and (max-width: 40em) {
    .tabs__nav {
      margin: 0 -12px;
      position: relative; } }
  .tabs__nav li {
    display: inline-block;
    margin-right: 12px; }

.tabs__nav--with-shadow:before, .tabs__nav--with-shadow:after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  pointer-events: none; }

.tabs__nav--with-shadow:before {
  left: 0;
  -webkit-box-shadow: inset 8px 0 7px -7px rgba(0, 0, 0, 0.5);
          box-shadow: inset 8px 0 7px -7px rgba(0, 0, 0, 0.5); }

.tabs__nav--with-shadow:after {
  right: 0;
  -webkit-box-shadow: inset -8px 0 7px -7px rgba(0, 0, 0, 0.5);
          box-shadow: inset -8px 0 7px -7px rgba(0, 0, 0, 0.5); }

@media screen and (min-width: 40em) {
  .tabs__nav--with-shadow:before, .tabs__nav--with-shadow:after {
    content: none;
    -webkit-box-shadow: none;
            box-shadow: none; } }

.tabs__nav--with-shadow-large:before, .tabs__nav--with-shadow-large:after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  pointer-events: none; }

.tabs__nav--with-shadow-large:before {
  left: 0;
  -webkit-box-shadow: inset 8px 0 7px -7px rgba(0, 0, 0, 0.5);
          box-shadow: inset 8px 0 7px -7px rgba(0, 0, 0, 0.5); }

.tabs__nav--with-shadow-large:after {
  right: 0;
  -webkit-box-shadow: inset -8px 0 7px -7px rgba(0, 0, 0, 0.5);
          box-shadow: inset -8px 0 7px -7px rgba(0, 0, 0, 0.5); }

@media screen and (min-width: 40em) {
  .tabs__nav--with-shadow-large {
    margin: 0 -12px; } }

@media screen and (min-width: 48em) {
  .tabs__nav--with-shadow-large {
    margin: 0 -24px; } }

@media screen and (min-width: 90.075em) {
  .tabs__nav--with-shadow-large:before, .tabs__nav--with-shadow-large:after {
    content: none;
    -webkit-box-shadow: none;
            box-shadow: none; } }

.search-filters__list {
  margin: 0 12px; }
  @media screen and (max-width: 40em) {
    .search-filters__list {
      overflow-x: scroll;
      overflow-y: hidden;
      display: block;
      white-space: nowrap;
      margin: 0;
      padding: 0 12px; } }

.tabs__nav-link, .tabs__nav-link--small {
  font-size: 17.6px;
  font-size: 1.1rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 700;
  display: inline-block;
  padding: 12px 0;
  margin-right: 24px;
  color: #888888;
  -webkit-box-shadow: 0 -3px 0 transparent inset;
          box-shadow: 0 -3px 0 transparent inset;
  -webkit-transition: color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, color 0.3s ease;
  transition: box-shadow 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease; }
  .tabs__nav-link:last-child, .tabs__nav-link--small:last-child {
    margin-right: 0; }
  .tabs__nav-link:hover, .tabs__nav-link--small:hover, .tabs__nav-link:focus, .tabs__nav-link--small:focus {
    -webkit-box-shadow: 0 -3px 0 #00647a inset;
            box-shadow: 0 -3px 0 #00647a inset; }
  .tabs__nav-link.active, .active.tabs__nav-link--small {
    -webkit-box-shadow: 0 -3px 0 #007994 inset;
            box-shadow: 0 -3px 0 #007994 inset;
    color: #444444; }

.tabs__nav-link--small {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19.2px;
  line-height: 1.2rem; }

.collections-tabs__section {
  outline: none !important; }

.tabs__section.active {
  -webkit-animation: fade-in 0.3s ease-in forwards;
          animation: fade-in 0.3s ease-in forwards; }

.collections-filter-list__container {
  overflow-y: scroll;
  max-height: 40vh;
  margin: 0 -12px; }
  @media screen and (min-width: 48em) {
    .collections-filter-list__container {
      overflow-y: auto;
      max-height: none; } }

.collections-filter-list__container--overflow {
  margin: 0 -12px;
  overflow-y: scroll;
  max-height: 40vh; }

.collections-filter-list {
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1;
  -webkit-column-gap: 0;
     -moz-column-gap: 0;
          column-gap: 0;
  padding-top: 12px; }
  @media screen and (min-width: 48em) {
    .collections-filter-list {
      -webkit-column-count: 2;
         -moz-column-count: 2;
              column-count: 2; } }
  @media screen and (min-width: 60em) {
    .collections-filter-list {
      -webkit-column-count: 3;
         -moz-column-count: 3;
              column-count: 3; } }
  @media screen and (min-width: 90.075em) {
    .collections-filter-list {
      -webkit-column-count: 4;
         -moz-column-count: 4;
              column-count: 4; } }
  .collections-filter-list .list__item {
    display: inline-block;
    width: 100%;
    margin: 0; }
  .collections-filter-list .list__link {
    font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 19.2px;
    line-height: 1.2rem;
    padding: 8px 6px 8px 36px;
    cursor: pointer;
    -webkit-transition: background-color 0.2s ease-in, color 0.2s ease-in;
    transition: background-color 0.2s ease-in, color 0.2s ease-in; }
    .collections-filter-list .list__link:hover, .collections-filter-list .list__link:focus {
      background: #eaeaea;
      color: #333; }
  .collections-filter-list .list__link--no-results {
    background: none;
    cursor: auto; }
    .collections-filter-list .list__link--no-results:hover, .collections-filter-list .list__link--no-results:focus {
      background: none; }
  .collections-filter-list .list__icon {
    top: 8.42105px;
    left: 12px; }

.collections-az-filter {
  overflow-x: scroll;
  display: block;
  white-space: nowrap;
  text-align: center; }
  @media screen and (min-width: 48em) {
    .collections-az-filter {
      margin-top: 24px; } }
  @media screen and (min-width: 60em) {
    .collections-az-filter {
      overflow: auto; } }

.collections-az-filter-tab {
  padding: 12px;
  margin: 0; }

.loading-hes {
  padding-bottom: 24px;
  position: relative;
  vertical-align: bottom;
  width: 100%;
  text-align: center;
  margin-top: 20vh; }

.loading__left {
  -webkit-animation: loading-fade 1.5s infinite ease-in-out;
          animation: loading-fade 1.5s infinite ease-in-out;
  display: inline-block;
  height: 30px;
  width: 24px;
  margin-right: -10px;
  opacity: 0;
  vertical-align: bottom; }

.loading__center {
  -webkit-animation: loading-fade 1.5s infinite ease-in-out;
          animation: loading-fade 1.5s infinite ease-in-out;
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
  display: inline-block;
  height: 32px;
  width: 24px;
  margin-bottom: 5px;
  opacity: 0;
  vertical-align: bottom; }

.loading__right {
  -webkit-animation: loading-fade 1.5s infinite ease-in-out;
          animation: loading-fade 1.5s infinite ease-in-out;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  display: inline-block;
  height: 30px;
  width: 24px;
  margin-left: -10px;
  opacity: 0;
  vertical-align: bottom; }

.loading__label {
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  display: block;
  padding: 24px 0;
  position: relative; }

@-webkit-keyframes loading-fade {
  0%,
  100% {
    opacity: 0; }
  40%,
  50% {
    opacity: 1; } }

@keyframes loading-fade {
  0%,
  100% {
    opacity: 0; }
  40%,
  50% {
    opacity: 1; } }

.collections__search-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-bottom: 24px;
  -webkit-box-shadow: 0 1px 2px #eaeaea;
          box-shadow: 0 1px 2px #eaeaea; }

.collections__search-container--landing-page {
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-bottom: 24px; }

.collections__search-input-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex; }
  @media screen and (max-width: 40em) {
    .collections__search-input-container {
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
         -moz-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end; } }

.collections__search-input-wrapper {
  position: relative;
  width: 100%; }
  @media screen and (min-width: 40em) {
    .collections__search-input-wrapper {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
      -webkit-flex-grow: 1;
         -moz-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1; } }

.collections-input__search {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 400;
  border: 1px solid #dddddd;
  -webkit-border-radius: 4px !important;
          border-radius: 4px !important;
  background: #eaeaea;
  color: #333;
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 12px 48px 12px 12px;
  -webkit-transition: border-color 0.2s ease-in, background-color 0.2s ease-in;
  transition: border-color 0.2s ease-in, background-color 0.2s ease-in; }
  .collections-input__search::-webkit-input-placeholder {
    color: #333;
    text-overflow: ellipsis; }
  .collections-input__search::-moz-placeholder {
    color: #333;
    text-overflow: ellipsis; }
  .collections-input__search:-ms-input-placeholder {
    color: #333;
    text-overflow: ellipsis; }
  .collections-input__search::placeholder {
    color: #333;
    text-overflow: ellipsis; }
  .collections-input__search:hover, .collections-input__search:focus {
    background: #fafafa;
    border-color: #456a8f;
    outline: none; }

.collections-btn__search {
  position: absolute;
  -webkit-border-top-right-radius: 4px;
          border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
          border-bottom-right-radius: 4px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  background: #456a8f; }
  .collections-btn__search svg {
    height: 30px;
    width: 48px;
    padding: 6.15385px;
    fill: #fafafa; }
  .collections-btn__search:hover, .collections-btn__search:focus {
    background: #305983; }
    .collections-btn__search:hover svg, .collections-btn__search:focus svg {
      fill: #eaeaea; }

.collections-btn__filters {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 700;
  border: 1px solid #dddddd;
  -webkit-border-radius: 4px !important;
          border-radius: 4px !important;
  border: 1px solid #b7b7b7;
  position: relative;
  background: transparent;
  margin-left: 12px;
  margin-top: 12px;
  padding: 12px 48px 12px 12px;
  color: #333;
  -webkit-transition: border-color 0.2s ease-in;
  transition: border-color 0.2s ease-in;
  text-align: left; }
  .collections-btn__filters:hover, .collections-btn__filters:focus {
    border-color: #376696;
    outline: none; }
  @media screen and (min-width: 40em) {
    .collections-btn__filters {
      margin-left: 24px;
      margin-top: 0;
      width: 192px; } }
  .collections-btn__filters svg {
    position: absolute;
    right: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    height: 12px;
    width: 12px;
    fill: #007994;
    -webkit-transition: -webkit-transform 0.2s ease-in;
    transition: -webkit-transform 0.2s ease-in;
    transition: transform 0.2s ease-in;
    transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in; }
  .collections-btn__filters[aria-expanded='true'] svg {
    -webkit-transform: translateY(-50%) rotateX(180deg);
            transform: translateY(-50%) rotateX(180deg); }

.collection__search-filters {
  display: none;
  border: 1px solid #dddddd;
  -webkit-border-radius: 4px !important;
          border-radius: 4px !important;
  margin-top: 16px;
  padding: 0 12px 24px; }
  .collection__search-filters:before, .collection__search-filters:after {
    content: '';
    display: table; }
  .collection__search-filters:after {
    clear: both; }
  @media screen and (min-width: 48em) {
    .collection__search-filters {
      padding: 12px 24px 24px; } }

.active .collection__search-filters {
  display: block;
  -webkit-animation: fade-in 0.3s ease-in forwards;
          animation: fade-in 0.3s ease-in forwards; }

.collection__selected-facet-container {
  margin: 12px -6px; }

.collection__selected-facet {
  font-size: 12.8px;
  font-size: 0.8rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 400;
  display: inline-block;
  -webkit-border-radius: 48px;
          border-radius: 48px;
  padding: 6px 16px;
  margin: 6px;
  border: 1px solid #eaeaea;
  background-color: #eaeaea;
  color: #555;
  -webkit-transition: background-color 0.2s ease-in, border-color 0.2s ease-in, color 0.2s ease-in;
  transition: background-color 0.2s ease-in, border-color 0.2s ease-in, color 0.2s ease-in; }
  .collection__selected-facet:focus, .collection__selected-facet:hover {
    background-color: #dddddd;
    border-color: #333;
    color: #333; }
    .collection__selected-facet:focus path, .collection__selected-facet:hover path {
      fill: #444444; }

.collection__selected-facet-close {
  padding-left: 12px;
  font-size: 12.8px;
  font-size: 0.8rem;
  line-height: 19.2px;
  line-height: 1.2rem; }
  .collection__selected-facet-close svg {
    top: 2px;
    position: relative;
    height: 12px;
    width: 12px; }
  .collection__selected-facet-close path {
    -webkit-transition: fill 0.2s ease-in;
    transition: fill 0.2s ease-in;
    fill: #666666; }

.collection__selected-facet--clear-all {
  background-color: transparent;
  border: 1px solid #555;
  color: #555;
  -webkit-transition: background-color 0.2s ease-in, border-color 0.2s ease-in, color 0.2s ease-in;
  transition: background-color 0.2s ease-in, border-color 0.2s ease-in, color 0.2s ease-in; }
  .collection__selected-facet--clear-all:focus, .collection__selected-facet--clear-all:hover {
    background-color: #eaeaea;
    border-color: #333;
    color: #333; }

.collection-item__detail {
  margin-bottom: 24px;
  border-top: 1px solid #eaeaea; }
  .collection-item__detail:nth-child(1), .collection-item__detail:nth-child(2) {
    border-top: 0; }
  .collection-item__detail dt {
    font-size: 11.6px;
    font-size: 0.725rem;
    line-height: 17.6px;
    line-height: 1.1rem;
    font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
    font-weight: 400;
    margin: 8px 0 2px;
    color: #888888; }
  .collection-item__detail dd {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 19.2px;
    line-height: 1.2rem;
    font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
    font-weight: 700;
    color: #555;
    word-break: break-all;
    word-break: break-word; }

.collection-item__header {
  font-size: 17.6px;
  font-size: 1.1rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 700;
  color: #444444;
  padding: 12px 0;
  border-bottom: 1px solid #eaeaea; }

.collection-item__tag-container {
  padding-bottom: 24px;
  margin-top: 12px; }

.collection-item-detail__title {
  font-size: 17.6px;
  font-size: 1.1rem;
  line-height: 22.4px;
  line-height: 1.4rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 400;
  padding: 16px;
  color: #fafafa;
  background-color: #333;
  float: left; }

.collections-image-gallery {
  background-color: #444444;
  position: relative;
  overflow: hidden; }

.collections-image-gallery__logo--container {
  padding: 20.8px 24px 24px 24px;
  padding: 1.3rem 24px 24px 24px;
  width: 100%;
  text-align: left; }

.collections-image-gallery__action-button-container {
  margin-top: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }

.collections-image-gallery__action-button {
  font-size: 22.4px;
  font-size: 1.4rem;
  line-height: 25.6px;
  line-height: 1.6rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 400;
  color: #ffffff;
  background: transparent;
  display: block;
  padding: 9.6px;
  margin-left: 6px; }
  @media screen and (min-width: 48em) {
    .collections-image-gallery__action-button {
      font-size: 1.5rem;
      line-height: 1.8rem; } }

.collections-image-gallery__close-button {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 400;
  padding-top: 9.6px;
  float: right;
  margin-top: 12px; }

.collections-fullscreen--close {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 19.2px;
  line-height: 1.2rem;
  font-family: "Gotham SSm A", "Gotham SSm B", sans-serif;
  font-weight: 400;
  position: absolute;
  padding-top: 9.6px;
  top: 48px;
  right: 24px;
  z-index: 100; }

.collections-image-gallery__image {
  max-height: 40vh;
  height: 40vh;
  -webkit-box-shadow: 0 0 48px #1b181c;
          box-shadow: 0 0 48px #1b181c;
  display: block;
  margin: 24px auto;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }
  .collections-image-gallery__image.lazyloaded {
    opacity: 1;
    height: auto; }

.collections-image--fullscreen,
.collections-gallery--fullscreen,
.collections-sketchfab--fullscreen {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  top: -100%;
  left: -100%;
  height: 100%;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #1a1a1a;
  z-index: 9999999;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out; }
  .collections-image--fullscreen.active,
  .collections-gallery--fullscreen.active,
  .collections-sketchfab--fullscreen.active {
    top: 0;
    left: 0;
    opacity: 1;
    pointer-events: all; }

.collections-image-gallery__sketchfab-iframe {
  height: 100vh;
  width: 100vw; }

.collections-image-gallery__image--fullscreen {
  position: absolute;
  -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-height: 100vh;
  max-width: 100vw;
  z-index: -1;
  padding: 96px 1.25% 72px; }

body.no-nav {
  padding-top: 0; }

.grecaptcha-badge {
  opacity: 0; }
