@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.
 */
/*------------------------------------*    $CUSTOM
\*------------------------------------*/
/**
 * Place any of your own variables that sit on top of inuit.css here.
 */
/**
 * Place any variables that sit on top of umi-base vars
 */
/*------------------------------------*    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 modules 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.
 */
@import url("https://fonts.googleapis.com/css?family=Rajdhani:400,700");
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:300i,400,700|Roboto:400,400i,500,700");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@600&amp;family=Rajdhani:wght@600;700&amp;display=swap");
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 {
  -webkit-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: "\201C" "\201D" "\2018" "\2019"; }

/*
 * 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"] {
  -webkit-box-sizing: border-box;
  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 */
  -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;
  -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, .nav:after, .flex-grid:after, .flex-grid__item: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,
.gform_fields > li,
.media,
.island,
.islet {
  margin-bottom: 0px;
  margin-bottom: 0rem; }
  .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 .gform_fields > li, .islet
  .media, .islet
  .island, .islet
  .islet {
    margin-bottom: 0px;
    margin-bottom: 0rem; }

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

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

/**
 * 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: 0px;
  margin-left: 0rem; }

/**
 * Base styles; unclassed HTML elements etc.
 */
/*------------------------------------*    $MAIN
\*------------------------------------*/
html {
  font: 0.9375em/1.53333 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: 55px;
  font-size: 3.66667rem;
  line-height: 1.25455; }

h2, .beta {
  font-size: 40px;
  font-size: 2.66667rem;
  line-height: 1.15; }

h3, .gamma {
  font-size: 30px;
  font-size: 2rem;
  line-height: 1.53333; }

h4, .delta {
  font-size: 60px;
  font-size: 4rem;
  line-height: 1.15; }

h5, .epsilon {
  font-size: 15px;
  font-size: 1rem;
  line-height: 1.53333; }

h6, .zeta {
  font-size: 16px;
  font-size: 1.06667rem;
  line-height: 1.4375; }

/**
 * 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: 64px;
  font-size: 4.26667rem;
  line-height: 1.07812; }

.mega {
  font-size: 56px;
  font-size: 3.73333rem;
  line-height: 1.23214; }

.kilo {
  font-size: 48px;
  font-size: 3.2rem;
  line-height: 1.4375; }

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

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

.micro {
  font-size: 13px;
  font-size: 0.86667rem;
  line-height: 1.76923; }

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

blockquote {
  quotes: "\\201C " "\\201D "; }
  blockquote p:before {
    content: "\\201C ";
    content: open-quote; }
  blockquote p:after {
    content: "";
    content: no-close-quote; }
  blockquote p:last-of-type:after {
    content: "\\201D ";
    content: close-quote; }
  blockquote q:before {
    content: "\2018";
    content: open-quote; }
  blockquote q:after {
    content: "\2019";
    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.
     */
  text-indent: -0.41em; }
  blockquote p:last-of-type {
    margin-bottom: 0; }

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

/*------------------------------------*    $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: 0; }

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

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

.img--center {
  display: block;
  margin-right: auto;
  margin-bottom: 0px;
  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: 0px; }

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

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

/**
 * 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: 0px;
  text-align: left; }
  @media screen and (min-width: 480px) {
    th,
    td {
      padding: 0px; } }

/**
 * 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 #212121; }
  .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: 0px; }

/**
 * 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, .gform_fields {
  list-style: none;
  margin: 0; }

.form-fields > li:last-child, .gform_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; }

/**
     * 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,
ul.gfield_radio,
ul.gfield_checkbox {
  list-style: none;
  margin: 0; }

/*
     * Labels in check-lists
     */
.check-label, .check-list label,
ul.gfield_radio label,
ul.gfield_checkbox label, .check-list .label,
ul.gfield_radio .label,
ul.gfield_checkbox .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: 0px;
  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: 0px;
  vertical-align: top; }

/*------------------------------------*    $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: 0px; }

/**
 * 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: "\002C" "\00A0"; }

.nav--keywords > li:last-child:after {
  display: none; }

/*------------------------------------*    $SPRITE
\*------------------------------------*/
/**
 * Giving an element a class of `.sprite` will throw it into ‘sprite’ mode and apply
 * a background image e.g.:
 *
   <a class="sprite  sprite--question-mark">More info&hellip;</a>
 *
 * or
 *
   <a href=#><i class="sprite  sprite--question-mark"></i> Help and FAQ</a>
 *
 * Giving an element a class of `.icon` will throw it into ‘icon’ mode and will
 * not add a background, but should be used for icon fonts and is populated
 * through a `data-icon` attribute and the `:after` pseudo-element, e.g.:
 *
   <a href=#><i class=icon data-icon="&#xF000;"></i> View your favourites</a>
 *
 * Where ‘&#xF000;’ might map to a star in your particular icon font.
 *
 * These all require extension in your theme stylesheet, e.g. in your own CSS:
 *
   .sprite{
       background-image:url(path/to/your/sprite.png);
   }
   .sprite--link{ background-position:0   0  ; }
   .sprite--star{ background-position:0 -16px; }
 *
 * Demo: jsfiddle.net/inuitcss/6TKuS
 *
 */
.sprite, .ginput_card_security_code_icon,
.gform_card_icon,
.icon {
  display: inline-block;
  line-height: 1;
  position: relative;
  vertical-align: middle;
  zoom: 1;
  /**
     * So using `.icon` on certain elements doesn’t make a visual difference.
     */
  font-style: normal;
  font-weight: normal;
  /**
     * So icons added using `.icon` sit in the centre of the element.
     */
  text-align: center; }

.sprite, .ginput_card_security_code_icon,
.gform_card_icon {
  /**
     * The typical size of most icons. Override in your theme stylesheet.
     */
  width: 16px;
  height: 16px;
  top: -1px;
  /*
     * H5BP method image replacement:
     * github.com/h5bp/html5-boilerplate/commit/adecc5da035d6d76b77e3fa95c6abde841073da2
     */
  overflow: hidden;
  *text-indent: -9999px; }
  .sprite:before, .ginput_card_security_code_icon:before,
  .gform_card_icon:before {
    content: "";
    display: block;
    width: 0;
    height: 100%; }

/**
 * Set up icon font
 */
.icon {
  font-size: 16px;
  /**
     * Place the icon in a box the exact same dimensions as the icon itself.
     */
  width: 1em;
  height: 1em; }
  .icon:before {
    content: attr(data-icon); }

/**
 * Icon size modifiers.
 */
.icon--large {
  font-size: 32px; }

.icon--huge {
  font-size: 64px; }

.icon--natural {
  font-size: inherit; }

/*------------------------------------*    $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 {
  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: 0;
  /* [8] */ }

.btn, .btn:hover {
  text-decoration: none;
  /* [9] */ }

.btn:active, .btn: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, .two-quarters, .three-sixths, .four-eighths, .five-tenths, .six-twelfths {
  width: 50%; }

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

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

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

.three-quarters, .six-eighths, .nine-twelfths {
  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: 419px) {
  /**
    * Whole
    */
  .palm-one-whole {
    width: 100%; }
  /**
    * Halves
    */
  .palm-one-half, .palm-two-quarters, .palm-three-sixths, .palm-four-eighths, .palm-five-tenths, .palm-six-twelfths {
    width: 50%; }
  /**
    * Thirds
    */
  .palm-one-third, .palm-two-sixths, .palm-four-twelfths {
    width: 33.333%; }
  .palm-two-thirds, .palm-four-sixths, .palm-eight-twelfths {
    width: 66.666%; }
  /**
    * Quarters
    */
  .palm-one-quarter, .palm-two-eighths, .palm-three-twelfths {
    width: 25%; }
  .palm-three-quarters, .palm-six-eighths, .palm-nine-twelfths {
    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: 420px) and (max-width: 768px) {
  /**
    * Whole
    */
  .lap-one-whole {
    width: 100%; }
  /**
    * Halves
    */
  .lap-one-half, .lap-two-quarters, .lap-three-sixths, .lap-four-eighths, .lap-five-tenths, .lap-six-twelfths {
    width: 50%; }
  /**
    * Thirds
    */
  .lap-one-third, .lap-two-sixths, .lap-four-twelfths {
    width: 33.333%; }
  .lap-two-thirds, .lap-four-sixths, .lap-eight-twelfths {
    width: 66.666%; }
  /**
    * Quarters
    */
  .lap-one-quarter, .lap-two-eighths, .lap-three-twelfths {
    width: 25%; }
  .lap-three-quarters, .lap-six-eighths, .lap-nine-twelfths {
    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: 420px) {
  /**
    * Whole
    */
  .lap-and-up-one-whole {
    width: 100%; }
  /**
    * Halves
    */
  .lap-and-up-one-half, .lap-and-up-two-quarters, .lap-and-up-three-sixths, .lap-and-up-four-eighths, .lap-and-up-five-tenths, .lap-and-up-six-twelfths {
    width: 50%; }
  /**
    * Thirds
    */
  .lap-and-up-one-third, .lap-and-up-two-sixths, .lap-and-up-four-twelfths {
    width: 33.333%; }
  .lap-and-up-two-thirds, .lap-and-up-four-sixths, .lap-and-up-eight-twelfths {
    width: 66.666%; }
  /**
    * Quarters
    */
  .lap-and-up-one-quarter, .lap-and-up-two-eighths, .lap-and-up-three-twelfths {
    width: 25%; }
  .lap-and-up-three-quarters, .lap-and-up-six-eighths, .lap-and-up-nine-twelfths {
    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: 768px) {
  /**
    * Whole
    */
  .portable-one-whole {
    width: 100%; }
  /**
    * Halves
    */
  .portable-one-half, .portable-two-quarters, .portable-three-sixths, .portable-four-eighths, .portable-five-tenths, .portable-six-twelfths {
    width: 50%; }
  /**
    * Thirds
    */
  .portable-one-third, .portable-two-sixths, .portable-four-twelfths {
    width: 33.333%; }
  .portable-two-thirds, .portable-four-sixths, .portable-eight-twelfths {
    width: 66.666%; }
  /**
    * Quarters
    */
  .portable-one-quarter, .portable-two-eighths, .portable-three-twelfths {
    width: 25%; }
  .portable-three-quarters, .portable-six-eighths, .portable-nine-twelfths {
    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: 769px) {
  /**
    * Whole
    */
  .desk-one-whole {
    width: 100%; }
  /**
    * Halves
    */
  .desk-one-half, .desk-two-quarters, .desk-three-sixths, .desk-four-eighths, .desk-five-tenths, .desk-six-twelfths {
    width: 50%; }
  /**
    * Thirds
    */
  .desk-one-third, .desk-two-sixths, .desk-four-twelfths {
    width: 33.333%; }
  .desk-two-thirds, .desk-four-sixths, .desk-eight-twelfths {
    width: 66.666%; }
  /**
    * Quarters
    */
  .desk-one-quarter, .desk-two-eighths, .desk-three-twelfths {
    width: 25%; }
  .desk-three-quarters, .desk-six-eighths, .desk-nine-twelfths {
    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: 1200px) {
  /**
    * Whole
    */
  .desk-wide-one-whole {
    width: 100%; }
  /**
    * Halves
    */
  .desk-wide-one-half, .desk-wide-two-quarters, .desk-wide-three-sixths, .desk-wide-four-eighths, .desk-wide-five-tenths, .desk-wide-six-twelfths {
    width: 50%; }
  /**
    * Thirds
    */
  .desk-wide-one-third, .desk-wide-two-sixths, .desk-wide-four-twelfths {
    width: 33.333%; }
  .desk-wide-two-thirds, .desk-wide-four-sixths, .desk-wide-eight-twelfths {
    width: 66.666%; }
  /**
    * Quarters
    */
  .desk-wide-one-quarter, .desk-wide-two-eighths, .desk-wide-three-twelfths {
    width: 25%; }
  .desk-wide-three-quarters, .desk-wide-six-eighths, .desk-wide-nine-twelfths {
    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: sans-serif!important;
  color: #0E9C48!important; }

.brand-face {
  font-family: sans-serif!important; }

.brand-color,
.brand-colour {
  color: #0E9C48!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: 0px !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.soft-half--sides {
  padding-right: 0px !important;
  padding-left: 0px !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: 0px !important;
  margin-left: 0px !important; }
  .islet .full-bleed {
    margin-right: 0px !important;
    margin-left: 0px !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,
.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: 419px) {
  .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: 420px) and (max-width: 768px) {
  .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: 420px) {
  .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: 768px) {
  .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: 769px) {
  .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: 1200px) {
  .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 */
/**
 * She’s all yours, cap’n... Begin importing your stuff here.
 */
/**
 * Place any mixins that sit on top of umi-base mixins
 * If it would benefit any of the child themes, add it to umi-base instead
 */
a.sprite, a.ginput_card_security_code_icon,
a.gform_card_icon,
a.ico,
button.sprite,
button.ginput_card_security_code_icon,
button.gform_card_icon,
button.ico {
  padding: 0;
  border: none;
  background-color: transparent;
  text-indent: -9999px;
  outline: none; }
  a.sprite:hover, a.ginput_card_security_code_icon:hover,
  a.gform_card_icon:hover,
  a.ico:hover,
  button.sprite:hover,
  button.ginput_card_security_code_icon:hover,
  button.gform_card_icon:hover,
  button.ico:hover {
    background-color: transparent; }
  a.sprite:focus, a.ginput_card_security_code_icon:focus,
  a.gform_card_icon:focus, a.sprite:active, a.ginput_card_security_code_icon:active,
  a.gform_card_icon:active,
  a.ico:focus,
  a.ico:active,
  button.sprite:focus,
  button.ginput_card_security_code_icon:focus,
  button.gform_card_icon:focus,
  button.sprite:active,
  button.ginput_card_security_code_icon:active,
  button.gform_card_icon:active,
  button.ico:focus,
  button.ico:active {
    outline: none; }

.sprite, .ginput_card_security_code_icon,
.gform_card_icon {
  position: relative;
  display: inline-block;
  top: auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
  max-width: 100%; }

.sprite--logo {
  width: 216px;
  height: 14px;
  background-image: url(../svg/logo-2.svg); }

.sprite--spinner {
  width: 40px;
  height: 40px; }

.sprite--spinner {
  background-image: url(../svg/spinner-2.svg); }

.ico {
  display: inline-block; }

.icon-chevron-right, header.site-banner ul.main-nav li.menu-item-has-children > ul.nav > li > a:after, header.site-banner ul.dropdown-menu li > a:after, .icon-chevron-right-button, .btn--action:after, form input[type="submit"]:after,
.gform_footer button[type="submit"]:after,
.gform_next_button:after, .btn--with-left-arrow:before, .gform_previous_button:before, section.secondary-header .secondary-header__buy-button:after,
section.secondary-header .secondary-header__register-button:after, aside.georedirect .georedirect__footer a.btn--action:after, aside.georedirect .georedirect__footer
a.gform_next_button:after, .icon-chevron-right-button-red, .btn--text:after, .btn--text-with-border-top:after, .page-intro .page-intro__back-link:before, nav.next-article .page-intro__back-link:before, nav.next-article .next-article__next-link:after, .icon-close, .mobile-menu-button.close-button:before, aside.georedirect .modal-panel__close-btn:before, .icon-close-modal, .modal-panel__close-btn:before, .icon-collapsible-arrow, .iframe .site .site-content .page section.collapsible-content-row .collapsible-content-row__tab:after,
.iframe .site__inner .site-content .page section.collapsible-content-row .collapsible-content-row__tab:after, section.collapsible-content-row .collapsible-content-row__tab:after, .icon-contact, .icon-contact-2x, .ico--contact-2x, .icon-download, .icon-enquire, section.secondary-header .secondary-header__actions a.enquire:after, .icon-facebook, footer.site-footer ul li a.facebook:before, .icon-find-a-dealer, .btn--modal-primary:before, .icon-info, .pill-link.pill-link--info:after, .icon-instagram, footer.site-footer ul li a.instagram:before, .icon-instagram-white, .icon-lightbox, .iframe .site .site-content .page section.gallery-slider .gallery-slider-wrapper .swiper-slide a:hover:before,
.iframe .site__inner .site-content .page section.gallery-slider .gallery-slider-wrapper .swiper-slide a:hover:before, .iframe .site .site-content .page section.boxed .boxed-gallery-slider-top .swiper-slide a:hover:before,
.iframe .site__inner .site-content .page section.boxed .boxed-gallery-slider-top .swiper-slide a:hover:before, section.image-grid .grid-sizer a:before, section.image-grid .grid-item a:before, section.gallery-slider .gallery-slider-wrapper .swiper-slide a:hover:before, .icon-location, .icon-location-2x, .ico--location-2x, .icon-location-primary, header.site-banner ul.secondary-nav li:not(.country-select-wrap) a.find-a-dealer:before, .icon-menu, .mobile-menu-button--alt:before, .mobile-menu-button:before, .icon-scroll-down, section.hero .scroll-button:after, .icon-search-result-location, .modal-panel .modal-panel__search-results ul.dealers li .dealers__location-box:before, .dealers-search-results .dealers .dealers__location-box:before, .icon-select-arrow, span.customSelectInner:after, section.secondary-header h2:after, .icon-select-arrow-modal, .modal-panel form:not(.gform_form) .customSelect span.customSelectInner:after,
.finance-calculator form:not(.gform_form) .customSelect span.customSelectInner:after, .icon-share-facebook, .page-intro .share-line .share-button.facebook:before, nav.next-article .share-line .share-button.facebook:before, .icon-share-twitter, .page-intro .share-line .share-button.twitter:before, nav.next-article .share-line .share-button.twitter:before, .icon-slider-hero-left, .swiper-button-prev.swiper-button--hero:before, .swiper-button-prev.swiper-button--hero.swiper-button-disabled:before, section.multi-column-content-slider .swiper-button-prev:before, section.accessories .swiper-button-prev:before, .icon-slider-hero-left-disabled, .icon-slider-hero-right, .swiper-button-next.swiper-button--hero:before, .swiper-button-next.swiper-button--hero.swiper-button-disabled:before, section.multi-column-content-slider .swiper-button-next:before, section.accessories .swiper-button-next:before, .icon-slider-hero-right-disabled, .icon-slider-left, .swiper-button-prev:before, .icon-slider-product-details-left, .swiper-button-prev.swiper-button--product-details:before, .icon-slider-product-details-right, .swiper-button-next.swiper-button--product-details:before, .icon-slider-right, .swiper-button-next:before, .icon-test-ride, .icon-test-ride-primary, header.site-banner ul.secondary-nav li:not(.country-select-wrap) a.book-test-ride:before, .icon-twitter, footer.site-footer ul li a.twitter:before, .icon-video-play, section.content-media-row .content-media-row__media .content-media-row__play-button:before, section.model-promo-row .model-promo-row__media .model-promo-row__play-button:before, .icon-youtube, footer.site-footer ul li a.youtube:before {
  background: url("../svg/sprite.svg") no-repeat; }

.icon-chevron-right, header.site-banner ul.main-nav li.menu-item-has-children > ul.nav > li > a:after, header.site-banner ul.dropdown-menu li > a:after {
  background-position: 98.96373056994818% 64.42953020134229%; }

.icon-chevron-right-dims, header.site-banner ul.main-nav li.menu-item-has-children > ul.nav > li > a:after, header.site-banner ul.dropdown-menu li > a:after {
  width: 6px;
  height: 10px; }

.icon-chevron-right-button, .btn--action:after, form input[type="submit"]:after,
.gform_footer button[type="submit"]:after,
.gform_next_button:after, .btn--with-left-arrow:before, .gform_previous_button:before, section.secondary-header .secondary-header__buy-button:after,
section.secondary-header .secondary-header__register-button:after, aside.georedirect .georedirect__footer a.btn--action:after, aside.georedirect .georedirect__footer
a.gform_next_button:after {
  background-position: 100% 29.25170068027211%; }

.icon-chevron-right-button-dims, .btn--action:after, form input[type="submit"]:after,
.gform_footer button[type="submit"]:after,
.gform_next_button:after, .btn--with-left-arrow:before, .gform_previous_button:before, section.secondary-header .secondary-header__buy-button:after,
section.secondary-header .secondary-header__register-button:after, aside.georedirect .georedirect__footer a.btn--action:after, aside.georedirect .georedirect__footer
a.gform_next_button:after {
  width: 8px;
  height: 12px; }

.icon-chevron-right-button-red, .btn--text:after, .btn--text-with-border-top:after, .page-intro .page-intro__back-link:before, nav.next-article .page-intro__back-link:before, nav.next-article .next-article__next-link:after {
  background-position: 99.47916666666667% 42.857142857142854%; }

.icon-chevron-right-button-red-dims, .btn--text:after, .btn--text-with-border-top:after, .page-intro .page-intro__back-link:before, nav.next-article .page-intro__back-link:before, nav.next-article .next-article__next-link:after {
  width: 7px;
  height: 12px; }

.icon-close, .mobile-menu-button.close-button:before, aside.georedirect .modal-panel__close-btn:before {
  background-position: 39.34426229508197% 96.5034965034965%; }

.icon-close-dims, .mobile-menu-button.close-button:before, aside.georedirect .modal-panel__close-btn:before {
  width: 16px;
  height: 16px; }

.icon-close-modal, .modal-panel__close-btn:before {
  background-position: 30.601092896174862% 96.5034965034965%; }

.icon-close-modal-dims, .modal-panel__close-btn:before {
  width: 16px;
  height: 16px; }

.icon-collapsible-arrow, .iframe .site .site-content .page section.collapsible-content-row .collapsible-content-row__tab:after,
.iframe .site__inner .site-content .page section.collapsible-content-row .collapsible-content-row__tab:after, section.collapsible-content-row .collapsible-content-row__tab:after {
  background-position: 98.88268156424581% 56.84931506849315%; }

.icon-collapsible-arrow-dims, .iframe .site .site-content .page section.collapsible-content-row .collapsible-content-row__tab:after,
.iframe .site__inner .site-content .page section.collapsible-content-row .collapsible-content-row__tab:after, section.collapsible-content-row .collapsible-content-row__tab:after {
  width: 20px;
  height: 13px; }

.icon-contact {
  background-position: 42.473118279569896% 79.72972972972973%; }

.icon-contact-dims {
  width: 13px;
  height: 11px; }

.icon-contact-2x, .ico--contact-2x {
  background-position: 0 100%; }

.icon-contact-2x-dims, .ico--contact-2x {
  width: 26px;
  height: 21px; }

.icon-download {
  background-position: 46.808510638297875% 95.17241379310344%; }

.icon-download-dims {
  width: 11px;
  height: 14px; }

.icon-enquire, section.secondary-header .secondary-header__actions a.enquire:after {
  background-position: 35.483870967741936% 79.72972972972973%; }

.icon-enquire-dims, section.secondary-header .secondary-header__actions a.enquire:after {
  width: 13px;
  height: 11px; }

.icon-facebook, footer.site-footer ul li a.facebook:before {
  background-position: 93.15789473684211% 82.85714285714286%; }

.icon-facebook-dims, footer.site-footer ul li a.facebook:before {
  width: 9px;
  height: 19px; }

.icon-find-a-dealer, .btn--modal-primary:before {
  background-position: 85.95505617977528% 69.62962962962963%; }

.icon-find-a-dealer-dims, .btn--modal-primary:before {
  width: 21px;
  height: 24px; }

.icon-info, .pill-link.pill-link--info:after {
  background-position: 98.96907216494846% 15.384615384615385%; }

.icon-info-dims, .pill-link.pill-link--info:after {
  width: 5px;
  height: 16px; }

.icon-instagram, footer.site-footer ul li a.instagram:before {
  background-position: 100% 0; }

.icon-instagram-dims, footer.site-footer ul li a.instagram:before {
  width: 22px;
  height: 22px; }

.icon-instagram-white {
  background-position: 73.44632768361582% 64.23357664233576%; }

.icon-instagram-white-dims {
  width: 22px;
  height: 22px; }

.icon-lightbox, .iframe .site .site-content .page section.gallery-slider .gallery-slider-wrapper .swiper-slide a:hover:before,
.iframe .site__inner .site-content .page section.gallery-slider .gallery-slider-wrapper .swiper-slide a:hover:before, .iframe .site .site-content .page section.boxed .boxed-gallery-slider-top .swiper-slide a:hover:before,
.iframe .site__inner .site-content .page section.boxed .boxed-gallery-slider-top .swiper-slide a:hover:before, section.image-grid .grid-sizer a:before, section.image-grid .grid-item a:before, section.gallery-slider .gallery-slider-wrapper .swiper-slide a:hover:before {
  background-position: 0 0; }

.icon-lightbox-dims, .iframe .site .site-content .page section.gallery-slider .gallery-slider-wrapper .swiper-slide a:hover:before,
.iframe .site__inner .site-content .page section.gallery-slider .gallery-slider-wrapper .swiper-slide a:hover:before, .iframe .site .site-content .page section.boxed .boxed-gallery-slider-top .swiper-slide a:hover:before,
.iframe .site__inner .site-content .page section.boxed .boxed-gallery-slider-top .swiper-slide a:hover:before, section.image-grid .grid-sizer a:before, section.image-grid .grid-item a:before, section.gallery-slider .gallery-slider-wrapper .swiper-slide a:hover:before {
  width: 66px;
  height: 66px; }

.icon-location {
  background-position: 95.67567567567568% 69.06474820143885%; }

.icon-location-dims {
  width: 14px;
  height: 20px; }

.icon-location-2x, .ico--location-2x {
  background-position: 96.19565217391305% 15.942028985507246%; }

.icon-location-2x-dims, .ico--location-2x {
  width: 15px;
  height: 21px; }

.icon-location-primary, header.site-banner ul.secondary-nav li:not(.country-select-wrap) a.find-a-dealer:before {
  background-position: 95.67567567567568% 30.93525179856115%; }

.icon-location-primary-dims, header.site-banner ul.secondary-nav li:not(.country-select-wrap) a.find-a-dealer:before {
  width: 14px;
  height: 20px; }

.icon-menu, .mobile-menu-button--alt:before, .mobile-menu-button:before {
  background-position: 26.519337016574585% 80.27210884353741%; }

.icon-menu-dims, .mobile-menu-button--alt:before, .mobile-menu-button:before {
  width: 18px;
  height: 12px; }

.icon-scroll-down, section.hero .scroll-button:after {
  background-position: 0 61.6822429906542%; }

.icon-scroll-down-dims, section.hero .scroll-button:after {
  width: 52px;
  height: 52px; }

.icon-search-result-location, .modal-panel .modal-panel__search-results ul.dealers li .dealers__location-box:before, .dealers-search-results .dealers .dealers__location-box:before {
  background-position: 95.67567567567568% 45.32374100719424%; }

.icon-search-result-location-dims, .modal-panel .modal-panel__search-results ul.dealers li .dealers__location-box:before, .dealers-search-results .dealers .dealers__location-box:before {
  width: 14px;
  height: 20px; }

.icon-select-arrow, span.customSelectInner:after, section.secondary-header h2:after {
  background-position: 49.19786096256684% 78.66666666666667%; }

.icon-select-arrow-dims, span.customSelectInner:after, section.secondary-header h2:after {
  width: 12px;
  height: 9px; }

.icon-select-arrow-modal, .modal-panel form:not(.gform_form) .customSelect span.customSelectInner:after,
.finance-calculator form:not(.gform_form) .customSelect span.customSelectInner:after {
  background-position: 94.6524064171123% 98.67549668874172%; }

.icon-select-arrow-modal-dims, .modal-panel form:not(.gform_form) .customSelect span.customSelectInner:after,
.finance-calculator form:not(.gform_form) .customSelect span.customSelectInner:after {
  width: 12px;
  height: 8px; }

.icon-share-facebook, .page-intro .share-line .share-button.facebook:before, nav.next-article .share-line .share-button.facebook:before {
  background-position: 97.89473684210526% 82.85714285714286%; }

.icon-share-facebook-dims, .page-intro .share-line .share-button.facebook:before, nav.next-article .share-line .share-button.facebook:before {
  width: 9px;
  height: 19px; }

.icon-share-twitter, .page-intro .share-line .share-button.twitter:before, nav.next-article .share-line .share-button.twitter:before {
  background-position: 98.33333333333333% 93.10344827586206%; }

.icon-share-twitter-dims, .page-intro .share-line .share-button.twitter:before, nav.next-article .share-line .share-button.twitter:before {
  width: 19px;
  height: 14px; }

.icon-slider-hero-left, .swiper-button-prev.swiper-button--hero:before, .swiper-button-prev.swiper-button--hero.swiper-button-disabled:before, section.multi-column-content-slider .swiper-button-prev:before, section.accessories .swiper-button-prev:before {
  background-position: 30.057803468208093% 58.4070796460177%; }

.icon-slider-hero-left-dims, .swiper-button-prev.swiper-button--hero:before, .swiper-button-prev.swiper-button--hero.swiper-button-disabled:before, section.multi-column-content-slider .swiper-button-prev:before, section.accessories .swiper-button-prev:before {
  width: 26px;
  height: 46px; }

.icon-slider-hero-left-disabled, .swiper-button-prev.swiper-button--hero.swiper-button-disabled:before {
  background-position: 59.42857142857143% 57.391304347826086%; }

.icon-slider-hero-left-disabled-dims, .swiper-button-prev.swiper-button--hero.swiper-button-disabled:before {
  width: 24px;
  height: 44px; }

.icon-slider-hero-right, .swiper-button-next.swiper-button--hero:before, .swiper-button-next.swiper-button--hero.swiper-button-disabled:before, section.multi-column-content-slider .swiper-button-next:before, section.accessories .swiper-button-next:before {
  background-position: 45.08670520231214% 58.4070796460177%; }

.icon-slider-hero-right-dims, .swiper-button-next.swiper-button--hero:before, .swiper-button-next.swiper-button--hero.swiper-button-disabled:before, section.multi-column-content-slider .swiper-button-next:before, section.accessories .swiper-button-next:before {
  width: 26px;
  height: 46px; }

.icon-slider-hero-right-disabled, .swiper-button-next.swiper-button--hero.swiper-button-disabled:before {
  background-position: 73.86363636363636% 38.26086956521739%; }

.icon-slider-hero-right-disabled-dims, .swiper-button-next.swiper-button--hero.swiper-button-disabled:before {
  width: 23px;
  height: 44px; }

.icon-slider-left, .swiper-button-prev:before {
  background-position: 83.15217391304348% 51.492537313432834%; }

.icon-slider-left-dims, .swiper-button-prev:before {
  width: 15px;
  height: 25px; }

.icon-slider-product-details-left, .swiper-button-prev.swiper-button--product-details:before {
  background-position: 87.42857142857143% 0; }

.icon-slider-product-details-left-dims, .swiper-button-prev.swiper-button--product-details:before {
  width: 24px;
  height: 44px; }

.icon-slider-product-details-right, .swiper-button-next.swiper-button--product-details:before {
  background-position: 73.86363636363636% 0; }

.icon-slider-product-details-right-dims, .swiper-button-next.swiper-button--product-details:before {
  width: 23px;
  height: 44px; }

.icon-slider-right, .swiper-button-next:before {
  background-position: 83.15217391304348% 32.83582089552239%; }

.icon-slider-right-dims, .swiper-button-next:before {
  width: 15px;
  height: 25px; }

.icon-test-ride {
  background-position: 22.282608695652176% 97.87234042553192%; }

.icon-test-ride-dims {
  width: 15px;
  height: 18px; }

.icon-test-ride-primary, header.site-banner ul.secondary-nav li:not(.country-select-wrap) a.book-test-ride:before {
  background-position: 14.130434782608695% 97.87234042553192%; }

.icon-test-ride-primary-dims, header.site-banner ul.secondary-nav li:not(.country-select-wrap) a.book-test-ride:before {
  width: 15px;
  height: 18px; }

.icon-twitter, footer.site-footer ul li a.twitter:before {
  background-position: 16.11111111111111% 81.37931034482759%; }

.icon-twitter-dims, footer.site-footer ul li a.twitter:before {
  width: 19px;
  height: 14px; }

.icon-video-play, section.content-media-row .content-media-row__media .content-media-row__play-button:before, section.model-promo-row .model-promo-row__media .model-promo-row__play-button:before {
  background-position: 48.888888888888886% 0; }

.icon-video-play-dims, section.content-media-row .content-media-row__media .content-media-row__play-button:before, section.model-promo-row .model-promo-row__media .model-promo-row__play-button:before {
  width: 64px;
  height: 64px; }

.icon-youtube, footer.site-footer ul li a.youtube:before {
  background-position: 0 84.89208633093526%; }

.icon-youtube-dims, footer.site-footer ul li a.youtube:before {
  width: 29px;
  height: 20px; }

.grid {
  font-size: 0;
  line-height: 0; }
  .grid:after {
    content: "";
    display: table;
    clear: both; }
  .grid.grid--reverse > .grid__item {
    float: right; }

.grid__item {
  font-size: 15px;
  line-height: 23px; }
  .grid__item:after {
    content: "";
    display: table;
    clear: both; }

.flex-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-left: 0px; }
  .flex-grid.flex-grid--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
  .flex-grid.flex-grid--hard {
    margin-left: 0; }
    .flex-grid.flex-grid--hard > .flex-grid__item {
      padding-left: 0; }
  .flex-grid.flex-grid--top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }
  .flex-grid.flex-grid--center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .flex-grid.flex-grid--bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end; }

.flex-grid__item {
  padding-left: 0px;
  max-width: 100%; }
  .flex-grid__item.flex-grid__item--top {
    -ms-flex-item-align: start;
    align-self: flex-start; }
  .flex-grid__item.flex-grid__item--center {
    -ms-flex-item-align: center;
    align-self: center; }
  .flex-grid__item.flex-grid__item--bottom {
    -ms-flex-item-align: end;
    align-self: flex-end; }

@media only screen and (min-width: 769px) {
  .desk-hide {
    display: none !important; }
  .desk-hard--sides {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .desk-soft--sides {
    padding-right: 0px !important;
    padding-left: 0px !important; }
  .desk-text--left {
    text-align: left !important; }
  .desk-text--right {
    text-align: right !important; }
  .desk-text--center {
    text-align: center !important; }
  .desk-float--left {
    float: left !important; }
  .desk-float--right {
    float: right !important; }
  .desk-float-none {
    float: none !important; }
  .desk-hard--left {
    padding-left: 0 !important; }
  .desk-hard--right {
    padding-right: 0 !important; }
  .desk-pull--bottom {
    margin-bottom: 0 !important; }
  .desk-pull--top {
    margin-top: 0 !important; }
  .grid.grid--reverse > .grid__item.desk-one-whole {
    float: none; } }

@media only screen and (min-width: 420px) {
  .lap-and-up-hide {
    display: none !important; }
  .lap-and-up-hard--sides {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .lap-and-up-soft--sides {
    padding-right: 0px !important;
    padding-left: 0px !important; }
  .lap-and-up-text--left {
    text-align: left !important; }
  .lap-and-up-text--right {
    text-align: right !important; }
  .lap-and-up-text--center {
    text-align: center !important; }
  .lap-and-up-float--left {
    float: left !important; }
  .lap-and-up-float--right {
    float: right !important; }
  .lap-and-up-float-none {
    float: none !important; }
  .lap-and-up-hard--left {
    padding-left: 0 !important; }
  .lap-and-up-hard--right {
    padding-right: 0 !important; }
  .lap-and-up-pull--bottom {
    margin-bottom: 0 !important; }
  .lap-and-up-pull--top {
    margin-top: 0 !important; }
  .grid.grid--reverse > .grid__item.lap-and-up-one-whole {
    float: none; } }

@media only screen and (max-width: 768px) {
  .portable-hide {
    display: none !important; }
  .portable-hard--sides {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .portable-soft--sides {
    padding-right: 0px !important;
    padding-left: 0px !important; }
  .portable-text--left {
    text-align: left !important; }
  .portable-text--right {
    text-align: right !important; }
  .portable-text--center {
    text-align: center !important; }
  .portable-float--left {
    float: left !important; }
  .portable-float--right {
    float: right !important; }
  .portable-float-none {
    float: none !important; }
  .portable-hard--left {
    padding-left: 0 !important; }
  .portable-hard--right {
    padding-right: 0 !important; }
  .portable-pull--bottom {
    margin-bottom: 0 !important; }
  .portable-pull--top {
    margin-top: 0 !important; }
  .grid.grid--reverse > .grid__item.portable-one-whole {
    float: none; } }

@media only screen and (min-width: 420px) and (max-width: 768px) {
  .lap-hide {
    display: none !important; }
  .lap-hard--sides {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .lap-soft--sides {
    padding-right: 0px !important;
    padding-left: 0px !important; }
  .lap-text--left {
    text-align: left !important; }
  .lap-text--right {
    text-align: right !important; }
  .lap-text--center {
    text-align: center !important; }
  .lap-float--left {
    float: left !important; }
  .lap-float--right {
    float: right !important; }
  .lap-float-none {
    float: none !important; }
  .lap-hard--left {
    padding-left: 0 !important; }
  .lap-hard--right {
    padding-right: 0 !important; }
  .lap-pull--bottom {
    margin-bottom: 0 !important; }
  .lap-pull--top {
    margin-top: 0 !important; }
  .grid.grid--reverse > .grid__item.lap-one-whole {
    float: none; }
  .grid__item {
    font-size: 14px; } }

@media only screen and (max-width: 419px) {
  .palm-hide {
    display: none !important; }
  .palm-hard--sides {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .palm-soft--sides {
    padding-right: 0px !important;
    padding-left: 0px !important; }
  .palm-text--left {
    text-align: left !important; }
  .palm-text--right {
    text-align: right !important; }
  .palm-text--center {
    text-align: center !important; }
  .palm-float--left {
    float: left !important; }
  .palm-float--right {
    float: right !important; }
  .palm-float-none {
    float: none !important; }
  .palm-hard--left {
    padding-left: 0 !important; }
  .palm-hard--right {
    padding-right: 0 !important; }
  .palm-pull--bottom {
    margin-bottom: 0 !important; }
  .palm-pull--top {
    margin-top: 0 !important; }
  .grid.grid--reverse > .grid__item.palm-one-whole {
    float: none; }
  .grid__item {
    font-size: 12px; } }

html,
body {
  height: 100%;
  overflow: hidden; }

body {
  background-color: #ffffff; }

a:focus,
input[type=button]:focus,
input[type=submit]:focus,
button:focus {
  outline: none; }

main,
header,
footer,
article,
section {
  position: relative; }

.nav,
.nav li {
  margin-bottom: 0; }
  .nav.ignore > a,
  .nav li.ignore > a {
    cursor: default;
    pointer-events: none; }

ul.inline-list, ol.inline-list {
  list-style-type: none;
  padding: 0;
  margin: 0; }
  ul.inline-list li, ol.inline-list li {
    display: inline-block; }

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

.wrap {
  width: 1180px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative; }
  .wrap:after {
    content: "";
    display: table;
    clear: both; }
  .wrap.wrap--full {
    width: 100%;
    padding-right: 0px;
    padding-left: 0px; }
  .wrap.wrap--hard {
    padding-right: 0 !important;
    padding-left: 0 !important; }

.vh {
  height: 100vh; }

.vw {
  width: 100vw; }

.bg--image-full {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; }

img {
  width: auto;
  height: auto; }
  img, img[height], img[width] {
    max-width: 100%; }
  img.full {
    width: 100%; }

img.lazy:not([src]) {
  visibility: hidden; }

div.lazy.loading:after, section.lazy.loading:after, aside.lazy.loading:after, span.lazy.loading:after {
  content: "";
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  z-index: 1;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url(../svg/spinner-2.svg); }

span.lazy-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  z-index: 1;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url(../svg/spinner-2.svg); }

@media only screen and (min-width: 769px) and (max-width: 1180px) {
  .wrap:not(.wrap--hard) {
    padding-left: 0px;
    padding-right: 0px; } }

@media only screen and (max-width: 768px) {
  .wrap:not(.wrap--hard) {
    padding-left: 0px;
    padding-right: 0px; } }

@media only screen and (max-width: 419px) {
  * {
    -webkit-overflow-scrolling: touch; } }

.bg--darkest {
  background-color: #000000; }

.colour--darkest {
  color: #000000; }

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

.colour--lightest {
  color: #ffffff; }

.bg--grey-primary {
  background-color: #212121; }

.color--grey-primary {
  color: #212121; }

.bg--grey-secondary {
  background-color: #72777B; }

.color--grey-secondary {
  color: #72777B; }

.bg--primary {
  background-color: #0E9C48; }

.color--primary {
  color: #0E9C48; }

.bg--secondary {
  background-color: #212121; }

.color--secondary {
  color: #212121; }

.bg--tertiary {
  background-color: #72777B; }

.color--tertiary {
  color: #72777B; }

.bg--brand {
  background-color: #0E9C48; }

.color--brand {
  color: #0E9C48; }

.bg--error {
  background-color: #8A0E1D; }

.color--error {
  color: #8A0E1D; }

html, body {
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #212121; }

p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px; }
  p.note {
    font-size: 12px;
    color: #72777B;
    margin-bottom: 20px; }
  p a {
    color: inherit; }

::-moz-selection {
  background-color: #000000;
  color: #ffffff; }

::selection {
  background-color: #000000;
  color: #ffffff; }

a {
  -webkit-transition: all 0.4s;
  transition: all 0.4s; }
  a, a:visited {
    color: #0E9C48; }
  a .ico + span:not(.visuallyhidden) {
    display: inline-block;
    margin-left: 6px; }
  a span:not(.visuallyhidden) + .ico {
    display: inline-block;
    margin-left: 6px; }

p,
ul,
ol,
dl,
blockquote,
table,
h1,
h2,
h3,
h4,
h5,
h6,
figure {
  margin-bottom: 0px; }

address {
  font-style: normal; }

h1, h2, h3, h4,
.h1, .h2, .h3, .h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700 !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: uppercase;
  font-weight: 400;
  color: #212121; }

h4, .h4 {
  color: #0E9C48; }

h5, .h5 {
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  color: #212121; }
  h5 .semibold, h5 .font-semibold, .h5 .semibold, .h5 .font-semibold {
    font-weight: 600; }

h6, .h6 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  color: #212121; }
  h6 .semibold, h6 .font-semibold, .h6 .semibold, .h6 .font-semibold {
    font-weight: 600; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  line-height: 0.95; }
  h1.decorated, h2.decorated, h3.decorated, h4.decorated, h5.decorated, h6.decorated,
  .h1.decorated, .h2.decorated, .h3.decorated, .h4.decorated, .h5.decorated, .h6.decorated {
    padding-bottom: 24px;
    margin-bottom: 30px;
    position: relative; }
    h1.decorated:after, h2.decorated:after, h3.decorated:after, h4.decorated:after, h5.decorated:after, h6.decorated:after,
    .h1.decorated:after, .h2.decorated:after, .h3.decorated:after, .h4.decorated:after, .h5.decorated:after, .h6.decorated:after {
      content: '';
      display: block;
      width: 166px;
      height: 3px;
      position: absolute;
      bottom: 0;
      background: #0E9C48; }

.surtitle {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 13px;
  line-height: .8;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 5px; }

p.link-subtitle {
  font-size: 16px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 900;
  text-transform: uppercase; }

a.text-cta {
  font-weight: 500;
  margin-left: 40px;
  font-size: 14px; }
  @media only screen and (max-width: 419px) {
    a.text-cta {
      display: inline-block;
      margin-left: 30px;
      margin-right: 30px;
      margin-top: 20px; } }

.normal, .font-normal {
  font-weight: 400; }

strong, b, .strong, .bold, .font-bold {
  font-weight: 700; }

.semibold, .font-semibold {
  font-weight: 600; }

h1,
.h1 {
  font-size: 55px; }

h2,
.h2 {
  font-size: 40px; }

h3,
.h3 {
  font-size: 30px; }

h4,
.h4 {
  font-size: 60px; }

h5,
.h5 {
  font-size: 15px; }

h6,
.h6 {
  font-size: 16px; }

table:not(.ui-datepicker-calendar) {
  border: none; }
  table:not(.ui-datepicker-calendar) th,
  table:not(.ui-datepicker-calendar) thead td {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  table:not(.ui-datepicker-calendar) th,
  table:not(.ui-datepicker-calendar) td {
    vertical-align: top; }
  table:not(.ui-datepicker-calendar) thead tr td,
  table:not(.ui-datepicker-calendar) thead tr th,
  table:not(.ui-datepicker-calendar) tbody tr:not(:last-child) td,
  table:not(.ui-datepicker-calendar) tbody tr:last-child td {
    border-bottom: 1px solid #ccc;
    padding: 15px; }

table:not(ui-datepicker-calendar).table--reversed {
  border-color: #72777B;
  color: #ffffff; }
  table:not(ui-datepicker-calendar).table--reversed thead tr td,
  table:not(ui-datepicker-calendar).table--reversed thead tr th,
  table:not(ui-datepicker-calendar).table--reversed tbody tr:not(:last-child) td {
    border-color: #72777B; }

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

.text-lowercase {
  text-transform: lowercase; }

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

ul.no-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 0px; }

ol:not(.nav):not(.gform_fields):not(.no-bullets):not(.inline-list):not(.dropdown-menu):not(.gfield_checkbox):not(.gfield_radio):not(.dealers) {
  padding-left: 15px; }

ul:not(.nav):not(.gform_fields):not(.no-bullets):not(.inline-list):not(.dropdown-menu):not(.gfield_checkbox):not(.gfield_radio):not(.dealers) {
  padding-left: 0;
  list-style: none; }
  ul:not(.nav):not(.gform_fields):not(.no-bullets):not(.inline-list):not(.dropdown-menu):not(.gfield_checkbox):not(.gfield_radio):not(.dealers) li:before {
    content: '\2022 ';
    color: #0E9C48;
    padding-right: 10px;
    font-size: 30px;
    line-height: 6px;
    height: 10px;
    overflow: hidden;
    display: inline-block; }

span.br,
i.br {
  display: block;
  width: 0; }

@media only screen and (max-width: 419px) {
  table:not(.ui-datepicker-calendar):not(.gfield_list) {
    width: 100%; }
    table:not(.ui-datepicker-calendar):not(.gfield_list) thead tr td,
    table:not(.ui-datepicker-calendar):not(.gfield_list) thead tr th,
    table:not(.ui-datepicker-calendar):not(.gfield_list) tbody tr:not(:last-child) td {
      border-bottom: none; }
    table:not(.ui-datepicker-calendar):not(.gfield_list) tbody tr:not(:last-child) td:last-child {
      border-bottom: 2px solid #72777B; }
    table:not(.ui-datepicker-calendar):not(.gfield_list).table--reversed tbody tr:not(:last-child) td:last-child {
      border-color: #72777B; }
    table:not(.ui-datepicker-calendar):not(.gfield_list) thead {
      display: none; }
    table:not(.ui-datepicker-calendar):not(.gfield_list) tbody td {
      display: block; }
      table:not(.ui-datepicker-calendar):not(.gfield_list) tbody td:before {
        content: attr(data-th);
        font-family: 'Roboto', sans-serif;
        font-weight: bold;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        display: block; }
  .mega,
  h1,
  .h1 {
    font-size: 50px; }
  h2,
  .h2 {
    font-size: 40px; }
  h3,
  .h3 {
    font-size: 1.6em; }
  h4,
  .h4 {
    font-size: 1.4em; }
  h5,
  .h5 {
    font-size: 1.2em; }
  h6,
  .h6 {
    font-size: 1.1em; } }

dl:after {
  clear: left;
  content: '';
  display: block; }

dl dt, dl dd {
  display: inline-block;
  vertical-align: top;
  float: left;
  border-top: 1px solid #D8D8D8;
  padding: 7px 10px 7px 0; }
  dl dt:first-child, dl dt:nth-child(2), dl dd:first-child, dl dd:nth-child(2) {
    border-top: 0; }

dl dt {
  clear: left;
  width: 33%; }
  @media only screen and (max-width: 419px) {
    dl dt {
      width: 50%; } }

dl dd {
  width: 67%; }
  @media only screen and (max-width: 419px) {
    dl dd {
      width: 50%; } }

.lazy-media {
  position: relative;
  margin: 0;
  padding: 0; }

.lazy-media__placeholder,
.lazy-media__image,
.lazy-media__fallback {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: none;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 1s linear;
  transition: opacity 1s linear;
  will-change: opacity; }
  .lazy-media__placeholder.loaded,
  .lazy-media__image.loaded,
  .lazy-media__fallback.loaded {
    opacity: 1; }

.lazy-media__placeholder {
  -webkit-filter: blur(5px);
  filter: blur(5px);
  /* this is needed so Safari keeps sharp edges */
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
  z-index: 1; }
  .lazy-media__placeholder.loaded {
    opacity: 0.6;
    -webkit-transition-delay: 0s;
    transition-delay: 0s; }

.lazy-media__image,
.lazy-media__fallback {
  z-index: 2; }

.lazy-media.lazy-media--bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; }

/**
 * Lightcase - jQuery Plugin
 * The smart and flexible Lightbox Plugin.
 *
 * @author		Cornel Boppart <cornel@bopp-art.com>
 * @copyright	Author
 *
 * @version		2.4.0 (09/04/2017)
 */
/**
 * Lightcase settings
 *
 * Note: Override default settings for your project without touching this source code by simply
 * defining those variables within a SASS map called '$lightcase-custom'.
 *
 * // Example usage
 * $lightcase-custom: (
 *   'breakpoint': 768px
 * );
 */
@font-face {
  font-family: 'lightcase';
  src: url("../eot/lightcaseeead.eot?55356177");
  src: url("../eot/lightcaseeead.eot?55356177#iefix") format("embedded-opentype"), url("../woff/lightcaseeead.woff?55356177") format("woff"), url("../ttf/lightcaseeead.ttf?55356177") format("truetype"), url("../svg/lightcaseeead.svg?55356177#lightcase") format("svg");
  font-weight: normal;
  font-style: normal; }

/* line 12, ../scss/components/fonts/_font-lightcase.scss */
[class*='lightcase-icon-']:before {
  font-family: 'lightcase', sans-serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }

/* Codes */
/* line 35, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-play:before {
  content: '\e800'; }

/* line 36, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-pause:before {
  content: '\e801'; }

/* line 37, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-close:before {
  content: '\e802'; }

/* line 38, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-prev:before {
  content: '\e803'; }

/* line 39, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-next:before {
  content: '\e804'; }

/* line 40, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-spin:before {
  content: '\e805'; }

/**
 * Mixin providing icon defaults to be used on top of font-lightcase.
 *
 * Example usage:
 * @include icon(#e9e9e9)
 */
/**
 * Mixin providing icon defaults including a hover status to be used
 * on top of font-lightcase.
 *
 * Example usage:
 * @include icon-hover(#e9e9e9, #fff)
 */
/**
 * Provides natural content overflow behavior and scrolling support
 * even so for touch devices.
 *
 * Example usage:
 * @include overflow()
 */
/**
 * Neutralizes/resets dimensions including width, height, position as well as margins,
 * paddings and styles. Used to enforce a neutral and unstyled look and behavoir!
 *
 * Example usage:
 * @include clear(true)
 *
 * @param boolean $important
 */
@-webkit-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

/* line 1, ../scss/components/modules/_case.scss */
#lightcase-case {
  display: none;
  position: fixed;
  z-index: 2002;
  top: 50%;
  left: 50%;
  font-family: arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }

@media screen and (max-width: -1) {
  /* line 16, ../scss/components/modules/_case.scss */
  html[data-lc-type=inline] #lightcase-case, html[data-lc-type=ajax] #lightcase-case {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 55px 0 70px 0;
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important; } }

@media screen and (min-width: 0) {
  /* line 4, ../scss/components/modules/_content.scss */
  html:not([data-lc-type=error]) #lightcase-content {
    position: relative;
    z-index: 1;
    text-shadow: none;
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -webkit-backface-visibility: hidden; } }

@media screen and (min-width: 0) {
  /* line 23, ../scss/components/modules/_content.scss */
  html[data-lc-type=image] #lightcase-content, html[data-lc-type=video] #lightcase-content {
    background-color: #333; } }

/* line 31, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content, html[data-lc-type=ajax] #lightcase-content, html[data-lc-type=error] #lightcase-content {
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none; }

@media screen and (max-width: -1) {
  /* line 31, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content, html[data-lc-type=ajax] #lightcase-content, html[data-lc-type=error] #lightcase-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important; } }

/* line 43, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }

@media screen and (max-width: -1) {
  /* line 43, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
    padding: 15px; }
  /* line 52, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *, html[data-lc-type=error] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner > * {
    width: 100% !important;
    max-width: none !important; }
  /* line 59, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *:not(iframe), html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *:not(iframe), html[data-lc-type=error] #lightcase-content .lightcase-contentInner > *:not(iframe) {
    height: auto !important;
    max-height: none !important; } }

@media screen and (max-width: -1) {
  /* line 70, ../scss/components/modules/_content.scss */
  html.lightcase-isMobileDevice[data-lc-type=iframe] #lightcase-content .lightcase-contentInner iframe {
    overflow: auto;
    -webkit-overflow-scrolling: touch; } }

@media screen and (max-width: -1) and (min-width: 0) {
  /* line 74, ../scss/components/modules/_content.scss */
  html[data-lc-type=image] #lightcase-content .lightcase-contentInner, html[data-lc-type=video] #lightcase-content .lightcase-contentInner {
    line-height: 0.75; } }

/* line 82, ../scss/components/modules/_content.scss */
html[data-lc-type=image] #lightcase-content .lightcase-contentInner {
  position: relative;
  overflow: hidden !important; }

@media screen and (max-width: -1) {
  /* line 91, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap, html[data-lc-type=error] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important; } }

@media screen and (min-width: 0) {
  /* line 100, ../scss/components/modules/_content.scss */
  html:not([data-lc-type=error]) #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    padding: 30px;
    overflow: auto;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box; } }

@media screen and (max-width: -1) {
  /* line 117, ../scss/components/modules/_content.scss */
  #lightcase-content h1, #lightcase-content h2, #lightcase-content h3, #lightcase-content h4, #lightcase-content h5, #lightcase-content h6, #lightcase-content p {
    color: #aaa; } }

@media screen and (min-width: 0) {
  /* line 117, ../scss/components/modules/_content.scss */
  #lightcase-content h1, #lightcase-content h2, #lightcase-content h3, #lightcase-content h4, #lightcase-content h5, #lightcase-content h6, #lightcase-content p {
    color: #333; } }

/* line 3, ../scss/components/modules/_error.scss */
#lightcase-case p.lightcase-error {
  margin: 0;
  font-size: 17px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #aaa; }

@media screen and (max-width: -1) {
  /* line 3, ../scss/components/modules/_error.scss */
  #lightcase-case p.lightcase-error {
    padding: 30px 0; } }

@media screen and (min-width: 0) {
  /* line 3, ../scss/components/modules/_error.scss */
  #lightcase-case p.lightcase-error {
    padding: 0; } }

/* line 4, ../scss/components/modules/_global.scss */
.lightcase-open body {
  overflow: hidden; }

/* line 8, ../scss/components/modules/_global.scss */
.lightcase-isMobileDevice .lightcase-open body {
  max-width: 100%;
  max-height: 100%; }

/* line 1, ../scss/components/modules/_info.scss */
#lightcase-info {
  position: absolute;
  padding-top: 15px; }

/* line 9, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title,
#lightcase-info #lightcase-caption {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-weight: normal;
  text-overflow: ellipsis; }

/* line 19, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title {
  font-size: 17px;
  color: #aaa; }

@media screen and (max-width: -1) {
  /* line 19, ../scss/components/modules/_info.scss */
  #lightcase-info #lightcase-title {
    position: fixed;
    top: 10px;
    left: 0;
    max-width: 87.5%;
    padding: 5px 15px;
    background: #333; } }

/* line 33, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-caption {
  clear: both;
  font-size: 13px;
  color: #aaa; }

/* line 39, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-sequenceInfo {
  font-size: 11px;
  color: #aaa; }

@media screen and (max-width: -1) {
  /* line 45, ../scss/components/modules/_info.scss */
  .lightcase-fullScreenMode #lightcase-info {
    padding-left: 15px;
    padding-right: 15px; }
  /* line 51, ../scss/components/modules/_info.scss */
  html:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-info {
    position: static; } }

/* line 1, ../scss/components/modules/_loading.scss */
#lightcase-loading {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  position: fixed;
  z-index: 2001;
  top: 50%;
  left: 50%;
  margin-top: -0.5em;
  margin-left: -0.5em;
  opacity: 1;
  font-size: 32px;
  text-shadow: 0 0 15px #fff;
  -moz-transform-origin: 50% 53%;
  -webkit-animation: lightcase-spin 0.5s infinite linear;
  animation: lightcase-spin 0.5s infinite linear; }

/* line 20, ../scss/components/mixins/_presets.scss */
#lightcase-loading, #lightcase-loading:focus {
  text-decoration: none;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s; }

/* line 32, ../scss/components/mixins/_presets.scss */
#lightcase-loading > span {
  display: inline-block;
  text-indent: -9999px; }

/* line 2, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'] {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  outline: none;
  cursor: pointer; }

/* line 20, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-'], a[class*='lightcase-icon-']:focus {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s; }

/* line 32, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-'] > span {
  display: inline-block;
  text-indent: -9999px; }

/* line 49, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-']:hover {
  color: white;
  text-shadow: 0 0 15px white; }

/* line 10, ../scss/components/modules/_navigation.scss */
.lightcase-isMobileDevice a[class*='lightcase-icon-']:hover {
  color: #aaa;
  text-shadow: none; }

/* line 17, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-close {
  position: fixed;
  top: 15px;
  right: 15px;
  bottom: auto;
  margin: 0;
  opacity: 0;
  outline: none; }

/* line 28, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-prev {
  left: 15px; }

/* line 33, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-next {
  right: 15px; }

/* line 38, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-pause, a[class*='lightcase-icon-'].lightcase-icon-play {
  left: 50%;
  margin-left: -0.5em; }

@media screen and (min-width: 0) {
  /* line 38, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-'].lightcase-icon-pause, a[class*='lightcase-icon-'].lightcase-icon-play {
    opacity: 0; } }

@media screen and (max-width: -1) {
  /* line 2, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-'] {
    bottom: 15px;
    font-size: 24px; } }

@media screen and (min-width: 0) {
  /* line 2, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-'] {
    bottom: 50%;
    margin-bottom: -0.5em; }
  /* line 57, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-']:hover, #lightcase-case:hover ~ a[class*='lightcase-icon-'] {
    opacity: 1; } }

/* line 1, ../scss/components/modules/_overlay.scss */
#lightcase-overlay {
  display: none;
  width: 100%;
  min-height: 100%;
  position: fixed;
  z-index: 2000;
  top: -9999px;
  bottom: -9999px;
  left: 0;
  background: #333; }

@media screen and (max-width: -1) {
  /* line 1, ../scss/components/modules/_overlay.scss */
  #lightcase-overlay {
    opacity: 1 !important; } }

/**
 * Swiper 4.5.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 16, 2019
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-no-flexbox .swiper-slide {
  float: left; }

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }

.swiper-slide-invisible-blank {
  visibility: hidden; }

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform; }

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px; }

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent); }

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent); }

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent); }

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent); }

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x; }

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat; }

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto; }

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto; }

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-lock {
  display: none; }

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%; }

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
  position: relative; }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66); }

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33); }

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2; }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff; }

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0); }

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px; }

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform; }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap; }

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform; }

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform; }

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top; }

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top; }

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff; }

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff; }

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000; }

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25); }

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000; }

.swiper-pagination-lock {
  display: none; }

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

.swiper-scrollbar-lock {
  display: none; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center; }

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain; }

.swiper-slide-zoomed {
  cursor: move; }

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite; }

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat; }

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity; }

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube {
  overflow: visible; }

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%; }

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible; }

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0; }

.swiper-container-flip {
  overflow: visible; }

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px; }

.btn,
.btn--default,
.btn--primary {
  background: none;
  background-color: transparent;
  border: none;
  padding: 0;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700 !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 0;
  padding: 13px 50px 0;
  height: 50px;
  line-height: 1.2;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: background-color 0.4s, color 0.4s, border-color 0.4s;
  transition: background-color 0.4s, color 0.4s, border-color 0.4s;
  background-color: #0E9C48;
  display: inline-block;
  text-align: center; }
  .btn, .btn:focus, .btn:active, .btn:visited, .btn:hover,
  .btn--default,
  .btn--default:focus,
  .btn--default:active,
  .btn--default:visited,
  .btn--default:hover,
  .btn--primary,
  .btn--primary:focus,
  .btn--primary:active,
  .btn--primary:visited,
  .btn--primary:hover {
    color: #ffffff;
    text-decoration: none; }
  .btn:hover, .btn:active,
  .btn--default:hover,
  .btn--default:active,
  .btn--primary:hover,
  .btn--primary:active {
    background-color: #0c853d; }
  .btn:focus,
  .btn--default:focus,
  .btn--primary:focus {
    outline: none; }
  .btn .icon,
  .btn .sprite,
  .btn .ginput_card_security_code_icon,
  .btn
  .gform_card_icon,
  .btn--default .icon,
  .btn--default .sprite,
  .btn--default .ginput_card_security_code_icon,
  .btn--default
  .gform_card_icon,
  .btn--primary .icon,
  .btn--primary .sprite,
  .btn--primary .ginput_card_security_code_icon,
  .btn--primary
  .gform_card_icon {
    top: -2px; }
  .btn .ico + span:not(.visuallyhidden),
  .btn--default .ico + span:not(.visuallyhidden),
  .btn--primary .ico + span:not(.visuallyhidden) {
    display: inline-block;
    margin-left: 6px; }
  .btn span:not(.visuallyhidden) + .ico,
  .btn--default span:not(.visuallyhidden) + .ico,
  .btn--primary span:not(.visuallyhidden) + .ico {
    display: inline-block;
    margin-left: 6px; }
  .btn .ico,
  .btn .fa,
  .btn--default .ico,
  .btn--default .fa,
  .btn--primary .ico,
  .btn--primary .fa {
    font-size: 1.3em;
    color: #ffffff;
    position: relative;
    top: 2px; }

.btn--outline,
.btn--outline-default,
.btn--outline-primary {
  background-color: transparent;
  border: 2px solid #0E9C48; }
  .btn--outline, .btn--outline:focus, .btn--outline:visited,
  .btn--outline-default,
  .btn--outline-default:focus,
  .btn--outline-default:visited,
  .btn--outline-primary,
  .btn--outline-primary:focus,
  .btn--outline-primary:visited {
    color: #0E9C48; }
  .btn--outline:hover, .btn--outline:active,
  .btn--outline-default:hover,
  .btn--outline-default:active,
  .btn--outline-primary:hover,
  .btn--outline-primary:active {
    background-color: transparent;
    border-color: #0c853d;
    color: #0c853d; }
  .btn--outline .ico,
  .btn--outline .fa,
  .btn--outline-default .ico,
  .btn--outline-default .fa,
  .btn--outline-primary .ico,
  .btn--outline-primary .fa {
    color: #0E9C48; }

.btn--secondary {
  background-color: #212121; }
  .btn--secondary, .btn--secondary:focus, .btn--secondary:active, .btn--secondary:visited, .btn--secondary:hover {
    color: #ffffff; }
  .btn--secondary:hover, .btn--secondary:active {
    background-color: #141414; }
  .btn--secondary .ico,
  .btn--secondary .fa {
    color: #ffffff; }

.btn--outline-secondary {
  background-color: transparent;
  border: 2px solid #212121; }
  .btn--outline-secondary, .btn--outline-secondary:focus, .btn--outline-secondary:visited {
    color: #212121; }
  .btn--outline-secondary:hover, .btn--outline-secondary:active {
    background-color: transparent;
    border-color: #141414;
    color: #141414; }
  .btn--outline-secondary .ico,
  .btn--outline-secondary .fa {
    color: #212121; }

.btn--tertiary {
  background-color: #72777B; }
  .btn--tertiary, .btn--tertiary:focus, .btn--tertiary:active, .btn--tertiary:visited, .btn--tertiary:hover {
    color: #ffffff; }
  .btn--tertiary:hover, .btn--tertiary:active {
    background-color: #666a6e; }
  .btn--tertiary .ico,
  .btn--tertiary .fa {
    color: #ffffff; }

.btn--outline-tertiary {
  background-color: transparent;
  border: 2px solid #72777B; }
  .btn--outline-tertiary, .btn--outline-tertiary:focus, .btn--outline-tertiary:visited {
    color: #72777B; }
  .btn--outline-tertiary:hover, .btn--outline-tertiary:active {
    background-color: transparent;
    border-color: #666a6e;
    color: #666a6e; }
  .btn--outline-tertiary .ico,
  .btn--outline-tertiary .fa {
    color: #72777B; }

.btn--brand {
  background-color: #0E9C48; }
  .btn--brand, .btn--brand:focus, .btn--brand:active, .btn--brand:visited, .btn--brand:hover {
    color: #72777B; }
  .btn--brand:hover, .btn--brand:active {
    background-color: #0c853d; }
  .btn--brand .ico,
  .btn--brand .fa {
    color: #72777B; }

.btn--outline-brand {
  background-color: transparent;
  border: 2px solid #0E9C48; }
  .btn--outline-brand, .btn--outline-brand:focus, .btn--outline-brand:visited {
    color: #0E9C48; }
  .btn--outline-brand:hover, .btn--outline-brand:active {
    background-color: transparent;
    border-color: #0c853d;
    color: #0c853d; }
  .btn--outline-brand .ico,
  .btn--outline-brand .fa {
    color: #0E9C48; }

.btn--base {
  background: none;
  background-color: transparent;
  border: none;
  padding: 0;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0; }

.btn--min {
  padding-left: 15px;
  padding-right: 15px; }

.btn--large {
  padding: 25px 90px;
  font-size: 15px; }

@media only screen and (max-width: 419px) {
  .btn--large {
    padding: 12px 50px;
    font-size: 15px; } }

.btn--action, form input[type="submit"],
.gform_footer button[type="submit"],
.gform_next_button {
  padding-right: 30px; }
  .btn--action:after, form input[type="submit"]:after,
  .gform_footer button[type="submit"]:after,
  .gform_next_button:after {
    content: '';
    display: inline-block;
    margin-left: 14px;
    position: relative;
    top: -1px;
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out; }
  .btn--action:hover:after, form input[type="submit"]:hover:after,
  .gform_footer button[type="submit"]:hover:after,
  .gform_next_button:hover:after, .btn--action:focus:after, form input[type="submit"]:focus:after,
  .gform_footer button[type="submit"]:focus:after,
  .gform_next_button:focus:after {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); }

.btn--with-left-arrow, .gform_previous_button {
  padding-left: 30px; }
  .btn--with-left-arrow:before, .gform_previous_button:before {
    content: '';
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: center;
    transform-origin: center;
    display: inline-block;
    margin-right: 14px;
    position: relative;
    top: -1px; }

.btn--text, .btn--text-with-border-top {
  display: block;
  background: none;
  padding: 15px 0 0;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  font-size: 15px;
  text-align: left;
  margin-top: 20px;
  color: #0E9C48;
  text-decoration: none; }
  .btn--text:after, .btn--text-with-border-top:after {
    content: '';
    background-repeat: no-repeat;
    display: inline-block;
    margin-left: 12px;
    position: relative;
    top: 1px;
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out; }
  .btn--text:active, .btn--text-with-border-top:active, .btn--text:visited, .btn--text-with-border-top:visited, .btn--text:hover, .btn--text-with-border-top:hover, .btn--text:focus, .btn--text-with-border-top:focus {
    background: transparent;
    color: #0E9C48; }
  .btn--text:hover:after, .btn--text-with-border-top:hover:after, .btn--text:focus:after, .btn--text-with-border-top:focus:after {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); }

.btn--text-with-border-top {
  border-top: 3px solid #0E9C48; }

.btn--modal-primary, .btn--modal-secondary {
  display: block;
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-position: center; }

.btn--modal-primary {
  background-color: #0E9C48;
  position: relative; }
  .btn--modal-primary:before {
    content: '';
    display: inline-block;
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .btn--modal-primary:hover, .btn--modal-primary:focus {
    background-color: #0c853d; }

.btn--modal-secondary {
  background-color: #212121; }
  .btn--modal-secondary:hover, .btn--modal-secondary:focus {
    background-color: #141414; }
  .btn--modal-secondary:before {
    content: '$';
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 22px;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    padding-top: 14px; }

.btn--full,
.btn--full-width {
  width: 100%;
  text-align: center;
  padding: 0 20px 0 20px; }

a.btn--full,
a.btn--full-width {
  padding-top: 13px; }

.pill-link {
  height: 62px;
  width: 100%;
  border-radius: 40px;
  background: #F6F6F6;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #72777B;
  padding: 20px 20px 0 20px;
  position: relative;
  display: inline-block; }
  .pill-link:visited {
    color: #72777B; }
  .pill-link:hover, .pill-link:focus {
    background: #e9e9e9; }
  .pill-link.pill-link--info {
    padding-right: 15px;
    padding-left: 55px; }
    .pill-link.pill-link--info:before {
      content: '';
      display: inline-block;
      position: absolute;
      top: 15px;
      left: 15px;
      border-radius: 20px;
      width: 32px;
      height: 32px;
      background-color: #72777B; }
    .pill-link.pill-link--info:after {
      content: '';
      position: absolute;
      top: 23px;
      left: 28.5px; }

.loader, .loader .spinner {
  margin: 0;
  font-size: 1em;
  position: relative;
  text-indent: -9999em;
  border: 3px solid rgba(14, 156, 72, 0.2);
  border-left-color: #0E9C48;
  -webkit-animation: load8 0.4s infinite linear;
  animation: load8 0.4s infinite linear; }

.loader, .loader .spinner,
.loader:after,
.loader .spinner:after {
  border-radius: 50%;
  width: 3em;
  height: 3em; }

.loader, .loader .spinner {
  min-height: 3em;
  min-width: 3em;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  overflow: hidden;
  margin: -1.5em 0 0 -1.5em; }
  .loader .spinner {
    display: block;
    left: 50%;
    top: 50%;
    position: absolute;
    margin: -1.5em 0 0 -1.5em; }

#main_preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  z-index: 99999; }

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.single-slide .swiper-pagination,
.single-slide .swiper-button-next,
.single-slide .swiper-button-prev {
  display: none !important; }

.swiper-button-prev, .swiper-button-next {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: absolute;
  top: 50%;
  margin-top: -14px;
  border: 0;
  background: none; }
  .swiper-button-prev.swiper-button--hero, .swiper-button-next.swiper-button--hero {
    width: 48px;
    height: 48px;
    margin-top: -24px;
    top: 30%; }
    @media only screen and (max-width: 768px) {
      .swiper-button-prev.swiper-button--hero, .swiper-button-next.swiper-button--hero {
        margin-top: 0;
        top: auto;
        bottom: 10px; } }
  .swiper-button-prev.swiper-button--product-details, .swiper-button-next.swiper-button--product-details {
    height: 46px;
    width: 46px;
    margin-top: -23px; }
  .swiper-button-prev:before, .swiper-button-next:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }

.swiper-button-prev {
  left: 3.5vw; }
  @media only screen and (max-width: 768px) {
    .swiper-button-prev.swiper-button--hero {
      left: 30vw; } }
  .swiper-button-prev.swiper-button--hero.swiper-button-disabled {
    opacity: 1; }
    @media only screen and (max-width: 768px) {
      .swiper-button-prev.swiper-button--hero.swiper-button-disabled:before {
        opacity: 0.3; } }
  .swiper-button-prev.swiper-button--product-details {
    left: calc(50% - (350px + 60px)); }
    @media only screen and (max-width: 768px) {
      .swiper-button-prev.swiper-button--product-details {
        left: 0; } }

.swiper-button-next {
  right: 3.5vw; }
  @media only screen and (max-width: 768px) {
    .swiper-button-next.swiper-button--hero {
      right: 30vw; } }
  .swiper-button-next.swiper-button--hero.swiper-button-disabled {
    opacity: 1; }
    @media only screen and (max-width: 768px) {
      .swiper-button-next.swiper-button--hero.swiper-button-disabled:before {
        opacity: 0.3; } }
  .swiper-button-next.swiper-button--product-details {
    right: calc(50% - (350px + 60px)); }
    @media only screen and (max-width: 768px) {
      .swiper-button-next.swiper-button--product-details {
        right: 0; } }

aside.modal {
  display: none; }

.modal-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 998;
  background-color: transparent;
  pointer-events: none;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s; }
  .modal-panel.modal-panel--with-header .modal-panel__inner {
    padding: 0 !important; }
  .modal-panel.modal-panel--with-header .modal-panel__body,
  .modal-panel.modal-panel--with-header .menu-panel__body {
    padding: 60px 65px 65px; }
    @media only screen and (max-width: 768px) {
      .modal-panel.modal-panel--with-header .modal-panel__body,
      .modal-panel.modal-panel--with-header .menu-panel__body {
        padding: 40px 30px 60px; } }
    @media only screen and (max-width: 419px) {
      .modal-panel.modal-panel--with-header .modal-panel__body,
      .modal-panel.modal-panel--with-header .menu-panel__body {
        padding: 30px 20px 50px; } }
  .modal-panel.modal-panel--with-header .modal-panel__close-btn {
    top: 245px; }
    @media only screen and (min-width: 420px) and (max-width: 768px) {
      .modal-panel.modal-panel--with-header .modal-panel__close-btn {
        top: 225px; } }
    @media only screen and (max-width: 419px) {
      .modal-panel.modal-panel--with-header .modal-panel__close-btn {
        top: 215px; } }

.modal-panel__header {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden; }

.modal-panel__inner {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 590px;
  max-width: 100%;
  z-index: 999;
  background-color: #ffffff;
  -webkit-box-shadow: -15px 2px 40px 0 rgba(0, 0, 0, 0.1);
  box-shadow: -15px 2px 40px 0 rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(120%);
  transform: translateX(120%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  overflow-y: auto;
  padding: 80px 65px 65px; }
  @media only screen and (max-width: 768px) {
    .modal-panel__inner {
      padding: 60px 30px 60px; } }
  @media only screen and (max-width: 419px) {
    .modal-panel__inner {
      padding: 50px 20px 50px; } }

.modal-panel__close-btn {
  color: #212121;
  background: transparent;
  width: 26px;
  height: 26px;
  position: fixed;
  right: 60px;
  top: 45px;
  z-index: 1000;
  border: 0; }
  @media only screen and (max-width: 768px) {
    .modal-panel__close-btn {
      top: 25px;
      right: 25px; } }
  .modal-panel__close-btn:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }

#modal-buying-options .modal-panel__body .grid__item:first-child {
  padding-right: 10px; }
  @media only screen and (max-width: 419px) {
    #modal-buying-options .modal-panel__body .grid__item:first-child {
      padding-right: 0;
      margin-bottom: 10px; } }

#modal-buying-options .modal-panel__body .grid__item:last-child {
  padding-left: 10px; }
  @media only screen and (max-width: 419px) {
    #modal-buying-options .modal-panel__body .grid__item:last-child {
      padding-left: 0; } }

#modal-country-select .country-select-wrap {
  padding-top: 20px; }
  #modal-country-select .country-select-wrap li {
    padding: 10px 0; }
    #modal-country-select .country-select-wrap li:not(:last-child) {
      border-bottom: 1px solid #D8D8D8; }

#modal-country-select a.country-select {
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: contain;
  padding: 5px 5px 5px 40px;
  text-decoration: none;
  color: #000000;
  opacity: 0.5;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }
  #modal-country-select a.country-select:hover {
    opacity: 1; }
  #modal-country-select a.country-select.selected {
    color: #0E9C48;
    opacity: 1; }

body.modal-open .modal-panel.active {
  pointer-events: all;
  background-color: rgba(255, 255, 255, 0.9); }

body.modal-open .modal-panel.active .modal-panel__inner {
  -webkit-transform: translateX(0);
  transform: translateX(0); }

.modal-panel h2 {
  font-size: 35px;
  padding-bottom: 20px;
  padding-right: 40%;
  border-bottom: 3px solid #0E9C48;
  margin-bottom: 25px; }
  @media only screen and (max-width: 768px) {
    .modal-panel h2 {
      padding-right: 30px; } }

.modal-panel p {
  font-size: 16px;
  margin-bottom: 20px; }

.modal-panel .gform_wrapper .gform_title {
  font-size: 35px; }

.modal-panel .modal-panel__search-results {
  padding-top: 35px;
  position: relative; }
  .modal-panel .modal-panel__search-results.modal-panel__search-results--model {
    padding-top: 10px; }
    .modal-panel .modal-panel__search-results.modal-panel__search-results--model h3 {
      padding-top: 28px;
      padding-left: 120px;
      min-height: 90px;
      position: relative; }
      .modal-panel .modal-panel__search-results.modal-panel__search-results--model h3 img {
        position: absolute;
        left: 0;
        top: 0;
        height: 80px;
        width: auto; }
  .modal-panel .modal-panel__search-results h3 {
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-bottom: 20px;
    padding-bottom: 30px;
    border-bottom: 3px solid #0E9C48; }
  .modal-panel .modal-panel__search-results .all-results-link {
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    right: 0;
    top: 32px;
    text-decoration: none; }
  .modal-panel .modal-panel__search-results .results-empty {
    padding: 30px;
    border: 3px solid #D8D8D8;
    margin-top: 20px; }
    .modal-panel .modal-panel__search-results .results-empty h3 {
      min-height: 0;
      padding: 0;
      border: none;
      font-size: 20px;
      margin-bottom: 10px; }
    .modal-panel .modal-panel__search-results .results-empty .gform_footer .gform_button {
      width: 100%; }
  .modal-panel .modal-panel__search-results ul.dealers {
    padding: 0;
    padding-top: 6px;
    list-style-type: none; }
    .modal-panel .modal-panel__search-results ul.dealers li {
      display: block;
      margin-bottom: 20px; }
      .modal-panel .modal-panel__search-results ul.dealers li a.dealers__location-box {
        text-decoration: none;
        color: #212121; }
        .modal-panel .modal-panel__search-results ul.dealers li a.dealers__location-box:hover, .modal-panel .modal-panel__search-results ul.dealers li a.dealers__location-box:focus, .modal-panel .modal-panel__search-results ul.dealers li a.dealers__location-box:active {
          color: #0E9C48; }
      .modal-panel .modal-panel__search-results ul.dealers li .dealers__location-box,
      .modal-panel .modal-panel__search-results ul.dealers li .dealers__quantity-box {
        width: 100px;
        height: 100px;
        padding-top: 30px;
        background: #F6F6F6;
        text-align: center;
        font-weight: 700;
        font-size: 15px;
        display: inline-block;
        margin-right: 15px;
        vertical-align: top;
        background-repeat: no-repeat;
        position: relative; }
        .modal-panel .modal-panel__search-results ul.dealers li .dealers__location-box small,
        .modal-panel .modal-panel__search-results ul.dealers li .dealers__quantity-box small {
          display: block;
          margin: 0 auto;
          font-size: 60%;
          font-weight: 400; }
      .modal-panel .modal-panel__search-results ul.dealers li .dealers__quantity-box {
        font-size: 20px;
        line-height: 1.2; }
      .modal-panel .modal-panel__search-results ul.dealers li .dealers__location-box {
        padding-top: 57px; }
        .modal-panel .modal-panel__search-results ul.dealers li .dealers__location-box:before {
          content: '';
          display: inline-block;
          top: 28%;
          left: 50%;
          position: absolute;
          -webkit-transform: translateX(-50%);
          transform: translateX(-50%); }
      .modal-panel .modal-panel__search-results ul.dealers li .dealers__info {
        display: inline-block;
        width: calc(100% - 120px);
        font-size: 15px; }
        .modal-panel .modal-panel__search-results ul.dealers li .dealers__info .dealer-block {
          display: inline-block;
          width: 100%;
          padding: 10px 0px;
          text-align: left; }
          @media only screen and (max-width: 419px) {
            .modal-panel .modal-panel__search-results ul.dealers li .dealers__info .dealer-block {
              display: block;
              width: 100%;
              margin: 10px 0px;
              background: #f6f6f6;
              padding: 10px;
              border-radius: 5px;
              line-height: 30px;
              text-align: center; } }
          .modal-panel .modal-panel__search-results ul.dealers li .dealers__info .dealer-block span.ico {
            vertical-align: middle;
            margin-right: 5px; }
        .modal-panel .modal-panel__search-results ul.dealers li .dealers__info h4 {
          font-size: 15px;
          text-transform: none;
          margin-bottom: 10px;
          margin-top: 0;
          font-family: 'Roboto', sans-serif;
          font-weight: bold;
          font-style: normal;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          color: #212121; }
        .modal-panel .modal-panel__search-results ul.dealers li .dealers__info p {
          font-size: 15px;
          margin-bottom: 7px;
          line-height: 1.3;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; }
          .modal-panel .modal-panel__search-results ul.dealers li .dealers__info p a {
            color: #0E9C48;
            margin-left: 10px;
            text-decoration: none;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row;
            -webkit-box-align: start;
            -ms-flex-align: start;
            align-items: flex-start;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            width: auto; }
            .modal-panel .modal-panel__search-results ul.dealers li .dealers__info p a span {
              display: inline-block; }
            .modal-panel .modal-panel__search-results ul.dealers li .dealers__info p a > .ico {
              opacity: 0.6;
              -webkit-transition: opacity 0.5s;
              transition: opacity 0.5s; }
            .modal-panel .modal-panel__search-results ul.dealers li .dealers__info p a > span:not(.ico) {
              color: #000000; }
            .modal-panel .modal-panel__search-results ul.dealers li .dealers__info p a:first-child {
              margin-left: 0; }
            @media only screen and (max-width: 419px) {
              .modal-panel .modal-panel__search-results ul.dealers li .dealers__info p a {
                margin-left: 0;
                margin-right: 10px; } }
            .modal-panel .modal-panel__search-results ul.dealers li .dealers__info p a:hover, .modal-panel .modal-panel__search-results ul.dealers li .dealers__info p a:active {
              text-decoration: underline; }
              .modal-panel .modal-panel__search-results ul.dealers li .dealers__info p a:hover > .ico, .modal-panel .modal-panel__search-results ul.dealers li .dealers__info p a:active > .ico {
                opacity: 1; }
              .modal-panel .modal-panel__search-results ul.dealers li .dealers__info p a:hover > span:not(.ico), .modal-panel .modal-panel__search-results ul.dealers li .dealers__info p a:active > span:not(.ico) {
                color: #0E9C48; }

.modal-panel .modal-panel__loading {
  text-align: center;
  padding: 40px 0 0; }

.modal-panel form:not(.gform_form),
.finance-calculator form:not(.gform_form) {
  position: relative; }
  .modal-panel form:not(.gform_form) label, .modal-panel form:not(.gform_form) select, .modal-panel form:not(.gform_form) input, .modal-panel form:not(.gform_form) .customSelect, .modal-panel form:not(.gform_form) .label,
  .finance-calculator form:not(.gform_form) label,
  .finance-calculator form:not(.gform_form) select,
  .finance-calculator form:not(.gform_form) input,
  .finance-calculator form:not(.gform_form) .customSelect,
  .finance-calculator form:not(.gform_form) .label {
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-transform: uppercase;
    margin-bottom: 8px; }
  .modal-panel form:not(.gform_form) input,
  .finance-calculator form:not(.gform_form) input {
    text-transform: none;
    cursor: text; }
    .modal-panel form:not(.gform_form) input.fad-postcode,
    .finance-calculator form:not(.gform_form) input.fad-postcode {
      margin-bottom: 10px; }
    .modal-panel form:not(.gform_form) input.larger-text,
    .finance-calculator form:not(.gform_form) input.larger-text {
      font-size: 20px; }
  .modal-panel form:not(.gform_form) input, .modal-panel form:not(.gform_form) select, .modal-panel form:not(.gform_form) textarea, .modal-panel form:not(.gform_form) .customSelect,
  .finance-calculator form:not(.gform_form) input,
  .finance-calculator form:not(.gform_form) select,
  .finance-calculator form:not(.gform_form) textarea,
  .finance-calculator form:not(.gform_form) .customSelect {
    height: 60px !important;
    width: 100%;
    background: #F6F6F6;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    margin-bottom: 27px;
    padding: 12px 24px; }
    .modal-panel form:not(.gform_form) input.input-error, .modal-panel form:not(.gform_form) select.input-error, .modal-panel form:not(.gform_form) textarea.input-error, .modal-panel form:not(.gform_form) .customSelect.input-error,
    .finance-calculator form:not(.gform_form) input.input-error,
    .finance-calculator form:not(.gform_form) select.input-error,
    .finance-calculator form:not(.gform_form) textarea.input-error,
    .finance-calculator form:not(.gform_form) .customSelect.input-error {
      border: 2px solid #8A0E1D;
      color: #8A0E1D;
      margin-bottom: 6px; }
  .modal-panel form:not(.gform_form) .input-validation,
  .finance-calculator form:not(.gform_form) .input-validation {
    margin-bottom: 20px;
    font-size: 13px;
    height: 18px; }
    .modal-panel form:not(.gform_form) .input-validation.input-validation--error,
    .finance-calculator form:not(.gform_form) .input-validation.input-validation--error {
      color: #8A0E1D; }
    .modal-panel form:not(.gform_form) .input-validation.input-validation--success,
    .finance-calculator form:not(.gform_form) .input-validation.input-validation--success {
      color: #37803a; }
  .modal-panel form:not(.gform_form) .customSelect,
  .finance-calculator form:not(.gform_form) .customSelect {
    padding-top: 20px; }
    .modal-panel form:not(.gform_form) .customSelect span.customSelectInner,
    .finance-calculator form:not(.gform_form) .customSelect span.customSelectInner {
      position: relative;
      pointer-events: none; }
      .modal-panel form:not(.gform_form) .customSelect span.customSelectInner:after,
      .finance-calculator form:not(.gform_form) .customSelect span.customSelectInner:after {
        content: '';
        display: inline-block;
        position: absolute;
        right: 0;
        top: 8px; }
  .modal-panel form:not(.gform_form) .disclaimer,
  .finance-calculator form:not(.gform_form) .disclaimer {
    color: #72777B;
    font-size: 12px; }

.modal-panel .flex-grid,
.finance-calculator .flex-grid {
  margin-left: -5px;
  margin-right: -5px; }
  .modal-panel .flex-grid .flex-grid__item,
  .finance-calculator .flex-grid .flex-grid__item {
    padding: 0 5px;
    position: relative; }

.modal-panel .input-styler,
.finance-calculator .input-styler {
  position: relative; }
  .modal-panel .input-styler.dollar:before,
  .finance-calculator .input-styler.dollar:before {
    content: '$';
    position: absolute;
    top: 19px;
    left: 20px;
    font-weight: bold;
    color: #72777B; }
  .modal-panel .input-styler.dollar input,
  .finance-calculator .input-styler.dollar input {
    padding-left: 35px; }
  .modal-panel .input-styler.percentage:before,
  .finance-calculator .input-styler.percentage:before {
    content: '%';
    position: absolute;
    top: 19px;
    right: 20px;
    font-weight: bold;
    color: #72777B; }
  .modal-panel .input-styler.percentage input,
  .finance-calculator .input-styler.percentage input {
    padding-right: 30px; }

.modal-panel input.hidden,
.finance-calculator input.hidden {
  width: 0;
  height: 0;
  overflow: hidden;
  display: none; }

.modal-panel .radio-box,
.finance-calculator .radio-box {
  height: 68px;
  border: 2px solid transparent;
  background: #F6F6F6;
  width: 100%;
  padding-top: 22px;
  text-align: center;
  margin-bottom: 25px; }

.modal-panel input:checked + .radio-box,
.finance-calculator input:checked + .radio-box {
  background: transparent;
  border: 2px solid #0E9C48;
  color: #0E9C48; }

.modal-panel .frc-calculator-output,
.finance-calculator .frc-calculator-output {
  border-top: 3px solid #0E9C48;
  border-bottom: 3px solid #0E9C48;
  padding: 30px 0 25px;
  width: 100%;
  text-align: center;
  margin-bottom: 25px; }
  .modal-panel .frc-calculator-output h3,
  .finance-calculator .frc-calculator-output h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 15px; }
  .modal-panel .frc-calculator-output .amount,
  .finance-calculator .frc-calculator-output .amount {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700 !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 65px;
    line-height: 1; }
  .modal-panel .frc-calculator-output .asterisk,
  .finance-calculator .frc-calculator-output .asterisk {
    vertical-align: top;
    font-size: 20px;
    position: relative;
    left: -10px; }

/* iCheck plugin Minimal skin, black
----------------------------------- */
.icheckbox_minimal,
.iradio_minimal {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 25px;
  height: 25px;
  background: url("../png/icheck.png") no-repeat;
  border: none;
  cursor: pointer; }

.icheckbox_minimal {
  background-position: 0 0; }

.icheckbox_minimal.hover {
  background-position: -27px 0; }

.icheckbox_minimal.checked {
  background-position: -54px 0; }

.icheckbox_minimal.disabled {
  opacity: 0.5;
  cursor: default; }

.iradio_minimal {
  background-position: -81px 0; }

.iradio_minimal.hover {
  background-position: -108px 0; }

.iradio_minimal.checked {
  background-position: -135px 0; }

.iradio_minimal.disabled {
  opacity: 0.5;
  cursor: default; }

/* HiDPI support */
@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
  .icheckbox_minimal,
  .iradio_minimal {
    background-image: url("../png/icheck%402x.png");
    background-size: 160px 25px; } }

@media only screen and (max-width: 768px) {
  table.buy-process td {
    width: 50%;
    display: inline-block;
    float: left;
    border: none !important; } }

.gfield.hidden_label .gfield_label {
  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; }

.gfield.hide,
.gchoice.hide {
  display: none !important; }

.addon-choice,
.addon-empty-choice {
  border: 1px solid #d2d2d2;
  border-radius: 3px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  background-color: #fff; }

.addon-choice__body {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 20px 20px 20px 40px; }

.addon-choice__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.addon-choice__title,
.addon-empty-choice__title,
.addon-detail__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #000; }

.addon-choice__title {
  margin-bottom: 10px; }

.addon-choice__short-description {
  font-size: 15px;
  color: #7F7F7F;
  line-height: 1.2; }

.addon-choice__media {
  width: 170px;
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .addon-choice__media img {
    display: inline-block;
    width: 100%;
    max-width: 100%;
    height: auto; }
  .addon-choice__media img[src=""] {
    display: none !important; }

.addon-choice__footer,
.addon-empty-choice {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 15px 20px 15px 40px; }

.addon-choice__footer {
  border-top: 1px solid #d2d2d2; }

.addon-choice__link a {
  font-size: 12px;
  font-weight: normal;
  color: #0E9C48;
  text-decoration: underline; }

.addon-choice__code {
  color: #7F7F7F;
  margin-left: 10px; }

.addon-choice__price,
.addon-empty-choice__price {
  margin-right: 0;
  margin-left: auto; }
  .addon-choice__price > span,
  .addon-empty-choice__price > span {
    display: inline-block;
    vertical-align: middle;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    color: #000;
    position: relative;
    top: -2px; }
  .addon-choice__price .addon-choice__check,
  .addon-empty-choice__price .addon-choice__check {
    vertical-align: middle;
    margin-left: 20px; }

.addon-choice__check {
  display: inline-block;
  border-radius: 3px;
  border: 1px solid #d2d2d2;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  background-color: #fff;
  background-image: url(../icon-tick.html);
  background-position: 200%;
  background-repeat: no-repeat;
  background-size: 14px;
  width: 26px;
  height: 26px;
  position: relative; }

.gfield.populate-addons .gfield_label {
  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; }

.gfield.populate-addons .gchoice {
  width: 100%; }
  .gfield.populate-addons .gchoice input,
  .gfield.populate-addons .gchoice label {
    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; }
  .gfield.populate-addons .gchoice:not(:last-child) {
    margin-bottom: 20px; }

.gfield.populate-addons input:checked ~ .addon-choice,
.gfield.populate-addons input:checked ~ .addon-empty-choice {
  border-color: #0E9C48;
  border-width: 2px; }
  .gfield.populate-addons input:checked ~ .addon-choice .addon-choice__check,
  .gfield.populate-addons input:checked ~ .addon-empty-choice .addon-choice__check {
    background-color: #0E9C48;
    border-color: #0E9C48;
    background-position: 6px 6px; }

.addon-detail {
  padding: 30px; }

.addon-detail__media {
  text-align: center;
  margin-bottom: 20px; }
  .addon-detail__media img {
    display: inline-block;
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 240px; }

.addon-detail__content p {
  color: #7F7F7F; }

.addon-detail__title {
  margin-bottom: 5px; }

.addon-detail__code {
  font-size: 12px;
  margin-bottom: 20px; }

.addon-slider-thumbs .swiper-button-prev,
.addon-slider-thumbs .swiper-button-next,
.addon-slider-main .swiper-button-prev,
.addon-slider-main .swiper-button-next {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain; }
  .addon-slider-thumbs .swiper-button-prev:before,
  .addon-slider-thumbs .swiper-button-next:before,
  .addon-slider-main .swiper-button-prev:before,
  .addon-slider-main .swiper-button-next:before {
    content: none; }

.addon-slider-thumbs .swiper-button-prev,
.addon-slider-main .swiper-button-prev {
  left: 0;
  background-image: url(../svg/icon-slider-product-details-left.svg); }

.addon-slider-thumbs .swiper-button-next,
.addon-slider-main .swiper-button-next {
  background-image: url(../svg/icon-slider-product-details-right.svg);
  right: 0; }

.addon-slider-main .swiper-wrapper {
  margin-bottom: 20px; }

.addon-slider-main .swiper-button-next,
.addon-slider-main .swiper-button-prev,
.addon-slider-main .swiper-pagination {
  display: none; }

.addon-slider-main .swiper-pagination {
  bottom: 0; }

.addon-slider-main figcaption {
  text-align: left; }

.swiper-container.addon-slider-thumbs {
  padding: 0 38px; }

.addon-slider-thumbs .swiper-slide {
  height: 65px;
  border: 1px solid #e9e9e9;
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer; }
  .addon-slider-thumbs .swiper-slide img {
    border-radius: 3px;
    display: inline-block; }
  .addon-slider-thumbs .swiper-slide.swiper-slide-thumb-active {
    border-color: #000; }

@media only screen and (max-width: 768px) {
  .addon-choice__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-left: 20px;
    padding-right: 20px; }
  .addon-empty-choice {
    padding-left: 20px; }
  .addon-choice__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px; }
  .addon-choice__code {
    margin-bottom: 10px;
    margin-left: 0; }
  .addon-choice__price {
    margin-right: auto; }
    .addon-choice__price .addon-choice__check {
      margin-left: 10px; }
  .addon-choice__link {
    margin-bottom: 5px; }
  .addon-detail {
    padding: 0; } }

@media only screen and (min-width: 420px) and (max-width: 768px) {
  .addon-detail__media img {
    width: 480px;
    max-width: 100%;
    height: auto; } }

@media only screen and (max-width: 419px) {
  .addon-detail__media img {
    width: 300px;
    max-width: 100%;
    height: auto; }
  .addon-slider-main .swiper-button-next,
  .addon-slider-main .swiper-button-prev,
  .addon-slider-main .swiper-pagination {
    display: block; }
  .addon-slider-thumbs {
    display: none; } }

.gfield .addon-detail {
  display: none !important; }

.form-fields, .gform_fields,
.gform_fields {
  padding-left: 0 !important; }
  .form-fields:after, .gform_fields:after,
  .gform_fields:after {
    content: "";
    display: table;
    clear: both; }
  .form-fields li, .gform_fields li, .form-fields > .gfield, .gform_fields > .gfield,
  .gform_fields li,
  .gform_fields > .gfield {
    margin-bottom: 30px; }

label,
.label,
.gpoll_field_label {
  font-size: 13px;
  margin-bottom: 6px; }

input {
  border-radius: 0; }

.gfield img {
  width: auto;
  height: auto; }

.gfield:not(.gf_right_half) {
  clear: both; }

.ginput_full,
.ginput_card_expiration_container {
  margin-bottom: 4px;
  display: block;
  width: 100%; }
  .ginput_full:after,
  .ginput_card_expiration_container:after {
    content: "";
    display: table;
    clear: both; }
  .ginput_full input,
  .ginput_card_expiration_container input {
    width: 100%; }

.ginput_left,
.ginput_cardinfo_left,
.ginput_card_expiration_container .styled-select:first-of-type {
  margin-bottom: 4px;
  display: inline-block;
  width: 50%;
  padding-right: 10px;
  float: left;
  position: relative; }
  .ginput_left input,
  .ginput_cardinfo_left input,
  .ginput_card_expiration_container .styled-select:first-of-type input {
    width: 100%; }

.ginput_right,
.ginput_cardinfo_right,
.ginput_card_expiration_container .styled-select:last-of-type {
  margin-bottom: 4px;
  display: inline-block;
  width: 50%;
  padding-left: 10px;
  float: right;
  clear: none;
  position: relative; }
  .ginput_right input,
  .ginput_cardinfo_right input,
  .ginput_card_expiration_container .styled-select:last-of-type input {
    width: 100%; }

.ginput_card_expiration_container .customSelect {
  width: 49% !important; }
  @media only screen and (max-width: 768px) {
    .ginput_card_expiration_container .customSelect {
      width: 100% !important;
      margin-bottom: 10px; } }

.gform_wrapper .gfield_total {
  background: #F6F6F6;
  padding: 40px 50px 0px 50px !important;
  text-align: center !important;
  border-top: 1px solid #d8d8d8 !important; }
  .gform_wrapper .gfield_total label.gfield_label {
    font-size: 20px !important;
    font-weight: 500 !important;
    color: #212121 !important; }
  .gform_wrapper .gfield_total span.ginput_total {
    font-size: 55px !important;
    font-weight: 500 !important;
    color: black !important; }
  .gform_wrapper .gfield_total.margin-top {
    margin-top: 10px; }

.gfield_required {
  padding-left: 4px; }

.gform_card_icon_container {
  margin-bottom: 6px; }

.ginput_card_security_code_icon,
.gform_card_icon {
  background-image: url(../png/gf-creditcard-icons.png);
  background-repeat: no-repeat;
  width: 32px;
  height: 24px;
  background-size: unset !important; }

.ginput_card_security_code {
  margin-bottom: 6px; }

.ginput_card_security_code_icon {
  background-position: 0 -128px; }
  .ginput_card_security_code_icon + label {
    display: inline-block;
    margin-left: 10px; }

.gform_card_icon {
  margin-left: 6px; }
  .gform_card_icon:first-child {
    margin-left: 0; }
  .gform_card_icon.gform_card_icon_visa {
    background-position: -2px -4px; }
  .gform_card_icon.gform_card_icon_mastercard {
    background-position: -38px -4px; }
  .gform_card_icon.gform_card_icon_amex {
    background-position: -74px -4px; }

::-webkit-input-placeholder {
  color: #D8D8D8; }

::-moz-placeholder {
  color: #D8D8D8; }

:-ms-input-placeholder {
  color: #D8D8D8; }

input:-moz-placeholder {
  color: #D8D8D8; }

input.text-input,
textarea.text-input,
textarea,
.text-input input,
.text-input textarea,
.gform_fields textarea,
.gform_fields input[type="text"],
.gform_fields input[type="password"],
.gform_fields input[type="name"],
.gform_fields input[type="email"],
.gform_fields input[type="url"],
.gform_fields input[type="tel"],
.gform_fields input[type="color"],
.gform_fields input[type="number"] {
  display: block;
  max-width: 100%;
  width: 100%;
  background: #ffffff;
  border: 1px solid #D8D8D8;
  color: #151D29;
  padding: 4px 15px;
  height: 42px;
  vertical-align: middle;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.42857143;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  cursor: default;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  -webkit-appearance: none; }
  input.text-input.placeholder,
  textarea.text-input.placeholder,
  textarea.placeholder,
  .text-input input.placeholder,
  .text-input textarea.placeholder,
  .gform_fields textarea.placeholder,
  .gform_fields input[type="text"].placeholder,
  .gform_fields input[type="password"].placeholder,
  .gform_fields input[type="name"].placeholder,
  .gform_fields input[type="email"].placeholder,
  .gform_fields input[type="url"].placeholder,
  .gform_fields input[type="tel"].placeholder,
  .gform_fields input[type="color"].placeholder,
  .gform_fields input[type="number"].placeholder {
    color: #D8D8D8; }
  input.text-input:focus,
  textarea.text-input:focus,
  textarea:focus,
  .text-input input:focus,
  .text-input textarea:focus,
  .gform_fields textarea:focus,
  .gform_fields input[type="text"]:focus,
  .gform_fields input[type="password"]:focus,
  .gform_fields input[type="name"]:focus,
  .gform_fields input[type="email"]:focus,
  .gform_fields input[type="url"]:focus,
  .gform_fields input[type="tel"]:focus,
  .gform_fields input[type="color"]:focus,
  .gform_fields input[type="number"]:focus {
    outline: none;
    border-color: #CE0000;
    -webkit-box-shadow: none;
    box-shadow: none; }
  input.text-input:hover,
  textarea.text-input:hover,
  textarea:hover,
  .text-input input:hover,
  .text-input textarea:hover,
  .gform_fields textarea:hover,
  .gform_fields input[type="text"]:hover,
  .gform_fields input[type="password"]:hover,
  .gform_fields input[type="name"]:hover,
  .gform_fields input[type="email"]:hover,
  .gform_fields input[type="url"]:hover,
  .gform_fields input[type="tel"]:hover,
  .gform_fields input[type="color"]:hover,
  .gform_fields input[type="number"]:hover {
    cursor: text; }

textarea,
.gform_fields textarea,
.text-input textarea {
  padding-top: 13px;
  padding-bottom: 13px;
  height: 100px;
  resize: vertical; }

.gform_fields .file {
  min-height: 43px; }
  .gform_fields .file .ginput_container {
    position: relative; }
  .gform_fields .file .btn {
    width: 100%;
    max-width: 100%;
    height: 42px;
    line-height: 42px; }
  .gform_fields .file input[type="file"] {
    width: 100%;
    max-width: 100%;
    position: absolute;
    z-index: 2;
    height: 42px;
    padding: 0;
    color: white;
    font-weight: normal;
    font-size: 13px;
    opacity: 0;
    cursor: pointer; }

.ginput_container_fileupload input[type="file"] {
  color: #ccc; }

.ginput_container_fileupload .gform_button_select_files {
  margin-left: 20px; }
  @media only screen and (max-width: 419px) {
    .ginput_container_fileupload .gform_button_select_files {
      margin-left: 0;
      width: 100%;
      margin-top: 15px; } }

select {
  border-radius: 0;
  -webkit-appearance: none;
  width: 100%;
  background: #ffffff;
  border: 1px solid #D8D8D8;
  color: #151D29;
  padding: 4px 15px;
  height: 42px;
  vertical-align: middle;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  font-size: 13px; }
  select:focus {
    outline: none; }
  select.hasCustomSelect {
    width: 100% !important; }

select[multiple] {
  padding: 12px;
  height: 80px; }

.ginput_container_select {
  position: relative; }

span.customSelectInner {
  width: 100% !important;
  pointer-events: none;
  background: none;
  position: relative; }
  span.customSelectInner:after {
    content: '';
    display: inline-block;
    position: absolute;
    right: 0;
    top: 5px; }

.ginput_container_date span.customSelectInner:after {
  right: -6px; }
  @media only screen and (min-width: 1200px) {
    .ginput_container_date span.customSelectInner:after {
      right: 0; } }

.chzn-drop {
  color: #151D29; }

.gfield.with-chzn .ginput_container {
  height: 42px; }

.gfield.with-chzn .chzn-container .chzn-single {
  height: 42px;
  line-height: 42px;
  background-image: none;
  background-color: #ffffff;
  border-color: #D8D8D8;
  padding-left: 12px;
  font-size: 15px; }
  .gfield.with-chzn .chzn-container .chzn-single div b {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAICAYAAAD9aA/QAAAAfElEQVQoFZXRgQ2AIAwEwI7AKIzESIzACIzCCI7gBvUxhWDFtJp8REqPCEREBeEfKcxMVu4FQJsTbhY46gMOgA8D7/UwGq33/CU0ReREdsfS56OFrfUJ90k8CdnBaW3yjB+w4Fnh2QPpNS9Y8Cp41Q3e7y84AC6I+7L0hhc28oiRLYTxoAAAAABJRU5ErkJggg==);
    background-position: right 50%; }

.gfield.with-chzn .chzn-container.chzn-container-active .chzn-single {
  outline: none;
  border-color: #D8D8D8;
  -webkit-box-shadow: none;
  box-shadow: none; }

.gfield.with-chzn .chzn-container.chzn-container-single .chzn-single div {
  background-image: none;
  background-color: transparent;
  border: none;
  width: 23px; }

.gfield.with-chzn .chzn-container .chzn-search input {
  width: 100% !important;
  height: auto; }

.gfield.with-chzn.gfield_error .chzn-container .chzn-single {
  border-color: #8A0E1D; }

.gform_wrapper .chosen-container-multi .chosen-choices li.search-field input[type=text] {
  height: 42px; }

.gform_wrapper .chosen-container .chosen-drop {
  color: #000000; }

.check-list,
ul.gfield_radio,
ul.gfield_checkbox,
ul.gfield_radio,
ul.gfield_checkbox {
  padding: 0px 0 0 0; }
  .check-list li,
  ul.gfield_radio li,
  ul.gfield_checkbox li, .check-list label,
  ul.gfield_radio label,
  ul.gfield_checkbox label,
  ul.gfield_radio li,
  ul.gfield_radio label,
  ul.gfield_checkbox li,
  ul.gfield_checkbox label {
    display: inline-block;
    margin: 0;
    font-size: 13px;
    vertical-align: top; }
  .check-list label,
  ul.gfield_radio label,
  ul.gfield_checkbox label,
  ul.gfield_radio label,
  ul.gfield_checkbox label {
    padding-left: 8px;
    margin-top: 4px; }
  .check-list li,
  ul.gfield_radio li,
  ul.gfield_checkbox li,
  ul.gfield_radio li,
  ul.gfield_checkbox li {
    width: auto;
    margin-bottom: 7px;
    margin-right: 20px; }
  .check-list li:last-child,
  ul.gfield_radio li:last-child,
  ul.gfield_checkbox li:last-child,
  ul.gfield_radio li:last-child,
  ul.gfield_checkbox li:last-child {
    margin-right: 0; }
  .check-list input[type="checkbox"],
  ul.gfield_radio input[type="checkbox"],
  ul.gfield_checkbox input[type="checkbox"], .check-list input[type="radio"],
  ul.gfield_radio input[type="radio"],
  ul.gfield_checkbox input[type="radio"],
  ul.gfield_radio input[type="checkbox"],
  ul.gfield_radio input[type="radio"],
  ul.gfield_checkbox input[type="checkbox"],
  ul.gfield_checkbox input[type="radio"] {
    vertical-align: top;
    margin-top: 6px; }
    .check-list input[type="checkbox"][value="gf_other_choice"],
    ul.gfield_radio input[type="checkbox"][value="gf_other_choice"],
    ul.gfield_checkbox input[type="checkbox"][value="gf_other_choice"], .check-list input[type="radio"][value="gf_other_choice"],
    ul.gfield_radio input[type="radio"][value="gf_other_choice"],
    ul.gfield_checkbox input[type="radio"][value="gf_other_choice"],
    ul.gfield_radio input[type="checkbox"][value="gf_other_choice"],
    ul.gfield_radio input[type="radio"][value="gf_other_choice"],
    ul.gfield_checkbox input[type="checkbox"][value="gf_other_choice"],
    ul.gfield_checkbox input[type="radio"][value="gf_other_choice"] {
      margin-top: 14px; }
  .check-list input[value="gf_other_choice"] + input[type="text"],
  ul.gfield_radio input[value="gf_other_choice"] + input[type="text"],
  ul.gfield_checkbox input[value="gf_other_choice"] + input[type="text"],
  ul.gfield_radio input[value="gf_other_choice"] + input[type="text"],
  ul.gfield_checkbox input[value="gf_other_choice"] + input[type="text"] {
    display: inline-block;
    width: 80%;
    margin-left: 0px; }

.list-vertical ul.gfield_radio li,
.list-vertical ul.gfield_checkbox li {
  display: block;
  margin-left: 0;
  margin-right: 0; }

@media only screen and (min-width: 420px) and (max-width: 768px) {
  .check-list li,
  ul.gfield_radio li,
  ul.gfield_checkbox li,
  ul.gfield_radio li,
  ul.gfield_checkbox li {
    width: auto; } }

@media only screen and (max-width: 419px) {
  .check-list li,
  ul.gfield_radio li,
  ul.gfield_checkbox li,
  ul.gfield_radio li,
  ul.gfield_checkbox li {
    width: auto; } }

.gchoice input[type=checkbox] {
  background: #fff;
  border: 1px solid #d8d8d8;
  color: #151d29;
  padding: 4px 15px;
  height: 30px;
  width: 30px;
  vertical-align: middle;
  font-size: 13px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-appearance: none;
  margin-top: 0px !important; }
  .gchoice input[type=checkbox]:checked {
    background: #0E9C48;
    border: 1px solid white; }

.gfield_date_day,
.gfield_date_month,
.gfield_date_year,
.gfield_date_dropdown_day,
.gfield_date_dropdown_month,
.gfield_date_dropdown_year,
.gfield_time_hour,
.gfield_time_minute,
.gfield_time_ampm {
  display: inline-block !important;
  width: 30.9% !important;
  margin-right: 2.8%; }
  .gfield_date_day:last-child,
  .gfield_date_month:last-child,
  .gfield_date_year:last-child,
  .gfield_date_dropdown_day:last-child,
  .gfield_date_dropdown_month:last-child,
  .gfield_date_dropdown_year:last-child,
  .gfield_time_hour:last-child,
  .gfield_time_minute:last-child,
  .gfield_time_ampm:last-child {
    margin-right: 0; }
  .gfield_date_day i,
  .gfield_date_day label,
  .gfield_date_month i,
  .gfield_date_month label,
  .gfield_date_year i,
  .gfield_date_year label,
  .gfield_date_dropdown_day i,
  .gfield_date_dropdown_day label,
  .gfield_date_dropdown_month i,
  .gfield_date_dropdown_month label,
  .gfield_date_dropdown_year i,
  .gfield_date_dropdown_year label,
  .gfield_time_hour i,
  .gfield_time_hour label,
  .gfield_time_minute i,
  .gfield_time_minute label,
  .gfield_time_ampm i,
  .gfield_time_ampm label {
    display: inline-block;
    font-size: 13px;
    color: #ccc; }

.gfield_date_year,
.gfield_date_dropdown_year,
.gfield_time_ampm {
  margin-right: 0; }

.gfield_time_hour input {
  display: inline-block;
  max-width: 90%; }

.gfield_time_ampm {
  display: block;
  float: right; }

.gf_hide_ampm .gfield_time_ampm {
  display: none !important; }

.ginput_container.ginput_container_date, .ginput_container.ginput_container_time {
  position: relative; }
  .ginput_container.ginput_container_date input, .ginput_container.ginput_container_time input {
    padding-right: 0px; }

/*
.datepicker_with_icon {
	max-width: 90% !important;
	display: inline-block !important;
}
*/
.ui-datepicker-trigger {
  display: block;
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

.gfield .clear-multi {
  min-height: 42px; }
  .gfield .clear-multi > .ginput_container:last-child {
    float: right; }

.collapsible-sections-end-field + .gfield {
  margin-top: 30px; }

.gform_wrapper .gform_fields .gsection.collapsible-sections-field {
  background: #F6F6F6;
  border: 0 !important;
  cursor: pointer;
  position: relative;
  margin-top: 10px !important;
  margin-bottom: 0 !important; }
  @media only screen and (max-width: 768px) {
    .gform_wrapper .gform_fields .gsection.collapsible-sections-field {
      padding: 20px !important; } }
  .gform_wrapper .gform_fields .gsection.collapsible-sections-field .gsection_title {
    position: relative; }
  .gform_wrapper .gform_fields .gsection.collapsible-sections-field .gsection_title + .gsection_description {
    padding-right: 30px; }
  .gform_wrapper .gform_fields .gsection.collapsible-sections-field .gsection_title:after {
    right: 0 !important;
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    line-height: 0;
    color: #0E9C48;
    height: 10px;
    margin-top: -5px !important; }
  .gform_wrapper .gform_fields .gsection.collapsible-sections-field.collapsible-sections-open .gsection_title:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: center;
    transform-origin: center;
    content: "\e900" !important; }
  .gform_wrapper .gform_fields .gsection.collapsible-sections-field .gsection_title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700 !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 20px; }

.gform_wrapper .gform_fields .collapsible-sections-collapsible-body {
  background: #F6F6F6;
  border: 0 !important;
  width: 100%;
  position: relative; }
  @media only screen and (max-width: 768px) {
    .gform_wrapper .gform_fields .collapsible-sections-collapsible-body {
      padding: 0 20px 20px 20px !important; } }
  .gform_wrapper .gform_fields .collapsible-sections-collapsible-body:after {
    content: "";
    display: table;
    clear: both; }

.gform_title,
.gsection_title {
  margin-bottom: 0;
  line-height: 1; }

.gsection_title {
  font-size: 30px;
  /*
	padding: 13px;
	background: $brand-color;
	border-radius: 4px 4px 0 0;
	color: $colour-lightest;
	margin-top: $base-spacing-unit;
	*/ }
  .gsection_title:empty {
    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; }

.gsection_description {
  padding: 14px 0 0;
  font-size: 13px; }

.gform_description {
  display: block;
  padding-top: 0px; }

.gf_page_steps {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border-radius: 0;
  overflow: auto;
  padding-left: 0px; }

.gf_step {
  float: left;
  margin-right: 0px;
  font-size: 16px;
  line-height: 60px; }
  .gf_step a {
    color: #445e6f; }
  .gf_step.gf_step_active {
    color: #0E9C48; }

.gf_progressbar_wrapper {
  padding: 0;
  margin-bottom: 20px; }

.gf_progressbar_title {
  font-size: 15px;
  margin-bottom: 10px;
  color: #0E9C48; }

.gf_progressbar {
  background: transparent;
  height: 0px;
  overflow: hidden;
  border: 1px solid #0E9C48;
  border-radius: 0; }

.gf_progressbar_percentage {
  background: #0E9C48;
  height: -6px;
  margin: 2px;
  border-radius: 0; }
  .gf_progressbar_percentage span {
    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; }

.gform_page_footer {
  padding: 20px 0;
  text-align: left;
  position: relative;
  margin-top: 30px; }
  .gform_page_footer:after {
    content: "";
    display: table;
    clear: both; }
  .gform_page_footer .gform_previous_button,
  .gform_page_footer .gform_next_button {
    background: none;
    background-color: transparent;
    border: none;
    padding: 0;
    text-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700 !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border-radius: 0;
    padding: 13px 50px 0;
    height: 50px;
    line-height: 1.2;
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: background-color 0.4s, color 0.4s, border-color 0.4s;
    transition: background-color 0.4s, color 0.4s, border-color 0.4s;
    background-color: #0E9C48;
    display: inline-block;
    text-align: center;
    padding-top: 0; }
    .gform_page_footer .gform_previous_button, .gform_page_footer .gform_previous_button:focus, .gform_page_footer .gform_previous_button:active, .gform_page_footer .gform_previous_button:visited, .gform_page_footer .gform_previous_button:hover,
    .gform_page_footer .gform_next_button,
    .gform_page_footer .gform_next_button:focus,
    .gform_page_footer .gform_next_button:active,
    .gform_page_footer .gform_next_button:visited,
    .gform_page_footer .gform_next_button:hover {
      color: #ffffff;
      text-decoration: none; }
    .gform_page_footer .gform_previous_button:hover, .gform_page_footer .gform_previous_button:active,
    .gform_page_footer .gform_next_button:hover,
    .gform_page_footer .gform_next_button:active {
      background-color: #0c853d; }
    .gform_page_footer .gform_previous_button:focus,
    .gform_page_footer .gform_next_button:focus {
      outline: none; }
    .gform_page_footer .gform_previous_button .icon,
    .gform_page_footer .gform_previous_button .sprite,
    .gform_page_footer .gform_previous_button .ginput_card_security_code_icon,
    .gform_page_footer .gform_previous_button
    .gform_card_icon,
    .gform_page_footer .gform_next_button .icon,
    .gform_page_footer .gform_next_button .sprite,
    .gform_page_footer .gform_next_button .ginput_card_security_code_icon,
    .gform_page_footer .gform_next_button
    .gform_card_icon {
      top: -2px; }
    .gform_page_footer .gform_previous_button .ico + span:not(.visuallyhidden),
    .gform_page_footer .gform_next_button .ico + span:not(.visuallyhidden) {
      display: inline-block;
      margin-left: 6px; }
    .gform_page_footer .gform_previous_button span:not(.visuallyhidden) + .ico,
    .gform_page_footer .gform_next_button span:not(.visuallyhidden) + .ico {
      display: inline-block;
      margin-left: 6px; }
    .gform_page_footer .gform_previous_button .ico,
    .gform_page_footer .gform_previous_button .fa,
    .gform_page_footer .gform_next_button .ico,
    .gform_page_footer .gform_next_button .fa {
      font-size: 1.3em;
      color: #ffffff;
      position: relative;
      top: 2px; }
    @media only screen and (max-width: 419px) {
      .gform_page_footer .gform_previous_button,
      .gform_page_footer .gform_next_button {
        margin-bottom: 20px; } }

.gform_page .gform_page_footer {
  min-height: 100px; }
  .gform_page .gform_page_footer .gform_ajax_spinner {
    float: none;
    display: block;
    position: absolute;
    left: 50%;
    top: 60px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); }
  .gform_page .gform_page_footer input[type="submit"],
  .gform_page .gform_page_footer button[type="submit"] {
    float: right; }

.gform_page:first-child .gform_page_footer .gform_save_link {
  float: left; }

.gform_page:first-child .gform_page_footer .gform_ajax_spinner {
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }

.gform_page:not(:first-child) .gform_page_footer .gform_ajax_spinner {
  top: 25px; }

.gform_page:not(:first-child) .gform_page_footer .gform_save_link {
  display: block;
  clear: both;
  margin-top: 100px; }

.submit-on-left .gform_page .gform_page_footer input[type="submit"],
.submit-on-left .gform_page .gform_page_footer button[type="submit"] {
  float: left; }

.gform_save_link {
  display: inline-block;
  margin-top: 15px; }

@media only screen and (max-width: 419px) {
  .gform_page:not(:first-child) .gform_page_footer .gform_ajax_spinner {
    top: 100px; }
  .gform_page:not(:first-child) .gform_page_footer .gform_save_link {
    margin-top: 150px; } }

table.gfield_list {
  border: 0;
  margin-bottom: 0; }
  table.gfield_list thead + tbody tr:first-child td {
    padding-top: 0px; }
    @media only screen and (max-width: 768px) {
      table.gfield_list thead + tbody tr:first-child td.gfield_list_icons {
        margin-left: auto; } }
  table.gfield_list thead tr th {
    border-bottom: 0 !important;
    font-size: 13px;
    padding-bottom: 4px; }
  table.gfield_list tr {
    border-bottom: 0; }
    table.gfield_list tr td.gfield_list_cell, table.gfield_list tr td.gfield_list_icons {
      border-bottom: 0 !important;
      padding-bottom: 10px; }
    table.gfield_list tr td.gfield_list_cell {
      padding-right: 15px; }

.gfield_list td {
  padding-top: 0; }

.gfield_list_cell {
  padding-left: 0px;
  padding-right: 0px; }
  .gfield_list_cell input {
    width: 100%; }
  .gfield_list_cell:first-child {
    padding-left: 0; }

.gfield_list_icons {
  text-align: right;
  padding-right: 0;
  width: 40px;
  padding-top: 8px !important; }

.ginput_complex {
  margin-bottom: 10px; }
  .ginput_complex > span {
    display: block;
    margin-bottom: 20px; }
  .ginput_complex label {
    font-size: 13px;
    color: #333;
    padding-top: 4px; }

.clear-multi:after,
.clear-multi > *:after {
  content: "";
  display: table;
  clear: both; }

.gfield_description,
.gform_fields .instruction {
  color: #b2b2b2;
  font-size: 13px;
  padding-top: 4px; }

.validation_error,
.gfield_description.validation_message,
.gfield_error .gfield_label {
  font-style: normal;
  padding: 0;
  font-size: 13px;
  color: #8A0E1D;
  background: none; }

.gfield_error input.text-input,
.gfield_error textarea,
.gfield_error input[type="text"],
.gfield_error input[type="password"],
.gfield_error input[type="name"],
.gfield_error input[type="email"],
.gfield_error input[type="url"],
.gfield_error input[type="tel"],
.gfield_error input[type="color"],
.gfield_error input[type="number"],
.gfield_error.text-input input,
.gfield_error.text-input textarea {
  border-color: #8A0E1D;
  background-color: #ffffff;
  color: #8A0E1D; }

.gfield_error .styled-select,
.gfield_error .customSelect {
  border-color: #8A0E1D;
  color: #8A0E1D; }

.gform_heading {
  padding-bottom: 20px; }

.validation_error {
  margin-bottom: 20px !important;
  background: #8A0E1D;
  padding: 6px 20px !important;
  border-radius: 0;
  color: #ffffff !important; }

.gfield_description.validation_message {
  display: none; }

#gforms_confirmation_message {
  margin-bottom: 20px; }

.gform_wrapper .gfield_password_strength {
  border: 1px solid #ccc;
  margin: 0;
  padding: 0px;
  text-align: center;
  min-width: 200px;
  width: 100%;
  background-color: #EEE;
  color: #ccc;
  clear: both;
  border-radius: 0; }
  .gform_wrapper .gfield_password_strength.bad {
    background-color: #ffe5d5;
    border-color: #FF853C;
    color: #FF853C; }
  .gform_wrapper .gfield_password_strength.good {
    background-color: #ffeb99;
    border-color: #FC0;
    color: #cca300; }
  .gform_wrapper .gfield_password_strength.strong {
    background-color: green;
    border-color: green;
    color: #fff; }
  .gform_wrapper .gfield_password_strength.short, .gform_wrapper .gfield_password_strength.mismatch {
    background-color: #fbcece;
    border-color: #f04040;
    color: #f04040; }

.gform_footer {
  text-align: left;
  padding: 20px 0 0; }
  .gform_footer:after {
    content: "";
    display: table;
    clear: both; }
  @media only screen and (max-width: 768px) {
    .gform_footer {
      padding-left: 10px;
      padding-right: 10px; } }

.submit-on-right .gform_footer {
  text-align: right; }

.submit-on-left .gform_footer {
  text-align: left; }

.gform_ajax_spinner {
  display: block;
  width: 42px;
  height: 42px; }

.gform_validation_container {
  display: none; }

.gform_hidden {
  display: none !important; }

.gform_fields input[type="button"],
form input[type="submit"],
.gform_footer button,
.gform_page_footer button {
  background: none;
  background-color: transparent;
  border: none;
  padding: 0;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700 !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 0;
  padding: 13px 50px 0;
  height: 50px;
  line-height: 1.2;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: background-color 0.4s, color 0.4s, border-color 0.4s;
  transition: background-color 0.4s, color 0.4s, border-color 0.4s;
  background-color: #0E9C48;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  position: relative;
  max-width: 100%;
  padding-top: 0;
  min-width: 220px; }
  .gform_fields input[type="button"], .gform_fields input[type="button"]:focus, .gform_fields input[type="button"]:active, .gform_fields input[type="button"]:visited, .gform_fields input[type="button"]:hover,
  form input[type="submit"],
  form input[type="submit"]:focus,
  form input[type="submit"]:active,
  form input[type="submit"]:visited,
  form input[type="submit"]:hover,
  .gform_footer button,
  .gform_footer button:focus,
  .gform_footer button:active,
  .gform_footer button:visited,
  .gform_footer button:hover,
  .gform_page_footer button,
  .gform_page_footer button:focus,
  .gform_page_footer button:active,
  .gform_page_footer button:visited,
  .gform_page_footer button:hover {
    color: #ffffff;
    text-decoration: none; }
  .gform_fields input[type="button"]:hover, .gform_fields input[type="button"]:active,
  form input[type="submit"]:hover,
  form input[type="submit"]:active,
  .gform_footer button:hover,
  .gform_footer button:active,
  .gform_page_footer button:hover,
  .gform_page_footer button:active {
    background-color: #0c853d; }
  .gform_fields input[type="button"]:focus,
  form input[type="submit"]:focus,
  .gform_footer button:focus,
  .gform_page_footer button:focus {
    outline: none; }
  .gform_fields input[type="button"] .icon,
  .gform_fields input[type="button"] .sprite,
  .gform_fields input[type="button"] .ginput_card_security_code_icon,
  .gform_fields input[type="button"]
  .gform_card_icon,
  form input[type="submit"] .icon,
  form input[type="submit"] .sprite,
  form input[type="submit"] .ginput_card_security_code_icon,
  form input[type="submit"]
  .gform_card_icon,
  .gform_footer button .icon,
  .gform_footer button .sprite,
  .gform_footer button .ginput_card_security_code_icon,
  .gform_footer button
  .gform_card_icon,
  .gform_page_footer button .icon,
  .gform_page_footer button .sprite,
  .gform_page_footer button .ginput_card_security_code_icon,
  .gform_page_footer button
  .gform_card_icon {
    top: -2px; }
  .gform_fields input[type="button"] .ico + span:not(.visuallyhidden),
  form input[type="submit"] .ico + span:not(.visuallyhidden),
  .gform_footer button .ico + span:not(.visuallyhidden),
  .gform_page_footer button .ico + span:not(.visuallyhidden) {
    display: inline-block;
    margin-left: 6px; }
  .gform_fields input[type="button"] span:not(.visuallyhidden) + .ico,
  form input[type="submit"] span:not(.visuallyhidden) + .ico,
  .gform_footer button span:not(.visuallyhidden) + .ico,
  .gform_page_footer button span:not(.visuallyhidden) + .ico {
    display: inline-block;
    margin-left: 6px; }
  .gform_fields input[type="button"] .ico,
  .gform_fields input[type="button"] .fa,
  form input[type="submit"] .ico,
  form input[type="submit"] .fa,
  .gform_footer button .ico,
  .gform_footer button .fa,
  .gform_page_footer button .ico,
  .gform_page_footer button .fa {
    font-size: 1.3em;
    color: #ffffff;
    position: relative;
    top: 2px; }

.gform_page_footer button[type="submit"],
.gform_next_button {
  float: right; }

.gform_wrapper form.waiting .gform_footer input[type="submit"],
.gform_wrapper form.waiting .gform_footer button,
.gform_wrapper form.waiting.direction-previous .gform_previous_button,
.gform_wrapper form.waiting.direction-next .gform_next_button {
  position: relative;
  color: transparent !important;
  background-color: #F6F6F6; }
  .gform_wrapper form.waiting .gform_footer input[type="submit"][disabled],
  .gform_wrapper form.waiting .gform_footer button[disabled],
  .gform_wrapper form.waiting.direction-previous .gform_previous_button[disabled],
  .gform_wrapper form.waiting.direction-next .gform_next_button[disabled] {
    opacity: 1 !important; }
  .gform_wrapper form.waiting .gform_footer input[type="submit"]:before,
  .gform_wrapper form.waiting .gform_footer button:before,
  .gform_wrapper form.waiting.direction-previous .gform_previous_button:before,
  .gform_wrapper form.waiting.direction-next .gform_next_button:before {
    content: "";
    background-image: url(../svg/spinner-2.svg);
    background-size: contain;
    width: 42px;
    height: 42px;
    right: auto;
    left: 50%;
    margin-left: -21px;
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }

.gform_wrapper form.waiting.direction-previous .gform_next_button,
.gform_wrapper form.waiting.direction-next .gform_previous_button {
  opacity: 0; }

.gform_wrapper form.waiting .gform_ajax_spinner {
  display: none !important; }

form input[type="submit"][disabled="disabled"],
form button[type="submit"][disabled="disabled"],
.gform_footer button[disabled="disabled"],
.gform_page_footer button[disabled="disabled"] {
  cursor: default;
  opacity: 0.3; }

@media only screen and (max-width: 419px) {
  .gform_fields input[type="button"],
  form input[type="submit"],
  form button[type="submit"],
  .gform_footer button,
  .gform_page_footer button {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    width: 100%; } }

.gfield.gf_fourth_one,
.gfield.gf_fourth_two,
.gfield.gf_fourth_three,
.gfield.gf_fourth_four,
.gfield.gf_left_third,
.gfield.gf_middle_third,
.gfield.gf_right_third,
.gfield.gf_right_two_thirds,
.gfield.gf_left_half,
.gfield.gf_right_half {
  float: left; }

.gfield.gf_fourth_four,
.gfield.gf_right_third,
.gfield.gf_right_two_thirds,
.gfield.gf_right_half {
  float: right; }

.gfield.gf_left_half,
.gfield.gf_right_half {
  width: 50%; }

.gfield.gf_left_third,
.gfield.gf_middle_third,
.gfield.gf_right_third {
  width: 33.333%; }

.gfield.gf_right_two_thirds {
  width: 66.666%; }

.gfield.gf_fourth_one,
.gfield.gf_fourth_two,
.gfield.gf_fourth_three,
.gfield.gf_fourth_four {
  width: 25%; }

.gfield.gf_fourth_one,
.gfield.gf_left_third,
.gfield.gf_left_half {
  padding-right: 10px; }

.gfield.gf_fourth_two {
  padding-right: 10px; }

.gfield.gf_fourth_three {
  padding-left: 10px; }

.gfield.gf_fourth_four,
.gfield.gf_right_third,
.gfield.gf_right_two_thirds,
.gfield.gf_right_half {
  padding-left: 10px; }

.gfield.gf_fourth_one,
.gfield.gf_fourth_two,
.gfield.gf_fourth_three,
.gfield.gf_fourth_four,
.gfield.gf_middle_third,
.gfield.gf_right_third,
.gfield.gf_right_two_thirds,
.gfield.gf_right_half {
  clear: none; }

@media only screen and (min-width: 420px) and (max-width: 768px) {
  .gfield.gf_left_third,
  .gfield.gf_middle_third,
  .gfield.gf_right_third,
  .gfield.gf_right_two_thirds {
    float: left;
    width: 50%;
    padding-left: 0;
    padding-right: 0; }
  .gfield.gf_left_third {
    padding-right: 0px; } }

@media only screen and (max-width: 419px) {
  .gfield.gf_left_third,
  .gfield.gf_middle_third,
  .gfield.gf_right_third,
  .gfield.gf_right_two_thirds,
  .gfield.gf_left_half,
  .gfield.gf_right_half {
    float: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0; }
  .gfield.gf_fourth_one,
  .gfield.gf_fourth_two,
  .gfield.gf_fourth_three,
  .gfield.gf_fourth_four {
    float: none;
    padding-right: 0;
    padding-left: 0;
    width: 50%; }
  .gfield.gf_fourth_one,
  .gfield.gf_fourth_three {
    float: left;
    padding-right: 0px; }
  .gfield.gf_fourth_two,
  .gfield.gf_fourth_four {
    float: right;
    padding-left: 0px; }
  .gfield.gf_fourth_three {
    clear: both; }
  .gfield.gf_fourth_two,
  .gfield.gf_fourth_four {
    padding-right: 0; } }

.gfield.no-label > .gfield_label {
  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; }

.gfield.single-option {
  background: #F6F6F6;
  padding: 0 50px 30px 50px;
  border: 0;
  margin-bottom: 0; }
  @media only screen and (max-width: 768px) {
    .gfield.single-option {
      padding: 0 20px 20px 20px; } }
  .gfield.single-option .check-list li, .gfield.single-option
  ul.gfield_radio li, .gfield.single-option
  ul.gfield_checkbox li,
  .gfield.single-option ul.gfield_radio li,
  .gfield.single-option ul.gfield_checkbox li {
    width: 100%; }
  .gfield.single-option .check-list label, .gfield.single-option
  ul.gfield_radio label, .gfield.single-option
  ul.gfield_checkbox label,
  .gfield.single-option ul.gfield_radio label,
  .gfield.single-option ul.gfield_checkbox label {
    max-width: calc(100% - 30px); }

.gfield.offscreen {
  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; }

.gform_wrapper form.hide-all-labels .gfield > .gfield_label {
  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; }

.ginput_container_date {
  position: relative; }
  .ginput_container_date:after {
    content: "";
    display: block;
    width: 1px;
    height: 40px;
    background-color: #D8D8D8;
    overflow: hidden;
    top: 1px;
    right: 30px;
    position: absolute; }
    @media only screen and (min-width: 1200px) {
      .ginput_container_date:after {
        right: 40px; } }
  .ginput_container_date input.datepicker_with_icon {
    padding-right: 40px; }
    .ginput_container_date input.datepicker_with_icon + .ui-datepicker-trigger {
      width: 20px;
      right: 10px;
      cursor: pointer; }

ul.gfield_radio li input {
  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; }

ul.gfield_radio li label {
  min-height: 28px; }

.gfield_error ul.gfield_radio li label {
  color: #8A0E1D; }

.gform_body > ul.gform_fields > li.gsection:first-child {
  padding: 30px 50px 20px 50px;
  border: 0;
  margin-bottom: 0; }
  @media only screen and (max-width: 768px) {
    .gform_body > ul.gform_fields > li.gsection:first-child {
      padding: 20px 20px 20px 20px; } }

.gfield.disclaimer-field {
  font-size: 12px;
  margin-top: 30px;
  color: #72777B; }
  @media only screen and (max-width: 768px) {
    .gfield.disclaimer-field {
      padding-left: 10px;
      padding-right: 10px; } }
  .gfield.disclaimer-field a, .gfield.disclaimer-field a:visited {
    color: inherit; }

.gfield.gfield_price.gfield_total {
  margin-top: 30px; }
  @media only screen and (max-width: 768px) {
    .gfield.gfield_price.gfield_total {
      padding-left: 10px;
      padding-right: 10px; } }
  .gfield.gfield_price.gfield_total label.gfield_label {
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-transform: uppercase; }
  .gfield.gfield_price.gfield_total .ginput_container_singleproduct {
    color: #0E9C48;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700 !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 60px;
    line-height: .9; }
    .gfield.gfield_price.gfield_total .ginput_container_singleproduct .ginput_product_price_label {
      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: 419px) {
  ul.gfield_checkbox label {
    padding-left: 8px;
    margin-top: -4px;
    width: 80%; } }

/*
----------------------------------------------------------------

jquery-ui.custom.css
Gravity Forms Custom jQuery UI styles
http: //www.gravityforms.com
updated: March 18, 2013 4:15 PM

Gravity Forms is a Rocketgenius project
copyright 2013 Rocketgenius Inc.
http: //www.rocketgenius.com
copyright 2009 (http://jqueryui.com/about)
dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.

NOTE: DO NOT EDIT THIS FILE!
THIS FILE IS REPLACED DURING AUTO UPGRADE
AND ANY CHANGES MADE HERE WILL BE OVERWRITTEN.

----------------------------------------------------------------
*/
#ui-datepicker-div {
  display: none; }

.ui-helper-hidden {
  display: none; }

.ui-helper-hidden-accessible {
  position: absolute;
  left: -99999999px; }

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none; }

.ui-helper-clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden; }

.ui-helper-clearfix {
  display: inline-block; }

* html .ui-helper-clearfix {
  height: 1%; }

.ui-helper-clearfix {
  display: block; }

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0); }

.ui-state-disabled {
  cursor: default !important; }

.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat; }

.ui-tabs {
  padding: .2em;
  zoom: 1; }

.ui-tabs[style] {
  border: 1px solid #C2D7EF !important;
  margin: 6px 0 0 !important;
  swidth: 438px !important; }

.ui-tabs .ui-tabs-nav {
  list-style: none;
  position: relative;
  padding: .2em .2em 0 0; }

.ui-tabs .ui-tabs-nav li {
  position: relative;
  float: left;
  border-bottom-width: 0 !important;
  margin: 0 .2em -1px 0;
  padding: 0;
  text-align: center; }

.ui-tabs .ui-tabs-nav li a {
  display: block;
  text-decoration: none;
  padding: .5em 1em;
  text-align: center;
  font-size: 12px; }

.ui-tabs .ui-tabs-nav li.ui-tabs-selected {
  padding-bottom: 1px;
  border-bottom-width: 0; }

.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a {
  cursor: text; }

.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a {
  cursor: pointer; }

.ui-tabs .ui-tabs-panel {
  padding: 1em 1.4em;
  display: block;
  border-width: 0;
  background: none; }

.ui-tabs .ui-tabs-hide {
  display: none !important; }

/*
----------------------------------------------------------------

Gravity Forms Date Picker Styles
http: //www.gravityforms.com
updated: January 31, 2014 3:32 PM

Customized styles for the jQuery UI Datepicker 1.9.2
copyright 2012 jQuery Foundation and other contributors
Released under the MIT license.
http://jquery.org/license
some styles courtesty of http://www.hongkiat.com/

Gravity Forms is a Rocketgenius project
copyright 2008 - 2014 Rocketgenius Inc.
http: //www.rocketgenius.com

NOTE: DO NOT EDIT THIS FILE! MAKE ANY MODIFICATIONS IN YOUR
THEME STYLESHEET. THIS FILE IS REPLACED DURING AUTO-UPDATES
AND ANY CHANGES MADE HERE WILL BE OVERWRITTEN.

If you need to make extensive customizations,
copy the contents of this file to your theme
style sheet for editing. Then, go to the form
settings page & set the 'output CSS' option
to no.

----------------------------------------------------------------
*/
.ui-datepicker {
  width: 216px;
  height: auto;
  margin: 5px auto 0;
  font: 9pt Arial, sans-serif;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5); }

.ui-datepicker a {
  text-decoration: none; }

.ui-datepicker table {
  width: 100%;
  border-collapse: collapse; }

.ui-datepicker-header {
  background-color: #666;
  /* set the header background color */
  color: #e0e0e0;
  font-weight: bold;
  -webkit-box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, 0.2);
  -ms-box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, 0.2);
  -o-box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, 0.2);
  box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, 0.2);
  text-shadow: 1px -1px 0px #000;
  -webkit-filter: dropshadow(color=#000, offx=1, offy=-1);
  filter: dropshadow(color=#000, offx=1, offy=-1);
  line-height: 30px;
  min-height: 30px !important;
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: #666; }

.ui-datepicker-title {
  text-align: center;
  padding-bottom: 4px; }

.ui-datepicker-title select {
  margin-top: 2%;
  -webkit-appearance: menulist;
  width: auto; }

.ui-datepicker-prev,
.ui-datepicker-next {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  cursor: pointer;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAA8CAYAAACTiBHmAAAKQWlDQ1BJQ0MgUHJvZmlsZQAASA2dlndUU9kWh8+9N73QEiIgJfQaegkg0jtIFQRRiUmAUAKGhCZ2RAVGFBEpVmRUwAFHhyJjRRQLg4Ji1wnyEFDGwVFEReXdjGsJ7601896a/cdZ39nnt9fZZ+9917oAUPyCBMJ0WAGANKFYFO7rwVwSE8vE9wIYEAEOWAHA4WZmBEf4RALU/L09mZmoSMaz9u4ugGS72yy/UCZz1v9/kSI3QyQGAApF1TY8fiYX5QKUU7PFGTL/BMr0lSkyhjEyFqEJoqwi48SvbPan5iu7yZiXJuShGlnOGbw0noy7UN6aJeGjjAShXJgl4GejfAdlvVRJmgDl9yjT0/icTAAwFJlfzOcmoWyJMkUUGe6J8gIACJTEObxyDov5OWieAHimZ+SKBIlJYqYR15hp5ejIZvrxs1P5YjErlMNN4Yh4TM/0tAyOMBeAr2+WRQElWW2ZaJHtrRzt7VnW5mj5v9nfHn5T/T3IevtV8Sbsz55BjJ5Z32zsrC+9FgD2JFqbHbO+lVUAtG0GQOXhrE/vIADyBQC03pzzHoZsXpLE4gwnC4vs7GxzAZ9rLivoN/ufgm/Kv4Y595nL7vtWO6YXP4EjSRUzZUXlpqemS0TMzAwOl89k/fcQ/+PAOWnNycMsnJ/AF/GF6FVR6JQJhIlou4U8gViQLmQKhH/V4X8YNicHGX6daxRodV8AfYU5ULhJB8hvPQBDIwMkbj96An3rWxAxCsi+vGitka9zjzJ6/uf6Hwtcim7hTEEiU+b2DI9kciWiLBmj34RswQISkAd0oAo0gS4wAixgDRyAM3AD3iAAhIBIEAOWAy5IAmlABLJBPtgACkEx2AF2g2pwANSBetAEToI2cAZcBFfADXALDIBHQAqGwUswAd6BaQiC8BAVokGqkBakD5lC1hAbWgh5Q0FQOBQDxUOJkBCSQPnQJqgYKoOqoUNQPfQjdBq6CF2D+qAH0CA0Bv0BfYQRmALTYQ3YALaA2bA7HAhHwsvgRHgVnAcXwNvhSrgWPg63whfhG/AALIVfwpMIQMgIA9FGWAgb8URCkFgkAREha5EipAKpRZqQDqQbuY1IkXHkAwaHoWGYGBbGGeOHWYzhYlZh1mJKMNWYY5hWTBfmNmYQM4H5gqVi1bGmWCesP3YJNhGbjS3EVmCPYFuwl7ED2GHsOxwOx8AZ4hxwfrgYXDJuNa4Etw/XjLuA68MN4SbxeLwq3hTvgg/Bc/BifCG+Cn8cfx7fjx/GvyeQCVoEa4IPIZYgJGwkVBAaCOcI/YQRwjRRgahPdCKGEHnEXGIpsY7YQbxJHCZOkxRJhiQXUiQpmbSBVElqIl0mPSa9IZPJOmRHchhZQF5PriSfIF8lD5I/UJQoJhRPShxFQtlOOUq5QHlAeUOlUg2obtRYqpi6nVpPvUR9Sn0vR5Mzl/OX48mtk6uRa5Xrl3slT5TXl3eXXy6fJ18hf0r+pvy4AlHBQMFTgaOwVqFG4bTCPYVJRZqilWKIYppiiWKD4jXFUSW8koGStxJPqUDpsNIlpSEaQtOledK4tE20Otpl2jAdRzek+9OT6cX0H+i99AllJWVb5SjlHOUa5bPKUgbCMGD4M1IZpYyTjLuMj/M05rnP48/bNq9pXv+8KZX5Km4qfJUilWaVAZWPqkxVb9UU1Z2qbapP1DBqJmphatlq+9Uuq43Pp893ns+dXzT/5PyH6rC6iXq4+mr1w+o96pMamhq+GhkaVRqXNMY1GZpumsma5ZrnNMe0aFoLtQRa5VrntV4wlZnuzFRmJbOLOaGtru2nLdE+pN2rPa1jqLNYZ6NOs84TXZIuWzdBt1y3U3dCT0svWC9fr1HvoT5Rn62fpL9Hv1t/ysDQINpgi0GbwaihiqG/YZ5ho+FjI6qRq9Eqo1qjO8Y4Y7ZxivE+41smsImdSZJJjclNU9jU3lRgus+0zwxr5mgmNKs1u8eisNxZWaxG1qA5wzzIfKN5m/krCz2LWIudFt0WXyztLFMt6ywfWSlZBVhttOqw+sPaxJprXWN9x4Zq42Ozzqbd5rWtqS3fdr/tfTuaXbDdFrtOu8/2DvYi+yb7MQc9h3iHvQ732HR2KLuEfdUR6+jhuM7xjOMHJ3snsdNJp9+dWc4pzg3OowsMF/AX1C0YctFx4bgccpEuZC6MX3hwodRV25XjWuv6zE3Xjed2xG3E3dg92f24+ysPSw+RR4vHlKeT5xrPC16Il69XkVevt5L3Yu9q76c+Oj6JPo0+E752vqt9L/hh/QL9dvrd89fw5/rX+08EOASsCegKpARGBFYHPgsyCRIFdQTDwQHBu4IfL9JfJFzUFgJC/EN2hTwJNQxdFfpzGC4sNKwm7Hm4VXh+eHcELWJFREPEu0iPyNLIR4uNFksWd0bJR8VF1UdNRXtFl0VLl1gsWbPkRoxajCCmPRYfGxV7JHZyqffS3UuH4+ziCuPuLjNclrPs2nK15anLz66QX8FZcSoeGx8d3xD/iRPCqeVMrvRfuXflBNeTu4f7kufGK+eN8V34ZfyRBJeEsoTRRJfEXYljSa5JFUnjAk9BteB1sl/ygeSplJCUoykzqdGpzWmEtPi000IlYYqwK10zPSe9L8M0ozBDuspp1e5VE6JA0ZFMKHNZZruYjv5M9UiMJJslg1kLs2qy3mdHZZ/KUcwR5vTkmuRuyx3J88n7fjVmNXd1Z752/ob8wTXuaw6thdauXNu5Tnddwbrh9b7rj20gbUjZ8MtGy41lG99uit7UUaBRsL5gaLPv5sZCuUJR4b0tzlsObMVsFWzt3WazrWrblyJe0fViy+KK4k8l3JLr31l9V/ndzPaE7b2l9qX7d+B2CHfc3em681iZYlle2dCu4F2t5czyovK3u1fsvlZhW3FgD2mPZI+0MqiyvUqvakfVp+qk6oEaj5rmvep7t+2d2sfb17/fbX/TAY0DxQc+HhQcvH/I91BrrUFtxWHc4azDz+ui6rq/Z39ff0TtSPGRz0eFR6XHwo911TvU1zeoN5Q2wo2SxrHjccdv/eD1Q3sTq+lQM6O5+AQ4ITnx4sf4H++eDDzZeYp9qukn/Z/2ttBailqh1tzWibakNml7THvf6YDTnR3OHS0/m/989Iz2mZqzymdLz5HOFZybOZ93fvJCxoXxi4kXhzpXdD66tOTSna6wrt7LgZevXvG5cqnbvfv8VZerZ645XTt9nX297Yb9jdYeu56WX+x+aem172296XCz/ZbjrY6+BX3n+l37L972un3ljv+dGwOLBvruLr57/17cPel93v3RB6kPXj/Mejj9aP1j7OOiJwpPKp6qP6391fjXZqm99Oyg12DPs4hnj4a4Qy//lfmvT8MFz6nPK0a0RupHrUfPjPmM3Xqx9MXwy4yX0+OFvyn+tveV0auffnf7vWdiycTwa9HrmT9K3qi+OfrW9m3nZOjk03dp76anit6rvj/2gf2h+2P0x5Hp7E/4T5WfjT93fAn88ngmbWbm3/eE8/syOll+AAAB3klEQVRYCe1XsUrEQBA1kkJICEGw9oqrrfwAwV+wT3mHHBwIB4K1kC+QtOltbcN9gE1iYxn8AItgKk/jTMjAZcmOu4sXRTYw7O3O7rzZN7vcW6dpmr1df/u7BsD4FkSLZUuXFl0uN9txHM7d83H37U/VZA1pX4EFvfRVO7hNmVGMLMveV6tVFYbhM4wtwDzyUSuL0dLIOrsIZVk2aEVRfCyXy8r3fQSbgR2ogDgtEs0UWio8Amy7qqr6TJLkLU3Tx7quz9HHxmGd3ekSQQhws9k8TafTk+9AjE4XJFZD4Nh13TMC5Fr2nogLMThQeAcWTyaTV9Ev66uCvECAewh+qxOcQJUKT5O5lqutUU04sCEfu5OhBSZjo+zEgmiVxtJl6dJiQGuyPV2WLi0GtCaPcrpYIUHiTiXtX/+PN6UL1T2q/LXKLqWKXrJ9VPMLVPeo8lHtEwjOl5nUIYCgep+hmkdVj+qelL4KCFt4CuB53kMURafz+dwPgkCbYiWQPM+PQFybvbIgU6WsOvUeA4Wo5rU/VkGK9wTqcAgI1wB2Cb72SQcCvH0iCzXsJaIFQis7sBvoXwDIMY7/OAiBbbcciFJNtoOZ/GbpMgk4tGaUnViQIeqlY5YuKTVDjv9D1xdysESNsEdXVAAAAABJRU5ErkJggg==);
  background-repeat: no-repeat;
  line-height: 600%;
  overflow: hidden; }

.ui-datepicker-prev {
  float: left;
  background-position: center -30px; }

.ui-datepicker-next {
  float: right;
  background-position: center 0px; }

.ui-datepicker thead {
  background: #f7f7f7;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y3ZjdmNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMWYxZjEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#f1f1f1));
  background: linear-gradient(to bottom, #f7f7f7 0%, #f1f1f1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#f1f1f1',GradientType=0 );
  border-bottom: 1px solid #bbb; }

.ui-datepicker th {
  text-transform: uppercase;
  text-align: center;
  font-size: 6pt;
  padding: 5px 0;
  color: #666666;
  text-shadow: 1px 0px 0px #fff;
  -webkit-filter: dropshadow(color=#fff, offx=1, offy=0);
  filter: dropshadow(color=#fff, offx=1, offy=0); }

.ui-datepicker tbody td {
  padding: 0;
  border-top: 1px solid #bbb;
  border-right: 1px solid #bbb; }

.ui-datepicker tbody td:last-child {
  border-right: 0px; }

.ui-datepicker tbody tr {
  border-bottom: 1px solid #bbb; }

.ui-datepicker tbody tr:last-child {
  border-bottom: 0px; }

.ui-datepicker td span,
.ui-datepicker td a {
  display: inline-block;
  font-weight: bold;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #666666;
  text-shadow: 1px 1px 0px #fff;
  -webkit-filter: dropshadow(color=#fff, offx=1, offy=1);
  filter: dropshadow(color=#fff, offx=1, offy=1); }

.ui-datepicker-calendar .ui-state-default {
  -webkit-transition: none !important;
  transition: none !important;
  background: #ededed;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VkZWRlZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkZWRlZGUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#dedede));
  background: linear-gradient(to bottom, #ededed 0%, #dedede 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#dedede',GradientType=0 );
  -webkit-box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, 0.5);
  -ms-box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, 0.5);
  -o-box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, 0.5);
  box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, 0.5); }

.ui-datepicker-calendar .ui-state-hover {
  background: #f7f7f7; }

.ui-datepicker-calendar .ui-state-active {
  background: #FFF2AA;
  /* set the active date background color */
  border: 1px solid #c19163;
  /* set the active date border color */
  color: #666;
  /* set the active date font color */
  -webkit-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  text-shadow: 0px 1px 0px #FFF;
  -webkit-filter: dropshadow(color=#FFF, offx=0, offy=1);
  filter: dropshadow(color=#FFF, offx=0, offy=1);
  position: relative;
  margin: -1px; }

.ui-datepicker-unselectable .ui-state-default {
  background: #f4f4f4;
  color: #b4b3b3; }

.ui-datepicker-calendar th {
  background: none; }

.ui-datepicker-calendar td:first-child .ui-state-active {
  width: 29px;
  margin-left: 0; }

.ui-datepicker-calendar td:last-child .ui-state-active {
  width: 29px;
  margin-right: 0; }

.ui-datepicker-calendar tr:last-child .ui-state-active {
  height: 29px;
  margin-bottom: 0; }

td.ui-datepicker-unselectable.ui-state-disabled {
  background-color: #d7d7d7; }

table.ui-datepicker-calendar {
  margin: 0 0 0 0 !important; }

body div#ui-datepicker-div[style] {
  z-index: 9999 !important; }

/* enhanced UI/select styles updated in v.1.8.12 -----------------------------------------------------------------*/
.gform_wrapper .chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  zoom: 1;
  *display: inline;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.gform_wrapper .chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  left: -9999px;
  z-index: 1010;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15); }

.gform_wrapper .chosen-container.chosen-with-drop .chosen-drop {
  left: 0; }

.gform_wrapper .chosen-container a {
  cursor: pointer; }

.gform_wrapper .chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 23px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fff), color-stop(50%, #f6f6f6), color-stop(52%, #eee), to(#f4f4f4));
  background: linear-gradient(top, #fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px; }

.gform_wrapper .chosen-container-single .chosen-default {
  color: #999; }

.gform_wrapper .chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap; }

.gform_wrapper .chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px; }

.gform_wrapper .chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url(../chosen-sprite.html) -42px 1px no-repeat;
  font-size: 1px; }

.gform_wrapper .chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px; }

.gform_wrapper .chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px; }

.gform_wrapper .chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%; }

.gform_wrapper .chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../chosen-sprite.html) no-repeat 0 2px; }

.gform_wrapper .chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap; }

.gform_wrapper .chosen-container-single .chosen-search input[type=text] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  background: #fff url(../chosen-sprite.html) no-repeat 100% -20px;
  background: url(../chosen-sprite.html) no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0; }

.gform_wrapper .chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box; }

.gform_wrapper .chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  left: -9999px; }

.gform_wrapper .chosen-container .chosen-results {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch; }

.gform_wrapper .chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  -webkit-touch-callout: none; }

.gform_wrapper .chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer; }

.gform_wrapper .chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default; }

.gform_wrapper .chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff; }

.gform_wrapper .chosen-container .chosen-results li.no-results {
  display: list-item;
  background: #f4f4f4; }

.gform_wrapper .chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: 700;
  cursor: default; }

.gform_wrapper .chosen-container .chosen-results li.group-option {
  padding-left: 15px; }

.gform_wrapper .chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline; }

.gform_wrapper .chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto !important;
  height: 1%;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eee), color-stop(15%, #fff));
  background-image: linear-gradient(#eee 1%, #fff 15%);
  cursor: text; }

.gform_wrapper .chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none; }

.gform_wrapper .chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap; }

.gform_wrapper .chosen-container-multi .chosen-choices li.search-field input[type=text] {
  margin: 1px 0;
  padding: 5px;
  height: 15px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #666;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0; }

.gform_wrapper .chosen-container-multi .chosen-choices li.search-field .default {
  color: #999; }

.gform_wrapper .chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 0 3px 5px !important;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  border-radius: 3px;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 13px;
  cursor: default; }

.gform_wrapper .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url(../chosen-sprite.html) -42px 1px no-repeat;
  font-size: 1px; }

.gform_wrapper .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px; }

.gform_wrapper .chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
  background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  color: #666; }

.gform_wrapper .chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4; }

.gform_wrapper .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px; }

.gform_wrapper .chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0; }

.gform_wrapper .chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default; }

.gform_wrapper .chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #eee), color-stop(80%, #fff));
  background-image: linear-gradient(#eee 20%, #fff 80%);
  -webkit-box-shadow: 0 1px 0 #fff inset;
  box-shadow: 0 1px 0 #fff inset; }

.gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: 0;
  background: transparent; }

.gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px; }

.gform_wrapper .chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.gform_wrapper .chosen-container-active .chosen-choices li.search-field input[type=text] {
  color: #111 !important; }

.gform_wrapper .chosen-disabled {
  opacity: 0.5 !important;
  cursor: default; }

.gform_wrapper .chosen-disabled .chosen-single {
  cursor: default; }

.gform_wrapper .chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default; }

.gform_wrapper .chosen-rtl {
  text-align: right; }

.gform_wrapper .chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0; }

.gform_wrapper .chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl; }

.gform_wrapper .chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px; }

.gform_wrapper .chosen-rtl .chosen-single div {
  right: auto;
  left: 3px; }

.gform_wrapper .chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px; }

.gform_wrapper .chosen-rtl .chosen-choices li {
  float: right; }

.gform_wrapper .chosen-rtl .chosen-choices li.search-field input[type=text] {
  direction: rtl; }

.gform_wrapper .chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px; }

.gform_wrapper .chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px; }

.gform_wrapper .chosen-rtl.chosen-container-single-nosearch .chosen-search.gform_wrapper .chosen-rtl .chosen-drop {
  left: 9999px; }

.gform_wrapper .chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0; }

.gform_wrapper .chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0; }

.gform_wrapper .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: 0; }

.gform_wrapper .chosen-rtl .chosen-search input[type=text] {
  padding: 4px 5px 4px 20px;
  background: #fff url(../chosen-sprite.html) no-repeat -30px -20px;
  background: url(../chosen-sprite.html) no-repeat -30px -20px;
  direction: rtl; }

.gform_wrapper .chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px; }

.gform_wrapper .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px; }

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gform_wrapper .chosen-rtl .chosen-search input[type=text].gform_wrapper .chosen-container-single .chosen-single abbr.gform_wrapper .chosen-container-single .chosen-single div b.gform_wrapper .chosen-container-single .chosen-search input[type=text].gform_wrapper .chosen-container-multi .chosen-choices .search-choice .search-choice-close.gform_wrapper .chosen-container .chosen-results-scroll-down span.gform_wrapper .chosen-container .chosen-results-scroll-up span {
    background-image: url(../chosen-sprite%402x.html) !important;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important; } }

.customSelect {
  display: block;
  max-width: 100%;
  width: 100%;
  background: #ffffff;
  border: 1px solid #D8D8D8;
  color: #151D29;
  padding: 4px 15px;
  height: 42px;
  vertical-align: middle;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.42857143;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  cursor: default;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  -webkit-appearance: none;
  padding-top: 12px;
  width: 100% !important; }
  .customSelect.placeholder {
    color: #D8D8D8; }
  .customSelect:focus {
    outline: none;
    border-color: #CE0000;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .customSelect:hover {
    cursor: text; }
  @media only screen and (max-width: 768px) {
    .customSelect {
      height: auto;
      padding-bottom: 12px; } }
  .customSelect.changed {
    background-color: #ffffff; }

.customSelect.customSelectHover {
  /* Styles for when the select box is hovered */ }

.customSelect.customSelectDisabled {
  opacity: 0.5; }

.customSelect.customSelectOpen {
  /* Styles for when the select box is open */ }

.customSelect.customSelectFocus {
  /* Styles for when the select box is in focus */
  outline: none;
  border-color: #CE0000;
  -webkit-box-shadow: none;
  box-shadow: none; }

.customSelect.customSelectDisabledOption {
  /* Styles for when the selected item is a disabled one */ }

.customSelect.customSelectDisabled {
  /* Styles for when the select box itself is disabled */ }

.customSelectInner {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAICAYAAAD9aA/QAAAAfElEQVQoFZXRgQ2AIAwEwI7AKIzESIzACIzCCI7gBvUxhWDFtJp8REqPCEREBeEfKcxMVu4FQJsTbhY46gMOgA8D7/UwGq33/CU0ReREdsfS56OFrfUJ90k8CdnBaW3yjB+w4Fnh2QPpNS9Y8Cp41Q3e7y84AC6I+7L0hhc28oiRLYTxoAAAAABJRU5ErkJggg==);
  background-position: right 50%;
  background-repeat: no-repeat;
  max-width: 100%; }

.deposit-form_wrapper {
  background: #F6F6F6;
  padding: 60px;
  border: 0 !important;
  cursor: pointer;
  position: relative;
  margin-top: 10px !important;
  margin-bottom: 0 !important; }
  @media only screen and (max-width: 419px) {
    .deposit-form_wrapper {
      padding: 30px 10px !important;
      background: none; } }
  .deposit-form_wrapper h2.gsection_title {
    font-size: 20px;
    font-weight: 500 !important; }
  .deposit-form_wrapper label {
    font-size: 13px !important;
    margin-bottom: 6px;
    color: black;
    font-weight: 400 !important; }
  .deposit-form_wrapper li.gsection:first-child {
    padding: 0px 0px 30px !important;
    background: none !important; }
  .deposit-form_wrapper .gform_wrapper .gsection {
    border: none !important; }
  .deposit-form_wrapper ul.gfield_checkbox label {
    padding-left: 8px;
    margin-top: 4px;
    width: calc(100% - 30px);
    color: #656262;
    font-size: 14px !important; }
  .deposit-form_wrapper .gform_validation_container {
    display: none !important; }
  @media only screen and (max-width: 419px) {
    .deposit-form_wrapper select.hasCustomSelect {
      width: 100% !important;
      height: 45px !important;
      display: block !important; }
    .deposit-form_wrapper .ginput_card_expiration_container .customSelect {
      width: 100% !important; }
    .deposit-form_wrapper .ginput_cardinfo_left {
      width: 100%; }
    .deposit-form_wrapper .ginput_cardinfo_right {
      width: 100%;
      padding-left: 0px; } }
  .deposit-form_wrapper .gform_footer {
    text-align: center;
    padding: 0px;
    width: 100%; }
    .deposit-form_wrapper .gform_footer button[type=submit] {
      padding: 0px;
      width: 100%;
      font-weight: 500; }

.zrf-form {
  background: #F6F6F6;
  padding: 60px !important;
  border: 0 !important;
  position: relative;
  text-align: left !important;
  width: 80%;
  margin: 0 auto; }
  @media only screen and (max-width: 768px) {
    .zrf-form {
      padding: 0px !important;
      width: 100%;
      background: white; } }
  .zrf-form span.zrf_field_title {
    text-align: left !important; }
  .zrf-form input,
  .zrf-form textarea {
    display: block;
    max-width: 100%;
    width: 100% !important;
    background: #ffffff;
    border: 1px solid #D8D8D8;
    color: #151D29;
    margin: 0 auto;
    padding: 4px 15px;
    height: 42px;
    vertical-align: middle;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.42857143;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 2px;
    -webkit-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    -webkit-appearance: none; }
  .zrf-form textarea {
    height: 200px;
    padding: 20px; }
  .zrf-form p {
    text-align: left !important; }

@media only screen and (max-width: 768px) {
  table.buy-process td {
    width: 50%;
    display: inline-block !important;
    float: left;
    border: none !important;
    padding: 0px !important; } }

header.site-banner {
  height: 85px;
  background: #000000;
  color: #ffffff;
  z-index: 50;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding-left: 20px;
  padding-right: 20px; }
  @media only screen and (min-width: 1200px) {
    header.site-banner {
      padding-left: 30px;
      padding-right: 30px; } }
  @media only screen and (max-width: 768px) {
    header.site-banner {
      height: 60px;
      padding: 0; } }
  header.site-banner .site-banner__inner {
    max-width: 1450px;
    margin-left: auto;
    margin-right: auto;
    width: 100%; }
  header.site-banner .logo-container {
    width: 110px;
    position: relative; }
    header.site-banner .logo-container:before {
      content: '';
      display: block;
      right: 0;
      top: 0;
      bottom: 0;
      width: 1000px;
      position: absolute;
      background-image: -webkit-gradient(linear, left bottom, left top, from(#097B38), color-stop(89%, #0E9C48));
      background-image: linear-gradient(0deg, #097B38 0%, #0E9C48 89%); }
    @media only screen and (min-width: 1200px) {
      header.site-banner .logo-container {
        width: 155px; } }
    @media only screen and (max-width: 768px) {
      header.site-banner .logo-container {
        width: 125px;
        z-index: 99; } }
  header.site-banner .nav-container {
    width: calc(100% - 110px); }
    @media only screen and (min-width: 1200px) {
      header.site-banner .nav-container {
        width: calc(100% - 155px); } }
    @media only screen and (max-width: 768px) {
      header.site-banner .nav-container {
        width: calc(100% - 125px); } }
  header.site-banner .country-select-wrap {
    line-height: 0;
    vertical-align: middle;
    margin-left: 10px; }
    @media only screen and (max-width: 768px) {
      header.site-banner .country-select-wrap {
        display: none; } }
  header.site-banner .country-select {
    display: inline-block;
    line-height: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(14, 156, 72, 0);
    -webkit-transition: border-color 0.4s;
    transition: border-color 0.4s;
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }
    header.site-banner .country-select:hover {
      border-color: #0e9c48; }
  header.site-banner a.brand {
    display: block;
    height: 85px;
    text-align: right;
    padding: 33px 18px 0 0;
    z-index: 1;
    position: relative; }
    header.site-banner a.brand img {
      height: 13px; }
    @media only screen and (min-width: 1200px) {
      header.site-banner a.brand {
        padding-right: 25px; }
        header.site-banner a.brand img {
          height: 18px; } }
    @media only screen and (max-width: 768px) {
      header.site-banner a.brand {
        height: 50px;
        padding: 15px 0 0;
        text-align: center; }
        header.site-banner a.brand img {
          height: 11px; } }
  header.site-banner ul.main-nav, header.site-banner ul.secondary-nav {
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding: 21px 4px 0 10px;
    z-index: 70; }
    @media only screen and (min-width: 1200px) {
      header.site-banner ul.main-nav, header.site-banner ul.secondary-nav {
        padding: 21px 28px; } }
    header.site-banner ul.main-nav > li:not(.country-select-wrap), header.site-banner ul.secondary-nav > li:not(.country-select-wrap) {
      display: inline-block;
      padding-right: 2px; }
      @media only screen and (min-width: 1200px) {
        header.site-banner ul.main-nav > li:not(.country-select-wrap), header.site-banner ul.secondary-nav > li:not(.country-select-wrap) {
          padding-right: 10px; } }
      header.site-banner ul.main-nav > li:not(.country-select-wrap) a, header.site-banner ul.secondary-nav > li:not(.country-select-wrap) a {
        text-decoration: none; }
      header.site-banner ul.main-nav > li:not(.country-select-wrap) > a, header.site-banner ul.secondary-nav > li:not(.country-select-wrap) > a {
        display: block;
        padding: 10px;
        color: #ffffff;
        font-family: 'Roboto Condensed', sans-serif;
        font-weight: normal;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-transform: uppercase;
        font-weight: 700;
        text-decoration: none;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0); }
      @media only screen and (min-width: 769px) {
        header.site-banner ul.main-nav > li:not(.country-select-wrap):hover > a, header.site-banner ul.main-nav > li:not(.country-select-wrap):focus > a, header.site-banner ul.main-nav > li:not(.country-select-wrap).open > a, header.site-banner ul.secondary-nav > li:not(.country-select-wrap):hover > a, header.site-banner ul.secondary-nav > li:not(.country-select-wrap):focus > a, header.site-banner ul.secondary-nav > li:not(.country-select-wrap).open > a {
          border-bottom: 3px solid #0E9C48; }
        header.site-banner ul.main-nav > li:not(.country-select-wrap):hover > .dropdown-menu, header.site-banner ul.main-nav > li:not(.country-select-wrap):focus > .dropdown-menu, header.site-banner ul.main-nav > li:not(.country-select-wrap).open > .dropdown-menu, header.site-banner ul.secondary-nav > li:not(.country-select-wrap):hover > .dropdown-menu, header.site-banner ul.secondary-nav > li:not(.country-select-wrap):focus > .dropdown-menu, header.site-banner ul.secondary-nav > li:not(.country-select-wrap).open > .dropdown-menu {
          display: block;
          width: 320px; }
          header.site-banner ul.main-nav > li:not(.country-select-wrap):hover > .dropdown-menu .dropdown-menu, header.site-banner ul.main-nav > li:not(.country-select-wrap):focus > .dropdown-menu .dropdown-menu, header.site-banner ul.main-nav > li:not(.country-select-wrap).open > .dropdown-menu .dropdown-menu, header.site-banner ul.secondary-nav > li:not(.country-select-wrap):hover > .dropdown-menu .dropdown-menu, header.site-banner ul.secondary-nav > li:not(.country-select-wrap):focus > .dropdown-menu .dropdown-menu, header.site-banner ul.secondary-nav > li:not(.country-select-wrap).open > .dropdown-menu .dropdown-menu {
            min-height: 250px;
            opacity: 0;
            pointer-events: none; }
          header.site-banner ul.main-nav > li:not(.country-select-wrap):hover > .dropdown-menu li:hover .dropdown-menu, header.site-banner ul.main-nav > li:not(.country-select-wrap):hover > .dropdown-menu li:focus .dropdown-menu, header.site-banner ul.main-nav > li:not(.country-select-wrap):hover > .dropdown-menu li.open .dropdown-menu, header.site-banner ul.main-nav > li:not(.country-select-wrap):focus > .dropdown-menu li:hover .dropdown-menu, header.site-banner ul.main-nav > li:not(.country-select-wrap):focus > .dropdown-menu li:focus .dropdown-menu, header.site-banner ul.main-nav > li:not(.country-select-wrap):focus > .dropdown-menu li.open .dropdown-menu, header.site-banner ul.main-nav > li:not(.country-select-wrap).open > .dropdown-menu li:hover .dropdown-menu, header.site-banner ul.main-nav > li:not(.country-select-wrap).open > .dropdown-menu li:focus .dropdown-menu, header.site-banner ul.main-nav > li:not(.country-select-wrap).open > .dropdown-menu li.open .dropdown-menu, header.site-banner ul.secondary-nav > li:not(.country-select-wrap):hover > .dropdown-menu li:hover .dropdown-menu, header.site-banner ul.secondary-nav > li:not(.country-select-wrap):hover > .dropdown-menu li:focus .dropdown-menu, header.site-banner ul.secondary-nav > li:not(.country-select-wrap):hover > .dropdown-menu li.open .dropdown-menu, header.site-banner ul.secondary-nav > li:not(.country-select-wrap):focus > .dropdown-menu li:hover .dropdown-menu, header.site-banner ul.secondary-nav > li:not(.country-select-wrap):focus > .dropdown-menu li:focus .dropdown-menu, header.site-banner ul.secondary-nav > li:not(.country-select-wrap):focus > .dropdown-menu li.open .dropdown-menu, header.site-banner ul.secondary-nav > li:not(.country-select-wrap).open > .dropdown-menu li:hover .dropdown-menu, header.site-banner ul.secondary-nav > li:not(.country-select-wrap).open > .dropdown-menu li:focus .dropdown-menu, header.site-banner ul.secondary-nav > li:not(.country-select-wrap).open > .dropdown-menu li.open .dropdown-menu {
            z-index: 10;
            opacity: 1;
            pointer-events: auto; }
          header.site-banner ul.main-nav > li:not(.country-select-wrap):hover > .dropdown-menu .dropdown-menu, header.site-banner ul.main-nav > li:not(.country-select-wrap):focus > .dropdown-menu .dropdown-menu, header.site-banner ul.main-nav > li:not(.country-select-wrap).open > .dropdown-menu .dropdown-menu, header.site-banner ul.secondary-nav > li:not(.country-select-wrap):hover > .dropdown-menu .dropdown-menu, header.site-banner ul.secondary-nav > li:not(.country-select-wrap):focus > .dropdown-menu .dropdown-menu, header.site-banner ul.secondary-nav > li:not(.country-select-wrap).open > .dropdown-menu .dropdown-menu {
            display: block; } }
  header.site-banner ul.main-nav .dropdown-menu li:hover + li a:before, header.site-banner ul.main-nav .dropdown-menu li:focus + li a:before {
    content: none; }
  header.site-banner ul.main-nav .dropdown-menu a:hover, header.site-banner ul.main-nav .dropdown-menu a:focus {
    border-left: 1px solid #0E9C48; }
  header.site-banner ul.main-nav li.menu-item-has-children {
    position: relative; }
    header.site-banner ul.main-nav li.menu-item-has-children > a {
      position: relative;
      z-index: 2; }
    header.site-banner ul.main-nav li.menu-item-has-children.open > ul.nav {
      display: block; }
    header.site-banner ul.main-nav li.menu-item-has-children > ul.nav {
      display: none;
      position: absolute;
      z-index: 1;
      top: 0;
      padding-top: 65px;
      background: transparent;
      width: 240px; }
      header.site-banner ul.main-nav li.menu-item-has-children > ul.nav > li {
        display: block; }
        header.site-banner ul.main-nav li.menu-item-has-children > ul.nav > li:not(:first-child) {
          border-top: 1px solid #D8D8D8; }
        header.site-banner ul.main-nav li.menu-item-has-children > ul.nav > li > a {
          display: block;
          padding: 20px 30px;
          color: #212121;
          background: #ffffff;
          text-transform: uppercase;
          font-size: 14px;
          font-family: 'Roboto Condensed', sans-serif;
          font-weight: bold;
          font-style: normal;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale; }
          header.site-banner ul.main-nav li.menu-item-has-children > ul.nav > li > a:hover, header.site-banner ul.main-nav li.menu-item-has-children > ul.nav > li > a:focus {
            color: #ffffff;
            background-color: #0E9C48; }
      @media only screen and (max-width: 768px) {
        header.site-banner ul.main-nav li.menu-item-has-children > ul.nav {
          position: relative;
          top: auto;
          left: 0;
          margin: 0;
          padding: 10px 20px 10px 0;
          width: auto;
          background: #323232;
          right: 0; }
          header.site-banner ul.main-nav li.menu-item-has-children > ul.nav > li {
            padding: 0; }
            header.site-banner ul.main-nav li.menu-item-has-children > ul.nav > li:not(:first-child) {
              border-top: 1px solid #413D42; }
            header.site-banner ul.main-nav li.menu-item-has-children > ul.nav > li > a {
              padding: 10px 16px;
              position: relative;
              font-size: 16px;
              font-weight: bold !important;
              font-family: 'Roboto Condensed', sans-serif;
              font-weight: normal;
              font-style: normal;
              -webkit-font-smoothing: antialiased;
              -moz-osx-font-smoothing: grayscale; }
              header.site-banner ul.main-nav li.menu-item-has-children > ul.nav > li > a, header.site-banner ul.main-nav li.menu-item-has-children > ul.nav > li > a:hover, header.site-banner ul.main-nav li.menu-item-has-children > ul.nav > li > a:focus {
                background-color: transparent;
                color: #0E9C48; }
              header.site-banner ul.main-nav li.menu-item-has-children > ul.nav > li > a:after {
                content: '';
                position: absolute;
                right: 5px;
                top: 17px;
                display: inline-block;
                background-repeat: no-repeat; } }
  @media only screen and (max-width: 768px) {
    header.site-banner ul.main-nav {
      position: relative;
      width: 100%;
      margin: 0;
      padding: 0; }
      header.site-banner ul.main-nav > li {
        border-bottom: 1px solid #323232; }
        header.site-banner ul.main-nav > li > a {
          padding: 16px 10px !important; }
      header.site-banner ul.main-nav > li.dropdown > ul.dropdown-menu > li {
        background-color: #323232; }
        header.site-banner ul.main-nav > li.dropdown > ul.dropdown-menu > li > a {
          padding-top: 32px !important;
          padding-left: 30px !important; }
        header.site-banner ul.main-nav > li.dropdown > ul.dropdown-menu > li > ul.dropdown-menu > li {
          background-color: #21201f; }
          header.site-banner ul.main-nav > li.dropdown > ul.dropdown-menu > li > ul.dropdown-menu > li a {
            text-transform: none;
            padding-left: 40px !important; }
        header.site-banner ul.main-nav > li.dropdown > ul.dropdown-menu > li a {
          color: #fff; }
      header.site-banner ul.main-nav li {
        display: block !important;
        padding: 0; }
        header.site-banner ul.main-nav li a {
          font-family: 'Roboto Condensed', sans-serif;
          font-weight: normal;
          font-style: normal;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          font-weight: 700;
          font-size: 18px;
          padding-left: 20px !important;
          padding-right: 20px !important; }
        header.site-banner ul.main-nav li.dropdown.open > .dropdown-menu {
          display: block; }
        header.site-banner ul.main-nav li.dropdown.open > a:after {
          -webkit-transform: rotate(90deg);
          transform: rotate(90deg); }
        header.site-banner ul.main-nav li.dropdown.open .dropdown-menu {
          position: relative;
          top: auto;
          left: 0;
          margin: 0;
          padding: 0;
          width: auto; }
          header.site-banner ul.main-nav li.dropdown.open .dropdown-menu li {
            width: auto;
            display: block;
            height: auto; }
            header.site-banner ul.main-nav li.dropdown.open .dropdown-menu li .shadow {
              display: none; }
            header.site-banner ul.main-nav li.dropdown.open .dropdown-menu li > a {
              background: transparent;
              border: 0;
              padding: 20px 14px;
              border-top: 1px solid #413D42;
              font-size: 16px;
              width: auto; }
              header.site-banner ul.main-nav li.dropdown.open .dropdown-menu li > a:before {
                content: none; }
              header.site-banner ul.main-nav li.dropdown.open .dropdown-menu li > a:after {
                top: 25px;
                right: 20px; }
              header.site-banner ul.main-nav li.dropdown.open .dropdown-menu li > a strong {
                font-size: 18px;
                color: #ffffff; }
          header.site-banner ul.main-nav li.dropdown.open .dropdown-menu .dropdown-menu li > a {
            padding-left: 25px; }
      header.site-banner ul.main-nav > li.dropdown.open > .dropdown-menu > li:first-child > a {
        border-top: 0; } }
  header.site-banner ul.secondary-nav {
    display: inline-block;
    float: right;
    padding-left: 0;
    padding-right: 0; }
    header.site-banner ul.secondary-nav li:not(.country-select-wrap) a {
      color: #0E9C48; }
      header.site-banner ul.secondary-nav li:not(.country-select-wrap) a:before {
        content: '';
        display: inline-block;
        vertical-align: top;
        position: relative;
        top: 1px; }
      header.site-banner ul.secondary-nav li:not(.country-select-wrap) a.book-test-ride:before {
        top: 2px; }
      header.site-banner ul.secondary-nav li:not(.country-select-wrap) a .optional-label {
        display: none; }
        @media only screen and (min-width: 1200px) {
          header.site-banner ul.secondary-nav li:not(.country-select-wrap) a .optional-label {
            display: inline-block;
            margin-left: 10px; } }
    @media only screen and (max-width: 768px) {
      header.site-banner ul.secondary-nav {
        padding: 3px 10px 3px 0;
        z-index: 1; } }
  header.site-banner ul.dropdown-menu {
    display: none;
    width: 322px;
    position: absolute;
    top: 60px;
    left: 0px;
    margin-left: 0;
    padding-top: 25px; }
    header.site-banner ul.dropdown-menu ul.dropdown-menu {
      left: 320px;
      top: 0; }
      header.site-banner ul.dropdown-menu ul.dropdown-menu li {
        position: relative;
        height: 65px;
        width: 220px; }
        header.site-banner ul.dropdown-menu ul.dropdown-menu li > a {
          font-size: 17px;
          color: #212121;
          height: 65px;
          padding-right: 25px;
          padding-top: 25px;
          background: rgba(255, 255, 255, 0.9);
          /*
                    &:hover, &:focus {
                        color: $colour-white;
                        background: $colour-primary;
                    }
                    */ }
          header.site-banner ul.dropdown-menu ul.dropdown-menu li > a:after {
            top: 29px;
            right: 25px; }
          header.site-banner ul.dropdown-menu ul.dropdown-menu li > a:before {
            right: 25px;
            left: 30px; }
        header.site-banner ul.dropdown-menu ul.dropdown-menu li:not(.model-nav-item) > a:hover,
        header.site-banner ul.dropdown-menu ul.dropdown-menu li:not(.model-nav-item) > a:focus,
        header.site-banner ul.dropdown-menu ul.dropdown-menu li.model-nav-item > a.hover {
          color: #ffffff;
          background: #0E9C48; }
      @media only screen and (max-width: 768px) {
        header.site-banner ul.dropdown-menu ul.dropdown-menu {
          min-height: 0; } }
    header.site-banner ul.dropdown-menu li {
      display: inline-block;
      padding: 0;
      width: 100%; }
      header.site-banner ul.dropdown-menu li:hover > a, header.site-banner ul.dropdown-menu li:focus > a {
        background: #0E9C48;
        color: #ffffff;
        border-left: 0; }
        header.site-banner ul.dropdown-menu li:hover > a strong, header.site-banner ul.dropdown-menu li:focus > a strong {
          color: #ffffff; }
        header.site-banner ul.dropdown-menu li:hover > a:before, header.site-banner ul.dropdown-menu li:focus > a:before {
          content: none; }
      header.site-banner ul.dropdown-menu li > a {
        display: block;
        height: 90px;
        font-weight: 400;
        font-family: 'Roboto Condensed', sans-serif;
        font-weight: normal;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 14px;
        color: #D8D8D8;
        padding: 30px 175px 0 29px;
        border-left: 1px solid #D8D8D8;
        background: #ffffff;
        z-index: 2;
        text-transform: uppercase;
        position: relative;
        line-height: 1; }
        header.site-banner ul.dropdown-menu li > a strong {
          font-size: 15px;
          font-weight: 700;
          color: #212121; }
        header.site-banner ul.dropdown-menu li > a:after {
          content: '';
          position: absolute;
          right: 35px;
          top: 40px;
          display: inline-block;
          background-repeat: no-repeat; }
        header.site-banner ul.dropdown-menu li > a:before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 1px;
          background: #D8D8D8; }
        header.site-banner ul.dropdown-menu li > a img {
          position: absolute;
          top: 14px;
          right: 50px;
          max-width: 110px; }
      header.site-banner ul.dropdown-menu li:first-child > a:before {
        content: none; }
      header.site-banner ul.dropdown-menu li span.shadow {
        -webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.3);
        box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.3);
        padding: 0;
        z-index: 1;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none; }
  header.site-banner .scrollable-mobile-menu {
    display: inline-block; }
  @media only screen and (max-width: 768px) {
    header.site-banner .scrollable-mobile-menu {
      background: #212121;
      opacity: 0;
      pointer-events: none;
      position: fixed;
      top: 60px;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      z-index: 50; } }
  header.site-banner .product-display {
    display: none;
    position: absolute;
    top: 25px;
    width: 700px;
    height: 520px;
    background: #ffffff;
    color: #212121;
    /*
        div, a {
            transition: opacity .2s ease-in-out;
        }
        &.switching {
            div, a {
                opacity: 0.7;
            }
        }
        */ }
    @media only screen and (min-width: 1200px) {
      header.site-banner .product-display {
        display: block; } }
    @media only screen and (max-width: 768px) {
      header.site-banner .product-display {
        display: none; } }
    header.site-banner .product-display.out {
      opacity: 0;
      pointer-events: none; }
    header.site-banner .product-display .product-display__bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 275px;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      z-index: 0; }
    header.site-banner .product-display .product-display__img {
      position: absolute;
      bottom: 150px;
      right: 40px;
      z-index: 2;
      max-width: 460px;
      width: 460px;
      height: 310px;
      background-position: bottom right;
      background-size: contain;
      background-repeat: no-repeat; }
    header.site-banner .product-display .product-display__logo {
      width: 340px;
      height: 340px;
      background-position: center bottom;
      background-repeat: no-repeat;
      background-size: contain;
      position: absolute;
      bottom: 30px;
      left: 30px;
      z-index: 1; }
    header.site-banner .product-display .product-display__features {
      max-width: 240px;
      position: absolute;
      left: 30px;
      bottom: 150px;
      font-weight: 500;
      font-size: 13px;
      line-height: 1.1; }
      header.site-banner .product-display .product-display__features ul {
        padding-left: 20px !important; }
        header.site-banner .product-display .product-display__features ul li:before {
          position: absolute;
          left: -20px;
          top: 1px;
          font-size: 26px; }
      header.site-banner .product-display .product-display__features ul, header.site-banner .product-display .product-display__features li {
        display: block !important;
        height: auto !important;
        width: auto !important; }
    header.site-banner .product-display .product-display__price {
      position: absolute;
      left: 50px;
      bottom: 160px;
      color: #0E9C48;
      text-transform: uppercase;
      font-weight: 500;
      font-size: 15px;
      line-height: 1.1; }
    header.site-banner .product-display .product-display__info {
      position: absolute;
      bottom: 22px;
      min-height: 110px;
      left: 30px;
      width: 158px; }
      header.site-banner .product-display .product-display__info h3 {
        font-size: 15px;
        font-family: 'Roboto', sans-serif;
        font-weight: bold;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: #72777B;
        padding-bottom: 14px;
        border-bottom: 3px solid #0E9C48;
        margin-bottom: 16px; }
      header.site-banner .product-display .product-display__info p.product-display__data {
        font-family: 'Rajdhani', sans-serif;
        font-weight: 700 !important;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 40px;
        line-height: .9;
        text-transform: uppercase; }
      header.site-banner .product-display .product-display__info a.product-display__data-link {
        display: block;
        font-size: 15px;
        margin-top: 10px;
        text-transform: none;
        border-left: none !important; }
      header.site-banner .product-display .product-display__info.product-display__info-second {
        left: 210px; }
    header.site-banner .product-display a.product-display__btn {
      position: absolute;
      bottom: 46px;
      right: 43px;
      width: 167px; }

.mobile-menu-button--alt:before {
  content: '';
  display: inline-block;
  vertical-align: top;
  position: relative;
  top: 5px !important; }

.mobile-menu-button {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 60px;
  height: 60px;
  z-index: 70;
  border-radius: 30px;
  background-color: #0E9C48;
  background-position: center;
  background-repeat: no-repeat; }
  .mobile-menu-button:before {
    content: '';
    position: absolute;
    display: inline-block;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  @media only screen and (max-width: 768px) {
    .mobile-menu-button {
      display: inline-block; } }

body.mobile-menu-open header nav .scrollable-mobile-menu {
  opacity: 1;
  pointer-events: auto;
  height: calc(100% - 60px); }

section.secondary-header {
  height: 60px;
  color: #ffffff;
  background: #212121;
  padding-left: 30px;
  padding-right: 0;
  overflow-y: visible;
  position: fixed;
  left: 0;
  right: 0;
  top: 85px;
  z-index: 40;
  /*
	&.fixed {
		z-index: 40;
		.secondary-header__inner {
			position: fixed;
			top: 0;
			width: 100%;
			left: 0;
			padding-left: 30px;
			padding-right: 0;
			@include media-query(portable) {
				padding-left: 20px;
				padding-right: 0;
				//overflow: hidden;
			}
			&:before {
				position: fixed;
				content: '';
				background: $colour-grey-primary;
				left: 0;
				height: $secondary-header-height;
				width: 100%;
				display: block;
				z-index: 0;
			}
		}
		.secondary-header__nav-list {
			position: fixed;
		}
	}
	*/ }
  @media only screen and (max-width: 768px) {
    section.secondary-header {
      padding-left: 20px;
      padding-right: 0;
      top: 60px; } }
  section.secondary-header .secondary-header__nav-list {
    position: fixed; }
  section.secondary-header .secondary-header__inner {
    padding: 0;
    height: 60px;
    width: 100%; }
    section.secondary-header .secondary-header__inner .secondary-header__wrapper {
      max-width: 1450px;
      margin: 0 auto; }
    section.secondary-header .secondary-header__inner:before {
      position: fixed;
      content: '';
      left: 0;
      height: 60px;
      width: 100%;
      display: block;
      z-index: 0; }
  section.secondary-header .less-buy-button {
    width: calc(100% - 160px); }
  section.secondary-header .less-register-button {
    width: calc(100% - 240px); }
  section.secondary-header .buy-button,
  section.secondary-header .register-button {
    position: relative; }
    section.secondary-header .buy-button:after,
    section.secondary-header .register-button:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      background-image: -webkit-gradient(linear, left bottom, left top, from(#097B38), color-stop(89%, #0E9C48));
      background-image: linear-gradient(0deg, #097B38 0%, #0E9C48 89%);
      height: 60px;
      width: 100%;
      z-index: 0; }
  section.secondary-header .buy-button {
    width: 160px; }
  section.secondary-header .register-button {
    width: 240px; }
  section.secondary-header h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    color: #ffffff;
    padding-top: 21px;
    display: inline-block;
    text-transform: none;
    vertical-align: top;
    position: relative;
    pointer-events: none; }
    @media only screen and (max-width: 768px) {
      section.secondary-header h2 {
        height: 60px;
        pointer-events: all;
        cursor: pointer; }
        section.secondary-header h2:after {
          content: '';
          display: inline-block;
          top: -1px;
          position: relative;
          margin-left: 10px; } }
  section.secondary-header .secondary-header__nav-list {
    display: inline-block;
    padding-left: 10px;
    margin-left: 20px;
    position: relative;
    vertical-align: top; }
    @media only screen and (min-width: 1200px) {
      section.secondary-header .secondary-header__nav-list {
        margin-left: 30px; } }
    section.secondary-header .secondary-header__nav-list:before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      height: 16px;
      margin-top: -8px;
      width: 1px;
      display: inline-block;
      background: rgba(114, 119, 123, 0.56); }
    section.secondary-header .secondary-header__nav-list li {
      display: inline-block; }
      section.secondary-header .secondary-header__nav-list li a {
        color: white;
        padding: 20px 10px 0;
        font-size: 13px;
        text-decoration: none;
        display: inline-block;
        height: 58px;
        font-weight: bold; }
        section.secondary-header .secondary-header__nav-list li a:hover, section.secondary-header .secondary-header__nav-list li a:focus {
          color: #ffffff;
          background: rgba(255, 255, 255, 0.1); }
        @media only screen and (min-width: 1200px) {
          section.secondary-header .secondary-header__nav-list li a {
            padding: 20px 20px 0; } }
      section.secondary-header .secondary-header__nav-list li.active {
        background: rgba(255, 255, 255, 0.1);
        border-bottom: 2px solid #0E9C48; }
    @media only screen and (max-width: 768px) {
      section.secondary-header .secondary-header__nav-list {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #2e2e2e;
        z-index: 5;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0; }
        section.secondary-header .secondary-header__nav-list li {
          display: block; }
          section.secondary-header .secondary-header__nav-list li a {
            padding: 15px 20px 0;
            height: 45px;
            display: block; } }
    section.secondary-header .secondary-header__nav-list.secondary-header__nav-list--with-end-line {
      padding-right: 5px; }
      @media only screen and (max-width: 768px) {
        section.secondary-header .secondary-header__nav-list.secondary-header__nav-list--with-end-line {
          padding-right: 0; } }
      section.secondary-header .secondary-header__nav-list.secondary-header__nav-list--with-end-line:after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        height: 16px;
        margin-top: -8px;
        width: 1px;
        display: inline-block;
        background: rgba(114, 119, 123, 0.56); }
  section.secondary-header .secondary-header__price-box {
    float: right;
    display: inline-block;
    padding: 15px 20px 0;
    position: relative;
    z-index: 1; }
    @media only screen and (max-width: 419px) {
      section.secondary-header .secondary-header__price-box {
        display: none; } }
    section.secondary-header .secondary-header__price-box .secondary-header__price-prefix {
      font-size: 11px;
      color: #72777B;
      text-transform: uppercase;
      font-weight: 700;
      display: inline-block;
      vertical-align: top;
      line-height: 1;
      margin-right: 5px;
      margin-top: 2px; }
    section.secondary-header .secondary-header__price-box .secondary-header__price {
      font-size: 27px;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700 !important;
      font-style: normal;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      display: inline-block;
      vertical-align: top;
      line-height: 1; }
  section.secondary-header .secondary-header__actions {
    float: right;
    height: 60px;
    position: relative;
    padding-top: 19px;
    text-align: right; }
    section.secondary-header .secondary-header__actions:after {
      content: '';
      position: absolute;
      top: 50%;
      right: 0;
      height: 16px;
      margin-top: -8px;
      width: 1px;
      display: inline-block;
      background: rgba(114, 119, 123, 0.56); }
      @media only screen and (max-width: 419px) {
        section.secondary-header .secondary-header__actions:after {
          content: none; } }
    section.secondary-header .secondary-header__actions a {
      color: #ffffff;
      text-decoration: none;
      margin-right: 12px;
      display: inline-block; }
      @media only screen and (min-width: 1200px) {
        section.secondary-header .secondary-header__actions a {
          margin-right: 25px; } }
      @media only screen and (max-width: 419px) {
        section.secondary-header .secondary-header__actions a {
          margin-right: 20px; } }
      section.secondary-header .secondary-header__actions a .optional-label {
        font-size: 13px;
        font-weight: 500;
        display: none; }
        @media only screen and (min-width: 1200px) {
          section.secondary-header .secondary-header__actions a .optional-label {
            display: inline-block;
            margin-right: 4px; } }
      section.secondary-header .secondary-header__actions a:after {
        content: '';
        background-repeat: no-repeat;
        display: inline-block;
        width: 13px;
        height: 13px;
        position: relative;
        top: 3px; }
      section.secondary-header .secondary-header__actions a.download:after {
        margin-left: 6px;
        background: url(../svg/brochure.svg);
        background-size: contain;
        background-repeat: no-repeat; }
      section.secondary-header .secondary-header__actions a.online-brochure:after {
        margin-left: 6px;
        background: url(../svg/online-brochure.svg);
        background-size: contain;
        background-repeat: no-repeat; }
      section.secondary-header .secondary-header__actions a.enquire:after {
        margin-left: 8px;
        top: 1px; }
  section.secondary-header .secondary-header__buy-button,
  section.secondary-header .secondary-header__register-button {
    display: block;
    width: 100%;
    height: 100%;
    text-align: left;
    padding: 18px 30px;
    position: relative;
    z-index: 1;
    background: none;
    text-align: center; }
    section.secondary-header .secondary-header__buy-button:after,
    section.secondary-header .secondary-header__register-button:after {
      content: '';
      display: inline-block;
      background-repeat: no-repeat;
      margin-left: 14px;
      left: 0;
      top: -1px;
      position: relative;
      -webkit-transition: -webkit-transform 0.4s ease-in-out;
      transition: -webkit-transform 0.4s ease-in-out;
      transition: transform 0.4s ease-in-out;
      transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out; }
    section.secondary-header .secondary-header__buy-button:hover:after, section.secondary-header .secondary-header__buy-button:focus:after,
    section.secondary-header .secondary-header__register-button:hover:after,
    section.secondary-header .secondary-header__register-button:focus:after {
      -webkit-transform: translateX(10px);
      transform: translateX(10px); }

@media screen and (min-width: 420px) and (max-width: 501px) {
  section.secondary-header {
    padding-left: 10px; }
    section.secondary-header .buy-button {
      width: 130px; }
    section.secondary-header .less-buy-button {
      width: calc(100% - 130px); }
    section.secondary-header .secondary-header__price-box {
      padding: 15px 10px 0; }
    section.secondary-header .secondary-header__buy-button,
    section.secondary-header .secondary-header__register-button {
      padding: 18px 10px; } }

.page-template-page-dealers-detail section.secondary-header a h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: bold;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  color: #ffffff;
  padding-top: 21px;
  display: inline-block;
  text-transform: none;
  vertical-align: top;
  position: relative;
  pointer-events: all; }

footer.site-footer {
  padding: 50px 20px;
  background: #212121;
  color: #D8D8D8;
  font-size: 14px; }
  footer.site-footer p.disclaimer {
    font-size: 12px;
    opacity: 0.5;
    max-width: 80%;
    margin-top: 10px; }
    @media only screen and (max-width: 768px) {
      footer.site-footer p.disclaimer {
        max-width: 100%; } }
  footer.site-footer .site-footer__inner {
    max-width: 1450px;
    width: 100%;
    margin-left: auto;
    margin-right: auto; }
  @media only screen and (min-width: 1200px) {
    footer.site-footer {
      padding-left: 50px;
      padding-right: 50px; } }
  footer.site-footer .flex__item {
    text-align: center; }
  footer.site-footer ul li {
    margin: 0 16px 0 0;
    vertical-align: top; }
    footer.site-footer ul li a {
      color: #D8D8D8;
      text-decoration: none;
      position: relative; }
      footer.site-footer ul li a:hover, footer.site-footer ul li a:focus {
        color: #0E9C48; }
      footer.site-footer ul li a:before {
        display: inline-block;
        vertical-align: top;
        background-repeat: no-repeat;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        content: ''; }
  footer.site-footer ul.footer-social-nav {
    text-align: right; }
    @media only screen and (max-width: 768px) {
      footer.site-footer ul.footer-social-nav {
        margin-top: 20px;
        text-align: left; } }
    footer.site-footer ul.footer-social-nav li:last-child {
      margin-right: 0; }
    footer.site-footer ul.footer-social-nav li {
      vertical-align: top; }
      footer.site-footer ul.footer-social-nav li a {
        width: 22px;
        height: 22px;
        display: inline-block;
        margin-top: -2px; }

@media only screen and (max-width: 768px) {
  #sb_instagram .sbi_item {
    width: 50% !important;
    display: inline-block; }
    #sb_instagram .sbi_item .sbi_photo {
      height: 170px; } }

.site {
  position: relative;
  height: 100%;
  overflow: hidden;
  background-color: #000000;
  overflow: hidden; }

.site__inner {
  overflow-y: scroll;
  height: 100%;
  position: relative;
  background-color: #000000;
  padding-top: 85px; }
  @media only screen and (max-width: 768px) {
    .site__inner {
      padding-top: 60px; } }

body.modal-open .site__inner {
  -webkit-transform: translate3d(0, 0, -100px);
  transform: translate3d(0, 0, -100px); }

.site-content {
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff; }

section.secondary-header + .site-content {
  margin-top: 60px; }

.flex-grid {
  max-width: 1450px;
  margin: 0 auto; }

.menu-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(35, 31, 32, 0.6);
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  z-index: 40; }

body.menu-dropdown-open .menu-overlay {
  opacity: 1; }

.dealers {
  padding: 50px 20px 200px; }
  @media only screen and (max-width: 768px) {
    .dealers {
      padding: 30px 20px 20px; } }
  .dealers .dealers__inner {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto; }
    @media only screen and (max-width: 768px) {
      .dealers .dealers__inner {
        max-width: 100%;
        display: block; } }
    .dealers .dealers__inner > .flex-grid {
      margin-bottom: 70px; }
  .dealers .dealer {
    padding: 0 30px 30px 0; }
    @media only screen and (max-width: 419px) {
      .dealers .dealer {
        padding: 0 0 30px 0; } }
  .dealers .dealers__state {
    margin-bottom: 30px;
    border-top: 2px solid #0E9C48;
    padding-top: 40px; }
  .dealers .dealer__name {
    color: #212121;
    font-size: 30px;
    margin-bottom: 15px; }
  .dealers .dealer__links {
    margin-top: 10px; }
  .dealers .dealer__links a {
    display: inline-block; }
    .dealers .dealer__links a:not(:last-child) {
      margin-right: 10px; }
    .dealers .dealer__links a > .ico {
      opacity: 0.6;
      -webkit-transition: opacity 0.5s;
      transition: opacity 0.5s; }
    .dealers .dealer__links a:hover > .ico, .dealers .dealer__links a:active > .ico {
      opacity: 1; }

.dealers-search {
  text-align: center;
  padding-left: 40px;
  padding-right: 40px; }
  @media only screen and (max-width: 419px) {
    .dealers-search {
      padding-right: 20px;
      padding-left: 20px; } }
  .dealers-search > h3 {
    margin-bottom: 20px;
    text-align: center; }

.dealers-search__form {
  width: 320px;
  max-width: 100%;
  margin: 0 auto 20px; }
  .dealers-search__form label {
    font-size: 18px; }
  .dealers-search__form input {
    width: 100%;
    margin-bottom: 20px;
    height: 60px;
    font-size: 20px;
    padding: 10px 20px;
    text-align: center;
    border: 1px solid #ccc; }

.dealers-search-results {
  padding: 40px; }
  @media only screen and (max-width: 419px) {
    .dealers-search-results {
      padding: 40px 0px; } }
  .dealers-search-results .dealer-block {
    display: inline-block;
    width: 100%;
    padding: 10px 0px;
    text-align: left; }
    @media only screen and (max-width: 419px) {
      .dealers-search-results .dealer-block {
        display: block;
        width: 100%;
        margin: 10px 0px;
        background: #f6f6f6;
        padding: 10px;
        border-radius: 5px;
        line-height: 30px;
        text-align: center; } }
    .dealers-search-results .dealer-block span.ico {
      vertical-align: middle;
      margin-right: 5px; }
  .dealers-search-results > h3 {
    text-align: center; }
  .dealers-search-results .dealers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 20px; }
    .dealers-search-results .dealers li {
      display: block;
      width: 33.333%;
      margin: 0 0 60px 0; }
      @media only screen and (min-width: 420px) and (max-width: 768px) {
        .dealers-search-results .dealers li {
          width: 50%; } }
      @media only screen and (max-width: 419px) {
        .dealers-search-results .dealers li {
          width: 100%; } }
    .dealers-search-results .dealers a.dealers__location-box {
      text-decoration: none;
      color: #212121; }
      .dealers-search-results .dealers a.dealers__location-box:hover, .dealers-search-results .dealers a.dealers__location-box:focus, .dealers-search-results .dealers a.dealers__location-box:active {
        color: #0E9C48; }
    .dealers-search-results .dealers .dealers__location-box {
      width: 100px;
      height: 100px;
      padding-top: 57px;
      background: #F6F6F6;
      text-align: center;
      font-weight: 700;
      font-size: 15px;
      display: inline-block;
      margin-right: 15px;
      vertical-align: top;
      background-repeat: no-repeat;
      position: relative; }
      @media only screen and (max-width: 419px) {
        .dealers-search-results .dealers .dealers__location-box {
          width: 100%; } }
      .dealers-search-results .dealers .dealers__location-box:before {
        content: '';
        display: inline-block;
        top: 28%;
        left: 50%;
        position: absolute;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%); }
      .dealers-search-results .dealers .dealers__location-box small {
        display: block;
        margin: 0 auto;
        font-size: 60%;
        font-weight: 400; }
    .dealers-search-results .dealers .dealers__info {
      display: inline-block;
      width: calc(100% - 120px);
      font-size: 15px; }
      @media only screen and (max-width: 419px) {
        .dealers-search-results .dealers .dealers__info {
          width: 100%;
          margin-top: 20px; } }
      .dealers-search-results .dealers .dealers__info h4 {
        font-size: 15px;
        text-transform: none;
        margin-bottom: 10px;
        margin-top: 0;
        font-family: 'Roboto', sans-serif;
        font-weight: bold;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: #212121; }
      .dealers-search-results .dealers .dealers__info p {
        font-size: 15px;
        margin-bottom: 7px;
        line-height: 1.3;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .dealers-search-results .dealers .dealers__info p a {
          color: #0E9C48;
          margin-left: 10px;
          text-decoration: none;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -ms-flex-direction: row;
          flex-direction: row;
          -webkit-box-align: start;
          -ms-flex-align: start;
          align-items: flex-start;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          width: auto; }
          .dealers-search-results .dealers .dealers__info p a span {
            display: inline-block; }
          .dealers-search-results .dealers .dealers__info p a > .ico {
            opacity: 0.6;
            -webkit-transition: opacity 0.5s;
            transition: opacity 0.5s; }
          .dealers-search-results .dealers .dealers__info p a > span:not(.ico) {
            color: #000000; }
          .dealers-search-results .dealers .dealers__info p a:first-child {
            margin-left: 0; }
          @media only screen and (max-width: 419px) {
            .dealers-search-results .dealers .dealers__info p a {
              margin-left: 0;
              margin-right: 10px; } }
          .dealers-search-results .dealers .dealers__info p a:hover, .dealers-search-results .dealers .dealers__info p a:active {
            text-decoration: underline; }
            .dealers-search-results .dealers .dealers__info p a:hover > .ico, .dealers-search-results .dealers .dealers__info p a:active > .ico {
              opacity: 1; }
            .dealers-search-results .dealers .dealers__info p a:hover > span:not(.ico), .dealers-search-results .dealers .dealers__info p a:active > span:not(.ico) {
              color: #0E9C48; }

.page-template-page-dealers-location .full-width-content-row .content-block {
  width: 100%;
  padding: 30px 15px; }
  .page-template-page-dealers-location .full-width-content-row .content-block .dealer-list-item {
    background: #f4f4f4;
    border: 2px solid #000;
    padding: 40px;
    -webkit-box-shadow: 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 5px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
    margin: 5px;
    min-height: 400px; }
    .page-template-page-dealers-location .full-width-content-row .content-block .dealer-list-item h2 {
      margin-bottom: 0px !important;
      padding-bottom: 15px !important;
      font-size: 30px;
      margin-top: 10px; }
    .page-template-page-dealers-location .full-width-content-row .content-block .dealer-list-item .dealer-feature-image {
      width: 100%;
      background-size: cover !important;
      height: 250px;
      display: block; }

.page-template-page-dealers-detail h2.section-title {
  text-align: center;
  font-size: 14px !important;
  letter-spacing: 5.6px !important;
  color: #A27B3E;
  font-weight: 500;
  line-height: 20px !important;
  z-index: 9;
  position: relative;
  display: block;
  width: 100%; }

.page-template-page-dealers-detail .dealer-portal-contact-details:before {
  display: block;
  content: "";
  width: 340px;
  height: 3px;
  position: relative;
  background: #A27B3E;
  margin: 40px 0 40px 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); }

.page-template-page-dealers-detail .full-width-content-row .content-block {
  width: 100%;
  text-align: left; }
  .page-template-page-dealers-detail .full-width-content-row .content-block .dealer-form {
    padding-right: 40px; }
    @media only screen and (max-width: 419px) {
      .page-template-page-dealers-detail .full-width-content-row .content-block .dealer-form {
        padding-right: 0px; } }
  .page-template-page-dealers-detail .full-width-content-row .content-block .dealer-sidebar {
    text-align: center; }
    @media only screen and (max-width: 419px) {
      .page-template-page-dealers-detail .full-width-content-row .content-block .dealer-sidebar {
        margin-top: 40px; } }
    .page-template-page-dealers-detail .full-width-content-row .content-block .dealer-sidebar .dealer-google-map {
      height: 300px;
      overflow: hidden;
      border-radius: 3px;
      margin-bottom: 20px; }

.instagram-row .flex-grid {
  max-width: 100%; }

.instagram-row a {
  line-height: 0;
  display: block; }

.instagram-row .instagram-row__media.background-image {
  padding-bottom: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%; }

.instagram-row .instagram-row__header {
  text-align: center;
  padding: 50px 20px; }

.georedirect-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 25; }

aside.georedirect {
  z-index: 26;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 700px;
  max-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 100%;
  overflow: auto; }
  aside.georedirect .modal-panel__close-btn {
    color: white;
    top: -40px;
    right: 0; }
    @media only screen and (max-width: 419px) {
      aside.georedirect .modal-panel__close-btn {
        top: 10px;
        right: 10px;
        background: #aaa;
        padding: 20px;
        border-radius: 100%; } }
  aside.georedirect .georedirect__content {
    background: white;
    padding: 50px 50px 40px 50px;
    border-radius: 5px 5px 0 0;
    text-align: center; }
    aside.georedirect .georedirect__content .logo {
      margin-bottom: 30px;
      max-width: 250px; }
    aside.georedirect .georedirect__content h3, aside.georedirect .georedirect__content h2 {
      margin-bottom: 25px;
      font-size: 32px; }
  aside.georedirect .georedirect__footer {
    background: #F6F6F6;
    border-radius: 0 0 5px 5px;
    text-align: center;
    padding: 20px 30px; }
    aside.georedirect .georedirect__footer .flex-grid__item {
      padding: 10px 10px; }
    aside.georedirect .georedirect__footer a.btn--text, aside.georedirect .georedirect__footer a.btn--text-with-border-top {
      display: inline-block;
      border-bottom: 3px solid #D0D3D6;
      padding-bottom: 3px;
      color: #3D495A;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700 !important;
      font-style: normal;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      font-size: 18px;
      margin-top: 0;
      line-height: 22px;
      letter-spacing: -0.04em;
      text-transform: uppercase; }
      aside.georedirect .georedirect__footer a.btn--text:after, aside.georedirect .georedirect__footer a.btn--text-with-border-top:after {
        content: none; }
    aside.georedirect .georedirect__footer a.btn--action, aside.georedirect .georedirect__footer
    a.gform_next_button {
      border-radius: 3px;
      width: 100%;
      height: 64px;
      font-size: 18px;
      line-height: 64px;
      padding-top: 0; }
      aside.georedirect .georedirect__footer a.btn--action:after, aside.georedirect .georedirect__footer
      a.gform_next_button:after {
        display: inline-block; }

.hero-slider {
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  background-color: #000000;
  position: relative;
  height: 80vh; }
  .hero-slider .hero-swiper {
    height: 100%; }
  .hero-slider > figure {
    z-index: 1; }
  .hero-slider .hero__inner,
  .hero-slider .hero__text {
    color: #ffffff; }
  .hero-slider .hero__text {
    color: #ffffff;
    height: 80vh;
    position: relative;
    z-index: 10; }
    .hero-slider .hero__text:not(.wrap) {
      width: 100%; }
    .hero-slider .hero__text .btn {
      margin-top: 30px; }
    @media only screen and (max-width: 419px) {
      .hero-slider .hero__text {
        text-align: center; } }
    .hero-slider .hero__text h1, .hero-slider .hero__text h2, .hero-slider .hero__text h3, .hero-slider .hero__text h4, .hero-slider .hero__text h5, .hero-slider .hero__text h6, .hero-slider .hero__text p {
      color: #ffffff;
      text-transform: unset; }
    .hero-slider .hero__text h6 {
      font-size: 18px;
      position: relative;
      left: 50px;
      margin-bottom: 5px;
      text-transform: uppercase;
      color: #ffffff;
      font-family: 'Roboto Condensed', sans-serif;
      font-weight: normal;
      font-style: normal;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
      @media only screen and (max-width: 419px) {
        .hero-slider .hero__text h6 {
          left: auto; } }
    .hero-slider .hero__text h1 {
      margin-bottom: 15px;
      color: #ffffff;
      text-transform: unset;
      font-weight: 600 !important;
      font-size: 45px; }
    .hero-slider .hero__text p {
      position: relative;
      font-size: 14px;
      color: #ffffff; }
  .hero-slider .hero__text__wrap {
    width: 33.333%;
    max-width: 450px;
    position: absolute;
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }
    @media only screen and (min-width: 420px) and (max-width: 768px) {
      .hero-slider .hero__text__wrap {
        width: 50%; } }
    @media only screen and (max-width: 419px) {
      .hero-slider .hero__text__wrap {
        width: 100%;
        max-width: 100%; } }
    @media only screen and (max-width: 419px) {
      .hero-slider .hero__text__wrap img {
        width: 70%; }
      .hero-slider .hero__text__wrap .btn--primary {
        padding: 5px 30px 5px 30px;
        line-height: 50px; } }
    .hero-slider .hero__text__wrap.vpos--top {
      bottom: auto;
      top: 180px; }
    .hero-slider .hero__text__wrap.vpos--middle {
      bottom: auto;
      top: calc(50% + 40px);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); }
    .hero-slider .hero__text__wrap.vpos--bottom {
      bottom: 80px;
      top: auto; }
    .hero-slider .hero__text__wrap.hpos--right {
      left: auto;
      right: 0; }
      @media screen and (max-width: 1180px) {
        .hero-slider .hero__text__wrap.hpos--right {
          right: 0px; } }
    .hero-slider .hero__text__wrap.hpos--far-right {
      left: auto;
      right: 80px; }
    .hero-slider .hero__text__wrap.hpos--center {
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      right: auto;
      text-align: center; }
      .hero-slider .hero__text__wrap.hpos--center.vpos--middle {
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%); }
      .hero-slider .hero__text__wrap.hpos--center p {
        padding-right: 0;
        left: 0; }
    .hero-slider .hero__text__wrap.hpos--left {
      left: 0;
      right: auto; }
      @media screen and (max-width: 1180px) {
        .hero-slider .hero__text__wrap.hpos--left {
          left: 0px; } }
    .hero-slider .hero__text__wrap.hpos--far-left {
      left: 80px;
      right: auto; }
    .hero-slider .hero__text__wrap.hpos--right, .hero-slider .hero__text__wrap.hpos--left, .hero-slider .hero__text__wrap.hpos--center, .hero-slider .hero__text__wrap.vpos--top, .hero-slider .hero__text__wrap.vpos--middle, .hero-slider .hero__text__wrap.vpos--bottom, .hero-slider .hero__text__wrap.hpos--right, .hero-slider .hero__text__wrap.hpos--far-right, .hero-slider .hero__text__wrap.hpos--far-left {
      width: 50%; }
      @media only screen and (min-width: 420px) and (max-width: 768px) {
        .hero-slider .hero__text__wrap.hpos--right, .hero-slider .hero__text__wrap.hpos--left, .hero-slider .hero__text__wrap.hpos--center, .hero-slider .hero__text__wrap.vpos--top, .hero-slider .hero__text__wrap.vpos--middle, .hero-slider .hero__text__wrap.vpos--bottom, .hero-slider .hero__text__wrap.hpos--right, .hero-slider .hero__text__wrap.hpos--far-right, .hero-slider .hero__text__wrap.hpos--far-left {
          width: 75%; } }
      @media only screen and (max-width: 419px) {
        .hero-slider .hero__text__wrap.hpos--right, .hero-slider .hero__text__wrap.hpos--left, .hero-slider .hero__text__wrap.hpos--center, .hero-slider .hero__text__wrap.vpos--top, .hero-slider .hero__text__wrap.vpos--middle, .hero-slider .hero__text__wrap.vpos--bottom, .hero-slider .hero__text__wrap.hpos--right, .hero-slider .hero__text__wrap.hpos--far-right, .hero-slider .hero__text__wrap.hpos--far-left {
          top: 50px !important;
          bottom: unset !important;
          position: absolute;
          left: 50% !important;
          -webkit-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
          width: 100%; } }
  .hero-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px; }
  .hero-slider .swiper-slide {
    background: #000000; }
    .hero-slider .swiper-slide img.loaded {
      position: absolute;
      -o-object-fit: cover;
      object-fit: cover;
      height: 100%;
      width: 100%; }
    .hero-slider .swiper-slide .lazy-media__image,
    .hero-slider .swiper-slide .lazy-media__fallback {
      opacity: 1; }
  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-container-rtl .swiper-button-next {
    background-image: url(../svg/icon-slider-right.svg);
    background-size: contain;
    outline: none;
    left: 0px; }
  .hero-slider .swiper-button-next,
  .hero-slider .swiper-container-rtl .swiper-button-prev {
    background-image: url(../svg/icon-slider-left.svg);
    background-size: contain;
    outline: none;
    right: 0px; }
  .hero-slider .swiper-pagination-fraction,
  .hero-slider .swiper-pagination-custom,
  .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 120px; }
    @media only screen and (max-width: 768px) {
      .hero-slider .swiper-pagination-fraction,
      .hero-slider .swiper-pagination-custom,
      .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
        bottom: 50px; } }
  .hero-slider .swiper-pagination-bullet {
    opacity: 1;
    background: #0E9C48;
    -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0); }
  .hero-slider .swiper-pagination-bullet-active {
    background: transparent;
    -webkit-box-shadow: 0 0 0 2px #fff;
    box-shadow: 0 0 0 2px #fff; }
  .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 7px;
    top: 16px;
    position: relative; }
  @media only screen and (max-width: 419px) {
    .hero-slider .hero__inner:after {
      content: "";
      pointer-events: none;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      z-index: 2; }
    .hero-slider .hero__text__wrap {
      max-width: 100%;
      top: 198px !important;
      bottom: unset !important; }
    .hero-slider .hero__text h1 {
      font-size: 50px; } }

@media only screen and (max-width: 419px) {
  .hero-slider {
    height: 80vh; }
    .hero-slider .hero__text {
      height: 100%;
      z-index: 99;
      position: absolute; }
  body.home .hero-slider .lazy-media.lazy-media.lazy-media--bg {
    max-height: 100%; }
  body.single-model .hero-slider .lazy-media .lazy-media__image,
  body.single-model .hero-slider .lazy-media .lazy-media__placeholder {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: 0 100%;
    object-position: 0 100%; } }

.post-type-archive-offers .site,
.post-type-archive-offers .site__inner,
.post-type-archive-offers .share-line__buttons,
.post-type-archive-offers .site-content {
  background-color: #2a2a2a; }

.post-type-archive-offers .page-intro, .post-type-archive-offers nav.next-article {
  padding: 150px 20px 0px;
  background: none; }
  @media only screen and (max-width: 768px) {
    .post-type-archive-offers .page-intro, .post-type-archive-offers nav.next-article {
      padding: 110px 0px 0px; } }
  .post-type-archive-offers .page-intro h1, .post-type-archive-offers nav.next-article h1 {
    color: #0E9C48; }
  .post-type-archive-offers .page-intro h2, .post-type-archive-offers nav.next-article h2 {
    color: #ffffff; }
    @media only screen and (max-width: 768px) {
      .post-type-archive-offers .page-intro h2, .post-type-archive-offers nav.next-article h2 {
        color: #ffffff;
        font-size: 30px;
        margin-top: 10px; } }
  .post-type-archive-offers .page-intro .page-intro__inner .share-line:before, .post-type-archive-offers nav.next-article .page-intro__inner .share-line:before {
    display: none; }
  @media only screen and (max-width: 768px) {
    .post-type-archive-offers .page-intro .page-intro__inner .share-line, .post-type-archive-offers nav.next-article .page-intro__inner .share-line {
      margin: 30px auto 0px; } }
  .post-type-archive-offers .page-intro .page-intro__inner .share-line__buttons, .post-type-archive-offers nav.next-article .page-intro__inner .share-line__buttons {
    background: #2a2a2a; }
    .post-type-archive-offers .page-intro .page-intro__inner .share-line__buttons .share-button, .post-type-archive-offers nav.next-article .page-intro__inner .share-line__buttons .share-button {
      background: #141414; }

.post-type-archive-offers section.post-columns {
  padding: 0px 50px 50px; }
  @media only screen and (max-width: 768px) {
    .post-type-archive-offers section.post-columns {
      padding: 0px; } }
  .post-type-archive-offers section.post-columns .offers-empty {
    background: rgba(0, 0, 0, 0.29);
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    padding: 70px;
    text-align: center;
    color: white;
    border-radius: 4px; }
    @media only screen and (max-width: 768px) {
      .post-type-archive-offers section.post-columns .offers-empty {
        margin-top: 40px;
        margin-bottom: 40px;
        max-width: 90%;
        padding: 50px 30px; } }
    .post-type-archive-offers section.post-columns .offers-empty h2 {
      color: white;
      margin-bottom: 20px;
      text-transform: none;
      font-size: 20px; }
  .post-type-archive-offers section.post-columns .article__teaser {
    background: white;
    padding: 0px;
    margin: 20px 20px;
    width: calc(33.3333% - 40px);
    -webkit-box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.02), 0 6.7px 5.3px rgba(0, 0, 0, 0.028), 0 12.5px 10px rgba(0, 0, 0, 0.035), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.05), 0 100px 80px rgba(0, 0, 0, 0.07);
    box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.02), 0 6.7px 5.3px rgba(0, 0, 0, 0.028), 0 12.5px 10px rgba(0, 0, 0, 0.035), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.05), 0 100px 80px rgba(0, 0, 0, 0.07); }
    @media only screen and (max-width: 419px) {
      .post-type-archive-offers section.post-columns .article__teaser {
        width: 100%;
        margin: 20px; } }
    @media only screen and (min-width: 420px) and (max-width: 768px) {
      .post-type-archive-offers section.post-columns .article__teaser {
        width: calc(50% - 20px);
        margin: 10px; } }
    .post-type-archive-offers section.post-columns .article__teaser .article__teaser__img {
      height: auto; }
    .post-type-archive-offers section.post-columns .article__teaser .offers-content {
      padding: 0px 30px 30px; }
      @media only screen and (max-width: 768px) {
        .post-type-archive-offers section.post-columns .article__teaser .offers-content {
          padding: 0px 30px 30px; } }
    .post-type-archive-offers section.post-columns .article__teaser .offer-message {
      background: #a27c3e;
      font-weight: 500;
      padding: 10px 20px;
      color: white;
      text-transform: uppercase;
      letter-spacing: 2px;
      position: relative;
      top: 0px;
      left: 0px;
      z-index: 9; }

.single-offers .site__inner {
  background: white; }
  .single-offers .site__inner header.site-banner ul.secondary-nav li a p {
    color: white; }

.single-offers .site-content {
  margin-top: 120px !important; }
  @media only screen and (max-width: 768px) {
    .single-offers .site-content {
      margin-top: 90px !important; } }
  .single-offers .site-content .page-intro, .single-offers .site-content nav.next-article {
    padding: 30px 20px 20px; }
    @media only screen and (max-width: 768px) {
      .single-offers .site-content .page-intro, .single-offers .site-content nav.next-article {
        padding: 0px 20px 20px; } }
    .single-offers .site-content .page-intro h1, .single-offers .site-content nav.next-article h1 {
      margin-top: 60px;
      font-size: 30px; }
  .single-offers .site-content .post-columns {
    padding: 50px 150px 50px; }
    @media only screen and (max-width: 768px) {
      .single-offers .site-content .post-columns {
        padding: 0px 20px 0px; } }
  .single-offers .site-content .offers-content {
    padding: 0px 40px; }
    @media only screen and (max-width: 768px) {
      .single-offers .site-content .offers-content {
        padding: 0px; } }
    .single-offers .site-content .offers-content .offer-ends {
      background: #eee;
      width: auto;
      border-radius: 3px;
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 4.67px;
      font-size: 14px;
      margin: 0px 0px 20px;
      padding: 5px 15px;
      display: inline-block; }
    .single-offers .site-content .offers-content .offer-terms {
      font-size: 12px;
      line-height: 20px;
      margin-top: 20px; }
    .single-offers .site-content .offers-content h2 {
      margin-bottom: 20px;
      font-size: 25px; }
    .single-offers .site-content .offers-content ul {
      margin: 20px 10px 20px; }
      .single-offers .site-content .offers-content ul li {
        line-height: 30px;
        font-size: 17px;
        position: relative;
        padding-left: 10px; }
        .single-offers .site-content .offers-content ul li:before {
          position: absolute;
          left: -10px;
          top: 11px; }
  @media only screen and (max-width: 768px) {
    .single-offers .site-content .offers-sidebar {
      padding: 20px 0px; } }
  .single-offers .site-content .offers-sidebar .text--center {
    display: block; }
  .single-offers .site-content .offers-sidebar .btn {
    width: 100%;
    margin-bottom: 20px; }
  .single-offers .site-content .offers-sidebar .btn--inline {
    color: black;
    border: 2px solid #000000; }

section.model-promo {
  padding: 80px 106px;
  background: #f6f6f6; }
  @media only screen and (max-width: 768px) {
    section.model-promo {
      padding: 20px; } }
  section.model-promo .badge {
    background: #f2efea;
    width: auto;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px 20px;
    border-radius: 50px;
    display: inline-block; }
    section.model-promo .badge.model-name {
      background: black;
      color: white; }
  section.model-promo .model-promo-row__content {
    border: 2px solid #000;
    padding: 50px;
    border-radius: 4px;
    -webkit-box-shadow: 5px 10px 0 0 rgba(0, 0, 0, 0.1);
    box-shadow: 5px 10px 0 0 rgba(0, 0, 0, 0.1);
    background: white;
    width: 100%;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden; }
    @media only screen and (max-width: 768px) {
      section.model-promo .model-promo-row__content {
        padding: 30px; } }
    section.model-promo .model-promo-row__content .text--center {
      display: inline-block;
      font-weight: 500;
      margin-left: 10px;
      vertical-align: middle;
      padding: 10px 40px;
      border-radius: 5px; }
    section.model-promo .model-promo-row__content p {
      font-size: 16px;
      line-height: 22px;
      margin-bottom: 20px; }
    section.model-promo .model-promo-row__content h1, section.model-promo .model-promo-row__content h2, section.model-promo .model-promo-row__content h3, section.model-promo .model-promo-row__content h4, section.model-promo .model-promo-row__content h5, section.model-promo .model-promo-row__content h6 {
      font-size: 30px;
      color: black;
      margin: 20px 0 10px 0; }
    section.model-promo .model-promo-row__content .btn {
      width: 50%; }
      @media only screen and (max-width: 768px) {
        section.model-promo .model-promo-row__content .btn {
          width: 100%; } }
    section.model-promo .model-promo-row__content h3.price {
      position: absolute;
      top: 10px;
      right: 10px;
      background: black;
      margin: 0;
      padding: 5px 15px;
      text-align: center;
      border-radius: 100px;
      color: white;
      font-size: 25px;
      display: block; }
      @media only screen and (max-width: 768px) {
        section.model-promo .model-promo-row__content h3.price {
          position: relative;
          top: unset;
          right: unset;
          margin: 10px; } }
  section.model-promo .model-promo-row__media {
    background: #f6f6f6;
    margin-left: 20px;
    border-radius: 5px;
    position: relative;
    overflow: hidden; }
    @media only screen and (max-width: 768px) {
      section.model-promo .model-promo-row__media {
        margin-left: unset; } }
    section.model-promo .model-promo-row__media img {
      max-height: 400px;
      margin: 0 auto;
      display: block;
      mix-blend-mode: multiply; }
  section.model-promo .list-bikes {
    margin-top: 20px; }
    section.model-promo .list-bikes .bike-box {
      border: 2px solid #000;
      padding: 10px;
      border-radius: 4px;
      -webkit-box-shadow: 5px 10px 0 0 rgba(0, 0, 0, 0.1);
      box-shadow: 5px 10px 0 0 rgba(0, 0, 0, 0.1);
      background: #fff;
      width: calc(25% - 23px);
      display: inline-block;
      margin-right: 20px;
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      section.model-promo .list-bikes .bike-box:hover {
        background: #f2efea; }
      @media only screen and (max-width: 768px) {
        section.model-promo .list-bikes .bike-box {
          width: calc(50% - 12px);
          margin-bottom: 20px;
          vertical-align: top;
          height: 220px;
          margin-right: 10px; } }
      section.model-promo .list-bikes .bike-box .bike-box-link {
        text-decoration: none; }
        section.model-promo .list-bikes .bike-box .bike-box-link h4 {
          font-size: 12px;
          text-align: center;
          background: #f2efea;
          width: 100%;
          padding: 10px 10px;
          border-radius: 100px; }
        section.model-promo .list-bikes .bike-box .bike-box-link img {
          margin: 0 auto;
          display: block;
          max-height: 150px; }

.generator-outer-wrapper {
  width: 80%;
  margin: 0 auto;
  text-align: left;
  padding: 30px; }
  .generator-outer-wrapper p {
    text-align: left !important;
    max-width: unset !important;
    margin-left: unset !important; }
  .generator-outer-wrapper h1 {
    text-align: left;
    max-width: unset !important;
    margin-left: unset !important;
    font-size: 40px;
    text-transform: none;
    width: 70%;
    margin-bottom: 5px; }
  .generator-outer-wrapper .generator-wrapper {
    border: 1px solid #dbdbdb;
    background: #ececec;
    padding: 30px;
    margin: 30px 0; }
    .generator-outer-wrapper .generator-wrapper .generator-inner-wrapper .btn {
      margin-top: 20px;
      border-radius: 5px;
      line-height: 0;
      padding: 0 40px; }
    .generator-outer-wrapper .generator-wrapper .generator-inner-wrapper h3 {
      font-size: 20px;
      text-transform: none;
      margin-bottom: 13px; }
    .generator-outer-wrapper .generator-wrapper .generator-inner-wrapper select {
      width: 100%;
      margin-bottom: 30px;
      max-width: 500px; }
    .generator-outer-wrapper .generator-wrapper .generator-inner-wrapper .generator-code {
      background: white;
      border: 1px solid #dbdbdb;
      padding: 40px;
      font-size: 12px; }
      .generator-outer-wrapper .generator-wrapper .generator-inner-wrapper .generator-code pre {
        white-space: normal; }
        .generator-outer-wrapper .generator-wrapper .generator-inner-wrapper .generator-code pre code {
          white-space: normal; }
  .generator-outer-wrapper .preview {
    margin-top: 30px; }
    .generator-outer-wrapper .preview iframe {
      border: 1px solid #dbdbdb;
      -webkit-box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.02), 0 6.7px 5.3px rgba(0, 0, 0, 0.028), 0 12.5px 10px rgba(0, 0, 0, 0.035), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.05), 0 100px 80px rgba(0, 0, 0, 0.07);
      box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.02), 0 6.7px 5.3px rgba(0, 0, 0, 0.028), 0 12.5px 10px rgba(0, 0, 0, 0.035), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.05), 0 100px 80px rgba(0, 0, 0, 0.07); }

.iframe, .iframe body {
  height: unset;
  min-height: unset;
  overflow: unset; }

.iframe body {
  background: #e1e1e1;
  margin: 0px;
  padding: 0px; }

.iframe .site-footer h2 {
  color: white;
  font-size: 20px;
  letter-spacing: 5px; }

.iframe .site,
.iframe .site__inner {
  background: transparent;
  padding-top: 0; }
  .iframe .site .site-content,
  .iframe .site__inner .site-content {
    background: #fff;
    max-width: 1180px;
    margin: 0 auto;
    margin-top: 60px;
    border-radius: 5px;
    overflow: hidden; }
    @media only screen and (max-width: 768px) {
      .iframe .site .site-content,
      .iframe .site__inner .site-content {
        border-radius: 0;
        margin-top: 0; } }
    .iframe .site .site-content .logo-container,
    .iframe .site__inner .site-content .logo-container {
      display: block;
      position: relative; }
      .iframe .site .site-content .logo-container .brand,
      .iframe .site__inner .site-content .logo-container .brand {
        margin: 0 auto;
        width: 100%;
        display: block;
        text-align: center;
        position: relative;
        height: 110px; }
        .iframe .site .site-content .logo-container .brand img,
        .iframe .site__inner .site-content .logo-container .brand img {
          width: auto;
          -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
          position: absolute;
          top: 50%;
          left: 50px;
          max-height: 90px;
          max-width: 200px; }
          @media only screen and (max-width: 768px) {
            .iframe .site .site-content .logo-container .brand img,
            .iframe .site__inner .site-content .logo-container .brand img {
              -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
              left: 50%; } }
      .iframe .site .site-content .logo-container .back,
      .iframe .site__inner .site-content .logo-container .back {
        background: #ccc;
        color: white;
        font-size: 14px;
        letter-spacing: 2px;
        font-weight: 500;
        text-transform: uppercase;
        padding: 15px 25px 15px 40px;
        border-radius: 5px;
        text-decoration: none;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
        @media only screen and (max-width: 419px) {
          .iframe .site .site-content .logo-container .back,
          .iframe .site__inner .site-content .logo-container .back {
            background: unset;
            padding: unset;
            color: black;
            letter-spacing: unset;
            font-size: 14px;
            text-transform: unset;
            font-weight: 500;
            border-radius: unset; } }
        .iframe .site .site-content .logo-container .back:hover,
        .iframe .site__inner .site-content .logo-container .back:hover {
          background: #0E9C48;
          color: white !important; }
        .iframe .site .site-content .logo-container .back.btn--action:after, .iframe .site .site-content .logo-container form input.back[type="submit"]:after, form .iframe .site .site-content .logo-container input.back[type="submit"]:after, .iframe .site .site-content .logo-container
        .gform_footer button.back[type="submit"]:after,
        .gform_footer .iframe .site .site-content .logo-container button.back[type="submit"]:after, .iframe .site .site-content .logo-container
        .back.gform_next_button:after,
        .iframe .site__inner .site-content .logo-container .back.btn--action:after,
        .iframe .site__inner .site-content .logo-container form input.back[type="submit"]:after, form
        .iframe .site__inner .site-content .logo-container input.back[type="submit"]:after,
        .iframe .site__inner .site-content .logo-container
        .gform_footer button.back[type="submit"]:after,
        .gform_footer
        .iframe .site__inner .site-content .logo-container button.back[type="submit"]:after,
        .iframe .site__inner .site-content .logo-container
        .back.gform_next_button:after {
          -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
          position: absolute;
          top: 18px;
          left: 20px; }
      .iframe .site .site-content .logo-container nav,
      .iframe .site__inner .site-content .logo-container nav {
        position: absolute;
        right: 20px;
        top: 30px; }
        @media only screen and (max-width: 768px) {
          .iframe .site .site-content .logo-container nav,
          .iframe .site__inner .site-content .logo-container nav {
            position: relative;
            right: unset;
            top: unset;
            display: block;
            width: 100%;
            border-top: 1px solid #d8d8d8;
            padding: 20px 0px;
            text-align: center; } }
        .iframe .site .site-content .logo-container nav ul li,
        .iframe .site__inner .site-content .logo-container nav ul li {
          list-style: none;
          display: inline-block;
          margin: 0 20px; }
          .iframe .site .site-content .logo-container nav ul li:before,
          .iframe .site__inner .site-content .logo-container nav ul li:before {
            display: none !important; }
          .iframe .site .site-content .logo-container nav ul li .btn--primary,
          .iframe .site__inner .site-content .logo-container nav ul li .btn--primary {
            color: white !important;
            height: unset;
            font-family: system-ui !important;
            padding: 10px 20px;
            text-transform: unset;
            border-radius: 5px;
            letter-spacing: unset !important; }
            @media only screen and (max-width: 768px) {
              .iframe .site .site-content .logo-container nav ul li .btn--primary,
              .iframe .site__inner .site-content .logo-container nav ul li .btn--primary {
                display: none; } }
          .iframe .site .site-content .logo-container nav ul li a,
          .iframe .site__inner .site-content .logo-container nav ul li a {
            font-size: 14px;
            color: #000;
            text-decoration: none;
            font-weight: 500;
            font-family: system-ui; }
            .iframe .site .site-content .logo-container nav ul li a:hover,
            .iframe .site__inner .site-content .logo-container nav ul li a:hover {
              color: #0E9C48; }
    .iframe .site .site-content .page section.hero-slider .hero__text__wrap,
    .iframe .site__inner .site-content .page section.hero-slider .hero__text__wrap {
      width: 400px;
      padding: 50px;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); }
      @media only screen and (max-width: 419px) {
        .iframe .site .site-content .page section.hero-slider .hero__text__wrap,
        .iframe .site__inner .site-content .page section.hero-slider .hero__text__wrap {
          width: 100% !important;
          top: 110px !important;
          margin: 0 auto !important;
          display: block;
          padding: 40px;
          text-align: center !important;
          -webkit-transform: unset;
          transform: unset; } }
      .iframe .site .site-content .page section.hero-slider .hero__text__wrap h2, .iframe .site .site-content .page section.hero-slider .hero__text__wrap h3, .iframe .site .site-content .page section.hero-slider .hero__text__wrap h1, .iframe .site .site-content .page section.hero-slider .hero__text__wrap h4, .iframe .site .site-content .page section.hero-slider .hero__text__wrap p,
      .iframe .site__inner .site-content .page section.hero-slider .hero__text__wrap h2,
      .iframe .site__inner .site-content .page section.hero-slider .hero__text__wrap h3,
      .iframe .site__inner .site-content .page section.hero-slider .hero__text__wrap h1,
      .iframe .site__inner .site-content .page section.hero-slider .hero__text__wrap h4,
      .iframe .site__inner .site-content .page section.hero-slider .hero__text__wrap p {
        color: white; }
      .iframe .site .site-content .page section.hero-slider .hero__text__wrap .btn--primary,
      .iframe .site__inner .site-content .page section.hero-slider .hero__text__wrap .btn--primary {
        display: none; }
    .iframe .site .site-content .page section.product-hero,
    .iframe .site__inner .site-content .page section.product-hero {
      margin: 0; }
      .iframe .site .site-content .page section.product-hero h3,
      .iframe .site__inner .site-content .page section.product-hero h3 {
        font-size: 30px;
        padding-bottom: 10px;
        letter-spacing: 5px;
        font-weight: 400 !important; }
      .iframe .site .site-content .page section.product-hero h4,
      .iframe .site__inner .site-content .page section.product-hero h4 {
        font-size: 20px;
        color: #aaa; }
      .iframe .site .site-content .page section.product-hero .btn,
      .iframe .site__inner .site-content .page section.product-hero .btn {
        margin-top: 20px; }
      .iframe .site .site-content .page section.product-hero .swiper-button-prev.swiper-button--hero,
      .iframe .site .site-content .page section.product-hero .swiper-button-next.swiper-button--hero,
      .iframe .site__inner .site-content .page section.product-hero .swiper-button-prev.swiper-button--hero,
      .iframe .site__inner .site-content .page section.product-hero .swiper-button-next.swiper-button--hero {
        top: 40%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%); }
    @media only screen and (max-width: 768px) {
      .iframe .site .site-content .page section.hero.hero--small,
      .iframe .site__inner .site-content .page section.hero.hero--small {
        height: 170px;
        margin-bottom: 0px; } }
    .iframe .site .site-content .page section.hero-slider,
    .iframe .site__inner .site-content .page section.hero-slider {
      height: 500px;
      max-height: 100%;
      margin-top: 0; }
      .iframe .site .site-content .page section.hero-slider:after,
      .iframe .site__inner .site-content .page section.hero-slider:after {
        display: none; }
      @media only screen and (min-width: 420px) and (max-width: 768px) {
        .iframe .site .site-content .page section.hero-slider,
        .iframe .site__inner .site-content .page section.hero-slider {
          height: 400px; } }
      @media only screen and (max-width: 419px) {
        .iframe .site .site-content .page section.hero-slider .swiper-slide img.loaded,
        .iframe .site__inner .site-content .page section.hero-slider .swiper-slide img.loaded {
          opacity: 0.7; } }
      .iframe .site .site-content .page section.hero-slider .swiper-slide:before,
      .iframe .site__inner .site-content .page section.hero-slider .swiper-slide:before {
        display: none; }
      .iframe .site .site-content .page section.hero-slider .swiper-slide .hero__text,
      .iframe .site__inner .site-content .page section.hero-slider .swiper-slide .hero__text {
        height: 500px;
        max-height: 100%; }
        @media only screen and (min-width: 420px) and (max-width: 768px) {
          .iframe .site .site-content .page section.hero-slider .swiper-slide .hero__text,
          .iframe .site__inner .site-content .page section.hero-slider .swiper-slide .hero__text {
            height: 400px; } }
    .iframe .site .site-content .page section.iframe-models-grid,
    .iframe .site__inner .site-content .page section.iframe-models-grid {
      margin: 20px; }
      @media only screen and (max-width: 768px) {
        .iframe .site .site-content .page section.iframe-models-grid,
        .iframe .site__inner .site-content .page section.iframe-models-grid {
          margin: 0; } }
      .iframe .site .site-content .page section.iframe-models-grid .range-title,
      .iframe .site__inner .site-content .page section.iframe-models-grid .range-title {
        font-size: 20px;
        letter-spacing: 5px;
        font-weight: 500;
        color: #333333;
        line-height: 30px;
        margin: 20px 0px 0px 10px;
        text-align: left; }
      .iframe .site .site-content .page section.iframe-models-grid .range-group,
      .iframe .site__inner .site-content .page section.iframe-models-grid .range-group {
        margin-bottom: 20px; }
      .iframe .site .site-content .page section.iframe-models-grid a.product-row__content-card,
      .iframe .site__inner .site-content .page section.iframe-models-grid a.product-row__content-card {
        height: auto;
        background: #F5F5F5;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        display: block;
        position: relative;
        margin: 10px;
        text-decoration: none;
        padding-bottom: 10px;
        min-height: 480px; }
        @media only screen and (max-width: 768px) {
          .iframe .site .site-content .page section.iframe-models-grid a.product-row__content-card,
          .iframe .site__inner .site-content .page section.iframe-models-grid a.product-row__content-card {
            height: auto;
            padding-bottom: 10px;
            min-height: unset; } }
        .iframe .site .site-content .page section.iframe-models-grid a.product-row__content-card:hover,
        .iframe .site__inner .site-content .page section.iframe-models-grid a.product-row__content-card:hover {
          background: #0E9C48; }
          .iframe .site .site-content .page section.iframe-models-grid a.product-row__content-card:hover h2, .iframe .site .site-content .page section.iframe-models-grid a.product-row__content-card:hover h3, .iframe .site .site-content .page section.iframe-models-grid a.product-row__content-card:hover p,
          .iframe .site__inner .site-content .page section.iframe-models-grid a.product-row__content-card:hover h2,
          .iframe .site__inner .site-content .page section.iframe-models-grid a.product-row__content-card:hover h3,
          .iframe .site__inner .site-content .page section.iframe-models-grid a.product-row__content-card:hover p {
            color: #ffffff !important; }
        .iframe .site .site-content .page section.iframe-models-grid a.product-row__content-card .elasgo-icon,
        .iframe .site__inner .site-content .page section.iframe-models-grid a.product-row__content-card .elasgo-icon {
          position: absolute;
          bottom: 40px;
          right: 40px; }
        .iframe .site .site-content .page section.iframe-models-grid a.product-row__content-card .title_content,
        .iframe .site__inner .site-content .page section.iframe-models-grid a.product-row__content-card .title_content {
          position: relative;
          display: block;
          margin: 30px; }
          .iframe .site .site-content .page section.iframe-models-grid a.product-row__content-card .title_content h2,
          .iframe .site__inner .site-content .page section.iframe-models-grid a.product-row__content-card .title_content h2 {
            font-weight: 400;
            font-size: 27px;
            color: #161617;
            letter-spacing: 2px;
            line-height: 22px;
            margin: 0;
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out; }
          .iframe .site .site-content .page section.iframe-models-grid a.product-row__content-card .title_content h3,
          .iframe .site__inner .site-content .page section.iframe-models-grid a.product-row__content-card .title_content h3 {
            margin: 0 0 10px;
            font-size: 12px;
            letter-spacing: 2px;
            color: #161617;
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out; }
          .iframe .site .site-content .page section.iframe-models-grid a.product-row__content-card .title_content p,
          .iframe .site__inner .site-content .page section.iframe-models-grid a.product-row__content-card .title_content p {
            opacity: 0.8;
            font-weight: 400;
            font-size: 13px;
            color: #161617;
            letter-spacing: 2px;
            line-height: 30px;
            text-transform: uppercase;
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out; }
        .iframe .site .site-content .page section.iframe-models-grid a.product-row__content-card .product-row__image,
        .iframe .site__inner .site-content .page section.iframe-models-grid a.product-row__content-card .product-row__image {
          display: block;
          width: 100%;
          margin: 0 auto; }
      .iframe .site .site-content .page section.iframe-models-grid .iframe-models-item,
      .iframe .site__inner .site-content .page section.iframe-models-grid .iframe-models-item {
        background: #F6F6F6;
        margin: 5px;
        width: calc(25% - 10px); }
        @media only screen and (max-width: 419px) {
          .iframe .site .site-content .page section.iframe-models-grid .iframe-models-item,
          .iframe .site__inner .site-content .page section.iframe-models-grid .iframe-models-item {
            width: 100%; } }
        @media only screen and (min-width: 420px) and (max-width: 768px) {
          .iframe .site .site-content .page section.iframe-models-grid .iframe-models-item,
          .iframe .site__inner .site-content .page section.iframe-models-grid .iframe-models-item {
            width: calc(50% - 10px); } }
        .iframe .site .site-content .page section.iframe-models-grid .iframe-models-item a,
        .iframe .site__inner .site-content .page section.iframe-models-grid .iframe-models-item a {
          text-decoration: none; }
          .iframe .site .site-content .page section.iframe-models-grid .iframe-models-item a img,
          .iframe .site__inner .site-content .page section.iframe-models-grid .iframe-models-item a img {
            -webkit-transform: scale(1);
            transform: scale(1);
            -webkit-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
            padding: 0px 20px;
            margin-top: -20px; }
            .iframe .site .site-content .page section.iframe-models-grid .iframe-models-item a img:hover,
            .iframe .site__inner .site-content .page section.iframe-models-grid .iframe-models-item a img:hover {
              -webkit-transform: scale(1.1);
              transform: scale(1.1); }
          .iframe .site .site-content .page section.iframe-models-grid .iframe-models-item a .iframe-models-item-content,
          .iframe .site__inner .site-content .page section.iframe-models-grid .iframe-models-item a .iframe-models-item-content {
            padding: 0px 40px 40px; }
            .iframe .site .site-content .page section.iframe-models-grid .iframe-models-item a .iframe-models-item-content .iframe-models-item-price,
            .iframe .site__inner .site-content .page section.iframe-models-grid .iframe-models-item a .iframe-models-item-content .iframe-models-item-price {
              font-size: 28px;
              letter-spacing: 4px;
              color: #231F20; }
            .iframe .site .site-content .page section.iframe-models-grid .iframe-models-item a .iframe-models-item-content h2,
            .iframe .site__inner .site-content .page section.iframe-models-grid .iframe-models-item a .iframe-models-item-content h2 {
              font-size: 14px;
              letter-spacing: 3.73px;
              font-weight: 500;
              color: #72777B;
              line-height: 30px;
              margin-bottom: 10px;
              text-align: left; }
              .iframe .site .site-content .page section.iframe-models-grid .iframe-models-item a .iframe-models-item-content h2:nth-child(2),
              .iframe .site__inner .site-content .page section.iframe-models-grid .iframe-models-item a .iframe-models-item-content h2:nth-child(2) {
                margin-bottom: 0px;
                font-size: 12px; }
              .iframe .site .site-content .page section.iframe-models-grid .iframe-models-item a .iframe-models-item-content h2 .variant,
              .iframe .site__inner .site-content .page section.iframe-models-grid .iframe-models-item a .iframe-models-item-content h2 .variant {
                font-size: 22px;
                letter-spacing: 2px;
                color: #A27B3E; }
    @media only screen and (max-width: 768px) {
      .iframe .site .site-content .page section.gallery-slider,
      .iframe .site__inner .site-content .page section.gallery-slider {
        margin-bottom: 50px;
        margin-top: -30px; } }
    .iframe .site .site-content .page section.gallery-slider .swiper-button-next,
    .iframe .site__inner .site-content .page section.gallery-slider .swiper-button-next {
      right: 11vw; }
    .iframe .site .site-content .page section.gallery-slider .swiper-button-prev,
    .iframe .site__inner .site-content .page section.gallery-slider .swiper-button-prev {
      left: 11vw; }
    .iframe .site .site-content .page section.gallery-slider .swiper-pagination,
    .iframe .site__inner .site-content .page section.gallery-slider .swiper-pagination {
      width: 100%;
      margin: 0 auto;
      margin-top: 20px; }
      .iframe .site .site-content .page section.gallery-slider .swiper-pagination .swiper-pagination-bullet,
      .iframe .site__inner .site-content .page section.gallery-slider .swiper-pagination .swiper-pagination-bullet {
        cursor: pointer;
        margin-right: 10px;
        border: 3px solid #c1c1c1;
        background: none;
        opacity: 1;
        padding: 3px; }
      .iframe .site .site-content .page section.gallery-slider .swiper-pagination .swiper-pagination-bullet-active,
      .iframe .site__inner .site-content .page section.gallery-slider .swiper-pagination .swiper-pagination-bullet-active {
        cursor: pointer;
        margin-right: 10px;
        border: none;
        border: 3px solid #0E9C48;
        background: #0E9C48;
        opacity: 1;
        padding: 3px; }
    .iframe .site .site-content .page section.gallery-slider .gallery-slider-wrapper,
    .iframe .site__inner .site-content .page section.gallery-slider .gallery-slider-wrapper {
      height: 600px;
      width: 100%;
      max-width: 935px;
      margin: 0 auto;
      border-radius: 5px;
      background: white;
      z-index: 9;
      overflow: hidden;
      position: relative;
      -webkit-box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.02), 0 6.7px 5.3px rgba(0, 0, 0, 0.028), 0 12.5px 10px rgba(0, 0, 0, 0.035), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.05), 0 100px 80px rgba(0, 0, 0, 0.07);
      box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.02), 0 6.7px 5.3px rgba(0, 0, 0, 0.028), 0 12.5px 10px rgba(0, 0, 0, 0.035), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.05), 0 100px 80px rgba(0, 0, 0, 0.07); }
      @media only screen and (min-width: 420px) and (max-width: 768px) {
        .iframe .site .site-content .page section.gallery-slider .gallery-slider-wrapper,
        .iframe .site__inner .site-content .page section.gallery-slider .gallery-slider-wrapper {
          width: 92%;
          height: 500px; } }
      @media only screen and (max-width: 419px) {
        .iframe .site .site-content .page section.gallery-slider .gallery-slider-wrapper,
        .iframe .site__inner .site-content .page section.gallery-slider .gallery-slider-wrapper {
          width: 92%;
          height: 250px; } }
      .iframe .site .site-content .page section.gallery-slider .gallery-slider-wrapper .swiper-container,
      .iframe .site__inner .site-content .page section.gallery-slider .gallery-slider-wrapper .swiper-container {
        width: 100%;
        height: 100%; }
      .iframe .site .site-content .page section.gallery-slider .gallery-slider-wrapper .swiper-slide,
      .iframe .site__inner .site-content .page section.gallery-slider .gallery-slider-wrapper .swiper-slide {
        width: 100%; }
        .iframe .site .site-content .page section.gallery-slider .gallery-slider-wrapper .swiper-slide a,
        .iframe .site__inner .site-content .page section.gallery-slider .gallery-slider-wrapper .swiper-slide a {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          display: block;
          opacity: 1;
          -webkit-transition: all 0.4s ease-in-out;
          transition: all 0.4s ease-in-out; }
          .iframe .site .site-content .page section.gallery-slider .gallery-slider-wrapper .swiper-slide a img,
          .iframe .site__inner .site-content .page section.gallery-slider .gallery-slider-wrapper .swiper-slide a img {
            -o-object-fit: cover;
            object-fit: cover;
            -o-object-position: center;
            object-position: center;
            width: 100%;
            height: 100%;
            -webkit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out; }
          .iframe .site .site-content .page section.gallery-slider .gallery-slider-wrapper .swiper-slide a:hover img,
          .iframe .site__inner .site-content .page section.gallery-slider .gallery-slider-wrapper .swiper-slide a:hover img {
            opacity: 0.6; }
          .iframe .site .site-content .page section.gallery-slider .gallery-slider-wrapper .swiper-slide a:hover:before,
          .iframe .site__inner .site-content .page section.gallery-slider .gallery-slider-wrapper .swiper-slide a:hover:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            z-index: 99;
            border-radius: 5px;
            overflow: hidden; }
    @media only screen and (max-width: 768px) {
      .iframe .site .site-content .page section.range-slider .swiper-button-prev,
      .iframe .site__inner .site-content .page section.range-slider .swiper-button-prev {
        left: 0px; }
      .iframe .site .site-content .page section.range-slider .swiper-button-next,
      .iframe .site__inner .site-content .page section.range-slider .swiper-button-next {
        right: 0px; } }
    .iframe .site .site-content .page section.finance-calculator,
    .iframe .site__inner .site-content .page section.finance-calculator {
      padding: 80px 100px !important;
      background: #f6f6f6;
      max-width: unset;
      margin-top: 100px; }
      @media only screen and (max-width: 419px) {
        .iframe .site .site-content .page section.finance-calculator,
        .iframe .site__inner .site-content .page section.finance-calculator {
          padding: 40px 20px !important; } }
      .iframe .site .site-content .page section.finance-calculator .modal-panel,
      .iframe .site__inner .site-content .page section.finance-calculator .modal-panel {
        position: relative;
        top: unset;
        left: unset;
        bottom: unset;
        right: unset;
        pointer-events: all; }
        .iframe .site .site-content .page section.finance-calculator .modal-panel form:not(.gform_form) input,
        .iframe .site .site-content .page section.finance-calculator .modal-panel .radio-box,
        .iframe .site .site-content .page section.finance-calculator .modal-panel form:not(.gform_form) select,
        .iframe .site__inner .site-content .page section.finance-calculator .modal-panel form:not(.gform_form) input,
        .iframe .site__inner .site-content .page section.finance-calculator .modal-panel .radio-box,
        .iframe .site__inner .site-content .page section.finance-calculator .modal-panel form:not(.gform_form) select {
          background: white; }
        .iframe .site .site-content .page section.finance-calculator .modal-panel .frc-calculator-output .amount,
        .iframe .site__inner .site-content .page section.finance-calculator .modal-panel .frc-calculator-output .amount {
          margin-bottom: 20px;
          display: block;
          color: black;
          font-size: 85px; }
        .iframe .site .site-content .page section.finance-calculator .modal-panel .frc-calculator-output,
        .iframe .site__inner .site-content .page section.finance-calculator .modal-panel .frc-calculator-output {
          border-bottom: unset !important;
          padding: 30px 0 0 0;
          margin-bottom: 0; }
    .iframe .site .site-content .page section.colour-options-slider-row,
    .iframe .site__inner .site-content .page section.colour-options-slider-row {
      padding-bottom: 0; }
      .iframe .site .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner,
      .iframe .site__inner .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner {
        padding-top: 0;
        padding-bottom: 0; }
        .iframe .site .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__slider,
        .iframe .site__inner .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__slider {
          overflow: unset;
          height: unset; }
          .iframe .site .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__slider .swiper-wrapper,
          .iframe .site__inner .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__slider .swiper-wrapper {
            margin-top: unset;
            width: unset;
            margin-bottom: unset; }
            .iframe .site .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__slider .swiper-wrapper .swiper-slide,
            .iframe .site__inner .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__slider .swiper-wrapper .swiper-slide {
              padding-right: unset; }
              .iframe .site .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__slider .swiper-wrapper .swiper-slide img,
              .iframe .site__inner .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__slider .swiper-wrapper .swiper-slide img {
                max-width: 700px;
                width: 90%;
                margin-top: unset; }
        .iframe .site .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches,
        .iframe .site__inner .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches {
          margin-top: unset;
          position: relative;
          width: unset;
          left: unset;
          bottom: unset;
          display: block;
          text-align: center;
          max-width: 80%;
          margin: 0 auto; }
          @media only screen and (max-width: 768px) {
            .iframe .site .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches,
            .iframe .site__inner .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches {
              max-width: unset; } }
          .iframe .site .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="image"],
          .iframe .site__inner .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="image"] {
            width: auto;
            text-align: center;
            border-radius: 5px;
            border: 1px solid #e4e4e4;
            overflow: hidden;
            padding: 20px;
            margin-right: 10px;
            background: transparent;
            -webkit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out; }
            .iframe .site .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="image"]:hover,
            .iframe .site__inner .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="image"]:hover {
              -webkit-transform: unset;
              transform: unset;
              -webkit-box-shadow: 0 2.5px 5.3px rgba(0, 0, 0, 0.028), 0 8.3px 17.9px rgba(0, 0, 0, 0.042), 0 37px 80px rgba(0, 0, 0, 0.07);
              box-shadow: 0 2.5px 5.3px rgba(0, 0, 0, 0.028), 0 8.3px 17.9px rgba(0, 0, 0, 0.042), 0 37px 80px rgba(0, 0, 0, 0.07); }
            .iframe .site .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="image"] button,
            .iframe .site__inner .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="image"] button {
              background-size: contain !important;
              background-position: center !important;
              background-repeat: no-repeat !important;
              width: auto;
              height: 80px;
              display: block;
              padding-bottom: unset;
              opacity: 0.5;
              -webkit-transition: all 0.4s ease-in-out;
              transition: all 0.4s ease-in-out; }
              @media only screen and (max-width: 768px) {
                .iframe .site .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="image"] button,
                .iframe .site__inner .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="image"] button {
                  margin-bottom: unset; } }
              .iframe .site .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="image"] button.active, .iframe .site .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="image"] button:hover,
              .iframe .site__inner .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="image"] button.active,
              .iframe .site__inner .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="image"] button:hover {
                opacity: 1; }
                .iframe .site .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="image"] button.active:after, .iframe .site .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="image"] button:hover:after,
                .iframe .site__inner .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="image"] button.active:after,
                .iframe .site__inner .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="image"] button:hover:after {
                  display: none; }
            .iframe .site .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="image"] span,
            .iframe .site__inner .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="image"] span {
              display: block;
              margin-top: 10px; }
          .iframe .site .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="swatch"],
          .iframe .site__inner .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="swatch"] {
            width: 110px;
            text-align: center;
            border-radius: unset;
            border: unset;
            padding: unset;
            margin-right: 10px;
            background: transparent;
            -webkit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
            vertical-align: top; }
            .iframe .site .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="swatch"]:hover,
            .iframe .site__inner .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="swatch"]:hover {
              -webkit-transform: unset;
              transform: unset; }
            .iframe .site .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="swatch"] button,
            .iframe .site__inner .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="swatch"] button {
              width: 40px;
              height: 40px;
              display: block;
              padding-bottom: unset;
              border-radius: 100%;
              -webkit-transition: all 0.4s ease-in-out;
              transition: all 0.4s ease-in-out;
              -webkit-transform: scale(0.9);
              transform: scale(0.9);
              margin: 0 auto; }
              @media only screen and (max-width: 768px) {
                .iframe .site .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="swatch"] button,
                .iframe .site__inner .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="swatch"] button {
                  margin-bottom: unset; } }
              .iframe .site .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="swatch"] button.active,
              .iframe .site__inner .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="swatch"] button.active {
                -webkit-box-shadow: 0 0 0 0 #ffffff, 0 0 20px 0 transparent;
                box-shadow: 0 0 0 0 #ffffff, 0 0 20px 0 transparent;
                -webkit-transform: scale(1.1);
                transform: scale(1.1); }
                .iframe .site .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="swatch"] button.active:after,
                .iframe .site__inner .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="swatch"] button.active:after {
                  display: none; }
            .iframe .site .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="swatch"] span,
            .iframe .site__inner .site-content .page section.colour-options-slider-row .colour-options-slider-row__inner .colour-options-slider-row__swatches li[data-type="swatch"] span {
              display: block;
              margin-top: 15px;
              max-width: 100px;
              text-align: center; }
    .iframe .site .site-content .page section.full-width-content-row .content-block,
    .iframe .site__inner .site-content .page section.full-width-content-row .content-block {
      max-width: 1080px;
      padding: 50px 15px;
      margin: 0 auto 20px;
      text-align: center;
      width: 60%; }
      @media only screen and (max-width: 768px) {
        .iframe .site .site-content .page section.full-width-content-row .content-block,
        .iframe .site__inner .site-content .page section.full-width-content-row .content-block {
          max-width: 1080px;
          padding: 20px;
          margin: 0;
          text-align: center;
          width: 100%; } }
    .iframe .site .site-content .page section.collapsible-content-row,
    .iframe .site__inner .site-content .page section.collapsible-content-row {
      padding: 0;
      background: unset;
      margin-top: 80px; }
      @media only screen and (max-width: 768px) {
        .iframe .site .site-content .page section.collapsible-content-row,
        .iframe .site__inner .site-content .page section.collapsible-content-row {
          padding: 50px 20px; } }
      .iframe .site .site-content .page section.collapsible-content-row article,
      .iframe .site__inner .site-content .page section.collapsible-content-row article {
        max-width: 935px;
        margin: 0 auto; }
        .iframe .site .site-content .page section.collapsible-content-row article .collapsible-content-row__panel,
        .iframe .site__inner .site-content .page section.collapsible-content-row article .collapsible-content-row__panel {
          display: none; }
        .iframe .site .site-content .page section.collapsible-content-row article:first-child .collapsible-content-row__panel,
        .iframe .site__inner .site-content .page section.collapsible-content-row article:first-child .collapsible-content-row__panel {
          display: block; }
        .iframe .site .site-content .page section.collapsible-content-row article.open .collapsible-content-row__tab:after,
        .iframe .site__inner .site-content .page section.collapsible-content-row article.open .collapsible-content-row__tab:after {
          -webkit-transform: rotate(180deg);
          transform: rotate(180deg); }
      .iframe .site .site-content .page section.collapsible-content-row a.btn--primary.btn.download,
      .iframe .site__inner .site-content .page section.collapsible-content-row a.btn--primary.btn.download {
        margin-top: 50px; }
      .iframe .site .site-content .page section.collapsible-content-row .collapsible-content-row__tab,
      .iframe .site__inner .site-content .page section.collapsible-content-row .collapsible-content-row__tab {
        border-bottom: 2px solid #0E9C48;
        display: block;
        margin-top: 15px;
        padding: 5px 40px 20px 0;
        text-decoration: none;
        position: relative; }
        .iframe .site .site-content .page section.collapsible-content-row .collapsible-content-row__tab:after,
        .iframe .site__inner .site-content .page section.collapsible-content-row .collapsible-content-row__tab:after {
          content: '';
          display: inline-block;
          position: absolute;
          right: 0;
          top: 13px !important;
          background-repeat: no-repeat;
          -webkit-transition: -webkit-transform 0.4s;
          transition: -webkit-transform 0.4s;
          transition: transform 0.4s;
          transition: transform 0.4s, -webkit-transform 0.4s; }
          @media only screen and (max-width: 768px) {
            .iframe .site .site-content .page section.collapsible-content-row .collapsible-content-row__tab:after,
            .iframe .site__inner .site-content .page section.collapsible-content-row .collapsible-content-row__tab:after {
              top: 20px !important;
              -webkit-transform: scale(0.7);
              transform: scale(0.7); } }
        .iframe .site .site-content .page section.collapsible-content-row .collapsible-content-row__tab h2,
        .iframe .site__inner .site-content .page section.collapsible-content-row .collapsible-content-row__tab h2 {
          font-size: 30px;
          font-weight: 300 !important;
          line-height: 30px;
          margin: 0; }
          @media only screen and (max-width: 768px) {
            .iframe .site .site-content .page section.collapsible-content-row .collapsible-content-row__tab h2,
            .iframe .site__inner .site-content .page section.collapsible-content-row .collapsible-content-row__tab h2 {
              font-size: 30px; } }
      .iframe .site .site-content .page section.collapsible-content-row .collapsible-content-row__panel,
      .iframe .site__inner .site-content .page section.collapsible-content-row .collapsible-content-row__panel {
        padding: 20px 0 10px; }
    .iframe .site .site-content .page section.boxed,
    .iframe .site__inner .site-content .page section.boxed {
      width: 100%;
      margin: 100px auto 0;
      max-width: 940px; }
      @media only screen and (max-width: 768px) {
        .iframe .site .site-content .page section.boxed,
        .iframe .site__inner .site-content .page section.boxed {
          margin: 0;
          padding: 10px; } }
      .iframe .site .site-content .page section.boxed .boxed-gallery-slider-top,
      .iframe .site__inner .site-content .page section.boxed .boxed-gallery-slider-top {
        width: 100%;
        margin: 0 auto;
        overflow: hidden;
        height: 600px;
        border-radius: 4px;
        margin-bottom: 10px; }
        @media only screen and (max-width: 768px) {
          .iframe .site .site-content .page section.boxed .boxed-gallery-slider-top,
          .iframe .site__inner .site-content .page section.boxed .boxed-gallery-slider-top {
            height: 550px;
            border-radius: 0; } }
        @media only screen and (max-width: 419px) {
          .iframe .site .site-content .page section.boxed .boxed-gallery-slider-top,
          .iframe .site__inner .site-content .page section.boxed .boxed-gallery-slider-top {
            height: 350px; } }
        .iframe .site .site-content .page section.boxed .boxed-gallery-slider-top .swiper-slide,
        .iframe .site__inner .site-content .page section.boxed .boxed-gallery-slider-top .swiper-slide {
          background-size: cover;
          background-position: center;
          height: 100%;
          background: #ececec; }
          .iframe .site .site-content .page section.boxed .boxed-gallery-slider-top .swiper-slide img,
          .iframe .site__inner .site-content .page section.boxed .boxed-gallery-slider-top .swiper-slide img {
            -o-object-fit: cover;
            object-fit: cover;
            width: 100%;
            height: 100%;
            -webkit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out;
            opacity: 1; }
            .iframe .site .site-content .page section.boxed .boxed-gallery-slider-top .swiper-slide img.swiper-lazy,
            .iframe .site__inner .site-content .page section.boxed .boxed-gallery-slider-top .swiper-slide img.swiper-lazy {
              opacity: 0; }
            .iframe .site .site-content .page section.boxed .boxed-gallery-slider-top .swiper-slide img.swiper-lazy-loaded,
            .iframe .site__inner .site-content .page section.boxed .boxed-gallery-slider-top .swiper-slide img.swiper-lazy-loaded {
              opacity: 1; }
          .iframe .site .site-content .page section.boxed .boxed-gallery-slider-top .swiper-slide a,
          .iframe .site__inner .site-content .page section.boxed .boxed-gallery-slider-top .swiper-slide a {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: block;
            opacity: 1;
            -webkit-transition: all 0.4s ease-in-out;
            transition: all 0.4s ease-in-out; }
            .iframe .site .site-content .page section.boxed .boxed-gallery-slider-top .swiper-slide a img,
            .iframe .site__inner .site-content .page section.boxed .boxed-gallery-slider-top .swiper-slide a img {
              -o-object-fit: cover;
              object-fit: cover;
              -o-object-position: center;
              object-position: center;
              width: 100%;
              height: 100%;
              -webkit-transition: all 0.4s ease-in-out;
              transition: all 0.4s ease-in-out; }
            .iframe .site .site-content .page section.boxed .boxed-gallery-slider-top .swiper-slide a:hover:before,
            .iframe .site__inner .site-content .page section.boxed .boxed-gallery-slider-top .swiper-slide a:hover:before {
              content: '';
              position: absolute;
              top: 50%;
              left: 50%;
              -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
              z-index: 99;
              border-radius: 100%;
              overflow: hidden;
              -webkit-box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.02), 0 6.7px 5.3px rgba(0, 0, 0, 0.028), 0 12.5px 10px rgba(0, 0, 0, 0.035), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.05), 0 100px 80px rgba(0, 0, 0, 0.07);
              box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.02), 0 6.7px 5.3px rgba(0, 0, 0, 0.028), 0 12.5px 10px rgba(0, 0, 0, 0.035), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.05), 0 100px 80px rgba(0, 0, 0, 0.07); }
      .iframe .site .site-content .page section.boxed .boxed-gallery-slider-thumbs,
      .iframe .site__inner .site-content .page section.boxed .boxed-gallery-slider-thumbs {
        margin: 0 auto;
        width: 100%;
        overflow: hidden; }
        .iframe .site .site-content .page section.boxed .boxed-gallery-slider-thumbs .swiper-slide,
        .iframe .site__inner .site-content .page section.boxed .boxed-gallery-slider-thumbs .swiper-slide {
          height: auto;
          border-radius: 4px;
          overflow: hidden;
          opacity: 0.7;
          min-height: 50px;
          margin-right: 10px;
          background: #ececec;
          max-height: 100px; }
          .iframe .site .site-content .page section.boxed .boxed-gallery-slider-thumbs .swiper-slide img,
          .iframe .site__inner .site-content .page section.boxed .boxed-gallery-slider-thumbs .swiper-slide img {
            -o-object-fit: cover;
            object-fit: cover;
            width: 100%;
            height: 100%;
            opacity: 1; }
            .iframe .site .site-content .page section.boxed .boxed-gallery-slider-thumbs .swiper-slide img.swiper-lazy,
            .iframe .site__inner .site-content .page section.boxed .boxed-gallery-slider-thumbs .swiper-slide img.swiper-lazy {
              opacity: 0; }
            .iframe .site .site-content .page section.boxed .boxed-gallery-slider-thumbs .swiper-slide img.swiper-lazy-loaded,
            .iframe .site__inner .site-content .page section.boxed .boxed-gallery-slider-thumbs .swiper-slide img.swiper-lazy-loaded {
              opacity: 1; }
          .iframe .site .site-content .page section.boxed .boxed-gallery-slider-thumbs .swiper-slide:hover,
          .iframe .site__inner .site-content .page section.boxed .boxed-gallery-slider-thumbs .swiper-slide:hover {
            cursor: pointer;
            opacity: 0.7; }
          .iframe .site .site-content .page section.boxed .boxed-gallery-slider-thumbs .swiper-slide.swiper-slide-thumb-active,
          .iframe .site__inner .site-content .page section.boxed .boxed-gallery-slider-thumbs .swiper-slide.swiper-slide-thumb-active {
            opacity: 1; }
    .iframe .site .site-content .page section.news-wrapper,
    .iframe .site__inner .site-content .page section.news-wrapper {
      width: 100%;
      margin: 100px auto 0;
      max-width: 940px; }
      .iframe .site .site-content .page section.news-wrapper .news-card,
      .iframe .site__inner .site-content .page section.news-wrapper .news-card {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1; }
    .iframe .site .site-content .page h2.section-title,
    .iframe .site__inner .site-content .page h2.section-title {
      text-align: center;
      font-size: 14px;
      letter-spacing: 5.6px;
      color: #0E9C48;
      font-weight: 500;
      line-height: 20px;
      margin-bottom: 50px;
      z-index: 9;
      position: relative; }
    .iframe .site .site-content .page .article__teaser__img,
    .iframe .site__inner .site-content .page .article__teaser__img {
      height: 350px; }
    .iframe .site .site-content .page .finance-calculator .flex-grid,
    .iframe .site__inner .site-content .page .finance-calculator .flex-grid {
      margin: 0 auto; }
    .iframe .site .site-content .page .product-hero__bg,
    .iframe .site__inner .site-content .page .product-hero__bg {
      position: relative;
      overflow: hidden;
      margin-top: 0;
      height: 520px; }
      .iframe .site .site-content .page .product-hero__bg.hero_gallery,
      .iframe .site__inner .site-content .page .product-hero__bg.hero_gallery {
        position: absolute; }
        .iframe .site .site-content .page .product-hero__bg.hero_gallery:after,
        .iframe .site__inner .site-content .page .product-hero__bg.hero_gallery:after {
          background: rgba(34, 30, 66, 0.25);
          height: 100%; }
        @media only screen and (max-width: 419px) {
          .iframe .site .site-content .page .product-hero__bg.hero_gallery,
          .iframe .site__inner .site-content .page .product-hero__bg.hero_gallery {
            width: 100%;
            padding: 0px;
            max-height: 200px;
            border-radius: 0px; } }
        @media only screen and (min-width: 420px) and (max-width: 768px) {
          .iframe .site .site-content .page .product-hero__bg.hero_gallery,
          .iframe .site__inner .site-content .page .product-hero__bg.hero_gallery {
            width: 100%;
            padding: 0px;
            max-height: 300px;
            border-radius: 0px; } }
      .iframe .site .site-content .page .product-hero__bg:before,
      .iframe .site__inner .site-content .page .product-hero__bg:before {
        display: none; }
      @media only screen and (max-width: 419px) {
        .iframe .site .site-content .page .product-hero__bg,
        .iframe .site__inner .site-content .page .product-hero__bg {
          width: 100%;
          padding: 0px;
          max-height: unset;
          border-radius: 0px; } }
      @media only screen and (min-width: 420px) and (max-width: 768px) {
        .iframe .site .site-content .page .product-hero__bg,
        .iframe .site__inner .site-content .page .product-hero__bg {
          width: 100%;
          padding: 0px;
          max-height: 300px;
          border-radius: 0px; } }
    .iframe .site .site-content .page .product-hero__inner,
    .iframe .site__inner .site-content .page .product-hero__inner {
      padding: 0px; }
      .iframe .site .site-content .page .product-hero__inner.light,
      .iframe .site__inner .site-content .page .product-hero__inner.light {
        background: white; }
      .iframe .site .site-content .page .product-hero__inner.dark,
      .iframe .site__inner .site-content .page .product-hero__inner.dark {
        background: black; }
        .iframe .site .site-content .page .product-hero__inner.dark .iframe-models-item-price h3,
        .iframe .site__inner .site-content .page .product-hero__inner.dark .iframe-models-item-price h3 {
          color: white; }
      .iframe .site .site-content .page .product-hero__inner .product-hero__intro,
      .iframe .site__inner .site-content .page .product-hero__inner .product-hero__intro {
        margin-top: unset; }
      .iframe .site .site-content .page .product-hero__inner .product-hero__slider,
      .iframe .site__inner .site-content .page .product-hero__inner .product-hero__slider {
        padding: 0px; }
        .iframe .site .site-content .page .product-hero__inner .product-hero__slider .swiper-wrapper,
        .iframe .site__inner .site-content .page .product-hero__inner .product-hero__slider .swiper-wrapper {
          margin-top: 40px;
          position: relative;
          z-index: 1;
          height: auto; }
        .iframe .site .site-content .page .product-hero__inner .product-hero__slider .swiper-slide,
        .iframe .site__inner .site-content .page .product-hero__inner .product-hero__slider .swiper-slide {
          height: auto; }
          .iframe .site .site-content .page .product-hero__inner .product-hero__slider .swiper-slide img,
          .iframe .site__inner .site-content .page .product-hero__inner .product-hero__slider .swiper-slide img {
            max-width: 100%;
            width: 800px;
            text-align: center;
            margin: 0 auto;
            display: block;
            position: relative;
            top: unset;
            top: unset;
            -webkit-transform: none;
            transform: none;
            left: unset; }
    .iframe .site .site-content .page .price,
    .iframe .site__inner .site-content .page .price {
      color: black;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 5px;
      font-size: 12px;
      text-align: center; }
    .iframe .site .site-content .contact section,
    .iframe .site__inner .site-content .contact section {
      margin: unset; }
    .iframe .site .site-content .offers .offers-empty,
    .iframe .site__inner .site-content .offers .offers-empty {
      max-width: 510px;
      background: #f4f4f4;
      border-radius: 5px;
      margin: 0 auto 40px;
      padding: 20px;
      text-align: center; }
      .iframe .site .site-content .offers .offers-empty p,
      .iframe .site__inner .site-content .offers .offers-empty p {
        font-size: 17px;
        color: black;
        font-family: system-ui;
        font-weight: 500;
        margin: 20px; }
    .iframe .site .site-content .offers h2.decorated:after,
    .iframe .site__inner .site-content .offers h2.decorated:after {
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%); }
    .iframe .site .site-content .offers .offer,
    .iframe .site__inner .site-content .offers .offer {
      padding: 60px;
      border-radius: 4px;
      background: #f4f4f4;
      width: 100%;
      position: relative;
      overflow: hidden;
      margin: 0 auto 50px;
      max-width: 850px; }
      @media only screen and (max-width: 768px) {
        .iframe .site .site-content .offers .offer,
        .iframe .site__inner .site-content .offers .offer {
          padding: 20px;
          background: unset; } }
      .iframe .site .site-content .offers .offer .offer__img,
      .iframe .site__inner .site-content .offers .offer .offer__img {
        position: relative;
        overflow: hidden;
        border-radius: 3px; }
        .iframe .site .site-content .offers .offer .offer__img .offer-ends,
        .iframe .site__inner .site-content .offers .offer .offer__img .offer-ends {
          background: #0E9C48;
          width: auto;
          text-transform: uppercase;
          font-weight: 600;
          position: absolute;
          top: 0;
          left: 0;
          letter-spacing: 4.67px;
          font-size: 14px;
          margin: 0 0 20px;
          padding: 5px 15px;
          display: inline-block;
          color: white; }
          @media only screen and (max-width: 768px) {
            .iframe .site .site-content .offers .offer .offer__img .offer-ends,
            .iframe .site__inner .site-content .offers .offer .offer__img .offer-ends {
              position: relative;
              display: block;
              margin: 0;
              letter-spacing: 1px;
              text-align: center; } }
      .iframe .site .site-content .offers .offer .offers-content h3,
      .iframe .site__inner .site-content .offers .offer .offers-content h3 {
        border-bottom: 3px solid #0E9C48;
        padding: 20px;
        margin: 0 auto 30px;
        text-align: center;
        max-width: 90%;
        line-height: 37px; }
        @media only screen and (max-width: 768px) {
          .iframe .site .site-content .offers .offer .offers-content h3,
          .iframe .site__inner .site-content .offers .offer .offers-content h3 {
            padding: 20px 0;
            margin: 0 0 20px 0;
            text-align: left;
            max-width: 100%;
            line-height: 27px; } }
      .iframe .site .site-content .offers .offer .offer-terms,
      .iframe .site__inner .site-content .offers .offer .offer-terms {
        font-size: 12px;
        line-height: 20px;
        margin-top: 20px; }
    .iframe .site .site-content .accessories h2.decorated:after,
    .iframe .site__inner .site-content .accessories h2.decorated:after {
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%); }
    .iframe .site .site-content .accessories .item,
    .iframe .site__inner .site-content .accessories .item {
      padding: 0 70px 50px; }
      @media only screen and (max-width: 768px) {
        .iframe .site .site-content .accessories .item,
        .iframe .site__inner .site-content .accessories .item {
          padding: 20px; } }
      .iframe .site .site-content .accessories .item .range-title,
      .iframe .site__inner .site-content .accessories .item .range-title {
        padding: 10px;
        text-align: left;
        border-radius: 4px;
        background: #f4f4f4;
        width: 100%;
        margin: 0 0 20px 0;
        font-size: 17px; }
      .iframe .site .site-content .accessories .item .grid,
      .iframe .site__inner .site-content .accessories .item .grid {
        grid-template-columns: repeat(3, 1fr);
        display: grid;
        gap: 20px 20px; }
        @media only screen and (max-width: 768px) {
          .iframe .site .site-content .accessories .item .grid,
          .iframe .site__inner .site-content .accessories .item .grid {
            grid-template-columns: repeat(1, 1fr); } }
        .iframe .site .site-content .accessories .item .grid .acc-item,
        .iframe .site__inner .site-content .accessories .item .grid .acc-item {
          border: 2px solid #f4f4f4;
          border-radius: 5px;
          padding: 20px; }
          .iframe .site .site-content .accessories .item .grid .acc-item .content h3,
          .iframe .site__inner .site-content .accessories .item .grid .acc-item .content h3 {
            font-size: 15px;
            margin: 20px 0;
            font-family: system-ui; }
          .iframe .site .site-content .accessories .item .grid .acc-item .content p,
          .iframe .site__inner .site-content .accessories .item .grid .acc-item .content p {
            font-size: 14px;
            font-family: system-ui; }
    .iframe .site .site-content section.quick-links,
    .iframe .site__inner .site-content section.quick-links {
      background: #212121; }
      @media only screen and (max-width: 768px) {
        .iframe .site .site-content section.quick-links,
        .iframe .site__inner .site-content section.quick-links {
          margin-top: 50px; } }
      .iframe .site .site-content section.quick-links .quick-links-container,
      .iframe .site__inner .site-content section.quick-links .quick-links-container {
        max-width: 1180px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: unset !important; }
        .iframe .site .site-content section.quick-links .quick-links-container a.link-box,
        .iframe .site__inner .site-content section.quick-links .quick-links-container a.link-box {
          height: 485px;
          -webkit-box-flex: 1;
          -ms-flex: 1;
          flex: 1;
          top: unset !important;
          position: relative;
          text-decoration: none;
          background-size: cover;
          background-position: center; }
          @media only screen and (max-width: 768px) {
            .iframe .site .site-content section.quick-links .quick-links-container a.link-box,
            .iframe .site__inner .site-content section.quick-links .quick-links-container a.link-box {
              width: 33.33%;
              height: 290px;
              margin-bottom: unset; }
              .iframe .site .site-content section.quick-links .quick-links-container a.link-box:before,
              .iframe .site__inner .site-content section.quick-links .quick-links-container a.link-box:before {
                content: "";
                display: block;
                pointer-events: none;
                position: absolute;
                left: 0;
                bottom: 0;
                background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.71)), to(transparent));
                background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.71) 0%, transparent 100%);
                width: 100%;
                height: 100%;
                z-index: 1; } }
          @media only screen and (max-width: 419px) {
            .iframe .site .site-content section.quick-links .quick-links-container a.link-box,
            .iframe .site__inner .site-content section.quick-links .quick-links-container a.link-box {
              -webkit-box-flex: 0;
              -ms-flex: none;
              flex: none;
              width: 100%;
              height: 300px;
              margin-bottom: 2px; } }
          .iframe .site .site-content section.quick-links .quick-links-container a.link-box:before,
          .iframe .site__inner .site-content section.quick-links .quick-links-container a.link-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: black;
            opacity: 0.3;
            -webkit-transition: opacity 0.4s ease-in-out;
            transition: opacity 0.4s ease-in-out; }
          .iframe .site .site-content section.quick-links .quick-links-container a.link-box:hover:before, .iframe .site .site-content section.quick-links .quick-links-container a.link-box:focus:before,
          .iframe .site__inner .site-content section.quick-links .quick-links-container a.link-box:hover:before,
          .iframe .site__inner .site-content section.quick-links .quick-links-container a.link-box:focus:before {
            opacity: 0.5; }
          .iframe .site .site-content section.quick-links .quick-links-container a.link-box span.title,
          .iframe .site__inner .site-content section.quick-links .quick-links-container a.link-box span.title {
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 17px;
            color: white;
            position: absolute;
            bottom: 40px;
            left: 45px;
            right: 45px;
            line-height: 1.2;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700 !important;
            font-style: normal;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-weight: 500;
            text-align: center;
            z-index: 4; }
          .iframe .site .site-content section.quick-links .quick-links-container a.link-box:nth-child(1),
          .iframe .site__inner .site-content section.quick-links .quick-links-container a.link-box:nth-child(1) {
            text-align: right; }
          .iframe .site .site-content section.quick-links .quick-links-container a.link-box:nth-child(2),
          .iframe .site__inner .site-content section.quick-links .quick-links-container a.link-box:nth-child(2) {
            text-align: center; }
          .iframe .site .site-content section.quick-links .quick-links-container a.link-box:nth-child(3),
          .iframe .site__inner .site-content section.quick-links .quick-links-container a.link-box:nth-child(3) {
            text-align: left; }
    .iframe .site .site-content footer.site-footer,
    .iframe .site__inner .site-content footer.site-footer {
      padding: 100px 80px;
      background: #000000;
      color: #212121;
      font-size: 14px;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700 !important;
      font-style: normal;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
      @media only screen and (max-width: 768px) {
        .iframe .site .site-content footer.site-footer,
        .iframe .site__inner .site-content footer.site-footer {
          padding: 50px 30px 100px 30px;
          text-align: center; } }
      .iframe .site .site-content footer.site-footer p,
      .iframe .site__inner .site-content footer.site-footer p {
        font-size: 12px;
        max-width: 90%;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: 500;
        line-height: 19px;
        color: #868686;
        font-family: 'Rajdhani', sans-serif;
        font-weight: 700 !important;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
        @media only screen and (max-width: 419px) {
          .iframe .site .site-content footer.site-footer p,
          .iframe .site__inner .site-content footer.site-footer p {
            max-width: 100%;
            margin-bottom: 20px; } }
        @media only screen and (max-width: 768px) {
          .iframe .site .site-content footer.site-footer p,
          .iframe .site__inner .site-content footer.site-footer p {
            max-width: 100%;
            margin-bottom: 20px; } }
        .iframe .site .site-content footer.site-footer p a,
        .iframe .site__inner .site-content footer.site-footer p a {
          color: #212121;
          text-decoration: none; }
          .iframe .site .site-content footer.site-footer p a:hover, .iframe .site .site-content footer.site-footer p a:focus,
          .iframe .site__inner .site-content footer.site-footer p a:hover,
          .iframe .site__inner .site-content footer.site-footer p a:focus {
            color: #0E9C48; }
      @media only screen and (max-width: 419px) {
        .iframe .site .site-content footer.site-footer nav,
        .iframe .site__inner .site-content footer.site-footer nav {
          margin-top: 40px; } }
      .iframe .site .site-content footer.site-footer .footer-logo img,
      .iframe .site__inner .site-content footer.site-footer .footer-logo img {
        margin-top: 20px;
        width: 160px;
        margin-bottom: 40px; }
      .iframe .site .site-content footer.site-footer .site-footer__inner,
      .iframe .site__inner .site-content footer.site-footer .site-footer__inner {
        max-width: 1180px;
        width: 100%;
        margin-left: auto;
        margin-right: auto; }
      @media only screen and (min-width: 1200px) {
        .iframe .site .site-content footer.site-footer,
        .iframe .site__inner .site-content footer.site-footer {
          padding-left: 50px;
          padding-right: 50px; } }
      .iframe .site .site-content footer.site-footer .flex__item,
      .iframe .site__inner .site-content footer.site-footer .flex__item {
        text-align: center; }
      .iframe .site .site-content footer.site-footer .gform_form,
      .iframe .site__inner .site-content footer.site-footer .gform_form {
        position: relative;
        width: 100%;
        margin-bottom: 10px; }
        @media only screen and (min-width: 769px) {
          .iframe .site .site-content footer.site-footer .gform_form,
          .iframe .site__inner .site-content footer.site-footer .gform_form {
            width: 86%;
            margin-bottom: 30px; } }
        @media only screen and (min-width: 1200px) {
          .iframe .site .site-content footer.site-footer .gform_form,
          .iframe .site__inner .site-content footer.site-footer .gform_form {
            width: 70%;
            margin: 0; } }
        .iframe .site .site-content footer.site-footer .gform_form label,
        .iframe .site__inner .site-content footer.site-footer .gform_form label {
          text-transform: uppercase;
          font-style: normal;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          font-weight: 600;
          letter-spacing: 4.67px;
          font-size: 14px;
          color: #72777b; }
          @media only screen and (max-width: 768px) {
            .iframe .site .site-content footer.site-footer .gform_form label,
            .iframe .site__inner .site-content footer.site-footer .gform_form label {
              text-align: center;
              display: block; } }
          .iframe .site .site-content footer.site-footer .gform_form label .gfield_required,
          .iframe .site__inner .site-content footer.site-footer .gform_form label .gfield_required {
            display: none; }
      .iframe .site .site-content footer.site-footer .gform_footer,
      .iframe .site__inner .site-content footer.site-footer .gform_footer {
        position: absolute;
        display: block;
        top: 37px;
        right: 0;
        padding: 0;
        margin: unset;
        width: unset; }
        @media only screen and (min-width: 420px) and (max-width: 768px) {
          .iframe .site .site-content footer.site-footer .gform_footer,
          .iframe .site__inner .site-content footer.site-footer .gform_footer {
            margin-right: 20px; } }
      .iframe .site .site-content footer.site-footer .ginput_container_email,
      .iframe .site__inner .site-content footer.site-footer .ginput_container_email {
        display: block;
        margin-bottom: 30px; }
        @media screen and (max-width: 1080px) {
          .iframe .site .site-content footer.site-footer .ginput_container_email,
          .iframe .site__inner .site-content footer.site-footer .ginput_container_email {
            width: 100%;
            padding: 0px;
            margin: 0px; } }
        .iframe .site .site-content footer.site-footer .ginput_container_email input[type="email"],
        .iframe .site .site-content footer.site-footer .ginput_container_email input[type="text"],
        .iframe .site__inner .site-content footer.site-footer .ginput_container_email input[type="email"],
        .iframe .site__inner .site-content footer.site-footer .ginput_container_email input[type="text"] {
          font-family: 'Rajdhani', sans-serif;
          font-weight: 700 !important;
          font-style: normal;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          height: 77px;
          background: #191919;
          border-radius: 2px;
          border: none;
          font-size: 15px;
          color: white;
          padding: 5px 25px !important;
          margin: 0px;
          width: 100%; }
          .iframe .site .site-content footer.site-footer .ginput_container_email input[type="email"]::-webkit-input-placeholder, .iframe .site .site-content footer.site-footer .ginput_container_email input[type="text"]::-webkit-input-placeholder, .iframe .site__inner .site-content footer.site-footer .ginput_container_email input[type="email"]::-webkit-input-placeholder, .iframe .site__inner .site-content footer.site-footer .ginput_container_email input[type="text"]::-webkit-input-placeholder {
            color: #aeaeae; }
          .iframe .site .site-content footer.site-footer .ginput_container_email input[type="email"]::-moz-placeholder, .iframe .site .site-content footer.site-footer .ginput_container_email input[type="text"]::-moz-placeholder, .iframe .site__inner .site-content footer.site-footer .ginput_container_email input[type="email"]::-moz-placeholder, .iframe .site__inner .site-content footer.site-footer .ginput_container_email input[type="text"]::-moz-placeholder {
            color: #aeaeae; }
          .iframe .site .site-content footer.site-footer .ginput_container_email input[type="email"]:-ms-input-placeholder, .iframe .site .site-content footer.site-footer .ginput_container_email input[type="text"]:-ms-input-placeholder, .iframe .site__inner .site-content footer.site-footer .ginput_container_email input[type="email"]:-ms-input-placeholder, .iframe .site__inner .site-content footer.site-footer .ginput_container_email input[type="text"]:-ms-input-placeholder {
            color: #aeaeae; }
          .iframe .site .site-content footer.site-footer .ginput_container_email input[type="email"]::-ms-input-placeholder, .iframe .site .site-content footer.site-footer .ginput_container_email input[type="text"]::-ms-input-placeholder, .iframe .site__inner .site-content footer.site-footer .ginput_container_email input[type="email"]::-ms-input-placeholder, .iframe .site__inner .site-content footer.site-footer .ginput_container_email input[type="text"]::-ms-input-placeholder {
            color: #aeaeae; }
          .iframe .site .site-content footer.site-footer .ginput_container_email input[type="email"]::placeholder,
          .iframe .site .site-content footer.site-footer .ginput_container_email input[type="text"]::placeholder,
          .iframe .site__inner .site-content footer.site-footer .ginput_container_email input[type="email"]::placeholder,
          .iframe .site__inner .site-content footer.site-footer .ginput_container_email input[type="text"]::placeholder {
            color: #aeaeae; }
      .iframe .site .site-content footer.site-footer button[type="submit"],
      .iframe .site__inner .site-content footer.site-footer button[type="submit"] {
        display: inline-block;
        position: relative;
        height: 77px;
        margin-right: 0;
        background: transparent;
        padding: 0px;
        color: #0E9C48;
        font-weight: 600;
        font-size: 15px;
        min-width: 80px; }
        @media only screen and (max-width: 768px) {
          .iframe .site .site-content footer.site-footer button[type="submit"],
          .iframe .site__inner .site-content footer.site-footer button[type="submit"] {
            position: unset;
            top: 0;
            left: 0; } }
        @media only screen and (min-width: 1200px) {
          .iframe .site .site-content footer.site-footer button[type="submit"],
          .iframe .site__inner .site-content footer.site-footer button[type="submit"] {
            margin-right: 20px; } }
        .iframe .site .site-content footer.site-footer button[type="submit"]:after,
        .iframe .site__inner .site-content footer.site-footer button[type="submit"]:after {
          display: none; }
      .iframe .site .site-content footer.site-footer ul li,
      .iframe .site__inner .site-content footer.site-footer ul li {
        font-family: 'Rajdhani', sans-serif;
        font-weight: 700 !important;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-weight: 500;
        vertical-align: top;
        display: block;
        font-size: 15px;
        line-height: 27px;
        margin-right: 0px; }
        @media only screen and (min-width: 420px) and (max-width: 768px) {
          .iframe .site .site-content footer.site-footer ul li,
          .iframe .site__inner .site-content footer.site-footer ul li {
            text-align: center; } }
        .iframe .site .site-content footer.site-footer ul li a,
        .iframe .site__inner .site-content footer.site-footer ul li a {
          color: white;
          text-decoration: none;
          position: relative; }
          .iframe .site .site-content footer.site-footer ul li a:hover, .iframe .site .site-content footer.site-footer ul li a:focus,
          .iframe .site__inner .site-content footer.site-footer ul li a:hover,
          .iframe .site__inner .site-content footer.site-footer ul li a:focus {
            color: #0E9C48; }
          .iframe .site .site-content footer.site-footer ul li a:before,
          .iframe .site__inner .site-content footer.site-footer ul li a:before {
            display: inline-block;
            vertical-align: top;
            background-repeat: no-repeat;
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            content: ''; }
      .iframe .site .site-content footer.site-footer ul.footer-social-nav,
      .iframe .site__inner .site-content footer.site-footer ul.footer-social-nav {
        text-align: left; }
        @media only screen and (max-width: 768px) {
          .iframe .site .site-content footer.site-footer ul.footer-social-nav,
          .iframe .site__inner .site-content footer.site-footer ul.footer-social-nav {
            margin-top: 0;
            text-align: center;
            margin-bottom: 20px; } }
        .iframe .site .site-content footer.site-footer ul.footer-social-nav li:last-child,
        .iframe .site__inner .site-content footer.site-footer ul.footer-social-nav li:last-child {
          margin-right: 0; }
        .iframe .site .site-content footer.site-footer ul.footer-social-nav li,
        .iframe .site__inner .site-content footer.site-footer ul.footer-social-nav li {
          vertical-align: top;
          display: inline-block;
          margin-right: 20px; }
          @media only screen and (max-width: 768px) {
            .iframe .site .site-content footer.site-footer ul.footer-social-nav li,
            .iframe .site__inner .site-content footer.site-footer ul.footer-social-nav li {
              margin: 0 10px; } }
          .iframe .site .site-content footer.site-footer ul.footer-social-nav li a,
          .iframe .site__inner .site-content footer.site-footer ul.footer-social-nav li a {
            width: auto;
            height: auto;
            display: inline-block;
            margin-top: 22px;
            text-transform: uppercase;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700 !important;
            font-style: normal;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-weight: 500;
            letter-spacing: 4.67px;
            font-size: 14px;
            color: #0E9C48; }
            .iframe .site .site-content footer.site-footer ul.footer-social-nav li a:before,
            .iframe .site__inner .site-content footer.site-footer ul.footer-social-nav li a:before {
              content: none; }
            @media only screen and (max-width: 768px) {
              .iframe .site .site-content footer.site-footer ul.footer-social-nav li a,
              .iframe .site__inner .site-content footer.site-footer ul.footer-social-nav li a {
                margin-top: 10px; } }
      .iframe .site .site-content footer.site-footer ul.grey li a,
      .iframe .site__inner .site-content footer.site-footer ul.grey li a {
        color: #9E9E9E !important; }
        .iframe .site .site-content footer.site-footer ul.grey li a:hover, .iframe .site .site-content footer.site-footer ul.grey li a:focus,
        .iframe .site__inner .site-content footer.site-footer ul.grey li a:hover,
        .iframe .site__inner .site-content footer.site-footer ul.grey li a:focus {
          color: #0E9C48; }
      .iframe .site .site-content footer.site-footer ul li.country-select-wrap,
      .iframe .site__inner .site-content footer.site-footer ul li.country-select-wrap {
        margin-top: 15px; }
        @media only screen and (max-width: 419px) {
          .iframe .site .site-content footer.site-footer ul li.country-select-wrap,
          .iframe .site__inner .site-content footer.site-footer ul li.country-select-wrap {
            margin-left: 10px;
            top: 3px;
            position: relative;
            margin-right: 5px;
            line-height: unset;
            vertical-align: unset; } }
        @media only screen and (max-width: 768px) {
          .iframe .site .site-content footer.site-footer ul li.country-select-wrap,
          .iframe .site__inner .site-content footer.site-footer ul li.country-select-wrap {
            margin-left: 10px;
            top: 3px;
            position: relative;
            margin-right: 5px;
            line-height: unset;
            vertical-align: unset; } }
        .iframe .site .site-content footer.site-footer ul li.country-select-wrap a,
        .iframe .site__inner .site-content footer.site-footer ul li.country-select-wrap a {
          letter-spacing: 0.2em;
          font-size: 13px;
          color: #0E9C48;
          font-family: 'Rajdhani', sans-serif;
          font-weight: 700 !important;
          font-style: normal;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          font-weight: 600;
          display: inline-block;
          width: 32px;
          height: 32px;
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center; }
          .iframe .site .site-content footer.site-footer ul li.country-select-wrap a svg,
          .iframe .site__inner .site-content footer.site-footer ul li.country-select-wrap a svg {
            margin-right: 15px;
            fill: white; }
    @media only screen and (max-width: 768px) {
      .iframe .site .site-content #sb_instagram .sbi_item,
      .iframe .site__inner .site-content #sb_instagram .sbi_item {
        width: 50% !important;
        display: inline-block; }
        .iframe .site .site-content #sb_instagram .sbi_item .sbi_photo,
        .iframe .site__inner .site-content #sb_instagram .sbi_item .sbi_photo {
          height: 170px; } }

.accessories-range {
  padding: 100px;
  background: #f5f5f5;
  margin-bottom: 30px; }
  @media only screen and (max-width: 419px) {
    .accessories-range {
      padding: 40px 0px;
      background: none; } }
  .accessories-range .range-title {
    text-align: center;
    border-bottom: 3px solid #0E9C48;
    padding-bottom: 30px;
    max-width: 40%;
    display: block;
    margin: 0 auto; }
    @media only screen and (max-width: 419px) {
      .accessories-range .range-title {
        max-width: 90%; } }
  @media only screen and (max-width: 419px) {
    .accessories-range .accessories-card {
      margin-bottom: 20px; } }
  .accessories-range .accessories-card img {
    padding: 40px; }
    @media only screen and (max-width: 419px) {
      .accessories-range .accessories-card img {
        padding: 0 20px; } }
  .accessories-range .accessories-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 28px;
    margin-top: 20px; }
  .accessories-range .accessories-card .content {
    text-align: center;
    padding: 0px 30px; }
    .accessories-range .accessories-card .content strong {
      font-weight: 700;
      display: block; }

header.site-banner .logo-container {
  width: 105px; }
  header.site-banner .logo-container:before {
    background: none !important; }
  header.site-banner .logo-container .logo-shape {
    position: absolute;
    top: 0px;
    right: -44px;
    width: 76px;
    z-index: 99; }
  @media only screen and (max-width: 768px) {
    header.site-banner .logo-container {
      width: 150px; }
      header.site-banner .logo-container .logo-shape {
        right: -25px;
        width: auto;
        height: 50px; } }

header.site-banner .nav-container {
  width: calc(100% - 200px); }
  @media only screen and (max-width: 768px) {
    header.site-banner .nav-container {
      width: calc(100% - 150px); } }

header.site-banner a.brand {
  padding: 0;
  height: 100px;
  text-align: left; }
  header.site-banner a.brand img {
    height: 100%;
    padding: 5px; }
  @media only screen and (max-width: 768px) {
    header.site-banner a.brand {
      height: 80px;
      text-align: left; }
      header.site-banner a.brand img {
        padding: 11px; } }

header.site-banner ul.dropdown-menu ul.dropdown-menu li > a {
  height: 55px;
  padding-top: 21px; }

header.site-banner ul.dropdown-menu ul.dropdown-menu li {
  height: auto; }

@media only screen and (max-width: 419px) {
  header.site-banner .logo-container {
    width: 120px; }
  header.site-banner a.brand {
    padding-left: 5px; }
  header.site-banner .nav-container {
    width: calc(100% - 120px);
    padding-left: 24px; }
  header.site-banner ul.secondary-nav {
    padding-top: 4px;
    padding-bottom: 4px; }
    header.site-banner ul.secondary-nav > li:last-child {
      margin-left: 10px; }
  header.site-banner .country-select-wrap {
    margin-left: 5px; }
  section.secondary-header .register-button,
  section.secondary-header .buy-button {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0; }
  section.secondary-header .less-register-button,
  section.secondary-header .less-buy-button {
    width: 100%; }
  .mobile-menu-button {
    display: inline-block;
    display: none; } }

.site {
  background-color: #000000; }

.site__inner {
  background: #ffffff;
  overflow-x: hidden; }

iframe#launcher {
  left: 0 !important;
  right: unset !important; }

.post-columns .article__teaser .article__teaser__img {
  padding-top: 0 !important; }

.post-columns .article__teaser .offers-content {
  margin-top: 20px; }
  .post-columns .article__teaser .offers-content a.more {
    color: #0E9C48;
    margin-top: 20px;
    text-decoration: underline !important;
    display: block; }
  .post-columns .article__teaser .offers-content a {
    text-decoration: none !important; }
    .post-columns .article__teaser .offers-content a p {
      text-decoration: none !important;
      color: #6b6b6b; }
    .post-columns .article__teaser .offers-content a h3 {
      margin-bottom: 20px;
      text-decoration: none !important; }

.single-offers .site__inner .site-content {
  margin-top: 0 !important; }

.post-type-archive-offers .page-intro, .post-type-archive-offers nav.next-article {
  padding: 60px 20px 50px !important;
  background: none; }

.post-type-archive-offers .article__teaser {
  min-height: 620px; }
  @media only screen and (max-width: 768px) {
    .post-type-archive-offers .article__teaser {
      min-height: unset; } }

article.post.news.single {
  margin-top: -60px; }

@media only screen and (max-width: 419px) {
  .collapsible-content-row .collapsible-content-row__panel tr {
    border-bottom: 2px solid #72777B; }
  .collapsible-content-row .collapsible-content-row__panel td {
    display: table-cell !important; } }

.site-content section.collapsible-content-row {
  padding: 50px 15px 150px !important; }

.content-media-row .hero__play-button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: block;
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
  line-height: 64px;
  text-align: center;
  pointer-events: all;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s; }
  .content-media-row .hero__play-button .icon-video-play, section.content-media-row .hero__play-button .content-media-row__media .content-media-row__play-button:before, section.content-media-row .content-media-row__media .hero__play-button .content-media-row__play-button:before, .content-media-row .hero__play-button section.model-promo-row .model-promo-row__media .model-promo-row__play-button:before, section.model-promo-row .model-promo-row__media .content-media-row .hero__play-button .model-promo-row__play-button:before {
    width: 64px;
    height: 64px;
    display: inline-block; }
  .content-media-row .hero__play-button:hover {
    background-color: rgba(255, 255, 255, 0.4); }

@media only screen and (max-width: 419px) {
  .content-media-row .content-media-row__media {
    z-index: 9 !important; } }

.content-media-row .content-media-row__media .tint:before {
  content: "";
  display: block;
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2; }

footer.site-footer {
  padding: 90px 80px;
  background: #181818;
  color: #9E9E9E;
  font-size: 14px;
  font-family: 'Roboto Condensed', sans-serif; }
  @media only screen and (max-width: 768px) {
    footer.site-footer {
      padding: 50px 30px;
      text-align: center; } }
  footer.site-footer .footer-logo img {
    width: 110px;
    margin-bottom: 20px; }
  footer.site-footer ul.footer-nav {
    text-align: left; }
  footer.site-footer p.disclaimer {
    font-size: 14px;
    opacity: 1;
    max-width: 80%;
    margin-top: 10px;
    color: white; }
    @media only screen and (max-width: 768px) {
      footer.site-footer p.disclaimer {
        max-width: 100%; } }
  footer.site-footer .site-footer__inner {
    max-width: 1450px;
    width: 100%;
    margin-left: auto;
    margin-right: auto; }
  @media only screen and (min-width: 1200px) {
    footer.site-footer {
      padding-left: 50px;
      padding-right: 50px; } }
  footer.site-footer .flex__item {
    text-align: center; }
  footer.site-footer .gform_form {
    position: relative;
    width: 70%; }
    @media screen and (max-width: 1080px) {
      footer.site-footer .gform_form {
        width: 100%; } }
  footer.site-footer .gform_footer {
    position: absolute;
    display: block;
    bottom: 32px;
    right: 0;
    padding: 0; }
    @media screen and (max-width: 1080px) {
      footer.site-footer .gform_footer {
        position: relative;
        bottom: 0; } }
  footer.site-footer .ginput_container_email {
    display: block;
    margin-bottom: 30px; }
    @media screen and (max-width: 1080px) {
      footer.site-footer .ginput_container_email {
        width: 100%;
        padding: 0px;
        margin: 0px; } }
    footer.site-footer .ginput_container_email input[type="email"] {
      height: 70px;
      background: #000000;
      border-radius: 0px;
      border: none;
      font-size: 17px;
      color: white;
      padding: 5px 25px;
      margin: 0px; }
      @media screen and (max-width: 1080px) {
        footer.site-footer .ginput_container_email input[type="email"] {
          width: 100%;
          text-align: center; } }
      footer.site-footer .ginput_container_email input[type="email"]::-webkit-input-placeholder {
        color: #9E9E9E; }
      footer.site-footer .ginput_container_email input[type="email"]::-moz-placeholder {
        color: #9E9E9E; }
      footer.site-footer .ginput_container_email input[type="email"]:-ms-input-placeholder {
        color: #9E9E9E; }
      footer.site-footer .ginput_container_email input[type="email"]::-ms-input-placeholder {
        color: #9E9E9E; }
      footer.site-footer .ginput_container_email input[type="email"]::placeholder {
        color: #9E9E9E; }
        @media screen and (max-width: 1080px) {
          footer.site-footer .ginput_container_email input[type="email"]::-webkit-input-placeholder {
            text-align: center; }
          footer.site-footer .ginput_container_email input[type="email"]::-moz-placeholder {
            text-align: center; }
          footer.site-footer .ginput_container_email input[type="email"]:-ms-input-placeholder {
            text-align: center; }
          footer.site-footer .ginput_container_email input[type="email"]::-ms-input-placeholder {
            text-align: center; }
          footer.site-footer .ginput_container_email input[type="email"]::placeholder {
            text-align: center; } }
  footer.site-footer button[type="submit"] {
    display: inline-block;
    position: relative;
    height: 70px;
    margin-right: 20px;
    background: none;
    padding: 0px;
    color: #0E9C48 !important;
    min-width: 80px; }
    @media only screen and (max-width: 768px) {
      footer.site-footer button[type="submit"] {
        position: unset;
        top: 0;
        left: 0; } }
    footer.site-footer button[type="submit"]:after {
      display: none; }
  footer.site-footer ul li {
    font-family: 'Roboto Condensed', sans-serif;
    vertical-align: top;
    display: block;
    font-size: 15px;
    line-height: 33px;
    margin-right: 0px; }
    footer.site-footer ul li a {
      color: white;
      text-decoration: none;
      position: relative; }
      footer.site-footer ul li a:hover, footer.site-footer ul li a:focus {
        color: #0E9C48; }
      footer.site-footer ul li a:before {
        display: inline-block;
        vertical-align: top;
        background-repeat: no-repeat;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        content: ''; }
  footer.site-footer ul.footer-social-nav {
    text-align: left;
    font-family: 'Roboto Condensed', sans-serif;
    margin-top: 30px; }
    @media only screen and (max-width: 768px) {
      footer.site-footer ul.footer-social-nav {
        margin-top: 20px;
        text-align: center; } }
    footer.site-footer ul.footer-social-nav li:last-child {
      margin-right: 0; }
    footer.site-footer ul.footer-social-nav li {
      vertical-align: top;
      display: inline-block;
      margin-right: 10px; }
      @media only screen and (max-width: 768px) {
        footer.site-footer ul.footer-social-nav li {
          text-align: left; } }
      footer.site-footer ul.footer-social-nav li a {
        width: 22px;
        height: 22px;
        display: inline-block;
        margin-top: -2px; }
  @media only screen and (max-width: 768px) {
    footer.site-footer ul.grey li {
      text-align: left; } }
  footer.site-footer ul.grey li a {
    color: #9E9E9E !important; }
    footer.site-footer ul.grey li a:hover, footer.site-footer ul.grey li a:focus {
      color: #0E9C48; }

@media only screen and (max-width: 768px) {
  #sb_instagram .sbi_item {
    width: 50% !important;
    display: inline-block; }
    #sb_instagram .sbi_item .sbi_photo {
      height: 170px; } }

section.hero {
  background-size: cover;
  background-position: center;
  position: relative;
  height: calc(100vh - 85px);
  min-height: 600px;
  overflow: hidden;
  pointer-events: none; }
  @media only screen and (max-width: 768px) {
    section.hero {
      background-size: cover;
      background-position: center;
      position: relative;
      height: 280px;
      background-repeat: no-repeat; } }
  section.hero.hero--small {
    height: 515px;
    min-height: 0; }
    @media only screen and (max-width: 419px) {
      section.hero.hero--small {
        height: 40vh;
        min-height: 0; } }
    section.hero.hero--small .hero__text-wrapper h1 {
      font-size: 55px;
      margin-bottom: 20px; }
  section.hero.hero--tinted:before {
    content: "";
    display: block;
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2; }
  section.hero video,
  section.hero iframe {
    /*
	    position: absolute;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
	    z-index: 1;
	    */
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    height: 100%;
    width: 177.77777778vh;
    /* 100 * 16 / 9 */
    min-width: 100%;
    min-height: 56.25vw;
    /* 100 * 9 / 16 */ }
  section.hero .hero__play-button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: block;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 5;
    line-height: 64px;
    text-align: center;
    pointer-events: all;
    background-color: rgba(255, 255, 255, 0);
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s; }
    section.hero .hero__play-button .icon-video-play, section.hero .hero__play-button section.content-media-row .content-media-row__media .content-media-row__play-button:before, section.content-media-row .content-media-row__media section.hero .hero__play-button .content-media-row__play-button:before, section.hero .hero__play-button section.model-promo-row .model-promo-row__media .model-promo-row__play-button:before, section.model-promo-row .model-promo-row__media section.hero .hero__play-button .model-promo-row__play-button:before {
      width: 64px;
      height: 64px;
      display: inline-block; }
    section.hero .hero__play-button:hover {
      background-color: rgba(255, 255, 255, 0.4); }
  section.hero .hero__text-wrapper {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 850px;
    width: 95%;
    color: #ffffff; }
    section.hero .hero__text-wrapper .surtitle {
      margin-bottom: 12px; }
    section.hero .hero__text-wrapper h1 {
      max-width: 500px;
      margin: 0 auto 35px;
      position: relative;
      color: #ffffff;
      font-size: 70px;
      line-height: .9em; }
      section.hero .hero__text-wrapper h1.decorated {
        padding-bottom: 30px; }
        section.hero .hero__text-wrapper h1.decorated:after {
          content: '';
          display: inline-block;
          height: 3px;
          width: 200px;
          position: absolute;
          bottom: 0;
          left: 50%;
          margin-left: -100px;
          background: #0E9C48; }
      @media only screen and (max-width: 419px) {
        section.hero .hero__text-wrapper h1 {
          font-size: 60px; } }
    section.hero .hero__text-wrapper p {
      font-size: 16px; }
  section.hero .scroll-button {
    text-align: center;
    position: absolute;
    bottom: 8%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: auto;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 13px;
    text-decoration: none; }
    section.hero .scroll-button:after {
      content: '';
      display: block;
      margin-top: 10px;
      left: 50%;
      position: relative;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%); }
  section.hero.hero--has-scroll-button .hero__text-wrapper {
    top: 35%; }
  section.hero .hero__text-wrapper,
  section.hero .scroll-button {
    z-index: 3;
    pointer-events: all; }

section.features-grid {
  /* Used on the news summary page */ }
  section.features-grid .features-grid__tile {
    width: 100%;
    position: relative;
    display: block;
    overflow: hidden; }
    section.features-grid .features-grid__tile .background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      -webkit-transition: -webkit-transform .8s;
      transition: -webkit-transform .8s;
      transition: transform .8s;
      transition: transform .8s, -webkit-transform .8s;
      z-index: 0; }
    section.features-grid .features-grid__tile:hover .background-image {
      -webkit-transform-origin: center;
      transform-origin: center;
      -webkit-transform: scale(1.05);
      transform: scale(1.05); }
  section.features-grid .features-grid__tile--large {
    height: 570px; }
    @media only screen and (max-width: 768px) {
      section.features-grid .features-grid__tile--large {
        height: 350px; } }
  section.features-grid .features-grid__tile--small {
    height: 285px; }
    @media only screen and (max-width: 768px) {
      section.features-grid .features-grid__tile--small {
        height: 250px; } }
  section.features-grid .features-grid__tile--text-right h2 {
    text-align: right; }
  section.features-grid .features-grid__text {
    z-index: 1;
    position: absolute;
    bottom: 85px;
    left: 65px;
    color: #ffffff;
    -webkit-transition: all .8s;
    transition: all .8s; }
    section.features-grid .features-grid__text h2 {
      max-width: 280px;
      color: #ffffff;
      margin-bottom: 10px; }
      @media only screen and (max-width: 768px) {
        section.features-grid .features-grid__text h2 {
          max-width: 100%; } }
  section.features-grid .features-grid__tile--text-top-right .features-grid__text {
    text-align: right;
    top: 75px;
    right: 35px; }
    section.features-grid .features-grid__tile--text-top-right .features-grid__text h2.decorated {
      margin-left: auto; }
      section.features-grid .features-grid__tile--text-top-right .features-grid__text h2.decorated:after {
        right: 0; }
    @media only screen and (max-width: 768px) {
      section.features-grid .features-grid__tile--text-top-right .features-grid__text {
        top: 30px;
        right: 0;
        padding-left: 30px;
        padding-right: 30px; } }
  section.features-grid .features-grid__tile--text-top-left .features-grid__text {
    text-align: left;
    top: 75px;
    left: 35px; }
    @media only screen and (max-width: 768px) {
      section.features-grid .features-grid__tile--text-top-left .features-grid__text {
        top: 30px;
        left: 0;
        padding-left: 30px;
        padding-right: 30px; } }
  section.features-grid .features-grid__tile--text-bottom-right .features-grid__text {
    text-align: right;
    bottom: 75px;
    right: 35px; }
    section.features-grid .features-grid__tile--text-bottom-right .features-grid__text h2.decorated {
      margin-left: auto; }
      section.features-grid .features-grid__tile--text-bottom-right .features-grid__text h2.decorated:after {
        right: 0; }
    @media only screen and (max-width: 768px) {
      section.features-grid .features-grid__tile--text-bottom-right .features-grid__text {
        bottom: 30px;
        right: 0;
        padding-left: 30px;
        padding-right: 30px; } }
  section.features-grid .features-grid__tile--text-bottom-left .features-grid__text {
    text-align: left;
    bottom: 75px;
    left: 35px; }
    @media only screen and (max-width: 768px) {
      section.features-grid .features-grid__tile--text-bottom-left .features-grid__text {
        bottom: 30px;
        left: 0;
        padding-left: 30px;
        padding-right: 30px; } }
  section.features-grid .features-grid__tile--text-on-hover .features-grid__text {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px); }
    @media only screen and (max-width: 768px) {
      section.features-grid .features-grid__tile--text-on-hover .features-grid__text {
        opacity: 1;
        -webkit-transform: none;
        transform: none; } }
  section.features-grid .features-grid__tile--text-on-hover:hover .features-grid__text {
    opacity: 1;
    -webkit-transform: none;
    transform: none; }
  section.features-grid.features-grid--full-width {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%; }
    @media only screen and (min-width: 1490px) {
      section.features-grid.features-grid--full-width {
        /* left */
        /* right */ }
        section.features-grid.features-grid--full-width .flex-grid__item:nth-child(odd) .features-grid__tile--text-top-left .features-grid__text, section.features-grid.features-grid--full-width .flex-grid__item:nth-child(odd) .features-grid__tile--text-bottom-left .features-grid__text {
          left: calc(100% - 680px); }
        section.features-grid.features-grid--full-width .flex-grid__item:nth-child(even) .features-grid__tile--text-top-right .features-grid__text, section.features-grid.features-grid--full-width .flex-grid__item:nth-child(even) .features-grid__tile--text-bottom-right .features-grid__text {
          right: calc(100% - 680px); } }

section.content-slider {
  height: 730px;
  background: #212121;
  overflow: hidden;
  /* custom slide animations */ }
  @media only screen and (max-width: 768px) {
    section.content-slider {
      height: auto; } }
  section.content-slider.content-slider--light {
    background: #F6F6F6; }
    section.content-slider.content-slider--light .content-slider__slide-text h2, section.content-slider.content-slider--light .content-slider__slide-text p {
      color: #212121; }
    section.content-slider.content-slider--light .swiper-pagination .swiper-pagination-bullet {
      border-color: #212121; }
    section.content-slider.content-slider--light .swiper-pagination .swiper-pagination-bullet-active {
      border-color: rgba(33, 33, 33, 0.35); }
  section.content-slider.content-slider--brand {
    background: #0E9C48; }
    section.content-slider.content-slider--brand .content-slider__slide-text h2.decorated:after {
      background: #ffffff; }
    section.content-slider.content-slider--brand .content-slider__slide-text .btn {
      outline: 2px solid #ffffff; }
    section.content-slider.content-slider--brand .swiper-pagination .swiper-pagination-bullet-active {
      border-color: rgba(255, 255, 255, 0.35); }
  section.content-slider.single-slide .swiper-pagination {
    display: none !important; }
  section.content-slider .content-slider__slide-text {
    height: 730px;
    padding-top: 120px; }
    @media only screen and (min-width: 769px) {
      section.content-slider .content-slider__slide-text {
        padding-right: 120px;
        padding-left: 20px; } }
    @media only screen and (max-width: 768px) {
      section.content-slider .content-slider__slide-text {
        position: relative;
        padding-top: 350px;
        height: auto;
        z-index: 1;
        padding: 350px 20px 100px; }
        section.content-slider .content-slider__slide-text h2 {
          position: absolute;
          top: 320px;
          -webkit-transform: translateY(-100%);
          transform: translateY(-100%); } }
    section.content-slider .content-slider__slide-text p, section.content-slider .content-slider__slide-text h1, section.content-slider .content-slider__slide-text h2, section.content-slider .content-slider__slide-text h3, section.content-slider .content-slider__slide-text h4, section.content-slider .content-slider__slide-text h5, section.content-slider .content-slider__slide-text h6, section.content-slider .content-slider__slide-text ul, section.content-slider .content-slider__slide-text ol, section.content-slider .content-slider__slide-text blockquote {
      margin-bottom: 20px; }
    section.content-slider .content-slider__slide-text h2, section.content-slider .content-slider__slide-text p {
      max-width: 340px;
      margin-left: auto;
      margin-right: auto;
      color: #ffffff; }
      @media only screen and (max-width: 768px) {
        section.content-slider .content-slider__slide-text h2, section.content-slider .content-slider__slide-text p {
          margin-left: 0;
          max-width: 100%; } }
    section.content-slider .content-slider__slide-text h2.decorated {
      padding-bottom: 30px;
      margin-bottom: 30px; }
    section.content-slider .content-slider__slide-text p {
      font-size: 16px; }
      @media only screen and (max-width: 768px) {
        section.content-slider .content-slider__slide-text p {
          font-size: 15px; } }
  section.content-slider .content-slider__slide-image {
    height: 730px;
    background-size: cover;
    background-position: center;
    position: relative; }
    @media only screen and (max-width: 768px) {
      section.content-slider .content-slider__slide-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 320px;
        z-index: 0; } }
  section.content-slider .swiper-pagination {
    position: relative;
    bottom: 180px;
    left: 0;
    max-width: 1200px;
    padding: 0 17px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: left; }
    @media only screen and (max-width: 768px) {
      section.content-slider .swiper-pagination {
        position: absolute;
        bottom: 50px;
        max-width: 100%; } }
    @media (max-width: 1450px) and (min-width: 960px) {
      section.content-slider .swiper-pagination {
        left: calc(25% - 240px);
        margin-left: 0;
        margin-right: 0; } }
    section.content-slider .swiper-pagination .swiper-pagination-bullet {
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background: transparent;
      border: 2px solid #ffffff;
      opacity: 1; }
    section.content-slider .swiper-pagination .swiper-pagination-bullet-active {
      border-color: #ffffff;
      background: #ffffff;
      pointer-events: none;
      cursor: default; }
  section.content-slider.content-slider--content-on-right .swiper-pagination {
    text-align: right; }
  section.content-slider .swiper-slide {
    position: absolute;
    z-index: 1;
    pointer-events: none; }
    section.content-slider .swiper-slide.swiper-slide-active {
      z-index: 2;
      pointer-events: all; }
    section.content-slider .swiper-slide .content-slider__slide-text, section.content-slider .swiper-slide .content-slider__slide-image {
      opacity: 0; }
    section.content-slider .swiper-slide .content-slider__slide-text {
      -webkit-transition: all 1s;
      transition: all 1s;
      -webkit-transition-delay: 0s;
      transition-delay: 0s; }
    section.content-slider .swiper-slide .content-slider__slide-image {
      -webkit-transition: opacity 1s, -webkit-transform 1s;
      transition: opacity 1s, -webkit-transform 1s;
      transition: transform 1s, opacity 1s;
      transition: transform 1s, opacity 1s, -webkit-transform 1s;
      -webkit-transition-delay: 0.5s;
      transition-delay: 0.5s; }
    @media only screen and (max-width: 768px) {
      section.content-slider .swiper-slide {
        position: absolute; } }
  section.content-slider .swiper-slide-next .content-slider__slide-text, section.content-slider .swiper-slide-next .content-slider__slide-image {
    -webkit-transform: translateX(20px);
    transform: translateX(20px); }
  section.content-slider .swiper-slide-prev .content-slider__slide-text, section.content-slider .swiper-slide-prev .content-slider__slide-image {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px); }
  section.content-slider .swiper-slide-active .content-slider__slide-text {
    opacity: 1;
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
    -webkit-transform: none;
    transform: none; }
  section.content-slider .swiper-slide-active .content-slider__slide-image {
    opacity: 1;
    -webkit-transition-delay: 2s;
    transition-delay: 2s; }
  section.content-slider .content-slider__slide-number {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #72777B;
    font-size: 250px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700 !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    z-index: 2;
    opacity: 1;
    -webkit-transition: all 1s;
    transition: all 1s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s; }
    @media only screen and (min-width: 420px) and (max-width: 768px) {
      section.content-slider .content-slider__slide-number {
        font-size: 150px; } }
    @media only screen and (max-width: 768px) {
      section.content-slider .content-slider__slide-number {
        display: none; } }
    section.content-slider .content-slider__slide-number.out-left {
      opacity: 0;
      -webkit-transition-delay: .3s;
      transition-delay: .3s;
      -webkit-transform: translate(-60%, -50%);
      transform: translate(-60%, -50%); }
    section.content-slider .content-slider__slide-number.out-right {
      opacity: 0;
      -webkit-transition-delay: .3s;
      transition-delay: .3s;
      -webkit-transform: translate(-40%, -50%);
      transform: translate(-40%, -50%); }
    section.content-slider .content-slider__slide-number.instant-switch {
      -webkit-transition-duration: 0s;
      transition-duration: 0s;
      -webkit-transition-delay: 0s;
      transition-delay: 0s; }

section.multi-column-content-slider {
  padding: 90px 8vw;
  position: relative;
  overflow: hidden;
  background: #ffffff; }
  @media only screen and (max-width: 768px) {
    section.multi-column-content-slider {
      padding: 50px 20px; } }
  section.multi-column-content-slider h2 {
    text-align: center;
    margin-bottom: 20px; }
  section.multi-column-content-slider .swiper-slide {
    padding: 0 00px;
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out; }
    section.multi-column-content-slider .swiper-slide h3 {
      font-size: 22px; }
    section.multi-column-content-slider .swiper-slide.swiper-slide-visible {
      opacity: 1; }
    section.multi-column-content-slider .swiper-slide h3 {
      font-weight: 700;
      font-size: 1.7em;
      line-height: 27px;
      letter-spacing: 1px;
      color: #434343;
      font-family: 'Rajdhani', sans-serif; }
    section.multi-column-content-slider .swiper-slide .prefix {
      color: #72777b;
      letter-spacing: 2px;
      font-size: 1rem;
      font-weight: 600;
      font-family: 'Rajdhani', sans-serif;
      line-height: 35px;
      text-transform: uppercase; }
    section.multi-column-content-slider .swiper-slide .price {
      letter-spacing: 1px;
      color: #0E9C48;
      font-size: 70px;
      font-weight: 700;
      font-family: 'Rajdhani', sans-serif;
      line-height: 60px;
      margin: 0; }
      @media only screen and (max-width: 419px) {
        section.multi-column-content-slider .swiper-slide .price {
          font-size: 4rem;
          display: block;
          line-height: 40px;
          margin-bottom: 0; } }
    @media only screen and (max-width: 768px) {
      section.multi-column-content-slider .swiper-slide {
        text-align: center;
        padding-left: 15%;
        padding-right: 15%; }
        section.multi-column-content-slider .swiper-slide a.btn {
          text-align: center; } }
    @media only screen and (max-width: 419px) {
      section.multi-column-content-slider .swiper-slide {
        padding: 0; } }
  section.multi-column-content-slider .swiper-button-prev.swiper-button-disabled {
    opacity: 0.5; }
  section.multi-column-content-slider .swiper-button-next.swiper-button-disabled {
    opacity: 0.7; }

section.content-media-row {
  height: 515px;
  background: #212121; }
  @media only screen and (max-width: 768px) {
    section.content-media-row {
      height: auto; } }
  section.content-media-row.content-media-row--white {
    background: #ffffff; }
    section.content-media-row.content-media-row--white .content-media-row__content {
      color: #212121; }
      section.content-media-row.content-media-row--white .content-media-row__content h2 {
        color: #212121; }
  section.content-media-row.content-media-row--light {
    background: #F6F6F6; }
    section.content-media-row.content-media-row--light .content-media-row__content {
      color: #212121; }
      section.content-media-row.content-media-row--light .content-media-row__content h2 {
        color: #212121; }
  section.content-media-row.content-media-row--brand {
    background: #0E9C48; }
    section.content-media-row.content-media-row--brand .content-media-row__content {
      color: #ffffff; }
      section.content-media-row.content-media-row--brand .content-media-row__content h2 {
        color: #ffffff; }
        section.content-media-row.content-media-row--brand .content-media-row__content h2.decorated:after {
          background: #ffffff; }
      section.content-media-row.content-media-row--brand .content-media-row__content .btn {
        outline: 2px solid #ffffff; }
  section.content-media-row .flex-grid__item {
    position: relative;
    height: 515px; }
    @media only screen and (max-width: 768px) {
      section.content-media-row .flex-grid__item {
        height: auto;
        position: static; } }
  section.content-media-row .content-media-row__content {
    text-align: center;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 514px;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding-left: 20px;
    padding-right: 20px; }
    @media only screen and (max-width: 768px) {
      section.content-media-row .content-media-row__content {
        position: relative;
        top: auto;
        left: auto;
        max-width: 100%;
        padding: 370px 20px 50px;
        -webkit-transform: none;
        transform: none;
        z-index: 1; } }
    section.content-media-row .content-media-row__content h2 {
      color: #ffffff;
      margin-bottom: 20px; }
      section.content-media-row .content-media-row__content h2.decorated:after {
        left: 50%;
        margin-left: -83px; }
    section.content-media-row .content-media-row__content p {
      font-size: 16px;
      margin-bottom: 25px; }
  section.content-media-row .content-media-row__media {
    position: relative;
    height: 515px;
    overflow: hidden; }
    @media only screen and (max-width: 768px) {
      section.content-media-row .content-media-row__media {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 320px;
        z-index: 0; } }
    section.content-media-row .content-media-row__media .background-image, section.content-media-row .content-media-row__media video {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background-color: #212121;
      background-size: cover;
      background-position: center;
      -webkit-transition: -webkit-transform 1s;
      transition: -webkit-transform 1s;
      transition: transform 1s;
      transition: transform 1s, -webkit-transform 1s; }
    section.content-media-row .content-media-row__media .background-image:hover {
      -webkit-transform: scale(1.05);
      transform: scale(1.05); }
    section.content-media-row .content-media-row__media .content-media-row__play-button {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0; }
      section.content-media-row .content-media-row__media .content-media-row__play-button:before {
        content: '';
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }

section.post-rows {
  padding-top: 15px;
  background-color: #ffffff;
  padding-bottom: 1px; }
  section.post-rows article.post-rows__post {
    margin-bottom: 15px;
    background: #F6F6F6;
    text-align: center;
    position: relative;
    -webkit-transition: background 0.4s ease-in-out;
    transition: background 0.4s ease-in-out; }
    section.post-rows article.post-rows__post a {
      text-decoration: none; }
    section.post-rows article.post-rows__post .post-rows__content {
      max-width: 640px;
      width: 100%;
      margin: 0 auto;
      padding: 50px 20px 45px; }
      section.post-rows article.post-rows__post .post-rows__content h2.decorated:after {
        left: 50%;
        margin-left: -83px; }
      section.post-rows article.post-rows__post .post-rows__content .post-rows__meta {
        position: relative; }
      section.post-rows article.post-rows__post .post-rows__content .post-rows__date, section.post-rows article.post-rows__post .post-rows__content .post-rows__read-more {
        display: inline-block;
        text-transform: uppercase;
        font-family: 'Roboto Condensed', sans-serif;
        font-weight: 300;
        font-style: italic;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 18px;
        color: #212121;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        -webkit-transition-delay: .1s;
        transition-delay: .1s; }
      section.post-rows article.post-rows__post .post-rows__content .post-rows__read-more {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        text-align: center;
        opacity: 0;
        -webkit-transform: translateY(7px);
        transform: translateY(7px);
        color: #0E9C48;
        -webkit-transition-delay: 0;
        transition-delay: 0; }
    section.post-rows article.post-rows__post:hover {
      background-color: #e9e9e9; }
      section.post-rows article.post-rows__post:hover .post-rows__content .post-rows__date {
        opacity: 0;
        -webkit-transform: translateY(-7px);
        transform: translateY(-7px);
        -webkit-transition-delay: 0;
        transition-delay: 0; }
      section.post-rows article.post-rows__post:hover .post-rows__content .post-rows__read-more {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
        -webkit-transition-delay: .1s;
        transition-delay: .1s; }

section.post-columns-slider-row {
  padding: 80px 30px 40px; }
  section.post-columns-slider-row .row__header {
    text-align: center;
    margin-bottom: 40px; }
    section.post-columns-slider-row .row__header h3 {
      color: #0E9C48; }
  section.post-columns-slider-row .post-columns-slider {
    overflow: hidden;
    position: relative;
    padding-bottom: 60px; }
  section.post-columns-slider-row .swiper-wrapper,
  section.post-columns-slider-row .swiper-slide {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }
  section.post-columns-slider-row .swiper-slide {
    text-align: left; }
    section.post-columns-slider-row .swiper-slide a {
      -webkit-transition: color 0.5s ease;
      transition: color 0.5s ease; }
      section.post-columns-slider-row .swiper-slide a:hover {
        color: #0E9C48; }
  section.post-columns-slider-row .swiper-button-next, section.post-columns-slider-row .swiper-button-prev {
    top: 95%;
    background-repeat: no-repeat;
    background-position: left;
    background-size: 58px 16px;
    width: 16px;
    height: 16px;
    bottom: 3px;
    top: auto; }
  section.post-columns-slider-row .swiper-button-prev {
    left: calc(50% - 60px); }
  section.post-columns-slider-row .swiper-button-next {
    right: calc(50% - 60px); }
  section.post-columns-slider-row .article__teaser .article__teaser__img {
    display: block;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    height: 200px; }
    section.post-columns-slider-row .article__teaser .article__teaser__img img {
      -webkit-transition: all .2s ease-in-out;
      transition: all .2s ease-in-out; }
    section.post-columns-slider-row .article__teaser .article__teaser__img:hover img {
      -webkit-transform: scale(1.1);
      transform: scale(1.1); }
  section.post-columns-slider-row .article__teaser h3 {
    text-decoration: none;
    color: #808080;
    font-size: 20px;
    text-transform: none; }
  section.post-columns-slider-row .article__teaser p {
    margin-bottom: 20px;
    line-height: 1.8em; }
  section.post-columns-slider-row .article__teaser .btn {
    color: #D8271C;
    border: 2px solid #D8271C;
    background: none;
    width: 60%;
    text-align: center;
    padding: 13px 30px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out; }
    section.post-columns-slider-row .article__teaser .btn:hover {
      color: #000000;
      border: 2px solid #000000; }
    @media only screen and (max-width: 419px) {
      section.post-columns-slider-row .article__teaser .btn {
        width: 100%; } }

section.newsletter-signup {
  background: #F6F6F6;
  height: 515px; }
  @media only screen and (max-width: 768px) {
    section.newsletter-signup {
      height: auto;
      width: 100%; } }
  section.newsletter-signup .newsletter-signup__media {
    position: relative;
    overflow: hidden;
    height: 515px; }
    @media only screen and (max-width: 768px) {
      section.newsletter-signup .newsletter-signup__media {
        height: 320px;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%; } }
    section.newsletter-signup .newsletter-signup__media .background-image {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      -webkit-transition: -webkit-transform 1.2s ease-in-out;
      transition: -webkit-transform 1.2s ease-in-out;
      transition: transform 1.2s ease-in-out;
      transition: transform 1.2s ease-in-out, -webkit-transform 1.2s ease-in-out;
      background-size: cover;
      background-position: center; }
  section.newsletter-signup .content-media-row__content {
    padding: 75px; }
    @media only screen and (max-width: 768px) {
      section.newsletter-signup .content-media-row__content {
        position: relative;
        padding: 350px 20px 50px; } }
    section.newsletter-signup .content-media-row__content h2.decorated,
    section.newsletter-signup .content-media-row__content .gform_title {
      margin-bottom: 30px; }
      section.newsletter-signup .content-media-row__content h2.decorated:after,
      section.newsletter-signup .content-media-row__content .gform_title:after {
        left: 50%;
        margin-left: -83px; }
    section.newsletter-signup .content-media-row__content .gform_title {
      padding-bottom: 24px;
      margin-bottom: 30px;
      position: relative;
      font-size: 40px;
      width: 250px;
      max-width: 100%;
      margin-left: auto;
      margin-right: auto; }
      section.newsletter-signup .content-media-row__content .gform_title:after {
        content: '';
        display: block;
        width: 166px;
        height: 3px;
        position: absolute;
        bottom: 0;
        background: #0E9C48; }
    section.newsletter-signup .content-media-row__content form {
      width: 515px;
      max-width: 100%;
      margin-left: auto;
      margin-right: auto; }
      @media only screen and (max-width: 768px) {
        section.newsletter-signup .content-media-row__content form {
          width: 650px; } }
    section.newsletter-signup .content-media-row__content form,
    section.newsletter-signup .content-media-row__content .gform_footer {
      text-align: center; }
    section.newsletter-signup .content-media-row__content .gform_footer {
      padding-top: 15px; }
      section.newsletter-signup .content-media-row__content .gform_footer .gform_ajax_spinner {
        display: none !important; }
  section.newsletter-signup.newsletter-signup--dark {
    background: #212121; }
    section.newsletter-signup.newsletter-signup--dark h2,
    section.newsletter-signup.newsletter-signup--dark .gform_title {
      color: #ffffff; }
  section.newsletter-signup form .form-fields li, section.newsletter-signup form .gform_fields li,
  section.newsletter-signup form .gform_fields li,
  section.newsletter-signup form .form-fields > .gfield,
  section.newsletter-signup form .gform_fields > .gfield,
  section.newsletter-signup form .gform_fields > .gfield,
  section.newsletter-signup form .gform_fields li,
  section.newsletter-signup form .gform_fields > .gfield {
    margin-bottom: 0; }
  section.newsletter-signup form input.input-text,
  section.newsletter-signup form .gform_fields textarea,
  section.newsletter-signup form .gform_fields input[type="text"],
  section.newsletter-signup form .gform_fields input[type="password"],
  section.newsletter-signup form .gform_fields input[type="name"],
  section.newsletter-signup form .gform_fields input[type="email"],
  section.newsletter-signup form .gform_fields input[type="url"],
  section.newsletter-signup form .gform_fields input[type="tel"],
  section.newsletter-signup form .gform_fields input[type="color"],
  section.newsletter-signup form .gform_fields input[type="number"] {
    height: 58px;
    border: none;
    border-radius: 0;
    padding: 4px 30px;
    font-size: 15px;
    font-weight: 700;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 10px; }
    @media only screen and (max-width: 768px) {
      section.newsletter-signup form input.input-text,
      section.newsletter-signup form .gform_fields textarea,
      section.newsletter-signup form .gform_fields input[type="text"],
      section.newsletter-signup form .gform_fields input[type="password"],
      section.newsletter-signup form .gform_fields input[type="name"],
      section.newsletter-signup form .gform_fields input[type="email"],
      section.newsletter-signup form .gform_fields input[type="url"],
      section.newsletter-signup form .gform_fields input[type="tel"],
      section.newsletter-signup form .gform_fields input[type="color"],
      section.newsletter-signup form .gform_fields input[type="number"] {
        width: 45%;
        margin-left: 1%;
        margin-right: 1%;
        display: inline-block; } }
    @media only screen and (max-width: 419px) {
      section.newsletter-signup form input.input-text,
      section.newsletter-signup form .gform_fields textarea,
      section.newsletter-signup form .gform_fields input[type="text"],
      section.newsletter-signup form .gform_fields input[type="password"],
      section.newsletter-signup form .gform_fields input[type="name"],
      section.newsletter-signup form .gform_fields input[type="email"],
      section.newsletter-signup form .gform_fields input[type="url"],
      section.newsletter-signup form .gform_fields input[type="tel"],
      section.newsletter-signup form .gform_fields input[type="color"],
      section.newsletter-signup form .gform_fields input[type="number"] {
        display: block;
        width: 100%;
        margin-left: 0;
        margin-right: 0; } }
  section.newsletter-signup form input.input-text,
  section.newsletter-signup form .gform_fields .gfield_error textarea,
  section.newsletter-signup form .gform_fields .gfield_error input[type="text"],
  section.newsletter-signup form .gform_fields .gfield_error input[type="password"],
  section.newsletter-signup form .gform_fields .gfield_error input[type="name"],
  section.newsletter-signup form .gform_fields .gfield_error input[type="email"],
  section.newsletter-signup form .gform_fields .gfield_error input[type="url"],
  section.newsletter-signup form .gform_fields .gfield_error input[type="tel"],
  section.newsletter-signup form .gform_fields .gfield_error input[type="color"],
  section.newsletter-signup form .gform_fields .gfield_error input[type="number"] {
    border: 1px solid #8A0E1D; }
  section.newsletter-signup form button {
    position: relative; }
  section.newsletter-signup ::-webkit-input-placeholder {
    color: #212121; }
  section.newsletter-signup ::-moz-placeholder {
    color: #212121; }
  section.newsletter-signup :-ms-input-placeholder {
    color: #212121; }
  section.newsletter-signup input:-moz-placeholder {
    color: #212121; }

.page-intro, nav.next-article {
  text-align: center;
  padding: 100px 20px 80px;
  background: #ffffff; }
  @media only screen and (max-width: 768px) {
    .page-intro, nav.next-article {
      padding: 50px 20px; } }
  .page-intro .page-intro__inner, nav.next-article .page-intro__inner {
    max-width: 1180px;
    margin: 0 auto; }
  .page-intro.no-padding-bottom, nav.no-padding-bottom.next-article {
    padding-bottom: 0; }
  .page-intro .surtitle, nav.next-article .surtitle {
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 17px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 35px;
    line-height: 1;
    color: #0E9C48; }
  .page-intro .page-intro__back-link, nav.next-article .page-intro__back-link {
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 17px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 35px;
    line-height: 1; }
    .page-intro .page-intro__back-link:before, nav.next-article .page-intro__back-link:before {
      content: '';
      display: inline-block;
      margin-right: 9px;
      -webkit-transform: rotate(180deg);
      transform: rotate(180deg);
      vertical-align: top;
      position: relative;
      top: 2px;
      -webkit-transition: -webkit-transform 0.4s ease-in-out;
      transition: -webkit-transform 0.4s ease-in-out;
      transition: transform 0.4s ease-in-out;
      transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out; }
    .page-intro .page-intro__back-link:hover:before, nav.next-article .page-intro__back-link:hover:before, .page-intro .page-intro__back-link:focus:before, nav.next-article .page-intro__back-link:focus:before {
      -webkit-transform: translateX(-10px) rotate(180deg);
      transform: translateX(-10px) rotate(180deg); }
  .page-intro h1, nav.next-article h1 {
    max-width: 630px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px; }
  .page-intro .page-intro__date, nav.next-article .page-intro__date {
    display: inline-block;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-style: italic;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
    color: #212121;
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1; }
  .page-intro .share-line, nav.next-article .share-line {
    position: relative;
    margin: 30px auto 40px;
    max-width: 1080px; }
    .page-intro .share-line:before, nav.next-article .share-line:before {
      content: '';
      display: block;
      height: 3px;
      background: #0E9C48;
      top: 50%;
      left: 0;
      width: 100%;
      margin-top: -2px;
      position: absolute;
      z-index: 1; }
    .page-intro .share-line .share-line__buttons, nav.next-article .share-line .share-line__buttons {
      position: relative;
      z-index: 2;
      background: #ffffff;
      display: inline-block;
      width: auto;
      margin: 0 auto;
      padding: 0 10px; }
    .page-intro .share-line .share-button, nav.next-article .share-line .share-button {
      width: 50px;
      height: 50px;
      display: inline-block;
      margin: 0 5px;
      background-color: #D8D8D8;
      border-radius: 30px;
      background-repeat: no-repeat;
      background-position: center;
      position: relative; }
      .page-intro .share-line .share-button:hover, nav.next-article .share-line .share-button:hover, .page-intro .share-line .share-button:focus, nav.next-article .share-line .share-button:focus {
        background-color: #0E9C48; }
      .page-intro .share-line .share-button:before, nav.next-article .share-line .share-button:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        display: inline-block; }
  .page-intro p, nav.next-article p {
    font-size: 16px;
    text-align: center; }
    @media only screen and (max-width: 768px) {
      .page-intro p, nav.next-article p {
        font-size: 15px; } }

section.product-row {
  padding: 0 15px 15px;
  background: #ffffff;
  min-height: 440px; }
  @media only screen and (min-width: 1200px) {
    section.product-row {
      min-height: 560px; } }
  @media only screen and (max-width: 768px) {
    section.product-row {
      height: auto; } }
  section.product-row .product-row__media {
    position: relative;
    min-height: 440px;
    background: #F6F6F6; }
    @media only screen and (min-width: 1200px) {
      section.product-row .product-row__media {
        min-height: 560px; } }
    @media only screen and (max-width: 768px) {
      section.product-row .product-row__media {
        height: auto;
        min-height: 0; } }
  section.product-row .product-row__image {
    max-width: 85%;
    max-height: 85%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
    @media only screen and (max-width: 768px) {
      section.product-row .product-row__image {
        padding: 20px;
        position: relative;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: block;
        max-height: 100%;
        top: 0;
        left: 0;
        -webkit-transform: none;
        transform: none; } }
  section.product-row .product-row__content {
    background: #F6F6F6;
    min-height: 440px;
    padding: 80px 40px 40px; }
    @media only screen and (min-width: 1200px) {
      section.product-row .product-row__content {
        min-height: 560px; } }
    @media only screen and (max-width: 768px) {
      section.product-row .product-row__content {
        height: auto;
        min-height: 0;
        padding: 0 20px 40px;
        text-align: center; }
        section.product-row .product-row__content a.btn {
          width: 100%; }
        section.product-row .product-row__content a.btn + a.btn {
          margin-top: 20px; } }
    section.product-row .product-row__content h2 {
      font-size: 55px;
      margin-bottom: 20px; }
    section.product-row .product-row__content .product-row__specs-features {
      max-width: 330px;
      border-top: 3px solid #D8D8D8;
      margin-top: 30px;
      margin-left: 0;
      margin-right: 0;
      padding-top: 40px; }
      @media only screen and (max-width: 768px) {
        section.product-row .product-row__content .product-row__specs-features {
          padding-top: 10px;
          margin-right: auto;
          margin-left: auto;
          max-width: 450px; } }
    section.product-row .product-row__content .product-row__specs {
      max-width: 330px;
      border-top: 3px solid #D8D8D8;
      margin-top: 30px;
      margin-left: 0;
      margin-right: 0;
      padding-top: 40px; }
      @media only screen and (max-width: 768px) {
        section.product-row .product-row__content .product-row__specs {
          padding-top: 10px;
          margin-right: auto;
          margin-left: auto;
          max-width: 450px; } }
      section.product-row .product-row__content .product-row__specs h3 {
        font-family: 'Roboto', sans-serif;
        font-weight: bold;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 15px;
        margin-bottom: 10px; }
        @media only screen and (max-width: 768px) {
          section.product-row .product-row__content .product-row__specs h3 {
            margin-top: 20px; } }
      section.product-row .product-row__content .product-row__specs p.product-row__spec {
        font-family: 'Rajdhani', sans-serif;
        font-weight: 700 !important;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 40px;
        text-transform: uppercase;
        line-height: 1; }
      section.product-row .product-row__content .product-row__specs a.product-row__spec-link {
        display: block;
        font-size: 16px;
        margin-top: 10px;
        text-transform: none; }
    section.product-row .product-row__content .product-row__features {
      margin-top: 30px; }
    section.product-row .product-row__content .text-cta {
      margin-top: 15px;
      vertical-align: top;
      display: inline-block;
      margin-left: 25px; }

.archive section.product-row .product-row__features {
  margin-bottom: 30px; }

.archive section.product-row .product-row__content {
  padding: 130px 40px 40px; }

section.content-feature-image {
  overflow: hidden;
  height: 610px;
  position: relative; }
  @media only screen and (max-width: 768px) {
    section.content-feature-image {
      height: auto;
      padding-top: 50px; } }
  section.content-feature-image.content-feature-image--overflow {
    overflow: visible;
    z-index: 2; }
  section.content-feature-image.content-feature-image--brand {
    background: #0E9C48; }
    section.content-feature-image.content-feature-image--brand .content-feature__content {
      color: #ffffff; }
      section.content-feature-image.content-feature-image--brand .content-feature__content h2 {
        color: #ffffff; }
        section.content-feature-image.content-feature-image--brand .content-feature__content h2.decorated:after {
          background: #ffffff; }
      section.content-feature-image.content-feature-image--brand .content-feature__content .btn {
        outline: 2px solid #ffffff; }
  section.content-feature-image.content-feature-image--white {
    background: #ffffff; }
  section.content-feature-image.content-feature-image--dark {
    background: #212121; }
    section.content-feature-image.content-feature-image--dark .content-feature__content h2, section.content-feature-image.content-feature-image--dark .content-feature__content p {
      color: #ffffff; }
  section.content-feature-image img {
    position: absolute;
    top: 50%;
    left: 75%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 50%; }
    @media only screen and (max-width: 768px) {
      section.content-feature-image img {
        bottom: 0;
        top: auto;
        right: 0;
        left: auto;
        -webkit-transform: none;
        transform: none;
        width: auto;
        max-height: 400px; } }
  @media only screen and (max-width: 768px) and (max-width: 419px) {
    section.content-feature-image img {
      max-height: 280px; } }
  section.content-feature-image .content-feature__content {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 30%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 50%; }
    @media only screen and (max-width: 768px) {
      section.content-feature-image .content-feature__content {
        position: relative;
        top: auto;
        left: auto;
        -webkit-transform: none;
        transform: none;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 300px; } }
    section.content-feature-image .content-feature__content h2 {
      max-width: 280px;
      margin: 0 auto 20px; }
      section.content-feature-image .content-feature__content h2.decorated:after {
        left: 50%;
        margin-left: -83px; }
    section.content-feature-image .content-feature__content p {
      margin-bottom: 20px; }
  section.content-feature-image.content-feature-image--image-left img {
    left: 25%; }
    @media only screen and (max-width: 768px) {
      section.content-feature-image.content-feature-image--image-left img {
        top: -40px;
        bottom: auto;
        left: 0;
        right: auto;
        -webkit-transform: none;
        transform: none;
        width: auto;
        max-height: 400px; } }
    @media only screen and (max-width: 419px) {
      section.content-feature-image.content-feature-image--image-left img {
        max-height: 320px; } }
  section.content-feature-image.content-feature-image--image-left .content-feature__content {
    left: 70%; }
    @media only screen and (max-width: 768px) {
      section.content-feature-image.content-feature-image--image-left .content-feature__content {
        padding-top: 230px;
        padding-bottom: 50px;
        left: 0; } }

section.full-width-image-row {
  height: 730px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  text-align: left; }
  section.full-width-image-row h2, section.full-width-image-row p {
    color: #ffffff !important; }
  @media only screen and (max-width: 768px) {
    section.full-width-image-row {
      height: 530px; } }
  section.full-width-image-row .background-image {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 120%;
    background-position: center;
    background-size: cover; }
  section.full-width-image-row.full-width-image-row--dark .full-width-image-row__content h2.huge, section.full-width-image-row.full-width-image-row--dark .full-width-image-row__content .giga, section.full-width-image-row.full-width-image-row--dark .full-width-image-row__content h3, section.full-width-image-row.full-width-image-row--dark .full-width-image-row__content p {
    color: #212121; }
  section.full-width-image-row.full-width-image-row--dark .full-width-image-row__content h3:before {
    background: #212121; }
  section.full-width-image-row.full-width-image-row--center .full-width-image-row__content {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center; }
    section.full-width-image-row.full-width-image-row--center .full-width-image-row__content h2.decorated:after {
      left: 50%;
      margin-left: -83px; }
    section.full-width-image-row.full-width-image-row--center .full-width-image-row__content h3:before {
      left: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); }
  section.full-width-image-row.full-width-image-row--right .full-width-image-row__content {
    left: auto;
    right: 8%;
    text-align: right; }
    section.full-width-image-row.full-width-image-row--right .full-width-image-row__content h3:before {
      left: auto;
      right: 0; }
  section.full-width-image-row.full-width-image-row--tinted:before {
    content: "";
    display: block;
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2; }
  section.full-width-image-row .full-width-image-row__content {
    position: absolute;
    bottom: 14%;
    left: 8%;
    max-width: 420px;
    width: 100%;
    z-index: 3; }
    @media only screen and (max-width: 768px) {
      section.full-width-image-row .full-width-image-row__content {
        left: 0;
        bottom: 50px;
        width: auto;
        padding: 0 30px; } }
    section.full-width-image-row .full-width-image-row__content h2.huge,
    section.full-width-image-row .full-width-image-row__content .giga {
      font-size: 200px;
      padding-bottom: 6px;
      line-height: 1;
      color: #ffffff;
      text-indent: -10px; }
      @media only screen and (max-width: 768px) {
        section.full-width-image-row .full-width-image-row__content h2.huge,
        section.full-width-image-row .full-width-image-row__content .giga {
          font-size: 90px !important;
          text-indent: -5px;
          line-height: 70px; } }
    section.full-width-image-row .full-width-image-row__content h3 {
      font-size: 30px;
      margin-bottom: 10px;
      color: #ffffff;
      padding-top: 20px;
      position: relative; }
      section.full-width-image-row .full-width-image-row__content h3:before {
        content: '';
        width: 140px;
        height: 3px;
        background: #ffffff;
        position: absolute;
        top: 0;
        left: 0; }
    section.full-width-image-row .full-width-image-row__content p {
      font-size: 16px;
      padding: 0; }

section.full-width-image-row.full-width-image-row--video-content {
  height: auto; }
  section.full-width-image-row.full-width-image-row--video-content .full-width-image-row__content {
    max-width: 1180px;
    height: 100%;
    width: auto;
    position: relative;
    bottom: 0;
    padding: 80px;
    -webkit-transform: none;
    transform: none;
    left: 0;
    margin: 0 auto; }
    @media only screen and (min-width: 420px) and (max-width: 768px) {
      section.full-width-image-row.full-width-image-row--video-content .full-width-image-row__content {
        padding: 40px; } }
    @media only screen and (max-width: 419px) {
      section.full-width-image-row.full-width-image-row--video-content .full-width-image-row__content {
        padding: 0; } }

section.multi-column-content {
  background: #F6F6F6;
  padding: 100px 20px; }
  @media only screen and (max-width: 768px) {
    section.multi-column-content {
      padding: 50px 0 10px; } }
  section.multi-column-content .multi-column-content__inner {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media only screen and (max-width: 768px) {
      section.multi-column-content .multi-column-content__inner {
        max-width: 100%;
        display: block; } }
    section.multi-column-content .multi-column-content__inner .multi-column-content__column {
      padding: 0 15px;
      width: 25%;
      position: relative;
      min-height: 690px; }
      @media only screen and (max-width: 768px) {
        section.multi-column-content .multi-column-content__inner .multi-column-content__column {
          padding: 0 20px 40px;
          width: 100%; } }
      section.multi-column-content .multi-column-content__inner .multi-column-content__column h2 {
        margin-bottom: 40px;
        max-width: 340px; }
      section.multi-column-content .multi-column-content__inner .multi-column-content__column p {
        margin-bottom: 25px;
        font-size: 16px; }
      section.multi-column-content .multi-column-content__inner .multi-column-content__column .btn {
        position: absolute;
        bottom: 0; }
      @media only screen and (max-width: 419px) {
        section.multi-column-content .multi-column-content__inner .multi-column-content__column .btn {
          width: 100%;
          position: relative; } }

section.image-grid {
  background: black; }
  section.image-grid .grid-sizer, section.image-grid .grid-item {
    display: inline-block;
    width: 25%;
    height: 14.5vw;
    border: 2px solid black;
    position: relative;
    overflow: hidden; }
    section.image-grid .grid-sizer.grid-item--width2, section.image-grid .grid-item.grid-item--width2 {
      width: 50%; }
    section.image-grid .grid-sizer.grid-item--height2, section.image-grid .grid-item.grid-item--height2 {
      height: 29vw; }
    section.image-grid .grid-sizer.grid-item--height3, section.image-grid .grid-item.grid-item--height3 {
      height: 43.5vw; }
    @media only screen and (max-width: 419px) {
      section.image-grid .grid-sizer, section.image-grid .grid-item {
        display: none; }
        section.image-grid .grid-sizer.grid-item--width2.grid-item--height3, section.image-grid .grid-item.grid-item--width2.grid-item--height3 {
          display: block;
          width: 100%;
          height: 100vw; }
          section.image-grid .grid-sizer.grid-item--width2.grid-item--height3 a, section.image-grid .grid-item.grid-item--width2.grid-item--height3 a {
            opacity: 1; } }
    section.image-grid .grid-sizer a, section.image-grid .grid-item a {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: block;
      opacity: 0;
      -webkit-transition: opacity 0.4s ease-in-out;
      transition: opacity 0.4s ease-in-out; }
      section.image-grid .grid-sizer a:hover, section.image-grid .grid-sizer a:focus, section.image-grid .grid-item a:hover, section.image-grid .grid-item a:focus {
        opacity: 1; }
      section.image-grid .grid-sizer a:before, section.image-grid .grid-item a:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
    section.image-grid .grid-sizer .background-image, section.image-grid .grid-item .background-image {
      background-size: cover;
      background-position: 50%;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      -webkit-transition: -webkit-transform 1s;
      transition: -webkit-transform 1s;
      transition: transform 1s;
      transition: transform 1s, -webkit-transform 1s; }
    section.image-grid .grid-sizer:hover .background-image, section.image-grid .grid-item:hover .background-image {
      -webkit-transform: scale(1.05);
      transform: scale(1.05); }

@media only screen and (max-width: 768px) {
  section.gallery-slider {
    margin-bottom: 50px;
    margin-top: -30px; } }

section.gallery-slider .swiper-button-next {
  right: 11vw; }

section.gallery-slider .swiper-button-prev {
  left: 11vw; }

section.gallery-slider .swiper-pagination {
  width: 100%;
  margin: 0 auto;
  margin-top: 20px; }
  section.gallery-slider .swiper-pagination .swiper-pagination-bullet {
    cursor: pointer;
    margin-right: 10px;
    border: 3px solid #c1c1c1;
    background: none;
    opacity: 1;
    padding: 3px; }
  section.gallery-slider .swiper-pagination .swiper-pagination-bullet-active {
    cursor: pointer;
    margin-right: 10px;
    border: none;
    border: 3px solid #a27b3e;
    background: #a27b3e;
    opacity: 1;
    padding: 3px; }

section.gallery-slider .gallery-slider-wrapper {
  height: 600px;
  width: 100%;
  max-width: 935px;
  margin: 0 auto;
  border-radius: 5px;
  background: black;
  z-index: 9;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.02), 0 6.7px 5.3px rgba(0, 0, 0, 0.028), 0 12.5px 10px rgba(0, 0, 0, 0.035), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.05), 0 100px 80px rgba(0, 0, 0, 0.07);
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.02), 0 6.7px 5.3px rgba(0, 0, 0, 0.028), 0 12.5px 10px rgba(0, 0, 0, 0.035), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.05), 0 100px 80px rgba(0, 0, 0, 0.07); }
  @media only screen and (min-width: 420px) and (max-width: 768px) {
    section.gallery-slider .gallery-slider-wrapper {
      width: 92%;
      height: 500px; } }
  @media only screen and (max-width: 419px) {
    section.gallery-slider .gallery-slider-wrapper {
      width: 92%;
      height: 250px; } }
  section.gallery-slider .gallery-slider-wrapper .swiper-container {
    width: 100%;
    height: 100%; }
  section.gallery-slider .gallery-slider-wrapper .swiper-slide {
    width: 100%; }
    section.gallery-slider .gallery-slider-wrapper .swiper-slide a {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: block;
      opacity: 1;
      -webkit-transition: all 0.4s ease-in-out;
      transition: all 0.4s ease-in-out; }
      section.gallery-slider .gallery-slider-wrapper .swiper-slide a img {
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        width: 100%;
        height: 100%;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out; }
      section.gallery-slider .gallery-slider-wrapper .swiper-slide a:hover img {
        opacity: 0.6; }
      section.gallery-slider .gallery-slider-wrapper .swiper-slide a:hover:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 99;
        border-radius: 5px;
        overflow: hidden; }

section.collapsible-content-row {
  padding: 0px 15px 150px !important;
  background: #F6F6F6; }
  @media only screen and (max-width: 768px) {
    section.collapsible-content-row {
      padding: 50px 20px; } }
  section.collapsible-content-row article {
    max-width: 935px;
    margin: 0 auto; }
    section.collapsible-content-row article .collapsible-content-row__panel {
      display: none; }
    section.collapsible-content-row article:first-child .collapsible-content-row__panel {
      display: block; }
    section.collapsible-content-row article.open .collapsible-content-row__tab:after {
      -webkit-transform: rotate(180deg);
      transform: rotate(180deg); }
  section.collapsible-content-row .collapsible-content-row__tab {
    border-bottom: 2px solid #0E9C48;
    display: block;
    margin-top: 15px;
    padding: 5px 40px 20px 0;
    text-decoration: none;
    position: relative; }
    section.collapsible-content-row .collapsible-content-row__tab:after {
      content: '';
      display: inline-block;
      position: absolute;
      right: 0;
      top: 24px;
      background-repeat: no-repeat;
      -webkit-transition: -webkit-transform 0.4s;
      transition: -webkit-transform 0.4s;
      transition: transform 0.4s;
      transition: transform 0.4s, -webkit-transform 0.4s; }
      @media only screen and (max-width: 768px) {
        section.collapsible-content-row .collapsible-content-row__tab:after {
          top: 12px;
          -webkit-transform: scale(0.7);
          transform: scale(0.7); } }
    section.collapsible-content-row .collapsible-content-row__tab h2 {
      font-size: 50px; }
      @media only screen and (max-width: 768px) {
        section.collapsible-content-row .collapsible-content-row__tab h2 {
          font-size: 30px; } }
  section.collapsible-content-row .collapsible-content-row__panel {
    padding: 20px 0 10px; }
  section.collapsible-content-row a.btn--primary {
    margin-top: 50px !important; }

section.form-row {
  background: #F6F6F6;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1450px;
  padding-top: 100px;
  padding-bottom: 70px;
  margin-left: auto;
  margin-right: auto; }
  @media only screen and (max-width: 768px) {
    section.form-row {
      padding: 50px 0; } }
  section.form-row .form-row__inner {
    max-width: 1080px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px; }
  @media only screen and (max-width: 768px) {
    section.form-row .form-row__form-column {
      margin-top: 50px; } }
  section.form-row .form-row__form-column form {
    margin-left: 50px; }
    @media only screen and (max-width: 768px) {
      section.form-row .form-row__form-column form {
        margin-left: 0; } }
    section.form-row .form-row__form-column form .disclaimer-field {
      padding: 0; }

section.colour-options-slider-row {
  position: relative;
  text-align: center; }

.colour-options-slider-row__inner {
  max-width: 1450px;
  margin: 0 auto;
  background: white;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px; }

.colour-options-slider-row__slider .swiper-wrapper {
  margin-bottom: 20px; }

.colour-options-slider-row__slider .swiper-slide img {
  max-width: 700px;
  width: 80%;
  margin: 0 auto; }

.colour-options-slider-row__slider[data-transition="fade"] .swiper-slide {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s; }
  .colour-options-slider-row__slider[data-transition="fade"] .swiper-slide.swiper-slide-active {
    -webkit-transition-delay: 0s;
    transition-delay: 0s; }

.colour-options-slider-row__swatches {
  margin-top: 20px; }
  .colour-options-slider-row__swatches li:not(:last-child) {
    margin-right: 10px; }
  .colour-options-slider-row__swatches button {
    padding: 0;
    border: 0;
    outline: none;
    width: 30px;
    height: 30px;
    overflow: hidden;
    border-radius: 50%;
    -webkit-transition: -webkit-box-shadow 0.4s;
    transition: -webkit-box-shadow 0.4s;
    transition: box-shadow 0.4s;
    transition: box-shadow 0.4s, -webkit-box-shadow 0.4s;
    -webkit-box-shadow: 0 0 0 0 #ffffff, 0 0 0 0 #D8D8D8, 0 0 20px 0 transparent;
    box-shadow: 0 0 0 0 #ffffff, 0 0 0 0 #D8D8D8, 0 0 20px 0 transparent; }
    .colour-options-slider-row__swatches button.active {
      -webkit-box-shadow: 0 0 0 3px #ffffff, 0 0 0 4px #D8D8D8, 0 0 20px 0 rgba(0, 0, 0, 0.3);
      box-shadow: 0 0 0 3px #ffffff, 0 0 0 4px #D8D8D8, 0 0 20px 0 rgba(0, 0, 0, 0.3); }
    .colour-options-slider-row__swatches button span {
      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; }
  .colour-options-slider-row__swatches li[data-type="image"] button {
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50% 0;
    width: 120px;
    height: 70px;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: relative; }
    .colour-options-slider-row__swatches li[data-type="image"] button:after {
      content: "";
      width: 80%;
      height: 4px;
      overflow: hidden;
      background-color: rgba(14, 156, 72, 0);
      bottom: 0;
      left: 50%;
      display: block;
      position: absolute;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      -webkit-transition: background-color 0.4s;
      transition: background-color 0.4s; }
    .colour-options-slider-row__swatches li[data-type="image"] button:hover {
      -webkit-transform: translateY(-10px);
      transform: translateY(-10px); }
    .colour-options-slider-row__swatches li[data-type="image"] button.active {
      -webkit-box-shadow: none;
      box-shadow: none; }
      .colour-options-slider-row__swatches li[data-type="image"] button.active:after {
        background-color: #0e9c48; }
    @media only screen and (max-width: 419px) {
      .colour-options-slider-row__swatches li[data-type="image"] button {
        margin-bottom: 50px; } }

section.content-feature-image + section.colour-options-slider-row {
  padding-top: 40px; }

section.video-slider-row {
  padding: 80px 30px 40px; }
  section.video-slider-row .row__header {
    text-align: center;
    margin-bottom: 40px; }
  section.video-slider-row .video-slider {
    overflow: hidden;
    position: relative;
    padding-bottom: 60px; }
  section.video-slider-row .swiper-wrapper,
  section.video-slider-row .swiper-slide {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }
  section.video-slider-row .swiper-slide {
    text-align: left; }
    section.video-slider-row .swiper-slide a {
      -webkit-transition: color 0.5s ease;
      transition: color 0.5s ease; }
      section.video-slider-row .swiper-slide a:hover {
        color: #0E9C48; }
  section.video-slider-row .swiper-button-next, section.video-slider-row .swiper-button-prev {
    top: 95%;
    background-repeat: no-repeat;
    background-position: left;
    background-size: 58px 16px;
    width: 16px;
    height: 16px;
    bottom: 3px;
    top: auto; }
  section.video-slider-row .swiper-button-prev {
    right: 45px;
    left: auto; }
  section.video-slider-row .swiper-button-next {
    right: 0;
    background-position: right; }
  section.video-slider-row .video-slide .video-slide__img {
    display: block;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    height: 200px; }
    section.video-slider-row .video-slide .video-slide__img figure {
      margin: 0;
      z-index: 1; }
    section.video-slider-row .video-slide .video-slide__img img {
      -webkit-transition: all .2s ease-in-out;
      transition: all .2s ease-in-out; }
    section.video-slider-row .video-slide .video-slide__img a {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      background-color: transparent;
      -webkit-transition: background-color 0.4s;
      transition: background-color 0.4s; }
      section.video-slider-row .video-slide .video-slide__img a .icon-video-play, section.video-slider-row .video-slide .video-slide__img a section.content-media-row .content-media-row__media .content-media-row__play-button:before, section.content-media-row .content-media-row__media section.video-slider-row .video-slide .video-slide__img a .content-media-row__play-button:before, section.video-slider-row .video-slide .video-slide__img a section.model-promo-row .model-promo-row__media .model-promo-row__play-button:before, section.model-promo-row .model-promo-row__media section.video-slider-row .video-slide .video-slide__img a .model-promo-row__play-button:before {
        width: 64px;
        height: 64px;
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
      section.video-slider-row .video-slide .video-slide__img a:hover {
        background-color: rgba(0, 0, 0, 0.3); }
        section.video-slider-row .video-slide .video-slide__img a:hover + figure img {
          -webkit-transform: scale(1.1);
          transform: scale(1.1); }
  section.video-slider-row .video-slide h3 {
    color: #000000;
    margin-bottom: 20px; }
    section.video-slider-row .video-slide h3 a {
      text-decoration: none;
      color: #000000; }

section.accessories {
  padding: 120px 8vw;
  position: relative;
  overflow: hidden;
  background: white; }
  section.accessories:after {
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(white));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 100%);
    content: "";
    right: 0px;
    height: 100%;
    position: absolute;
    z-index: 3;
    width: 290px;
    top: 0px; }
    @media only screen and (max-width: 768px) {
      section.accessories:after {
        display: none; } }
  section.accessories:before {
    background: -webkit-gradient(linear, left top, right top, from(white), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    left: 0px;
    height: 100%;
    position: absolute;
    z-index: 3;
    width: 290px;
    top: 0px; }
    @media only screen and (max-width: 768px) {
      section.accessories:before {
        display: none; } }
  @media only screen and (max-width: 768px) {
    section.accessories {
      padding: 50px 20px 80px; } }
  section.accessories h2, section.accessories h3 {
    text-align: center;
    margin-bottom: 20px; }
  @media only screen and (max-width: 419px) {
    section.accessories .swiper-slide-active {
      background: none !important;
      -webkit-box-shadow: none !important;
      box-shadow: none !important;
      opacity: 1 !important;
      margin-top: 40px; }
    section.accessories .swiper-slide-next {
      background: none !important;
      -webkit-box-shadow: none !important;
      box-shadow: none !important;
      opacity: 1 !important; }
    section.accessories .swiper-slide {
      margin-top: 40px;
      padding: 0px 20px; } }
  section.accessories .swiper-slide {
    opacity: 1;
    padding: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    section.accessories .swiper-slide .swiper-slide-text {
      text-align: center; }
    section.accessories .swiper-slide.swiper-slide-visible, section.accessories .swiper-slide.swiper-slide-active, section.accessories .swiper-slide.swiper-slide-prev {
      opacity: 1; }
    section.accessories .swiper-slide img {
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
    section.accessories .swiper-slide.swiper-slide-next {
      background: white;
      opacity: 1; }
    section.accessories .swiper-slide .btn--text-with-border-top {
      border-top: none !important;
      margin: 0px;
      padding: 0px;
      color: grey; }
    section.accessories .swiper-slide h3 {
      font-size: 22px;
      margin-bottom: 20px;
      text-align: center;
      line-height: 28px;
      margin-top: 20px; }
    section.accessories .swiper-slide a.btn {
      text-align: center; }
    @media only screen and (max-width: 768px) {
      section.accessories .swiper-slide {
        text-align: center;
        padding-left: 15%;
        padding-right: 15%; }
        section.accessories .swiper-slide a.btn {
          text-align: center; } }
  section.accessories .swiper-button-prev.swiper-button-disabled {
    opacity: 0.5; }
  section.accessories .swiper-button-next.swiper-button-disabled {
    opacity: 0.7; }
  section.accessories .swiper-pagination-fraction,
  section.accessories .swiper-pagination-custom,
  section.accessories.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 60px; }
    @media only screen and (max-width: 768px) {
      section.accessories .swiper-pagination-fraction,
      section.accessories .swiper-pagination-custom,
      section.accessories.swiper-container-horizontal > .swiper-pagination-bullets {
        bottom: 20px; } }
  section.accessories .swiper-pagination-bullet-active {
    background: #0E9C48; }

section.row--countdown {
  background-color: #0E9C48;
  padding: 60px 80px; }
  @media only screen and (max-width: 768px) {
    section.row--countdown {
      padding: 40px 20px; } }
  section.row--countdown .row__countdown__numbers {
    font-weight: 300;
    text-transform: uppercase;
    padding: 50px;
    text-align: center; }
    @media only screen and (max-width: 768px) {
      section.row--countdown .row__countdown__numbers {
        padding: 30px 0px; } }
    section.row--countdown .row__countdown__numbers .syotimer__body > p {
      font-size: 2.5em !important; }
    section.row--countdown .row__countdown__numbers .syotimer__body {
      text-align: center;
      margin-left: 25px; }
    section.row--countdown .row__countdown__numbers .syotimer-cell {
      display: inline-block;
      text-align: center;
      margin-right: 40px;
      color: #ffffff;
      font-weight: 300; }
      @media only screen and (max-width: 419px) {
        section.row--countdown .row__countdown__numbers .syotimer-cell {
          margin-right: 25px; } }
      section.row--countdown .row__countdown__numbers .syotimer-cell .syotimer-cell__value {
        font-size: 100px;
        line-height: 160px; }
        @media only screen and (max-width: 768px) {
          section.row--countdown .row__countdown__numbers .syotimer-cell .syotimer-cell__value {
            font-size: 80px;
            line-height: 80px; } }
        @media only screen and (max-width: 419px) {
          section.row--countdown .row__countdown__numbers .syotimer-cell .syotimer-cell__value {
            font-size: 50px;
            line-height: 50px; } }
        section.row--countdown .row__countdown__numbers .syotimer-cell .syotimer-cell__value::after {
          content: ':';
          position: absolute;
          margin-left: 2px; }
          @media only screen and (max-width: 768px) {
            section.row--countdown .row__countdown__numbers .syotimer-cell .syotimer-cell__value::after {
              margin-left: 6px; } }
      section.row--countdown .row__countdown__numbers .syotimer-cell .syotimer-cell__unit {
        font-size: 30px;
        font-weight: 500; }
        @media only screen and (max-width: 419px) {
          section.row--countdown .row__countdown__numbers .syotimer-cell .syotimer-cell__unit {
            font-size: 15px;
            font-weight: 500; } }
    section.row--countdown .row__countdown__numbers .syotimer-cell_type_second {
      width: 150px;
      margin-left: -10px; }
      @media only screen and (max-width: 768px) {
        section.row--countdown .row__countdown__numbers .syotimer-cell_type_second {
          width: 75px;
          margin-left: 0; } }
      section.row--countdown .row__countdown__numbers .syotimer-cell_type_second .syotimer-cell__value::after {
        content: ''; }
  section.row--countdown .row__countdown__text {
    color: white; }
    @media only screen and (max-width: 768px) {
      section.row--countdown .row__countdown__text {
        text-align: center; } }
    section.row--countdown .row__countdown__text h1, section.row--countdown .row__countdown__text h2, section.row--countdown .row__countdown__text h3, section.row--countdown .row__countdown__text h4 {
      text-transform: uppercase;
      color: white;
      font-size: 30px;
      line-height: 33px; }
    section.row--countdown .row__countdown__text p {
      line-height: 2em;
      margin-top: 15px;
      font-size: 15px; }

section.model-promo-row {
  height: 425px;
  background: transparent;
  position: relative;
  z-index: 1;
  max-width: 1050px;
  border-radius: 10px;
  overflow: hidden; }
  @media only screen and (max-width: 768px) {
    section.model-promo-row {
      border-radius: 0px; } }
  section.model-promo-row:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    background: transparent url(../svg/spinner-2.svg) 50% 50% no-repeat;
    opacity: 0;
    pointer-events: none; }
  section.model-promo-row > .flex-grid__item {
    position: relative;
    z-index: 1;
    background: #f6f6f6;
    height: 425px;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s; }
  section.model-promo-row.busy {
    pointer-events: none;
    background: transparent; }
    section.model-promo-row.busy:before {
      opacity: 1; }
    section.model-promo-row.busy > .flex-grid__item {
      opacity: 0; }
  @media only screen and (max-width: 768px) {
    section.model-promo-row {
      height: auto; } }
  section.model-promo-row.model-promo-row--white > .flex-grid__item {
    background: #ffffff; }
  section.model-promo-row.model-promo-row--white .model-promo-row__content {
    color: #212121; }
    section.model-promo-row.model-promo-row--white .model-promo-row__content h2 {
      color: #212121; }
  section.model-promo-row.model-promo-row--light > .flex-grid__item {
    background: #F6F6F6; }
  section.model-promo-row.model-promo-row--light .model-promo-row__content {
    color: #212121; }
    section.model-promo-row.model-promo-row--light .model-promo-row__content h2 {
      color: #212121; }
  section.model-promo-row.model-promo-row--brand > .flex-grid__item {
    background: #0E9C48; }
  section.model-promo-row.model-promo-row--brand .model-promo-row__content {
    color: #ffffff; }
    section.model-promo-row.model-promo-row--brand .model-promo-row__content h2 {
      color: #ffffff; }
      section.model-promo-row.model-promo-row--brand .model-promo-row__content h2.decorated:after {
        background: #ffffff; }
    section.model-promo-row.model-promo-row--brand .model-promo-row__content .btn {
      outline: 2px solid #ffffff; }
  section.model-promo-row .flex-grid__item {
    position: relative;
    height: 425px; }
    @media only screen and (max-width: 768px) {
      section.model-promo-row .flex-grid__item {
        height: auto;
        position: static; } }
  section.model-promo-row .model-promo-row__content {
    text-align: center;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding-left: 70px;
    padding-right: 70px; }
    @media only screen and (max-width: 768px) {
      section.model-promo-row .model-promo-row__content {
        position: relative;
        top: auto;
        left: auto;
        max-width: 100%;
        padding: 370px 20px 50px;
        -webkit-transform: none;
        transform: none;
        z-index: 1; } }
    section.model-promo-row .model-promo-row__content h1 {
      font-size: 45px; }
    section.model-promo-row .model-promo-row__content h2 {
      color: #ffffff;
      margin-bottom: 20px; }
      section.model-promo-row .model-promo-row__content h2.decorated:after {
        left: 50%;
        margin-left: -83px; }
    section.model-promo-row .model-promo-row__content p {
      font-size: 16px;
      margin-bottom: 25px; }
    section.model-promo-row .model-promo-row__content ul {
      margin-left: 20px;
      padding: 0px; }
      section.model-promo-row .model-promo-row__content ul li {
        padding-left: 5px;
        list-style-type: disc;
        line-height: 25px; }
        section.model-promo-row .model-promo-row__content ul li:before {
          display: none !important; }
  section.model-promo-row .model-promo-row__media {
    position: relative;
    height: 425px;
    overflow: hidden;
    background-size: cover;
    background-position: center; }
    @media only screen and (max-width: 768px) {
      section.model-promo-row .model-promo-row__media {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 320px;
        z-index: 0; } }
    section.model-promo-row .model-promo-row__media .background-image, section.model-promo-row .model-promo-row__media video {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      -webkit-transition: -webkit-transform 1s;
      transition: -webkit-transform 1s;
      transition: transform 1s;
      transition: transform 1s, -webkit-transform 1s; }
    section.model-promo-row .model-promo-row__media .background-image:hover {
      -webkit-transform: scale(1.05);
      transform: scale(1.05); }
    section.model-promo-row .model-promo-row__media .model-promo-row__play-button {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0; }
      section.model-promo-row .model-promo-row__media .model-promo-row__play-button:before {
        content: '';
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }

section.content-feature-image.content-feature-image--image-right .content-feature__content {
  width: 40%;
  left: 25%; }
  @media only screen and (max-width: 768px) {
    section.content-feature-image.content-feature-image--image-right .content-feature__content {
      width: 100%;
      left: unset; } }

@media only screen and (max-width: 768px) {
  section.content-feature-image.content-feature-image--image-right img, section.content-feature-image.content-feature-image--image-left img {
    position: relative;
    margin: 0 auto;
    margin-bottom: 20px; } }

@media only screen and (max-width: 768px) {
  section.content-feature-image.content-feature-image--image-right .content-feature__content, section.content-feature-image.content-feature-image--image-left .content-feature__content {
    padding-bottom: 50px;
    padding-top: unset; } }

section.content-feature-image.content-feature-image--brand {
  overflow: hidden; }

@media only screen and (max-width: 419px) {
  section.hero .hero__text-wrapper h1 {
    font-size: 50px; } }

section.product-hero {
  position: relative;
  text-align: center; }
  section.product-hero .product-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 520px;
    background-size: cover;
    background-position: center;
    z-index: 1; }
    @media only screen and (max-width: 768px) {
      section.product-hero .product-hero__bg {
        height: calc(185px + 50vw); } }
  section.product-hero .product-hero__inner {
    max-width: 1450px;
    margin: 0 auto;
    background: white;
    position: relative;
    padding-bottom: 80px; }
  section.product-hero .product-hero__header {
    padding-top: 50px;
    color: #ffffff;
    position: relative;
    z-index: 1; }
    @media only screen and (max-width: 768px) {
      section.product-hero .product-hero__header {
        padding-top: 50px; } }
    section.product-hero .product-hero__header h1.decorated {
      color: #ffffff;
      font-size: 70px;
      padding-bottom: 35px; }
      section.product-hero .product-hero__header h1.decorated:after {
        left: 50%;
        margin-left: -83px; }
  section.product-hero .product-hero__slider .swiper-slide img {
    max-width: 700px;
    width: 80%;
    margin: 0 auto; }
  @media only screen and (max-width: 768px) {
    section.product-hero .product-hero__slider {
      padding-bottom: 60px; } }
  section.product-hero .product-hero__intro {
    width: 100%;
    margin: 0 auto;
    max-width: 620px; }
    @media only screen and (max-width: 768px) {
      section.product-hero .product-hero__intro {
        padding-left: 20px;
        padding-right: 20px; }
        section.product-hero .product-hero__intro img {
          padding: 30px;
          width: 100%;
          margin: 0px; }
        section.product-hero .product-hero__intro a.btn {
          width: 100%; }
        section.product-hero .product-hero__intro a.btn + a.btn {
          margin-top: 20px; } }
    section.product-hero .product-hero__intro h2 {
      margin-bottom: 25px; }
    section.product-hero .product-hero__intro p {
      font-size: 16px;
      margin-bottom: 25px; }
  section.product-hero .modal-buttons {
    position: absolute;
    right: 0;
    top: 520px;
    display: inline-block;
    z-index: 2; }
    @media only screen and (max-width: 768px) {
      section.product-hero .modal-buttons {
        top: calc(185px + 50vw);
        display: none; } }

section.secondary-header + section.product-hero {
  margin-top: 60px; }

section.product-details {
  padding: 90px 0;
  background: #F6F6F6;
  overflow: hidden; }
  @media only screen and (max-width: 768px) {
    section.product-details {
      padding: 50px 0; }
      section.product-details .product-details__slider {
        padding: 0 60px; } }
  section.product-details .product-details__slider {
    position: relative; }
  section.product-details .swiper-wrapper, section.product-details .product-details__slider {
    width: 100%;
    max-width: 700px;
    margin: 0 auto; }
  section.product-details .product-details__spec-panel {
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
    padding: 0 10px; }
    section.product-details .product-details__spec-panel.swiper-slide-visible {
      opacity: 1; }
    section.product-details .product-details__spec-panel h3 {
      font-size: 15px;
      text-transform: uppercase;
      margin-bottom: 8px;
      font-family: 'Roboto', sans-serif;
      font-weight: bold;
      font-style: normal;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    section.product-details .product-details__spec-panel .product-details__spec {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700 !important;
      font-style: normal;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      display: block;
      font-size: 40px;
      text-transform: uppercase;
      padding-bottom: 20px;
      border-bottom: 3px solid #0E9C48;
      margin-bottom: 0;
      line-height: 1; }
    section.product-details .product-details__spec-panel .btn--text, section.product-details .product-details__spec-panel .btn--text-with-border-top {
      margin-top: 0; }

nav.pagination {
  text-align: center;
  padding: 10px 10px 36px; }
  nav.pagination a.btn {
    width: 143px;
    padding-left: 15px;
    padding-right: 15px; }
    nav.pagination a.btn.btn--action, nav.pagination
    a.btn.gform_next_button {
      padding-right: 5px; }
    nav.pagination a.btn.btn--with-left-arrow, nav.pagination a.btn.gform_previous_button {
      padding-left: 5px; }

article.single header.page-intro {
  padding-bottom: 0; }

article.single .content-block {
  max-width: 1080px;
  margin: 0 auto 20px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center; }
  @media only screen and (max-width: 768px) {
    article.single .content-block {
      padding: 50px 20px 30px; } }
  article.single .content-block p {
    font-size: 16px;
    margin-bottom: 20px; }
    article.single .content-block p a:not(.btn) {
      color: #212121; }
      article.single .content-block p a:not(.btn):hover, article.single .content-block p a:not(.btn):focus {
        color: #0E9C48; }
  article.single .content-block h2 {
    margin-bottom: 50px;
    padding-bottom: 30px; }
  article.single .content-block h3 {
    margin-bottom: 40px; }
  article.single .content-block h2.decorated:after,
  article.single .content-block h3.decorated:after {
    left: 50%;
    margin-left: -83px; }

article.single .page-intro .content-block, article.single nav.next-article .content-block {
  padding-top: 10px; }

article.single figure {
  margin: 80px auto;
  text-align: center; }
  @media only screen and (max-width: 768px) {
    article.single figure {
      margin: 50px auto; } }
  article.single figure:last-child {
    margin-bottom: 0; }
  article.single figure img {
    max-width: 100%;
    margin-bottom: 15px; }
  article.single figure figcaption {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-style: italic;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    color: #D8D8D8; }

.full-width-content-row .content-block {
  padding: 100px 15px; }

nav.next-article {
  padding-top: 100px; }
  @media only screen and (max-width: 768px) {
    nav.next-article {
      padding-top: 50px;
      padding-bottom: 50px; } }
  nav.next-article .next-article__intro {
    margin: 0 auto;
    max-width: 1450px;
    width: 100%; }
  nav.next-article a {
    display: block;
    text-decoration: none; }
  nav.next-article .next-article__next-link {
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: bold;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 17px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 35px;
    line-height: 1; }
    nav.next-article .next-article__next-link:after {
      content: '';
      display: inline-block;
      margin-left: 9px;
      vertical-align: top;
      position: relative;
      top: 2px;
      -webkit-transition: -webkit-transform 0.4s ease-in-out;
      transition: -webkit-transform 0.4s ease-in-out;
      transition: transform 0.4s ease-in-out;
      transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out; }
  nav.next-article a:hover .next-article__next-link:after, nav.next-article a:focus .next-article__next-link:after {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); }

section.form-finance {
  padding: 20px 15px 70px;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%; }
  @media only screen and (max-width: 768px) {
    section.form-finance {
      padding: 20px 10px 50px; } }
  section.form-finance .form-finance__form-column {
    padding-right: 25px; }
    @media only screen and (min-width: 1200px) {
      section.form-finance .form-finance__form-column {
        padding-right: 50px; } }
    @media only screen and (max-width: 768px) {
      section.form-finance .form-finance__form-column {
        padding-right: 0;
        margin-top: 20px; } }
    section.form-finance .form-finance__form-column h4.amount-title {
      font-family: 'Roboto', sans-serif;
      font-weight: bold;
      font-style: normal;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      font-size: 15px;
      color: #212121;
      margin-bottom: 10px;
      margin-top: 20px; }
    section.form-finance .form-finance__form-column .amount {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700 !important;
      font-style: normal;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      font-size: 60px;
      color: #0E9C48;
      display: block;
      line-height: 1;
      margin-bottom: 20px; }
    section.form-finance .form-finance__form-column .asterisk {
      vertical-align: top;
      font-size: 20px;
      position: relative;
      left: -10px; }
  section.form-finance .form-finance__cost-column {
    position: sticky;
    position: -webkit-sticky;
    top: 90px; }
    section.form-finance .form-finance__cost-column .form-finance__spinner {
      position: absolute;
      pointer-events: none;
      left: 50%;
      top: 120px;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      opacity: 0; }
    section.form-finance .form-finance__cost-column.waiting .form-finance__spinner {
      opacity: 1; }
    @media only screen and (max-width: 768px) {
      section.form-finance .form-finance__cost-column {
        position: static;
        top: auto;
        padding-left: 10px;
        padding-right: 10px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto; } }
    section.form-finance .form-finance__cost-column .form-finance__bike-image-link {
      display: block;
      margin-bottom: 20px;
      -webkit-transition: opacity 0.3s;
      transition: opacity 0.3s; }
      section.form-finance .form-finance__cost-column .form-finance__bike-image-link:hover {
        opacity: 0.7; }
    section.form-finance .form-finance__cost-column .form-finance__bike-image {
      width: 100%; }
      @media only screen and (max-width: 768px) {
        section.form-finance .form-finance__cost-column .form-finance__bike-image {
          margin-left: auto;
          margin-right: auto;
          display: block;
          max-width: 300px; } }
    section.form-finance .form-finance__cost-column .form-finance__cost-summary {
      margin-top: 24px;
      margin-bottom: 30px; }
      section.form-finance .form-finance__cost-column .form-finance__cost-summary h3 {
        font-family: 'Roboto', sans-serif;
        font-weight: bold;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 15px;
        margin-bottom: 10px; }
      section.form-finance .form-finance__cost-column .form-finance__cost-summary dl {
        line-height: 1.2; }
        section.form-finance .form-finance__cost-column .form-finance__cost-summary dl dd, section.form-finance .form-finance__cost-column .form-finance__cost-summary dl dt {
          border: 0;
          padding-bottom: 0; }
        section.form-finance .form-finance__cost-column .form-finance__cost-summary dl dt {
          font-size: 14px;
          width: calc(100% - 100px); }
        section.form-finance .form-finance__cost-column .form-finance__cost-summary dl dd {
          text-align: right;
          width: 100px;
          font-family: 'Rajdhani', sans-serif;
          font-weight: 700 !important;
          font-style: normal;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          font-size: 20px;
          line-height: 1;
          padding-right: 0; }
    section.form-finance .form-finance__cost-column .form-finance__total-cost {
      border-top: 3px solid #212121;
      margin-top: 24px;
      padding-top: 20px; }
      section.form-finance .form-finance__cost-column .form-finance__total-cost h4 {
        font-family: 'Roboto', sans-serif;
        font-weight: bold;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 15px;
        text-align: right;
        color: #212121;
        margin-bottom: 10px; }
      section.form-finance .form-finance__cost-column .form-finance__total-cost dl {
        margin-bottom: 20px; }
      section.form-finance .form-finance__cost-column .form-finance__total-cost .amount {
        font-family: 'Rajdhani', sans-serif;
        font-weight: 700 !important;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 40px;
        color: #212121;
        display: block;
        text-align: right;
        line-height: 1; }
    section.form-finance .form-finance__cost-column .form-finance__amount-due {
      border-top: 3px solid #0E9C48;
      border-bottom: 3px solid #0E9C48;
      margin-top: 24px;
      padding-top: 20px;
      padding-bottom: 18px;
      margin-bottom: 10px; }
      section.form-finance .form-finance__cost-column .form-finance__amount-due h4 {
        font-family: 'Roboto', sans-serif;
        font-weight: bold;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 15px;
        text-align: right;
        color: #212121;
        margin-bottom: 10px; }
      section.form-finance .form-finance__cost-column .form-finance__amount-due .amount {
        font-family: 'Rajdhani', sans-serif;
        font-weight: 700 !important;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 60px;
        color: #0E9C48;
        display: block;
        text-align: right;
        line-height: 1; }

header.page-intro + section.form-finance {
  padding-top: 30px; }
  @media only screen and (max-width: 768px) {
    header.page-intro + section.form-finance {
      padding-top: 0; } }

@media only screen and (max-width: 768px) {
  select.hasCustomSelect {
    width: 100% !important;
    height: 45px !important;
    display: block !important; }
  .ginput_card_expiration_container .customSelect {
    width: 100% !important; }
  .ginput_cardinfo_left {
    width: 100%; }
  .ginput_cardinfo_right {
    width: 100%;
    padding-left: 0px; } }

.row__instagram {
  background: black;
  color: white;
  text-align: center; }
  .row__instagram .row--header-plain {
    padding: 50px;
    text-align: center; }
    .row__instagram .row--header-plain h5, .row__instagram .row--header-plain h6 {
      color: white !important;
      height: 20px; }
  .row__instagram .row__instagram__item {
    position: relative;
    overflow: hidden;
    border: 1px solid black;
    -o-object-fit: contain;
    object-fit: contain;
    margin-top: -6px; }
    .row__instagram .row__instagram__item .instagram-row__media {
      -o-object-fit: contain;
      object-fit: contain; }
    .row__instagram .row__instagram__item a:hover .row__instagram__overlay {
      opacity: 1; }
    .row__instagram .row__instagram__item a:hover img {
      -webkit-transform: scale(1.1);
      transform: scale(1.1); }
    .row__instagram .row__instagram__item .row__instagram__overlay {
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.6)));
      background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
      width: 100%;
      height: 100%;
      display: block;
      position: absolute;
      opacity: 0;
      -webkit-transition: opacity 0.5s;
      transition: opacity 0.5s;
      top: 0; }
    .row__instagram .row__instagram__item .icon {
      position: absolute;
      right: 20px;
      bottom: 20px;
      z-index: 5;
      width: 30px;
      height: 30px; }
    .row__instagram .row__instagram__item img {
      -webkit-transition: all .5s ease;
      transition: all .5s ease; }

.tax-range .site-content,
.post-type-archive-model .site-content {
  max-width: unset; }

.tax-range p,
.post-type-archive-model p {
  margin-bottom: 15px; }

.tax-range .h1,
.post-type-archive-model .h1 {
  font-family: 'Rajdhani';
  font-style: normal;
  font-weight: 600 !important;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #434343;
  margin-top: 30px; }

.tax-range .hero,
.post-type-archive-model .hero {
  height: 330px;
  min-height: unset;
  background-size: cover !important;
  background-position: center !important; }
  .tax-range .hero img.logo,
  .post-type-archive-model .hero img.logo {
    z-index: 2;
    position: absolute;
    max-width: 100%;
    width: 600px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
    bottom: 60px; }
    @media only screen and (max-width: 419px) {
      .tax-range .hero img.logo,
      .post-type-archive-model .hero img.logo {
        max-width: 240px;
        bottom: 40px; } }
  .tax-range .hero:after,
  .post-type-archive-model .hero:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.5)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)); }
  @media only screen and (max-width: 419px) {
    .tax-range .hero,
    .post-type-archive-model .hero {
      height: 180px; } }

.tax-range .category,
.post-type-archive-model .category {
  text-align: center;
  margin: 0 auto;
  max-width: 1040px; }
  @media only screen and (max-width: 419px) {
    .tax-range .category,
    .post-type-archive-model .category {
      padding: 0 30px; } }
  .tax-range .category.page-intro__inner,
  .post-type-archive-model .category.page-intro__inner {
    padding: 20px 0 30px; }
    @media only screen and (max-width: 419px) {
      .tax-range .category.page-intro__inner,
      .post-type-archive-model .category.page-intro__inner {
        padding: 20px 30px 50px; } }
  .tax-range .category .full-width-content-row .content-block,
  .post-type-archive-model .category .full-width-content-row .content-block {
    padding: 20px 0 60px; }
  .tax-range .category h1,
  .post-type-archive-model .category h1 {
    font-family: 'Rajdhani';
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #434343;
    margin-top: 30px; }

.tax-range .full-width-content-row .content-block,
.post-type-archive-model .full-width-content-row .content-block {
  padding: 50px 15px; }

.tax-range .terms,
.post-type-archive-model .terms {
  background: #f4f4f4; }
  .tax-range .terms .full-width-content,
  .post-type-archive-model .terms .full-width-content {
    margin: 0 auto;
    max-width: 1400px;
    padding: 80px 20px; }

.tax-range .product_image,
.post-type-archive-model .product_image {
  margin-top: -20px; }
  @media only screen and (max-width: 419px) {
    .tax-range .product_image,
    .post-type-archive-model .product_image {
      margin-top: -30px; } }

.model-grid {
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
  @media only screen and (min-width: 420px) and (max-width: 768px) {
    .model-grid {
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); } }
  .model-grid .model-grid--card {
    background: #f5f5f5;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    position: relative; }
    .model-grid .model-grid--card .content.top {
      padding: 10px 50px 0;
      position: relative; }
      @media only screen and (max-width: 419px) {
        .model-grid .model-grid--card .content.top {
          padding: 0 20px 0; } }
      .model-grid .model-grid--card .content.top .icon-image {
        position: absolute;
        top: 20px;
        right: 20px;
        max-width: 50px; }
        @media only screen and (max-width: 419px) {
          .model-grid .model-grid--card .content.top .icon-image {
            top: 0px;
            right: 20px;
            max-width: 40px; } }
    .model-grid .model-grid--card .content.bottom {
      padding: 0 50px 20px; }
      @media only screen and (max-width: 419px) {
        .model-grid .model-grid--card .content.bottom {
          padding: 0 20px 20px; } }
    .model-grid .model-grid--card h3 {
      font-weight: 700;
      font-size: 1.7em;
      line-height: 38px;
      letter-spacing: 1px;
      color: #434343;
      font-family: 'Rajdhani', sans-serif;
      margin: 20px 0 0; }
    .model-grid .model-grid--card .prefix {
      color: #0E9C48;
      letter-spacing: 2px;
      font-size: 1rem;
      font-weight: 600;
      font-family: 'Rajdhani', sans-serif;
      line-height: unset; }
    .model-grid .model-grid--card .price {
      letter-spacing: 1px;
      color: #0E9C48;
      font-size: 70px;
      font-weight: 700;
      font-family: 'Rajdhani', sans-serif;
      line-height: 50px;
      margin: 0; }
      @media only screen and (max-width: 419px) {
        .model-grid .model-grid--card .price {
          font-size: 4rem;
          display: block;
          line-height: 40px;
          margin-bottom: 0; } }
    .model-grid .model-grid--card .repayments {
      letter-spacing: 2px;
      color: #343434;
      font-size: 1rem;
      font-weight: 600;
      font-family: 'Rajdhani', sans-serif;
      line-height: unset; }
      .model-grid .model-grid--card .repayments span {
        background: #343434;
        color: white;
        padding: 5px;
        font-size: 14px;
        font-weight: 700; }
    .model-grid .model-grid--card .financeDisclaimer {
      color: #707070;
      font-size: 15px;
      line-height: unset;
      text-transform: none;
      text-align: center;
      font-weight: 600;
      font-family: 'Rajdhani', sans-serif;
      border: 1px solid #d8d8d8;
      padding: 4px; }
    .model-grid .model-grid--card .disclaimer {
      color: #727272;
      font-size: 11px;
      line-height: 19px;
      text-transform: none; }
    .model-grid .model-grid--card .btn-line {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      gap: 10px;
      color: white;
      margin-bottom: 10px; }
      .model-grid .model-grid--card .btn-line a.action {
        width: 100%;
        color: white;
        padding: 10px;
        text-align: center;
        border-radius: 2px;
        text-decoration: none;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 2px; }
      .model-grid .model-grid--card .btn-line a.btn-red {
        background: #0E9C48; }
      .model-grid .model-grid--card .btn-line a.btn-grey {
        background: #434343; }
    .model-grid .model-grid--card .model-grid--card--content-features {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      font-family: 'Rajdhani', sans-serif;
      margin-bottom: 20px; }
      @media only screen and (max-width: 419px) {
        .model-grid .model-grid--card .model-grid--card--content-features {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          gap: 10px;
          margin-bottom: 0; } }
      .model-grid .model-grid--card .model-grid--card--content-features li {
        list-style: none;
        line-height: .8em;
        color: #434343;
        font-weight: 700;
        font-size: 1.2em;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        gap: 5px;
        border-right: 1px solid #D1D1D1;
        padding: 20px 0; }
        @media only screen and (max-width: 419px) {
          .model-grid .model-grid--card .model-grid--card--content-features li {
            -webkit-box-flex: 1;
            -ms-flex: 1 1 160px;
            flex: 1 1 160px;
            border-right: none;
            border-bottom: 1px solid #D1D1D1;
            padding: 8px 0; }
            .model-grid .model-grid--card .model-grid--card--content-features li:nth-child(3), .model-grid .model-grid--card .model-grid--card--content-features li:nth-child(4) {
              border-bottom: none; } }
        .model-grid .model-grid--card .model-grid--card--content-features li:last-child {
          border-right: none; }
        .model-grid .model-grid--card .model-grid--card--content-features li:before {
          display: none !important; }
        .model-grid .model-grid--card .model-grid--card--content-features li span {
          color: #707070;
          font-weight: 600;
          font-size: .6em; }
    .model-grid .model-grid--card .product_image {
      position: relative;
      scale: 1;
      -webkit-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
      @media only screen and (max-width: 419px) {
        .model-grid .model-grid--card .product_image {
          padding: 0;
          max-width: 80%; } }
      .model-grid .model-grid--card .product_image:hover {
        scale: 1.05; }

.deposit-form_wrapper {
  background: #F6F6F6;
  padding: 60px;
  border: 0 !important;
  cursor: pointer;
  position: relative;
  margin-top: 10px !important;
  margin-bottom: 0 !important; }
  @media only screen and (max-width: 419px) {
    .deposit-form_wrapper {
      padding: 30px 10px !important;
      background: none; } }
  .deposit-form_wrapper h2.gsection_title {
    font-size: 20px;
    font-weight: 500 !important; }
  .deposit-form_wrapper label {
    font-size: 13px !important;
    margin-bottom: 6px;
    color: black;
    font-weight: 400 !important; }
  .deposit-form_wrapper li.gsection:first-child {
    padding: 0px 0px 30px !important;
    background: none !important; }
  .deposit-form_wrapper .gform_wrapper .gsection {
    border: none !important; }
  .deposit-form_wrapper ul.gfield_checkbox label {
    padding-left: 8px;
    margin-top: 4px;
    width: calc(100% - 30px);
    color: #656262;
    font-size: 14px !important; }
  .deposit-form_wrapper .gform_validation_container {
    display: none !important; }
  @media only screen and (max-width: 419px) {
    .deposit-form_wrapper select.hasCustomSelect {
      width: 100% !important;
      height: 45px !important;
      display: block !important; }
    .deposit-form_wrapper .ginput_card_expiration_container .customSelect {
      width: 100% !important; }
    .deposit-form_wrapper .ginput_cardinfo_left {
      width: 100%; }
    .deposit-form_wrapper .ginput_cardinfo_right {
      width: 100%;
      padding-left: 0px; } }
  .deposit-form_wrapper .gform_footer {
    text-align: center;
    padding: 0px;
    width: 100%; }
    .deposit-form_wrapper .gform_footer button[type=submit] {
      padding: 0px;
      width: 100%;
      font-weight: 500; }

.zrf-form {
  background: #F6F6F6;
  padding: 60px !important;
  border: 0 !important;
  position: relative;
  text-align: left !important;
  width: 80%;
  margin: 0 auto; }
  @media only screen and (max-width: 768px) {
    .zrf-form {
      padding: 0px !important;
      width: 100%;
      background: white; } }
  .zrf-form span.zrf_field_title {
    text-align: left !important; }
  .zrf-form input,
  .zrf-form textarea {
    display: block;
    max-width: 100%;
    width: 100% !important;
    background: #ffffff;
    border: 1px solid #D8D8D8;
    color: #151D29;
    margin: 0 auto;
    padding: 4px 15px;
    height: 42px;
    vertical-align: middle;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.42857143;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 2px;
    -webkit-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    -webkit-appearance: none; }
  .zrf-form textarea {
    height: 200px;
    padding: 20px; }
  .zrf-form p {
    text-align: left !important; }

@media only screen and (max-width: 768px) {
  table.buy-process td {
    width: 50%;
    display: inline-block !important;
    float: left;
    border: none !important;
    padding: 0px !important; } }

section.model-promo-row {
  height: 425px;
  background: transparent;
  position: relative;
  z-index: 1;
  max-width: 1050px;
  border-radius: 10px;
  overflow: hidden; }
  @media only screen and (max-width: 768px) {
    section.model-promo-row {
      border-radius: 0px; } }
  section.model-promo-row:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    background: transparent url(../svg/spinner-2.svg) 50% 50% no-repeat;
    opacity: 0;
    pointer-events: none; }
  section.model-promo-row > .flex-grid__item {
    position: relative;
    z-index: 1;
    background: #f6f6f6;
    height: 425px;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s; }
  section.model-promo-row.busy {
    pointer-events: none;
    background: transparent; }
    section.model-promo-row.busy:before {
      opacity: 1; }
    section.model-promo-row.busy > .flex-grid__item {
      opacity: 0; }
  @media only screen and (max-width: 768px) {
    section.model-promo-row {
      height: auto; } }
  section.model-promo-row.model-promo-row--white > .flex-grid__item {
    background: #ffffff; }
  section.model-promo-row.model-promo-row--white .model-promo-row__content {
    color: #212121; }
    section.model-promo-row.model-promo-row--white .model-promo-row__content h2 {
      color: #212121; }
  section.model-promo-row.model-promo-row--light > .flex-grid__item {
    background: #F6F6F6; }
  section.model-promo-row.model-promo-row--light .model-promo-row__content {
    color: #212121; }
    section.model-promo-row.model-promo-row--light .model-promo-row__content h2 {
      color: #212121; }
  section.model-promo-row.model-promo-row--brand > .flex-grid__item {
    background: #0E9C48; }
  section.model-promo-row.model-promo-row--brand .model-promo-row__content {
    color: #ffffff; }
    section.model-promo-row.model-promo-row--brand .model-promo-row__content h2 {
      color: #ffffff; }
      section.model-promo-row.model-promo-row--brand .model-promo-row__content h2.decorated:after {
        background: #ffffff; }
    section.model-promo-row.model-promo-row--brand .model-promo-row__content .btn {
      outline: 2px solid #ffffff; }
  section.model-promo-row .flex-grid__item {
    position: relative;
    height: 425px; }
    @media only screen and (max-width: 768px) {
      section.model-promo-row .flex-grid__item {
        height: auto;
        position: static; } }
  section.model-promo-row .model-promo-row__content {
    text-align: center;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding-left: 70px;
    padding-right: 70px; }
    @media only screen and (max-width: 768px) {
      section.model-promo-row .model-promo-row__content {
        position: relative;
        top: auto;
        left: auto;
        max-width: 100%;
        padding: 370px 20px 50px;
        -webkit-transform: none;
        transform: none;
        z-index: 1; } }
    section.model-promo-row .model-promo-row__content h1 {
      font-size: 45px; }
    section.model-promo-row .model-promo-row__content h2 {
      color: #ffffff;
      margin-bottom: 20px; }
      section.model-promo-row .model-promo-row__content h2.decorated:after {
        left: 50%;
        margin-left: -83px; }
    section.model-promo-row .model-promo-row__content p {
      font-size: 16px;
      margin-bottom: 25px; }
    section.model-promo-row .model-promo-row__content ul {
      margin-left: 20px;
      padding: 0px; }
      section.model-promo-row .model-promo-row__content ul li {
        padding-left: 5px;
        list-style-type: disc;
        line-height: 25px; }
        section.model-promo-row .model-promo-row__content ul li:before {
          display: none !important; }
  section.model-promo-row .model-promo-row__media {
    position: relative;
    height: 425px;
    overflow: hidden;
    background-size: cover;
    background-position: center; }
    @media only screen and (max-width: 768px) {
      section.model-promo-row .model-promo-row__media {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 320px;
        z-index: 0; } }
    section.model-promo-row .model-promo-row__media .background-image, section.model-promo-row .model-promo-row__media video {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      -webkit-transition: -webkit-transform 1s;
      transition: -webkit-transform 1s;
      transition: transform 1s;
      transition: transform 1s, -webkit-transform 1s; }
    section.model-promo-row .model-promo-row__media .background-image:hover {
      -webkit-transform: scale(1.05);
      transform: scale(1.05); }
    section.model-promo-row .model-promo-row__media .model-promo-row__play-button {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0; }
      section.model-promo-row .model-promo-row__media .model-promo-row__play-button:before {
        content: '';
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }

section.full-width-image-row {
  height: 730px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  text-align: left; }
  section.full-width-image-row h2, section.full-width-image-row p {
    color: #ffffff !important; }
  @media only screen and (max-width: 768px) {
    section.full-width-image-row {
      height: 530px; } }
  section.full-width-image-row .background-image {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 120%;
    background-position: center;
    background-size: cover; }
  section.full-width-image-row.full-width-image-row--dark .full-width-image-row__content h2.huge, section.full-width-image-row.full-width-image-row--dark .full-width-image-row__content .giga, section.full-width-image-row.full-width-image-row--dark .full-width-image-row__content h3, section.full-width-image-row.full-width-image-row--dark .full-width-image-row__content p {
    color: #212121; }
  section.full-width-image-row.full-width-image-row--dark .full-width-image-row__content h3:before {
    background: #212121; }
  section.full-width-image-row.full-width-image-row--center .full-width-image-row__content {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center; }
    section.full-width-image-row.full-width-image-row--center .full-width-image-row__content h2.decorated:after {
      left: 50%;
      margin-left: -83px; }
    section.full-width-image-row.full-width-image-row--center .full-width-image-row__content h3:before {
      left: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); }
  section.full-width-image-row.full-width-image-row--right .full-width-image-row__content {
    left: auto;
    right: 8%;
    text-align: right; }
    section.full-width-image-row.full-width-image-row--right .full-width-image-row__content h3:before {
      left: auto;
      right: 0; }
  section.full-width-image-row.full-width-image-row--tinted:before {
    content: "";
    display: block;
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2; }
  section.full-width-image-row .full-width-image-row__content {
    position: absolute;
    bottom: 14%;
    left: 8%;
    max-width: 420px;
    width: 100%;
    z-index: 3; }
    @media only screen and (max-width: 768px) {
      section.full-width-image-row .full-width-image-row__content {
        left: 0;
        bottom: 50px;
        width: auto;
        padding: 0 30px; } }
    section.full-width-image-row .full-width-image-row__content h2.huge,
    section.full-width-image-row .full-width-image-row__content .giga {
      font-size: 110px;
      padding-bottom: 6px;
      line-height: 1;
      color: #ffffff;
      text-indent: -10px; }
      @media only screen and (max-width: 768px) {
        section.full-width-image-row .full-width-image-row__content h2.huge,
        section.full-width-image-row .full-width-image-row__content .giga {
          font-size: 90px !important;
          text-indent: -5px;
          line-height: 70px; } }
    section.full-width-image-row .full-width-image-row__content h3 {
      font-size: 30px;
      margin-bottom: 10px;
      color: #ffffff;
      padding-top: 20px;
      position: relative; }
      section.full-width-image-row .full-width-image-row__content h3:before {
        content: '';
        width: 140px;
        height: 3px;
        background: #ffffff;
        position: absolute;
        top: 0;
        left: 0; }
    section.full-width-image-row .full-width-image-row__content p {
      font-size: 16px;
      padding: 0; }

section.full-width-image-row.full-width-image-row--video-content {
  height: auto; }
  section.full-width-image-row.full-width-image-row--video-content .full-width-image-row__content {
    max-width: 1180px;
    height: 100%;
    width: auto;
    position: relative;
    bottom: 0;
    padding: 80px;
    -webkit-transform: none;
    transform: none;
    left: 0;
    margin: 0 auto; }
    @media only screen and (min-width: 420px) and (max-width: 768px) {
      section.full-width-image-row.full-width-image-row--video-content .full-width-image-row__content {
        padding: 40px; } }
    @media only screen and (max-width: 419px) {
      section.full-width-image-row.full-width-image-row--video-content .full-width-image-row__content {
        padding: 0; } }

.post-type-archive-offers .site,
.post-type-archive-offers .site__inner,
.post-type-archive-offers .share-line__buttons,
.post-type-archive-offers .site-content {
  background-color: #2a2a2a; }

.post-type-archive-offers .page-intro, .post-type-archive-offers nav.next-article {
  padding: 150px 20px 0px;
  background: none; }
  @media only screen and (max-width: 768px) {
    .post-type-archive-offers .page-intro, .post-type-archive-offers nav.next-article {
      padding: 110px 0px 0px; } }
  .post-type-archive-offers .page-intro h1, .post-type-archive-offers nav.next-article h1 {
    color: #0E9C48; }
  .post-type-archive-offers .page-intro h2, .post-type-archive-offers nav.next-article h2 {
    color: #ffffff; }
    @media only screen and (max-width: 768px) {
      .post-type-archive-offers .page-intro h2, .post-type-archive-offers nav.next-article h2 {
        color: #ffffff;
        font-size: 30px;
        margin-top: 10px; } }
  .post-type-archive-offers .page-intro .page-intro__inner .share-line:before, .post-type-archive-offers nav.next-article .page-intro__inner .share-line:before {
    display: none; }
  @media only screen and (max-width: 768px) {
    .post-type-archive-offers .page-intro .page-intro__inner .share-line, .post-type-archive-offers nav.next-article .page-intro__inner .share-line {
      margin: 30px auto 0px; } }
  .post-type-archive-offers .page-intro .page-intro__inner .share-line__buttons, .post-type-archive-offers nav.next-article .page-intro__inner .share-line__buttons {
    background: #2a2a2a; }
    .post-type-archive-offers .page-intro .page-intro__inner .share-line__buttons .share-button, .post-type-archive-offers nav.next-article .page-intro__inner .share-line__buttons .share-button {
      background: #141414; }

.post-type-archive-offers section.post-columns {
  padding: 0px 50px 50px; }
  @media only screen and (max-width: 768px) {
    .post-type-archive-offers section.post-columns {
      padding: 0px; } }
  .post-type-archive-offers section.post-columns .offers-empty {
    background: rgba(0, 0, 0, 0.29);
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    padding: 70px;
    text-align: center;
    color: white;
    border-radius: 4px; }
    @media only screen and (max-width: 768px) {
      .post-type-archive-offers section.post-columns .offers-empty {
        margin-top: 40px;
        margin-bottom: 40px;
        max-width: 90%;
        padding: 50px 30px; } }
    .post-type-archive-offers section.post-columns .offers-empty h2 {
      color: white;
      margin-bottom: 20px;
      text-transform: none;
      font-size: 20px; }
  .post-type-archive-offers section.post-columns .article__teaser {
    background: white;
    padding: 0px;
    margin: 20px 20px;
    width: calc(33.3333% - 40px);
    -webkit-box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.02), 0 6.7px 5.3px rgba(0, 0, 0, 0.028), 0 12.5px 10px rgba(0, 0, 0, 0.035), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.05), 0 100px 80px rgba(0, 0, 0, 0.07);
    box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.02), 0 6.7px 5.3px rgba(0, 0, 0, 0.028), 0 12.5px 10px rgba(0, 0, 0, 0.035), 0 22.3px 17.9px rgba(0, 0, 0, 0.042), 0 41.8px 33.4px rgba(0, 0, 0, 0.05), 0 100px 80px rgba(0, 0, 0, 0.07); }
    @media only screen and (max-width: 419px) {
      .post-type-archive-offers section.post-columns .article__teaser {
        width: 100%;
        margin: 20px; } }
    @media only screen and (min-width: 420px) and (max-width: 768px) {
      .post-type-archive-offers section.post-columns .article__teaser {
        width: calc(50% - 20px);
        margin: 10px; } }
    .post-type-archive-offers section.post-columns .article__teaser .article__teaser__img {
      height: auto; }
    .post-type-archive-offers section.post-columns .article__teaser .offers-content {
      padding: 0px 30px 30px; }
      @media only screen and (max-width: 768px) {
        .post-type-archive-offers section.post-columns .article__teaser .offers-content {
          padding: 0px 30px 30px; } }
    .post-type-archive-offers section.post-columns .article__teaser .offer-message {
      background: #a27c3e;
      font-weight: 500;
      padding: 10px 20px;
      color: white;
      text-transform: uppercase;
      letter-spacing: 2px;
      position: relative;
      top: 0px;
      left: 0px;
      z-index: 9; }

.single-offers .site__inner {
  background: white; }
  .single-offers .site__inner header.site-banner ul.secondary-nav li a p {
    color: white; }

.single-offers .site-content {
  margin-top: 120px !important; }
  @media only screen and (max-width: 768px) {
    .single-offers .site-content {
      margin-top: 90px !important; } }
  .single-offers .site-content .page-intro, .single-offers .site-content nav.next-article {
    padding: 30px 20px 20px; }
    @media only screen and (max-width: 768px) {
      .single-offers .site-content .page-intro, .single-offers .site-content nav.next-article {
        padding: 0px 20px 20px; } }
    .single-offers .site-content .page-intro h1, .single-offers .site-content nav.next-article h1 {
      margin-top: 60px;
      font-size: 30px; }
  .single-offers .site-content .post-columns {
    padding: 50px 150px 50px; }
    @media only screen and (max-width: 768px) {
      .single-offers .site-content .post-columns {
        padding: 0px 20px 0px; } }
  .single-offers .site-content .offers-content {
    padding: 0px 40px; }
    @media only screen and (max-width: 768px) {
      .single-offers .site-content .offers-content {
        padding: 0px; } }
    .single-offers .site-content .offers-content .offer-ends {
      background: #eee;
      width: auto;
      border-radius: 3px;
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 4.67px;
      font-size: 14px;
      margin: 0px 0px 20px;
      padding: 5px 15px;
      display: inline-block; }
    .single-offers .site-content .offers-content .offer-terms {
      font-size: 12px;
      line-height: 20px;
      margin-top: 20px; }
    .single-offers .site-content .offers-content h2 {
      margin-bottom: 20px;
      font-size: 25px; }
    .single-offers .site-content .offers-content ul {
      margin: 20px 10px 20px; }
      .single-offers .site-content .offers-content ul li {
        line-height: 30px;
        font-size: 17px;
        position: relative;
        padding-left: 10px; }
        .single-offers .site-content .offers-content ul li:before {
          position: absolute;
          left: -10px;
          top: 11px; }
  @media only screen and (max-width: 768px) {
    .single-offers .site-content .offers-sidebar {
      padding: 20px 0px; } }
  .single-offers .site-content .offers-sidebar .text--center {
    display: block; }
  .single-offers .site-content .offers-sidebar .btn {
    width: 100%;
    margin-bottom: 20px; }
  .single-offers .site-content .offers-sidebar .btn--inline {
    color: black;
    border: 2px solid #000000; }
