@charset "UTF-8";
/*------------------------------------*\
    STYLE.CSS
\*------------------------------------*/
/**
 *
 * sass --watch style.scss:style.min.css --style compressed
 *
 * Here we pull in some variables, include the inuit.css framework, then add our
 * project-specific components afterwards.
 */
/**
 * Setup
 */
/*------------------------------------*\
    VARS.SCSS
\*------------------------------------*/
/**
 * Any variables you find set in inuit.css’ `_vars.scss` that you do not wish to
 * keep, simply redefine here. This means that if inuit.css, for example, sets
 * your `$base-font-size` at 16px and you wish it to be 14px, simply redeclare
 * that variable in this file. inuit.css ignores its own variables in favour of
 * using your own, so you can completely modify how inuit.css works without ever
 * having to alter the framework itself.
 */
/*------------------------------------*\
    $OBJECTS-AND-ABSTRACTIONS
\*------------------------------------*/
/**
 * All of inuit.css’ objects and abstractions are initially turned off by
 * default. This means that you start any project with as little as possible,
 * and introducing objects and abstractions is as simple as switching the
 * following variables to `true`.
 */
/*------------------------------------*\
    $OVERRIDES
\*------------------------------------*/
/**
 * Place any variables that should override inuit.css’ defaults here.
 */
/**
 * Base stuff
 */
/**
 * Base font-family.
 */
/**
 * Font-sizes (in pixels). Refer to relevant sections for their implementations.
 */
/**
 * How big would you like round corners to be by default?
 */
/*------------------------------------*\
    $RESPONSIVE
\*------------------------------------*/
/**
 * Responsiveness?
 */
/**
 * Responsiveness for widescreen/high resolution desktop monitors and beyond?
 * Note: `$responsive` variable above must be set to true before enabling this.
 */
/**
 * Responsive push and pull produce a LOT of code, only turn them on if you
 * definitely need them.
 */
/**
 * Note: `$push` variable above must be set to true before enabling these.
 */
/**
 * Note: `$pull` variable above must be set to true before enabling these.
 */
/**
 * Tell inuit.css when breakpoints start.
 */
/*------------------------------------*\
    INUIT.CSS
\*------------------------------------*/
/*!*
 *
 * inuitcss.com -- @inuitcss -- @csswizardry
 *
 */
/**
 * inuit.css acts as a base stylesheet which you should extend with your own
 * theme stylesheet.
 *
 * inuit.css aims to do the heavy lifting; sorting objects and abstractions,
 * design patterns and fiddly bits of CSS, whilst leaving as much design as
 * possible to you. inuit.css is the scaffolding to your decorator.
 *
 * This stylesheet is heavily documented and contains lots of comments, please
 * take care to read and refer to them as you build. For further support please
 * tweet at @inuitcss.
 *
 * Owing to the amount of comments please only ever use minified CSS in
 * production. This file is purely a dev document.
 *
 * The table of contents below maps to section titles of the same name, to jump
 * to any section simply run a find for $[SECTION-TITLE].
 *
 * Most objects and abstractions come with a chunk of markup that you should be
 * able to paste into any view to quickly see how the CSS works in conjunction
 * with the correct HTML.
 *
 * inuit.css is written to this standard: github.com/csswizardry/CSS-Guidelines
 *
 * LICENSE
 *
 * Copyright 2013 Harry Roberts
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * Thank you for choosing inuit.css. May your web fonts render perfectly.
 */
/*------------------------------------*\
    $CONTENTS
\*------------------------------------*/
/**
 * CONTENTS............You’re reading it!
 * WARNING.............Here be dragons!
 * IMPORTS.............Begin importing the sections below
 *
 * MIXINS..............Super-simple Sass stuff
 * NORMALIZE...........normalize.css
 * RESET...............Set some defaults
 * CLEARFIX............
 * SHARED..............Shared declarations
 *
 * MAIN................High-level elements like `html`, `body`, etc.
 * HEADINGS............Double-stranded heading hierarchy
 * PARAGRAPHS..........
 * SMALLPRINT..........Smaller text elements like `small`
 * QUOTES..............
 * CODE................
 * LISTS...............
 * IMAGES..............
 * TABLES..............
 * FORMS...............
 *
 * GRIDS...............Fluid, proportional and nestable grids
 * FLEXBOX.............Crudely emulate flexbox
 * COLUMNS.............CSS3 columns
 * NAV.................A simple abstraction to put a list in horizontal nav mode
 * OPTIONS.............Grouped nav items
 * PAGINATION..........Very stripped back, basic paginator
 * BREADCRUMB..........Simple breadcrumb trail object
 * MEDIA...............Media object
 * MARGINALIA..........Simple marginalia content
 * ISLAND..............Boxed off content
 * BLOCK-LIST..........Blocky lists of content
 * MATRIX..............Gridded lists
 * SPLIT...............A simple split-in-two object
 * THIS-OR-THIS........Options object
 * LINK-COMPLEX........
 * FLYOUT..............Flyout-on-hover object
 * ARROWS..............CSS arrows
 * SPRITE..............Generic spriting element
 * ICON-TEXT...........Icon and text couplings
 * BEAUTONS............Use the beautons micro library
 * LOZENGES............Basic lozenge styles
 * RULES...............Horizontal rules
 * STATS...............Simple stats object
 * GREYBOX.............Wireframing styles
 *
 * WIDTHS..............Width classes for use alongside the grid system etc.
 * PUSH................Push classes for manipulating grids
 * PULL................Pull classes for manipulating grids
 * BRAND...............Helper class to apply brand treatment to elements
 * HELPER..............A series of helper classes to use arbitrarily
 * DEBUG...............Enable to add visual flags for debugging purposes
 */
/*------------------------------------*\
    $WARNING
\*------------------------------------*/
/*
 * inuit.css, being an OO framework, works in keeping with the open/closed
 * principle. The variables you set previously are now being used throughout
 * inuit.css to style everything we need for a base. Any custom styles SHOULD
 * NOT be added or modified in inuit.css directly, but added via your theme
 * stylesheet as per the open/closed principle:
 *
 * csswizardry.com/2012/06/the-open-closed-principle-applied-to-css
 *
 * Try not to edit any CSS beyond this point; if you find you need to do so
 * it is a failing of the framework so please tweet at @inuitcss.
 */
/*------------------------------------*\
    $IMPORTS
\*------------------------------------*/
/**
 * Generic utility styles etc.
 */
/*------------------------------------*\
    $DEFAULTS
\*------------------------------------*/
/**
 * inuit.css’ default variables. Redefine these in your `_vars.scss` file (found
 * in the inuit.css-web-template) to override them.
 */
/*------------------------------------*\
    $DEBUG
\*------------------------------------*/
/**
 * Debug mode will visually highlight any potential markup/accessibility quirks
 * in the browser. Set to `true` or `false`.
 */
/*------------------------------------*\
    $BORDER-BOX
\*------------------------------------*/
/**
 * Do you want all elements to adopt `box-sizing:border-box;` as per
 * paulirish.com/2012/box-sizing-border-box-ftw ?
 */
/*------------------------------------*\
    $BASE
\*------------------------------------*/
/**
 * Base stuff
 */
/**
 * Base font-family.
 */
/**
 * Default colour for objects’ borders etc.
 */
/*------------------------------------*\
    $RESPONSIVE
\*------------------------------------*/
/**
 * Responsiveness?
 */
/**
 * Responsiveness for widescreen/high resolution desktop monitors and beyond?
 * Note: `$responsive` variable above must be set to true before enabling this.
 */
/**
 * Responsive push and pull produce a LOT of code, only turn them on if you
 * definitely need them.
 */
/**
 * Note: `$push` variable above must be set to true before enabling these.
 */
/**
 * Note: `$pull` variable above must be set to true before enabling these.
 */
/**
 * Tell inuit.css when breakpoints start.
 */
/*------------------------------------*\
    $FONT-SIZES
\*------------------------------------*/
/**
 * Font-sizes (in pixels). Refer to relevant sections for their implementations.
 */
/*------------------------------------*\
    $QUOTES
\*------------------------------------*/
/**
 * English quote marks?
 */
/**
 * If you want English quotes then please do not edit these; they’re only here
 * because Sass needs them.
 */
/**
 * If you need non-English quotes, please alter the following values accordingly:
 */
/*------------------------------------*\
    $BRAND
\*------------------------------------*/
/**
 * Brand stuff
 */
/**
 * How big would you like round corners to be by default?
 */
/*------------------------------------*\
    $OBJECTS AND ABSTRACTIONS
\*------------------------------------*/
/**
 * Which objects and abstractions would you like to use?
 */
/*------------------------------------*\
    $FRAMEWORK
\*------------------------------------*/
/**
 * inuit.css will work these next ones out for use within the framework.
 *
 * Assign our `$base-line-height` to a new spacing var for more transparency.
 */
/*------------------------------------*\
    $MIXINS
\*------------------------------------*/
/**
 * Create a fully formed type style (sizing and vertical rhythm) by passing in a
 * single value, e.g.:
 *
   `@include font-size(10px);`
 *
 * Thanks to @redclov3r for the `line-height` Sass:
 * twitter.com/redclov3r/status/250301539321798657
 */
/**
 * Style any number of headings in one fell swoop, e.g.:
 *
   .foo{
       @include headings(1, 3){
           color:#BADA55;
       }
    }
 *
 * With thanks to @lar_zzz, @paranoida, @rowanmanning and ultimately
 * @thierrylemoulec for refining and improving my initial mixin.
 */
/**
 * Create vendor-prefixed CSS in one go, e.g.
 *
   `@include vendor(border-radius, 4px);`
 *
 */
/**
 * Create CSS keyframe animations for all vendors in one go, e.g.:
 *
   .foo{
       @include vendor(animation, shrink 3s);
   }

   @include keyframe(shrink){
       from{
           font-size:5em;
       }
   }
 *
 * Courtesy of @integralist: twitter.com/integralist/status/260484115315437569
 */
/**
 * Force overly long spans of text to truncate, e.g.:
 *
   `@include truncate(100%);`
 *
 * Where `$truncation-boundary` is a united measurement.
 */
/**
 * CSS arrows!!! But... before you read on, you might want to grab a coffee...
 *
 * This mixin creates a CSS arrow on a given element. We can have the arrow
 * appear in one of 12 locations, thus:
 *
 *       01    02    03
 *    +------------------+
 * 12 |                  | 04
 *    |                  |
 * 11 |                  | 05
 *    |                  |
 * 10 |                  | 06
 *    +------------------+
 *       09    08    07
 *
 * You pass this position in along with a desired arrow color and optional
 * border color, for example:
 *
 * `@include arrow(top, left, red)`
 *
 * for just a single, red arrow, or:
 *
 * `@include arrow(bottom, center, red, black)`
 *
 * which will create a red triangle with a black border which sits at the bottom
 * center of the element. Call the mixin thus:
 *
   .foo{
       background-color:#BADA55;
       border:1px solid #ACE;
       @include arrow(top, left, #BADA55, #ACE);
   }
 *
 */
/**
 * Media query mixin.
 *
 * It’s not great practice to define solid breakpoints up-front, preferring to
 * modify your design when it needs it, rather than assuming you’ll want a
 * change at ‘mobile’. However, as inuit.css is required to take a hands off
 * approach to design decisions, this is the closest we can get to baked-in
 * responsiveness. It’s flexible enough to allow you to set your own breakpoints
 * but solid enough to be frameworkified.
 *
 * We define some broad breakpoints in our vars file that are picked up here
 * for use in a simple media query mixin. Our options are:
 *
 * palm
 * lap
 * lap-and-up
 * portable
 * desk
 * desk-wide
 *
 * Not using a media query will, naturally, serve styles to all devices.
 *
 * `@include media-query(palm){ [styles here] }`
 *
 * We work out your end points for you:
 */
/*! normalize.css v2.1.0 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

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

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

/*
 * Address styling not present in IE 8/9.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

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

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

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

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

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

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

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

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

/*
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

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

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

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

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

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

/*------------------------------------*\
    $RESET
\*------------------------------------*/
/**
 * A more considered reset; more of a restart...
 * As per: csswizardry.com/2011/10/reset-restarted
 */
/**
* Let’s make the box model all nice, shall we...?
*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

/**
 * The usual...
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
form, fieldset, legend,
table, th, td, caption,
hr {
  margin: 0;
  padding: 0;
}

/**
 * Give a help cursor to elements that give extra info on `:hover`.
 */
abbr[title], dfn[title] {
  cursor: help;
}

/**
 * Remove underlines from potentially troublesome elements.
 */
u, ins {
  text-decoration: none;
}

/**
 * Apply faux underline via `border-bottom`.
 */
ins {
  border-bottom: 1px solid;
}

/**
 * So that `alt` text is visually offset if images don’t load.
 */
img {
  font-style: italic;
}

/**
 * Give form elements some cursor interactions...
 */
label,
input,
textarea,
button,
select,
option {
  cursor: pointer;
}

.text-input:active,
.text-input:focus,
textarea:active,
textarea:focus {
  cursor: text;
  outline: none;
}

/*------------------------------------*\
    $CLEARFIX
\*------------------------------------*/
/**
 * Micro clearfix, as per: css-101.org/articles/clearfix/latest-new-clearfix-so-far.php
 * Extend the clearfix class with Sass to avoid the `.cf` class appearing over
 * and over in your markup.
 */
.cf:after, .columns-1 .el--block:after, .media:after, .nav:after {
  content: "";
  display: table;
  clear: both;
}

/*------------------------------------*\
    $SHARED
\*------------------------------------*/
/**
 * Where `margin-bottom` is concerned, this value will be the same as the
 * base line-height. This allows us to keep a consistent vertical rhythm.
 * As per: csswizardry.com/2012/06/single-direction-margin-declarations
 */
/**
 * Base elements
 */
h1, h2, h3, h4, h5, h6, hgroup,
ul, ol, dl,
blockquote, p, address,
table,
fieldset, figure,
pre,
.form-fields > li,
.media,
.island,
.islet {
  margin-bottom: 28px;
  margin-bottom: 1.5555555556rem;
}
.islet h1, .islet h2, .islet h3, .islet h4, .islet h5, .islet h6, .islet hgroup,
.islet ul, .islet ol, .islet dl,
.islet blockquote, .islet p, .islet address,
.islet table,
.islet fieldset, .islet figure,
.islet pre,
.islet .form-fields > li,
.islet .media,
.islet .island,
.islet .islet {
  margin-bottom: 14px;
  margin-bottom: 0.7777777778rem;
}

/**
 * Doubled up `margin-bottom` helper class.
 */
.landmark {
  margin-bottom: 56px;
  margin-bottom: 3.1111111111rem;
}

/**
 * `hr` elements only take up a few pixels, so we need to give them special
 * treatment regarding vertical rhythm.
 */
hr {
  margin-bottom: 26px;
  margin-bottom: 1.4444444444rem;
}

/**
 * Where `margin-left` is concerned we want to try and indent certain elements
 * by a consistent amount. Define that amount once, here.
 */
ul, ol, dd {
  margin-left: 56px;
  margin-left: 3.1111111111rem;
}

/**
 * Base styles; unclassed HTML elements etc.
 */
/*------------------------------------*\
    $MAIN
\*------------------------------------*/
html {
  font: 1.125em/1.5555555556 "Neuzeit Office W01", "Helvetica Neue", sans-serif;
  overflow-y: scroll;
  min-height: 100%;
}

/*------------------------------------*\
    $HEADINGS
\*------------------------------------*/
/**
 * As per: csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css
 *
 * When we define a heading we also define a corresponding class to go with it.
 * This allows us to apply, say, `class=alpha` to a `h3`; a double-stranded
 * heading hierarchy.
 */
h1, .alpha {
  font-size: 48px;
  font-size: 2.6666666667rem;
  line-height: 1.1666666667;
}

h2, .beta {
  font-size: 38px;
  font-size: 2.1111111111rem;
  line-height: 1.4736842105;
}

h3, .gamma {
  font-size: 28px;
  font-size: 1.5555555556rem;
  line-height: 1;
}

h4, .delta {
  font-size: 20px;
  font-size: 1.1111111111rem;
  line-height: 1.4;
}

h5, .epsilon {
  font-size: 16px;
  font-size: 0.8888888889rem;
  line-height: 1.75;
}

h6, .zeta {
  font-size: 14px;
  font-size: 0.7777777778rem;
  line-height: 2;
}

/**
 * Heading groups and generic any-heading class.
 * To target any heading of any level simply apply a class of `.hN`, e.g.:
 *
   <hgroup>
       <h1 class=hN>inuit.css</h1>
       <h2 class=hN>Best. Framework. Ever!</h2>
   </hgroup>
 *
 */
hgroup .hN {
  margin-bottom: 0;
}

/**
 * A series of classes for setting massive type; for use in heroes, mastheads,
 * promos, etc.
 */
.giga {
  font-size: 96px;
  font-size: 5.3333333333rem;
  line-height: 1.1666666667;
}

.mega {
  font-size: 72px;
  font-size: 4rem;
  line-height: 1.1666666667;
}

.kilo {
  font-size: 48px;
  font-size: 2.6666666667rem;
  line-height: 1.1666666667;
}

/*------------------------------------*\
    $PARAGRAPHS
\*------------------------------------*/
/**
 * The `.lede` class is used to make the introductory text (usually a paragraph)
 * of a document slightly larger.
 */
.lede,
.lead {
  font-size: 20.25px;
  font-size: 1.125rem;
  line-height: 1.3827160494;
}

/*------------------------------------*\
    $SMALLPRINT
\*------------------------------------*/
/**
 * A series of classes for setting tiny type; for use in smallprint etc.
 */
.smallprint,
.milli {
  font-size: 14px;
  font-size: 0.7777777778rem;
  line-height: 2;
}

.micro {
  font-size: 12px;
  font-size: 0.6666666667rem;
  line-height: 2.3333333333;
}

/*------------------------------------*\
    $QUOTES
\*------------------------------------*/
/**
 * If English quotes are set in `_vars.scss`, define them here.
 */
/**
 * Big up @boblet: html5doctor.com/blockquote-q-cite
 */
/**
 * Inline quotes.
 */
q {
  quotes: "‘" "’" "“" "”";
}
q:before {
  content: "‘";
  content: open-quote;
}
q:after {
  content: "’";
  content: close-quote;
}
q q:before {
  content: "“";
  content: open-quote;
}
q q:after {
  content: "”";
  content: close-quote;
}

blockquote {
  quotes: "“" "”";
}
blockquote p:before {
  content: "“";
  content: open-quote;
}
blockquote p:after {
  content: "";
  content: no-close-quote;
}
blockquote p:last-of-type:after {
  content: "”";
  content: close-quote;
}
blockquote q:before {
  content: "‘";
  content: open-quote;
}
blockquote q:after {
  content: "’";
  content: close-quote;
}

/**
 *
   <blockquote>
       <p>Insanity: doing the same thing over and over again and expecting
       different results.</p>
       <b class=source>Albert Einstein</b>
   </blockquote>
 *
 */
blockquote {
  /**
   * .4em is roughly equal to the width of the opening “ that we wish to hang.
   */
}
blockquote p:last-of-type {
  margin-bottom: 0;
}

.source {
  display: block;
  text-indent: 0;
}
.source:before {
  content: "—";
}

/*------------------------------------*\
    $CODE
\*------------------------------------*/
/**
 * Use an explicit font stack to ensure browsers render correct `line-height`.
 */
pre {
  overflow: auto;
}

pre mark {
  background: none;
  border-bottom: 1px solid;
  color: inherit;
}

/**
 * Add comments to your code examples, e.g.:
 *
   <code>&lt;/div&gt;<span class=code-comment>&lt;!-- /wrapper --&gt;</span></code>
 *
 */
.code-comment {
  /**
   * Override this setting in your theme stylesheet
   */
  opacity: 0.75;
  filter: alpha(opacity=75);
}

/**
 * You can add line numbers to your code examples but be warned, it requires
 * some pretty funky looking markup, e.g.:
 *
   <ol class=line-numbers>
       <li><code>.nav{</code></li>
       <li><code>    list-style:none;</code></li>
       <li><code>    margin-left:0;</code></li>
       <li><code>}</code></li>
       <li><code>    .nav > li,</code></li>
       <li><code>        .nav > li > a{</code></li>
       <li><code>            display:inline-block;</code></li>
       <li><code>           *display:inline-block;</code></li>
       <li><code>            zoom:1;</code></li>
       <li><code>        }</code></li>
   </ol>
 *
 * 1. Make the list look like code.
 * 2. Give the list flush numbers with a leading zero.
 * 3. Make sure lines of code don’t wrap.
 * 4. Give the code form by forcing the `code` to honour white-space.
 */
.line-numbers {
  font-family: monospace, serif;
  /* [1] */
  list-style: decimal-leading-zero inside;
  /* [2] */
  white-space: nowrap;
  /* [3] */
  overflow: auto;
  /* [3] */
  margin-left: 0;
}

.line-numbers code {
  white-space: pre;
  /* [4] */
}

/*------------------------------------*\
    $IMAGES
\*------------------------------------*/
/**
 * Demo: jsfiddle.net/inuitcss/yMtur
 */
/**
 * Fluid images.
 */
img {
  max-width: 100%;
}

/**
 * Non-fluid images if you specify `width` and/or `height` attributes.
 */
img[width],
img[height] {
  max-width: none;
}

/**
 * Rounded images.
 */
.img--round {
  border-radius: 4px;
}

/**
 * Image placement variations.
 */
.img--right {
  float: right;
  margin-bottom: 28px;
  margin-left: 28px;
}

.img--left {
  float: left;
  margin-right: 28px;
  margin-bottom: 28px;
}

.img--center {
  display: block;
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
}

/**
 * Keep your images on your baseline.
 *
 * Please note, these will not work too nicely with fluid images and will
 * distort when resized below a certain width. Use with caution.
 */
.img--short {
  height: 140px;
}

.img--medium {
  height: 280px;
}

.img--tall {
  height: 420px;
}

/**
 * Images in `figure` elements.
 */
figure > img {
  display: block;
}

/*------------------------------------*\
    $LISTS
\*------------------------------------*/
/**
 * Remove vertical spacing from nested lists.
 */
li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Have a numbered `ul` without the semantics implied by using an `ol`.
 */
/*ul*/
.numbered-list {
  list-style-type: decimal;
}

/*------------------------------------*\
    $TABLES
\*------------------------------------*/
/**
 * We have a lot at our disposal for making very complex table constructs, e.g.:
 *
   <table class="table--bordered  table--striped  table--data">
       <colgroup>
           <col class=t10>
           <col class=t10>
           <col class=t10>
           <col>
       </colgroup>
       <thead>
           <tr>
               <th colspan=3>Foo</th>
               <th>Bar</th>
           </tr>
           <tr>
               <th>Lorem</th>
               <th>Ipsum</th>
               <th class=numerical>Dolor</th>
               <th>Sit</th>
           </tr>
       </thead>
       <tbody>
           <tr>
               <th rowspan=3>Sit</th>
               <td>Dolor</td>
               <td class=numerical>03.788</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <td>Dolor</td>
               <td class=numerical>32.210</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <td>Dolor</td>
               <td class=numerical>47.797</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <th rowspan=2>Sit</th>
               <td>Dolor</td>
               <td class=numerical>09.640</td>
               <td>Lorem</td>
           </tr>
           <tr>
               <td>Dolor</td>
               <td class=numerical>12.117</td>
               <td>Lorem</td>
           </tr>
       </tbody>
   </table>
 *
 */
table {
  width: 100%;
}

th,
td {
  padding: 7px;
  text-align: left;
}
@media screen and (min-width: 480px) {
  th,
td {
    padding: 14px;
  }
}

/**
 * Cell alignments
 */
[colspan] {
  text-align: center;
}

[colspan="1"] {
  text-align: left;
}

[rowspan] {
  vertical-align: middle;
}

[rowspan="1"] {
  vertical-align: top;
}

.numerical {
  text-align: right;
}

/**
 * In the HTML above we see several `col` elements with classes whose numbers
 * represent a percentage width for that column. We leave one column free of a
 * class so that column can soak up the effects of any accidental breakage in
 * the table.
 */
.t5 {
  width: 5%;
}

.t10 {
  width: 10%;
}

.t12 {
  width: 12.5%;
}

/* 1/8 */
.t15 {
  width: 15%;
}

.t20 {
  width: 20%;
}

.t25 {
  width: 25%;
}

/* 1/4 */
.t30 {
  width: 30%;
}

.t33 {
  width: 33.333%;
}

/* 1/3 */
.t35 {
  width: 35%;
}

.t37 {
  width: 37.5%;
}

/* 3/8 */
.t40 {
  width: 40%;
}

.t45 {
  width: 45%;
}

.t50 {
  width: 50%;
}

/* 1/2 */
.t55 {
  width: 55%;
}

.t60 {
  width: 60%;
}

.t62 {
  width: 62.5%;
}

/* 5/8 */
.t65 {
  width: 65%;
}

.t66 {
  width: 66.666%;
}

/* 2/3 */
.t70 {
  width: 70%;
}

.t75 {
  width: 75%;
}

/* 3/4*/
.t80 {
  width: 80%;
}

.t85 {
  width: 85%;
}

.t87 {
  width: 87.5%;
}

/* 7/8 */
.t90 {
  width: 90%;
}

.t95 {
  width: 95%;
}

/**
 * Bordered tables
 */
.table--bordered th,
.table--bordered td {
  border: 1px solid #ccc;
}
.table--bordered th:empty,
.table--bordered td:empty {
  border: none;
}
.table--bordered thead tr:last-child th {
  border-bottom-width: 2px;
}
.table--bordered tbody tr th:last-of-type {
  border-right-width: 2px;
}

/**
 * Striped tables
 */
.table--striped tbody tr:nth-of-type(odd) {
  background-color: #ffc;
  /* Override this color in your theme stylesheet */
}

/**
 * Data table
 */
.table--data {
  font: 12px/1.5 sans-serif;
}

/*------------------------------------*\
    $FORMS
\*------------------------------------*/
/**
 *
 * Demo: jsfiddle.net/inuitcss/MhHHU
 *
 */
fieldset {
  padding: 28px;
}

/**
 * Text inputs
 *
 * Instead of a `[type]` selector for each kind of form input, we just use a
 * class to target any/every one, e.g.:
   <input type=text class=text-input>
   <input type=email class=text-input>
   <input type=password class=text-input>
 *
 */
.text-input,
textarea {
  /**
   * Style these via your theme stylesheet.
   */
}

/**
 * Group sets of form fields in a list, e.g.:
 *
   <ul class=form-fields>
       <li>
           <label />
           <input />
       </li>
       <li>
           <label />
           <select />
       </li>
       <li>
           <label />
           <input />
       </li>
   </ul>
 *
 */
.form-fields {
  list-style: none;
  margin: 0;
}

.form-fields > li:last-child {
  margin-bottom: 0;
}

/**
 * Labels
 *
 * Define a `.label` class as well as a `label` element. This means we can apply
 * label-like styling to meta-labels for groups of options where a `label`
 * element is not suitable, e.g.:
 *
   <li>
       <span class=label>Select an option below:</span>
       <ul class="multi-list  four-cols">
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
       </ul>
   </li>
 *
 */
label,
.label {
  display: block;
}

.u-hidden-visually {
  visibility: hidden;
}

/**
 * Extra help text in `label`s, e.g.:
 *
   <label>Card number <small class=additional>No spaces</small></label>
 *
 */
.additional {
  display: block;
  font-weight: normal;
}

/*
 * Groups of checkboxes and radios, e.g.:
 *
   <li>
       <ul class=check-list>
           <li>
               <input /> <label />
           </li>
           <li>
               <input /> <label />
           </li>
       </ul>
   </li>
 *
 */
.check-list {
  list-style: none;
  margin: 0;
}

/*
 * Labels in check-lists
 */
.check-label,
.check-list label,
.check-list .label {
  display: inline-block;
}

/**
 * Spoken forms are for forms that read like spoken word, e.g.:
 *
   <li class=spoken-form>
       Hello, my <label for=spoken-name>name</label> is
       <input type=text class=text-input id=spoken-name>. My home
       <label for=country>country</label> is
       <select id=country>
           <option>UK</option>
           <option>US</option>
           <option>Other</option>
       </select>
   </li>
 *
 */
.spoken-form label {
  display: inline-block;
  font: inherit;
}

/**
 * Extra help text displayed after a field when that field is in focus, e.g.:
 *
   <label for=email>Email:</label>
   <input type=email class=text-input id=email>
   <small class=extra-help>.edu emails only</small>
 *
 * We leave the help text in the document flow and merely set it to
 * `visibility:hidden;`. This means that it won’t interfere with anything once
 * it reappears.
 *
 */
/*small*/
.extra-help {
  display: inline-block;
  visibility: hidden;
}

.text-input:active + .extra-help,
.text-input:focus + .extra-help {
  visibility: visible;
}

/**
 * Objects and abstractions
 */
/*------------------------------------*\
    $GRIDS
\*------------------------------------*/
/**
 * Fluid and nestable grid system, e.g.:
 *
   <div class="grid">

       <div class="grid__item  one-third">
           <p>One third grid</p>
       </div><!--

    --><div class="grid__item  two-thirds">
           <p>Two thirds grid</p>
       </div><!--

    --><div class="grid__item  one-half">
           <p>One half grid</p>
       </div><!--

    --><div class="grid__item  one-quarter">
           <p>One quarter grid</p>
       </div><!--

    --><div class="grid__item  one-quarter">
           <p>One quarter grid</p>
       </div>

   </div>
 *
 * Demo: jsfiddle.net/inuitcss/CLYUC
 *
 */
/**
 * Grid wrapper
 */
.grid {
  margin-left: -4%;
  list-style: none;
  margin-bottom: 0;
}

/**
 * Very infrequently occuring grid wrappers as children of grid wrappers.
 */
.grid > .grid {
  margin-left: 0;
}

/**
 * Grid
 */
.grid__item {
  display: inline-block;
  width: 100%;
  padding-left: 4%;
  vertical-align: top;
}

/*------------------------------------*\
    $CSSWIZARDRY-GRIDS
\*------------------------------------*/
/**
 * CONTENTS
 * GRID SETUP...........Build the grid structure.
 */
/**
 * Reversed grids allow you to structure your source in the opposite order to
 * how your rendered layout will appear. Extends `.grid`.
 */
.grid--rev {
  direction: rtl;
  text-align: left;
}
.grid--rev > .grid__item {
  direction: ltr;
  text-align: left;
}

/**
 * Gutterless grids have all the properties of regular grids, minus any spacing.
 * Extends `.grid`.
 */
.grid--full {
  margin-left: 0;
}
.grid--full > .grid__item {
  padding-left: 0;
}

/**
 * Align the entire grid to the right. Extends `.grid`.
 */
.grid--right {
  text-align: right;
}
.grid--right > .grid__item {
  text-align: left;
}

/**
 * Centered grids align grid items centrally without needing to use push or pull
 * classes. Extends `.grid`.
 */
.grid--center {
  text-align: center;
}
.grid--center > .grid__item {
  text-align: left;
}

/**
 * Align grid cells vertically (`.grid--middle` or `.grid--bottom`). Extends
 * `.grid`.
 */
.grid--middle > .grid__item {
  vertical-align: middle;
}

.grid--bottom > .grid__item {
  vertical-align: bottom;
}

/**
 * Create grids with narrower gutters. Extends `.grid`.
 */
.grid--narrow {
  margin-left: -14px;
}
.grid--narrow > .grid__item {
  padding-left: 14px;
}

/**
 * Create grids with wider gutters. Extends `.grid`.
 */
.grid--wide {
  margin-left: -56px;
}
.grid--wide > .grid__item {
  padding-left: 56px;
}

/*------------------------------------*\
    $NAV
\*------------------------------------*/
/**
 * Nav abstraction as per: csswizardry.com/2011/09/the-nav-abstraction
 * When used on an `ol` or `ul`, this class throws the list into horizontal mode
 * e.g.:
 *
   <ul class=nav>
       <li><a href=#>Home</a></li>
       <li><a href=#>About</a></li>
       <li><a href=#>Portfolio</a></li>
       <li><a href=#>Contact</a></li>
   </ul>
 *
 * Demo: jsfiddle.net/inuitcss/Vnph4
 *
 */
.nav {
  list-style: none;
  margin-left: 0;
}
.nav > li,
.nav > li > a {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

/**
 * `.nav--stacked` extends `.nav` and throws the list into vertical mode, e.g.:
 *
   <ul class="nav  nav--stacked">
       <li><a href=#>Home</a></li>
       <li><a href=#>About</a></li>
       <li><a href=#>Portfolio</a></li>
       <li><a href=#>Contact</a></li>
   </ul>
 *
 */
.nav--stacked > li {
  display: list-item;
}
.nav--stacked > li > a {
  display: block;
}

/**
 * `.nav--banner` extends `.nav` and centres the list, e.g.:
 *
   <ul class="nav  nav--banner">
       <li><a href=#>Home</a></li>
       <li><a href=#>About</a></li>
       <li><a href=#>Portfolio</a></li>
       <li><a href=#>Contact</a></li>
   </ul>
 *
 */
.nav--banner {
  text-align: center;
}

/**
 * Give nav links a big, blocky hit area. Extends `.nav`, e.g.:
 *
   <ul class="nav  nav--block">
       <li><a href=#>Home</a></li>
       <li><a href=#>About</a></li>
       <li><a href=#>Portfolio</a></li>
       <li><a href=#>Contact</a></li>
   </ul>
 *
 */
.nav--block {
  line-height: 1;
  /**
   * Remove whitespace caused by `inline-block`.
   */
  letter-spacing: -0.31em;
  word-spacing: -0.43em;
  white-space: nowrap;
}
.nav--block > li {
  letter-spacing: normal;
  word-spacing: normal;
}
.nav--block > li > a {
  padding: 14px;
}

/**
 * Force a nav to occupy 100% of the available width of its parent. Extends
 * `.nav`, e.g.:
 *
   <ul class="nav  nav--fit">
       <li><a href=#>Home</a></li>
       <li><a href=#>About</a></li>
       <li><a href=#>Portfolio</a></li>
       <li><a href=#>Contact</a></li>
   </ul>
 *
 * Thanks to @pimpl for this idea!
 */
.nav--fit {
  display: table;
  width: 100%;
}
.nav--fit > li {
  display: table-cell;
}
.nav--fit > li > a {
  display: block;
}

/**
 * Make a list of keywords. Extends `.nav`, e.g.:
 *
   `<ul class="nav  nav--keywords>`
 *
 */
.nav--keywords > li:after {
  content: "," " ";
}
.nav--keywords > li:last-child:after {
  display: none;
}

/*------------------------------------*\
    $MEDIA
\*------------------------------------*/
/**
 * Place any image- and text-like content side-by-side, as per:
 * stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code
 * E.g.:
 *
   <div class=media>
       <img src=http://placekitten.com/200/300 alt="" class=media__img>
       <p class=media__body>Lorem ipsum dolor sit amet, consectetur adipisicing elit,
       sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
   </div>
 *
 * Demo: jsfiddle.net/inuitcss/cf4Qs
 *
 */
.media {
  display: block;
}

.media__img {
  float: left;
  margin-right: 28px;
}

/**
 * Reversed image location (right instead of left).
 */
.media__img--rev {
  float: right;
  margin-left: 28px;
}

.media__img img,
.media__img--rev img {
  display: block;
}

.media__body {
  overflow: hidden;
}

.media__body,
.media__body > :last-child {
  margin-bottom: 0;
}

/**
 * `.img`s in `.islet`s need an appropriately sized margin.
 */
.islet .media__img {
  margin-right: 14px;
}

.islet .media__img--rev {
  margin-left: 14px;
}

/*------------------------------------*\
    $BLOCK-LIST
\*------------------------------------*/
/**
 * Create big blocky lists of content, e.g.:
 *
   <ul class=block-list>
      <li>Foo</li>
      <li>Bar</li>
      <li>Baz</li>
      <li><a href=# class=block-list__link>Foo Bar Baz</a></li>
   </ul>
 *
 * Extend this object in your theme stylesheet.
 *
 * Demo: jsfiddle.net/inuitcss/hR57q
 *
 */
.block-list,
.block-list > li {
  border: 0 solid #ccc;
}

.block-list {
  list-style: none;
  margin-left: 0;
  border-top-width: 1px;
}
.block-list > li {
  border-bottom-width: 1px;
  padding: 14px;
}

.block-list__link {
  display: block;
  padding: 14px;
  margin: -14px;
}

/*------------------------------------*\
    $FLYOUT
\*------------------------------------*/
/**
 * Flyouts are pieces of content that fly out of a parent when said parent is
 * hovered. They typically appear bottom-left of the parent.
 *
   <div class=flyout>
       Foo
       <div class=flyout__content>
           <h1>Lorem</h1>
           <p>Ipsum</p>
       </div>
   </div>
 *
 * Extend these objects in your theme stylesheet.
 *
 * Demo: jsfiddle.net/inuitcss/B52HG
 *
 */
.flyout,
.flyout--alt {
  position: relative;
  overflow: hidden;
}

.flyout__content {
  /**
   * Position the flyouts off-screen. This is typically better than
   * `display:none;`.
   */
  position: absolute;
  top: 100%;
  left: -99999px;
}

/**
 * Bring the flyouts into view when you hover their parents.
 * Two different types of flyout; ‘regular’ (`.flyout`) and ‘alternative’
 * (`.flyout--alt`).
 */
.flyout:hover,
.flyout--alt:hover {
  overflow: visible;
}

/**
 * Regular flyouts sit all the way from the top, flush left.
 */
.flyout:hover > .flyout__content {
  left: 0;
}

/**
 * Alternative flyouts sit all the way from the left, flush top.
 */
.flyout--alt:hover > .flyout__content {
  top: 0;
  left: 100%;
}

/*------------------------------------*\
    $ARROWS
\*------------------------------------*/
/**
 * It is a common design treatment to give an element a triangular points-out
 * arrow, we typically build these with CSS. These following classes allow us to
 * generate these arbitrarily with a mixin, `@arrow()`.
 */
/**
 * Forms the basis for any/all CSS arrows.
 */
/**
 * Define individual edges so we can combine what we need, when we need.
 */
/*------------------------------------*\
    $BEAUTONS.CSS
\*------------------------------------*/
/**
 * beautons is a beautifully simple button toolkit.
 *
 * LICENSE
 * 
 * Copyright 2013 Harry Roberts
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 * http://apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * 
 */
/*!*
 * 
 * @csswizardry -- csswizardry.com/beautons
 * 
 */
/*------------------------------------*\
    $BASE
\*------------------------------------*/
/**
 * Base button styles.
 *
 * 1. Allow us to better style box model properties.
 * 2. Line different sized buttons up a little nicer.
 * 3. Stop buttons wrapping and looking broken.
 * 4. Make buttons inherit font styles.
 * 5. Force all elements using beautons to appear clickable.
 * 6. Normalise box model styles.
 * 7. If the button’s text is 1em, and the button is (3 * font-size) tall, then
 *    there is 1em of space above and below that text. We therefore apply 1em
 *    of space to the left and right, as padding, to keep consistent spacing.
 * 8. Basic cosmetics for default buttons. Change or override at will.
 * 9. Don’t allow buttons to have underlines; it kinda ruins the illusion.
 */
.btn, .c-password-protected input[type=submit], .search-controls button, .woocommerce .search-controls button, .search-controls .woocommerce button, #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, .single-product .single_add_to_cart_button, .woocommerce .shop-wrap .button, .woocommerce .btn, .woocommerce .button, .shop-wrap .button.alt, .woocommerce a.button {
  display: inline-block;
  /* [1] */
  vertical-align: middle;
  /* [2] */
  white-space: nowrap;
  /* [3] */
  font-family: inherit;
  /* [4] */
  font-size: 100%;
  /* [4] */
  cursor: pointer;
  /* [5] */
  border: none;
  /* [6] */
  margin: 0;
  /* [6] */
  padding-top: 0;
  /* [6] */
  padding-bottom: 0;
  /* [6] */
  line-height: 3;
  /* [7] */
  padding-right: 1em;
  /* [7] */
  padding-left: 1em;
  /* [7] */
  border-radius: 4px;
  /* [8] */
}

.btn, .c-password-protected input[type=submit], .search-controls button, .woocommerce .search-controls button, .search-controls .woocommerce button, #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, .single-product .single_add_to_cart_button, .woocommerce .shop-wrap .button, .woocommerce .btn, .woocommerce .button, .shop-wrap .button.alt, .woocommerce a.button, .btn:hover {
  text-decoration: none;
  /* [9] */
}
.btn:active, .c-password-protected input[type=submit]:active, .search-controls button:active, #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:active, .single-product .single_add_to_cart_button:active, .woocommerce .button:active, .shop-wrap .button.alt:active, .btn:focus, .c-password-protected input[type=submit]:focus, .search-controls button:focus, #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:focus, .single-product .single_add_to_cart_button:focus, .woocommerce .button:focus, .shop-wrap .button.alt:focus {
  outline: none;
}

/*------------------------------------*\
    $SIZES
\*------------------------------------*/
/**
 * Button size modifiers.
 *
 * These all follow the same sizing rules as above; text is 1em, space around it
 * remains uniform.
 */
.btn--small {
  padding-right: 0.5em;
  padding-left: 0.5em;
  line-height: 2;
}

.btn--large {
  padding-right: 1.5em;
  padding-left: 1.5em;
  line-height: 4;
}

.btn--huge {
  padding-right: 2em;
  padding-left: 2em;
  line-height: 5;
}

/**
 * These buttons will fill the entirety of their container.
 *
 * 1. Remove padding so that widths and paddings don’t conflict.
 */
.btn--full {
  width: 100%;
  padding-right: 0;
  /* [1] */
  padding-left: 0;
  /* [1] */
  text-align: center;
}

/*------------------------------------*\
    $FONT-SIZES
\*------------------------------------*/
/**
 * Button font-size modifiers.
 */
.btn--alpha {
  font-size: 3rem;
}

.btn--beta {
  font-size: 2rem;
}

.btn--gamma {
  font-size: 1rem;
}

/**
 * Make the button inherit sizing from its parent.
 */
.btn--natural {
  vertical-align: baseline;
  font-size: inherit;
  line-height: inherit;
  padding-right: 0.5em;
  padding-left: 0.5em;
}

/*------------------------------------*\
    $FUNCTIONS
\*------------------------------------*/
/**
 * Button function modifiers.
 */
/**
 * Positive actions; e.g. sign in, purchase, submit, etc.
 */
.btn--positive {
  background-color: #4A993E;
  color: #fff;
}

/**
 * Negative actions; e.g. close account, delete photo, remove friend, etc.
 */
.btn--negative {
  background-color: #b33630;
  color: #fff;
}

/**
 * Inactive, disabled buttons.
 * 
 * 1. Make the button look like normal text when hovered.
 */
.btn--inactive,
.btn--inactive:hover,
.btn--inactive:active,
.btn--inactive:focus {
  background-color: #ddd;
  color: #777;
  cursor: text;
  /* [1] */
}

/*------------------------------------*\
    $STYLES
\*------------------------------------*/
/**
 * Button style modifiers.
 *
 * 1. Use an overly-large number to ensure completely rounded, pill-like ends.
 */
.btn--soft {
  border-radius: 200px;
  /* [1] */
}

.btn--hard {
  border-radius: 0;
}

/**
 * Style trumps; helper and brand classes
 */
/*------------------------------------*\
    $WIDTHS
\*------------------------------------*/
/**
 * Sizes in human readable format. These are used in conjunction with other
 * objects and abstractions found in inuit.css, most commonly the grid system
 * and faux flexbox.
 *
 * We have a mixin to generate our widths and their breakpoint-specific
 * variations.
 */
/**
* Whole
*/
.one-whole {
  width: 100%;
}

/**
* Halves
*/
.one-half, .six-twelfths, .five-tenths, .four-eighths, .three-sixths, .two-quarters {
  width: 50%;
}

/**
* Thirds
*/
.one-third, .four-twelfths, .two-sixths {
  width: 33.333%;
}

.two-thirds, .eight-twelfths, .four-sixths {
  width: 66.666%;
}

/**
* Quarters
*/
.one-quarter, .three-twelfths, .two-eighths {
  width: 25%;
}

.three-quarters, .nine-twelfths, .six-eighths {
  width: 75%;
}

/**
* Fifths
*/
.one-fifth, .two-tenths {
  width: 20%;
}

.two-fifths, .four-tenths {
  width: 40%;
}

.three-fifths, .six-tenths {
  width: 60%;
}

.four-fifths, .eight-tenths {
  width: 80%;
}

/**
* Sixths
*/
.one-sixth, .two-twelfths {
  width: 16.666%;
}

.five-sixths, .ten-twelfths {
  width: 83.333%;
}

/**
* Eighths
*/
.one-eighth {
  width: 12.5%;
}

.three-eighths {
  width: 37.5%;
}

.five-eighths {
  width: 62.5%;
}

.seven-eighths {
  width: 87.5%;
}

/**
* Tenths
*/
.one-tenth {
  width: 10%;
}

.three-tenths {
  width: 30%;
}

.seven-tenths {
  width: 70%;
}

.nine-tenths {
  width: 90%;
}

/**
* Twelfths
*/
.one-twelfth {
  width: 8.333%;
}

.five-twelfths {
  width: 41.666%;
}

.seven-twelfths {
  width: 58.333%;
}

.eleven-twelfths {
  width: 91.666%;
}

/**
 * If you have set `$responsive` to ‘true’ in `_vars.scss` then you now have
 * access to these classes. You can define at which breakpoint you’d like an
 * element to be a certain size, e.g.:
 *
 * `<div class="g  one-quarter  lap-one-half  palm-one-whole"> ... </div>`
 *
 * This would create a `div` that, at ‘desktop’ sizes, takes up a quarter of the
 * horizontal space, a half of that space at ‘tablet’ sizes, and goes full width
 * at ‘mobile’ sizes.
 *
 * Demo: jsfiddle.net/inuitcss/WS4Ge
 *
 */
@media only screen and (max-width: 1022px) {
  /**
  * Whole
  */
  .palm-one-whole {
    width: 100%;
  }

  /**
  * Halves
  */
  .palm-one-half, .palm-six-twelfths, .palm-five-tenths, .palm-four-eighths, .palm-three-sixths, .palm-two-quarters {
    width: 50%;
  }

  /**
  * Thirds
  */
  .palm-one-third, .palm-four-twelfths, .palm-two-sixths {
    width: 33.333%;
  }

  .palm-two-thirds, .palm-eight-twelfths, .palm-four-sixths {
    width: 66.666%;
  }

  /**
  * Quarters
  */
  .palm-one-quarter, .palm-three-twelfths, .palm-two-eighths {
    width: 25%;
  }

  .palm-three-quarters, .palm-nine-twelfths, .palm-six-eighths {
    width: 75%;
  }

  /**
  * Fifths
  */
  .palm-one-fifth, .palm-two-tenths {
    width: 20%;
  }

  .palm-two-fifths, .palm-four-tenths {
    width: 40%;
  }

  .palm-three-fifths, .palm-six-tenths {
    width: 60%;
  }

  .palm-four-fifths, .palm-eight-tenths {
    width: 80%;
  }

  /**
  * Sixths
  */
  .palm-one-sixth, .palm-two-twelfths {
    width: 16.666%;
  }

  .palm-five-sixths, .palm-ten-twelfths {
    width: 83.333%;
  }

  /**
  * Eighths
  */
  .palm-one-eighth {
    width: 12.5%;
  }

  .palm-three-eighths {
    width: 37.5%;
  }

  .palm-five-eighths {
    width: 62.5%;
  }

  .palm-seven-eighths {
    width: 87.5%;
  }

  /**
  * Tenths
  */
  .palm-one-tenth {
    width: 10%;
  }

  .palm-three-tenths {
    width: 30%;
  }

  .palm-seven-tenths {
    width: 70%;
  }

  .palm-nine-tenths {
    width: 90%;
  }

  /**
  * Twelfths
  */
  .palm-one-twelfth {
    width: 8.333%;
  }

  .palm-five-twelfths {
    width: 41.666%;
  }

  .palm-seven-twelfths {
    width: 58.333%;
  }

  .palm-eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1022px) {
  /**
  * Whole
  */
  .tablet-one-whole {
    width: 100%;
  }

  /**
  * Halves
  */
  .tablet-one-half, .tablet-six-twelfths, .tablet-five-tenths, .tablet-four-eighths, .tablet-three-sixths, .tablet-two-quarters {
    width: 50%;
  }

  /**
  * Thirds
  */
  .tablet-one-third, .tablet-four-twelfths, .tablet-two-sixths {
    width: 33.333%;
  }

  .tablet-two-thirds, .tablet-eight-twelfths, .tablet-four-sixths {
    width: 66.666%;
  }

  /**
  * Quarters
  */
  .tablet-one-quarter, .tablet-three-twelfths, .tablet-two-eighths {
    width: 25%;
  }

  .tablet-three-quarters, .tablet-nine-twelfths, .tablet-six-eighths {
    width: 75%;
  }

  /**
  * Fifths
  */
  .tablet-one-fifth, .tablet-two-tenths {
    width: 20%;
  }

  .tablet-two-fifths, .tablet-four-tenths {
    width: 40%;
  }

  .tablet-three-fifths, .tablet-six-tenths {
    width: 60%;
  }

  .tablet-four-fifths, .tablet-eight-tenths {
    width: 80%;
  }

  /**
  * Sixths
  */
  .tablet-one-sixth, .tablet-two-twelfths {
    width: 16.666%;
  }

  .tablet-five-sixths, .tablet-ten-twelfths {
    width: 83.333%;
  }

  /**
  * Eighths
  */
  .tablet-one-eighth {
    width: 12.5%;
  }

  .tablet-three-eighths {
    width: 37.5%;
  }

  .tablet-five-eighths {
    width: 62.5%;
  }

  .tablet-seven-eighths {
    width: 87.5%;
  }

  /**
  * Tenths
  */
  .tablet-one-tenth {
    width: 10%;
  }

  .tablet-three-tenths {
    width: 30%;
  }

  .tablet-seven-tenths {
    width: 70%;
  }

  .tablet-nine-tenths {
    width: 90%;
  }

  /**
  * Twelfths
  */
  .tablet-one-twelfth {
    width: 8.333%;
  }

  .tablet-five-twelfths {
    width: 41.666%;
  }

  .tablet-seven-twelfths {
    width: 58.333%;
  }

  .tablet-eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (min-width: 767px) {
  /**
  * Whole
  */
  .tablet-and-up-one-whole {
    width: 100%;
  }

  /**
  * Halves
  */
  .tablet-and-up-one-half, .tablet-and-up-six-twelfths, .tablet-and-up-five-tenths, .tablet-and-up-four-eighths, .tablet-and-up-three-sixths, .tablet-and-up-two-quarters {
    width: 50%;
  }

  /**
  * Thirds
  */
  .tablet-and-up-one-third, .tablet-and-up-four-twelfths, .tablet-and-up-two-sixths {
    width: 33.333%;
  }

  .tablet-and-up-two-thirds, .tablet-and-up-eight-twelfths, .tablet-and-up-four-sixths {
    width: 66.666%;
  }

  /**
  * Quarters
  */
  .tablet-and-up-one-quarter, .tablet-and-up-three-twelfths, .tablet-and-up-two-eighths {
    width: 25%;
  }

  .tablet-and-up-three-quarters, .tablet-and-up-nine-twelfths, .tablet-and-up-six-eighths {
    width: 75%;
  }

  /**
  * Fifths
  */
  .tablet-and-up-one-fifth, .tablet-and-up-two-tenths {
    width: 20%;
  }

  .tablet-and-up-two-fifths, .tablet-and-up-four-tenths {
    width: 40%;
  }

  .tablet-and-up-three-fifths, .tablet-and-up-six-tenths {
    width: 60%;
  }

  .tablet-and-up-four-fifths, .tablet-and-up-eight-tenths {
    width: 80%;
  }

  /**
  * Sixths
  */
  .tablet-and-up-one-sixth, .tablet-and-up-two-twelfths {
    width: 16.666%;
  }

  .tablet-and-up-five-sixths, .tablet-and-up-ten-twelfths {
    width: 83.333%;
  }

  /**
  * Eighths
  */
  .tablet-and-up-one-eighth {
    width: 12.5%;
  }

  .tablet-and-up-three-eighths {
    width: 37.5%;
  }

  .tablet-and-up-five-eighths {
    width: 62.5%;
  }

  .tablet-and-up-seven-eighths {
    width: 87.5%;
  }

  /**
  * Tenths
  */
  .tablet-and-up-one-tenth {
    width: 10%;
  }

  .tablet-and-up-three-tenths {
    width: 30%;
  }

  .tablet-and-up-seven-tenths {
    width: 70%;
  }

  .tablet-and-up-nine-tenths {
    width: 90%;
  }

  /**
  * Twelfths
  */
  .tablet-and-up-one-twelfth {
    width: 8.333%;
  }

  .tablet-and-up-five-twelfths {
    width: 41.666%;
  }

  .tablet-and-up-seven-twelfths {
    width: 58.333%;
  }

  .tablet-and-up-eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (min-width: 1023px) and (max-width: 1199px) {
  /**
  * Whole
  */
  .lap-one-whole {
    width: 100%;
  }

  /**
  * Halves
  */
  .lap-one-half, .lap-six-twelfths, .lap-five-tenths, .lap-four-eighths, .lap-three-sixths, .lap-two-quarters {
    width: 50%;
  }

  /**
  * Thirds
  */
  .lap-one-third, .lap-four-twelfths, .lap-two-sixths {
    width: 33.333%;
  }

  .lap-two-thirds, .lap-eight-twelfths, .lap-four-sixths {
    width: 66.666%;
  }

  /**
  * Quarters
  */
  .lap-one-quarter, .lap-three-twelfths, .lap-two-eighths {
    width: 25%;
  }

  .lap-three-quarters, .lap-nine-twelfths, .lap-six-eighths {
    width: 75%;
  }

  /**
  * Fifths
  */
  .lap-one-fifth, .lap-two-tenths {
    width: 20%;
  }

  .lap-two-fifths, .lap-four-tenths {
    width: 40%;
  }

  .lap-three-fifths, .lap-six-tenths {
    width: 60%;
  }

  .lap-four-fifths, .lap-eight-tenths {
    width: 80%;
  }

  /**
  * Sixths
  */
  .lap-one-sixth, .lap-two-twelfths {
    width: 16.666%;
  }

  .lap-five-sixths, .lap-ten-twelfths {
    width: 83.333%;
  }

  /**
  * Eighths
  */
  .lap-one-eighth {
    width: 12.5%;
  }

  .lap-three-eighths {
    width: 37.5%;
  }

  .lap-five-eighths {
    width: 62.5%;
  }

  .lap-seven-eighths {
    width: 87.5%;
  }

  /**
  * Tenths
  */
  .lap-one-tenth {
    width: 10%;
  }

  .lap-three-tenths {
    width: 30%;
  }

  .lap-seven-tenths {
    width: 70%;
  }

  .lap-nine-tenths {
    width: 90%;
  }

  /**
  * Twelfths
  */
  .lap-one-twelfth {
    width: 8.333%;
  }

  .lap-five-twelfths {
    width: 41.666%;
  }

  .lap-seven-twelfths {
    width: 58.333%;
  }

  .lap-eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (min-width: 1023px) {
  /**
  * Whole
  */
  .lap-and-up-one-whole {
    width: 100%;
  }

  /**
  * Halves
  */
  .lap-and-up-one-half, .lap-and-up-six-twelfths, .lap-and-up-five-tenths, .lap-and-up-four-eighths, .lap-and-up-three-sixths, .lap-and-up-two-quarters {
    width: 50%;
  }

  /**
  * Thirds
  */
  .lap-and-up-one-third, .lap-and-up-four-twelfths, .lap-and-up-two-sixths {
    width: 33.333%;
  }

  .lap-and-up-two-thirds, .lap-and-up-eight-twelfths, .lap-and-up-four-sixths {
    width: 66.666%;
  }

  /**
  * Quarters
  */
  .lap-and-up-one-quarter, .lap-and-up-three-twelfths, .lap-and-up-two-eighths {
    width: 25%;
  }

  .lap-and-up-three-quarters, .lap-and-up-nine-twelfths, .lap-and-up-six-eighths {
    width: 75%;
  }

  /**
  * Fifths
  */
  .lap-and-up-one-fifth, .lap-and-up-two-tenths {
    width: 20%;
  }

  .lap-and-up-two-fifths, .lap-and-up-four-tenths {
    width: 40%;
  }

  .lap-and-up-three-fifths, .lap-and-up-six-tenths {
    width: 60%;
  }

  .lap-and-up-four-fifths, .lap-and-up-eight-tenths {
    width: 80%;
  }

  /**
  * Sixths
  */
  .lap-and-up-one-sixth, .lap-and-up-two-twelfths {
    width: 16.666%;
  }

  .lap-and-up-five-sixths, .lap-and-up-ten-twelfths {
    width: 83.333%;
  }

  /**
  * Eighths
  */
  .lap-and-up-one-eighth {
    width: 12.5%;
  }

  .lap-and-up-three-eighths {
    width: 37.5%;
  }

  .lap-and-up-five-eighths {
    width: 62.5%;
  }

  .lap-and-up-seven-eighths {
    width: 87.5%;
  }

  /**
  * Tenths
  */
  .lap-and-up-one-tenth {
    width: 10%;
  }

  .lap-and-up-three-tenths {
    width: 30%;
  }

  .lap-and-up-seven-tenths {
    width: 70%;
  }

  .lap-and-up-nine-tenths {
    width: 90%;
  }

  /**
  * Twelfths
  */
  .lap-and-up-one-twelfth {
    width: 8.333%;
  }

  .lap-and-up-five-twelfths {
    width: 41.666%;
  }

  .lap-and-up-seven-twelfths {
    width: 58.333%;
  }

  .lap-and-up-eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (max-width: 1199px) {
  /**
  * Whole
  */
  .portable-one-whole {
    width: 100%;
  }

  /**
  * Halves
  */
  .portable-one-half, .portable-six-twelfths, .portable-five-tenths, .portable-four-eighths, .portable-three-sixths, .portable-two-quarters {
    width: 50%;
  }

  /**
  * Thirds
  */
  .portable-one-third, .portable-four-twelfths, .portable-two-sixths {
    width: 33.333%;
  }

  .portable-two-thirds, .portable-eight-twelfths, .portable-four-sixths {
    width: 66.666%;
  }

  /**
  * Quarters
  */
  .portable-one-quarter, .portable-three-twelfths, .portable-two-eighths {
    width: 25%;
  }

  .portable-three-quarters, .portable-nine-twelfths, .portable-six-eighths {
    width: 75%;
  }

  /**
  * Fifths
  */
  .portable-one-fifth, .portable-two-tenths {
    width: 20%;
  }

  .portable-two-fifths, .portable-four-tenths {
    width: 40%;
  }

  .portable-three-fifths, .portable-six-tenths {
    width: 60%;
  }

  .portable-four-fifths, .portable-eight-tenths {
    width: 80%;
  }

  /**
  * Sixths
  */
  .portable-one-sixth, .portable-two-twelfths {
    width: 16.666%;
  }

  .portable-five-sixths, .portable-ten-twelfths {
    width: 83.333%;
  }

  /**
  * Eighths
  */
  .portable-one-eighth {
    width: 12.5%;
  }

  .portable-three-eighths {
    width: 37.5%;
  }

  .portable-five-eighths {
    width: 62.5%;
  }

  .portable-seven-eighths {
    width: 87.5%;
  }

  /**
  * Tenths
  */
  .portable-one-tenth {
    width: 10%;
  }

  .portable-three-tenths {
    width: 30%;
  }

  .portable-seven-tenths {
    width: 70%;
  }

  .portable-nine-tenths {
    width: 90%;
  }

  /**
  * Twelfths
  */
  .portable-one-twelfth {
    width: 8.333%;
  }

  .portable-five-twelfths {
    width: 41.666%;
  }

  .portable-seven-twelfths {
    width: 58.333%;
  }

  .portable-eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (min-width: 1200px) {
  /**
  * Whole
  */
  .desk-one-whole {
    width: 100%;
  }

  /**
  * Halves
  */
  .desk-one-half, .desk-six-twelfths, .desk-five-tenths, .desk-four-eighths, .desk-three-sixths, .desk-two-quarters {
    width: 50%;
  }

  /**
  * Thirds
  */
  .desk-one-third, .desk-four-twelfths, .desk-two-sixths {
    width: 33.333%;
  }

  .desk-two-thirds, .desk-eight-twelfths, .desk-four-sixths {
    width: 66.666%;
  }

  /**
  * Quarters
  */
  .desk-one-quarter, .desk-three-twelfths, .desk-two-eighths {
    width: 25%;
  }

  .desk-three-quarters, .desk-nine-twelfths, .desk-six-eighths {
    width: 75%;
  }

  /**
  * Fifths
  */
  .desk-one-fifth, .desk-two-tenths {
    width: 20%;
  }

  .desk-two-fifths, .desk-four-tenths {
    width: 40%;
  }

  .desk-three-fifths, .desk-six-tenths {
    width: 60%;
  }

  .desk-four-fifths, .desk-eight-tenths {
    width: 80%;
  }

  /**
  * Sixths
  */
  .desk-one-sixth, .desk-two-twelfths {
    width: 16.666%;
  }

  .desk-five-sixths, .desk-ten-twelfths {
    width: 83.333%;
  }

  /**
  * Eighths
  */
  .desk-one-eighth {
    width: 12.5%;
  }

  .desk-three-eighths {
    width: 37.5%;
  }

  .desk-five-eighths {
    width: 62.5%;
  }

  .desk-seven-eighths {
    width: 87.5%;
  }

  /**
  * Tenths
  */
  .desk-one-tenth {
    width: 10%;
  }

  .desk-three-tenths {
    width: 30%;
  }

  .desk-seven-tenths {
    width: 70%;
  }

  .desk-nine-tenths {
    width: 90%;
  }

  /**
  * Twelfths
  */
  .desk-one-twelfth {
    width: 8.333%;
  }

  .desk-five-twelfths {
    width: 41.666%;
  }

  .desk-seven-twelfths {
    width: 58.333%;
  }

  .desk-eleven-twelfths {
    width: 91.666%;
  }
}
/**
 * If you have set the additional `$responsive-extra` variable to ‘true’ in
 * `_vars.scss` then you now have access to the following class available to
 * accomodate much larger screen resolutions.
 */
@media only screen and (min-width: 1600px) {
  /**
  * Whole
  */
  .desk-wide-one-whole {
    width: 100%;
  }

  /**
  * Halves
  */
  .desk-wide-one-half, .desk-wide-six-twelfths, .desk-wide-five-tenths, .desk-wide-four-eighths, .desk-wide-three-sixths, .desk-wide-two-quarters {
    width: 50%;
  }

  /**
  * Thirds
  */
  .desk-wide-one-third, .desk-wide-four-twelfths, .desk-wide-two-sixths {
    width: 33.333%;
  }

  .desk-wide-two-thirds, .desk-wide-eight-twelfths, .desk-wide-four-sixths {
    width: 66.666%;
  }

  /**
  * Quarters
  */
  .desk-wide-one-quarter, .desk-wide-three-twelfths, .desk-wide-two-eighths {
    width: 25%;
  }

  .desk-wide-three-quarters, .desk-wide-nine-twelfths, .desk-wide-six-eighths {
    width: 75%;
  }

  /**
  * Fifths
  */
  .desk-wide-one-fifth, .desk-wide-two-tenths {
    width: 20%;
  }

  .desk-wide-two-fifths, .desk-wide-four-tenths {
    width: 40%;
  }

  .desk-wide-three-fifths, .desk-wide-six-tenths {
    width: 60%;
  }

  .desk-wide-four-fifths, .desk-wide-eight-tenths {
    width: 80%;
  }

  /**
  * Sixths
  */
  .desk-wide-one-sixth, .desk-wide-two-twelfths {
    width: 16.666%;
  }

  .desk-wide-five-sixths, .desk-wide-ten-twelfths {
    width: 83.333%;
  }

  /**
  * Eighths
  */
  .desk-wide-one-eighth {
    width: 12.5%;
  }

  .desk-wide-three-eighths {
    width: 37.5%;
  }

  .desk-wide-five-eighths {
    width: 62.5%;
  }

  .desk-wide-seven-eighths {
    width: 87.5%;
  }

  /**
  * Tenths
  */
  .desk-wide-one-tenth {
    width: 10%;
  }

  .desk-wide-three-tenths {
    width: 30%;
  }

  .desk-wide-seven-tenths {
    width: 70%;
  }

  .desk-wide-nine-tenths {
    width: 90%;
  }

  /**
  * Twelfths
  */
  .desk-wide-one-twelfth {
    width: 8.333%;
  }

  .desk-wide-five-twelfths {
    width: 41.666%;
  }

  .desk-wide-seven-twelfths {
    width: 58.333%;
  }

  .desk-wide-eleven-twelfths {
    width: 91.666%;
  }
}
/* endif */
/*------------------------------------*\
    $PUSH
\*------------------------------------*/
/**
 * Push classes, to move grid items over to the right by certain amounts.
 */
/*------------------------------------*\
    $PULL
\*------------------------------------*/
/**
 * Pull classes, to move grid items over to the right by certain amounts.
 */
/*------------------------------------*\
    $BRAND
\*------------------------------------*/
/**
 * `.brand` is a quick and simple way to apply your brand face and/or color to
 * any element using a handy helper class.
 */
.brand {
  font-family: "Helvetica Neue", sans-serif!important;
  color: #000000!important;
}

.brand-face {
  font-family: "Helvetica Neue", sans-serif!important;
}

.brand-color,
.brand-colour {
  color: #000000!important;
}

/*------------------------------------*\
    $HELPER
\*------------------------------------*/
/**
 * A series of helper classes to use arbitrarily. Only use a helper class if an
 * element/component doesn’t already have a class to which you could apply this
 * styling, e.g. if you need to float `.main-nav` left then add `float:left;` to
 * that ruleset as opposed to adding the `.float--left` class to the markup.
 *
 * A lot of these classes carry `!important` as you will always want them to win
 * out over other selectors.
 */
/**
 * Add/remove floats
 */
.float--right {
  float: right !important;
}

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

.float--none {
  float: none !important;
}

/**
 * Text alignment
 */
.text--left {
  text-align: left !important;
}

.text--center {
  text-align: center !important;
}

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

/**
 * Font weights
 */
.weight--light {
  font-weight: 300 !important;
}

.weight--normal {
  font-weight: 400 !important;
}

.weight--semibold {
  font-weight: 600 !important;
}

/**
 * Add/remove margins
 */
.push {
  margin: 28px !important;
}

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

.push--right {
  margin-right: 28px !important;
}

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

.push--left {
  margin-left: 28px !important;
}

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

.push--sides {
  margin-right: 28px !important;
  margin-left: 28px !important;
}

.push-half {
  margin: 14px !important;
}

.push-half--top {
  margin-top: 14px !important;
}

.push-half--right {
  margin-right: 14px !important;
}

.push-half--bottom {
  margin-bottom: 14px !important;
}

.push-half--left {
  margin-left: 14px !important;
}

.push-half--ends {
  margin-top: 14px !important;
  margin-bottom: 14px !important;
}

.push-half--sides {
  margin-right: 14px !important;
  margin-left: 14px !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;
}

/**
 * Add/remove paddings
 */
.soft {
  padding: 28px !important;
}

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

.soft--right {
  padding-right: 28px !important;
}

.soft--bottom {
  padding-bottom: 28px !important;
}

.soft--left {
  padding-left: 28px !important;
}

.soft--ends {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

.soft--sides {
  padding-right: 28px !important;
  padding-left: 28px !important;
}

.soft-half {
  padding: 14px !important;
}

.soft-half--top {
  padding-top: 14px !important;
}

.soft-half--right {
  padding-right: 14px !important;
}

.soft-half--bottom {
  padding-bottom: 14px !important;
}

.soft-half--left {
  padding-left: 14px !important;
}

.soft-half--ends {
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}

.soft-half--sides {
  padding-right: 14px !important;
  padding-left: 14px !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;
}

/**
 * Pull items full width of `.island` parents.
 */
.full-bleed {
  margin-right: -28px !important;
  margin-left: -28px !important;
}
.islet .full-bleed {
  margin-right: -14px !important;
  margin-left: -14px !important;
}

/**
 * Add a help cursor to any element that gives the user extra information on
 * `:hover`.
 */
.informative {
  cursor: help !important;
}

/**
 * Mute an object by reducing its opacity.
 */
.muted {
  opacity: 0.5 !important;
  filter: alpha(opacity=50) !important;
}

/**
 * Align items to the right where they imply progression/movement forward, e.g.:
 *
   <p class=proceed><a href=#>Read more...</a></p>
 *
 */
.proceed {
  text-align: right !important;
}

/**
 * Add a right-angled quote to links that imply movement, e.g.:
 *
   <a href=# class=go>Read more</a>
 *
 */
.go:after {
  content: " " "»" !important;
}

/**
 * Apply capital case to an element (usually a `strong`).
 */
.caps {
  text-transform: uppercase !important;
}

/**
 * Hide content off-screen without resorting to `display:none;`, also provide
 * breakpoint specific hidden elements.
 */
.accessibility, .shop-filters .screen-reader-text,
.visuallyhidden {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

@media only screen and (max-width: 1022px) {
  .accessibility--palm,
.visuallyhidden--palm {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1022px) {
  .accessibility--tablet,
.visuallyhidden--tablet {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
  }
}
@media only screen and (min-width: 767px) {
  .accessibility--tablet-and-up,
.visuallyhidden--tablet-and-up {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
  }
}
@media only screen and (min-width: 1023px) and (max-width: 1199px) {
  .accessibility--lap,
.visuallyhidden--lap {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
  }
}
@media only screen and (min-width: 1023px) {
  .accessibility--lap-and-up,
.visuallyhidden--lap-and-up {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
  }
}
@media only screen and (max-width: 1199px) {
  .accessibility--portable,
.visuallyhidden--portable {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
  }
}
@media only screen and (min-width: 1200px) {
  .accessibility--desk,
.visuallyhidden--desk {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
  }
}
@media only screen and (min-width: 1600px) {
  .accessibility--desk-wide,
.visuallyhidden--desk-wide {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
  }
}
/* endif */
/*------------------------------------*\
    COLOURS.SCSS
\*------------------------------------*/
/***  Generic Colours  ***/
/**
	Waddesdon Project Colours
**/
/**
	Colour Helper Function
**/
/**
	Background Helpers
**/
/* Brandon Text */
/** weight 300 **/
@font-face {
  font-family: "BrandonText";
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/brandon-text/320743_1_0.eot");
  src: url("../fonts/brandon-text/320743_1_0.eot?#iefix") format("embedded-opentype"), url("../fonts/brandon-text/320743_1_0.woff2") format("woff2"), url("../fonts/brandon-text/320743_1_0.woff") format("woff"), url("../fonts/brandon-text/320743_1_0.ttf") format("truetype");
}
@font-face {
  font-family: "BrandonText";
  font-weight: 300;
  font-style: italic;
  src: url("../fonts/brandon-text/320743_0_0.eot");
  src: url("../fonts/brandon-text/320743_0_0.eot?#iefix") format("embedded-opentype"), url("../fonts/brandon-text/320743_0_0.woff2") format("woff2"), url("../fonts/brandon-text/320743_0_0.woff") format("woff"), url("../fonts/brandon-text/320743_0_0.ttf") format("truetype");
}
/** weight 400 **/
@font-face {
  font-family: "BrandonText";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/brandon-text/320743_4_0.eot");
  src: url("../fonts/brandon-text/320743_4_0.eot?#iefix") format("embedded-opentype"), url("../fonts/brandon-text/320743_4_0.woff2") format("woff2"), url("../fonts/brandon-text/320743_4_0.woff") format("woff"), url("../fonts/brandon-text/320743_4_0.ttf") format("truetype");
}
@font-face {
  font-family: "BrandonText";
  font-weight: normal;
  font-style: italic;
  src: url("../fonts/brandon-text/320743_2_0.eot");
  src: url("../fonts/brandon-text/320743_2_0.eot?#iefix") format("embedded-opentype"), url("../fonts/brandon-text/320743_2_0.woff2") format("woff2"), url("../fonts/brandon-text/320743_2_0.woff") format("woff"), url("../fonts/brandon-text/320743_2_0.ttf") format("truetype");
}
/** weight 600 **/
@font-face {
  font-family: "BrandonText";
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/brandon-text/320743_5_0.eot");
  src: url("../fonts/brandon-text/320743_5_0.eot?#iefix") format("embedded-opentype"), url("../fonts/brandon-text/320743_5_0.woff2") format("woff2"), url("../fonts/brandon-text/320743_5_0.woff") format("woff"), url("../fonts/brandon-text/320743_5_0.ttf") format("truetype");
}
@font-face {
  font-family: "BrandonText";
  font-weight: 400;
  font-style: italic;
  src: url("../fonts/brandon-text/320743_3_0.eot");
  src: url("../fonts/brandon-text/320743_3_0.eot?#iefix") format("embedded-opentype"), url("../fonts/brandon-text/320743_3_0.woff2") format("woff2"), url("../fonts/brandon-text/320743_3_0.woff") format("woff"), url("../fonts/brandon-text/320743_3_0.ttf") format("truetype");
}
/** weight 700 **/
@font-face {
  font-family: "BrandonText";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/brandon-text/brandontext-bold.woff2") format("woff2"), url("../fonts/brandon-text/brandontext-bold.woff") format("woff");
}
@font-face {
  font-family: "BrandonText";
  font-weight: 400;
  font-style: italic;
  src: url("../fonts/brandon-text/320743_3_0.eot");
  src: url("../fonts/brandon-text/320743_3_0.eot?#iefix") format("embedded-opentype"), url("../fonts/brandon-text/320743_3_0.woff2") format("woff2"), url("../fonts/brandon-text/320743_3_0.woff") format("woff"), url("../fonts/brandon-text/320743_3_0.ttf") format("truetype");
}
/**********************************************************************************************************************************************************
***  Load up additional ui / page / module specific css
**********************************************************************************************************************************************************/
/*------------------------------------*\
    Animations
\*------------------------------------*/
/**
 * Timing-functions
 */
.delay-none {
  -webkit-animation-delay: 0s !important;
  -moz-animation-delay: 0s !important;
  -ms-animation-delay: 0s !important;
  -o-animation-delay: 0s !important;
  animation-delay: 0s !important;
}

.delay-half, .poi-map-detail-open .c-poi-item__header-thumb, .poi-map-detail-open .c-poi-detail__body, .poi-map-detail-open .c-poi-detail__header {
  -webkit-animation-delay: 0.5s !important;
  -moz-animation-delay: 0.5s !important;
  -ms-animation-delay: 0.5s !important;
  -o-animation-delay: 0.5s !important;
  animation-delay: 0.5s !important;
}

.delay-one {
  -webkit-animation-delay: 1s !important;
  -moz-animation-delay: 1s !important;
  -ms-animation-delay: 1s !important;
  -o-animation-delay: 1s !important;
  animation-delay: 1s !important;
}

.delay-one-half {
  -webkit-animation-delay: 1.5s !important;
  -moz-animation-delay: 1.5s !important;
  -ms-animation-delay: 1.5s !important;
  -o-animation-delay: 1.5s !important;
  animation-delay: 1.5s !important;
}

.delay-two {
  -webkit-animation-delay: 2s !important;
  -moz-animation-delay: 2s !important;
  -ms-animation-delay: 2s !important;
  -o-animation-delay: 2s !important;
  animation-delay: 2s !important;
}

.delay-two-half {
  -webkit-animation-delay: 2.5s !important;
  -moz-animation-delay: 2.5s !important;
  -ms-animation-delay: 2.5s !important;
  -o-animation-delay: 2.5s !important;
  animation-delay: 2.5s !important;
}

.delay-three, .c-poi-item__header-gallery-label {
  -webkit-animation-delay: 3s !important;
  -moz-animation-delay: 3s !important;
  -ms-animation-delay: 3s !important;
  -o-animation-delay: 3s !important;
  animation-delay: 3s !important;
}

.delay-three-half {
  -webkit-animation-delay: 3.5s !important;
  -moz-animation-delay: 3.5s !important;
  -ms-animation-delay: 3.5s !important;
  -o-animation-delay: 3.5s !important;
  animation-delay: 3.5s !important;
}

/**
 * Animate.css by Dan Eden
 */
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
  }
}
@-ms-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -ms-transform: translateY(0);
  }
  40% {
    -ms-transform: translateY(-30px);
  }
  60% {
    -ms-transform: translateY(-15px);
  }
}
@-o-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -o-transform: translateY(0);
  }
  40% {
    -o-transform: translateY(-30px);
  }
  60% {
    -o-transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes bounceIn {
  0% {
    opacity: 0;
    -moz-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -moz-transform: scale(1.05);
  }
  70% {
    -moz-transform: scale(0.9);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@-ms-keyframes bounceIn {
  0% {
    opacity: 0;
    -ms-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -ms-transform: scale(1.05);
  }
  70% {
    -ms-transform: scale(0.9);
  }
  100% {
    -ms-transform: scale(1);
  }
}
@-o-keyframes bounceIn {
  0% {
    opacity: 0;
    -o-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -o-transform: scale(1.05);
  }
  70% {
    -o-transform: scale(0.9);
  }
  100% {
    -o-transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes bounceInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateY(30px);
  }
  80% {
    -moz-transform: translateY(-10px);
  }
  100% {
    -moz-transform: translateY(0);
  }
}
@-ms-keyframes bounceInDown {
  0% {
    opacity: 0;
    -ms-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -ms-transform: translateY(30px);
  }
  80% {
    -ms-transform: translateY(-10px);
  }
  100% {
    -ms-transform: translateY(0);
  }
}
@-o-keyframes bounceInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateY(30px);
  }
  80% {
    -o-transform: translateY(-10px);
  }
  100% {
    -o-transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(30px);
  }
  80% {
    -moz-transform: translateX(-10px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@-ms-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -ms-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -ms-transform: translateX(30px);
  }
  80% {
    -ms-transform: translateX(-10px);
  }
  100% {
    -ms-transform: translateX(0);
  }
}
@-o-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateX(30px);
  }
  80% {
    -o-transform: translateX(-10px);
  }
  100% {
    -o-transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes bounceInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(-30px);
  }
  80% {
    -moz-transform: translateX(10px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@-ms-keyframes bounceInRight {
  0% {
    opacity: 0;
    -ms-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -ms-transform: translateX(-30px);
  }
  80% {
    -ms-transform: translateX(10px);
  }
  100% {
    -ms-transform: translateX(0);
  }
}
@-o-keyframes bounceInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateX(-30px);
  }
  80% {
    -o-transform: translateX(10px);
  }
  100% {
    -o-transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes bounceInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateY(-30px);
  }
  80% {
    -moz-transform: translateY(10px);
  }
  100% {
    -moz-transform: translateY(0);
  }
}
@-ms-keyframes bounceInUp {
  0% {
    opacity: 0;
    -ms-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -ms-transform: translateY(-30px);
  }
  80% {
    -ms-transform: translateY(10px);
  }
  100% {
    -ms-transform: translateY(0);
  }
}
@-o-keyframes bounceInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateY(-30px);
  }
  80% {
    -o-transform: translateY(10px);
  }
  100% {
    -o-transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
}
@-moz-keyframes bounceOut {
  0% {
    -moz-transform: scale(1);
  }
  25% {
    -moz-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -moz-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -moz-transform: scale(0.3);
  }
}
@-ms-keyframes bounceOut {
  0% {
    -ms-transform: scale(1);
  }
  25% {
    -ms-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -ms-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -ms-transform: scale(0.3);
  }
}
@-o-keyframes bounceOut {
  0% {
    -o-transform: scale(1);
  }
  25% {
    -o-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -o-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -o-transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}
@-moz-keyframes bounceOutDown {
  0% {
    -moz-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
}
@-ms-keyframes bounceOutDown {
  0% {
    -ms-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -ms-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -ms-transform: translateY(2000px);
  }
}
@-o-keyframes bounceOutDown {
  0% {
    -o-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}
@-moz-keyframes bounceOutLeft {
  0% {
    -moz-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
}
@-ms-keyframes bounceOutLeft {
  0% {
    -ms-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -ms-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -ms-transform: translateX(-2000px);
  }
}
@-o-keyframes bounceOutLeft {
  0% {
    -o-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@-moz-keyframes bounceOutRight {
  0% {
    -moz-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
}
@-ms-keyframes bounceOutRight {
  0% {
    -ms-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -ms-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -ms-transform: translateX(2000px);
  }
}
@-o-keyframes bounceOutRight {
  0% {
    -o-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}
@-moz-keyframes bounceOutUp {
  0% {
    -moz-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
}
@-ms-keyframes bounceOutUp {
  0% {
    -ms-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -ms-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -ms-transform: translateY(-2000px);
  }
}
@-o-keyframes bounceOutUp {
  0% {
    -o-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-ms-keyframes fadeInDown {
  0% {
    opacity: 0;
    -ms-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -ms-transform: translateY(0);
  }
}
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -ms-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -ms-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-ms-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -ms-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -ms-transform: translateY(0);
  }
}
@-o-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-ms-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -ms-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -ms-transform: translateX(0);
  }
}
@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-ms-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -ms-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -ms-transform: translateX(0);
  }
}
@-o-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-ms-keyframes fadeInRight {
  0% {
    opacity: 0;
    -ms-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -ms-transform: translateX(0);
  }
}
@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-ms-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -ms-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -ms-transform: translateX(0);
  }
}
@-o-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-ms-keyframes fadeInUp {
  0% {
    opacity: 0;
    -ms-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -ms-transform: translateY(0);
  }
}
@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-ms-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -ms-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -ms-transform: translateY(0);
  }
}
@-o-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-ms-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}
@-moz-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
}
@-ms-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -ms-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -ms-transform: translateY(20px);
  }
}
@-o-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}
@-moz-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
}
@-ms-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -ms-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -ms-transform: translateY(2000px);
  }
}
@-o-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
}
@-moz-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(-20px);
  }
}
@-ms-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -ms-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -ms-transform: translateX(-20px);
  }
}
@-o-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}
@-moz-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
}
@-ms-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -ms-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -ms-transform: translateX(-2000px);
  }
}
@-o-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
}
@-moz-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }
}
@-ms-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -ms-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -ms-transform: translateX(20px);
  }
}
@-o-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@-moz-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
}
@-ms-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -ms-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -ms-transform: translateX(2000px);
  }
}
@-o-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
}
@-moz-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
}
@-ms-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -ms-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -ms-transform: translateY(-20px);
  }
}
@-o-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}
@-moz-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
}
@-o-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.fadeIn, .c-poi-item__header-gallery-label {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -ms-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 800ms;
  -moz-animation-duration: 800ms;
  -ms-animation-duration: 800ms;
  -o-animation-duration: 800ms;
  animation-duration: 800ms;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fadeInDown, .poi-map-detail-open .c-poi-detail__header {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -ms-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 800ms;
  -moz-animation-duration: 800ms;
  -ms-animation-duration: 800ms;
  -o-animation-duration: 800ms;
  animation-duration: 800ms;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  -moz-animation-name: fadeInDownBig;
  -ms-animation-name: fadeInDownBig;
  -o-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
  -webkit-animation-duration: 800ms;
  -moz-animation-duration: 800ms;
  -ms-animation-duration: 800ms;
  -o-animation-duration: 800ms;
  animation-duration: 800ms;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fadeInLeft, .poi-map-detail-open .c-poi-map__poi-detail {
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -ms-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 800ms;
  -moz-animation-duration: 800ms;
  -ms-animation-duration: 800ms;
  -o-animation-duration: 800ms;
  animation-duration: 800ms;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  -moz-animation-name: fadeInLeftBig;
  -ms-animation-name: fadeInLeftBig;
  -o-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
  -webkit-animation-duration: 800ms;
  -moz-animation-duration: 800ms;
  -ms-animation-duration: 800ms;
  -o-animation-duration: 800ms;
  animation-duration: 800ms;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -ms-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight;
  -webkit-animation-duration: 800ms;
  -moz-animation-duration: 800ms;
  -ms-animation-duration: 800ms;
  -o-animation-duration: 800ms;
  animation-duration: 800ms;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  -moz-animation-name: fadeInRightBig;
  -ms-animation-name: fadeInRightBig;
  -o-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
  -webkit-animation-duration: 800ms;
  -moz-animation-duration: 800ms;
  -ms-animation-duration: 800ms;
  -o-animation-duration: 800ms;
  animation-duration: 800ms;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fadeInUp, .poi-map-detail-open .c-poi-detail__body {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -ms-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 800ms;
  -moz-animation-duration: 800ms;
  -ms-animation-duration: 800ms;
  -o-animation-duration: 800ms;
  animation-duration: 800ms;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fadeInUpBig, .poi-map-detail-open .c-poi-item__header-thumb {
  -webkit-animation-name: fadeInUpBig;
  -moz-animation-name: fadeInUpBig;
  -ms-animation-name: fadeInUpBig;
  -o-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
  -webkit-animation-duration: 800ms;
  -moz-animation-duration: 800ms;
  -ms-animation-duration: 800ms;
  -o-animation-duration: 800ms;
  animation-duration: 800ms;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  -moz-animation-name: fadeOut;
  -ms-animation-name: fadeOut;
  -o-animation-name: fadeOut;
  animation-name: fadeOut;
  -webkit-animation-duration: 800ms;
  -moz-animation-duration: 800ms;
  -ms-animation-duration: 800ms;
  -o-animation-duration: 800ms;
  animation-duration: 800ms;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  -moz-animation-name: fadeOutDown;
  -ms-animation-name: fadeOutDown;
  -o-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
  -webkit-animation-duration: 800ms;
  -moz-animation-duration: 800ms;
  -ms-animation-duration: 800ms;
  -o-animation-duration: 800ms;
  animation-duration: 800ms;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  -moz-animation-name: fadeOutDownBig;
  -ms-animation-name: fadeOutDownBig;
  -o-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
  -webkit-animation-duration: 800ms;
  -moz-animation-duration: 800ms;
  -ms-animation-duration: 800ms;
  -o-animation-duration: 800ms;
  animation-duration: 800ms;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  -moz-animation-name: fadeOutLeft;
  -ms-animation-name: fadeOutLeft;
  -o-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
  -webkit-animation-duration: 800ms;
  -moz-animation-duration: 800ms;
  -ms-animation-duration: 800ms;
  -o-animation-duration: 800ms;
  animation-duration: 800ms;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  -moz-animation-name: fadeOutLeftBig;
  -ms-animation-name: fadeOutLeftBig;
  -o-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
  -webkit-animation-duration: 800ms;
  -moz-animation-duration: 800ms;
  -ms-animation-duration: 800ms;
  -o-animation-duration: 800ms;
  animation-duration: 800ms;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  -moz-animation-name: fadeOutRight;
  -ms-animation-name: fadeOutRight;
  -o-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
  -webkit-animation-duration: 800ms;
  -moz-animation-duration: 800ms;
  -ms-animation-duration: 800ms;
  -o-animation-duration: 800ms;
  animation-duration: 800ms;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  -moz-animation-name: fadeOutRightBig;
  -ms-animation-name: fadeOutRightBig;
  -o-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
  -webkit-animation-duration: 800ms;
  -moz-animation-duration: 800ms;
  -ms-animation-duration: 800ms;
  -o-animation-duration: 800ms;
  animation-duration: 800ms;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  -moz-animation-name: fadeOutUp;
  -ms-animation-name: fadeOutUp;
  -o-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
  -webkit-animation-duration: 800ms;
  -moz-animation-duration: 800ms;
  -ms-animation-duration: 800ms;
  -o-animation-duration: 800ms;
  animation-duration: 800ms;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  -moz-animation-name: fadeOutUpBig;
  -ms-animation-name: fadeOutUpBig;
  -o-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
  -webkit-animation-duration: 800ms;
  -moz-animation-duration: 800ms;
  -ms-animation-duration: 800ms;
  -o-animation-duration: 800ms;
  animation-duration: 800ms;
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -ms-animation-timing-function: ease;
  -o-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none;
}

.pswp * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC;
}

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.pswp__button:focus,
.pswp__button:hover {
  opacity: 1;
}

.pswp__button:active {
  outline: none;
  opacity: 0.9;
}

.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(../images/photoswipe-assets/default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
.pswp--svg .pswp__button--arrow--left:before,
.pswp--svg .pswp__button--arrow--right:before {
    background-image: url(../images/photoswipe-assets/default-skin.svg);
  }

  .pswp--svg .pswp__button--arrow--left,
.pswp--svg .pswp__button--arrow--right {
    background: none;
  }
}
.pswp__button--close {
  background-position: 0 -44px;
}

.pswp__button--share {
  background-position: -44px -44px;
}

.pswp__button--fs {
  display: none;
}

.pswp--supports-fs .pswp__button--fs {
  display: block;
}

.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}

.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}

.pswp__button--arrow--left {
  left: 0;
}

.pswp__button--arrow--right {
  right: 0;
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: "";
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute;
}

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px;
}

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px;
}

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__share-modal--hidden {
  display: none;
}

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
  -ms-transform: translateY(6px);
  transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}

.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}

.pswp__share-tooltip a:first-child {
  /* round corners on the first/last list item */
  border-radius: 2px 2px 0 0;
}

.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
  opacity: 1;
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}

a.pswp__share--facebook:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF;
}

a.pswp__share--facebook:hover:before {
  border-bottom-color: #3E5C9A;
}

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF;
}

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D;
}

a.pswp__share--download:hover {
  background: #DDD;
}

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px;
}

/*

	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}

.pswp__caption small {
  font-size: 11px;
  color: #BBB;
}

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC;
}

.pswp__caption--empty {
  display: none;
}

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden;
}

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}

.pswp__preloader--active {
  opacity: 1;
}

.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url(../images/photoswipe-assets/preloader.gif) 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
  animation: clockwise 500ms linear infinite;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}

.pswp--css_animation .pswp__preloader__cut {
  /* 
  	The idea of animating inner circle is based on Polymer ("material") loading indicator 
  	 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
  */
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}
@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
/*

	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}

.pswp__element--disabled {
  display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
  background: none;
}

@media only screen and (min-width: 1023px) {
  .pswp__button--arrow--left:before, .pswp__button--arrow--right:before {
    background: url(../images/photoswipe-assets/3x-default-skin.png) 0 0 no-repeat;
    background-size: 444px 177px;
    width: 50px;
    height: 50px;
  }

  .pswp__button--arrow--right:before {
    background-position: -270px -110px;
  }

  .pswp__button--arrow--left:before {
    background-position: -400px -110px;
  }
}
/*
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* display none until init */
.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);
}

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-wrapper {
  margin: 0 auto;
}

.owl-carousel .owl-item {
  float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}

.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing {
  cursor: url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-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 Demo Theme
*	v1.3.3
*/
.owl-theme .owl-controls {
  margin-top: 10px;
  text-align: center;
}

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div {
  color: #FFF;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
  margin: 5px;
  padding: 3px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #869791;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
  text-decoration: none;
}

/* Styling Pagination*/
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
}

.owl-theme .owl-controls .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;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
}

/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

/*
 *  Owl Carousel CSS3 Transitions
 *  v1.3.2
 */
.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x: 50%;
  -webkit-perspective-origin-y: 50%;
  -moz-perspective: 1200px;
  -moz-perspective-origin-x: 50%;
  -moz-perspective-origin-y: 50%;
  perspective: 1200px;
}

/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut 0.7s both ease;
  -moz-animation: fadeOut 0.7s both ease;
  animation: fadeOut 0.7s both ease;
}

.owl-fade-in {
  -webkit-animation: fadeIn 0.7s both ease;
  -moz-animation: fadeIn 0.7s both ease;
  animation: fadeIn 0.7s both ease;
}

/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}

.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}

/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade 0.7s ease both;
  -moz-animation: scaleToFade 0.7s ease both;
  animation: scaleToFade 0.7s ease both;
}

.owl-goDown-in {
  -webkit-animation: goDown 0.6s ease both;
  -moz-animation: goDown 0.6s ease both;
  animation: goDown 0.6s ease both;
}

/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom 0.5s ease both;
  -moz-animation: scaleUpFrom 0.5s ease both;
  animation: scaleUpFrom 0.5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo 0.5s ease both;
  -moz-animation: scaleUpTo 0.5s ease both;
  animation: scaleUpTo 0.5s ease both;
}

/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {
    opacity: 1;
  }
}
@-moz-keyframes empty {
  0% {
    opacity: 1;
  }
}
@keyframes empty {
  0% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes backSlideOut {
  25% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px);
  }
  75% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
}
@-moz-keyframes backSlideOut {
  25% {
    opacity: 0.5;
    -moz-transform: translateZ(-500px);
  }
  75% {
    opacity: 0.5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: 0.5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
}
@keyframes backSlideOut {
  25% {
    opacity: 0.5;
    transform: translateZ(-500px);
  }
  75% {
    opacity: 0.5;
    transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: 0.5;
    transform: translateZ(-500px) translateX(-200%);
  }
}
@-webkit-keyframes backSlideIn {
  0%, 25% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
  }
}
@-moz-keyframes backSlideIn {
  0%, 25% {
    opacity: 0.5;
    -moz-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: 0.5;
    -moz-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateZ(0) translateX(0);
  }
}
@keyframes backSlideIn {
  0%, 25% {
    opacity: 0.5;
    transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: 0.5;
    transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) translateX(0);
  }
}
@-webkit-keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes scaleToFade {
  to {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
}
@keyframes scaleToFade {
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
@-webkit-keyframes goDown {
  from {
    -webkit-transform: translateY(-100%);
  }
}
@-moz-keyframes goDown {
  from {
    -moz-transform: translateY(-100%);
  }
}
@keyframes goDown {
  from {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpFrom {
  from {
    opacity: 0;
    transform: scale(1.5);
  }
}
@-webkit-keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpTo {
  to {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpTo {
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}
.owl-centred .owl-wrapper {
  width: 100% !important;
  text-align: center;
  white-space: nowrap;
}
.owl-centred .owl-wrapper .owl-item {
  display: inline-block;
  float: none;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}
.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}
.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-search--inline {
  float: left;
}
.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: left !important;
  font-weight: bold;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #757575;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #757575;
  margin-top: 5px;
  float: left;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline {
  float: right;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}
.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: left;
  font-weight: bold;
  margin-right: 10px;
}
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #757575;
}
.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}
.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}
.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}
.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  float: right;
}
.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}
.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}
.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}
.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}
.select2-container--classic .select2-dropdown--below {
  border-top: none;
}
.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white;
}
.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

/*------------------------------------*\
    Hamburger Menu Icon & Animation
\*------------------------------------*/
.hamburger {
  width: 24px;
  height: 18px;
  position: relative;
  z-index: 1000;
  margin: 0px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.hamburger:hover span {
  background: #999;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #101010;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2), .hamburger span:nth-child(3) {
  top: 6px;
}

.hamburger span:nth-child(4) {
  top: 12px;
}

.nav-open .hamburger span:nth-child(1) {
  top: 6px;
  width: 0%;
  left: 50%;
}

.nav-open .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-open .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav-open .hamburger span:nth-child(4) {
  top: 6px;
  width: 0%;
  left: 50%;
}

/*!
 *  Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.eot?v=4.6.3");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.6.3") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.6.3") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.6.3") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa, .fig.fig--vid-thumb a:after, .c-poi-item__header-thumb-wrap:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eeeeee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left, .fig.fig--vid-thumb a.fa-pull-left:after, .fa-pull-left.c-poi-item__header-thumb-wrap:before {
  margin-right: 0.3em;
}

.fa.fa-pull-right, .fig.fig--vid-thumb a.fa-pull-right:after, .fa-pull-right.c-poi-item__header-thumb-wrap:before {
  margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left, .fig.fig--vid-thumb a.pull-left:after, .pull-left.c-poi-item__header-thumb-wrap:before {
  margin-right: 0.3em;
}

.fa.pull-right, .fig.fig--vid-thumb a.pull-right:after, .pull-right.c-poi-item__header-thumb-wrap:before {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #ffffff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-feed:before,
.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before, .sub-nav-open .primary-nav__nav-item-trigger:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-area-chart:before {
  content: "";
}

.fa-pie-chart:before {
  content: "";
}

.fa-line-chart:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-facebook-official:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-hotel:before,
.fa-bed:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-battery-4:before,
.fa-battery-full:before {
  content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-sticky-note-o:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-hourglass-o:before {
  content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "";
}

.fa-hand-scissors-o:before {
  content: "";
}

.fa-hand-lizard-o:before {
  content: "";
}

.fa-hand-spock-o:before {
  content: "";
}

.fa-hand-pointer-o:before {
  content: "";
}

.fa-hand-peace-o:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-tv:before,
.fa-television:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-500px:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-calendar-plus-o:before {
  content: "";
}

.fa-calendar-minus-o:before {
  content: "";
}

.fa-calendar-times-o:before {
  content: "";
}

.fa-calendar-check-o:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-map-o:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-commenting:before {
  content: "";
}

.fa-commenting-o:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-credit-card-alt:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-pause-circle-o:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stop-circle-o:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-wheelchair-alt:before {
  content: "";
}

.fa-question-circle-o:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-audio-description:before {
  content: "";
}

.fa-volume-control-phone:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-assistive-listening-systems:before {
  content: "";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-first-order:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "";
}

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

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/*------------------------------------*\
    CALENDAR.SCSS
\*------------------------------------*/
/***  ugly css until we get a real calendar  ***/
/*------------------------------------*\
    General Helpers
\*------------------------------------*/
.grad-0:before {
  opacity: 0 !important;
}

.grad-1:before {
  opacity: 0.1 !important;
}

.grad-2:before {
  opacity: 0.2 !important;
}

.grad-3:before {
  opacity: 0.3 !important;
}

.grad-4:before {
  opacity: 0.4 !important;
}

.grad-5:before {
  opacity: 0.5 !important;
}

.grad-6:before {
  opacity: 0.6 !important;
}

.grad-7:before {
  opacity: 0.7 !important;
}

.grad-8:before {
  opacity: 0.8 !important;
}

.grad-9:before {
  opacity: 0.9 !important;
}

.grad-10:before {
  opacity: 1 !important;
}

.o-0:after {
  opacity: 0 !important;
}

.o-1:after {
  opacity: 0.1 !important;
}

.o-2:after {
  opacity: 0.2 !important;
}

.o-3:after {
  opacity: 0.3 !important;
}

.o-4:after {
  opacity: 0.4 !important;
}

.o-5:after {
  opacity: 0.5 !important;
}

.o-6:after {
  opacity: 0.6 !important;
}

.o-7:after {
  opacity: 0.7 !important;
}

.o-8:after {
  opacity: 0.8 !important;
}

.o-9:after {
  opacity: 0.9 !important;
}

.o-10:after {
  opacity: 1 !important;
}

/**********************************************************************************************************************************************************
***  Header
**********************************************************************************************************************************************************/
@media only screen and (max-width: 1022px) {
  .global-header {
    height: 85px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
  }
  .global-header .global-header__main-row:before {
    display: none;
  }

  .nav-open .global-header {
    height: 100%;
    overflow: scroll;
  }

  .nav-open {
    overflow: hidden;
  }

  .site-wrap {
    margin-top: 35px;
  }
}
.global-header__top-row {
  position: relative;
  background: #06395D;
  color: #FFFFFF;
  font-size: 70%;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media only screen and (min-width: 1023px) {
  .global-header__top-row {
    font-size: 70%;
  }
}

.global-header__top-row-rhs {
  text-align: center;
}

@media only screen and (min-width: 1023px) {
  .global-header__top-row-rhs {
    display: inline-block;
    float: right;
    text-align: right;
    width: 50%;
  }
}
.global-header__top-row-item {
  display: inline-block;
  padding: 8px;
  margin: 0;
  line-height: 100%;
}
@media only screen and (min-width: 1023px) {
  .global-header__top-row-item {
    line-height: 120%;
    padding: 15px;
  }
}

.global-header__btn {
  border-radius: 0 !important;
  font-size: 90%;
  float: right;
  width: 100%;
  text-align: center;
}
.global-header__btn li {
  list-style: none;
}
.global-header__btn .global-header__btn-link {
  font-size: 120%;
}
.global-header__btn .global-header__btn-link .fa, .global-header__btn .global-header__btn-link .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .global-header__btn .global-header__btn-link a:after, .global-header__btn .global-header__btn-link .c-poi-item__header-thumb-wrap:before {
  margin-right: 0;
}

.home-link {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

@media only screen and (min-width: 1023px) {
  .global-header__btn {
    float: none;
    width: auto;
  }
}
.global-header__secondary-nav:hover {
  background: black;
  color: #299EB7;
}

.opening-times-trigger {
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 50%;
  max-width: 200px;
  padding: 8px;
  font-size: 100%;
}

.book-tickets-trigger {
  background-color: #F99E2F;
  color: #101010;
  max-width: 170px;
  text-align: center;
  border-color: #F99E2F;
  line-height: 0;
  cursor: pointer;
}

@media only screen and (min-width: 1023px) {
  .opening-times-trigger, .book-tickets-trigger {
    width: auto;
    padding: 15px;
  }
}

.opening-times-trigger:hover {
  background: black;
  color: #299EB7;
}

.book-tickets-trigger:hover {
  background-color: #f89216;
}

.opening-times-panel, .book-tickets-panel {
  display: none;
  opacity: 0;
  position: absolute;
  left: 0;
  width: 100%;
  background: #031c2d;
  padding: 30px;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  text-align: left;
  text-transform: initial;
  letter-spacing: 0;
  font-size: 110%;
}

.book-tickets-panel {
  background: #F99E2F;
  color: #101010;
  text-transform: uppercase;
  letter-spacing: 1px;
}

body.book-tickets-open .book-tickets-trigger .fa-angle-down{
  transform: scaleY(-1);
}

.book-ticket__label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.opening-times-open .opening-times-panel, .book-tickets-open .book-tickets-panel {
  display: block;
  opacity: 1;
}

.book-tickets-open .book-tickets-panel {
  display: flex;
  flex-direction: column;
}

.book-tickets-link {
  display: block;
  text-decoration: underline;
  margin-bottom: 15px;
}

@media only screen and (min-width: 1023px) {
  .opening-times-panel, .book-tickets-panel {
    width: 40%;
    left: auto;
    right: 0;
  }

  .book-tickets-open .book-tickets-panel {
    flex-direction: row;
    justify-content: space-around;
  }

  .book-tickets-link {
    margin-bottom: 0;
  }
}

.global-header__top-row-item.btn--book {
  width: 50%;
  max-width: 200px;
}
@media only screen and (min-width: 1023px) {
  .global-header__top-row-item.btn--book {
    width: auto;
  }
}

.global-header__main-row {
  padding: 7px 0;
  position: relative;
  font-size: 100%;
}
.global-header__main-row .primary-nav__nav-item, .global-header__main-row .primary-nav__custom-nav-shop li.menu-item.outline, .primary-nav__custom-nav-shop .global-header__main-row li.menu-item.outline, .global-header__main-row .shop-nav .menu-item a, .shop-nav .menu-item .global-header__main-row a {
  font-weight: 600;
}
.global-header__main-row .global-header__logo {
  background-image: url("../images/waddesdon-new-logo-dark.svg");
}
.global-header__main-row .sub-nav-open .primary-nav__nav-item, .global-header__main-row .sub-nav-open .primary-nav__custom-nav-shop li.menu-item.outline, .primary-nav__custom-nav-shop .global-header__main-row .sub-nav-open li.menu-item.outline, .global-header__main-row .sub-nav-open .shop-nav .menu-item a, .shop-nav .menu-item .global-header__main-row .sub-nav-open a {
  color: #FFFFFF;
}
@media only screen and (min-width: 1023px) {
  .global-header__main-row {
    padding: 0;
  }
  .global-header__main-row .primary-nav__nav-item, .global-header__main-row .primary-nav__custom-nav-shop li.menu-item.outline, .primary-nav__custom-nav-shop .global-header__main-row li.menu-item.outline, .global-header__main-row .shop-nav .menu-item a, .shop-nav .menu-item .global-header__main-row a {
    color: #06395D;
  }
}

.global-header__main-row--dark:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 250px;
  z-index: -1;
  background: #101010;
  /* Old browsers */
  background: -moz-linear-gradient(top, #101010 0%, rgba(16, 16, 16, 0) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #101010), color-stop(100%, rgba(16, 16, 16, 0)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #101010 0%, rgba(16, 16, 16, 0) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #101010 0%, rgba(16, 16, 16, 0) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #101010 0%, rgba(16, 16, 16, 0) 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #101010 0%, rgba(16, 16, 16, 0) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  height: 160px;
}
.global-header__main-row--dark .primary-nav__nav-item, .global-header__main-row--dark .primary-nav__custom-nav-shop li.menu-item.outline, .primary-nav__custom-nav-shop .global-header__main-row--dark li.menu-item.outline, .global-header__main-row--dark .shop-nav .menu-item a, .shop-nav .menu-item .global-header__main-row--dark a {
  color: #FFFFFF;
}
.global-header__main-row--dark .global-header__logo {
  background-image: url("../images/waddesdon-new-logo-light.svg");
}

.global-header__main-row--light:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 250px;
  z-index: -1;
  background: white;
  /* Old browsers */
  background: -moz-linear-gradient(top, white 0%, rgba(255, 255, 255, 0) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, rgba(255, 255, 255, 0)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, white 0%, rgba(255, 255, 255, 0) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, white 0%, rgba(255, 255, 255, 0) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, white 0%, rgba(255, 255, 255, 0) 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  height: 160px;
}
.global-header__main-row--light .global-header__logo {
  background-image: url("../images/waddesdon-new-logo-dark.svg");
}
.global-header__main-row--light .outline:hover .primary-nav__nav-link {
  color: #FFFFFF;
}
.global-header__main-row--light .outline:hover .primary-nav__sub-nav-trigger {
  color: #FFFFFF;
}

@media only screen and (min-width: 1023px) {
  .global-header__main-row--solid,
.single-event .global-header__main-row,
.page-template-whats-on .global-header__main-row {
    position: relative;
    background: #F3F8FB;
  }
  .global-header__main-row--solid .primary-nav__nav-item, .global-header__main-row--solid .primary-nav__custom-nav-shop li.menu-item.outline, .primary-nav__custom-nav-shop .global-header__main-row--solid li.menu-item.outline, .global-header__main-row--solid .shop-nav .menu-item a, .shop-nav .menu-item .global-header__main-row--solid a,
.single-event .global-header__main-row .primary-nav__nav-item,
.single-event .global-header__main-row .primary-nav__custom-nav-shop li.menu-item.outline,
.primary-nav__custom-nav-shop .single-event .global-header__main-row li.menu-item.outline,
.single-event .global-header__main-row .shop-nav .menu-item a,
.shop-nav .menu-item .single-event .global-header__main-row a,
.page-template-whats-on .global-header__main-row .primary-nav__nav-item,
.page-template-whats-on .global-header__main-row .primary-nav__custom-nav-shop li.menu-item.outline,
.primary-nav__custom-nav-shop .page-template-whats-on .global-header__main-row li.menu-item.outline,
.page-template-whats-on .global-header__main-row .shop-nav .menu-item a,
.shop-nav .menu-item .page-template-whats-on .global-header__main-row a {
    color: #06395D;
  }
  .global-header__main-row--solid .outline:hover .primary-nav__nav-link,
.single-event .global-header__main-row .outline:hover .primary-nav__nav-link,
.page-template-whats-on .global-header__main-row .outline:hover .primary-nav__nav-link {
    color: #FFFFFF;
  }
  .global-header__main-row--solid .outline:hover .primary-nav__sub-nav-trigger,
.single-event .global-header__main-row .outline:hover .primary-nav__sub-nav-trigger,
.page-template-whats-on .global-header__main-row .outline:hover .primary-nav__sub-nav-trigger {
    color: #FFFFFF;
  }
  .global-header__main-row--solid .trigger-wrapper:hover,
.single-event .global-header__main-row .trigger-wrapper:hover,
.page-template-whats-on .global-header__main-row .trigger-wrapper:hover {
    background: rgba(1, 37, 71, 0.6);
  }
  .global-header__main-row--solid .primary-nav__nav-link:hover,
.single-event .global-header__main-row .primary-nav__nav-link:hover,
.page-template-whats-on .global-header__main-row .primary-nav__nav-link:hover {
    background: rgba(1, 37, 71, 0.6);
  }
  .global-header__main-row--solid .sub-nav-open .primary-nav__nav-item, .global-header__main-row--solid .sub-nav-open .primary-nav__custom-nav-shop li.menu-item.outline, .primary-nav__custom-nav-shop .global-header__main-row--solid .sub-nav-open li.menu-item.outline, .global-header__main-row--solid .sub-nav-open .shop-nav .menu-item a, .shop-nav .menu-item .global-header__main-row--solid .sub-nav-open a,
.single-event .global-header__main-row .sub-nav-open .primary-nav__nav-item,
.single-event .global-header__main-row .sub-nav-open .primary-nav__custom-nav-shop li.menu-item.outline,
.primary-nav__custom-nav-shop .single-event .global-header__main-row .sub-nav-open li.menu-item.outline,
.single-event .global-header__main-row .sub-nav-open .shop-nav .menu-item a,
.shop-nav .menu-item .single-event .global-header__main-row .sub-nav-open a,
.page-template-whats-on .global-header__main-row .sub-nav-open .primary-nav__nav-item,
.page-template-whats-on .global-header__main-row .sub-nav-open .primary-nav__custom-nav-shop li.menu-item.outline,
.primary-nav__custom-nav-shop .page-template-whats-on .global-header__main-row .sub-nav-open li.menu-item.outline,
.page-template-whats-on .global-header__main-row .sub-nav-open .shop-nav .menu-item a,
.shop-nav .menu-item .page-template-whats-on .global-header__main-row .sub-nav-open a {
    color: #FFFFFF;
  }
  .global-header__main-row--solid .global-header__logo,
.single-event .global-header__main-row .global-header__logo,
.page-template-whats-on .global-header__main-row .global-header__logo {
    background-image: url("../images/waddesdon-new-logo-dark.svg");
  }
}
.global-header__main-row--solid:before,
.single-event .global-header__main-row:before,
.page-template-whats-on .global-header__main-row:before {
  display: none;
}

@media only screen and (min-width: 1023px) {
  .global-header__main-row--float {
    position: absolute;
    width: 100%;
    z-index: 10;
  }
}
.global-header__main-row--shop .global-header__logo {
  width: 205px;
  height: 40px;
}

@media only screen and (min-width: 1023px) {
  .global-header__main-row--shop .global-header__logo {
    width: 353px;
    height: 70px;
  }
  .global-header__main-row--shop .primary-nav__nav-item, .global-header__main-row--shop .primary-nav__custom-nav-shop li.menu-item.outline, .primary-nav__custom-nav-shop .global-header__main-row--shop li.menu-item.outline, .global-header__main-row--shop .shop-nav .menu-item a, .shop-nav .menu-item .global-header__main-row--shop a {
    padding: 40px 0 !important;
  }
}
.global-header__main-row--shop.global-header__main-row--float .primary-nav__nav-item, .global-header__main-row--shop.global-header__main-row--float .primary-nav__custom-nav-shop li.menu-item.outline, .primary-nav__custom-nav-shop .global-header__main-row--shop.global-header__main-row--float li.menu-item.outline, .global-header__main-row--shop.global-header__main-row--float .shop-nav .menu-item a, .shop-nav .menu-item .global-header__main-row--shop.global-header__main-row--float a,
.page-template-page-shop .global-header__main-row--shop .primary-nav__nav-item,
.page-template-page-shop .global-header__main-row--shop .primary-nav__custom-nav-shop li.menu-item.outline,
.primary-nav__custom-nav-shop .page-template-page-shop .global-header__main-row--shop li.menu-item.outline,
.page-template-page-shop .global-header__main-row--shop .shop-nav .menu-item a,
.shop-nav .menu-item .page-template-page-shop .global-header__main-row--shop a {
  color: #FFFFFF;
}
.global-header__main-row--shop.global-header__main-row--float .global-header__logo,
.page-template-page-shop .global-header__main-row--shop .global-header__logo {
  background-image: url("../images/waddesdon-shop-logo-light.svg");
}

.basket .global-header__main-row--shop,
.checkout .global-header__main-row--shop,
.account .global-header__main-row--shop,
.woocommerce.search .global-header__main-row--shop {
  position: relative;
  width: 100%;
}

.global-header__logo {
  display: block;
  background-size: cover;
  width: 150px;
  height: 40px;
  margin: 0 5px 0 10px;
}

@media only screen and (min-width: 1023px) {
  .global-header__main-row--shop.global-header__main-row--float,
.page-template-page-shop .global-header__main-row--shop {
    background-color: rgba(56, 61, 66, 0.6);
  }

  .global-header__logo {
    float: left;
    width: 215px;
    height: 58px;
    margin: 22px 0 0 30px;
  }
}
@media only screen and (min-width: 1600px) {
  .global-header__logo {
    float: left;
    width: 260px;
    height: 70px;
    margin: 22px 0 0 30px;
  }
}
.global-header__primary-nav-toggle {
  position: absolute;
  right: 20px;
  top: 25px;
}
.global-header__primary-nav-toggle .hamburger span {
  background: #FFFFFF;
}

.primary-nav {
  display: none;
}

.nav-open .primary-nav {
  display: block;
}

.primary-nav__sub-nav-trigger {
  cursor: pointer;
  border: 1px solid;
  border-radius: 50px;
  width: 20px;
  text-align: center;
  height: 20px;
  line-height: 18px;
  font-size: 16px;
  margin: 8px 0 5px;
  float: right;
}
@media only screen and (min-width: 1023px) {
  .primary-nav__sub-nav-trigger {
    float: none;
  }
}

.mobile-ancillary-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav__nav-block {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.primary-nav__nav-item, .primary-nav__custom-nav-shop li.menu-item.outline, .shop-nav .menu-item a, .mobile-ancillary-nav li a {
  text-transform: uppercase;
  font-size: 100%;
  display: block;
  width: 100%;
  padding: 10px 15px;
}

.primary-nav__nav-item, .primary-nav__custom-nav-shop li.menu-item.outline, .shop-nav .menu-item a {
  font-size: 90%;
}

@media only screen and (min-width: 767px) {
  .primary-nav__nav-item, .primary-nav__custom-nav-shop li.menu-item.outline, .shop-nav .menu-item a {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 1023px) {
  .primary-nav {
    display: block;
    float: right;
    width: 75%;
    text-align: right;
  }

  .global-header__main-row--shop .primary-nav {
    width: 62%;
  }

  .primary-nav__nav-block {
    display: inline-block;
    border: none;
  }

  .primary-nav__nav-item, .primary-nav__custom-nav-shop li.menu-item.outline, .shop-nav .menu-item a {
    font-size: 90%;
    display: inline-block;
    padding: 30px 7px;
  }
  .primary-nav__nav-item .outline, .primary-nav__custom-nav-shop li.menu-item.outline .outline, .shop-nav .menu-item a .outline {
    display: inline-block;
    border-radius: 6px;
  }
  .primary-nav__nav-item .outline:hover, .primary-nav__custom-nav-shop li.menu-item.outline .outline:hover, .shop-nav .menu-item a .outline:hover {
    background: rgba(6, 57, 93, 0.6);
  }

  .trigger-wrapper {
    float: right;
    border-radius: 0 6px 6px 0;
    line-height: 34px;
    padding-left: 2px;
    padding-right: 2px;
  }
  .trigger-wrapper:hover {
    background: rgba(16, 16, 16, 0.6);
  }

  .primary-nav__nav-link {
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 6px 0 0 6px;
    line-height: 34px;
  }
  .primary-nav__nav-link:hover {
    background: rgba(16, 16, 16, 0.6);
  }

  .primary-nav__sub-nav-trigger {
    margin: 0;
  }

  .no-sub-nav .trigger-wrapper:hover, .no-sub-nav .primary-nav__nav-link:hover {
    background: none;
  }
}
@media only screen and (min-width: 1200px) {
  .primary-nav__nav-item, .primary-nav__custom-nav-shop li.menu-item.outline, .shop-nav .menu-item a {
    font-size: 100%;
    padding: 40px 20px;
  }

  .primary-nav__nav-link {
    line-height: 40px;
  }

  .trigger-wrapper {
    line-height: 40px;
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media only screen and (min-width: 1600px) {
  .primary-nav__nav-item, .primary-nav__custom-nav-shop li.menu-item.outline, .shop-nav .menu-item a {
    font-size: 130%;
  }

  .primary-nav__nav-link {
    line-height: 50px;
  }

  .trigger-wrapper {
    line-height: 50px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.sub-nav-row {
  display: none;
  opacity: 0;
  background: rgba(3, 28, 45, 0.85);
  position: relative;
  z-index: 10;
  left: 0;
  width: 100%;
  padding: 3% 5% 2%;
  text-align: left;
}
.sub-nav-row .sub-nav-row__section-label {
  display: none;
}
.sub-nav-row .menu-item {
  display: block;
}
.sub-nav-row .menu-item a {
  padding: 10px;
  display: block;
}

.sub-nav-open .sub-nav-row {
  display: block;
  opacity: 1;
}

@media only screen and (min-width: 1023px) {
  .sub-nav-row {
    position: absolute;
  }
  .sub-nav-row .sub-nav-row__section-label {
    display: inline-block;
    width: 30%;
    vertical-align: top;
  }
  .sub-nav-row .sub-nav-row__links {
    display: inline-block;
    width: 69%;
  }
  .sub-nav-row .sub-nav-row__links .menu-item {
    width: 33%;
    float: left;
    display: inline-block;
  }
  .sub-nav-row .sub-nav-row__links .menu-item:hover {
    color: #299EB7;
  }
  .sub-nav-row .sub-nav-row__links .menu-item a {
    padding: 2px 0;
  }
}
.sub-nav-open .primary-nav__nav-item, .sub-nav-open .primary-nav__custom-nav-shop li.menu-item.outline, .primary-nav__custom-nav-shop .sub-nav-open li.menu-item.outline, .sub-nav-open .shop-nav .menu-item a, .shop-nav .menu-item .sub-nav-open a {
  background: #031c2d;
  background: rgba(3, 28, 45, 0.85);
}

.shop-header .global-header__top-row-rhs {
  display: inline-block;
  float: right;
  text-align: right;
}

.shop-nav {
  margin: 0;
  padding: 0;
}

.shop-nav .menu-item {
  list-style: none;
  display: inline-block;
}
.shop-nav .menu-item a {
  font-size: 130%;
  padding: 40px 15px;
}

.primary-nav__custom-nav-shop {
  border-bottom: none;
  margin: 0;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1023px) {
  .primary-nav__custom-nav-shop {
    display: inline;
  }
}
.primary-nav__custom-nav-shop li.menu-item.outline {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  display: inline;
}
@media only screen and (min-width: 1023px) {
  .primary-nav__custom-nav-shop li.menu-item.outline {
    border: none;
  }
}
.primary-nav__custom-nav-shop li.menu-item.outline a {
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 0;
  border-radius: 6px;
  font-weight: 600;
  font-size: 100%;
}
.primary-nav__custom-nav-shop li.menu-item.outline a:hover {
  background: rgba(6, 57, 93, 0.6);
}
@media only screen and (min-width: 1023px) {
  .primary-nav__custom-nav-shop li.menu-item.outline a {
    padding: 12px 10px;
  }
}

.site-message {
  text-align: center;
  background: #F99E2F;
  color: #FFFFFF;
  font-family: "BrandonText", sans-serif;
  font-weight: bold;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 85%;
  line-height: 1.25em;
}
.site-message p {
  margin: 0 auto;
  max-width: 800px;
}
@media only screen and (min-width: 1023px) {
  .site-message {
    font-size: 90%;
  }
}

.site-message--show {
  margin-top: 85px;
}
.site-message--show .site-wrap {
  margin-top: 0;
}
@media only screen and (min-width: 1023px) {
  .site-message--show {
    margin-top: 0;
  }
}
.site-message--show.woocommerce-page.woocommerce-demo-store, .site-message--show.page-template-page-shop.woocommerce-demo-store {
  margin-top: 0;
}

/*------------------------------------*\
    Global Site Footer
\*------------------------------------*/
.global-footer {
  padding: 3% 5%;
  font-weight: 700;
  font-size: 85%;
  text-align: center;
}
.global-footer.main-footer {
  background-image: url("../images/waddesdon-footer.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
}

.pre-footer-thankyou {
  background-image: url("../images/waddesdon-footer.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 3% 5%;
  margin-top: 2%;
}

@media only screen and (min-width: 1200px) {
  .pre-footer-thankyou {
    min-height: 250px;
  }
}
.pre-footer-thankyou__thank-you-label {
  font-size: 110%;
  font-weight: 300;
  margin: 0;
}

@media only screen and (min-width: 1200px) {
  .pre-footer-thankyou .global-footer__logo {
    max-width: 300px !important;
  }

  .pre-footer-thankyou__thank-you-label {
    font-size: 180%;
    text-align: right;
    float: right;
    padding: 3% 0;
    max-width: 500px;
  }
}
.global-footer .lhs, .global-footer .rhs, .pre-footer-thankyou .lhs, .pre-footer-thankyou .rhs {
  text-align: center;
}

@media only screen and (min-width: 1200px) {
  .global-footer .lhs, .pre-footer-thankyou .lhs {
    text-align: left;
  }
  .global-footer .rhs, .pre-footer-thankyou .rhs {
    text-align: right;
  }
}
.global-footer__logo {
  padding: 0;
  max-width: 200px !important;
}

@media only screen and (min-width: 1200px) {
  .global-footer__logo {
    padding: 10px 0 30px;
  }
}
.global-footer__address {
  font-size: 120%;
  color: #C9EAEC;
  margin: 60px 10px 30px;
  display: block;
  letter-spacing: 1px;
}

.global-footer__nav-label, .global-footer__newsletter-link {
  color: #7ed0e2;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.global-footer__newsletter-link li {
  list-style: none;
  font-size: 125%;
}

.global-footer-nav__link-item {
  color: #FFFFFF;
}
.global-footer-nav__link-item:hover {
  color: #299EB7;
}

.global-footer-nav-other-sites {
  text-transform: uppercase;
  line-height: 200%;
}

.global-footer-nav-main li a {
  padding: 10px;
}

.global-footer-nav-primary {
  font-size: 110%;
  margin-bottom: 10px;
}

.global-footer-nav-social .global-footer-nav__link-item a {
  color: #06395D;
  font-size: 20px;
  background: white;
  border-radius: 50px;
  display: block;
  width: 32px;
  text-align: center;
  height: 32px;
  line-height: 20px;
}
.global-footer-nav-social .global-footer-nav__link-item a i {
  line-height: 32px;
}

.global-footer-bottom-row .goog-te-gadget {
  color: #FFFFFF;
}
.global-footer-bottom-row .goog-logo-link {
  color: #FFFFFF !important;
}
.global-footer-bottom-row .global-footer-vat-charity {
  display: block;
}

.global-footer-google-translate {
  color: #ccc;
  margin-bottom: 10px;
}
.global-footer-google-translate span {
  margin: 0 10px;
}
.global-footer-google-translate .goog-te-combo {
  display: block;
  margin: 0px auto;
  background: white;
}

.goog-te-gadget .goog-te-combo {
  margin: 0 auto 10px auto !important;
}

@media only screen and (min-width: 1200px) {
  .global-footer-google-translate {
    display: inline;
    margin-right: 20px;
  }
}
.global-footer__substrakt-link {
  font-size: 80%;
  opacity: 0.8;
}

/**********************************************************************************************************************************************************
***  What's on
**********************************************************************************************************************************************************/
.events-wrap {
  max-width: 2000px;
  margin: 0px auto;
  padding: 0 5%;
}

.events-wrap .el__link {
  display: block;
}

/**
	Event filter section
**/
.events-filter {
  padding: 8%;
}

.events-filter__section-label {
  font-size: 80%;
  font-weight: bold;
  opacity: 0.6;
  margin: 10px 0;
}

.events-filter__divider {
  background: rgba(0, 0, 0, 0.1);
  margin: 25px 0;
}

@media only screen and (min-width: 1023px) {
  .events-filter__section-marker {
    margin: 20px 0 0;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.events-filter__categories {
  margin-bottom: 0;
}

.events-filter__categories li.active a {
  font-weight: bold;
}

/**********************************************************************************************************************************************************
***  Calendar
**********************************************************************************************************************************************************/
.events-filter__calendar {
  width: 100%;
  font-size: 80%;
}

.events-filter__calendar td {
  padding: 4px 0;
  text-align: center;
}

.events-filter__calendar a {
  display: block;
}
.events-filter__calendar a:hover {
  background: #FFFFFF;
  border-radius: 3px;
}
.events-filter__calendar a.ui-state-active {
  background: #299EB7;
  color: #FFFFFF;
  border-radius: 3px;
}

.events-filter__calendar table {
  table-layout: fixed;
  width: 100%;
}

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

.events-filter__calendar .ui-datepicker-title {
  font-size: 110%;
  text-align: center;
}
.events-filter__calendar .ui-datepicker-title select {
  margin: 0 5px;
}
.events-filter__calendar .ui-datepicker-title .select2-container {
  min-width: 100px;
}
.events-filter__calendar .ui-datepicker-title .select2-selection--single {
  padding-right: 25px;
}
.events-filter__calendar .ui-datepicker-title .select2-selection__clear {
  margin-right: 5px;
  margin-left: 5px;
  float: left;
}

.events-filter__calendar .ui-datepicker-current {
  background-color: #FFFFFF;
  border: 1px solid #aaa;
  border-radius: 4px;
  font-size: 110%;
  padding: 5px 15px 1px 15px;
}

.event-filter-status {
  margin: 15px 0;
  font-size: 150%;
}

.event-filter-status__label {
  margin: 0 20px 0 0;
}

@media only screen and (min-width: 1023px) {
  .event-filter-status__label {
    font-size: 130%;
  }
}
.events-filter__search-field-wrap {
  position: relative;
}

.events-filter__search-field-wrap i.fa-search {
  position: absolute;
  right: 14px;
  top: 14px;
  color: #afb9c4;
}

.events-filter__search-field {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  font-size: 90%;
  padding: 10px 15px;
  width: 75%;
  max-width: 340px;
}
.events-filter__search-field:focus {
  outline: none;
  border: 1px solid #299EB7;
  box-shadow: 0 2px 1px rgba(255, 255, 255, 0.3);
  background: white;
}

.events-filter__submit {
  height: 40px;
  top: 1px;
  position: relative;
}

@media only screen and (min-width: 1023px) {
  .events-filter__submit {
    display: none;
  }

  .events-filter__search-field {
    width: 100%;
    max-width: none;
  }

  .events-filter__search-field-wrap {
    width: 100%;
  }
}
/**
	Event Filter Mobile
**/
.events-filter--mobile {
  margin-top: 85px;
  padding: 10px 15px;
}

/**
	Event Filter Mobile Tabs
**/
.tabs-menu {
  margin: 0;
}

.tabs-menu li a {
  font-size: 80%;
  font-weight: bold;
  margin-right: 20px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.tabs-menu li.current {
  position: relative;
  z-index: 5;
}

.tabs-menu li.current a {
  background: #FFFFFF;
}

.tab-content {
  margin-top: 10px;
  padding: 15px 20px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: none;
  background: rgba(255, 255, 255, 0.3);
}
.tab-content.show {
  display: block;
}

/**
	Event Highlights
**/
.highlight-events .el {
  padding: 5%;
  margin-bottom: 5%;
}
.highlight-events .el .event__link {
  display: block;
}

@media only screen and (min-width: 1023px) {
  .highlight-events .el {
    padding: 2%;
    margin-bottom: 2%;
  }
  .highlight-events .el .el__fig {
    float: left;
    max-width: 40%;
    margin-right: 5%;
    margin-bottom: 0;
  }
  .highlight-events .el .el__info {
    overflow: hidden;
  }
}
/**
	Event Main Grid
**/
.grid-events .el {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0;
  padding: 5% 0;
}
@media only screen and (min-width: 1023px) {
  .grid-events .el {
    border: none;
    margin-bottom: 5%;
  }
}
.grid-events .el .el__info {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 auto;
}
.grid-events .el .el__info .el__info__heading {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media only screen and (min-width: 1023px) {
  .grid-events .el .el__info .el__info__heading {
    min-height: 60px;
  }
}
.grid-events .el .el__info .el__info__heading .el__heading {
  font-size: 125%;
  font-weight: 700;
  margin-bottom: 10px !important;
}
@media only screen and (min-width: 767px) and (max-width: 1022px) {
  .grid-events .el .el__info .el__info__heading .el__heading {
    font-size: 200%;
    margin-bottom: 30px !important;
  }
}
.grid-events .el .el__info .el__info__heading .el__subheading, .grid-events .el .el__info .el__info__heading .e-date, .grid-events .el .el__info .el__info__heading .e-data {
  font-size: 100%;
  margin-bottom: 0 !important;
}
.grid-events .el .el__info .el__info__heading .el__subheading :nth-child(2), .grid-events .el .el__info .el__info__heading .e-date :nth-child(2), .grid-events .el .el__info .el__info__heading .e-data :nth-child(2) {
  font-weight: 400;
  opacity: 0.7;
}
@media only screen and (min-width: 767px) and (max-width: 1022px) {
  .grid-events .el .el__info .el__info__heading .el__subheading, .grid-events .el .el__info .el__info__heading .e-date, .grid-events .el .el__info .el__info__heading .e-data {
    font-size: 130%;
  }
}
@media only screen and (min-width: 1023px) {
  .grid-events .el .el__info .el__info__heading .el__subheading, .grid-events .el .el__info .el__info__heading .e-date, .grid-events .el .el__info .el__info__heading .e-data {
    font-size: 100%;
  }
}
.grid-events .el .el__info .el__info__cta {
  padding-top: 10px;
}
.grid-events .el .el__info .el__info__cta .el__cta {
  display: inline-block;
  margin-left: 0 !important;
  font-size: 100%;
  margin: 10px 10px 10px 0;
}
@media only screen and (min-width: 767px) and (max-width: 1022px) {
  .grid-events .el .el__info .el__info__cta .el__cta {
    font-size: 160%;
  }
}
.grid-events .el .el__info .el__info__cta .el__cta.btn, .grid-events .el .el__info .el__info__cta .c-password-protected input.el__cta[type=submit], .c-password-protected .grid-events .el .el__info .el__info__cta input.el__cta[type=submit], .grid-events .el .el__info .el__info__cta .search-controls button.el__cta, .search-controls .grid-events .el .el__info .el__info__cta button.el__cta, .grid-events .el .el__info .el__info__cta #mc_embed_signup #mc-embedded-subscribe-form .el__cta#mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .grid-events .el .el__info .el__info__cta .el__cta#mc-embedded-subscribe, .grid-events .el .el__info .el__info__cta .single-product .el__cta.single_add_to_cart_button, .single-product .grid-events .el .el__info .el__info__cta .el__cta.single_add_to_cart_button, .grid-events .el .el__info .el__info__cta .woocommerce .el__cta.button, .woocommerce .grid-events .el .el__info .el__info__cta .el__cta.button, .grid-events .el .el__info .el__info__cta .shop-wrap .el__cta.button.alt, .shop-wrap .grid-events .el .el__info .el__info__cta .el__cta.button.alt {
  float: right;
  font-size: 85%;
  margin: 0 20px 0;
  padding-top: 0;
}
@media only screen and (min-width: 767px) and (max-width: 1022px) {
  .grid-events .el .el__info .el__info__cta .el__cta.btn, .grid-events .el .el__info .el__info__cta .c-password-protected input.el__cta[type=submit], .c-password-protected .grid-events .el .el__info .el__info__cta input.el__cta[type=submit], .grid-events .el .el__info .el__info__cta .search-controls button.el__cta, .search-controls .grid-events .el .el__info .el__info__cta button.el__cta, .grid-events .el .el__info .el__info__cta #mc_embed_signup #mc-embedded-subscribe-form .el__cta#mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .grid-events .el .el__info .el__info__cta .el__cta#mc-embedded-subscribe, .grid-events .el .el__info .el__info__cta .single-product .el__cta.single_add_to_cart_button, .single-product .grid-events .el .el__info .el__info__cta .el__cta.single_add_to_cart_button, .grid-events .el .el__info .el__info__cta .woocommerce .el__cta.button, .woocommerce .grid-events .el .el__info .el__info__cta .el__cta.button, .grid-events .el .el__info .el__info__cta .shop-wrap .el__cta.button.alt, .shop-wrap .grid-events .el .el__info .el__info__cta .el__cta.button.alt {
    font-size: 120%;
  }
}
.grid-events .el .e-data--soldout, .grid-events .el .e-data--cancelled {
  font-weight: bold;
  font-size: 100%;
  color: #F99E2F;
  float: right;
}
.grid-events .el .el__link {
  max-width: 100%;
  height: 100%;
  margin-bottom: 0;
}
.grid-events .el .el__info {
  overflow: hidden;
}
.grid-events .el p {
  margin-bottom: 0px !important;
}
.grid-events .el h4, .grid-events .el .delta, .grid-events .el .flush-bottom {
  font-size: 200%;
}

/**********************************************************************************************************************************************************
***  Single Event Masthead
**********************************************************************************************************************************************************/
.e-masthead-wrap {
  padding-top: 2%;
  padding-bottom: 2%;
  margin-bottom: 2%;
}

.e-masthead {
  position: relative;
  z-index: 1;
}

.e-masthead .e-data {
  display: block;
}
.e-masthead .e-data p {
  margin: 0;
}

.price-table {
  width: auto;
}
.price-table tr {
  border-bottom: 1px solid rgba(71, 83, 96, 0.05);
}
.price-table td {
  padding: 5px 25px 3px 0px;
  vertical-align: bottom;
}
.price-table td:first-of-type {
  font-weight: bold;
}

.e-masthead .e-meta-box {
  margin: 5% 0 0 0;
  padding: 3%;
  background: rgba(255, 255, 255, 0.8);
  color: #06395D;
  font-size: 85%;
}

.e-masthead .e-heading {
  margin: 3% 0 0 0;
  font-size: 120%;
}
@media only screen and (min-width: 1023px) {
  .e-masthead .e-heading {
    font-size: 150%;
  }
}

@media only screen and (max-width: 1022px) {
  .e-data {
    font-size: 80%;
  }
}

.e-masthead .e-date {
  margin: 5% 0 2% 0;
}

.e-masthead .btn--book {
  display: inline-block;
  font-size: 120%;
  margin: 10px 0;
}

.e-data--soldout, .e-data--cancelled {
  font-weight: bold;
  font-size: 140%;
  color: #F99E2F;
}

@media only screen and (min-width: 1023px) {
  .event-masthead .grid {
    display: flex;
    align-items: center;
  }
}
/*------------------------------------*\
    SHOP-LISTING.SCSS
\*------------------------------------*/
@media only screen and (min-width: 1023px) {
  .shop-page .el--linkblock {
    margin-bottom: 2px;
  }
  .shop-page .el--linkblock .fig {
    margin-bottom: 0;
  }
}
.shop-page .el--linkblock {
  border-left: 2px solid #ffffff;
}
.shop-page .el--linkblock h3 {
  background: none !important;
  font-family: "BrandonText", sans-serif !important;
  font-size: 2em !important;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (min-width: 1023px) {
  .shop-page .el--linkblock h3 {
    font-size: 2.5em !important;
    padding: 40px !important;
  }
}
.shop-page .el--quote {
  border: 2px solid #EAEEF3;
  margin-bottom: 0;
  padding: 30px 5%;
  text-align: center;
}
.shop-page .el--quote p {
  color: #475360;
  font-family: "BrandonText";
}
.shop-page .el--quote cite {
  color: #299EB7;
}
.shop-page .el--quote blockquote:before, .shop-page .el--quote blockquote:after, .shop-page .el--quote cite:before, .shop-page .el--quote cite:after {
  display: none;
}
.shop-page .el--related {
  margin-bottom: 5px;
}
.shop-page .el--related .el--block {
  background-size: cover;
  background-repeat: no-repeat;
  border: none;
  color: #FFFFFF;
  font-family: "BrandonText";
  font-weight: 700;
  margin-bottom: 0;
  padding: 30px;
  position: relative;
  text-align: left;
}
.shop-page .el--related .el--block:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 250px;
  z-index: -1;
  background: rgba(16, 16, 16, 0);
  /* Old browsers */
  background: -moz-linear-gradient(top, rgba(16, 16, 16, 0) 0%, #101010 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(16, 16, 16, 0)), color-stop(100%, #101010));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(16, 16, 16, 0) 0%, #101010 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(16, 16, 16, 0) 0%, #101010 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(16, 16, 16, 0) 0%, #101010 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(16, 16, 16, 0) 0%, #101010 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  height: 60%;
  top: auto;
  bottom: 0;
  z-index: 1;
}
.shop-page .el--related .el--block a, .shop-page .el--related .el--block .desc, .shop-page .el--related .el--block h1, .shop-page .el--related .el--block span {
  position: relative;
  z-index: 2;
}
.shop-page .el--related .el--block h1 {
  font-size: 1.5rem;
}
.shop-page .el--related .el--block a {
  border-bottom: 0;
  text-transform: uppercase;
}
.shop-page .el--related .el--block .desc {
  margin-bottom: 20px;
}
.shop-page .el--related .el--block span {
  font-size: 0.8em;
  text-transform: uppercase;
}
.shop-page .el--video {
  margin-bottom: 20px;
  text-align: center;
}
.shop-page .el--video h3 {
  font-size: 1.2em;
  font-family: "BrandonText", sans-serif;
}
.shop-page .image .el--text {
  font-family: "BrandonText", sans-serif;
}
.shop-page .image .el--text a {
  border-bottom: 0;
  color: #EAEEF3;
  font-family: "BrandonText", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

@media only screen and (min-width: 1023px) {
  .shop-page .el--related .el--block h1 {
    font-size: 2.4rem;
    margin-top: 2em !important;
  }
  .shop-page .el--related .el--block .desc {
    font-size: 120%;
    margin-bottom: 40px;
  }
  .shop-page .el--related .el--block span {
    font-size: 1em;
  }
  .shop-page .el--video {
    margin-bottom: 0;
    text-align: left;
  }
  .shop-page .el--video h3 {
    font-size: 1.5rem;
  }
}
.shop-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}
.shop-carousel .owl-wrapper-outer .owl-item .el--text {
  text-align: center;
}
.shop-carousel .owl-wrapper-outer .owl-item .el--text h1 {
  margin: 0 0 10px 0;
}

@media only screen and (min-width: 1023px) {
  .shop-carousel .item.grad-dark:before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 250px;
    z-index: -1;
    background: rgba(16, 16, 16, 0);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(16, 16, 16, 0) 0%, #101010 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(16, 16, 16, 0)), color-stop(100%, #101010));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(16, 16, 16, 0) 0%, #101010 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(16, 16, 16, 0) 0%, #101010 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(16, 16, 16, 0) 0%, #101010 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, rgba(16, 16, 16, 0) 0%, #101010 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
    /* IE6-9 */
    height: 40%;
    top: auto;
    bottom: 0;
    z-index: 1;
  }

  .shop-carousel .item.grad-light:before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 250px;
    z-index: -1;
    background: rgba(255, 255, 255, 0);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, white));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
    /* IE6-9 */
    height: 40%;
    top: auto;
    bottom: 0;
    z-index: 1;
  }
  .shop-carousel .item.grad-light .h-row__lead-p {
    color: #06395D;
  }

  .shop-carousel .owl-item .h-row {
    text-align: center;
  }
  .shop-carousel .owl-item .h-row .el--text {
    background: RGBA(6, 57, 93, 0.6);
    color: #FFFFFF;
    padding: 30px;
    position: absolute;
    top: 30vh;
    width: 1000px;
  }
  .shop-carousel .owl-item .h-row .el--text span {
    display: inline-block;
    font-size: 0.8em;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  .shop-carousel .owl-item .h-row .el--text h1 {
    margin-top: 0;
    margin-bottom: 10px;
  }
}
.shop-carousel .item .img {
  height: 260px;
  min-height: 260px;
  display: block;
  width: 100%;
  height: auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 1023px) {
  .shop-carousel .item .img {
    min-height: 550px;
    height: 90vh;
  }
}

.shop-carousel .owl-controls {
  display: none !important;
}
@media only screen and (min-width: 1023px) {
  .shop-carousel .owl-controls {
    bottom: 50%;
    display: block !important;
    position: absolute;
    width: 100%;
    z-index: 5;
  }
  .shop-carousel .owl-controls .owl-buttons {
    position: relative;
    width: 100%;
  }
  .shop-carousel .owl-controls .owl-buttons div {
    background: none;
    font-size: 5em;
  }
  .shop-carousel .owl-controls .owl-buttons .owl-next, .shop-carousel .owl-controls .owl-buttons .owl-right {
    opacity: 1 !important;
  }
  .shop-carousel .owl-controls .owl-buttons .owl-next {
    float: right;
  }
  .shop-carousel .owl-controls .owl-buttons .owl-prev {
    float: left;
  }
}

.newsletter-signup {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 100%;
}
@media only screen and (min-width: 1023px) {
  .newsletter-signup {
    margin-top: 2%;
  }
}
.newsletter-signup .txt-block {
  background: RGBA(6, 57, 93, 0.6);
  padding: 50px 3%;
  text-align: center;
}
.newsletter-signup .txt-block p {
  color: #FFFFFF;
  display: block;
  font-size: 1em;
}
@media only screen and (min-width: 1023px) {
  .newsletter-signup .txt-block p {
    font-size: 1.4em;
  }
}
.newsletter-signup a {
  margin-top: 20px;
  text-transform: uppercase;
}
.newsletter-signup form {
  margin-top: 30px;
}
.newsletter-signup form input.email {
  border: none;
  border-radius: 3px;
  margin-bottom: 10px;
  padding: 10px;
  width: 233px;
}

/***  for shop listing (archive-product.php)  ***/
.demo_store {
  display: none;
}

.page-template-page-shop.woocommerce-demo-store .demo_store,
.woocommerce.woocommerce-demo-store .demo_store {
  display: block;
  background: #F99E2F;
}
.page-template-page-shop.woocommerce-demo-store .global-header,
.woocommerce.woocommerce-demo-store .global-header {
  top: 54px;
}
.page-template-page-shop.woocommerce-demo-store .site-wrap,
.woocommerce.woocommerce-demo-store .site-wrap {
  margin-top: 135px;
}
@media only screen and (min-width: 767px) {
  .page-template-page-shop.woocommerce-demo-store .global-header,
.woocommerce.woocommerce-demo-store .global-header {
    top: 30px;
  }
  .page-template-page-shop.woocommerce-demo-store .site-wrap,
.woocommerce.woocommerce-demo-store .site-wrap {
    margin-top: 115px;
  }
}
@media only screen and (min-width: 1023px) {
  .page-template-page-shop.woocommerce-demo-store,
.woocommerce.woocommerce-demo-store {
    padding-top: 30px;
  }
  .page-template-page-shop.woocommerce-demo-store .site-wrap,
.woocommerce.woocommerce-demo-store .site-wrap {
    margin-top: 0;
  }
}

p.demo_store {
  padding: 0.25em 10px;
  font-weight: bold;
  font-size: 85%;
  min-height: 54px;
}
@media only screen and (min-width: 767px) {
  p.demo_store {
    min-height: 30px;
  }
}
@media only screen and (min-width: 1023px) {
  p.demo_store {
    font-size: 90%;
    min-height: auto;
  }
}

.intro-block {
  padding: 30px 0 0 0;
  text-align: center;
}
.intro-block h1 {
  font-weight: 500;
}

.shop-wrap {
  padding: 1% 0 !important;
  margin: 0px auto;
  font-family: "BrandonText", sans-serif;
}
.shop-wrap .el--block {
  border-bottom: 2px solid #FFFFFF;
  font-family: "BrandonText", sans-serif;
  padding-bottom: 30px;
  text-align: center;
}
.shop-wrap .el--block:nth-child(even) {
  border-left: 1px solid #FFFFFF;
}
.shop-wrap .el--block .fig {
  position: relative;
}
.shop-wrap .el--block .el__heading {
  font-family: "BrandonText", sans-serif;
  font-size: 200%;
  color: #299EB7;
  position: relative;
  margin-bottom: 20px;
}
.shop-wrap .el--block .el__intro {
  font-size: 90%;
  padding: 0 5%;
}
.shop-wrap .el--block .el__intro a {
  border: none;
  color: #F99E2F;
  font-size: 0.8em;
  text-transform: uppercase;
}
.shop-wrap .el--block .el__intro .btn, .shop-wrap .el--block .el__intro .c-password-protected input[type=submit], .c-password-protected .shop-wrap .el--block .el__intro input[type=submit], .shop-wrap .el--block .el__intro .search-controls button, .search-controls .shop-wrap .el--block .el__intro button, .shop-wrap .el--block .el__intro #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .shop-wrap .el--block .el__intro #mc-embedded-subscribe, .shop-wrap .el--block .el__intro .single-product .single_add_to_cart_button, .single-product .shop-wrap .el--block .el__intro .single_add_to_cart_button, .woocommerce .shop-wrap .el--block .el__intro .button, .shop-wrap .el--block .el__intro .woocommerce .button, .shop-wrap .el--block .el__intro .button.alt {
  color: #FFFFFF;
}
.shop-wrap .row-title {
  color: #786868;
  font-family: "BrandonText", sans-serif;
  font-size: 0.9em;
  font-weight: 600;
  margin: 30px 0;
  text-align: center;
  text-transform: uppercase;
}
.woocommerce .shop-masthead {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  height: 15vw;
}

.woocommerce.single-product .shop-masthead {
  height: 10vw;
}

.single-product .summary, .single-product .product-short-description {
  font-family: "BrandonText", sans-serif;
}

.woocommerce .shop-wrap .button, .woocommerce .btn, .woocommerce .c-password-protected input[type=submit], .c-password-protected .woocommerce input[type=submit], .woocommerce .search-controls button, .search-controls .woocommerce button, .woocommerce #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .woocommerce #mc-embedded-subscribe, .woocommerce .single-product .single_add_to_cart_button, .single-product .woocommerce .single_add_to_cart_button, .woocommerce .button, .shop-wrap .button.alt, .woocommerce a.button {
  background: #F99E2F;
  font-family: "BrandonText";
  color: #FFFFFF;
}
.woocommerce .shop-wrap .button:hover, .woocommerce .btn:hover, .woocommerce .c-password-protected input[type=submit]:hover, .c-password-protected .woocommerce input[type=submit]:hover, .woocommerce .search-controls button:hover, .search-controls .woocommerce button:hover, .woocommerce #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:hover, #mc_embed_signup #mc-embedded-subscribe-form .woocommerce #mc-embedded-subscribe:hover, .woocommerce .single-product .single_add_to_cart_button:hover, .single-product .woocommerce .single_add_to_cart_button:hover, .woocommerce .button:hover, .shop-wrap .button.alt:hover, .woocommerce a.button:hover {
  background: inherit;
}

.shop-header .btn--book {
  max-width: 150px;
}
@media only screen and (min-width: 1023px) {
  .shop-header .btn--book {
    max-width: 310px;
  }
}

.cart-contents .items {
  display: none;
}
.cart-contents .woocommerce-Price-amount {
  display: none;
}
@media only screen and (min-width: 767px) {
  .cart-contents .items {
    display: inline;
  }
  .cart-contents .woocommerce-Price-amount {
    display: inline;
  }
}

.products.featured-products .product, .products.featured-products li.product {
  width: 100% !important;
  font-family: "BrandonText", sans-serif;
}

.shop .txt-block h2 {
  font-size: 140%;
  line-height: 1.2em;
}

.shop-wrap .products .product, .shop-wrap .products li.product,
.woocommerce .shop-wrap .products .product,
.woocommerce .shop-wrap .products li.product,
.woocommerce[class*=columns-] .products .product,
.woocommerce[class*=columns-] .products li.product,
.shop-wrap .woocommerce .products .product,
.shop-wrap .woocommerce .products li.product,
.cross-sells ul.products .product,
.cross-sells ul.products li.product {
  display: inline-block;
  width: 50%;
  margin: 0;
  padding: 2%;
  -webkit-box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.3);
  clear: none;
  min-height: 300px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.shop-wrap .products .product:hover, .shop-wrap .products li.product:hover,
.woocommerce .shop-wrap .products .product:hover,
.woocommerce .shop-wrap .products li.product:hover,
.woocommerce[class*=columns-] .products .product:hover,
.woocommerce[class*=columns-] .products li.product:hover,
.shop-wrap .woocommerce .products .product:hover,
.shop-wrap .woocommerce .products li.product:hover,
.cross-sells ul.products .product:hover,
.cross-sells ul.products li.product:hover {
  transform: translateY(-10px);
}
@media only screen and (min-width: 1023px) {
  .shop-wrap .products .product, .shop-wrap .products li.product,
.woocommerce .shop-wrap .products .product,
.woocommerce .shop-wrap .products li.product,
.woocommerce[class*=columns-] .products .product,
.woocommerce[class*=columns-] .products li.product,
.shop-wrap .woocommerce .products .product,
.shop-wrap .woocommerce .products li.product,
.cross-sells ul.products .product,
.cross-sells ul.products li.product {
    width: 33.3333333%;
    min-height: 420px;
  }
}
.shop-wrap .products .product h3, .shop-wrap .products li.product h3,
.woocommerce .shop-wrap .products .product h3,
.woocommerce .shop-wrap .products li.product h3,
.woocommerce[class*=columns-] .products .product h3,
.woocommerce[class*=columns-] .products li.product h3,
.shop-wrap .woocommerce .products .product h3,
.shop-wrap .woocommerce .products li.product h3,
.cross-sells ul.products .product h3,
.cross-sells ul.products li.product h3 {
  font-size: 85%;
}
@media only screen and (min-width: 1023px) {
  .shop-wrap .products .product h3, .shop-wrap .products li.product h3,
.woocommerce .shop-wrap .products .product h3,
.woocommerce .shop-wrap .products li.product h3,
.woocommerce[class*=columns-] .products .product h3,
.woocommerce[class*=columns-] .products li.product h3,
.shop-wrap .woocommerce .products .product h3,
.shop-wrap .woocommerce .products li.product h3,
.cross-sells ul.products .product h3,
.cross-sells ul.products li.product h3 {
    font-size: 130%;
  }
}
.shop-wrap .products .product .product-thumbnail, .shop-wrap .products li.product .product-thumbnail,
.woocommerce .shop-wrap .products .product .product-thumbnail,
.woocommerce .shop-wrap .products li.product .product-thumbnail,
.woocommerce[class*=columns-] .products .product .product-thumbnail,
.woocommerce[class*=columns-] .products li.product .product-thumbnail,
.shop-wrap .woocommerce .products .product .product-thumbnail,
.shop-wrap .woocommerce .products li.product .product-thumbnail,
.cross-sells ul.products .product .product-thumbnail,
.cross-sells ul.products li.product .product-thumbnail {
  display: block;
  padding: 5px;
  min-height: 100px;
}
.shop-wrap .products .product .product-thumbnail img, .shop-wrap .products li.product .product-thumbnail img,
.woocommerce .shop-wrap .products .product .product-thumbnail img,
.woocommerce .shop-wrap .products li.product .product-thumbnail img,
.woocommerce[class*=columns-] .products .product .product-thumbnail img,
.woocommerce[class*=columns-] .products li.product .product-thumbnail img,
.shop-wrap .woocommerce .products .product .product-thumbnail img,
.shop-wrap .woocommerce .products li.product .product-thumbnail img,
.cross-sells ul.products .product .product-thumbnail img,
.cross-sells ul.products li.product .product-thumbnail img {
  height: 150px;
  max-height: 250px;
  max-width: 100%;
  width: auto;
  margin: 0px auto;
}
@media only screen and (min-width: 1023px) {
  .shop-wrap .products .product .product-thumbnail img, .shop-wrap .products li.product .product-thumbnail img,
.woocommerce .shop-wrap .products .product .product-thumbnail img,
.woocommerce .shop-wrap .products li.product .product-thumbnail img,
.woocommerce[class*=columns-] .products .product .product-thumbnail img,
.woocommerce[class*=columns-] .products li.product .product-thumbnail img,
.shop-wrap .woocommerce .products .product .product-thumbnail img,
.shop-wrap .woocommerce .products li.product .product-thumbnail img,
.cross-sells ul.products .product .product-thumbnail img,
.cross-sells ul.products li.product .product-thumbnail img {
    height: auto;
  }
}
.shop-wrap .products .product .price, .shop-wrap .products li.product .price,
.woocommerce .shop-wrap .products .product .price,
.woocommerce .shop-wrap .products li.product .price,
.woocommerce[class*=columns-] .products .product .price,
.woocommerce[class*=columns-] .products li.product .price,
.shop-wrap .woocommerce .products .product .price,
.shop-wrap .woocommerce .products li.product .price,
.cross-sells ul.products .product .price,
.cross-sells ul.products li.product .price {
  color: #475360;
  font-weight: bold;
  font-size: 110%;
}
.shop-wrap .products .product .price del, .shop-wrap .products li.product .price del,
.woocommerce .shop-wrap .products .product .price del,
.woocommerce .shop-wrap .products li.product .price del,
.woocommerce[class*=columns-] .products .product .price del,
.woocommerce[class*=columns-] .products li.product .price del,
.shop-wrap .woocommerce .products .product .price del,
.shop-wrap .woocommerce .products li.product .price del,
.cross-sells ul.products .product .price del,
.cross-sells ul.products li.product .price del {
  opacity: 0.6;
  display: inline;
  font-size: 80%;
}
.shop-wrap .products .product .price ins, .shop-wrap .products li.product .price ins,
.woocommerce .shop-wrap .products .product .price ins,
.woocommerce .shop-wrap .products li.product .price ins,
.woocommerce[class*=columns-] .products .product .price ins,
.woocommerce[class*=columns-] .products li.product .price ins,
.shop-wrap .woocommerce .products .product .price ins,
.shop-wrap .woocommerce .products li.product .price ins,
.cross-sells ul.products .product .price ins,
.cross-sells ul.products li.product .price ins {
  border: none;
}
.shop-wrap .products .product .add_to_cart_button, .shop-wrap .products li.product .add_to_cart_button,
.woocommerce .shop-wrap .products .product .add_to_cart_button,
.woocommerce .shop-wrap .products li.product .add_to_cart_button,
.woocommerce[class*=columns-] .products .product .add_to_cart_button,
.woocommerce[class*=columns-] .products li.product .add_to_cart_button,
.shop-wrap .woocommerce .products .product .add_to_cart_button,
.shop-wrap .woocommerce .products li.product .add_to_cart_button,
.cross-sells ul.products .product .add_to_cart_button,
.cross-sells ul.products li.product .add_to_cart_button {
  display: inline-block;
  background: none !important;
  color: #299EB7 !important;
  font-family: "BrandonText", sans-serif;
  float: right;
  position: relative;
  padding: 0;
}
@media only screen and (min-width: 1200px) {
  .shop-wrap .products .product .add_to_cart_button, .shop-wrap .products li.product .add_to_cart_button,
.woocommerce .shop-wrap .products .product .add_to_cart_button,
.woocommerce .shop-wrap .products li.product .add_to_cart_button,
.woocommerce[class*=columns-] .products .product .add_to_cart_button,
.woocommerce[class*=columns-] .products li.product .add_to_cart_button,
.shop-wrap .woocommerce .products .product .add_to_cart_button,
.shop-wrap .woocommerce .products li.product .add_to_cart_button,
.cross-sells ul.products .product .add_to_cart_button,
.cross-sells ul.products li.product .add_to_cart_button {
    margin-top: -40px;
  }
}
.shop-wrap .products .product .product-description-overlay, .shop-wrap .products li.product .product-description-overlay,
.woocommerce .shop-wrap .products .product .product-description-overlay,
.woocommerce .shop-wrap .products li.product .product-description-overlay,
.woocommerce[class*=columns-] .products .product .product-description-overlay,
.woocommerce[class*=columns-] .products li.product .product-description-overlay,
.shop-wrap .woocommerce .products .product .product-description-overlay,
.shop-wrap .woocommerce .products li.product .product-description-overlay,
.cross-sells ul.products .product .product-description-overlay,
.cross-sells ul.products li.product .product-description-overlay {
  display: none;
}

.search-results .content-wrap ul.products {
  margin: 0;
  width: 100%;
}
.search-results .content-wrap ul.products .product {
  text-align: center;
  width: 100%;
}
@media only screen and (min-width: 767px) and (max-width: 1022px) {
  .search-results .content-wrap ul.products .product {
    text-align: left;
    width: 49%;
  }
}
@media only screen and (min-width: 1023px) {
  .search-results .content-wrap ul.products .product {
    text-align: left;
    width: 33%;
  }
}
.search-results .content-wrap ul.products .product h2.woocommerce-loop-product__title {
  font-size: 1.4em;
}
.search-results .content-wrap ul.products .product a.add_to_cart_button {
  float: none;
  margin-top: 0;
}
@media only screen and (min-width: 1023px) {
  .search-results .content-wrap ul.products .product a.add_to_cart_button {
    float: right;
  }
}
.search-results .content-wrap ul.products .product img {
  height: auto;
}

.woocommerce[class*=columns-] .products .product, .woocommerce[class*=columns-] .products li.product, .shop-wrap .products .product, .shop-wrap .products li.product {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.shop-hero-wrap {
  display: block;
}
.shop-hero-wrap .masthead-hero--title-overlay {
  position: relative;
}
.shop-hero-wrap .masthead-hero--title-overlay .h-row {
  position: static;
}
.shop-hero-wrap .masthead-hero--title-overlay .h-row__lead-p {
  font-family: "freight-text-pro", serif;
  max-width: 800px;
}

.woocommerce .page-title {
  font-family: "BrandonText", sans-serif;
  font-weight: 400;
  font-size: 200%;
  color: #299EB7;
}

.woocommerce .shop-wrap .products .product-category {
  height: auto;
  border: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  width: 100% !important;
  margin: 0;
  padding: 1%;
}
@media only screen and (min-width: 1023px) and (max-width: 1199px) {
  .woocommerce .shop-wrap .products .product-category {
    width: 50% !important;
  }
}
@media only screen and (min-width: 1200px) {
  .woocommerce .shop-wrap .products .product-category {
    width: 33.33% !important;
  }
}
.woocommerce .shop-wrap .products .product-category img {
  max-height: none;
  width: 100%;
  margin: 0px auto;
  text-align: center;
}
.woocommerce .shop-wrap .products .product-category a:first-of-type {
  display: block;
  position: relative;
}
.woocommerce .shop-wrap .products .product-category a:first-of-type:before {
  z-index: 1 !important;
  bottom: 0;
  top: auto;
  height: 50% !important;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 250px;
  z-index: -1;
  background: rgba(16, 16, 16, 0);
  /* Old browsers */
  background: -moz-linear-gradient(top, rgba(16, 16, 16, 0) 0%, rgba(16, 16, 16, 0.8) 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(16, 16, 16, 0)), color-stop(100%, rgba(16, 16, 16, 0.8)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(16, 16, 16, 0) 0%, rgba(16, 16, 16, 0.8) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(16, 16, 16, 0) 0%, rgba(16, 16, 16, 0.8) 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(16, 16, 16, 0) 0%, rgba(16, 16, 16, 0.8) 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(16, 16, 16, 0) 0%, rgba(16, 16, 16, 0.8) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
}
.woocommerce .shop-wrap .products .product-category h3 {
  font-family: "BrandonText";
  font-size: 160% !important;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #FFFFFF;
  padding: 30px;
  display: block;
  z-index: 2;
}
.woocommerce .shop-wrap .products .product-category .product-category-description {
  padding: 20px 0;
  margin: 0;
}
.woocommerce .shop-wrap .products .product-category .count {
  display: none;
}
.woocommerce .shop-wrap .products .product-category .cta {
  color: #F99E2F;
  font-family: "BrandonText", sans-serif;
  font-weight: 800;
}

.woocommerce ul.products {
  width: 100%;
}
.woocommerce ul.products li {
  font-family: "BrandonText";
}

/*** Shop filters ***/
#woocommerce-product-search-field {
  line-height: 150%;
  font-size: 90%;
  position: relative;
  background-color: #FFFFFF;
  background-image: url("../images/search-icon-blue.png");
  background-repeat: no-repeat;
  background-size: 6%;
  background-position: 95%;
}

.shop-filters {
  padding: 15px 3%;
  overflow: hidden;
}
.shop-filters .woocommerce-product-search .search-field {
  border-radius: 5px;
  padding: 8px 15px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  font-weight: 800;
}
.shop-filters .woocommerce-product-search input[type=submit] {
  display: none;
}

.shop-filter {
  width: 14%;
  display: inline-block;
}
.shop-filter select {
  width: 150px;
}
.shop-filter input {
  width: 100%;
}
.shop-filter .filter-label {
  display: none;
  margin: 0;
  font-size: 90%;
}
.shop-filter a {
  color: #FFFFFF;
}

.widget_layered_nav_filters {
  clear: both;
  width: auto;
}
.widget_layered_nav_filters .filter-label {
  display: inline-block;
  font-weight: 800;
  vertical-align: top;
}
.widget_layered_nav_filters ul li.chosen {
  margin-right: 30px;
  font-size: 90%;
  float: none;
  display: inline-block;
}
@media only screen and (min-width: 1200px) {
  .widget_layered_nav_filters {
    float: right;
  }
  .widget_layered_nav_filters ul {
    display: inline-block;
  }
  .widget_layered_nav_filters ul li.chosen {
    margin-left: 30px;
    margin-right: 0;
  }
}

.woocommerce .widget_layered_nav ul li.chosen a:before, .woocommerce .widget_layered_nav_filters ul li a:after {
  line-height: 1;
  font-family: WooCommerce;
  content: "";
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  speak: none;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
  margin-left: 10px;
}

.woocommerce .widget_layered_nav ul li.chosen a:before, .woocommerce .widget_layered_nav_filters ul li a:before {
  display: none;
}

.widget_product_categories, .widget_layered_nav {
  float: right;
  margin-top: 6px;
  margin-left: 5px;
  width: auto;
}
.widget_product_categories span.select2.select2-container.select2-container--default, .widget_layered_nav span.select2.select2-container.select2-container--default {
  width: auto !important;
}
.widget_product_categories .select2-selection, .widget_layered_nav .select2-selection {
  background: none;
  margin-left: 20px;
  border: none;
  height: 35px;
  position: relative;
  color: #FFFFFF;
  font-size: 0.9rem;
}
.widget_product_categories .select2-selection a, .widget_layered_nav .select2-selection a {
  color: #FFFFFF;
}
.widget_product_categories .select2-container--default .select2-selection--single .select2-selection__rendered, .widget_layered_nav .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #999;
  text-align: left;
  line-height: 32px;
}
.widget_product_categories .select2-container--default .select2-selection--single .select2-selection__arrow b, .widget_layered_nav .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-width: 5px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
}

.shop-sidebar-mob.active .shop-filter-mobile-menu {
  display: block;
}
.shop-sidebar-mob.active .shop-filter-toggle {
  margin-bottom: 20px;
}
.shop-sidebar-mob.active .shop-filter-toggle .menu-icon:after {
  content: "";
}
.shop-sidebar-mob.active .widget_layered_nav_filters {
  display: none;
}

.shop-filter-toggle {
  cursor: pointer;
  float: right;
  margin-bottom: 0;
}
.shop-filter-toggle .fa, .shop-filter-toggle .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .shop-filter-toggle a:after, .shop-filter-toggle .c-poi-item__header-thumb-wrap:before {
  margin-left: 10px;
}
.shop-filter-toggle .menu-icon:after {
  font-family: "FontAwesome";
  content: "";
  margin-left: 10px;
}

.shop-filter-mobile-menu {
  display: none;
  clear: both;
  text-align: right;
}
.shop-filter-mobile-menu #woocommerce-product-search-field {
  margin-bottom: 10px;
}
.shop-filter-mobile-menu .shop-filters {
  margin-top: 30px;
}
.shop-filter-mobile-menu .shop-filter {
  display: block;
  width: auto;
}
.shop-filter-mobile-menu .shop-filter input {
  width: auto;
}

.woocommerce-breadcrumb {
  font-family: "BrandonText", sans-serif;
  display: block;
}

p.woocommerce-result-count {
  clear: both;
}

.woocommerce .woocommerce-result-count {
  font-family: "BrandonText", sans-serif;
  font-size: 75%;
}

@media only screen and (min-width: 1023px) {
  .woocommerce .woocommerce-result-count {
    font-size: 90%;
  }
}
.woocommerce nav.woocommerce-pagination {
  font-family: "BrandonText", sans-serif;
  display: inline-block;
  line-height: 0;
}
.woocommerce nav.woocommerce-pagination .viewall {
  display: inline-block;
  padding: 20px;
}
.woocommerce nav.woocommerce-pagination ul {
  border: 0;
  display: inline-block;
  float: right;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
  color: #475360;
}
.woocommerce nav.woocommerce-pagination ul li a {
  color: #475360;
  opacity: 0.6;
}
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: none;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: none;
  color: #06395D;
  font-weight: 800;
}
.woocommerce nav.woocommerce-pagination .next, .woocommerce nav.woocommerce-pagination .prev {
  color: #F99E2F;
  opacity: 1;
}

@media only screen and (min-width: 1023px) {
  .woocommerce nav.woocommerce-pagination {
    text-align: right;
    float: right;
  }
}
/*** Offer ***/
.woocommerce span.onsale {
  display: none;
  font-family: "BrandonText", sans-serif;
  z-index: 10;
  height: 3.236em;
  width: 3.236em;
  background-color: #299EB7;
}

/*** Cart ***/
.woocommerce-cart table.cart img {
  width: auto;
  max-width: 100px;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  font-size: 120% !important;
  float: right;
  padding: 0 15px;
}

.woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals {
  width: 100%;
  margin-top: 20px;
}

.cross-sells h2 {
  font-size: 140%;
}

.woocommerce-checkout .woocommerce .woocommerce-message {
  display: none !important;
}

.coupon {
  font-size: 65%;
}
@media only screen and (min-width: 1023px) {
  .coupon {
    font-size: 90%;
  }
}

/*** Checkout ***/
.woocommerce form .form-row.woocommerce-invalid .select2-container, .woocommerce form .form-row.woocommerce-invalid input.input-text, .woocommerce form .form-row.woocommerce-invalid select {
  border: 1px solid #a00;
}

.woocommerce form .form-row.woocommerce-validated .select2-container, .woocommerce form .form-row.woocommerce-validated input.input-text, .woocommerce form .form-row.woocommerce-validated select {
  border: 1px solid #69bf29;
}

.woocommerce .coupon #coupon_code {
  padding: 8px !important;
}

@media only screen and (min-width: 1023px) {
  .woocommerce .coupon #coupon_code {
    width: 200px;
  }
}
.page-template-page-shop .products .product, .tax-product_cat .products .product {
  text-align: center;
}
.page-template-page-shop .products .product h2.woocommerce-loop-product__title, .tax-product_cat .products .product h2.woocommerce-loop-product__title {
  font-size: 125% !important;
}
.page-template-page-shop .products .product h3, .tax-product_cat .products .product h3 {
  color: #786868;
  font-size: 130%;
  line-height: 1.5em;
}
.page-template-page-shop .products .product .price, .tax-product_cat .products .product .price {
  display: block;
}
.page-template-page-shop .products .product a.add_to_cart_button, .tax-product_cat .products .product a.add_to_cart_button {
  float: none !important;
  font-size: 70%;
  margin-top: 0 !important;
  text-transform: uppercase;
}

.tax-product_cat .masthead-hero .img {
  height: 260px;
  min-height: 260px;
  display: block;
  width: 100%;
  height: auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.tax-product_cat .masthead-hero .img {
  min-height: 300px;
}
@media only screen and (min-width: 1023px) {
  .tax-product_cat .masthead-hero .img {
    min-height: 550px;
    height: 60vh;
  }
}
.tax-product_cat .masthead-hero .h-row {
  text-align: center;
  padding: 0 5%;
}
.tax-product_cat .masthead-hero .h-row .el--text {
  background: RGBA(6, 57, 93, 0.5);
  color: #FFFFFF;
  display: inline-block;
  padding: 30px;
  position: absolute;
  top: 70px;
  left: 50%;
  width: 340px;
  margin-left: -170px;
}
.tax-product_cat .masthead-hero .h-row .el--text span {
  display: inline-block;
  font-size: 100%;
  margin-bottom: 10px;
  text-transform: uppercase;
  border-bottom: 2px solid #FFFFFF;
}
.tax-product_cat .masthead-hero .h-row .el--text h1 {
  font-size: 250%;
  margin-top: 0;
  margin-bottom: 10px;
}
@media only screen and (min-width: 1023px) {
  .tax-product_cat .masthead-hero .h-row .el--text {
    position: absolute;
    top: 30vh;
    width: 1000px;
    margin-left: -500px;
  }
  .tax-product_cat .masthead-hero .h-row .el--text span {
    font-size: 120%;
  }
  .tax-product_cat .masthead-hero .h-row .el--text h1 {
    font-size: 500%;
  }
}
.tax-product_cat .products .product {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}

.product .onsale {
  display: none;
}

.shop .pre-footer-thankyou {
  margin-top: 0;
}

.woocommerce .select2-dropdown {
  min-width: 220px;
  font-size: 75%;
}

.product_meta .posted_in,
.product_meta .tagged_as {
  display: none !important;
}
.woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals {
  clear: both;
  padding-top: 12px;
}

/*------------------------------------*\
    SHOP-SINGLE.SCSS
\*------------------------------------*/
/***  for shop single page (single-product.php)  ***/
@media only screen and (min-width: 1023px) {
  .single-product .woocommerce-main-image {
    display: block;
    position: relative;
  }
  .single-product .woocommerce-main-image:after {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    position: absolute;
    right: 20px;
    bottom: 20px;
  }
}
.single-product .woocommerce-main-image img {
  max-height: 500px;
  max-width: 100%;
  width: auto !important;
  margin: 0px auto;
}

.single-product div.ppt {
  display: none !important;
}

.single-product .single_add_to_cart_button {
  font-family: "BrandonText" !important;
  background: #F99E2F !important;
  color: #FFFFFF;
  font-size: 90% !important;
}

@media only screen and (min-width: 1023px) {
  .single-product .single_add_to_cart_button {
    font-size: 110% !important;
  }
}
.single-product .product_title {
  color: #299EB7;
  font-family: "BrandonText", sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1022px) {
  .single-product .product_title {
    font-size: 150%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1022px) {
  .single-product .product_title {
    font-size: 200%;
  }
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
  color: #475360;
  font-size: 150%;
}
@media only screen and (min-width: 767px) {
  .woocommerce div.product p.price, .woocommerce div.product span.price {
    font-size: 200%;
  }
}

.woocommerce div.product div.images img {
  max-width: 300px;
  margin: 0 auto;
}

.single-product-delivery-link, .single-product .posted_in {
  padding-top: 20px;
  font-weight: 700;
  font-family: "BrandonText", sans-serif;
}

@media only screen and (min-width: 1023px) {
  .product-short-description {
    max-width: 80%;
    background-color: #EAEEF3;
    padding: 40px;
  }
}
.woocommerce table.shop_attributes {
  border: none !important;
  font-style: normal;
}
.woocommerce table.shop_attributes tr {
  display: inline-block;
  width: 49%;
  background: none !important;
  border: none !important;
  vertical-align: top;
}
.woocommerce table.shop_attributes th {
  border: none !important;
  background: none !important;
  width: 100%;
  display: block;
  padding: 0;
  font-size: 90%;
}
.woocommerce table.shop_attributes td {
  font-style: normal;
  background: none !important;
  border: none !important;
  display: block;
  width: 100%;
  font-size: 110%;
}

.woocommerce .quantity input.qty, .woocommerce-page .quantity input.qty {
  border-radius: 5px;
  border: 1px solid #475360 !important;
  color: #475360;
  font-size: 200% !important;
  line-height: 1.8em !important;
  width: 2.25em;
  height: 1.9em !important;
  font-family: "BrandonText", sans-serif;
}

.woocommerce div.product form.cart div.quantity {
  margin: 0 25px 0 0;
}

.woocommerce input[type=number]::-webkit-inner-spin-button,
.woocommerce input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.woocommerce .quantity .plus, .woocommerce .quantity .minus, .woocommerce-page .quantity .plus, .woocommerce-page .quantity .minus {
  width: 2.3em !important;
  height: 2em !important;
  background: #FFFFFF !important;
  border: 1px solid #475360 !important;
}

.woocommerce-page .quantity .plus {
  border-top-right-radius: 5px !important;
}

.woocommerce-page .quantity .minus {
  border-bottom-right-radius: 5px !important;
}

.alt {
  background-color: #F99E2F !important;
}

.woocommerce .social-icons {
  opacity: 0.7;
  font-size: 90%;
  margin-top: 20px;
  font-family: "BrandonText", sans-serif;
  font-weight: 800;
}
.woocommerce .social-icons a {
  margin-left: 10px;
}
.woocommerce .social-icons .fa, .woocommerce .social-icons .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .woocommerce .social-icons a:after, .woocommerce .social-icons .c-poi-item__header-thumb-wrap:before {
  font-size: 110%;
}

/**
 * Coupon Code styling
 */
@media only screen and (max-width: 1022px) {
  .woocommerce table.shop_table_responsive tr td:before, .woocommerce-page table.shop_table_responsive tr td:before {
    display: none;
  }
}

@media only screen and (max-width: 1022px) {
  .woocommerce-cart .cart-collaterals .cart_totals table.shop_table_responsive tbody th {
    display: inline-block;
    border-bottom: 0;
    background-color: rgba(0, 0, 0, 0.025);
    width: 100%;
  }
}

@media only screen and (max-width: 1022px) {
  .woocommerce-page .cart-collaterals table.shop_table_responsive tr:nth-child(2n) td {
    background-color: #fff;
  }
}

.single-product #content {
  padding: 0 5%;
}

span.vtprd-category-deal-msg {
  background-color: #EAEEF3;
  padding: 10px 20px;
  color: #566472;
}

/*------------------------------------*\
    Collections Landing specific
\*------------------------------------*/
/*------------------------------------*\
    Collections Highlight specific
\*------------------------------------*/
.col-highlight-gallery {
  padding: 1% 5%;
  position: relative;
}

.col-highlight-gallery__item {
  margin: 10px;
  cursor: pointer;
}

.col-highlight-gallery__img {
  display: block;
  width: 100%;
  height: auto;
}

.col-highlight-gallery__control {
  width: 40px;
  height: 60px;
  line-height: 60px;
  position: absolute;
  top: 50%;
  margin-top: -60px;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  color: #FFFFFF;
  text-align: center;
  font-size: 150%;
}
.col-highlight-gallery__control:hover {
  background: rgba(0, 0, 0, 0.7);
  width: 70px;
}
@media only screen and (min-width: 1023px) {
  .col-highlight-gallery__control {
    width: 100px;
    height: 120px;
    line-height: 120px;
    font-size: 260%;
  }
  .col-highlight-gallery__control:hover {
    background: rgba(0, 0, 0, 0.7);
    width: 110px;
  }
}

.col-highlight-gallery__prev {
  left: 0;
}

.col-highlight-gallery__next {
  right: 0;
}

.pswp__caption {
  background: rgba(0, 0, 0, 0.7);
}

.pswp__caption__center {
  font-size: 100%;
  max-width: none;
  padding: 20px;
}

/*------------------------------------*\
    Collections Landing Page
\*------------------------------------*/
.cs-search-bar {
  padding: 2%;
  margin: 0;
}
.cs-search-bar .cs-search-controls__search-bar {
  display: inline-block;
  width: 40%;
  margin-right: 20px;
  margin-bottom: 0;
}
.cs-search-bar .fa, .cs-search-bar .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .cs-search-bar a:after, .cs-search-bar .c-poi-item__header-thumb-wrap:before {
  padding: 0;
}
.cs-search-bar .btn, .cs-search-bar .c-password-protected input[type=submit], .c-password-protected .cs-search-bar input[type=submit], .cs-search-bar .search-controls button, .search-controls .cs-search-bar button, .cs-search-bar #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .cs-search-bar #mc-embedded-subscribe, .cs-search-bar .woocommerce .button, .woocommerce .cs-search-bar .button, .cs-search-bar .shop-wrap .button.alt, .shop-wrap .cs-search-bar .button.alt, .cs-search-bar .single-product .single_add_to_cart_button, .single-product .cs-search-bar .single_add_to_cart_button {
  display: inline-block;
}
.cs-search-bar .btn .fa, .cs-search-bar .btn .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .cs-search-bar .btn a:after, .cs-search-bar .c-password-protected input[type=submit] .fa, .cs-search-bar .c-password-protected input[type=submit] .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .cs-search-bar .c-password-protected input[type=submit] a:after, .c-password-protected .cs-search-bar input[type=submit] .fa, .c-password-protected .cs-search-bar input[type=submit] .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .c-password-protected .cs-search-bar input[type=submit] a:after, .cs-search-bar .btn .c-poi-item__header-thumb-wrap:before, .cs-search-bar .c-password-protected input[type=submit] .c-poi-item__header-thumb-wrap:before, .c-password-protected .cs-search-bar input[type=submit] .c-poi-item__header-thumb-wrap:before, .cs-search-bar .search-controls button .fa, .cs-search-bar .search-controls button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .cs-search-bar .search-controls button a:after, .cs-search-bar .search-controls button .c-poi-item__header-thumb-wrap:before, .search-controls .cs-search-bar button .fa, .search-controls .cs-search-bar button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .search-controls .cs-search-bar button a:after, .search-controls .cs-search-bar button .c-poi-item__header-thumb-wrap:before, .cs-search-bar #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe .fa, .cs-search-bar #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .cs-search-bar #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe a:after, .cs-search-bar #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe .c-poi-item__header-thumb-wrap:before, #mc_embed_signup #mc-embedded-subscribe-form .cs-search-bar #mc-embedded-subscribe .fa, #mc_embed_signup #mc-embedded-subscribe-form .cs-search-bar #mc-embedded-subscribe .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb #mc_embed_signup #mc-embedded-subscribe-form .cs-search-bar #mc-embedded-subscribe a:after, #mc_embed_signup #mc-embedded-subscribe-form .cs-search-bar #mc-embedded-subscribe .c-poi-item__header-thumb-wrap:before, .cs-search-bar .woocommerce .button .fa, .cs-search-bar .woocommerce .button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .cs-search-bar .woocommerce .button a:after, .cs-search-bar .woocommerce .button .c-poi-item__header-thumb-wrap:before, .woocommerce .cs-search-bar .button .fa, .woocommerce .cs-search-bar .button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .woocommerce .cs-search-bar .button a:after, .woocommerce .cs-search-bar .button .c-poi-item__header-thumb-wrap:before, .cs-search-bar .shop-wrap .button.alt .fa, .cs-search-bar .shop-wrap .button.alt .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .cs-search-bar .shop-wrap .button.alt a:after, .cs-search-bar .shop-wrap .button.alt .c-poi-item__header-thumb-wrap:before, .shop-wrap .cs-search-bar .button.alt .fa, .shop-wrap .cs-search-bar .button.alt .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .shop-wrap .cs-search-bar .button.alt a:after, .shop-wrap .cs-search-bar .button.alt .c-poi-item__header-thumb-wrap:before, .cs-search-bar .single-product .single_add_to_cart_button .fa, .cs-search-bar .single-product .single_add_to_cart_button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .cs-search-bar .single-product .single_add_to_cart_button a:after, .cs-search-bar .single-product .single_add_to_cart_button .c-poi-item__header-thumb-wrap:before, .single-product .cs-search-bar .single_add_to_cart_button .fa, .single-product .cs-search-bar .single_add_to_cart_button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .single-product .cs-search-bar .single_add_to_cart_button a:after, .single-product .cs-search-bar .single_add_to_cart_button .c-poi-item__header-thumb-wrap:before {
  padding: 0;
}

.cs-search-main__wrapper {
  display: none;
  background-color: #415c74;
}
.cs-search-main__wrapper.active {
  display: block;
}
.cs-search-main__wrapper .cs-options__label, .cs-search-main__wrapper .cs-options__example {
  color: #FFFFFF;
}
.cs-search-main__wrapper .more-options__button {
  max-width: 180px;
  color: #FFFFFF;
  margin: 0 auto;
}
.cs-search-main__wrapper .cs-options__more-options-wrapper {
  border: 0;
  margin-bottom: 40px;
}
.cs-search-main__wrapper button {
  background-color: #299EB7;
  color: #FFFFFF;
  border-radius: 3px;
  font-weight: bold;
  font-size: 80%;
}

/*------------------------------------*\
    Collections Advanced Search
\*------------------------------------*/
.cs-advanced-search {
  margin-top: 40px;
}
.cs-advanced-search .cs-search-controls__search-bar {
  width: 100%;
  max-width: none;
  margin-bottom: 20px;
}
.cs-advanced-search .image-check {
  text-align: center;
}
.cs-advanced-search .cs-options__more-options-wrapper {
  border: 0;
}
.cs-advanced-search .more-options__button {
  max-width: 150px;
  margin: 20px auto;
}
.cs-advanced-search .btn, .cs-advanced-search .c-password-protected input[type=submit], .c-password-protected .cs-advanced-search input[type=submit], .cs-advanced-search .search-controls button, .search-controls .cs-advanced-search button, .cs-advanced-search #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .cs-advanced-search #mc-embedded-subscribe, .cs-advanced-search .woocommerce .button, .woocommerce .cs-advanced-search .button, .cs-advanced-search .shop-wrap .button.alt, .shop-wrap .cs-advanced-search .button.alt, .cs-advanced-search .single-product .single_add_to_cart_button, .single-product .cs-advanced-search .single_add_to_cart_button {
  font-size: 115%;
}
.cs-advanced-search .btn .fa, .cs-advanced-search .btn .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .cs-advanced-search .btn a:after, .cs-advanced-search .c-password-protected input[type=submit] .fa, .cs-advanced-search .c-password-protected input[type=submit] .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .cs-advanced-search .c-password-protected input[type=submit] a:after, .c-password-protected .cs-advanced-search input[type=submit] .fa, .c-password-protected .cs-advanced-search input[type=submit] .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .c-password-protected .cs-advanced-search input[type=submit] a:after, .cs-advanced-search .btn .c-poi-item__header-thumb-wrap:before, .cs-advanced-search .c-password-protected input[type=submit] .c-poi-item__header-thumb-wrap:before, .c-password-protected .cs-advanced-search input[type=submit] .c-poi-item__header-thumb-wrap:before, .cs-advanced-search .search-controls button .fa, .cs-advanced-search .search-controls button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .cs-advanced-search .search-controls button a:after, .cs-advanced-search .search-controls button .c-poi-item__header-thumb-wrap:before, .search-controls .cs-advanced-search button .fa, .search-controls .cs-advanced-search button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .search-controls .cs-advanced-search button a:after, .search-controls .cs-advanced-search button .c-poi-item__header-thumb-wrap:before, .cs-advanced-search #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe .fa, .cs-advanced-search #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .cs-advanced-search #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe a:after, .cs-advanced-search #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe .c-poi-item__header-thumb-wrap:before, #mc_embed_signup #mc-embedded-subscribe-form .cs-advanced-search #mc-embedded-subscribe .fa, #mc_embed_signup #mc-embedded-subscribe-form .cs-advanced-search #mc-embedded-subscribe .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb #mc_embed_signup #mc-embedded-subscribe-form .cs-advanced-search #mc-embedded-subscribe a:after, #mc_embed_signup #mc-embedded-subscribe-form .cs-advanced-search #mc-embedded-subscribe .c-poi-item__header-thumb-wrap:before, .cs-advanced-search .woocommerce .button .fa, .cs-advanced-search .woocommerce .button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .cs-advanced-search .woocommerce .button a:after, .cs-advanced-search .woocommerce .button .c-poi-item__header-thumb-wrap:before, .woocommerce .cs-advanced-search .button .fa, .woocommerce .cs-advanced-search .button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .woocommerce .cs-advanced-search .button a:after, .woocommerce .cs-advanced-search .button .c-poi-item__header-thumb-wrap:before, .cs-advanced-search .shop-wrap .button.alt .fa, .cs-advanced-search .shop-wrap .button.alt .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .cs-advanced-search .shop-wrap .button.alt a:after, .cs-advanced-search .shop-wrap .button.alt .c-poi-item__header-thumb-wrap:before, .shop-wrap .cs-advanced-search .button.alt .fa, .shop-wrap .cs-advanced-search .button.alt .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .shop-wrap .cs-advanced-search .button.alt a:after, .shop-wrap .cs-advanced-search .button.alt .c-poi-item__header-thumb-wrap:before, .cs-advanced-search .single-product .single_add_to_cart_button .fa, .cs-advanced-search .single-product .single_add_to_cart_button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .cs-advanced-search .single-product .single_add_to_cart_button a:after, .cs-advanced-search .single-product .single_add_to_cart_button .c-poi-item__header-thumb-wrap:before, .single-product .cs-advanced-search .single_add_to_cart_button .fa, .single-product .cs-advanced-search .single_add_to_cart_button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .single-product .cs-advanced-search .single_add_to_cart_button a:after, .single-product .cs-advanced-search .single_add_to_cart_button .c-poi-item__header-thumb-wrap:before {
  margin-left: 20px;
  margin-right: 0;
}
.cs-advanced-search .cs-advanced-search__submit {
  text-align: center;
  margin-bottom: 40px;
}

.cs-advanced-search__fields {
  margin-left: -4%;
  list-style: none;
  margin-bottom: 0;
}
.cs-advanced-search__fields .cs-options__single-option {
  display: inline-block;
  width: 100%;
  padding-left: 4%;
  vertical-align: top;
  border-bottom: 0;
}
@media only screen and (min-width: 1023px) {
  .cs-advanced-search__fields .cs-options__single-option {
    width: 50%;
  }
}

/*------------------------------------*\
    Collections Search Page
\*------------------------------------*/
.cs-search-controls {
  margin: 0 0 25px;
  position: relative;
  display: block;
  text-align: left;
}
@media only screen and (min-width: 1023px) {
  .cs-search-controls {
    margin: 20 0 50px 0;
    text-align: left;
  }
}
.cs-search-controls--no-results {
  margin-bottom: 3.75em;
}

.cs-main-heading {
  display: block;
  margin-top: 130px;
  font-size: 120%;
  text-align: left;
}
@media only screen and (min-width: 1023px) {
  .cs-main-heading {
    margin-top: 40px;
    font-size: 120%;
    text-align: left;
  }
}

.cs-search-controls__title {
  text-align: left;
  font-weight: bold;
  color: #06395D;
  font-size: 160%;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 20px;
  margin-right: 20px;
}
@media only screen and (min-width: 1023px) {
  .cs-search-controls__title {
    margin-bottom: 0;
    margin-left: 0;
    padding-right: 200px;
  }
}

.cs-filter-status__remove {
  margin-bottom: 20px;
}
@media only screen and (min-width: 1023px) {
  .cs-filter-status__remove {
    margin-bottom: 0;
  }
}

.cs-search-controls__search-bar {
  position: relative;
  margin-bottom: 40px;
}
@media only screen and (min-width: 1023px) {
  .cs-search-controls__search-bar {
    text-align: left;
  }
}
@media only screen and (min-width: 1200px) {
  .cs-search-controls__search-bar {
    max-width: 500px;
  }
}

.cs-search-controls__search-input {
  width: 100%;
  background-color: #FFFFFF;
  height: 60px;
  color: #06395D;
  font-weight: bold;
  border-radius: 3px;
  border: 1px solid #F2F2F2;
  font-size: 110%;
  padding-left: 10px;
}

.search-input__search-button {
  position: absolute;
  right: 10px;
  top: 12px;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  font-size: 150%;
  color: #06395D;
}

.results-number {
  margin: 0;
}

.search-controls__pagination {
  list-style-type: none;
  margin-left: 0;
  text-align: left;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}
.search-controls__pagination li {
  display: inline-block;
  margin: 0 5px;
}
.search-controls__pagination a {
  color: #06395D;
  font-weight: bold;
}
.search-controls__pagination .page-numbers {
  margin-left: 0;
}
.search-controls__pagination .results-number {
  display: block;
}
@media only screen and (min-width: 1023px) {
  .search-controls__pagination {
    text-align: right;
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    padding: 0;
  }
  .search-controls__pagination--footer {
    position: relative;
  }
  .search-controls__pagination .results-number {
    display: inline-block;
  }
}

.cs-options--single .cs-advanced-search__fields {
  display: none;
}
.cs-options--single .cs-advanced-search__fields .cs-options__single-option {
  width: 100%;
}
.cs-options--single.active .cs-advanced-search__fields {
  display: block;
}

.cs-options--advanced .cs-options__toggle, .cs-options--advanced .cs-options__toggle.active {
  display: none;
}
.cs-options--advanced .btn, .cs-options--advanced .c-password-protected input[type=submit], .c-password-protected .cs-options--advanced input[type=submit], .cs-options--advanced .search-controls button, .search-controls .cs-options--advanced button, .cs-options--advanced #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .cs-options--advanced #mc-embedded-subscribe, .cs-options--advanced .woocommerce .button, .woocommerce .cs-options--advanced .button, .cs-options--advanced .shop-wrap .button.alt, .shop-wrap .cs-options--advanced .button.alt, .cs-options--advanced .single-product .single_add_to_cart_button, .single-product .cs-options--advanced .single_add_to_cart_button {
  margin: 0 auto 40px;
  display: block;
}

.cs-options {
  margin-bottom: 40px;
}

.cs-options .btn, .cs-options .c-password-protected input[type=submit], .c-password-protected .cs-options input[type=submit], .cs-options .search-controls button, .search-controls .cs-options button, .cs-options #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .cs-options #mc-embedded-subscribe, .cs-options .woocommerce .button, .woocommerce .cs-options .button, .cs-options .shop-wrap .button.alt, .shop-wrap .cs-options .button.alt, .cs-options .single-product .single_add_to_cart_button, .single-product .cs-options .single_add_to_cart_button {
  font-size: 115%;
}
.cs-options .btn .fa, .cs-options .btn .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .cs-options .btn a:after, .cs-options .c-password-protected input[type=submit] .fa, .cs-options .c-password-protected input[type=submit] .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .cs-options .c-password-protected input[type=submit] a:after, .c-password-protected .cs-options input[type=submit] .fa, .c-password-protected .cs-options input[type=submit] .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .c-password-protected .cs-options input[type=submit] a:after, .cs-options .btn .c-poi-item__header-thumb-wrap:before, .cs-options .c-password-protected input[type=submit] .c-poi-item__header-thumb-wrap:before, .c-password-protected .cs-options input[type=submit] .c-poi-item__header-thumb-wrap:before, .cs-options .search-controls button .fa, .cs-options .search-controls button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .cs-options .search-controls button a:after, .cs-options .search-controls button .c-poi-item__header-thumb-wrap:before, .search-controls .cs-options button .fa, .search-controls .cs-options button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .search-controls .cs-options button a:after, .search-controls .cs-options button .c-poi-item__header-thumb-wrap:before, .cs-options #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe .fa, .cs-options #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .cs-options #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe a:after, .cs-options #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe .c-poi-item__header-thumb-wrap:before, #mc_embed_signup #mc-embedded-subscribe-form .cs-options #mc-embedded-subscribe .fa, #mc_embed_signup #mc-embedded-subscribe-form .cs-options #mc-embedded-subscribe .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb #mc_embed_signup #mc-embedded-subscribe-form .cs-options #mc-embedded-subscribe a:after, #mc_embed_signup #mc-embedded-subscribe-form .cs-options #mc-embedded-subscribe .c-poi-item__header-thumb-wrap:before, .cs-options .woocommerce .button .fa, .cs-options .woocommerce .button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .cs-options .woocommerce .button a:after, .cs-options .woocommerce .button .c-poi-item__header-thumb-wrap:before, .woocommerce .cs-options .button .fa, .woocommerce .cs-options .button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .woocommerce .cs-options .button a:after, .woocommerce .cs-options .button .c-poi-item__header-thumb-wrap:before, .cs-options .shop-wrap .button.alt .fa, .cs-options .shop-wrap .button.alt .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .cs-options .shop-wrap .button.alt a:after, .cs-options .shop-wrap .button.alt .c-poi-item__header-thumb-wrap:before, .shop-wrap .cs-options .button.alt .fa, .shop-wrap .cs-options .button.alt .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .shop-wrap .cs-options .button.alt a:after, .shop-wrap .cs-options .button.alt .c-poi-item__header-thumb-wrap:before, .cs-options .single-product .single_add_to_cart_button .fa, .cs-options .single-product .single_add_to_cart_button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .cs-options .single-product .single_add_to_cart_button a:after, .cs-options .single-product .single_add_to_cart_button .c-poi-item__header-thumb-wrap:before, .single-product .cs-options .single_add_to_cart_button .fa, .single-product .cs-options .single_add_to_cart_button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .single-product .cs-options .single_add_to_cart_button a:after, .single-product .cs-options .single_add_to_cart_button .c-poi-item__header-thumb-wrap:before {
  margin-left: 20px;
  margin-right: 0;
}

.cs-options__title {
  display: none;
}

.page-template-collections-search .cs-options__title {
  display: block;
  font-weight: bold;
  font-size: 90%;
  color: #06395D;
  margin-bottom: 0;
  position: relative;
  width: 100%;
  display: block;
  border-bottom: 1px solid #F2F2F2;
  margin-bottom: 20px;
  position: relative;
}

.cs-options__toggle {
  color: #bfbfbf;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  display: none;
}
.cs-options__toggle.active {
  display: block;
}

.cs-options__view-btn {
  background-color: #FFFFFF;
  color: #06395D;
  padding: 10px 20px;
  border: 1px solid #bfbfbf;
  margin-right: 10px;
  margin-top: 0;
  margin-bottom: 10px;
  display: inline-block;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 3px;
}
.cs-options__view-btn .fa, .cs-options__view-btn .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .cs-options__view-btn a:after, .cs-options__view-btn .c-poi-item__header-thumb-wrap:before {
  color: #299EB7;
  margin-right: 10px;
}
.cs-options__view-btn.active {
  background-color: #F2F2F2;
}

.cs-options__sort-button {
  position: absolute;
  top: 25px;
  right: 0;
  height: 2.8em;
}

.cs-options__single-option {
  margin-bottom: 10px;
  display: block;
}
.cs-options__single-option .select2-selection--single {
  background-color: #F2F2F2;
  border: 1px solid #d9d9d9;
  height: 40px;
}
.cs-options__single-option .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #06395D;
  font-size: 90%;
  padding-top: 7px;
  font-weight: bold;
}
.cs-options__single-option .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: 0;
  left: -43%;
  top: -10%;
}
.cs-options__single-option .select2-container--default .select2-selection--single .select2-selection__arrow b:after {
  content: "";
  font-family: "FontAwesome";
  font-size: 30px;
}
.cs-options__single-option .select2-container {
  width: 100% !important;
}
.cs-options__single-option .select2-selection--multiple {
  background-color: #F2F2F2;
  border: 1px solid #d9d9d9;
  min-height: 40px;
  position: relative;
  font-size: 110%;
  font-weight: bold !important;
  cursor: pointer;
}
.cs-options__single-option .select2-selection--multiple input.select2-search__field {
  font-size: 80%;
  margin-top: 7px;
  font-weight: bold;
}
.cs-options__single-option .select2-selection--multiple .select2-selection__choice {
  margin-bottom: 3px;
  font-size: 75%;
}
.cs-options__single-option .select2-selection--multiple .select2-selection__choice__remove {
  font-size: 25px;
  position: relative;
  top: 4px;
  line-height: 0;
}
.cs-options__single-option .select2-selection--multiple:after {
  content: "+";
  font-size: 29px;
  position: absolute;
  top: 0;
  right: 12px;
  cursor: pointer;
}
.cs-options__single-option .select2-selection--multiple .select2-selection__rendered {
  white-space: normal;
  padding-right: 40px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #6D90AE;
}

.cs-options__label {
  font-size: 90%;
  font-weight: bold;
}
.cs-options__label.cs-options__label--checkbox {
  display: inline-block;
  margin-left: 10px;
}

.cs-options__select-wrapper {
  position: relative;
}
.cs-options__select-wrapper .fa, .cs-options__select-wrapper .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .cs-options__select-wrapper a:after, .cs-options__select-wrapper .c-poi-item__header-thumb-wrap:before {
  position: absolute;
  right: 0;
}

.image-check {
  margin-bottom: 20px;
}

.cs-options__select {
  width: 100%;
  background-color: #F2F2F2;
  border: 1px solid #d9d9d9;
  height: 40px;
  -webkit-appearance: none;
  color: #06395D;
  font-size: 110%;
  font-weight: bold;
  padding-left: 10px;
}

.cs-options__example {
  font-style: italic;
  margin: 0;
}

.cs-options__input {
  width: 100%;
  background-color: #F2F2F2;
  height: 40px;
  color: #06395D;
  font-weight: bold;
  border-radius: 3px;
  border: 1px solid #d9d9d9;
  font-size: 90%;
  padding-left: 10px;
}
.cs-options__input.cs-options__input--half {
  width: 48.5%;
  display: inline-block;
  margin-left: 3%;
}
.cs-options__input.cs-options__input--half:first-of-type {
  margin-left: 0;
}

.cs-options__more-options-wrapper {
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #F2F2F2;
  margin-bottom: 20px;
}
.cs-options__more-options-wrapper .select2-container {
  width: 100% !important;
}

.more-options__button {
  font-weight: bold;
  font-size: 90%;
  color: #06395D;
  margin-top: 10px;
  margin-bottom: 0;
  position: relative;
  width: 100%;
  display: block;
  cursor: pointer;
}
.more-options__button .fa, .more-options__button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .more-options__button a:after, .more-options__button .c-poi-item__header-thumb-wrap:before {
  position: relative;
  top: 1px;
  left: 5px;
  color: #06395D;
}

.cs-options__more-options {
  display: none;
  padding-top: 20px;
}

.cs-options__more-options-wrapper.active .cs-options__more-options {
  display: block;
}

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #757575;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #757575;
  opacity: 1;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #757575;
  opacity: 1;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #757575;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #757575;
}

.cs-result {
  border-bottom: 1px solid #F2F2F2;
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: block;
}
.cs-result:first-of-type {
  border-top: 1px solid #F2F2F2;
  padding-top: 20px;
}

.cs-result__field--title {
  color: #06395D;
  font-size: 80%;
}

.cs-result__field--maker {
  color: #299EB7;
  font-size: 80%;
  font-weight: bold;
}

.cs-result__field--meta {
  color: #a6a6a6;
  font-size: 80%;
  font-weight: bold;
}

.cs-view-options {
  position: relative;
  margin-bottom: 40px;
}
@media only screen and (min-width: 1023px) {
  .cs-view-options {
    margin-bottom: 20px;
  }
}

.cs-view-options__view-sort {
  width: 100%;
  position: relative;
}
.cs-view-options__view-sort .select2-container {
  padding-right: 60px;
}
@media only screen and (min-width: 1023px) {
  .cs-view-options__view-sort {
    float: right;
  }
}

.cs-results .cs-result__field {
  display: block;
  vertical-align: top;
}
@media only screen and (min-width: 1023px) {
  .cs-results .cs-result__field {
    display: inline-block;
    padding-right: 2.5%;
    font-size: 110%;
    line-height: 125%;
  }
}
.cs-results .cs-result__field--image {
  width: 30%;
  display: inline-block;
  padding-right: 2.5%;
}
@media only screen and (max-width: 1022px) {
  .cs-results .cs-result__field--image {
    width: 30% !important;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1022px) {
  .cs-results .cs-result__field--image {
    width: 20% !important;
  }
  .cs-results .cs-result__field--image .fig {
    margin: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .cs-results .cs-result__field--image {
    width: 20%;
  }
  .cs-results .cs-result__field--image .fig {
    margin: 0;
  }
}
.cs-results .cs-result__field--image img {
  max-width: 100%;
  max-height: 200px;
  width: auto;
  margin: 0 auto;
}
.cs-results .cs-result__field--title {
  display: inline-block;
  width: 70%;
  font-size: 80%;
  padding-right: 2.5%;
}
@media only screen and (max-width: 1022px) {
  .cs-results .cs-result__field--title {
    width: 100% !important;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1022px) {
  .cs-results .cs-result__field--title {
    width: 20% !important;
    display: inline-block;
  }
}
@media only screen and (min-width: 1200px) {
  .cs-results .cs-result__field--title {
    width: 20%;
  }
}
.cs-results .cs-result__field--maker {
  color: #299EB7;
  font-size: 80%;
  font-weight: bold;
}
@media only screen and (min-width: 767px) and (max-width: 1022px) {
  .cs-results .cs-result__field--maker {
    display: inline-block;
  }
}
.cs-results .cs-result__field--meta {
  color: #a6a6a6;
  font-size: 80%;
  font-weight: bold;
}
@media only screen and (max-width: 1022px) {
  .cs-results .cs-result__field--meta {
    width: 100% !important;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1022px) {
  .cs-results .cs-result__field--meta {
    width: 14% !important;
    display: inline-block;
  }
}
.cs-results .field-id-prod_pri_date span,
.cs-results .maker {
  display: block;
  margin-bottom: 5px;
}
.cs-results .acc-no-label {
  display: none;
}

.cs-results--grid .cs-result__field--title,
.cs-results--grid .cs-result__field--maker {
  font-size: 110%;
}
.cs-results--grid .acc-no-label {
  display: inline-block;
  padding-right: 3px;
}
.cs-results--grid .maker {
  display: block;
}
.cs-results--grid .field-id span:after {
  content: ",";
  padding-right: 3px;
}
.cs-results--grid .field-id span:last-of-type:after {
  display: none;
}
.cs-results--grid .field-id-prod_pri_date span:after,
.cs-results--grid .field-id-user_sym_3 span:after {
  display: none;
}
.cs-results--grid .field-id-prod_pri_date span,
.cs-results--grid .field-id-user_sym_3 span {
  display: block;
}

.select2-selection--single .select2-selection__clear {
  margin-right: 20px;
  margin-top: 2px;
  color: #566472;
  font-size: 2.1em;
  font-weight: normal;
}

.select2-selection--multiple .select2-selection__clear {
  display: none;
}

.cs-results--grid {
  margin-left: -4%;
  list-style: none;
  margin-bottom: 0;
}
.cs-results--grid .cs-result {
  display: inline-block;
  width: 50%;
  padding-left: 4%;
  vertical-align: top;
  border-bottom: 0;
}
.cs-results--grid .cs-result:first-of-type {
  border-top: 0;
  padding-top: 0;
}
@media only screen and (min-width: 1023px) {
  .cs-results--grid .cs-result {
    width: 25%;
  }
}
.cs-results--grid .cs-result__field {
  display: block;
  vertical-align: top;
}
.cs-results--grid .cs-result__field--image {
  width: 100% !important;
  display: inline-block;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1023px) {
  .cs-results--grid .cs-result__field--image {
    margin-bottom: 20px;
  }
}
.cs-results--grid .cs-result__field--title {
  display: block;
  width: 100% !important;
}
.cs-results--grid .cs-result__field--maker {
  width: 100% !important;
}
.cs-results--grid .cs-result__field--meta {
  width: 100% !important;
}

.facet__load_more {
  position: relative;
}
.facet__load_more--loading:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(/wp-content/themes/waddesdon-manor/assets/images/photoswipe-assets/preloader.gif);
  position: absolute;
  top: -2px;
  right: -25px;
}

.c-help {
  font-size: 45%;
  display: inline-block;
  margin-left: 10px;
}

.c-help__link {
  text-decoration: underline;
}

/*------------------------------------*\
    Collections Single
\*------------------------------------*/
.c-search-nav {
  position: relative;
  padding: 15px 0;
}
.c-search-nav p {
  margin-bottom: 0;
}

@media only screen and (min-width: 1023px) {
  .h-row__breadcrumb--collections {
    padding-right: 150px;
  }
}

.c-search-nav__back {
  display: inline-block;
}
.c-search-nav__back .btn, .c-search-nav__back .c-password-protected input[type=submit], .c-password-protected .c-search-nav__back input[type=submit], .c-search-nav__back .search-controls button, .search-controls .c-search-nav__back button, .c-search-nav__back #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .c-search-nav__back #mc-embedded-subscribe, .c-search-nav__back .woocommerce .button, .woocommerce .c-search-nav__back .button, .c-search-nav__back .shop-wrap .button.alt, .shop-wrap .c-search-nav__back .button.alt, .c-search-nav__back .single-product .single_add_to_cart_button, .single-product .c-search-nav__back .single_add_to_cart_button {
  font-size: 12px;
  line-height: 2em;
}
@media only screen and (min-width: 1023px) {
  .c-search-nav__back .btn, .c-search-nav__back .c-password-protected input[type=submit], .c-password-protected .c-search-nav__back input[type=submit], .c-search-nav__back .search-controls button, .search-controls .c-search-nav__back button, .c-search-nav__back #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .c-search-nav__back #mc-embedded-subscribe, .c-search-nav__back .woocommerce .button, .woocommerce .c-search-nav__back .button, .c-search-nav__back .shop-wrap .button.alt, .shop-wrap .c-search-nav__back .button.alt, .c-search-nav__back .single-product .single_add_to_cart_button, .single-product .c-search-nav__back .single_add_to_cart_button {
    font-size: 14px;
  }
}

.c-search-nav__pagination-wrapper {
  display: block;
  padding: 15px 0 0 0;
}
@media only screen and (min-width: 1023px) {
  .c-search-nav__pagination-wrapper {
    position: absolute;
    padding: 15px 0;
    right: 0;
    top: 15px;
    display: inline-block;
    text-align: center;
    padding: 0;
  }
}

.pagination__section-title {
  font-size: 80%;
}

.c-search-nav__pagination .fa, .c-search-nav__pagination .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .c-search-nav__pagination a:after, .c-search-nav__pagination .c-poi-item__header-thumb-wrap:before {
  border: 1px solid #6D90AE;
  color: #6D90AE;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  margin: 0;
  text-align: center;
}
.c-search-nav__pagination span {
  margin: 0 10px;
}

.c-masthead-wrap {
  width: 100%;
  padding-top: 0;
  padding-bottom: 52px;
  height: 50vw;
  min-height: 362px;
  max-height: 75vh;
  overflow: hidden;
  position: relative;
  background-color: #f1e0cf;
  margin-bottom: 10px;
}
@media only screen and (min-width: 1023px) {
  .c-masthead-wrap {
    padding-bottom: 0;
    min-height: 0;
    max-height: 75vh;
  }
}

.c-masthead__main-img {
  height: 100%;
  width: auto;
  margin-bottom: 0;
}
.c-masthead__main-img img {
  max-height: 100%;
  height: auto;
  width: auto;
  display: block;
  margin: 0 auto;
}

.col-highlight-image-details {
  text-align: center;
  font-size: 0.75em;
  background-color: #F2F2F2;
  padding: 10px 0;
  margin-bottom: 0;
}
.col-highlight-image-details .btn, .col-highlight-image-details .c-password-protected input[type=submit], .c-password-protected .col-highlight-image-details input[type=submit], .col-highlight-image-details .search-controls button, .search-controls .col-highlight-image-details button, .col-highlight-image-details #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .col-highlight-image-details #mc-embedded-subscribe, .col-highlight-image-details .woocommerce .button, .woocommerce .col-highlight-image-details .button, .col-highlight-image-details .shop-wrap .button.alt, .shop-wrap .col-highlight-image-details .button.alt, .col-highlight-image-details .single-product .single_add_to_cart_button, .single-product .col-highlight-image-details .single_add_to_cart_button {
  margin-right: 10px;
}
@media only screen and (min-width: 1023px) {
  .col-highlight-image-details {
    background-color: transparent;
    position: absolute;
    right: 5px;
    bottom: 5px;
    padding: 5px;
    text-align: right;
  }
  .col-highlight-image-details .btn, .col-highlight-image-details .c-password-protected input[type=submit], .c-password-protected .col-highlight-image-details input[type=submit], .col-highlight-image-details .search-controls button, .search-controls .col-highlight-image-details button, .col-highlight-image-details #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .col-highlight-image-details #mc-embedded-subscribe, .col-highlight-image-details .woocommerce .button, .woocommerce .col-highlight-image-details .button, .col-highlight-image-details .shop-wrap .button.alt, .shop-wrap .col-highlight-image-details .button.alt, .col-highlight-image-details .single-product .single_add_to_cart_button, .single-product .col-highlight-image-details .single_add_to_cart_button {
    margin-right: 0;
    margin-bottom: 5px;
  }
  .col-highlight-image-details span {
    display: block;
  }
}

.collection-main {
  margin-bottom: 40px;
}
.collection-main .h-row__page-title {
  font-weight: bold;
  margin-bottom: 0;
  font-size: 240%;
}
.collection-main .c-subheading {
  font-size: 110%;
}
.collection-main .h-row__lead-p {
  color: #475360;
  font-size: 120%;
}

.collection-main {
  padding-top: 16px;
}
.collection-main ul {
  margin-left: 0;
  list-style: none;
}
.collection-main ul li {
  margin-bottom: 20px;
}
.collection-main a {
  text-decoration: underline;
  color: #299EB7;
}
.collection-main .txt-block {
  font-size: 88%;
}

.accordion__content .c-subheading {
  margin-bottom: 10px;
}
.accordion__content ul li {
  margin-bottom: 10px;
}

.col-highlight-gallery--single {
  margin-bottom: 3%;
}
.col-highlight-gallery--single .col-highlight-gallery__item {
  height: 200px;
  position: relative;
}
.col-highlight-gallery--single .col-highlight-gallery__item img {
  max-height: 100%;
  width: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.collections-meta {
  margin-bottom: 40px;
  font-size: 110%;
}
.collections-meta p {
  color: #82A0A3;
  font-weight: bold;
  margin-bottom: 10px;
}

.collections-meta ul {
  list-style-type: none;
  margin-left: 0;
  color: #82A0A3;
  font-weight: bold;
  margin-bottom: 10px;
}

.collections-meta__display {
  padding: 16px 20px;
  margin-left: -20px;
  margin-right: -20px;
}
@media only screen and (min-width: 767px) {
  .collections-meta__display {
    background-color: #299EB7;
  }
}
.collections-meta__display p {
  margin-bottom: 0;
  font-size: 110%;
  color: #FFFFFF;
}
.collections-meta__display .collections-meta__heading {
  font-size: 100%;
  color: #FFFFFF;
  margin-top: 0;
}

.collections-meta__heading {
  font-size: 100%;
  margin-bottom: 5px;
  margin-top: 20px;
  font-weight: bold;
}

.accordion {
  margin-bottom: 20px;
}
.accordion .accordion__content {
  display: none;
}
.accordion .accordion__title {
  font-size: 100%;
  line-height: 40px;
}
.accordion .fa, .accordion .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .accordion a:after, .accordion .c-poi-item__header-thumb-wrap:before {
  font-size: 70%;
}
.accordion .fa-minus {
  display: none;
}

.accordion.active .accordion__content {
  display: block;
  padding-top: 20px;
}
.accordion.active .fa-plus {
  display: none;
}
.accordion.active .fa-minus {
  display: inline-block;
}

.c-heading {
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 767px) {
  .c-heading {
    margin-bottom: 0;
  }
}

.c-masthead {
  background-color: #06395D;
  color: #FFFFFF;
  padding-top: 2%;
}
@media only screen and (min-width: 767px) {
  .c-masthead {
    padding: 1% 0;
  }
}
.c-masthead .h-row__page-title {
  background-color: #06395D;
  margin: 0;
  font-size: 210%;
}
@media only screen and (min-width: 767px) {
  .c-masthead .h-row__page-title {
    background-color: transparent;
  }
}

/*------------------------------------*\
    Mailchimp Form
\*------------------------------------*/
div#mc_embed_signup form {
  padding: 0;
  color: black;
}
.woocommerce form .place-order .form-row {
  float: left;
  padding: 0;
}

.your-data {
  font-size: 80%;
}

#mc_embed_signup {
  background: none;
}
#mc_embed_signup #mc-embedded-subscribe-form .asterisk {
  color: #b33630;
}
#mc_embed_signup #mc-embedded-subscribe-form .mc-field-group {
  margin-bottom: 10px;
}
#mc_embed_signup #mc-embedded-subscribe-form .mc-field-group br {
  display: none;
}
#mc_embed_signup #mc-embedded-subscribe-form .mc-field-group li label {
  bottom: -2px;
  display: inline-block;
  margin-left: 10px;
  position: relative;
}
#mc_embed_signup #mc-embedded-subscribe-form .mc-field-group input {
  line-height: 2;
  padding-left: 5px;
  min-width: 235px;
  width: 50%;
}
@media only screen and (max-width: 1022px) {
  #mc_embed_signup #mc-embedded-subscribe-form .mc-field-group input {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1022px) {
  #mc_embed_signup #mc-embedded-subscribe-form .mc-field-group input {
    width: 75%;
  }
}
#mc_embed_signup #mc-embedded-subscribe-form .mc-field-group input[type=checkbox] {
  width: auto;
  min-width: auto;
}
#mc_embed_signup #mc-embedded-subscribe-form .mc-field-group ul {
  margin-left: 0;
}
#mc_embed_signup #mc-embedded-subscribe-form .mc-field-group ul li {
  list-style-type: none;
}
#mc_embed_signup #mc-embedded-subscribe-form .mc-field-group ul li label {
  display: inline-block;
  padding-left: 10px;
}
#mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {
  border-color: #b33630;
}
#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
  color: #b33630;
  background: none;
  padding-left: 0;
}
#mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe {
  margin: 10px 0;
}
@media only screen and (min-width: 1023px) {
  #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe {
    padding-right: 1.5em;
    padding-left: 1.5em;
    line-height: 4;
  }
}

/*------------------------------------*\
    Home specific
\*------------------------------------*/
.homepage-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}

@media only screen and (min-width: 1023px) {
  .homepage-carousel .item.grad-dark:before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 250px;
    z-index: -1;
    background: rgba(16, 16, 16, 0);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(16, 16, 16, 0) 0%, #101010 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(16, 16, 16, 0)), color-stop(100%, #101010));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(16, 16, 16, 0) 0%, #101010 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(16, 16, 16, 0) 0%, #101010 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(16, 16, 16, 0) 0%, #101010 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, rgba(16, 16, 16, 0) 0%, #101010 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
    /* IE6-9 */
    height: 40%;
    top: auto;
    bottom: 0;
    z-index: 1;
  }

  .homepage-carousel .item.grad-light:before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 250px;
    z-index: -1;
    background: rgba(255, 255, 255, 0);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, white));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
    /* IE6-9 */
    height: 40%;
    top: auto;
    bottom: 0;
    z-index: 1;
  }
  .homepage-carousel .item.grad-light .h-row__lead-p {
    color: #06395D;
  }
}
.homepage-carousel .item .img {
  height: 260px;
  min-height: 260px;
  display: block;
  width: 100%;
  height: auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (min-width: 1023px) {
  .homepage-carousel .item .img {
    min-height: 550px;
    height: 90vh;
  }
}

.homepage-carousel .owl-controls {
  display: none !important;
}
@media only screen and (min-width: 1023px) {
  .homepage-carousel .owl-controls {
    display: block !important;
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 10;
  }
}

.tpl-home .content-wrap {
  padding: 0;
}
.tpl-home .h-row__lead-p {
  background: #FFFFFF;
  margin-top: 20px;
  font-size: 100%;
}
@media only screen and (min-width: 1023px) {
  .tpl-home .h-row__lead-p {
    background: transparent;
    font-size: 180%;
    max-width: 760px;
  }
}
.tpl-home .content-row:last-of-type .max-width-wrap {
  width: 100%;
  padding: 10px;
}
.tpl-home .content-row:last-of-type .fig {
  margin-bottom: 0;
}
.tpl-home .content-row:last-of-type .grid {
  margin-left: -10px;
}
.tpl-home .content-row:last-of-type .grid__item {
  padding-left: 10px;
}
@media only screen and (min-width: 1023px) and (max-width: 1199px) {
  .tpl-home .columns-4 .btn, .tpl-home .columns-4 .c-password-protected input[type=submit], .c-password-protected .tpl-home .columns-4 input[type=submit], .tpl-home .columns-4 .search-controls button, .search-controls .tpl-home .columns-4 button, .tpl-home .columns-4 .woocommerce .button, .woocommerce .tpl-home .columns-4 .button, .tpl-home .columns-4 .shop-wrap .button.alt, .shop-wrap .tpl-home .columns-4 .button.alt, .tpl-home .columns-4 .single-product .single_add_to_cart_button, .single-product .tpl-home .columns-4 .single_add_to_cart_button, .tpl-home .columns-4 #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .tpl-home .columns-4 #mc-embedded-subscribe {
    font-size: 60%;
  }
}
.tpl-home .social-icons {
  display: none;
}

/*------------------------------------*\
    Search Results
\*------------------------------------*/
.search__nav-block .primary-nav__sub-nav-trigger {
  border: none;
  font-size: 22px;
  opacity: 0.7;
  margin: 0 25px 0 10px;
}

@media only screen and (max-width: 1022px) {
  .mobile-search-trigger {
    position: absolute;
    right: 80px;
    top: 20px;
  }

  .mobile-search-controls {
    display: none;
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    background: #06395D;
    padding: 20px;
    z-index: 100;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  }

  .search-open .mobile-search-controls {
    display: block;
  }
}
.search-controls input {
  padding: 15px 20px;
  border-radius: 3px;
  border: 1px solid #000;
  min-width: 40%;
  font-size: 24px;
}

.search-controls button {
  padding: 8px 25px;
}

.s-result {
  padding: 20px;
  margin: 5px 0;
  border: 1px solid #CCC;
}

.s-result__title {
  color: #06395D;
  margin-bottom: 10px;
}

.s-result__excerpt {
  line-height: 1.35em;
  margin-bottom: 0;
}
.s-result__excerpt strong {
  color: #444;
}

.s-result__type {
  color: #299EB7;
  font-size: 16px;
  line-height: 1em;
  margin-bottom: 10px;
}
.s-result__type span {
  font-weight: bold;
}

.s-result__dates p {
  color: #299EB7;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.pagination {
  font-size: 20px;
}
.pagination .current {
  color: #299EB7;
}
.pagination .page-numbers {
  padding: 2px;
}

.filters__row {
  margin-bottom: 20px;
}
@media only screen and (min-width: 1023px) {
  .filters__row .grid {
    margin-left: 0;
  }
  .filters__row .grid__item {
    padding-left: 0;
    width: auto;
  }
}

.sort-filter {
  display: inline-block;
  padding-left: 6px;
  padding-right: 6px;
}
.sort-filter.checked {
  color: #299EB7;
  font-weight: bold;
}
.sort-filter.checked, .sort-filter:hover {
  text-decoration: underline;
}

.filters__filter,
.sort-filter {
  position: relative;
}
.filters__filter input,
.sort-filter input {
  left: -10000em;
  overflow: hidden;
  position: absolute;
}

.search-clear.btn:hover, .c-password-protected input.search-clear[type=submit]:hover, .woocommerce .search-clear.button:hover, .shop-wrap .search-clear.button.alt:hover, .single-product .search-clear.single_add_to_cart_button:hover, #mc_embed_signup #mc-embedded-subscribe-form .search-clear#mc-embedded-subscribe:hover, .search-controls button.search-clear:hover,
.filters__filter.btn:hover,
.c-password-protected input.filters__filter[type=submit]:hover,
.woocommerce .filters__filter.button:hover,
.shop-wrap .filters__filter.button.alt:hover,
.single-product .filters__filter.single_add_to_cart_button:hover,
#mc_embed_signup #mc-embedded-subscribe-form .filters__filter#mc-embedded-subscribe:hover,
.search-controls button.filters__filter:hover {
  background-color: #EFEFEF;
}

.filters__filter {
  margin-bottom: 5px;
  text-align: center;
  width: 100%;
}
.filters__filter:focus, .filters__filter.checked {
  cursor: default;
  background-color: #06395D !important;
  color: #FFF !important;
}
@media only screen and (min-width: 1023px) {
  .filters__filter {
    display: inline-block;
    width: auto;
  }
}

.filters__clear,
.filters__submit {
  display: block;
  text-align: center;
  line-height: 3.1em;
  width: 100%;
}
@media only screen and (min-width: 1023px) {
  .filters__clear,
.filters__submit {
    display: inline-block;
    margin-right: 3px;
    width: auto;
  }
}

.filters__title.active {
  background-color: #475360 !important;
  color: white !important;
}

.collections-results {
  border: 1px solid #CCC;
}

.collections-results__continue {
  background-color: #F3F8FB;
  color: #06395D;
  display: block;
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 1.2em;
  margin-bottom: 10px;
  padding: 3% 30px 3% 3%;
  position: relative;
}
@media only screen and (min-width: 1023px) {
  .collections-results__continue {
    font-size: 0.95rem;
    padding: 1.5% 2%;
  }
  .collections-results__continue:hover {
    background-color: #ebf4f8;
  }
}
.collections-results__continue .fa, .collections-results__continue .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .collections-results__continue a:after, .collections-results__continue .c-poi-item__header-thumb-wrap:before {
  font-size: 30px;
  position: absolute;
  right: 15px;
  top: 17.5%;
}

.collections-results__what-is {
  display: inline-block;
  font-size: 0.8rem;
  margin-bottom: 10px;
  padding-left: 3%;
  text-decoration: underline;
}
@media only screen and (min-width: 1023px) {
  .collections-results__what-is {
    padding-left: 2%;
  }
}

@media only screen and (min-width: 1023px) {
  .sort__title {
    float: left;
  }

  .sort__types {
    float: right;
  }
}
.sort__types {
  font-size: 0.9rem;
}

/*------------------------------------*\
    Social Share
\*------------------------------------*/
.social-icons {
  background: #eaeaea;
  padding: 4px 8px;
  font-size: 80%;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.social-icons i {
  font-size: 120%;
  margin: 0 5px;
}
@media only screen and (min-width: 1023px) {
  .social-icons {
    position: absolute;
    right: 0;
    background: #eaeaea;
    font-size: 80%;
    font-weight: bold;
    z-index: 1001;
  }
  .social-icons a {
    display: block;
  }
  .social-icons i {
    font-size: 100%;
    margin: 0 3px;
  }
}

.single-event .social-icons {
  margin-top: -2%;
}

/*------------------------------------*\
    Anchor Navigation
\*------------------------------------*/
.anchor-navigation {
  background: #FFFFFF;
  position: relative;
  z-index: 990;
  font-size: 85%;
  padding: 0 5%;
}
@media only screen and (min-width: 1023px) {
  .anchor-navigation {
    max-width: 1200px;
    margin: 20px auto;
    font-size: 100%;
  }
}
.anchor-navigation a {
  border-right: 1px solid #eee;
  display: inline-block;
  padding: 4px 3px;
  font-weight: bold;
  color: #475360;
  margin: 5px 0 0 0;
  border: 1px solid #eee;
  width: 49%;
}
@media only screen and (min-width: 1023px) {
  .anchor-navigation a {
    padding: 5px 8px;
    width: 24%;
  }
}
.anchor-navigation a:hover {
  background: #eee;
}
.anchor-navigation .fa, .anchor-navigation .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .anchor-navigation a:after, .anchor-navigation .c-poi-item__header-thumb-wrap:before {
  margin-left: 6px;
  top: 1px;
  position: relative;
}
@media only screen and (min-width: 1023px) {
  .anchor-navigation .fa, .anchor-navigation .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .anchor-navigation a:after, .anchor-navigation .c-poi-item__header-thumb-wrap:before {
    float: right;
  }
}
.anchor-navigation .anchor-label {
  padding: 4px 3px;
}
@media only screen and (min-width: 1023px) {
  .anchor-navigation .anchor-label {
    padding: 5px 8px;
  }
}
.anchor-navigation .anchor-title {
  display: none;
}
.anchor-navigation .anchor-goto {
  display: block;
}
.anchor-navigation.fixed {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
  position: fixed;
  left: 0;
  width: 100%;
  top: 85px;
  max-width: none;
  padding: 0;
  margin: 0;
}
@media only screen and (min-width: 1023px) {
  .anchor-navigation.fixed {
    top: 0;
    margin: 0;
    text-align: center;
  }
}
.anchor-navigation.fixed a {
  border: none;
  border-right: 1px solid #eee;
  display: inline-block;
  width: auto;
  margin: 0;
}
.anchor-navigation.fixed .anchor-title {
  display: inline-block;
}
.anchor-navigation.fixed .anchor-goto {
  display: none;
}

/**
 * Faux Box Link Object
 *
 * Base upon The Guardian implementation of this model.
 *
 * Example:
 *  <div class="box u-faux-box-link">
 *      <h1>This is a title</h1>
 *      <p>This is a standfirst paragraph
 *          <a class="u-faux-box-link__promote" href="http://bbc.co.uk">This is a link</a></p>
 *      <a href="http://example.org" class="u-faux-link__overlay">Example!</a>
 *  </div>
 *
 */
.u-faux-box-link {
  position: relative;
}

.u-faux-box-link__overlay {
  position: absolute;
  opacity: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
  background: transparent;
  z-index: 0;
}

.u-faux-box-link__promote {
  position: relative;
  z-index: 1;
}

/*------------------------------------*\
    Facets
\*------------------------------------*/
.facet {
  color: #06395D;
  margin-bottom: 1em;
}

.facet__title {
  font-weight: bold;
  margin-bottom: 0.25em;
  color: #06395D;
}

.facet__list {
  margin: 0 0 0 0.5em;
  padding: 0 0 0 1em;
  border-left: 1px solid #F2F2F2;
  list-style: none;
}

.facet__link {
  display: block;
  color: #06395D;
  line-height: 1.375em;
  padding: 0.25em 0;
}
.facet__link--active {
  font-weight: bold;
}
.facet__link--active:hover:after {
  content: "x";
  display: inline-block;
  margin-left: 10px;
}
.facet__link:hover {
  text-decoration: underline;
}

.gform_wrapper form input {
  width: 100% !important;
}
.gform_wrapper form input.button {
  background-color: #299EB7;
  color: #FFFFFF;
  border: none;
  border-radius: 3px;
  font-weight: bold;
  font-size: 80%;
  padding: 10px;
}

.signup-description {
  font-size: 80%;
}

/*------------------------------------*\
    Blog Sidebar
\*------------------------------------*/
.sidebar-block {
  padding: 5%;
  padding-top: 20px;
  margin-bottom: 30px;
}

.sidebar--item {
  margin-bottom: 30px;
}

.sidebar__title {
  margin-top: 0;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.5em;
  color: #6D90AE;
}

.sidebar__divider {
  opacity: 0.8;
  margin-bottom: 10px;
}

.sidebar .events-filter__search-field {
  width: 100%;
}

.filter-inline li {
  margin-right: 15px;
}

.blog-filter__categories .selected a, .blog-filter__years .selected a {
  color: #299EB7;
}

.newsletter-link {
  background: #FFFFFF;
  display: inline-block;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 80%;
  color: #06395D;
  font-weight: bold;
}

.featured-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.featured-list__item {
  margin-bottom: 20px;
}
.featured-list__item:last-child {
  margin-bottom: 0;
}

.item__title {
  font-size: 90%;
  font-weight: 600;
}

.featured-list__image {
  width: 70px;
  height: 70px;
  float: left;
  display: none;
  margin-bottom: 10px;
  margin-right: 10px;
}
@media only screen and (min-width: 1200px) {
  .featured-list__image {
    display: block;
  }
}

.item__title {
  margin-bottom: 0;
}

/*------------------------------------*\
    Blog List
\*------------------------------------*/
.blog-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 60px;
}

.blog-filter-status {
  margin: 20px 0;
}
@media only screen and (min-width: 1023px) {
  .blog-filter-status {
    margin: 30px 0;
    font-size: 120%;
  }
}

.blog-filter-status__label {
  color: #6D90AE;
  margin-right: 10px;
}

.blog-filter-status__value {
  color: #06395D;
}

.blog-list__item {
  margin-bottom: 30px;
}

.item-info__category {
  margin-bottom: 15px;
}
.item-info__category a {
  color: #299EB7;
  margin-right: 10px;
  font-weight: 800;
}
.item-info__category a:hover {
  text-decoration: underline;
}

.item-info__title {
  font-weight: 600;
  margin-bottom: 10px;
}

.item-info__link {
  margin-bottom: 0;
  font-weight: 600;
}

.pagination {
  border-top: 2px solid #EEEEEE;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}
.pagination p {
  margin-bottom: 0;
}
@media only screen and (min-width: 1023px) {
  .pagination .put-left, .pagination .put-right {
    display: inline-block;
    vertical-align: middle;
    width: 49%;
    text-align: left;
  }
  .pagination .put-right {
    text-align: right;
  }
}

.pagination-controls {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pagination-controls li {
  display: inline-block;
}
.pagination-controls a {
  margin-left: 10px;
  margin-right: 10px;
}

/*------------------------------------*\
    Blog Single Page
\*------------------------------------*/
@media only screen and (min-width: 1023px) {
  .sidebar--overlay {
    margin-top: -90px;
    position: relative;
    z-index: 10;
  }
}

.blog-single--info-row {
  text-align: center;
  padding: 10px;
  font-size: 90%;
}
.blog-single--info-row a:hover {
  color: #06395D;
}
.blog-single--info-row .posted-by {
  color: #299EB7;
}
@media only screen and (min-width: 1023px) {
  .blog-single--info-row {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .blog-single--info-row .put-left, .blog-single--info-row .put-right {
    display: inline-block;
    vertical-align: middle;
    width: 49%;
    text-align: left;
  }
  .blog-single--info-row .put-left {
    padding-left: 25%;
  }
  .blog-single--info-row .put-right {
    text-align: right;
  }
}

.content-wrap--blog {
  max-width: 900px;
  margin-bottom: 10%;
}
.content-wrap--blog figure {
  max-width: 100%;
}
.content-wrap--blog img {
  max-width: 100%;
  height: auto;
}
.content-wrap--blog h2, .content-wrap--blog h3, .content-wrap--blog h4, .content-wrap--blog h5, .content-wrap--blog h6 {
  font-weight: bold;
}
.content-wrap--blog a {
  color: #299EB7;
  border-bottom: 1px solid;
}
.content-wrap--blog .blog-single--breadcrumb {
  color: inherit;
  border-bottom: none;
}

/*------------------------------------*\
    POI-MAP.SCSS
\*------------------------------------*/
/***  Points of Interest List and Google Map  ***/
/* ==========================================================================
   #FLAG
   ========================================================================== */
/**
 * The flag object is a design pattern similar to the media object, however it
 * utilises `display: table[-cell];` to give us control over the vertical
 * alignments of the text and image.
 *
 * http://csswizardry.com/2013/05/the-flag-object/
 *
 * 1. Allows us to control vertical alignments.
 * 2. Force the object to be the full width of its parent. Combined with [1],
 *    this makes the object behave in a quasi-`display: block;` manner.
 */
.o-flag {
  display: table;
  /* [1] */
  width: 100%;
  /* [2] */
}

/**
* Items within a flag object. There should only ever be one of each.
*
* 1. Default to aligning content to their middles.
*/
.o-flag__img,
.o-flag__body {
  display: table-cell;
  vertical-align: middle;
  /* [1] */
}

/**
* Flag images have a space between them and the body of the object.
*
* 1. Force `.flag__img` to take up as little space as possible:
*    https://pixelsvsbytes.com/2012/02/this-css-layout-grid-is-no-holy-grail/
*/
.o-flag__img {
  width: 1px;
  /* [1] */
  padding-right: 28px;
  /**
   * 1. Fixes problem with images disappearing.
   */
}
.o-flag__img > img {
  max-width: none;
  /* [1] */
}

/**
* The container for the main content of the flag object.
*
* 1. Forces the `.flag__body` to take up all remaining space.
*/
.o-flag__body {
  width: auto;
  /* [1] */
}
.o-flag__body,
.o-flag__body > :last-child {
  margin-bottom: 0;
}

.scroll-inner {
  padding-bottom: 200px;
}

.scroll-element {
  box-shadow: 10px 0 10px rgba(0, 0, 0, 0.3);
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: scroll;
  margin: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch;
}
@media only screen and (min-width: 1023px) {
  .scroll-element {
    width: 400px;
  }
}

.map-header {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 45px;
}

@media only screen and (max-width: 1022px) {
  .mobile-view-toggle {
    padding: 5px;
    text-align: center;
    position: fixed;
    z-index: 10;
    top: 28px;
    left: 0;
    background: #ece2d8;
    width: 100%;
  }
  .mobile-view-toggle .btn, .mobile-view-toggle .c-password-protected input[type=submit], .c-password-protected .mobile-view-toggle input[type=submit], .mobile-view-toggle .woocommerce .button, .woocommerce .mobile-view-toggle .button, .mobile-view-toggle .shop-wrap .button.alt, .shop-wrap .mobile-view-toggle .button.alt, .mobile-view-toggle .single-product .single_add_to_cart_button, .single-product .mobile-view-toggle .single_add_to_cart_button, .mobile-view-toggle #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .mobile-view-toggle #mc-embedded-subscribe, .mobile-view-toggle .search-controls button, .search-controls .mobile-view-toggle button {
    margin: 0px auto;
    font-size: 80%;
    display: block;
  }
  .mobile-view-toggle .view-map {
    display: none;
  }

  .flipped .view-map {
    display: block;
  }

  .flipped .view-list {
    display: none;
  }

  .flip {
    position: relative;
    perspective: 800px;
    height: calc(100% - 40px);
    top: 40px;
  }

  .card {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transition: transform 1s;
  }

  .pane {
    margin: 0;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .flipped .card {
    transform: rotateY(180deg);
  }

  .pane.pane--list {
    transform: rotateY(180deg);
  }

  .pane.pane--map {
    transform: rotateY(0deg);
  }
}
@media only screen and (min-width: 1023px) {
  .mobile-view-toggle {
    display: none;
  }
}

.c-poi-map {
  background: #ece2d8;
  position: relative;
  overflow: hidden;
  height: calc(100% - 45px);
  top: 45px;
}

.c-poi-map__poi-list {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  background: #ece2d8;
  padding-bottom: 150px;
}

.pane--list .scroll-element {
  -webkit-mask-image: linear-gradient(black 85%, transparent 98%);
}

.poi-list__header {
  background: #f1eae2;
  padding: 40px 25px 25px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.poi-list__heading {
  font-weight: bold;
  margin-bottom: 0;
}

.poi-list__subheading {
  opacity: 0.7;
}

.poi-list__desc {
  font-size: 90%;
}

.c-poi-item {
  padding: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.c-poi-item:hover {
  background: rgba(255, 255, 255, 0.4);
}

.c-poi-item__img {
  display: block;
  width: 60px;
}
@media only screen and (min-width: 1023px) {
  .c-poi-item__img {
    width: 75px;
  }
}

.c-poi-map__poi-detail-wrap {
  height: 100%;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.c-poi-map__poi-detail {
  height: 100%;
  width: 100%;
  position: absolute;
  background: #FFFFFF;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
@media only screen and (min-width: 1023px) {
  .c-poi-map__poi-detail {
    width: 400px;
    left: 150px;
  }
}

.c-poi-detail__header {
  display: block;
  height: 200px;
  width: 100%;
  background: #222;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
}

.c-poi-detail__header-img {
  height: 200px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -ms-filter: blur(5px);
  -o-filter: blur(5px);
  filter: blur(5px);
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.c-poi-item__header-thumb-wrap {
  margin-top: 25px;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.c-poi-item__header-thumb-wrap:before {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 36px;
  margin-top: -20px;
  margin-left: -18px;
  background: rgba(0, 0, 0, 0.4);
  padding: 9px;
  color: white;
  font-size: 90%;
  border-radius: 4px;
  z-index: 10;
  content: "";
}

.c-poi-detail__header:hover .c-poi-item__header-thumb-wrap {
  -webkit-transform: scale(1.2, 1.2);
  -moz-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  -o-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}

.c-poi-item__header-thumb {
  margin: 0px auto;
  position: relative;
  height: auto;
  border: 2px solid white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  max-width: 200px;
  max-height: 150px;
  width: auto;
  height: auto;
}

.c-poi-item__header-gallery-label {
  background: #06395D;
  border-radius: 20px;
  color: white;
  padding: 5px 20px;
  display: inline-block;
  position: relative;
  font-weight: bold;
  font-size: 70%;
  text-transform: uppercase;
  letter-spacing: 1px;
  top: -70px;
  line-height: 130%;
  border: 2px solid;
}

.c-poi-detail__body {
  padding: 30px;
}

.c-poi-detail__footer {
  font-weight: bold;
  width: 100%;
  background-color: #06395D;
  color: white;
}
@media only screen and (min-width: 1023px) {
  .c-poi-detail__footer {
    position: fixed;
    bottom: 0;
  }
}

.c-poi__more-link {
  display: block;
  font-size: 90%;
  padding: 10px 15px 3px;
}

.poi-map-detail-open .c-poi-map__poi-detail-wrap {
  z-index: 10;
  opacity: 1;
}

.poi-map-detail-open .c-poi-item__header-thumb {
  -webkit-animation-duration: 600ms;
  -moz-animation-duration: 600ms;
  -ms-animation-duration: 600ms;
  -o-animation-duration: 600ms;
  animation-duration: 600ms;
}

.poi-map-detail-open .c-poi-map__poi-list {
  -webkit-transform: translateX(-10px);
  -moz-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  -o-transform: translateX(-10px);
  transform: translateX(-10px);
  -webkit-animation-duration: 800ms;
  -moz-animation-duration: 800ms;
  -ms-animation-duration: 800ms;
  -o-animation-duration: 800ms;
  animation-duration: 800ms;
}

.c-poi-detail__close {
  z-index: 100;
  position: absolute;
  right: 0;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  color: #000000;
  width: 40px;
  height: 40px;
  line-height: 45px;
  background: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
@media only screen and (min-width: 1023px) {
  .c-poi-detail__close {
    right: -10px;
    top: 10px;
  }
}
.c-poi-detail__close:hover {
  background: #000000;
  color: #FFFFFF;
  -webkit-transform: scale(1.2, 1.2);
  -moz-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  -o-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}

.c-poi-map__map {
  position: absolute;
  height: 100%;
  width: 100%;
  background: #06395D;
}
@media only screen and (min-width: 1023px) {
  .c-poi-map__map {
    width: calc(100% - 400px);
    margin-left: 400px;
  }
}

.google-map {
  height: 100%;
}

/*------------------------------------*\
    Zoomify
\*------------------------------------*/
#openseadragon {
  width: 100%;
  background-image: radial-gradient(#F1FAFE, #B0B7BC);
  height: 100%;
  float: left;
}

#hightlight_info {
  position: absolute;
  left: 0;
  bottom: 0;
  float: none;
  background-color: rgba(250, 250, 250, 0.85);
  color: #06395D;
  display: none;
  height: 45vh;
  width: 100%;
  padding-top: 40px;
}
#hightlight_info .title {
  font-weight: 800;
  font-size: 170%;
  padding: 0 5%;
}
#hightlight_info .description {
  font-weight: 600;
  height: 30vh;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  padding: 0 5% 60px 5%;
  -webkit-mask-image: linear-gradient(black 70%, transparent 95%);
}
@media only screen and (min-width: 1023px) {
  #hightlight_info .description {
    height: 65vh;
    padding: 0 5% 15vh 5%;
  }
}
#hightlight_info.active {
  display: block;
}
@media only screen and (min-width: 1023px) {
  #hightlight_info {
    position: absolute;
    left: 0;
    width: 30%;
    height: 100%;
  }
  #hightlight_info .title {
    margin-top: 0;
  }
}

#control_zoom_out {
  display: none;
}
@media only screen and (min-width: 1023px) {
  #control_zoom_out {
    display: inline-block;
  }
}

#control_zoom_in {
  display: none;
}
@media only screen and (min-width: 1023px) {
  #control_zoom_in {
    display: inline-block;
  }
}

.openseadragon__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 50;
  list-style-type: none;
  margin-left: 0;
}
.openseadragon__toolbar li {
  display: inline-block;
  margin-left: 1px;
  background: rgba(27, 26, 26, 0.9);
  padding: 5px 10px;
  cursor: pointer;
  text-transform: uppercase;
  color: #FFFFFF;
  font-size: 70%;
  font-family: "BrandonText", sans-serif;
  font-weight: bold;
  letter-spacing: 3px;
  vertical-align: top;
  line-height: 1.9em;
}
.openseadragon__toolbar #control_fullscreen {
  display: none;
}
@media only screen and (min-width: 1023px) {
  .openseadragon__toolbar #control_fullscreen {
    display: inline-block;
  }
}
.openseadragon__toolbar .fa, .openseadragon__toolbar .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .openseadragon__toolbar a:after, .openseadragon__toolbar .c-poi-item__header-thumb-wrap:before {
  font-size: 140%;
  letter-spacing: 0;
}
@media only screen and (min-width: 1023px) {
  .openseadragon__toolbar {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: auto;
  }
  .openseadragon__toolbar li {
    padding: 10px 20px;
  }
}

.highlight {
  -webkit-border-radius: 1000px;
  -moz-border-radius: 1000px;
  -ms-border-radius: 1000px;
  -o-border-radius: 1000px;
  border-radius: 1000px;
  background-color: rgba(17, 167, 175, 0.5) !important;
  border: 2px solid #11A7AF;
}

.hightlight__close {
  position: absolute;
  top: 0;
  right: 0;
  color: #FFFFFF;
  background-color: #2F3841;
  padding: 5px 15px;
  cursor: pointer;
}

.hightlight__image {
  height: 200px;
  width: 100%;
  background-position: center;
  background-size: cover;
  margin-bottom: 30px;
  display: none;
}
@media only screen and (min-width: 1023px) {
  .hightlight__image {
    display: block;
  }
}

.hightlight__collection {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3% 0;
  text-align: center;
  color: #FFFFFF;
  background-color: #566472;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 70%;
  font-weight: 800;
}

.hightlight__title, .hightlight__description {
  padding: 5% 0;
}

.top-right-info {
  position: absolute;
  top: 40px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  width: 95%;
  max-width: 493px;
  text-align: center;
}
@media only screen and (min-width: 1023px) {
  .top-right-info {
    position: absolute;
    top: 50px;
    right: 10px;
    left: auto;
    margin: 0;
    text-align: right;
  }
}
.top-right-info p {
  margin-bottom: 0;
}

.zoom-instructions {
  background-color: rgba(6, 57, 93, 0.85);
  color: #FFFFFF;
  display: inline-block;
  line-height: 42px;
  text-align: center;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.zoom-instructions .zoom-instructions__link {
  display: block;
  margin-top: 20px;
  font-weight: bold;
}
.zoom-instructions .zoom-instructions__link .fa, .zoom-instructions .zoom-instructions__link .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .zoom-instructions .zoom-instructions__link a:after, .zoom-instructions .zoom-instructions__link .c-poi-item__header-thumb-wrap:before {
  margin-left: 5px;
  font-size: 90%;
}
.zoom-instructions .zoom-instructions__close-button {
  display: none;
}
.zoom-instructions .zoom-instructions__text {
  display: none;
}
.zoom-instructions.active {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  text-align: left;
  line-height: 140%;
  padding: 20px 40px 20px 20px;
  cursor: auto;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
.zoom-instructions.active .zoom-instructions__close-button {
  display: block;
}
.zoom-instructions.active .zoom-instructions__text {
  display: block;
}
.zoom-instructions.active .zoom-instructions__open-button {
  display: none;
}

.zoom-instructions__info {
  font-size: 80%;
  line-height: 140%;
  display: block;
}

.zoom-instructions__close-button, .feedback__close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.feedback__close-button {
  color: #06395D;
}

.feedback {
  background-color: rgba(255, 255, 255, 0.85);
  position: relative;
  display: inline-block;
  line-height: 42px;
  text-align: center;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  margin-top: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.feedback .feedback__close-button {
  display: none;
}
.feedback .feedback__text {
  display: none;
}
.feedback a {
  text-decoration: underline;
  font-weight: bold;
}
.feedback.active {
  display: block;
  padding: 20px 40px 20px 20px;
  width: 100%;
  height: auto;
  text-align: left;
  line-height: 140%;
  cursor: auto;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
.feedback.active .feedback__text {
  display: block;
}
.feedback.active .feedback__close-button {
  display: block;
}
.feedback.active .feedback__open-button {
  display: none;
}

.back-to-main {
  background-color: #06395D;
  color: #FFFFFF;
  padding: 3px 20px;
  text-align: center;
  font-size: 14px;
  height: 25px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 200;
}
@media only screen and (min-width: 1023px) {
  .back-to-main {
    text-align: left;
  }
}
.back-to-main .fa, .back-to-main .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .back-to-main a:after, .back-to-main .c-poi-item__header-thumb-wrap:before {
  margin-right: 10px;
}

/*------------------------------------*\
    Newsletter signup
\*------------------------------------*/
.c-dialog__bg {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2000;
  background-color: rgba(16, 16, 16, 0.7);
  animation: fade-in 200ms 1 both;
}

[data-a11y-dialog-native] .c-dialog__bg {
  display: none;
}

.c-dialog:not([aria-hidden=true]) > .dialog-content {
  animation: appear 400ms 150ms 1 both;
}

dialog[open] {
  display: block;
}

.c-dialog[aria-hidden=true] {
  display: none;
}

.site-wrap.state--dialog-open {
  animation: fade-in 200ms 1 both;
  filter: blur(5px);
}

dialog {
  display: none;
  border: none;
}

.state--dialog-open {
  display: block;
}

.dialog-overlay {
  z-index: 2001;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}

.dialog-wrapper input[type=text] {
  max-width: none;
}

.dialog-content {
  background-color: white;
  z-index: 2010;
  position: absolute;
  top: 70%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90%;
  padding: 30px;
  margin: 0;
}
@media only screen and (min-width: 1023px) {
  .dialog-content {
    width: 750px;
    top: 50%;
  }
}
.dialog-content .c-dialogue__close {
  font-size: 1.8em;
  line-height: 0;
  height: 35px;
}
@media only screen and (min-width: 767px) {
  .dialog-content .c-dialogue__close {
    font-size: 2em;
    height: 45px;
  }
}
.dialog-content button {
  position: absolute;
  right: 30px;
  top: 30px;
  height: 45px;
  padding-left: 15px;
  padding-right: 15px;
}
.dialog-content img {
  margin-bottom: 25px;
}
@media only screen and (min-width: 767px) {
  .dialog-content img {
    margin-bottom: 35px;
  }
}
.dialog-content h3 {
  font-size: 1.5em;
  font-weight: bold;
  color: black;
  margin-bottom: 10px;
}
@media only screen and (min-width: 767px) {
  .dialog-content h3 {
    font-size: 1.9em;
  }
}
.dialog-content p {
  font-size: 0.9em;
  color: grey;
  margin: 0 auto;
  font-weight: bold;
}
@media only screen and (min-width: 767px) {
  .dialog-content p {
    font-size: 1.1em;
  }
}
.dialog-content label {
  font-size: 1em;
  margin: 0;
  font-weight: bold;
  color: black;
}
@media only screen and (min-width: 767px) {
  .dialog-content label {
    font-size: 1.2em;
    margin: 20px 0 5px 0;
  }
}
.dialog-content input {
  line-height: 1.8;
}
@media only screen and (min-width: 767px) {
  .dialog-content input {
    line-height: 2;
  }
}
.dialog-content input[type=submit] {
  font-size: 0.9em !important;
  line-height: 30px !important;
}
@media only screen and (min-width: 767px) {
  .dialog-content input[type=submit] {
    font-size: 1.1em !important;
    line-height: 40px !important;
  }
}
.dialog-content .input-group li {
  font-size: 0.8em;
  display: inline-block;
}
.dialog-content .input-group li label {
  margin: 5px 10px 0 0 !important;
  padding-left: 5px !important;
  color: grey;
}
.dialog-content ul {
  margin-bottom: 10px;
}

.c-password-protected {
  max-width: 700px;
  margin: 10% auto;
  padding: 20px;
}
.c-password-protected input[type=password] {
  width: 100%;
  max-width: 400px;
}
.c-password-protected p {
  text-align: center;
}
.c-password-protected p input {
  margin-top: 30px !important;
}

/*------------------------------------*\
    Entertaining Page template - page-entertaining.php 
\*------------------------------------*/
.page-template-page-entertaining {
  background-image: url(https://waddesdon-live.s3-eu-west-1.amazonaws.com/wp-content/uploads/2020/12/Corporate-Manor-Blue-Dining-Room-3000x1875-scaled-1.jpg);
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  overflow: scroll;
  margin-top: 0;
}
.page-template-page-entertaining .grid__item {
  margin: 0 auto;
  display: block;
}
.page-template-page-entertaining .gform_wrapper,
.page-template-page-entertaining .gform_confirmation_wrapper {
  padding: 50px;
  color: black;
  background: rgba(221, 230, 235, 0.6);
}
.page-template-page-entertaining .gform_wrapper li.gfield,
.page-template-page-entertaining .gform_confirmation_wrapper li.gfield {
  padding-right: 0 !important;
}

/**********************************************************************************************************************************************************
***  Buttons -- Need Work - not finished
**********************************************************************************************************************************************************/
.btn, .woocommerce .shop-wrap .button, .woocommerce .btn, .woocommerce .button, .shop-wrap .button.alt, .woocommerce a.button, .single-product .single_add_to_cart_button, #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, .search-controls button, .woocommerce .search-controls button, .search-controls .woocommerce button, .c-password-protected input[type=submit] {
  background-color: #F99E2F;
  color: #101010;
  border-radius: 0;
  font-weight: bold;
  font-size: 80%;
}
.btn:hover, .woocommerce .button:hover, .shop-wrap .button.alt:hover, .single-product .single_add_to_cart_button:hover, #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:hover, .search-controls button:hover, .c-password-protected input[type=submit]:hover {
  background-color: #f89216;
}
.btn--arrow {
  position: relative;
  padding-right: 2em;
}
.btn--arrow::after {
  content: "";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0.75em;
}
.btn.btn--hollow, .woocommerce .btn--hollow.button, .shop-wrap .btn--hollow.button.alt, .single-product .btn--hollow.single_add_to_cart_button, #mc_embed_signup #mc-embedded-subscribe-form .btn--hollow#mc-embedded-subscribe, .search-controls button.btn--hollow, .c-password-protected input.btn--hollow[type=submit] {
  background: transparent;
  border: 1px solid #475360 !important;
  color: #475360;
}
.btn.btn--white-hollow, .woocommerce .btn--white-hollow.button, .shop-wrap .btn--white-hollow.button.alt, .single-product .btn--white-hollow.single_add_to_cart_button, #mc_embed_signup #mc-embedded-subscribe-form .btn--white-hollow#mc-embedded-subscribe, .search-controls button.btn--white-hollow, .c-password-protected input.btn--white-hollow[type=submit] {
  background: transparent;
  border: 1px solid #FFFFFF !important;
  color: #FFFFFF;
}
.btn.btn--flint, .woocommerce .btn--flint.button, .shop-wrap .btn--flint.button.alt, .single-product .btn--flint.single_add_to_cart_button, #mc_embed_signup #mc-embedded-subscribe-form .btn--flint#mc-embedded-subscribe, .search-controls button.btn--flint, .c-password-protected input.btn--flint[type=submit] {
  background-color: #475360;
}
.btn.btn--flint:hover, .woocommerce .btn--flint.button:hover, .shop-wrap .btn--flint.button.alt:hover, .single-product .btn--flint.single_add_to_cart_button:hover, #mc_embed_signup #mc-embedded-subscribe-form .btn--flint#mc-embedded-subscribe:hover, .search-controls button.btn--flint:hover, .c-password-protected input.btn--flint[type=submit]:hover {
  background-color: #52606f;
}
.btn .fa, .btn .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .btn a:after, .woocommerce .button .fa, .woocommerce .button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .woocommerce .button a:after, .shop-wrap .button.alt .fa, .shop-wrap .button.alt .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .shop-wrap .button.alt a:after, .single-product .single_add_to_cart_button .fa, .single-product .single_add_to_cart_button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .single-product .single_add_to_cart_button a:after, #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe .fa, #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe a:after, .search-controls button .fa, .search-controls button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .search-controls button a:after, .c-password-protected input[type=submit] .fa, .c-password-protected input[type=submit] .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .c-password-protected input[type=submit] a:after, .btn .c-poi-item__header-thumb-wrap:before, .woocommerce .button .c-poi-item__header-thumb-wrap:before, .shop-wrap .button.alt .c-poi-item__header-thumb-wrap:before, .single-product .single_add_to_cart_button .c-poi-item__header-thumb-wrap:before, #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe .c-poi-item__header-thumb-wrap:before, .search-controls button .c-poi-item__header-thumb-wrap:before, .c-password-protected input[type=submit] .c-poi-item__header-thumb-wrap:before {
  padding-right: 5px;
}

.btn--secondary {
  background-color: #475360;
  color: #FFFFFF;
}
.btn--secondary:hover {
  background-color: #3c4651;
}

.btn--ghost {
  background-color: transparent;
  color: currentColor;
  border: 2px solid currentColor;
}
.btn--ghost:hover {
  background: rgba(71, 83, 96, 0.2);
}

.cta {
  display: inline;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  text-shadow: 0.03em 0 transparent, -0.03em 0 transparent, 0 0.03em transparent, 0 -0.03em transparent, 0.06em 0 transparent, -0.06em 0 transparent, 0.09em 0 transparent, -0.09em 0 transparent, 0.12em 0 transparent, -0.12em 0 transparent, 0.15em 0 transparent, -0.15em 0 transparent;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 2px 2px;
  background-repeat: repeat-x;
  background-position: 0% 100%;
  color: currentColor;
  text-decoration: none;
  padding: 5px 1.3em 5px 0;
  border-bottom: 0 !important;
  -webkit-transition: background-size 150ms ease-in-out;
  -moz-transition: background-size 150ms ease-in-out;
  -ms-transition: background-size 150ms ease-in-out;
  -o-transition: background-size 150ms ease-in-out;
  transition: background-size 150ms ease-in-out;
  font-size: 0.9em;
}
.cta::selection {
  text-shadow: 0.03em 0 rgba(16, 16, 16, 0.1), -0.03em 0 rgba(16, 16, 16, 0.1), 0 0.03em rgba(16, 16, 16, 0.1), 0 -0.03em rgba(16, 16, 16, 0.1), 0.06em 0 rgba(16, 16, 16, 0.1), -0.06em 0 rgba(16, 16, 16, 0.1), 0.09em 0 rgba(16, 16, 16, 0.1), -0.09em 0 rgba(16, 16, 16, 0.1), 0.12em 0 rgba(16, 16, 16, 0.1), -0.12em 0 rgba(16, 16, 16, 0.1), 0.15em 0 rgba(16, 16, 16, 0.1), -0.15em 0 rgba(16, 16, 16, 0.1);
  background: rgba(16, 16, 16, 0.1);
}
.cta::-moz-selection {
  text-shadow: 0.03em 0 rgba(16, 16, 16, 0.1), -0.03em 0 rgba(16, 16, 16, 0.1), 0 0.03em rgba(16, 16, 16, 0.1), 0 -0.03em rgba(16, 16, 16, 0.1), 0.06em 0 rgba(16, 16, 16, 0.1), -0.06em 0 rgba(16, 16, 16, 0.1), 0.09em 0 rgba(16, 16, 16, 0.1), -0.09em 0 rgba(16, 16, 16, 0.1), 0.12em 0 rgba(16, 16, 16, 0.1), -0.12em 0 rgba(16, 16, 16, 0.1), 0.15em 0 rgba(16, 16, 16, 0.1), -0.15em 0 rgba(16, 16, 16, 0.1);
  background: rgba(16, 16, 16, 0.1);
}
.cta *,
.cta *:after, .cta:after,
.cta *:before, .cta:before {
  text-shadow: none;
}
.cta:visited {
  color: currentColor;
}
.cta::after {
  font-family: "FontAwesome";
  font-weight: 400;
  content: "";
  font-size: 80%;
  margin-left: 0.7em;
  position: absolute;
  bottom: 0.3em;
  display: inline-block;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  color: currentColor;
}
.cta:hover {
  text-shadow: 0.03em 0 transparent, -0.03em 0 transparent, 0 0.03em transparent, 0 -0.03em transparent, 0.06em 0 transparent, -0.06em 0 transparent, 0.09em 0 transparent, -0.09em 0 transparent, 0.12em 0 transparent, -0.12em 0 transparent, 0.15em 0 transparent, -0.15em 0 transparent;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 4px 4px;
  background-repeat: repeat-x;
  background-position: 0% 100%;
  color: currentColor;
  text-decoration: none;
}
.cta:hover::selection {
  text-shadow: 0.03em 0 rgba(16, 16, 16, 0.1), -0.03em 0 rgba(16, 16, 16, 0.1), 0 0.03em rgba(16, 16, 16, 0.1), 0 -0.03em rgba(16, 16, 16, 0.1), 0.06em 0 rgba(16, 16, 16, 0.1), -0.06em 0 rgba(16, 16, 16, 0.1), 0.09em 0 rgba(16, 16, 16, 0.1), -0.09em 0 rgba(16, 16, 16, 0.1), 0.12em 0 rgba(16, 16, 16, 0.1), -0.12em 0 rgba(16, 16, 16, 0.1), 0.15em 0 rgba(16, 16, 16, 0.1), -0.15em 0 rgba(16, 16, 16, 0.1);
  background: rgba(16, 16, 16, 0.1);
}
.cta:hover::-moz-selection {
  text-shadow: 0.03em 0 rgba(16, 16, 16, 0.1), -0.03em 0 rgba(16, 16, 16, 0.1), 0 0.03em rgba(16, 16, 16, 0.1), 0 -0.03em rgba(16, 16, 16, 0.1), 0.06em 0 rgba(16, 16, 16, 0.1), -0.06em 0 rgba(16, 16, 16, 0.1), 0.09em 0 rgba(16, 16, 16, 0.1), -0.09em 0 rgba(16, 16, 16, 0.1), 0.12em 0 rgba(16, 16, 16, 0.1), -0.12em 0 rgba(16, 16, 16, 0.1), 0.15em 0 rgba(16, 16, 16, 0.1), -0.15em 0 rgba(16, 16, 16, 0.1);
  background: rgba(16, 16, 16, 0.1);
}
.cta:hover *,
.cta:hover *:after, .cta:hover:after,
.cta:hover *:before, .cta:hover:before {
  text-shadow: none;
}
.cta:hover:visited {
  color: currentColor;
}
p + .cta::before {
  display: block;
  margin-top: 0.4rem;
  content: "";
}
@media only screen and (min-width: 1023px) {
  p + .cta::before {
    margin-top: 0.8rem;
  }
}
.cta + .cta::before {
  margin-top: 0.2rem;
}
@media only screen and (min-width: 1023px) {
  .cta + .cta::before {
    margin-top: 0.4rem;
  }
}

/*------------------------------------*\
    Draw Attention plugin - Interactive map overrides
\*------------------------------------*/
.hotspots-container .hotspots-interaction {
  margin: 0;
}
.hotspots-container .hotspots-placeholder {
  padding: 1em 1em 1.25em;
}
@media only screen and (min-width: 1023px) {
  .hotspots-container .hotspots-placeholder {
    padding: 1em 1.5em 1.25em;
  }
}
.hotspots-container .hotspot-title {
  margin-bottom: 0.5em;
  line-height: 1.2;
}
.hotspots-container .hotspot-content p {
  line-height: 1.35;
}

/**
 * Tell inuit.css when breakpoints start.
 */
/**********************************************************************************************************************************************************
***  Global Styling
**********************************************************************************************************************************************************/
* {
  -webkit-font-smoothing: antialiased;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-size: 100%;
  font-family: "BrandonText", sans-serif;
  color: #475360;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

h2, h3, h4, h5, h6 {
  font-weight: normal;
}

h1, h2 {
  font-weight: lighter;
}

/**********************************************************************************************************************************************************
***  Layout
**********************************************************************************************************************************************************/
.max-width-wrap {
  max-width: 1200px;
  margin: 0px auto;
  padding: 0 5%;
}

.max-width-wrap--wide, .content-row--wide .max-width-wrap, .shop-wrap, .shop-wrap .max-width-wrap {
  max-width: 1600px;
  margin: 0px auto;
  padding: 0 5%;
}

/**********************************************************************************************************************************************************
***  General & Helpers
**********************************************************************************************************************************************************/
.img-bg {
  position: relative;
  background-size: cover;
  overflow: auto;
}
.img-bg:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: inherit !important;
}

.fr-overlay-background {
  background: #475360 !important;
  opacity: 0.8 !important;
}

.handheld, .mobile {
  position: inherit !important;
}

@media only screen and (max-width: 1022px) {
  .fr-caption {
    font-size: 85%;
  }
}

/**********************************************************************************************************************************************************
***  Typography

	Use wherever long form text is used - .el__intro, .el--text etc, includes all the common typography setup

**********************************************************************************************************************************************************/
.txt-block h1, .txt-block h2, .txt-block h3, .txt-block h4, .txt-block h5, .txt-block h6 {
  margin-top: 0.5em;
  margin-bottom: 0.8em;
}
@media only screen and (min-width: 1023px) {
  .txt-block h1, .txt-block h2, .txt-block h3, .txt-block h4, .txt-block h5, .txt-block h6 {
    margin-top: 1em;
  }
}
.txt-block h4, .txt-block h5, .txt-block h6 {
  font-weight: bold;
}
.txt-block h2 {
  font-size: 180%;
}
@media only screen and (min-width: 1023px) {
  .txt-block h2 {
    font-size: 220%;
  }
}
.txt-block p {
  margin-bottom: 0.8em;
  font-size: 100%;
}
@media only screen and (min-width: 1023px) {
  .txt-block p {
    font-size: 120%;
  }
}
.txt-block a:not(.btn, .cta) {
  border-bottom: 1px solid;
}
@media only screen and (max-width: 1022px) {
  .txt-block a:not(.btn, .cta) {
    font-size: 80%;
  }
}
.txt-block .lead-p {
  font-size: 140%;
}
@media only screen and (max-width: 1022px) {
  .txt-block .lead-p {
    font-size: 80%;
  }
}
.txt-block .smaller-p {
  font-size: 90%;
}

.row-title {
  margin-top: 0.5em;
  margin-bottom: 0.8em;
}
@media only screen and (min-width: 1023px) {
  .row-title {
    margin-top: 1em;
  }
}

/**********************************************************************************************************************************************************
***  Figure elements - Common to many elements
**********************************************************************************************************************************************************/
.fig {
  position: relative;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 1023px) {
  .fig {
    margin-bottom: 1.5rem;
  }
}
.fig img {
  width: 100%;
  height: auto;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
}
.fig figcaption {
  position: relative;
  font-size: 70%;
  background: rgba(71, 83, 96, 0.75);
  color: #FFFFFF;
  padding: 5px 10px;
  font-weight: bold;
  text-align: left;
}
@media only screen and (min-width: 1023px) {
  .fig figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
  }
}
.fig .btn-over-img {
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 0;
}
.fig .fig__text, .fig .with-thumbnail .el__heading, .with-thumbnail .fig .el__heading {
  background: rgba(71, 83, 96, 0.8);
  padding: 2%;
  color: #FFFFFF;
  margin: 0;
}
@media only screen and (min-width: 1023px) {
  .fig .fig__text, .fig .with-thumbnail .el__heading, .with-thumbnail .fig .el__heading {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 600px;
  }
}
.fig .fig__title {
  margin-bottom: 0;
  font-size: 150%;
}
@media only screen and (min-width: 1023px) {
  .fig .fig__title {
    font-size: 220%;
  }
}
.fig .fig__content {
  font-size: 100%;
  color: #FFFFFF;
}
.fig .fig__content blockquote {
  color: #FFFFFF;
}
.fig .fig__caption {
  margin-left: 4px;
  margin-right: 4px;
}
.fig.fig--vid-thumb a:after {
  content: "";
  position: absolute;
  top: calc(50% - 40px);
  left: 50%;
  margin-left: -45px;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.fig.fig--vid-thumb:hover a:after {
  color: #FFFFFF;
  font-size: 85px;
  margin-left: -48px;
  top: calc(50% - 43px);
}

.masthead-hero {
  margin: 0;
}

.fig__credit {
  display: none;
}
.fig__credit.active {
  display: block;
  margin-left: 6px;
  margin-right: 6px;
}

.fr-caption .fig__caption {
  margin-left: 4px;
  margin-right: 4px;
}

.toggle-image-credit {
  font-size: 110%;
  display: inline-block;
  vertical-align: middle;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 17px;
}
.toggle-image-credit:hover {
  cursor: pointer;
}

/**********************************************************************************************************************************************************
***  Content Rows
**********************************************************************************************************************************************************/
/**
	Content Wrapper
**/
.content-wrap {
  padding-top: 3%;
  padding-bottom: 2%;
}

.your-visit .content-wrap {
  padding-top: 0;
}

/**
	Content Row - can contain .h-row and .el elements (below)
**/
.content-row img {
  width: 100%;
  height: auto;
}

.content-row.bg {
  padding: 2% 0 3%;
}

.content-row.white-bg {
  padding: 0;
}

.content-row.pad {
  padding: 2% 0 3%;
  margin-bottom: 2%;
}

.content-row-inner.bg {
  padding: 3%;
}
@media only screen and (max-width: 1022px) {
  .content-row-inner.bg.white-bg {
    padding: 0;
  }
}

/**
	Header Row
**/
.h-row--leftright .h-row__page-title {
  display: inline-block;
  width: 40%;
  vertical-align: top;
}
.h-row--leftright .h-row__lead-p {
  display: inline-block;
  width: 59%;
  vertical-align: top;
}
.h-row--leftright .h-row__lead-p p {
  margin: 0;
}

.h-row__breadcrumb {
  text-transform: uppercase;
  font-size: 90%;
  opacity: 0.7;
  margin: 0 0 2px 0;
}

.h-row__page-title {
  font-size: 160%;
  margin: 10px 0;
}

@media only screen and (min-width: 1023px) {
  .h-row__page-title {
    font-size: 300%;
    margin-bottom: 20px;
  }
}
.page-template-page-landing .h-row__page-title {
  text-transform: uppercase;
}

.h-row__lead-p {
  font-size: 100%;
  margin-bottom: 20px;
  color: #475360;
}

@media only screen and (min-width: 1023px) {
  .h-row__lead-p {
    font-size: 140%;
    line-height: 140%;
  }
}
@media only screen and (min-width: 1023px) {
  .masthead-hero--title-overlay {
    position: relative;
  }
  .masthead-hero--title-overlay .h-row {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #FFFFFF;
    padding: 1% 5%;
    z-index: 2;
  }
  .masthead-hero--title-overlay .h-row__lead-p {
    color: #FFFFFF;
    max-width: 1100px;
  }
  .masthead-hero--title-overlay:before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 250px;
    z-index: -1;
    background: rgba(16, 16, 16, 0);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(16, 16, 16, 0) 0%, #101010 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(16, 16, 16, 0)), color-stop(100%, #101010));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(16, 16, 16, 0) 0%, #101010 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(16, 16, 16, 0) 0%, #101010 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(16, 16, 16, 0) 0%, #101010 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, rgba(16, 16, 16, 0) 0%, #101010 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
    /* IE6-9 */
    z-index: 0;
    bottom: 0;
    top: auto;
    height: 50%;
    opacity: 0.6;
  }
}
.highlights-row {
  padding: 0 3px 3%;
}
.highlights-row .max-width-wrap {
  max-width: 100%;
  padding: 0;
}
.highlights-row .grid {
  margin-left: -3px;
}
.highlights-row .grid .grid__item {
  padding-left: 3px;
  padding-bottom: 3px;
}
.highlights-row .row-title {
  background: #efefef;
  margin: 0;
  padding: 2%;
}

/**********************************************************************************************************************************************************
***  Element Rows and Columns - out master element
**********************************************************************************************************************************************************/
/**
	1 Block
**/
.el {
  display: block;
}
.el.bg {
  padding: 5%;
}
@media only screen and (max-width: 1022px) {
  .el.bg.transparent-bg {
    padding: 0;
  }
}
@media only screen and (min-width: 1023px) {
  .el {
    margin-bottom: 30px;
  }
}

.el_grid__item {
  height: 50px;
  background-color: #D3D3D3;
}

.el__subheading {
  font-size: 85%;
  font-weight: bold;
  opacity: 0.7;
}

.el__info .el__cta {
  display: inline-block;
  font-weight: bold;
}
.el__info .el__cta:after {
  padding: 0 0 0 6px;
  content: "›";
}
.el__info .el__cta:hover {
  opacity: 1;
}

.event-block .el__cta {
  display: inline-block;
}
.event-block .el__cta.btn, .event-block .woocommerce .el__cta.button, .woocommerce .event-block .el__cta.button, .event-block .shop-wrap .el__cta.button.alt, .shop-wrap .event-block .el__cta.button.alt, .event-block .single-product .el__cta.single_add_to_cart_button, .single-product .event-block .el__cta.single_add_to_cart_button, .event-block #mc_embed_signup #mc-embedded-subscribe-form .el__cta#mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .event-block .el__cta#mc-embedded-subscribe, .event-block .search-controls button.el__cta, .search-controls .event-block button.el__cta, .event-block .c-password-protected input.el__cta[type=submit], .c-password-protected .event-block input.el__cta[type=submit] {
  margin-left: 20px;
}

/**
	 Block intro text conent
**/
@media only screen and (min-width: 1023px) and (max-width: 1199px) {
  .el__intro {
    font-size: 90%;
  }
}
/**
	3. Modifiers
**/
/**
	3.1 Text element
**/
.el--text {
  padding-bottom: 20px;
}
.el--text a:not(.btn, .cta) {
  color: inherit;
  border-bottom: 1px solid currentColor;
}
.el--text p:last-of-type {
  margin: 0;
}

/**
	3.2 Image element
**/
.el--img.img-portrait-800h-nocrop {
  text-align: center;
}
.el--img.img-portrait-800h-nocrop img {
  max-height: 600px;
  max-width: 100%;
  width: auto;
  display: block;
  margin: 0px auto;
}
.el--img.img-portrait-800h-nocrop .fig {
  display: inline-block;
}

.el--fw-img-bg {
  background-position: center;
  background-size: cover;
  position: relative;
}

/**
	3.3 Full Witdth Image element
**/
.el--fw-img {
  margin-bottom: 0;
}
.el--fw-img .fig {
  margin: 0;
}

/**
	3.4 Image Gallery element
**/
.el--gallery figcaption {
  display: none;
}

/**
	3.5 Video element
**/
.el--video a.fresco {
  display: inline-block;
  position: relative;
}

/**
    Embedded content.
**/
.iframe-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.issuu {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 35px;
  height: 0;
  overflow: hidden;
}
.issuu iframe {
  position: absolute;
  height: 95% !important;
}

.issuuembed {
  width: auto !important;
  height: auto !important;
}

/**
	3.X Quote element
**/
.el--quote blockquote {
  position: relative;
  padding-left: 35px;
  padding-right: 20px;
  margin-bottom: 0;
  color: #299EB7;
}
.el--quote blockquote:before {
  content: "“";
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 55px;
  color: #B6B1A5;
}
.el--quote blockquote:after {
  content: "”";
  position: absolute;
  bottom: -8px;
  right: 0;
  font-size: 55px;
  color: #B6B1A5;
}
.el--quote blockquote p:after, .el--quote blockquote p:before {
  display: none;
}
@media only screen and (min-width: 1023px) {
  .el--quote blockquote p {
    font-size: 133%;
  }
}
.el--quote cite {
  position: relative;
  padding-left: 10px;
  display: block;
  margin-top: 1em;
  font-style: normal;
  color: #475360;
}
.el--quote cite:before {
  content: "—";
  left: 0;
  top: 10px;
  margin-right: 5px;
  font-style: normal;
}

.turq-bg .el--quote,
.pink-bg .el--quote,
.orange-bg .el--quote,
.navy-bg .el--quote,
.green-bg .el--quote,
.flint-bg .el--quote,
.turq-bg.el--quote,
.pink-bg.el--quote,
.orange-bg.el--quote,
.navy-bg.el--quote,
.green-bg.el--quote,
.flint-bg.el--quote {
  color: #FFFFFF;
}
.turq-bg .el--quote blockquote:after,
.turq-bg .el--quote blockquote:before,
.turq-bg .el--quote blockquote,
.turq-bg .el--quote cite,
.pink-bg .el--quote blockquote:after,
.pink-bg .el--quote blockquote:before,
.pink-bg .el--quote blockquote,
.pink-bg .el--quote cite,
.orange-bg .el--quote blockquote:after,
.orange-bg .el--quote blockquote:before,
.orange-bg .el--quote blockquote,
.orange-bg .el--quote cite,
.navy-bg .el--quote blockquote:after,
.navy-bg .el--quote blockquote:before,
.navy-bg .el--quote blockquote,
.navy-bg .el--quote cite,
.green-bg .el--quote blockquote:after,
.green-bg .el--quote blockquote:before,
.green-bg .el--quote blockquote,
.green-bg .el--quote cite,
.flint-bg .el--quote blockquote:after,
.flint-bg .el--quote blockquote:before,
.flint-bg .el--quote blockquote,
.flint-bg .el--quote cite,
.turq-bg.el--quote blockquote:after,
.turq-bg.el--quote blockquote:before,
.turq-bg.el--quote blockquote,
.turq-bg.el--quote cite,
.pink-bg.el--quote blockquote:after,
.pink-bg.el--quote blockquote:before,
.pink-bg.el--quote blockquote,
.pink-bg.el--quote cite,
.orange-bg.el--quote blockquote:after,
.orange-bg.el--quote blockquote:before,
.orange-bg.el--quote blockquote,
.orange-bg.el--quote cite,
.navy-bg.el--quote blockquote:after,
.navy-bg.el--quote blockquote:before,
.navy-bg.el--quote blockquote,
.navy-bg.el--quote cite,
.green-bg.el--quote blockquote:after,
.green-bg.el--quote blockquote:before,
.green-bg.el--quote blockquote,
.green-bg.el--quote cite,
.flint-bg.el--quote blockquote:after,
.flint-bg.el--quote blockquote:before,
.flint-bg.el--quote blockquote,
.flint-bg.el--quote cite {
  color: #FFFFFF;
}

.sky-bg.el--quote blockquote {
  color: #475360;
}

/**
	3.6 'Block' element
**/
.el--block {
  margin-bottom: 5%;
}
.el--block .el__intro p:last-of-type {
  margin: 0;
}
.el--block.img-bg .el__link, .el--block.img-bg .el__info, .el--block.img-bg .fig {
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 1023px) {
  .columns-1 .el--block .fig {
    float: left;
    max-width: 50%;
    margin-right: 5%;
    margin-bottom: 0;
  }
}
/**
	3.6.1 Helper classes for borders
**/
.with-border {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.border-left {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.border-right {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

/**
	3.6.5 'Block' element
**/
.el--linkblock {
  margin-bottom: 10px;
}
.el--linkblock .el__info {
  margin: 20px 0;
}
.el--linkblock .el__link-item {
  display: inline-block;
  width: 100%;
  padding: 3px 0;
  color: #475360;
  font-size: 115%;
  font-weight: bold;
}
.el--linkblock .el__link-item:after {
  padding: 0 0 0 6px;
  content: "›";
}
@media only screen and (min-width: 1200px) {
  .el--linkblock .el__link-item {
    width: 49%;
    font-size: 110%;
  }
}

.with-thumbnail {
  position: relative;
}
/**
	3.7 'Highlight' element (image with title and gradient over)
**/
.el--highlight {
  position: relative;
  margin-bottom: 0;
}
.el--highlight .fig {
  margin: 0;
}
.el--highlight .el__info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #FFFFFF;
  z-index: 10;
  padding: 5% 8%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
}
.el--highlight .el__heading {
  margin: 0;
}

.cart-age-verification__form {
  margin: 0 auto;
  width: 75%;
}

.cart-age-verification__select {
  display: block;
  padding: 0 0 0 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid #ccc;
  white-space: nowrap;
  color: #444;
  text-decoration: none;
  border-radius: 3px;
  background-clip: padding-box;
  user-select: none;
  background-color: #fff;
  font-weight: 400;
  height: 40px;
  width: 100%;
}

.cart-age-verification {
  padding: 1em 2em 1em 2em !important;
  margin: 0 0 2em !important;
  position: relative;
  background-color: #f7f6f7;
  color: #515151;
  border-top: 3px solid #b81c23;
  list-style: none !important;
  width: auto;
  word-wrap: break-word;
}
.cart-age-verification .required {
  color: #b81c23;
  font-weight: 700;
  border: 0;
}

.woocommerce div.product .stock.in-stock {
  display: none;
}
.woocommerce div.product .woocommerce-product-gallery__image a {
  height: 0;
  margin-bottom: 0;
  padding-bottom: 100%;
  position: relative;
  display: block;
}
@media only screen and (min-width: 1023px) {
  .woocommerce div.product .woocommerce-product-gallery__image a {
    padding-bottom: 70%;
  }
}
.woocommerce div.product .woocommerce-product-gallery__image a img {
  object-fit: contain;
  max-width: 100%;
  width: auto;
  min-width: 300px;
  position: absolute;
  top: 0;
  height: 90%;
}
@media only screen and (min-width: 767px) {
  .woocommerce div.product .woocommerce-product-gallery__image a img {
    height: 100%;
  }
}

.columns-3 .el__heading,
.columns-4 .el__heading,
.columns-5 .el__heading,
.columns-6 .el__heading {
  font-size: 140%;
}

@media only screen and (max-width: 1022px) {
  .columns-4, .columns-5, .columns-6 {
    width: 50%;
  }
  .columns-4 .el--linkblock .el__heading, .columns-5 .el--linkblock .el__heading, .columns-6 .el--linkblock .el__heading {
    font-size: 120%;
  }
}

@media only screen and (min-width: 767px) and (max-width: 1022px) {
  .columns-5, .columns-6 {
    width: 33.333%;
  }
}

@media only screen and (max-width: 1022px) {
  .mobile--full-width .columns-4, .mobile--full-width .columns-5, .mobile--full-width .columns-6 {
    width: 100%;
  }
}

.btn .fa, .woocommerce .button .fa, .shop-wrap .button.alt .fa, .single-product .single_add_to_cart_button .fa, #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe .fa, .search-controls button .fa, .c-password-protected input[type=submit] .fa, .btn .c-poi-item__header-thumb-wrap:before, .woocommerce .button .c-poi-item__header-thumb-wrap:before, .shop-wrap .button.alt .c-poi-item__header-thumb-wrap:before, .single-product .single_add_to_cart_button .c-poi-item__header-thumb-wrap:before, #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe .c-poi-item__header-thumb-wrap:before, .search-controls button .c-poi-item__header-thumb-wrap:before, .c-password-protected input[type=submit] .c-poi-item__header-thumb-wrap:before, .btn .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .btn a:after, .woocommerce .button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .woocommerce .button a:after, .shop-wrap .button.alt .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .shop-wrap .button.alt a:after, .single-product .single_add_to_cart_button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .single-product .single_add_to_cart_button a:after, #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe a:after, .search-controls button .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .search-controls button a:after, .c-password-protected input[type=submit] .fig.fig--vid-thumb a:after, .fig.fig--vid-thumb .c-password-protected input[type=submit] a:after {
  margin-right: 5px;
}

.fa-nt-icon {
  height: 17px;
  width: 17px;
  background-image: url(../images/nt-icon.svg);
  top: 3px;
  position: relative;
}

.e-content-section {
  padding-top: 10px;
}

.iframe-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
  margin-bottom: 5%;
}
.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.el.el--accordion {
  margin-bottom: 20px;
}

.el--accordion-wrapper .el--accordion__title {
  display: flex;
  margin: 0.5em 0;
}
.el--accordion-wrapper .el--accordion__title .el--accordion-title {
  margin: 0;
  font-weight: bold;
  flex-basis: 95%;
}
.el--accordion-wrapper .el--accordion__title .el--accordion-arrow {
  cursor: pointer;
  border: 1px solid;
  border-radius: 50px;
  width: 20px;
  text-align: center;
  height: 20px;
  line-height: 18px;
  font-size: 16px;
  margin-right: 10px;
  margin-top: 3px;
}
.el--accordion-wrapper .el--accordion__title.accordion-active .el--accordion-arrow {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}
.el--accordion-wrapper .el--accordion__content {
  margin-left: 30px;
}
.el--accordion-wrapper .el--accordion__content a {
  color: #475360;
  border-bottom: 1px solid;
}

/**
    Block background colours with complimentary text defaults
**/
.white-bg {
  background-color: #FFFFFF !important;
  color: #475360 !important;
}
.white-bg .btn, .white-bg .woocommerce .button, .woocommerce .white-bg .button, .white-bg .shop-wrap .button.alt, .shop-wrap .white-bg .button.alt, .white-bg .single-product .single_add_to_cart_button, .single-product .white-bg .single_add_to_cart_button, .white-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .white-bg #mc-embedded-subscribe, .white-bg .search-controls button, .search-controls .white-bg button, .white-bg .c-password-protected input[type=submit], .c-password-protected .white-bg input[type=submit] {
  background-color: #F99E2F !important;
  color: #101010 !important;
}
.white-bg .btn:hover, .white-bg .woocommerce .button:hover, .woocommerce .white-bg .button:hover, .white-bg .shop-wrap .button.alt:hover, .shop-wrap .white-bg .button.alt:hover, .white-bg .single-product .single_add_to_cart_button:hover, .single-product .white-bg .single_add_to_cart_button:hover, .white-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:hover, #mc_embed_signup #mc-embedded-subscribe-form .white-bg #mc-embedded-subscribe:hover, .white-bg .search-controls button:hover, .search-controls .white-bg button:hover, .white-bg .c-password-protected input[type=submit]:hover, .c-password-protected .white-bg input[type=submit]:hover {
  background-color: #f89216 !important;
}
.white-bg .btn--secondary {
  background-color: #475360 !important;
  color: #FFFFFF !important;
}
.white-bg .btn--secondary:hover {
  background-color: #3c4651 !important;
}
.white-bg .btn--ghost {
  background-color: transparent !important;
  color: inherit !important;
}
.white-bg .btn--ghost:hover {
  background-color: rgba(16, 16, 16, 0.1) !important;
}

.navy-bg {
  background-color: #06395D !important;
  color: #FFFFFF !important;
}
.navy-bg .btn, .navy-bg .woocommerce .button, .woocommerce .navy-bg .button, .navy-bg .shop-wrap .button.alt, .shop-wrap .navy-bg .button.alt, .navy-bg .single-product .single_add_to_cart_button, .single-product .navy-bg .single_add_to_cart_button, .navy-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .navy-bg #mc-embedded-subscribe, .navy-bg .search-controls button, .search-controls .navy-bg button, .navy-bg .c-password-protected input[type=submit], .c-password-protected .navy-bg input[type=submit] {
  background-color: #F99E2F !important;
  color: #101010 !important;
}
.navy-bg .btn:hover, .navy-bg .woocommerce .button:hover, .woocommerce .navy-bg .button:hover, .navy-bg .shop-wrap .button.alt:hover, .shop-wrap .navy-bg .button.alt:hover, .navy-bg .single-product .single_add_to_cart_button:hover, .single-product .navy-bg .single_add_to_cart_button:hover, .navy-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:hover, #mc_embed_signup #mc-embedded-subscribe-form .navy-bg #mc-embedded-subscribe:hover, .navy-bg .search-controls button:hover, .search-controls .navy-bg button:hover, .navy-bg .c-password-protected input[type=submit]:hover, .c-password-protected .navy-bg input[type=submit]:hover {
  background-color: #f89216 !important;
}
.navy-bg .btn--secondary {
  background-color: #ece2d8 !important;
  color: #FFFFFF !important;
}
.navy-bg .btn--secondary:hover {
  background-color: #e4d5c7 !important;
}
.navy-bg .btn--ghost {
  background-color: transparent !important;
  color: inherit !important;
}
.navy-bg .btn--ghost:hover {
  background-color: rgba(16, 16, 16, 0.1) !important;
}

.flint-bg {
  background-color: #475360 !important;
  color: #FFFFFF !important;
}
.flint-bg .btn, .flint-bg .woocommerce .button, .woocommerce .flint-bg .button, .flint-bg .shop-wrap .button.alt, .shop-wrap .flint-bg .button.alt, .flint-bg .single-product .single_add_to_cart_button, .single-product .flint-bg .single_add_to_cart_button, .flint-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .flint-bg #mc-embedded-subscribe, .flint-bg .search-controls button, .search-controls .flint-bg button, .flint-bg .c-password-protected input[type=submit], .c-password-protected .flint-bg input[type=submit] {
  background-color: #F99E2F !important;
  color: #101010 !important;
}
.flint-bg .btn:hover, .flint-bg .woocommerce .button:hover, .woocommerce .flint-bg .button:hover, .flint-bg .shop-wrap .button.alt:hover, .shop-wrap .flint-bg .button.alt:hover, .flint-bg .single-product .single_add_to_cart_button:hover, .single-product .flint-bg .single_add_to_cart_button:hover, .flint-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:hover, #mc_embed_signup #mc-embedded-subscribe-form .flint-bg #mc-embedded-subscribe:hover, .flint-bg .search-controls button:hover, .search-controls .flint-bg button:hover, .flint-bg .c-password-protected input[type=submit]:hover, .c-password-protected .flint-bg input[type=submit]:hover {
  background-color: #f89216 !important;
}
.flint-bg .btn--secondary {
  background-color: #ece2d8 !important;
  color: #FFFFFF !important;
}
.flint-bg .btn--secondary:hover {
  background-color: #e4d5c7 !important;
}
.flint-bg .btn--ghost {
  background-color: transparent !important;
  color: inherit !important;
}
.flint-bg .btn--ghost:hover {
  background-color: rgba(16, 16, 16, 0.1) !important;
}

.stone-bg {
  background-color: #ece2d8 !important;
  color: #101010 !important;
}
.stone-bg .btn, .stone-bg .woocommerce .button, .woocommerce .stone-bg .button, .stone-bg .shop-wrap .button.alt, .shop-wrap .stone-bg .button.alt, .stone-bg .single-product .single_add_to_cart_button, .single-product .stone-bg .single_add_to_cart_button, .stone-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .stone-bg #mc-embedded-subscribe, .stone-bg .search-controls button, .search-controls .stone-bg button, .stone-bg .c-password-protected input[type=submit], .c-password-protected .stone-bg input[type=submit] {
  background-color: #F99E2F !important;
  color: #101010 !important;
}
.stone-bg .btn:hover, .stone-bg .woocommerce .button:hover, .woocommerce .stone-bg .button:hover, .stone-bg .shop-wrap .button.alt:hover, .shop-wrap .stone-bg .button.alt:hover, .stone-bg .single-product .single_add_to_cart_button:hover, .single-product .stone-bg .single_add_to_cart_button:hover, .stone-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:hover, #mc_embed_signup #mc-embedded-subscribe-form .stone-bg #mc-embedded-subscribe:hover, .stone-bg .search-controls button:hover, .search-controls .stone-bg button:hover, .stone-bg .c-password-protected input[type=submit]:hover, .c-password-protected .stone-bg input[type=submit]:hover {
  background-color: #f89216 !important;
}
.stone-bg .btn--secondary {
  background-color: #475360 !important;
  color: #FFFFFF !important;
}
.stone-bg .btn--secondary:hover {
  background-color: #3c4651 !important;
}
.stone-bg .btn--ghost {
  background-color: transparent !important;
  color: inherit !important;
}
.stone-bg .btn--ghost:hover {
  background-color: rgba(16, 16, 16, 0.1) !important;
}

.orange-bg {
  background-color: #F99E2F !important;
  color: #101010 !important;
}
.orange-bg .btn, .orange-bg .woocommerce .button, .woocommerce .orange-bg .button, .orange-bg .shop-wrap .button.alt, .shop-wrap .orange-bg .button.alt, .orange-bg .single-product .single_add_to_cart_button, .single-product .orange-bg .single_add_to_cart_button, .orange-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .orange-bg #mc-embedded-subscribe, .orange-bg .search-controls button, .search-controls .orange-bg button, .orange-bg .c-password-protected input[type=submit], .c-password-protected .orange-bg input[type=submit] {
  background-color: #FFFFFF !important;
  color: #101010 !important;
}
.orange-bg .btn:hover, .orange-bg .woocommerce .button:hover, .woocommerce .orange-bg .button:hover, .orange-bg .shop-wrap .button.alt:hover, .shop-wrap .orange-bg .button.alt:hover, .orange-bg .single-product .single_add_to_cart_button:hover, .single-product .orange-bg .single_add_to_cart_button:hover, .orange-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:hover, #mc_embed_signup #mc-embedded-subscribe-form .orange-bg #mc-embedded-subscribe:hover, .orange-bg .search-controls button:hover, .search-controls .orange-bg button:hover, .orange-bg .c-password-protected input[type=submit]:hover, .c-password-protected .orange-bg input[type=submit]:hover {
  background-color: #f2f2f2 !important;
}
.orange-bg .btn--secondary {
  background-color: #475360 !important;
  color: #FFFFFF !important;
}
.orange-bg .btn--secondary:hover {
  background-color: #3c4651 !important;
}
.orange-bg .btn--ghost {
  background-color: transparent !important;
  color: inherit !important;
}
.orange-bg .btn--ghost:hover {
  background-color: rgba(16, 16, 16, 0.1) !important;
}

.grey-bg {
  background-color: #F2F2F2 !important;
  color: #101010 !important;
}
.grey-bg .btn, .grey-bg .woocommerce .button, .woocommerce .grey-bg .button, .grey-bg .shop-wrap .button.alt, .shop-wrap .grey-bg .button.alt, .grey-bg .single-product .single_add_to_cart_button, .single-product .grey-bg .single_add_to_cart_button, .grey-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .grey-bg #mc-embedded-subscribe, .grey-bg .search-controls button, .search-controls .grey-bg button, .grey-bg .c-password-protected input[type=submit], .c-password-protected .grey-bg input[type=submit] {
  background-color: #F99E2F !important;
  color: #101010 !important;
}
.grey-bg .btn:hover, .grey-bg .woocommerce .button:hover, .woocommerce .grey-bg .button:hover, .grey-bg .shop-wrap .button.alt:hover, .shop-wrap .grey-bg .button.alt:hover, .grey-bg .single-product .single_add_to_cart_button:hover, .single-product .grey-bg .single_add_to_cart_button:hover, .grey-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:hover, #mc_embed_signup #mc-embedded-subscribe-form .grey-bg #mc-embedded-subscribe:hover, .grey-bg .search-controls button:hover, .search-controls .grey-bg button:hover, .grey-bg .c-password-protected input[type=submit]:hover, .c-password-protected .grey-bg input[type=submit]:hover {
  background-color: #f89216 !important;
}
.grey-bg .btn--secondary {
  background-color: #475360 !important;
  color: #FFFFFF !important;
}
.grey-bg .btn--secondary:hover {
  background-color: #3c4651 !important;
}
.grey-bg .btn--ghost {
  background-color: transparent !important;
  color: inherit !important;
}
.grey-bg .btn--ghost:hover {
  background-color: rgba(16, 16, 16, 0.1) !important;
}

.willow-bg {
  background-color: #E0E6D5 !important;
  color: #101010 !important;
}
.willow-bg .btn, .willow-bg .woocommerce .button, .woocommerce .willow-bg .button, .willow-bg .shop-wrap .button.alt, .shop-wrap .willow-bg .button.alt, .willow-bg .single-product .single_add_to_cart_button, .single-product .willow-bg .single_add_to_cart_button, .willow-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .willow-bg #mc-embedded-subscribe, .willow-bg .search-controls button, .search-controls .willow-bg button, .willow-bg .c-password-protected input[type=submit], .c-password-protected .willow-bg input[type=submit] {
  background-color: #F99E2F !important;
  color: #101010 !important;
}
.willow-bg .btn:hover, .willow-bg .woocommerce .button:hover, .woocommerce .willow-bg .button:hover, .willow-bg .shop-wrap .button.alt:hover, .shop-wrap .willow-bg .button.alt:hover, .willow-bg .single-product .single_add_to_cart_button:hover, .single-product .willow-bg .single_add_to_cart_button:hover, .willow-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:hover, #mc_embed_signup #mc-embedded-subscribe-form .willow-bg #mc-embedded-subscribe:hover, .willow-bg .search-controls button:hover, .search-controls .willow-bg button:hover, .willow-bg .c-password-protected input[type=submit]:hover, .c-password-protected .willow-bg input[type=submit]:hover {
  background-color: #f89216 !important;
}
.willow-bg .btn--secondary {
  background-color: #475360 !important;
  color: #FFFFFF !important;
}
.willow-bg .btn--secondary:hover {
  background-color: #3c4651 !important;
}
.willow-bg .btn--ghost {
  background-color: transparent !important;
  color: inherit !important;
}
.willow-bg .btn--ghost:hover {
  background-color: rgba(16, 16, 16, 0.1) !important;
}

.black-bg {
  background-color: #101010 !important;
  color: #FFFFFF !important;
}
.black-bg .btn, .black-bg .woocommerce .button, .woocommerce .black-bg .button, .black-bg .shop-wrap .button.alt, .shop-wrap .black-bg .button.alt, .black-bg .single-product .single_add_to_cart_button, .single-product .black-bg .single_add_to_cart_button, .black-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .black-bg #mc-embedded-subscribe, .black-bg .search-controls button, .search-controls .black-bg button, .black-bg .c-password-protected input[type=submit], .c-password-protected .black-bg input[type=submit] {
  background-color: #F99E2F !important;
  color: #101010 !important;
}
.black-bg .btn:hover, .black-bg .woocommerce .button:hover, .woocommerce .black-bg .button:hover, .black-bg .shop-wrap .button.alt:hover, .shop-wrap .black-bg .button.alt:hover, .black-bg .single-product .single_add_to_cart_button:hover, .single-product .black-bg .single_add_to_cart_button:hover, .black-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:hover, #mc_embed_signup #mc-embedded-subscribe-form .black-bg #mc-embedded-subscribe:hover, .black-bg .search-controls button:hover, .search-controls .black-bg button:hover, .black-bg .c-password-protected input[type=submit]:hover, .c-password-protected .black-bg input[type=submit]:hover {
  background-color: #f89216 !important;
}
.black-bg .btn--secondary {
  background-color: #ece2d8 !important;
  color: #FFFFFF !important;
}
.black-bg .btn--secondary:hover {
  background-color: #e4d5c7 !important;
}
.black-bg .btn--ghost {
  background-color: transparent !important;
  color: inherit !important;
}
.black-bg .btn--ghost:hover {
  background-color: rgba(16, 16, 16, 0.1) !important;
}

.seagreen-bg {
  background-color: #88DAD5 !important;
  color: #101010 !important;
}
.seagreen-bg .btn, .seagreen-bg .woocommerce .button, .woocommerce .seagreen-bg .button, .seagreen-bg .shop-wrap .button.alt, .shop-wrap .seagreen-bg .button.alt, .seagreen-bg .single-product .single_add_to_cart_button, .single-product .seagreen-bg .single_add_to_cart_button, .seagreen-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .seagreen-bg #mc-embedded-subscribe, .seagreen-bg .search-controls button, .search-controls .seagreen-bg button, .seagreen-bg .c-password-protected input[type=submit], .c-password-protected .seagreen-bg input[type=submit] {
  background-color: #F99E2F !important;
  color: #101010 !important;
}
.seagreen-bg .btn:hover, .seagreen-bg .woocommerce .button:hover, .woocommerce .seagreen-bg .button:hover, .seagreen-bg .shop-wrap .button.alt:hover, .shop-wrap .seagreen-bg .button.alt:hover, .seagreen-bg .single-product .single_add_to_cart_button:hover, .single-product .seagreen-bg .single_add_to_cart_button:hover, .seagreen-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:hover, #mc_embed_signup #mc-embedded-subscribe-form .seagreen-bg #mc-embedded-subscribe:hover, .seagreen-bg .search-controls button:hover, .search-controls .seagreen-bg button:hover, .seagreen-bg .c-password-protected input[type=submit]:hover, .c-password-protected .seagreen-bg input[type=submit]:hover {
  background-color: #f89216 !important;
}
.seagreen-bg .btn--secondary {
  background-color: #475360 !important;
  color: #FFFFFF !important;
}
.seagreen-bg .btn--secondary:hover {
  background-color: #3c4651 !important;
}
.seagreen-bg .btn--ghost {
  background-color: transparent !important;
  color: inherit !important;
}
.seagreen-bg .btn--ghost:hover {
  background-color: rgba(16, 16, 16, 0.1) !important;
}

.cucumber-bg {
  background-color: #B9DB88 !important;
  color: #101010 !important;
}
.cucumber-bg .btn, .cucumber-bg .woocommerce .button, .woocommerce .cucumber-bg .button, .cucumber-bg .shop-wrap .button.alt, .shop-wrap .cucumber-bg .button.alt, .cucumber-bg .single-product .single_add_to_cart_button, .single-product .cucumber-bg .single_add_to_cart_button, .cucumber-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .cucumber-bg #mc-embedded-subscribe, .cucumber-bg .search-controls button, .search-controls .cucumber-bg button, .cucumber-bg .c-password-protected input[type=submit], .c-password-protected .cucumber-bg input[type=submit] {
  background-color: #F99E2F !important;
  color: #101010 !important;
}
.cucumber-bg .btn:hover, .cucumber-bg .woocommerce .button:hover, .woocommerce .cucumber-bg .button:hover, .cucumber-bg .shop-wrap .button.alt:hover, .shop-wrap .cucumber-bg .button.alt:hover, .cucumber-bg .single-product .single_add_to_cart_button:hover, .single-product .cucumber-bg .single_add_to_cart_button:hover, .cucumber-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:hover, #mc_embed_signup #mc-embedded-subscribe-form .cucumber-bg #mc-embedded-subscribe:hover, .cucumber-bg .search-controls button:hover, .search-controls .cucumber-bg button:hover, .cucumber-bg .c-password-protected input[type=submit]:hover, .c-password-protected .cucumber-bg input[type=submit]:hover {
  background-color: #f89216 !important;
}
.cucumber-bg .btn--secondary {
  background-color: #475360 !important;
  color: #FFFFFF !important;
}
.cucumber-bg .btn--secondary:hover {
  background-color: #3c4651 !important;
}
.cucumber-bg .btn--ghost {
  background-color: transparent !important;
  color: inherit !important;
}
.cucumber-bg .btn--ghost:hover {
  background-color: rgba(16, 16, 16, 0.1) !important;
}

.sky-bg {
  background-color: #C9EAEC !important;
  color: #475360 !important;
}
.sky-bg .btn, .sky-bg .woocommerce .button, .woocommerce .sky-bg .button, .sky-bg .shop-wrap .button.alt, .shop-wrap .sky-bg .button.alt, .sky-bg .single-product .single_add_to_cart_button, .single-product .sky-bg .single_add_to_cart_button, .sky-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .sky-bg #mc-embedded-subscribe, .sky-bg .search-controls button, .search-controls .sky-bg button, .sky-bg .c-password-protected input[type=submit], .c-password-protected .sky-bg input[type=submit] {
  background-color: #299EB7 !important;
  color: #101010 !important;
}
.sky-bg .btn:hover, .sky-bg .woocommerce .button:hover, .woocommerce .sky-bg .button:hover, .sky-bg .shop-wrap .button.alt:hover, .shop-wrap .sky-bg .button.alt:hover, .sky-bg .single-product .single_add_to_cart_button:hover, .single-product .sky-bg .single_add_to_cart_button:hover, .sky-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:hover, #mc_embed_signup #mc-embedded-subscribe-form .sky-bg #mc-embedded-subscribe:hover, .sky-bg .search-controls button:hover, .search-controls .sky-bg button:hover, .sky-bg .c-password-protected input[type=submit]:hover, .c-password-protected .sky-bg input[type=submit]:hover {
  background-color: #248ca2 !important;
}
.sky-bg .btn--secondary {
  background-color: #475360 !important;
  color: #FFFFFF !important;
}
.sky-bg .btn--secondary:hover {
  background-color: #3c4651 !important;
}
.sky-bg .btn--ghost {
  background-color: transparent !important;
  color: inherit !important;
}
.sky-bg .btn--ghost:hover {
  background-color: rgba(16, 16, 16, 0.1) !important;
}

.turq-bg {
  background-color: #299EB7 !important;
  color: #EAEEF3 !important;
}
.turq-bg .btn, .turq-bg .woocommerce .button, .woocommerce .turq-bg .button, .turq-bg .shop-wrap .button.alt, .shop-wrap .turq-bg .button.alt, .turq-bg .single-product .single_add_to_cart_button, .single-product .turq-bg .single_add_to_cart_button, .turq-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .turq-bg #mc-embedded-subscribe, .turq-bg .search-controls button, .search-controls .turq-bg button, .turq-bg .c-password-protected input[type=submit], .c-password-protected .turq-bg input[type=submit] {
  background-color: #F99E2F !important;
  color: #101010 !important;
}
.turq-bg .btn:hover, .turq-bg .woocommerce .button:hover, .woocommerce .turq-bg .button:hover, .turq-bg .shop-wrap .button.alt:hover, .shop-wrap .turq-bg .button.alt:hover, .turq-bg .single-product .single_add_to_cart_button:hover, .single-product .turq-bg .single_add_to_cart_button:hover, .turq-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:hover, #mc_embed_signup #mc-embedded-subscribe-form .turq-bg #mc-embedded-subscribe:hover, .turq-bg .search-controls button:hover, .search-controls .turq-bg button:hover, .turq-bg .c-password-protected input[type=submit]:hover, .c-password-protected .turq-bg input[type=submit]:hover {
  background-color: #f89216 !important;
}
.turq-bg .btn--secondary {
  background-color: #475360 !important;
  color: #FFFFFF !important;
}
.turq-bg .btn--secondary:hover {
  background-color: #3c4651 !important;
}
.turq-bg .btn--ghost {
  background-color: transparent !important;
  color: inherit !important;
}
.turq-bg .btn--ghost:hover {
  background-color: rgba(16, 16, 16, 0.1) !important;
}

.frost-bg {
  background-color: #EAEEF3 !important;
  color: #475360 !important;
}
.frost-bg .btn, .frost-bg .woocommerce .button, .woocommerce .frost-bg .button, .frost-bg .shop-wrap .button.alt, .shop-wrap .frost-bg .button.alt, .frost-bg .single-product .single_add_to_cart_button, .single-product .frost-bg .single_add_to_cart_button, .frost-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .frost-bg #mc-embedded-subscribe, .frost-bg .search-controls button, .search-controls .frost-bg button, .frost-bg .c-password-protected input[type=submit], .c-password-protected .frost-bg input[type=submit] {
  background-color: #299EB7 !important;
  color: #101010 !important;
}
.frost-bg .btn:hover, .frost-bg .woocommerce .button:hover, .woocommerce .frost-bg .button:hover, .frost-bg .shop-wrap .button.alt:hover, .shop-wrap .frost-bg .button.alt:hover, .frost-bg .single-product .single_add_to_cart_button:hover, .single-product .frost-bg .single_add_to_cart_button:hover, .frost-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:hover, #mc_embed_signup #mc-embedded-subscribe-form .frost-bg #mc-embedded-subscribe:hover, .frost-bg .search-controls button:hover, .search-controls .frost-bg button:hover, .frost-bg .c-password-protected input[type=submit]:hover, .c-password-protected .frost-bg input[type=submit]:hover {
  background-color: #248ca2 !important;
}
.frost-bg .btn--secondary {
  background-color: #475360 !important;
  color: #FFFFFF !important;
}
.frost-bg .btn--secondary:hover {
  background-color: #3c4651 !important;
}
.frost-bg .btn--ghost {
  background-color: transparent !important;
  color: inherit !important;
}
.frost-bg .btn--ghost:hover {
  background-color: rgba(16, 16, 16, 0.1) !important;
}

.cream-bg {
  background-color: #EDD8C3 !important;
  color: #475360 !important;
}
.cream-bg .btn, .cream-bg .woocommerce .button, .woocommerce .cream-bg .button, .cream-bg .shop-wrap .button.alt, .shop-wrap .cream-bg .button.alt, .cream-bg .single-product .single_add_to_cart_button, .single-product .cream-bg .single_add_to_cart_button, .cream-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .cream-bg #mc-embedded-subscribe, .cream-bg .search-controls button, .search-controls .cream-bg button, .cream-bg .c-password-protected input[type=submit], .c-password-protected .cream-bg input[type=submit] {
  background-color: #299EB7 !important;
  color: #101010 !important;
}
.cream-bg .btn:hover, .cream-bg .woocommerce .button:hover, .woocommerce .cream-bg .button:hover, .cream-bg .shop-wrap .button.alt:hover, .shop-wrap .cream-bg .button.alt:hover, .cream-bg .single-product .single_add_to_cart_button:hover, .single-product .cream-bg .single_add_to_cart_button:hover, .cream-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:hover, #mc_embed_signup #mc-embedded-subscribe-form .cream-bg #mc-embedded-subscribe:hover, .cream-bg .search-controls button:hover, .search-controls .cream-bg button:hover, .cream-bg .c-password-protected input[type=submit]:hover, .c-password-protected .cream-bg input[type=submit]:hover {
  background-color: #248ca2 !important;
}
.cream-bg .btn--secondary {
  background-color: #475360 !important;
  color: #FFFFFF !important;
}
.cream-bg .btn--secondary:hover {
  background-color: #3c4651 !important;
}
.cream-bg .btn--ghost {
  background-color: transparent !important;
  color: inherit !important;
}
.cream-bg .btn--ghost:hover {
  background-color: rgba(16, 16, 16, 0.1) !important;
}

.pink-bg {
  background-color: #CB4C89 !important;
  color: #FFFFFF !important;
}
.pink-bg .btn, .pink-bg .woocommerce .button, .woocommerce .pink-bg .button, .pink-bg .shop-wrap .button.alt, .shop-wrap .pink-bg .button.alt, .pink-bg .single-product .single_add_to_cart_button, .single-product .pink-bg .single_add_to_cart_button, .pink-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .pink-bg #mc-embedded-subscribe, .pink-bg .search-controls button, .search-controls .pink-bg button, .pink-bg .c-password-protected input[type=submit], .c-password-protected .pink-bg input[type=submit] {
  background-color: #299EB7 !important;
  color: #101010 !important;
}
.pink-bg .btn:hover, .pink-bg .woocommerce .button:hover, .woocommerce .pink-bg .button:hover, .pink-bg .shop-wrap .button.alt:hover, .shop-wrap .pink-bg .button.alt:hover, .pink-bg .single-product .single_add_to_cart_button:hover, .single-product .pink-bg .single_add_to_cart_button:hover, .pink-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:hover, #mc_embed_signup #mc-embedded-subscribe-form .pink-bg #mc-embedded-subscribe:hover, .pink-bg .search-controls button:hover, .search-controls .pink-bg button:hover, .pink-bg .c-password-protected input[type=submit]:hover, .c-password-protected .pink-bg input[type=submit]:hover {
  background-color: #248ca2 !important;
}
.pink-bg .btn--secondary {
  background-color: #475360 !important;
  color: #FFFFFF !important;
}
.pink-bg .btn--secondary:hover {
  background-color: #3c4651 !important;
}
.pink-bg .btn--ghost {
  background-color: transparent !important;
  color: inherit !important;
}
.pink-bg .btn--ghost:hover {
  background-color: rgba(16, 16, 16, 0.1) !important;
}

.slate-bg {
  background-color: #6D90AE !important;
  color: #F2F2F2 !important;
}
.slate-bg .btn, .slate-bg .woocommerce .button, .woocommerce .slate-bg .button, .slate-bg .shop-wrap .button.alt, .shop-wrap .slate-bg .button.alt, .slate-bg .single-product .single_add_to_cart_button, .single-product .slate-bg .single_add_to_cart_button, .slate-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .slate-bg #mc-embedded-subscribe, .slate-bg .search-controls button, .search-controls .slate-bg button, .slate-bg .c-password-protected input[type=submit], .c-password-protected .slate-bg input[type=submit] {
  background-color: #299EB7 !important;
  color: #101010 !important;
}
.slate-bg .btn:hover, .slate-bg .woocommerce .button:hover, .woocommerce .slate-bg .button:hover, .slate-bg .shop-wrap .button.alt:hover, .shop-wrap .slate-bg .button.alt:hover, .slate-bg .single-product .single_add_to_cart_button:hover, .single-product .slate-bg .single_add_to_cart_button:hover, .slate-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:hover, #mc_embed_signup #mc-embedded-subscribe-form .slate-bg #mc-embedded-subscribe:hover, .slate-bg .search-controls button:hover, .search-controls .slate-bg button:hover, .slate-bg .c-password-protected input[type=submit]:hover, .c-password-protected .slate-bg input[type=submit]:hover {
  background-color: #248ca2 !important;
}
.slate-bg .btn--secondary {
  background-color: #475360 !important;
  color: #FFFFFF !important;
}
.slate-bg .btn--secondary:hover {
  background-color: #3c4651 !important;
}
.slate-bg .btn--ghost {
  background-color: transparent !important;
  color: inherit !important;
}
.slate-bg .btn--ghost:hover {
  background-color: rgba(16, 16, 16, 0.1) !important;
}

.green-bg {
  background-color: #588F9B !important;
  color: #FFFFFF !important;
}
.green-bg .btn, .green-bg .woocommerce .button, .woocommerce .green-bg .button, .green-bg .shop-wrap .button.alt, .shop-wrap .green-bg .button.alt, .green-bg .single-product .single_add_to_cart_button, .single-product .green-bg .single_add_to_cart_button, .green-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .green-bg #mc-embedded-subscribe, .green-bg .search-controls button, .search-controls .green-bg button, .green-bg .c-password-protected input[type=submit], .c-password-protected .green-bg input[type=submit] {
  background-color: #299EB7 !important;
  color: #101010 !important;
}
.green-bg .btn:hover, .green-bg .woocommerce .button:hover, .woocommerce .green-bg .button:hover, .green-bg .shop-wrap .button.alt:hover, .shop-wrap .green-bg .button.alt:hover, .green-bg .single-product .single_add_to_cart_button:hover, .single-product .green-bg .single_add_to_cart_button:hover, .green-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:hover, #mc_embed_signup #mc-embedded-subscribe-form .green-bg #mc-embedded-subscribe:hover, .green-bg .search-controls button:hover, .search-controls .green-bg button:hover, .green-bg .c-password-protected input[type=submit]:hover, .c-password-protected .green-bg input[type=submit]:hover {
  background-color: #248ca2 !important;
}
.green-bg .btn--secondary {
  background-color: #475360 !important;
  color: #FFFFFF !important;
}
.green-bg .btn--secondary:hover {
  background-color: #3c4651 !important;
}
.green-bg .btn--ghost {
  background-color: transparent !important;
  color: inherit !important;
}
.green-bg .btn--ghost:hover {
  background-color: rgba(16, 16, 16, 0.1) !important;
}

.off-white-bg {
  background-color: #F8F8F8 !important;
  color: #475360 !important;
}
.off-white-bg .btn, .off-white-bg .woocommerce .button, .woocommerce .off-white-bg .button, .off-white-bg .shop-wrap .button.alt, .shop-wrap .off-white-bg .button.alt, .off-white-bg .single-product .single_add_to_cart_button, .single-product .off-white-bg .single_add_to_cart_button, .off-white-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .off-white-bg #mc-embedded-subscribe, .off-white-bg .search-controls button, .search-controls .off-white-bg button, .off-white-bg .c-password-protected input[type=submit], .c-password-protected .off-white-bg input[type=submit] {
  background-color: #299EB7 !important;
  color: #101010 !important;
}
.off-white-bg .btn:hover, .off-white-bg .woocommerce .button:hover, .woocommerce .off-white-bg .button:hover, .off-white-bg .shop-wrap .button.alt:hover, .shop-wrap .off-white-bg .button.alt:hover, .off-white-bg .single-product .single_add_to_cart_button:hover, .single-product .off-white-bg .single_add_to_cart_button:hover, .off-white-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:hover, #mc_embed_signup #mc-embedded-subscribe-form .off-white-bg #mc-embedded-subscribe:hover, .off-white-bg .search-controls button:hover, .search-controls .off-white-bg button:hover, .off-white-bg .c-password-protected input[type=submit]:hover, .c-password-protected .off-white-bg input[type=submit]:hover {
  background-color: #248ca2 !important;
}
.off-white-bg .btn--secondary {
  background-color: #475360 !important;
  color: #FFFFFF !important;
}
.off-white-bg .btn--secondary:hover {
  background-color: #3c4651 !important;
}
.off-white-bg .btn--ghost {
  background-color: transparent !important;
  color: inherit !important;
}
.off-white-bg .btn--ghost:hover {
  background-color: rgba(16, 16, 16, 0.1) !important;
}

.transparent-bg {
  color: #475360 !important;
}
.transparent-bg .btn, .transparent-bg .woocommerce .button, .woocommerce .transparent-bg .button, .transparent-bg .shop-wrap .button.alt, .shop-wrap .transparent-bg .button.alt, .transparent-bg .single-product .single_add_to_cart_button, .single-product .transparent-bg .single_add_to_cart_button, .transparent-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe, #mc_embed_signup #mc-embedded-subscribe-form .transparent-bg #mc-embedded-subscribe, .transparent-bg .search-controls button, .search-controls .transparent-bg button, .transparent-bg .c-password-protected input[type=submit], .c-password-protected .transparent-bg input[type=submit] {
  background-color: #F99E2F !important;
  color: #101010 !important;
}
.transparent-bg .btn:hover, .transparent-bg .woocommerce .button:hover, .woocommerce .transparent-bg .button:hover, .transparent-bg .shop-wrap .button.alt:hover, .shop-wrap .transparent-bg .button.alt:hover, .transparent-bg .single-product .single_add_to_cart_button:hover, .single-product .transparent-bg .single_add_to_cart_button:hover, .transparent-bg #mc_embed_signup #mc-embedded-subscribe-form #mc-embedded-subscribe:hover, #mc_embed_signup #mc-embedded-subscribe-form .transparent-bg #mc-embedded-subscribe:hover, .transparent-bg .search-controls button:hover, .search-controls .transparent-bg button:hover, .transparent-bg .c-password-protected input[type=submit]:hover, .c-password-protected .transparent-bg input[type=submit]:hover {
  background-color: #f89216 !important;
}
.transparent-bg .btn--secondary {
  background-color: #475360 !important;
  color: #FFFFFF !important;
}
.transparent-bg .btn--secondary:hover {
  background-color: #3c4651 !important;
}

.navy-bg .btn--secondary, .flint-bg .btn--secondary {
  color: #101010 !important;
}

/**
    Text colour overrides
**/
.white-txt {
  color: #FFFFFF !important;
}

.black-txt {
  color: #101010 !important;
}

.navy-txt {
  color: #06395D !important;
}

.grey-txt {
  color: #F2F2F2 !important;
}

.willow-txt {
  color: #E0E6D5 !important;
}

.orange-txt {
  color: #F99E2F !important;
}

.flint-txt {
  color: #475360 !important;
}

.stone-txt {
  color: #ece2d8 !important;
}

.lightSeagreen-txt {
  color: #88DAD5 !important;
}

.chelseaCucumber-txt {
  color: #B9DB88 !important;
}

.sky-txt {
  color: #C9EAEC !important;
}

.turq-txt {
  color: #299EB7 !important;
}

.frost-txt {
  color: #EAEEF3 !important;
}

.dark-orange-txt {
  color: #EC4120 !important;
}

.cream-txt {
  color: #EDD8C3 !important;
}

.pink-txt {
  color: #CB4C89 !important;
}

.slate-txt {
  color: #6D90AE !important;
}

.ziggurat-txt {
  color: #82A0A3 !important;
}

.green-txt {
  color: #588F9B !important;
}

.off-white-txt {
  color: #F8F8F8 !important;
}

.mustard-txt {
  color: #D2AC4A !important;
}

.dark-blue-txt {
  color: #012547 !important;
}

.dark-cream-txt {
  color: #D2AC4A !important;
}

.dark-green-txt {
  color: #8aa081 !important;
}

/**
    image background with pseudo element after as colour wash
**/
.img-bg.white-bg .content-row-inner {
  position: relative;
  z-index: 100;
}

.img-bg.white-bg:after {
  background-color: #FFFFFF;
  opacity: 0.85;
}

.img-bg.black-bg .content-row-inner {
  position: relative;
  z-index: 100;
}

.img-bg.black-bg:after {
  background-color: #101010;
  opacity: 0.85;
}

.img-bg.navy-bg .content-row-inner {
  position: relative;
  z-index: 100;
}

.img-bg.navy-bg:after {
  background-color: #06395D;
  opacity: 0.85;
}

.img-bg.grey-bg .content-row-inner {
  position: relative;
  z-index: 100;
}

.img-bg.grey-bg:after {
  background-color: #F2F2F2;
  opacity: 0.85;
}

.img-bg.willow-bg .content-row-inner {
  position: relative;
  z-index: 100;
}

.img-bg.willow-bg:after {
  background-color: #E0E6D5;
  opacity: 0.85;
}

.img-bg.orange-bg .content-row-inner {
  position: relative;
  z-index: 100;
}

.img-bg.orange-bg:after {
  background-color: #F99E2F;
  opacity: 0.85;
}

.img-bg.flint-bg .content-row-inner {
  position: relative;
  z-index: 100;
}

.img-bg.flint-bg:after {
  background-color: #475360;
  opacity: 0.85;
}

.img-bg.stone-bg .content-row-inner {
  position: relative;
  z-index: 100;
}

.img-bg.stone-bg:after {
  background-color: #ece2d8;
  opacity: 0.85;
}

.img-bg.lightSeagreen-bg .content-row-inner {
  position: relative;
  z-index: 100;
}

.img-bg.lightSeagreen-bg:after {
  background-color: #88DAD5;
  opacity: 0.85;
}

.img-bg.chelseaCucumber-bg .content-row-inner {
  position: relative;
  z-index: 100;
}

.img-bg.chelseaCucumber-bg:after {
  background-color: #B9DB88;
  opacity: 0.85;
}

.img-bg.sky-bg .content-row-inner {
  position: relative;
  z-index: 100;
}

.img-bg.sky-bg:after {
  background-color: #C9EAEC;
  opacity: 0.85;
}

.img-bg.turq-bg .content-row-inner {
  position: relative;
  z-index: 100;
}

.img-bg.turq-bg:after {
  background-color: #299EB7;
  opacity: 0.85;
}

.img-bg.frost-bg .content-row-inner {
  position: relative;
  z-index: 100;
}

.img-bg.frost-bg:after {
  background-color: #EAEEF3;
  opacity: 0.85;
}

.img-bg.dark-orange-bg .content-row-inner {
  position: relative;
  z-index: 100;
}

.img-bg.dark-orange-bg:after {
  background-color: #EC4120;
  opacity: 0.85;
}

.img-bg.cream-bg .content-row-inner {
  position: relative;
  z-index: 100;
}

.img-bg.cream-bg:after {
  background-color: #EDD8C3;
  opacity: 0.85;
}

.img-bg.pink-bg .content-row-inner {
  position: relative;
  z-index: 100;
}

.img-bg.pink-bg:after {
  background-color: #CB4C89;
  opacity: 0.85;
}

.img-bg.slate-bg .content-row-inner {
  position: relative;
  z-index: 100;
}

.img-bg.slate-bg:after {
  background-color: #6D90AE;
  opacity: 0.85;
}

.img-bg.ziggurat-bg .content-row-inner {
  position: relative;
  z-index: 100;
}

.img-bg.ziggurat-bg:after {
  background-color: #82A0A3;
  opacity: 0.85;
}

.img-bg.green-bg .content-row-inner {
  position: relative;
  z-index: 100;
}

.img-bg.green-bg:after {
  background-color: #588F9B;
  opacity: 0.85;
}

.img-bg.off-white-bg .content-row-inner {
  position: relative;
  z-index: 100;
}

.img-bg.off-white-bg:after {
  background-color: #F8F8F8;
  opacity: 0.85;
}

.img-bg.mustard-bg .content-row-inner {
  position: relative;
  z-index: 100;
}

.img-bg.mustard-bg:after {
  background-color: #D2AC4A;
  opacity: 0.85;
}

.img-bg.dark-blue-bg .content-row-inner {
  position: relative;
  z-index: 100;
}

.img-bg.dark-blue-bg:after {
  background-color: #012547;
  opacity: 0.85;
}

.img-bg.dark-cream-bg .content-row-inner {
  position: relative;
  z-index: 100;
}

.img-bg.dark-cream-bg:after {
  background-color: #D2AC4A;
  opacity: 0.85;
}

.img-bg.dark-green-bg .content-row-inner {
  position: relative;
  z-index: 100;
}

.img-bg.dark-green-bg:after {
  background-color: #8aa081;
  opacity: 0.85;
}

/*# sourceMappingURL=main.css.map */
