/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}
@charset "UTF-8";
/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
   ========================================================================== */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
figcaption,
figure {
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 */
button {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 2 */
}

button,
[type=button],
[type=reset],
[type=submit] {
  /**
   * Remove the inner border and padding in Firefox.
   */
  /**
   * Restore the focus styles unset by the previous rule.
   */
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Show the overflow in Edge.
 */
input {
  overflow: visible;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
  /**
   * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
   */
}
[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  color: inherit;
  /* 2 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Add the correct display in IE 9-.
 */
menu {
  display: block;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 17px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}

.hamburger-box {
  width: 50px;
  height: 21px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 50px;
  height: 3px;
  background-color: #FFF;
  border-radius: 0;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -9px;
}
.hamburger-inner::after {
  bottom: -9px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 100px;
}
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 100px;
}
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 100px;
}
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 100px;
}
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 100px;
}
.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 100px;
}
.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-10px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-10px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(10px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(10px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-10px, -12.5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-10px, 12.5px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(10px, -12.5px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(10px, 12.5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -18px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -18px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -9px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 1.5px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 9px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 18px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 9px, 0) rotate(135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -18px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 1.5px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 9px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 18px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 9px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -18px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
  top: 9px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -100px;
  top: -100px;
  transform: translate3d(100px, 100px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -100px;
  top: -100px;
  transform: translate3d(-100px, 100px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
  top: 9px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -100px;
  top: 100px;
  transform: translate3d(100px, -100px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -100px;
  top: 100px;
  transform: translate3d(-100px, -100px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 1.5px;
}
.hamburger--slider .hamburger-inner::before {
  top: 9px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 18px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-7.1428571429px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -18px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 1.5px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 9px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 18px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 9px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(7.1428571429px, -6px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -18px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 1.5px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 9px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 18px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 9px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 9px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -18px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

body h1 {
  font-size: 5rem;
}
body .colour--white {
  color: #ffffff !important;
}
body .colour--primary {
  color: #00aeff !important;
}
body .smaller {
  font-weight: bold;
  font-size: 1rem;
  width: 100%;
  text-align: right;
  opacity: 0.7;
}
body .colour--green {
  color: #87bf34 !important;
}
body .dealer--pricing--colour {
  color: #00aeff !important;
}

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

.pointer {
  cursor: pointer;
}

.button,
button,
input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: black;
  border: 3px solid #00aeff;
  border-radius: 1px;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  padding: 0.75em 1.5em;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: background-color 300ms ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  width: 100%;
  max-width: 370px;
  padding-top: 18px;
  padding-bottom: 18px;
  z-index: 1;
}
.button:hover,
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  outline: none;
}
.button:focus,
button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus {
  outline: none;
}
.button[disabled], .button.disabled,
button[disabled],
button.disabled,
input[type=button][disabled],
input[type=button].disabled,
input[type=reset][disabled],
input[type=reset].disabled,
input[type=submit][disabled],
input[type=submit].disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.button.button-secondary,
button.button-secondary,
input[type=button].button-secondary,
input[type=reset].button-secondary,
input[type=submit].button-secondary {
  background-color: transparent;
  color: #00aeff;
  transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
}
.button.button-secondary:hover,
button.button-secondary:hover,
input[type=button].button-secondary:hover,
input[type=reset].button-secondary:hover,
input[type=submit].button-secondary:hover {
  background-color: #00aeff;
  color: white;
}
.button.sweeping,
button.sweeping,
input[type=button].sweeping,
input[type=reset].sweeping,
input[type=submit].sweeping {
  background-color: transparent;
}
.button.sweeping::before,
button.sweeping::before,
input[type=button].sweeping::before,
input[type=reset].sweeping::before,
input[type=submit].sweeping::before {
  background: black;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 0.3s;
  width: 100%;
  z-index: -2;
}
.button.sweeping::after,
button.sweeping::after,
input[type=button].sweeping::after,
input[type=reset].sweeping::after,
input[type=submit].sweeping::after {
  background: #00aeff;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 0.3s;
  width: 0;
  z-index: -1;
}
.button.sweeping:hover::after,
button.sweeping:hover::after,
input[type=button].sweeping:hover::after,
input[type=reset].sweeping:hover::after,
input[type=submit].sweeping:hover::after {
  width: 100%;
}
.button.sweeping:focus:after,
button.sweeping:focus:after,
input[type=button].sweeping:focus:after,
input[type=reset].sweeping:focus:after,
input[type=submit].sweeping:focus:after {
  background-color: black;
}
.button.sweeping:disabled:hover,
button.sweeping:disabled:hover,
input[type=button].sweeping:disabled:hover,
input[type=reset].sweeping:disabled:hover,
input[type=submit].sweeping:disabled:hover {
  background-color: black;
}
.button.sweeping:disabled:after,
button.sweeping:disabled:after,
input[type=button].sweeping:disabled:after,
input[type=reset].sweeping:disabled:after,
input[type=submit].sweeping:disabled:after {
  content: none;
}

.flickity-button:active {
  outline: none;
}
.flickity-button:before, .flickity-button:after {
  content: none;
}

fieldset {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  font-weight: 600;
  margin-bottom: 0.375em;
  padding: 0;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.375em;
}

.isRequired {
  position: relative;
}
.isRequired:after {
  position: absolute;
  display: block;
  content: "* Required Field";
  font-weight: 600 !important;
  color: #ec7577;
  font-size: 1.2rem;
  bottom: -1.8rem;
  right: 0;
}

input,
select,
textarea {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
}

[type=color],
[type=date],
[type=datetime],
[type=datetime-local],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
input:not([type]),
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #a6a6a6;
  border-radius: 1px;
  line-height: 26px;
  padding: 4px 10px;
  margin-bottom: 16px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  transition: border-color 300ms ease-in-out;
  width: 100%;
  font-size: 1.4rem;
}
[type=color]:hover,
[type=date]:hover,
[type=datetime]:hover,
[type=datetime-local]:hover,
[type=email]:hover,
[type=month]:hover,
[type=number]:hover,
[type=password]:hover,
[type=search]:hover,
[type=tel]:hover,
[type=text]:hover,
[type=time]:hover,
[type=url]:hover,
[type=week]:hover,
input:not([type]):hover,
textarea:hover {
  border-color: #b6b6b6;
}
[type=color]:focus,
[type=date]:focus,
[type=datetime]:focus,
[type=datetime-local]:focus,
[type=email]:focus,
[type=month]:focus,
[type=number]:focus,
[type=password]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=text]:focus,
[type=time]:focus,
[type=url]:focus,
[type=week]:focus,
input:not([type]):focus,
textarea:focus {
  border-color: #00aeff;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(0, 174, 255, 0.7);
  outline: none;
}
[type=color]:disabled,
[type=date]:disabled,
[type=datetime]:disabled,
[type=datetime-local]:disabled,
[type=email]:disabled,
[type=month]:disabled,
[type=number]:disabled,
[type=password]:disabled,
[type=search]:disabled,
[type=tel]:disabled,
[type=text]:disabled,
[type=time]:disabled,
[type=url]:disabled,
[type=week]:disabled,
input:not([type]):disabled,
textarea:disabled {
  background-color: #f2f2f2;
  cursor: not-allowed;
}
[type=color]:disabled:hover,
[type=date]:disabled:hover,
[type=datetime]:disabled:hover,
[type=datetime-local]:disabled:hover,
[type=email]:disabled:hover,
[type=month]:disabled:hover,
[type=number]:disabled:hover,
[type=password]:disabled:hover,
[type=search]:disabled:hover,
[type=tel]:disabled:hover,
[type=text]:disabled:hover,
[type=time]:disabled:hover,
[type=url]:disabled:hover,
[type=week]:disabled:hover,
input:not([type]):disabled:hover,
textarea:disabled:hover {
  border: 1px solid #e4e4e4;
}
[type=color]::-moz-placeholder, [type=date]::-moz-placeholder, [type=datetime]::-moz-placeholder, [type=datetime-local]::-moz-placeholder, [type=email]::-moz-placeholder, [type=month]::-moz-placeholder, [type=number]::-moz-placeholder, [type=password]::-moz-placeholder, [type=search]::-moz-placeholder, [type=tel]::-moz-placeholder, [type=text]::-moz-placeholder, [type=time]::-moz-placeholder, [type=url]::-moz-placeholder, [type=week]::-moz-placeholder, input:not([type])::-moz-placeholder, textarea::-moz-placeholder {
  color: tint(#555c5e, 40%);
}
[type=color]:-ms-input-placeholder, [type=date]:-ms-input-placeholder, [type=datetime]:-ms-input-placeholder, [type=datetime-local]:-ms-input-placeholder, [type=email]:-ms-input-placeholder, [type=month]:-ms-input-placeholder, [type=number]:-ms-input-placeholder, [type=password]:-ms-input-placeholder, [type=search]:-ms-input-placeholder, [type=tel]:-ms-input-placeholder, [type=text]:-ms-input-placeholder, [type=time]:-ms-input-placeholder, [type=url]:-ms-input-placeholder, [type=week]:-ms-input-placeholder, input:not([type]):-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: tint(#555c5e, 40%);
}
[type=color]::placeholder,
[type=date]::placeholder,
[type=datetime]::placeholder,
[type=datetime-local]::placeholder,
[type=email]::placeholder,
[type=month]::placeholder,
[type=number]::placeholder,
[type=password]::placeholder,
[type=search]::placeholder,
[type=tel]::placeholder,
[type=text]::placeholder,
[type=time]::placeholder,
[type=url]::placeholder,
[type=week]::placeholder,
input:not([type])::placeholder,
textarea::placeholder {
  color: tint(#555c5e, 40%);
}

textarea {
  resize: vertical;
}

[type=checkbox],
[type=radio] {
  display: inline;
  margin-right: 0.375em;
}

[type=file] {
  margin-bottom: 0.75em;
  width: 100%;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../images/down-caret.svg");
  background-repeat: no-repeat;
  background-size: 25px 12px;
  background-position: center right 25px;
  border: 1px solid #e4e4e4;
  color: #00aeff;
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 0.75em;
  padding: 10px 55px 10px 15px;
  line-height: 32px;
  width: 100%;
}
select::-ms-expand {
  display: none;
}

[type=checkbox]:focus,
[type=radio]:focus,
[type=file]:focus,
select:focus {
  outline: 3px solid rgba(0, 174, 255, 0.6);
  outline-offset: 2px;
}

.switch[type=checkbox] {
  outline: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: inline-block;
  position: absolute;
  opacity: 0;
}

.switch input[type=checkbox],
input[type=radio] {
  vertical-align: baseline;
}

.switch[type=checkbox] + label {
  position: relative;
  display: initial;
  font-size: 1rem;
  line-height: initial;
  padding-left: 3.5rem;
  padding-top: 0.2rem;
  cursor: pointer;
}

.switch[type=checkbox]:checked + label::before,
.switch[type=checkbox]:checked + label:before {
  background: #00aeff;
}

.switch[type=checkbox] + label::before,
.switch[type=checkbox] + label:before {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 3rem;
  height: 1.5rem;
  border: 0.1rem solid transparent;
  border-radius: 24px;
  background: #e4e4e4;
  content: "";
}

.switch[type=checkbox]:checked + label::after {
  left: 1.625rem;
}

.switch[type=checkbox] + label::after,
.switch[type=checkbox] + label:after {
  display: block;
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  width: 1rem;
  height: 1rem;
  transform: translate3d(0, 0, 0);
  border-radius: 50%;
  background: #fff;
  transition: all 0.25s ease-out;
  content: "";
}

html {
  box-sizing: border-box;
  font-size: 10px;
}

body {
  font-size: 1.6rem;
}

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

dl {
  margin: 0;
}

dt {
  font-weight: 600;
  margin: 0;
}

dd {
  margin: 0;
}

figure {
  margin: 0;
}

img,
picture {
  margin: 0;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  margin: 1.5em 0;
  table-layout: fixed;
  text-align: left;
  width: 100%;
}

thead {
  line-height: 1.2;
  vertical-align: bottom;
}

tbody {
  vertical-align: top;
}

tr {
  border-bottom: 1px solid #e4e4e4;
}

th {
  font-weight: 600;
}

th,
td {
  padding: 0.75em 0.75em 0.75em 0;
}

html {
  color: #555c5e;
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  font-size: modular-scale(1);
  line-height: 1.2;
  margin: 0 0 0.75em;
}

p {
  margin: 0 0 0.75em;
}

a {
  color: #00aeff;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  transition: color 300ms ease-in-out;
}
a:hover {
  outline: none;
}
a:focus {
  outline: none;
  outline-offset: 2px;
}

h1 {
  font-size: 26px;
  color: #555c5e;
  letter-spacing: 0;
  font-weight: bold;
}

.secondary-h1 {
  margin: 0 0 15px 0;
}

.section-h1 {
  color: #3a3a3a;
  margin: 0 0 23px;
  text-align: center;
  text-transform: uppercase;
}

h2 {
  font-size: 20px;
  letter-spacing: 0;
  font-weight: 800;
}

.h2 {
  font-size: 20px;
  letter-spacing: 0;
  font-weight: 800;
}

.secondary-h2 {
  color: #a6a6a6;
  margin: 0 0 35px 0;
}

h3 {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0;
}

h4 {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0;
}

h5 {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0;
}

p {
  font-size: 16px;
  color: #3a3a3a;
  letter-spacing: 0;
}

.p3 {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
}
.p3.blue-itl {
  color: #00aeff;
  font-style: italic;
}
.p3.itl {
  font-style: italic;
}

hr {
  border-bottom: 1px solid #e4e4e4;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: 1.5em 0;
}

.blue-text {
  color: #00aeff;
}

.white-text {
  color: white !important;
}

.hero-title {
  font-weight: 900;
  font-size: 36px;
  color: #555c5e;
  letter-spacing: 1px;
  line-height: 36px;
}

.hero-subtitle {
  font-weight: bold;
  font-size: 24px;
  color: #555c5e;
  letter-spacing: 0;
  line-height: 26px;
}

.blue-bar_left {
  position: relative;
}
.blue-bar_left:after {
  position: absolute;
  content: "";
  width: 50vw;
  height: 4px;
  left: calc(-50vw - 10px);
  background-color: #00aeff;
  top: 15px;
}

.blue-bar_right {
  position: relative;
}
.blue-bar_right:after {
  position: absolute;
  content: "";
  width: 50vw;
  height: 4px;
  right: calc(-50vw - 10px);
  background-color: #00aeff;
  top: 15px;
}

.super-heavyweight {
  font-weight: 900;
  font-size: 18px;
}

.super-heavyweight__blue {
  font-weight: 900;
  color: #00aeff;
  font-size: 18px;
}

a {
  text-decoration: none;
}

.home-section-headings {
  font-weight: bold;
  font-size: 26px;
  letter-spacing: 0;
  line-height: 30px;
}

.colour--blue {
  color: #00aeff !important;
}

main {
  background-color: white;
}

.align-items-center {
  display: flex;
  align-items: center;
}

.justify-content-between {
  display: flex;
  justify-content: space-between;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.wysiwyg .media,
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}
.wysiwyg .media object,
.wysiwyg .media embed,
.wysiwyg .media iframe,
.embed-container object,
.embed-container embed,
.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer {
  background-color: #000;
  padding: 50px 12px 40px;
  text-align: center;
}
.footer .to-top {
  color: white;
  margin-top: 20px;
  display: inline-block;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
.footer .to-top span {
  padding-right: 5px;
}
.footer .contact-option {
  text-align: center;
}
.footer .contact-option p {
  color: white;
}
.footer .contact-options p {
  font-size: 14px;
  line-height: 17px;
}

.site-info {
  padding-top: 10px;
  padding-left: 12px;
  padding-right: 12px;
}
.site-info p {
  font-size: 16px;
}
.site-info span {
  padding-left: 10px;
  padding-right: 10px;
  border-right: 1px solid #00aeff;
}
.site-info span:first-of-type {
  padding-left: 0;
}
.site-info span:last-of-type {
  padding-right: 0;
  border-right: none;
}
.site-info.desktop {
  display: none;
}

.footer-navigation {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: none;
  list-style: none;
  text-transform: uppercase;
}
.footer-navigation a {
  display: block;
  padding: 0px 15px;
  margin-top: 5px;
  margin-bottom: 5px;
  color: white;
  border-right: 1px solid white;
}
.footer-navigation li:first-of-type a {
  padding-left: 0;
}
.footer-navigation li:last-of-type a {
  border-right: none;
}

.home-banner {
  position: relative;
}
.home-banner .hero-title {
  color: white;
}
.home-banner .hero-subtitle {
  color: white;
}
.home-banner .banner-links {
  display: flex;
  justify-content: center;
  padding-top: 44px;
}
.home-banner .banner-link {
  margin-left: 10px;
  margin-right: 10px;
}
.home-banner .banner-link .image-wrapper {
  height: 50px;
  width: 50px;
  position: relative;
}
.home-banner .banner-link:hover a {
  color: #00aeff;
}
.home-banner .banner-link:hover .normal {
  opacity: 0;
}
.home-banner .banner-link:hover .hover {
  opacity: 100;
}
.home-banner .banner-link .hover {
  opacity: 0;
}
.home-banner .banner-link a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-align: center;
  padding: 10px;
}
.home-banner .banner-link img {
  margin-bottom: 10px;
  width: 50px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.2s ease-in-out;
}

.scroll-down {
  position: absolute;
  right: 37px;
  bottom: 50px;
}

.home-banner {
  text-align: right;
}
.home-banner .banner-content {
  padding-top: 140px;
  text-align: center;
  width: 100%;
  position: relative;
}
.home-banner .made-nz {
  position: absolute;
  right: 20px;
  width: 100px;
  top: 20px;
}

.banner-video {
  display: none;
  overflow: hidden;
}

.scroll-down {
  display: none;
}

.news-preview {
  padding: 15px 12px;
}
.news-preview .image-wrapper {
  padding-bottom: 15px;
}
.news-preview .image-wrapper img {
  width: 100%;
}
.news-preview.first-news {
  width: 100%;
  border-bottom: 4px solid #e4e4e4;
  padding-bottom: 20px;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 25px;
}
.news-preview.first-news .image-wrapper img {
  vertical-align: middle;
}
.news-preview.first-news .content {
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 20px;
}

.news-preview_list {
  text-align: left;
  padding-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
}
.product-holder .header-wrapper h1 {
  width: 220px;
}

.product-category {
  padding-bottom: 30px;
  padding-top: 60px;
  text-align: center;
}
.product-category.is-active .product-list {
  display: flex;
}
.product-category.is-active .toggle-products img {
  transform: rotate(180deg);
}

.category-option:hover {
  cursor: pointer;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  padding-left: 12px;
  padding-right: 12px;
}

.product-preview {
  width: calc(50% - 10px);
  display: block;
  margin: 5px;
  text-align: center;
  transition: transform 0.5s;
  position: relative;
}
.product-preview::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.15);
  content: "";
  opacity: 0;
  z-index: -1;
}
.product-preview:hover, .product-preview:focus {
  transform: scale3d(1.006, 1.006, 1);
}
.product-preview:hover::after, .product-preview:focus::after {
  opacity: 1;
}
.product-preview:hover .product-image, .product-preview:focus .product-image {
  opacity: 0.2;
}
.product-preview:hover .hover-badge, .product-preview:focus .hover-badge {
  opacity: 100;
}
.product-preview .product-image {
  width: 100%;
  vertical-align: middle;
  transition: opacity ease-in-out 300ms;
}
.product-preview .hover-badge {
  background-color: rgba(0, 174, 255, 0.9);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}
.product-preview p {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 15px;
  padding: 10px;
  margin-bottom: 0;
}
.product-preview .image-wrapper {
  position: relative;
}
.accordian-wrapper .toggle-products {
  border: none;
  background: transparent url("../images/line.svg") repeat-x center;
  max-width: 100%;
}
.accordian-wrapper .toggle-products:hover, .accordian-wrapper .toggle-products:focus {
  background-color: transparent;
  border: none;
}
.accordian-wrapper .toggle-products img {
  transition: transform 0.3s;
}

.teammember {
  width: 100%;
  height: 100vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 10px;
}
.teammember.is-active .content {
  opacity: 1;
  background-color: rgba(0, 174, 255, 0.9);
}
.teammember p {
  color: white;
  margin-bottom: 0;
  width: 100%;
}
.teammember .content {
  height: 100%;
  width: 100%;
  opacity: 0;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  transition: opacity 0.3s ease-in-out;
}
.teammember .content:focus, .teammember .content:hover {
  opacity: 1;
  background-color: rgba(0, 174, 255, 0.9);
}
.teammember .name {
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 0;
  line-height: 24px;
  margin-bottom: 10px;
}
.teammember .role {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 16px;
}

.theteam .container {
  padding-left: 12px;
  padding-right: 12px;
}
.theteam .intro-content {
  max-width: 900px;
  margin-right: auto;
  padding-bottom: 20px;
  text-align: center;
}
.theteam .history_left {
  padding-bottom: 30px;
}
.theteam .history_right {
  border-top: 4px solid #00aeff;
  padding-top: 30px;
}

.teammembers_list {
  padding-bottom: 30px;
}

.ute-category {
  max-width: 100%;
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  max-height: 1px;
}
.ute-category:before, .ute-category:after {
  content: unset;
}

.accordian.is-active .accordian__content {
  display: block;
}

.accordian__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordian__header h2 {
  margin-bottom: 0;
}

.accordian__toggle {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #00aeff;
  width: 100%;
  max-width: 100%;
}

.accordian__content {
  display: none;
  padding-top: 30px;
  padding-bottom: 30px;
}

.site-notification {
  padding: 1rem 40px;
  background-color: #00aeff;
  border-bottom: 2px solid black;
  color: white;
  font-weight: bold;
  align-items: center;
  display: none;
}
.site-notification.site-notification-active {
  display: flex;
}

.site-notification-icon {
  display: block;
  margin-right: 1rem;
}

.site-notification-content {
  flex: 1 1 0%;
}
.site-notification-content * {
  color: white !important;
}
.site-notification-content a {
  text-decoration: underline;
}
.site-notification-content > *:last-child {
  margin-bottom: 0;
}

.site-notification-close {
  opacity: 0.5;
  transition: 0.3s opacity;
  cursor: pointer;
}
.site-notification-close:hover {
  opacity: 1;
}

.header-wrapper {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center;
  padding-top: 60px;
}
.header-wrapper h1 {
  display: inline-block;
}
.header-wrapper.header-wrapper__small {
  max-width: 710px;
}
.contact-container .contact-wrapper {
  border-bottom: 4px solid #e4e4e4;
  border-top: 4px solid #e4e4e4;
  padding: 40px 12px 60px;
}
.contact-container .content {
  padding: 46px 12px 55px;
  text-align: center;
}
.contact-container button[type=submit] {
  margin-top: 43px;
  width: 100%;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}

label {
  color: #00aeff;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

.map {
  height: 400px;
}

.content-top--desktop {
  display: none;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.newspage {
  margin-top: 8rem;
}
.newspage .content {
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 100px;
}
.newspage .p3.blue-itl {
  margin-bottom: 14px;
}

.lastest-articles_wrapper {
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 70px;
}
.lastest-articles_wrapper h4 {
  text-transform: uppercase;
}
.lastest-articles_wrapper .latest-articles {
  border-top: 4px solid #555c5e;
  padding-top: 40px;
}
.lastest-articles_wrapper ul {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
}

.news-image {
  width: 100%;
  height: auto;
  padding-bottom: 25px;
}

.openings-list {
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 40px;
}

.opening {
  padding-top: 15px;
  padding-bottom: 40px;
  text-align: center;
}

a.apply-now {
  padding: 13px 30px;
  border-bottom: 1px solid #00aeff;
}

.application {
  padding-top: 60px;
  padding-bottom: 80px;
}
.application .container {
  padding-left: 12px;
  padding-right: 12px;
}

.application-form .btn-toolbar {
  text-align: center;
  padding-top: 40px;
}
.application-form .btn-toolbar button {
  width: 100%;
}

.application {
  background-color: #f7f7f7;
}
.application .field.checkbox {
  display: flex;
  align-items: center;
}
.application .field.checkbox label {
  margin-bottom: 0;
  color: #3a3a3a;
  font-weight: 600;
}

.home-who,
.home-banner {
  background-size: cover;
  background-position: center center;
}
.home-who h2, .home-who p,
.home-banner h2,
.home-banner p {
  color: white;
}
.home-who h2,
.home-banner h2 {
  display: inline-block;
}

.home-products {
  padding-top: 60px;
  padding-bottom: 70px;
}
.home-products .header-wrapper {
  text-align: center;
}
.home-products .header-wrapper h2 {
  display: inline-block;
}

.home-who {
  padding: 150px 25px 120px;
  text-align: center;
}
.home-who p {
  margin-bottom: 0;
}
.home-who .button {
  margin-top: 20px;
}

.find-on-facebook {
  display: inline-block;
  padding: 5px;
  margin-top: 30px;
}

.home-contact {
  padding: 145px 25px 80px;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
}
.home-contact h2, .home-contact p {
  color: white;
}
.home-contact h2 {
  display: inline-block;
}
.home-contact p {
  margin-bottom: 0;
}
.home-contact .button {
  margin-top: 20px;
}

.home-products .button-wrapper {
  text-align: center;
  padding-left: 12px;
  padding-right: 12px;
}

.featured-list {
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 30px;
  padding-top: 20px;
}

.featured-product {
  display: block;
  width: 100%;
  height: 300px;
  margin-bottom: 10px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.featured-product .content-wrapper {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color ease-in-out 0.3s;
}
.featured-product .content-wrapper:hover {
  background-color: rgba(0, 174, 255, 0.7);
}
.featured-product p {
  color: white;
  font-weight: 500;
  font-size: 24px;
  line-height: 0;
}

.section-navigation {
  display: none;
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.section-navigation li {
  margin-top: 15px;
  margin-bottom: 15px;
}
.section-navigation li:first-of-type {
  margin-top: 0;
}
.section-navigation li:last-of-type {
  margin-bottom: 0;
}
.section-navigation .section-navigation-item {
  display: block;
  border-radius: 50%;
  border: 5px solid #E4E4E4;
}
.section-navigation .section-navigation-item.is-active {
  border: 5px solid #00aeff;
}

.error-page .container {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
}
.error-page .image-wrapper {
  max-width: 550px;
  padding-bottom: 20px;
  border-bottom: 4px solid #00aeff;
  margin-bottom: 20px;
}
.error-page .image-wrapper img {
  width: 100%;
}

.build-landing-container {
  padding: 15px 0 40px;
}
.build-landing-container .container {
  padding-left: 12px;
  padding-right: 12px;
}

.build-category {
  margin: 0 0 30px 0;
  padding: 27px 20px 30px;
}
.build-category:hover {
  cursor: pointer;
}

.build-category-title-teaser {
  align-self: center;
}

.build-category-title {
  max-width: 180px;
  margin: 0 auto;
  margin-bottom: 23px;
  text-align: center;
  text-transform: uppercase;
}

.build-category-img-teaser {
  display: flex;
  align-items: center;
  margin: 0 auto;
  max-width: 250px;
}

.build-category-img {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
}

.build-category-divider {
  color: #00aeff;
  margin: 0 0 63px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}
.build-category-divider::before {
  background-color: #FFF;
  position: absolute;
}
.build-category-divider::after {
  background-color: #00aeff;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.build-category-divider-label {
  background-color: #FFF;
  margin: -10px 0;
  padding: 0 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.build-container {
  padding: 0 0 75px;
}
.build-container .container {
  padding-left: 12px;
  padding-right: 12px;
}

.build-notification {
  margin-bottom: 1.5rem;
  padding-top: 0;
}

.build-vehicle-wrapper {
  margin: 0 0 60px;
  text-align: center;
  width: 100%;
}

.build-vehicle-stack {
  display: grid;
}

.build-vehicle-img {
  display: block;
  margin: 0 auto;
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  grid-column-start: 1;
  grid-row-start: 1;
}

.build-vehicle-cta {
  color: #3a3a3a;
  display: inline-block;
  font-style: italic;
  position: relative;
  text-align: right;
  padding: 0 30px 0 0;
}
.build-vehicle-cta::after {
  content: "";
  background-image: url("../images/zoom.svg");
  background-size: contain;
  background-repeat: no-repeat;
  height: 26px;
  position: absolute;
  top: 0;
  right: 0;
  width: 21px;
}

.reset-build {
  background-color: transparent;
  width: inherit;
  margin-left: 20px;
  border: inherit;
  color: #555c5e;
  font-weight: 300;
}
.reset-build.normy {
  color: #00aeff;
  margin-left: 0;
  padding-left: 5px;
  padding-right: 5px;
}

.build-select-wrapper {
  margin: 0 0 100px;
}
.build-select-wrapper .container {
  padding-left: 0;
  padding-right: 0;
}
.build-summary-wrapper .build-summary-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.build-summary-wrapper h1 {
  font-size: 24px;
  text-transform: none;
  text-align: center;
  width: 80%;
  margin: 0 auto 1rem auto;
}
.build-summary-wrapper p {
  margin-bottom: 0;
  font-size: 16px;
}
.build-summary-wrapper button {
  background-color: transparent;
  border: none;
  width: auto;
  height: auto;
  color: inherit;
  padding: 0 0.5rem;
  transition: 0.3s color;
  border: 2px solid #00aeff;
  font-size: 14px;
  height: 2.5rem;
}
.build-summary-wrapper button:not(:first-child) {
  margin-left: 20px;
}
.build-summary-wrapper button:hover {
  color: #00aeff;
}

.build-select-tabs {
  display: flex;
  justify-content: flex-start;
  list-style: none;
  margin: 60px 0px 30px 0;
  padding: 0;
  overflow-x: auto;
  flex-wrap: wrap;
}

.build-select-tab {
  color: #555c5e;
  cursor: pointer;
  font-size: 14px;
  min-width: 135px;
  padding: 10px 20px;
  position: relative;
  text-transform: uppercase;
  transition: color 0.3s ease;
  width: 100%;
  text-align: center;
}
.build-select-tab:hover {
  color: #00aeff;
}
.build-select-tab.is-active {
  color: #00aeff;
}
.build-select-tab.is-active::after {
  background-color: #00aeff;
  bottom: 0;
  content: "";
  width: 5px;
  left: 0;
  position: absolute;
  height: 100%;
}

.build-select-container {
  padding: 0 15px;
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
}
.build-select-container .VueCarousel-navigation-button[type=button] {
  background-color: transparent;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
  position: absolute;
  height: 50px;
  top: 100%;
  width: 55px;
  z-index: 3;
  background-size: 1rem;
  background-position: 50% 50%;
}
.build-select-container .VueCarousel-navigation-button[type=button]:hover {
  background-color: transparent;
  background-repeat: no-repeat;
}
.build-select-container .VueCarousel-navigation-button[type=button]:active, .build-select-container .VueCarousel-navigation-button[type=button]:focus {
  box-shadow: none;
}
.build-select-container .VueCarousel-navigation-button[type=button].VueCarousel-navigation-prev {
  background-image: url("../images/slider-arrow.svg");
  transform: translateY(0%);
  left: 15px;
}
.build-select-container .VueCarousel-navigation-button[type=button].VueCarousel-navigation-prev:disabled {
  background-image: url("../images/disabled-arrow.svg");
  opacity: 1;
}
.build-select-container .VueCarousel-navigation-button[type=button].VueCarousel-navigation-next {
  background-image: url("../images/slider-arrow.svg");
  transform: rotate(180deg);
  right: 15px;
}
.build-select-container .VueCarousel-navigation-button[type=button].VueCarousel-navigation-next:disabled {
  background-image: url("../images/disabled-arrow.svg");
  opacity: 1;
}

.VueCarousel-slide:last-of-type .build-select-tile {
  width: 450px;
}

.build-option {
  position: relative;
  border: 8px solid white;
  border-top: none;
  border-bottom: none;
  display: flex;
  height: 160px;
  width: 100%;
  background-size: contain;
  background: #e4e4e4;
  background-position: right;
  background-repeat: no-repeat;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 12px 10px;
}
.build-option.empty {
  background-color: #fff;
  display: none;
}
.build-option.empty:hover {
  cursor: default;
}
.build-option.empty::after {
  background-color: #fff;
}
.build-option::after {
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  top: 0;
  position: absolute;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 1;
}
.build-option.selected::after {
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.8;
  top: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.build-option main {
  width: 100%;
  height: 75vh;
  background: none !important;
  z-index: 99;
}

.build-option footer {
  width: 100%;
  height: 25vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
}

.build-option_title {
  color: white;
  font-size: 16px;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}

.build-option_options {
  flex: 1 1 0%;
}
.build-option_options .build-options_controls {
  display: none;
}
.build-option_options.both .build-options_controls {
  display: flex;
}
.build-option_options.minus .build-options_controls {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.build-option_options.minus .build-option_add {
  display: none;
}

.build-option_quantity {
  color: white;
  display: block;
  font-size: 2rem;
  font-weight: 900;
  float: left;
  line-height: 1.2;
  margin: 0 8px;
  text-transform: uppercase;
}

.build-option_add,
.build-option_minus {
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  cursor: pointer;
  height: 36px;
  width: 36px;
  float: left;
  padding: 0;
}

.build-option_add {
  background-image: url("../images/white-plus.svg");
}

.build-option_minus {
  background-image: url("../images/white-minus.svg");
}

.build-option_price {
  color: white;
  font-size: 16px;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
  padding: 0 8px;
}

.build-select-checkbox {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  max-height: 1px;
}

.build-select-tile-text-wrapper {
  z-index: 2;
}

.build-select-tile-ctas {
  align-items: center;
  justify-content: space-between;
  display: flex;
  width: 100%;
  z-index: 2;
}

.build-select-tile-link {
  color: white;
  font-weight: 500;
}

.build-select-tile_status {
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  cursor: pointer;
  height: 36px;
  width: 36px;
  background-image: url("../images/white-plus.svg");
  transition: transform 300ms ease-in-out;
}
.build-select-tile_status.remove {
  transform: rotate(45deg);
}

.build-summary-info-wrapper .upper-controls {
  margin: 35px auto 35px;
  text-align: center;
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  flex-wrap: wrap;
}
.build-summary-info-wrapper .upper-controls .field-wrapper {
  flex-basis: 100%;
  margin-bottom: 20px;
}
.build-summary-info-wrapper .upper-controls .field-wrapper:last-of-type {
  flex: 1 1 0%;
}
.build-summary-info-wrapper .upper-controls .input-wrapper {
  flex-basis: 100%;
}
.build-summary-info-wrapper .cart-controls {
  margin: -20px 0 0 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.build-summary-info-wrapper .cart-controls .button {
  margin: 0 auto;
}
.build-summary-info-wrapper .cart-controls .button:not(:first-child) {
  margin-top: 15px;
}
.build-summary-info-wrapper .lower-region {
  padding: 0 12px;
  margin-top: 1rem;
  margin-bottom: -15px;
}
.build-summary-info-wrapper .lower-region + .lower-controls {
  border-top: none !important;
  padding-top: 0;
}
.build-summary-info-wrapper .lower-controls {
  margin: 35px auto 35px;
  text-align: center;
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  flex-wrap: wrap;
}
.build-summary-info-wrapper .lower-controls .email-success {
  width: 100%;
}
.build-summary-info-wrapper .lower-controls .input-wrapper {
  margin-bottom: 20px;
  text-align: left;
}
.build-summary-info-wrapper .lower-controls .input-wrapper input {
  margin-bottom: 0px;
}
.build-summary-info-wrapper .build-summary-model {
  margin: 0 0 25px;
}
.build-summary-info-wrapper .build-summary-info-label {
  color: #3a3a3a;
  display: inline-block;
  margin: 0 0 5px;
  text-transform: uppercase;
}
.build-summary-info-wrapper .build-summary-info {
  display: block;
  margin: 0;
}
.build-summary-info-wrapper .build-summary-download {
  font-weight: 700;
  padding: 0 28px 0 0;
  position: relative;
  text-transform: uppercase;
}
.build-summary-info-wrapper .build-summary-download::after {
  background-image: url("../images/down-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 1px;
  content: "";
  height: 22px;
  position: absolute;
  right: 0;
  width: 19px;
}

.quantity {
  width: 100px;
  display: flex;
  color: #fff;
}

.quantity--number {
  padding: 0px 8px;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
}

.quantity--control {
  border-radius: 50%;
  border: 1px solid white;
  padding: 0px 8px;
  font-weight: 700;
  margin-left: 6px;
  font-size: 2rem;
  line-height: 1;
}

.cart-container {
  padding: 0 0 70px;
}
.cart-container .container {
  padding-left: 12px;
  padding-right: 12px;
}
.cart-container input:not([type=button]) {
  text-align: center;
}

.cart-column-wrapper {
  margin: 0 0 40px 0;
}

.submission-note {
  width: 100%;
}

.cart-column {
  text-align: center;
}
.cart-column:nth-of-type(2n - 1) {
  border-bottom: 4px solid #e4e4e4;
  margin: 0 0 25px;
}

.cart-column-panel {
  height: 100%;
  margin: 0 auto;
  max-width: 475px;
}

.cart-model-wrapper {
  margin: 0 0 20px;
}

.cart-model-label {
  color: #3a3a3a;
  font-weight: 800;
  display: block;
  margin: 0 0 3px;
  text-transform: uppercase;
}

.cart-model-name {
  display: block;
  margin: 0;
  padding: 0 0 0 5px;
}

.cart-model-img {
  height: 130px;
  margin: 0 0 15px;
  width: 100%;
}

.extra-info {
  padding-top: 30px;
  padding-bottom: 30px;
}
.extra-info .cart-shipping-left-panel {
  width: 100%;
}

.cart-model-cta {
  color: #3a3a3a;
  display: inline-block;
  font-style: italic;
  position: relative;
  text-align: right;
  padding: 0 30px 0 0;
}
.cart-model-cta::after {
  content: "";
  background-image: url("../images/zoom.svg");
  background-size: contain;
  background-repeat: no-repeat;
  height: 26px;
  position: absolute;
  top: 0;
  right: 0;
  width: 21px;
}

.cart-label {
  color: #3a3a3a;
  margin: 0 0 5px;
}

.cart-company {
  color: #00aeff;
  margin: 0 0 30px;
  text-transform: uppercase;
}

.cart-purchaser {
  margin: 0 0 20px 0;
}

.cart-table-container {
  margin: 0 0 10px;
}

.cart-shipping-wrapper {
  text-align: center;
}

.cart-shipping-teaser {
  margin: 0 auto;
  width: 100%;
}

.cart-shipping-left-panel {
  padding: 0 0 5px;
}

.cart-shipping-right-panel {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.cart-btn-wrapper {
  margin: 0 auto;
  margin-top: 20px;
  max-width: 370px;
}

.cart-btn {
  margin: 0 0 28px;
  text-align: center;
}

.cart-model-img .build-vehicle-stack {
  width: 100%;
}

.submission-message {
  padding-top: 30px;
}

.shipping-info {
  padding-top: 30px;
}

.black-overlay {
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  position: fixed;
  margin: 0;
  color: white;
}
.black-overlay .loader-wrapper {
  width: 100%;
  height: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: static !important;
}
.black-overlay .pulled-left {
  font-weight: 600;
}

.login-container {
  padding: 0 0 70px;
}

.login-teaser {
  padding: 0 12px;
  text-align: center;
  width: 100%;
}
.login-teaser:nth-of-type(2n - 1) {
  border-bottom: 4px solid #00aeff;
  margin: 0 0 40px 0;
  padding: 0 12px 45px;
}

.account-input-group {
  margin: 0 0 40px;
}

.profile-container {
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 710px;
}

.showOnClick {
  padding-bottom: 40px;
}

.logout {
  margin-top: 40px;
  margin-bottom: 40px;
}

.vimeo-page {
  padding: 4rem 0 2rem 0;
}

.vimeo-main {
  margin-bottom: 2rem;
}
.vimeo-main .vimeo-text {
  margin-top: 1rem;
}

.vimeo-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.vimeo-embed iframe, .vimeo-embed object, .vimeo-embed embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vimeo-wrapper {
  margin: 2rem 0;
}

.vimeo-subtitle {
  font-size: 1.5rem;
}

.vimeo-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: -1rem;
}
.vimeo-list .vimeo-item {
  padding: 1rem;
  width: 100%;
}
.vimeo-list .vimeo-item .vimeo-thumbnail {
  cursor: pointer;
  width: 100%;
}
.vimeo-list .vimeo-item .vimeo-name {
  font-size: 1rem;
  margin: 0;
}

main {
  background-color: #fff;
}

.builder-spacing {
  padding-top: 90px;
}

.profile-container {
  padding-top: 40px;
  margin: 0 auto;
}

.navigation-spacing_elements {
  padding-top: 64.5px;
}

.normal-page .container {
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 30px;
}

.sales-order {
  padding-bottom: 30px;
}

.customer-quotes {
  padding-top: 30px;
  padding-bottom: 30px;
}
.customer-quotes .notes-popup {
  margin-right: 10px;
}
.customer-quotes .table-wrapper {
  overflow-x: scroll;
  width: 100%;
}
.customer-quotes .table-wrapper table {
  table-layout: auto;
}
.customer-quotes table {
  min-width: 800px;
}
.customer-quotes table thead tr {
  border-bottom: 1px solid #00aeff;
}
.customer-quotes table thead tr td {
  color: #00aeff;
}
.customer-quotes .notes-modal {
  position: fixed;
  z-index: 9;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  justify-content: center;
  align-items: center;
}
.customer-quotes .notes-modal.active {
  display: flex;
}
.customer-quotes .notes-modal-wrapper {
  padding: 30px;
  background-color: white;
  max-width: 50vw;
  width: 100%;
}
.customer-quotes .notes-modal-content {
  margin-bottom: 30px;
}

.banner-element {
  height: calc(100vh - 64.5px);
  background-size: cover;
  background-position: center;
  padding-top: 50px;
  padding-bottom: 35px;
  text-align: center;
}
.banner-element img {
  width: 100%;
  height: auto;
}
.banner-element p {
  font-weight: 500;
}
.banner-element .container {
  padding-left: 12px;
  padding-right: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.banner-element .hero-title,
.banner-element .hero-subtitle {
  color: white;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.banner-element .hero-subtitle {
  font-weight: normal;
  font-size: 36px;
}
.banner-element .cta {
  margin: 0 auto;
}
.banner-element .content p {
  color: white;
  margin-bottom: 0;
}
.banner-element .made-in-nz {
  margin-bottom: 14px;
  width: 95px;
}
.banner-element .content-wrapper {
  padding-bottom: 30px;
}

.gallery-element {
  width: 100%;
  /* arrow color */
}
.gallery-element img {
  width: 100%;
  height: auto;
}
.gallery-element .gallery-container {
  padding-left: 12px;
  padding-right: 12px;
}
.gallery-element .gallery-image {
  height: 400px;
  width: 100%;
  background-size: cover;
  background-position: center center;
}
.gallery-element .flickity-prev-next-button {
  width: 100px;
  height: 100px;
  background: transparent;
}
.gallery-element .flickity-prev-next-button .flickity-button-icon {
  left: unset;
}
.gallery-element .flickity-prev-next-button.next .flickity-button-icon, .gallery-element .flickity-prev-next-button.prev .flickity-button-icon {
  right: 0;
}
.gallery-element .flickity-prev-next-button.next {
  right: 20px;
}
.gallery-element .flickity-prev-next-button.previous {
  left: 36px;
}
.gallery-element .flickity-prev-next-button .arrow {
  fill: #00aeff;
}
.gallery-element .flickity-prev-next-button.no-svg {
  color: #00aeff;
}
.gallery-element .flickity-prev-next-button:hover {
  background: transparent;
}
.gallery-element .flickity-prev-next-button:disabled {
  display: none;
}

.two-column-text-element {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}
.two-column-text-element img {
  width: 100%;
  height: auto;
}
.two-column-text-element .image-container {
  display: none;
  z-index: 0;
  pointer-events: none;
}
.two-column-text-element .image-container .left-image,
.two-column-text-element .image-container .right-image {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 50%;
  height: 100%;
  top: 0;
}
.two-column-text-element .image-container .left-image {
  left: 0;
}
.two-column-text-element .image-container .right-image {
  left: 50%;
}
.two-column-text-element .container {
  padding-left: 12px;
  padding-right: 12px;
  position: relative;
  z-index: 20;
}
.two-column-text-element .left-column {
  padding-bottom: 20px;
  text-align: center;
}
.two-column-text-element .right-column {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}
.two-column-text-element .right-column .with-separator {
  border-top: 4px solid #00aeff;
}

.single-column-text-element {
  padding-top: 40px;
  padding-bottom: 40px;
}
.single-column-text-element img {
  width: 100%;
  height: auto;
}
.single-column-text-element .container {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center;
}

.text-above-image {
  padding-top: 40px;
  padding-bottom: 40px;
}
.text-above-image img {
  width: 100%;
  height: auto;
}
.text-above-image .header-wrapper {
  padding-left: 0;
}
.text-above-image .content {
  padding-left: 12px;
  padding-right: 12px;
  text-align: center;
}
.text-above-image .image img {
  vertical-align: middle;
  width: 100%;
}

.text-image-element {
  padding-top: 40px;
  padding-bottom: 40px;
}
.text-image-element.portrait {
  border-bottom: 1px solid gray;
}
.text-image-element.with-border {
  border-bottom: 1px solid gray;
}
.text-image-element .container {
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
  flex-wrap: wrap;
}
.text-image-element .left-text {
  padding-bottom: 20px;
}
.text-image-element .right {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
}
.text-image-element .right-image,
.text-image-element .right-video {
  width: 100%;
}

.text-on-image {
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 40px;
  padding-top: 40px;
  text-align: center;
}
.text-on-image img {
  width: 100%;
  height: auto;
}
.text-on-image .container {
  padding-left: 12px;
  padding-right: 12px;
}
.text-on-image .header-wrapper {
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}
.text-on-image .header-wrapper h1 {
  color: white;
}
.text-on-image p {
  color: white;
}

.feature-silder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.feature-silder img {
  width: 100%;
  height: auto;
}
.feature-silder .flickity-prev-next-button {
  width: 100px;
  height: 100px;
  background: transparent;
  top: unset;
}
.feature-silder .flickity-prev-next-button .flickity-button-icon {
  left: unset;
}
.feature-silder .flickity-prev-next-button.next {
  right: 12px;
}
.feature-silder .flickity-prev-next-button.next .flickity-button-icon {
  right: 0;
}
.feature-silder .flickity-prev-next-button.previous {
  left: 12px;
}
.feature-silder .flickity-prev-next-button.previous .flickity-button-icon {
  left: 0;
}
.feature-silder .flickity-prev-next-button .arrow, .feature-silder .flickity-prev-next-button.no-svg {
  fill: #00aeff;
}
.feature-silder .flickity-prev-next-button:focus {
  box-shadow: unset;
}
.feature-silder .flickity-prev-next-button:hover {
  background: transparent;
}

.slide-navigation {
  overflow-x: hidden;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.go-to-feature {
  background-color: transparent;
  border: none;
  color: #555c5e;
  border-bottom: 2px solid #555c5e;
  padding-left: 12px;
  padding-right: 12px;
  margin-left: 12px;
  margin-right: 12px;
  width: inherit;
  max-width: unset;
}
.go-to-feature:hover, .go-to-feature:focus, .go-to-feature.is-selected {
  background-color: transparent;
  color: #00aeff;
  border-bottom: 2px solid #00aeff;
}

.feature-slide {
  width: 100%;
}
.feature-slide .image img {
  vertical-align: middle;
  width: 100%;
}
.feature-slide .content {
  padding-left: 12px;
  padding-right: 12px;
}

.content-element__content {
  padding-top: 40px;
  padding-bottom: 40px;
}
.content-element__content img {
  width: 100%;
  height: auto;
}

.map-wrapper {
  position: relative;
}
.map-wrapper .map-info {
  position: absolute;
  background-color: white;
  top: 10px;
  left: 10px;
  padding: 10px;
  border: 4px solid #00aeff;
}
.map-wrapper .map-info h3 {
  margin-bottom: 0;
}

.gallery-grid {
  padding-top: 40px;
  padding-bottom: 40px;
}
.gallery-grid .gallery-images {
  display: flex;
  flex-wrap: wrap;
}
.gallery-grid .gallery-images img {
  vertical-align: middle;
  width: 100%;
  height: auto;
}
.gallery-grid .lightbox-link {
  display: block;
  width: 50%;
}
.gallery-grid .lightbox-link:nth-of-type(7n), .gallery-grid .lightbox-link:nth-of-type(7n-1), .gallery-grid .lightbox-link:nth-of-type(7n-2) {
  width: 100%;
}

.glightbox-open {
  height: auto;
}

.lg-backdrop.in {
  opacity: 0.8 !important;
}

.lg button {
  max-width: none;
  width: auto;
}

.lightbox-gallery-element {
  padding: 40px 12px;
}
.lightbox-gallery-element .container__image {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1px;
}

.lightbox-gallery-image {
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}
.lightbox-gallery-image:hover .lightbox-gallery-thumbnail, .lightbox-gallery-image:focus .lightbox-gallery-thumbnail {
  transform: translate(-50%, -50%) scale(1.2);
}
.lightbox-gallery-image:hover::before, .lightbox-gallery-image:hover::after, .lightbox-gallery-image:focus::before, .lightbox-gallery-image:focus::after {
  opacity: 1;
}
.lightbox-gallery-image::before, .lightbox-gallery-image::after {
  content: "";
  position: absolute;
  z-index: 1000;
  opacity: 0;
  transition: 0.3s opacity;
}
.lightbox-gallery-image::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.lightbox-gallery-image::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  background-image: url(/themes/base/images/zoom.png);
  background-size: 100%;
  pointer-events: none;
}

.lightbox-gallery-thumbnail {
  width: 100%;
  height: 100%;
  transition: 0.5s all;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-table {
  margin: 0 auto;
  max-width: 1200px;
}

.product-table-head {
  background-color: #00aeff;
  color: white;
  font-weight: 700;
  padding: 20px 20px 19px 20px;
  text-align: center;
  text-transform: uppercase;
}

.product-table-product {
  padding: 0 15px;
  margin: 20px 0;
}

.product-table-img-block {
  display: flex;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 0.5rem;
  max-width: 270px;
  width: 100%;
}

.product-table-remove {
  cursor: pointer;
  border: none;
  width: unset;
  padding: 10px 20px;
  background-color: transparent;
}
.product-table-remove::after {
  background-image: url("../images/close-button.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 40px;
  width: 40px;
}

.product-table-img {
  margin: 0 22px;
  background-size: cover;
  width: 100%;
}

.product-table-text-block {
  align-items: center;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.product-table-name-teaser {
  width: 100%;
}

.product-table-name {
  color: #3a3a3a;
  font-weight: 700;
  padding: 0 15px 0 0;
}

.product-table-name__description {
  font-size: 14px;
  line-height: 20px;
}

.product-table-price {
  color: #3a3a3a;
  font-weight: 500;
  max-width: 150px;
  padding-right: 20px;
  width: 100%;
  text-align: left;
  width: auto;
}
.product-table-price.dealer-margin {
  max-width: 200px;
}
.product-table-price div:nth-child(2) {
  color: #00aeff;
}

.product-table-total-wrapper {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  width: 100%;
}

.product-table-total-box {
  margin-left: auto;
  margin-right: 0;
  padding: 5px 12px 30px;
  width: 100%;
}
.product-table-total-box table thead *,
.product-table-total-box table tbody tr td:first-child {
  font-weight: bold;
}
.product-table-total-box table tbody .price--dealer {
  color: #00aeff;
}
.product-table-total-box table tbody .price--margin {
  color: #20a820;
}

.product-table-total-teaser {
  color: #3a3a3a;
  display: flex;
  font-weight: 500;
  padding: 12px 0;
  justify-content: space-between;
}

.product-table-btn-wrapper {
  text-align: center;
}

.customer-quote {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10000;
}

.utebuilder-wrapper {
  flex-wrap: wrap;
}

.utebuilder-title {
  display: block;
  width: 100%;
}

.utebuilder-dealertoggle {
  margin: 0 auto;
}

.customer-quote {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10000;
}

.utebuilder-wrapper {
  flex-wrap: wrap;
}

.utebuilder-title {
  display: block;
  width: 100%;
}

.utebuilder-dealertoggle {
  margin: 0 auto;
}

.customer-quote {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10000;
}

.customer-quote-wrapper {
  position: relative;
  min-width: 50vw;
  padding: 30px;
  background-color: white;
}

.retail-pricing {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10000;
}

.retail-pricing-wrapper {
  position: relative;
  min-width: 50vw;
  padding: 30px;
  background-color: white;
}

#retail-pricing-message {
  line-height: normal;
  min-height: 200px;
}

.product-table-note {
  font-size: 1rem;
  line-height: 1.25rem;
  margin: 0 1rem;
}

.spinner {
  display: flex;
  height: 4rem;
  align-items: center;
  width: 100%;
}
.spinner.spinner--spaced {
  margin: 2rem 0;
}
.spinner.spinner--spinning > svg {
  -webkit-animation: spinner-rotate 2s linear infinite;
          animation: spinner-rotate 2s linear infinite;
}
.spinner.spinner--centered {
  justify-content: center;
}
.spinner.spinner--centered > div {
  flex-grow: 0;
}
.spinner.spinner--done > svg > circle {
  -webkit-animation: spinner-dash-fill 1s linear forwards;
          animation: spinner-dash-fill 1s linear forwards;
}
.spinner > div {
  flex-grow: 1;
  margin-left: 1rem;
  font-weight: bold;
}
.spinner > svg {
  display: block;
  width: 3rem;
  height: 3rem;
  transform-origin: center;
}
.spinner > svg > circle {
  fill: none;
  stroke: #00aeff;
  stroke-width: 3;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  -webkit-animation: spinner-dash 1.5s ease-in-out infinite;
          animation: spinner-dash 1.5s ease-in-out infinite;
}
.spinner > svg > path {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  -webkit-animation: spinner-stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
          animation: spinner-stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  stroke-width: 3;
  stroke: #00aeff;
  stroke-miterlimit: 10;
  transform: scale(0.8);
}
@-webkit-keyframes spinner-stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes spinner-stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spinner-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dashoffset: -125px;
  }
}
@keyframes spinner-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dashoffset: -125px;
  }
}
@-webkit-keyframes spinner-dash-fill {
  100% {
    stroke-dasharray: 200, 200;
  }
}
@keyframes spinner-dash-fill {
  100% {
    stroke-dasharray: 200, 200;
  }
}

.content-element__content {
  padding-left: 12px;
  padding-right: 12px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10000;
}

.modal__wrapper {
  position: relative;
  min-width: 50vw;
  padding: 30px;
  background-color: white;
}

.action-btn {
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  line-height: 4;
  font-size: 1.25rem;
  color: white;
  font-weight: 500;
  font-size: 1rem;
  font-weight: bold;
  background-color: black;
  border-radius: 5rem;
  padding: 0 3rem;
  cursor: pointer;
  box-shadow: 0px 0px 25px 5px rgba(0, 174, 255, 0.3);
  transition: 0.3s box-shadow;
  z-index: 10000;
}
.action-btn:hover {
  box-shadow: 0px 0px 25px 5px rgba(0, 174, 255, 0.8);
}

.js-add-accessory-to-my-cart[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

.loadable {
  position: relative;
}
.loadable .inlineLoader {
  position: absolute;
  z-index: 444;
  margin: 0 auto !important;
  top: 50% !important;
  transform: translateY(-48%) !important;
  left: 0 !important;
  right: 0 !important;
}
.loadable.loading .inlineLoader {
  display: block !important;
  opacity: 1;
}

.onPageWrapper {
  position: relative;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
}
.onPageWrapper__copy {
  width: calc(100% - 40rem);
  padding-right: 4rem;
}
.onPageWrapper__selector {
  width: 40rem;
}

[data-segment=home] .onPageSelector {
  display: none !important;
}

body .onPageSelector {
  background: black;
  margin: 0 auto 2rem;
  padding: 3rem;
  position: relative;
  width: 40rem;
}
body .onPageSelector__message {
  margin-top: 1.5rem;
  font-size: 1.3rem !important;
  text-align: center;
  color: #ffffff;
  margin-bottom: 0rem;
}
body .onPageSelector .select2-container {
  z-index: 4;
}
body .onPageSelector .select2-container .select2-selection__rendered {
  font-weight: 600;
  font-size: 16px;
}
body .onPageSelector .hideable .select2-results__options li:first-of-type {
  display: none !important;
}
body .onPageSelector .hidden {
  display: none;
}
body .onPageSelector .vehicleInsert {
  position: relative;
  display: none;
  padding-left: 5rem;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
body .onPageSelector .vehicleInsert.visible {
  display: block;
}
body .onPageSelector .vehicleInsert__icon {
  position: absolute;
  top: 10px;
  left: 0;
}
body .onPageSelector .vehicleInsert__text {
  display: inline;
  font-size: 1.3rem;
  font-weight: 700;
}
body .onPageSelector .vehicleInsert__action {
  display: inline;
  color: #00aeff;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
}
body .onPageSelector .vehicleInsert__action svg path {
  fill: #00aeff;
}
body .onPageSelector p {
  font-size: 1.5rem;
}
body .onPageSelector select {
  height: auto !important;
  line-height: 6px !important;
  border: 0 !important;
  background: #000000 !important;
  color: #000000 !important;
}
body .onPageSelector .select2-selection__rendered {
  color: #ffffff !important;
  background: #000000;
  border-bottom: 1px solid #ffffff;
}
body .onPageSelector .select2-selection__arrow b {
  background-image: url('data:image/svg+xml; utf8, <svg width="15" height="9" viewBox="0 0 15 9" xmlns="http://www.w3.org/2000/svg"><path d="m12.984.261 1.348 1.478-7.089 6.464L.317 1.731 1.683.269l5.576 5.212z" fill="%2305B9E3" fill-rule="nonzero"/></svg>');
  background-repeat: no-repeat;
  width: 15px !important;
  left: 0px !important;
  top: 18px !important;
  height: 9px !important;
  display: block !important;
  border: 0 !important;
}
body .onPageSelector h3 {
  color: #ffffff;
  margin-top: 2rem;
  text-align: center;
}
body .onPageSelector h3 span {
  font-weight: 400;
  font-size: 1.6rem;
}
body .onPageSelector h3 b {
  font-weight: 500;
  color: #00aeff;
}
body .onPageSelector .btn, body .onPageSelector .contactModal__wrap__content [type=submit], .contactModal__wrap__content body .onPageSelector [type=submit],
body .onPageSelector .contactModal__wrap__content .action,
.contactModal__wrap__content body .onPageSelector .action,
body .onPageSelector .orderModal__wrap__content [type=submit],
.orderModal__wrap__content body .onPageSelector [type=submit],
body .onPageSelector .orderModal__wrap__content .action,
.orderModal__wrap__content body .onPageSelector .action,
body .onPageSelector .summaryModal__wrap__content [type=submit],
.summaryModal__wrap__content body .onPageSelector [type=submit],
body .onPageSelector .summaryModal__wrap__content .action,
.summaryModal__wrap__content body .onPageSelector .action,
body .onPageSelector .guestModal__wrap__content [type=submit],
.guestModal__wrap__content body .onPageSelector [type=submit],
body .onPageSelector .guestModal__wrap__content .action,
.guestModal__wrap__content body .onPageSelector .action,
body .onPageSelector .loginModal__wrap__content [type=submit],
.loginModal__wrap__content body .onPageSelector [type=submit],
body .onPageSelector .loginModal__wrap__content .action,
.loginModal__wrap__content body .onPageSelector .action {
  font-weight: bold;
  margin-top: 2rem;
  width: 100%;
}
body .onPageSelector .btn[disabled=disabled], body .onPageSelector .contactModal__wrap__content [disabled=disabled][type=submit], .contactModal__wrap__content body .onPageSelector [disabled=disabled][type=submit],
body .onPageSelector .contactModal__wrap__content [disabled=disabled].action,
.contactModal__wrap__content body .onPageSelector [disabled=disabled].action,
body .onPageSelector .orderModal__wrap__content [disabled=disabled][type=submit],
.orderModal__wrap__content body .onPageSelector [disabled=disabled][type=submit],
body .onPageSelector .orderModal__wrap__content [disabled=disabled].action,
.orderModal__wrap__content body .onPageSelector [disabled=disabled].action,
body .onPageSelector .summaryModal__wrap__content [disabled=disabled][type=submit],
.summaryModal__wrap__content body .onPageSelector [disabled=disabled][type=submit],
body .onPageSelector .summaryModal__wrap__content [disabled=disabled].action,
.summaryModal__wrap__content body .onPageSelector [disabled=disabled].action,
body .onPageSelector .guestModal__wrap__content [disabled=disabled][type=submit],
.guestModal__wrap__content body .onPageSelector [disabled=disabled][type=submit],
body .onPageSelector .guestModal__wrap__content [disabled=disabled].action,
.guestModal__wrap__content body .onPageSelector [disabled=disabled].action,
body .onPageSelector .loginModal__wrap__content [disabled=disabled][type=submit],
.loginModal__wrap__content body .onPageSelector [disabled=disabled][type=submit],
body .onPageSelector .loginModal__wrap__content [disabled=disabled].action,
.loginModal__wrap__content body .onPageSelector [disabled=disabled].action {
  cursor: not-allowed;
}

.takeoverActive {
  height: 100%;
  overflow: hidden;
  position: relative;
}
.takeoverActive body {
  height: 100%;
  overflow: auto;
}
.takeoverActive select {
  background-color: transparent;
  border-radius: 0;
  -webkit-appearance: none;
}
.takeoverActive .takeover {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.takeoverActive .takeover .takeover__wrap__form {
  transform: translateY(0);
  opacity: 1;
}
.takeoverActive .takeover select:valid ~ .inlineSelect__animation {
  display: none;
}
.takeoverActive .takeover .inlineSelect__animation span {
  -webkit-animation: fadeInOut 1.5s;
          animation: fadeInOut 1.5s;
}
@-webkit-keyframes fadeInOut {
  0% {
    transform: translateY(11%);
    opacity: 0;
  }
  20% {
    transform: translateY(0%);
    opacity: 1;
  }
  50% {
    transform: translateY(0%);
    opacity: 1;
  }
  100% {
    transform: translateY(-11%);
    opacity: 0;
  }
}
@keyframes fadeInOut {
  0% {
    transform: translateY(11%);
    opacity: 0;
  }
  20% {
    transform: translateY(0%);
    opacity: 1;
  }
  50% {
    transform: translateY(0%);
    opacity: 1;
  }
  100% {
    transform: translateY(-11%);
    opacity: 0;
  }
}

.takeover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.99);
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  z-index: 98;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}
.takeover__background {
  position: absolute;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}
.takeover__wrap {
  padding: 10rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.takeover__wrap__copy {
  text-align: center;
  margin-bottom: 0rem;
}
.takeover__wrap__copy h1 {
  line-height: 1;
}
.takeover__wrap__form {
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(2rem);
  opacity: 0;
}
.takeover__wrap__form__line {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 2rem;
}
.takeover__wrap__form__line > a {
  margin-top: 3rem;
}
.takeover__wrap__form__line p {
  color: #ffffff;
  margin: 0;
  font-size: 3.4rem;
}
.takeover__wrap__form__line .slimSelect .selector__header {
  min-width: 18rem;
}

.inlineSelect {
  position: relative;
  margin: 0 1rem 1rem;
}
.inlineSelect__animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  height: 100%;
  pointer-events: none;
}
.inlineSelect__animation span {
  position: absolute;
  top: -5px;
  left: 20px;
  color: #00aeff;
  font-size: 3.4rem;
  margin: 0;
  line-height: 1.8;
  transform: translateY(11%);
  opacity: 0;
}

.inlineSelect--style .select2 {
  min-width: 28rem !important;
}

.inlineSelect--model .select2 {
  min-width: 28rem !important;
}

.inlineSelect--year .select2 {
  min-width: 28rem !important;
}

.fittingMethod .select2-selection__placeholder,
#takeover .select2-selection__placeholder {
  opacity: 0;
}
.fittingMethod .select2,
#takeover .select2 {
  margin: 0 1rem;
  min-width: 35rem;
}
.fittingMethod .select2 .select2-selection__rendered,
#takeover .select2 .select2-selection__rendered {
  background: transparent;
  border: 1px solid #a6a6a6;
  padding: 1rem 5rem 1rem 2rem;
  font-size: 3.4rem;
  color: #00aeff;
  line-height: 1 !important;
  height: auto !important;
}
.fittingMethod .select2-container--open .select2-selection__arrow:before,
#takeover .select2-container--open .select2-selection__arrow:before {
  transform: translate(50%, -40%) rotate(-135deg) scale(1);
}
.fittingMethod .select2-selection__arrow,
#takeover .select2-selection__arrow {
  height: 5.6rem;
  padding: 0;
  margin: 0;
  width: 4rem;
  top: 0;
  right: 0;
}
.fittingMethod .select2-selection__arrow:before,
#takeover .select2-selection__arrow:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  height: 1rem;
  width: 1rem;
  border-right: 0.2rem solid #000000;
  border-bottom: 0.2rem solid #000000;
  transform: translate(50%, -60%) rotate(45deg) scale(1);
  transition: transform 0.3s ease;
  right: 2.5rem;
  height: 1.5rem;
  width: 1.5rem;
  border-right: 0.2rem solid #00aeff;
  border-bottom: 0.2rem solid #00aeff;
}

.takeoverActive .select2-results__option {
  font-size: 3rem !important;
  color: #000000 !important;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  padding: 0.3rem 2rem !important;
  line-height: 1.8 !important;
  background: white !important;
}

.inlineSelect.busy {
  pointer-events: none !important;
}

.inlineLoader {
  position: absolute;
  width: 10rem;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  pointer-events: none;
}
.inlineLoader.busy {
  opacity: 1;
}
.inlineLoader svg {
  width: 100%;
  fill: none;
  stroke: #222;
  stroke-linecap: round;
  stroke-width: 8%;
}
.inlineLoader use {
  stroke: #00aeff;
  -webkit-animation: a 2s linear infinite;
          animation: a 2s linear infinite;
}
@-webkit-keyframes a {
  to {
    stroke-dashoffset: 0px;
  }
}
@keyframes a {
  to {
    stroke-dashoffset: 0px;
  }
}

.g-recaptcha {
  margin-bottom: 2rem;
}

.js-opacity-2,
.js-opacity-2-5,
.js-opacity-3,
.js-opacity-4,
.js-opacity-5 {
  opacity: 0.15;
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.js-opacity-2.visible,
.js-opacity-2-5.visible,
.js-opacity-3.visible,
.js-opacity-4.visible,
.js-opacity-5.visible {
  opacity: 1;
}

.takeoverMessage {
  margin-top: 5rem;
  font-size: 1.4rem !important;
  display: none;
}

.australia .takeoverMessage {
  display: block;
}

.inlineSelect--make .inlineSelect__animation span:nth-child(1) {
  -webkit-animation-delay: 0;
          animation-delay: 0;
}
.inlineSelect--make .inlineSelect__animation span:nth-child(2) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.inlineSelect--make .inlineSelect__animation span:nth-child(3) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.inlineSelect--make .inlineSelect__animation span:nth-child(4) {
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
}

.inlineSelect--style .inlineSelect__animation span:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.inlineSelect--style .inlineSelect__animation span:nth-child(2) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.inlineSelect--style .inlineSelect__animation span:nth-child(3) {
  -webkit-animation-delay: 3.1s;
          animation-delay: 3.1s;
}
.inlineSelect--style .inlineSelect__animation span:nth-child(4) {
  -webkit-animation-delay: 4.6s;
          animation-delay: 4.6s;
}

.inlineSelect--model .inlineSelect__animation span:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.inlineSelect--model .inlineSelect__animation span:nth-child(2) {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}
.inlineSelect--model .inlineSelect__animation span:nth-child(3) {
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}
.inlineSelect--model .inlineSelect__animation span:nth-child(4) {
  -webkit-animation-delay: 4.7s;
          animation-delay: 4.7s;
}

.inlineSelect--year .inlineSelect__animation span:nth-child(1) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.inlineSelect--year .inlineSelect__animation span:nth-child(2) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.inlineSelect--year .inlineSelect__animation span:nth-child(3) {
  -webkit-animation-delay: 3.3s;
          animation-delay: 3.3s;
}
.inlineSelect--year .inlineSelect__animation span:nth-child(4) {
  -webkit-animation-delay: 4.8s;
          animation-delay: 4.8s;
}

.inlineSelect--prodcut .inlineSelect__animation span:nth-child(1) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.inlineSelect--prodcut .inlineSelect__animation span:nth-child(2) {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}
.inlineSelect--prodcut .inlineSelect__animation span:nth-child(3) {
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}
.inlineSelect--prodcut .inlineSelect__animation span:nth-child(4) {
  -webkit-animation-delay: 4.9s;
          animation-delay: 4.9s;
}

.takeoverOnPageOnPageActive {
  height: 100%;
  overflow: hidden;
  position: relative;
}
.takeoverOnPageOnPageActive .select2-results__options li:first-of-type {
  display: none !important;
}
.takeoverOnPageOnPageActive .select2-results__options li {
  font-size: 2rem;
}
.takeoverOnPageOnPageActive .vehicleBar {
  display: none !important;
}
.takeoverOnPageOnPageActive body {
  height: 100%;
  overflow: auto;
}
.takeoverOnPageOnPageActive select {
  background-color: transparent;
  border-radius: 0;
  -webkit-appearance: none;
}
.takeoverOnPageOnPageActive .takeoverOnPage {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.takeoverOnPageOnPageActive .takeoverOnPage .btn, .takeoverOnPageOnPageActive .takeoverOnPage .contactModal__wrap__content [type=submit], .contactModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage [type=submit],
.takeoverOnPageOnPageActive .takeoverOnPage .contactModal__wrap__content .action,
.contactModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .action,
.takeoverOnPageOnPageActive .takeoverOnPage .orderModal__wrap__content [type=submit],
.orderModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage [type=submit],
.takeoverOnPageOnPageActive .takeoverOnPage .orderModal__wrap__content .action,
.orderModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .action,
.takeoverOnPageOnPageActive .takeoverOnPage .summaryModal__wrap__content [type=submit],
.summaryModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage [type=submit],
.takeoverOnPageOnPageActive .takeoverOnPage .summaryModal__wrap__content .action,
.summaryModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .action,
.takeoverOnPageOnPageActive .takeoverOnPage .guestModal__wrap__content [type=submit],
.guestModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage [type=submit],
.takeoverOnPageOnPageActive .takeoverOnPage .guestModal__wrap__content .action,
.guestModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .action,
.takeoverOnPageOnPageActive .takeoverOnPage .loginModal__wrap__content [type=submit],
.loginModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage [type=submit],
.takeoverOnPageOnPageActive .takeoverOnPage .loginModal__wrap__content .action,
.loginModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .action {
  position: relative;
}
.takeoverOnPageOnPageActive .takeoverOnPage .btn .inlineLoader, .takeoverOnPageOnPageActive .takeoverOnPage .contactModal__wrap__content [type=submit] .inlineLoader, .contactModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage [type=submit] .inlineLoader,
.takeoverOnPageOnPageActive .takeoverOnPage .contactModal__wrap__content .action .inlineLoader,
.contactModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .action .inlineLoader,
.takeoverOnPageOnPageActive .takeoverOnPage .orderModal__wrap__content [type=submit] .inlineLoader,
.orderModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage [type=submit] .inlineLoader,
.takeoverOnPageOnPageActive .takeoverOnPage .orderModal__wrap__content .action .inlineLoader,
.orderModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .action .inlineLoader,
.takeoverOnPageOnPageActive .takeoverOnPage .summaryModal__wrap__content [type=submit] .inlineLoader,
.summaryModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage [type=submit] .inlineLoader,
.takeoverOnPageOnPageActive .takeoverOnPage .summaryModal__wrap__content .action .inlineLoader,
.summaryModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .action .inlineLoader,
.takeoverOnPageOnPageActive .takeoverOnPage .guestModal__wrap__content [type=submit] .inlineLoader,
.guestModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage [type=submit] .inlineLoader,
.takeoverOnPageOnPageActive .takeoverOnPage .guestModal__wrap__content .action .inlineLoader,
.guestModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .action .inlineLoader,
.takeoverOnPageOnPageActive .takeoverOnPage .loginModal__wrap__content [type=submit] .inlineLoader,
.loginModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage [type=submit] .inlineLoader,
.takeoverOnPageOnPageActive .takeoverOnPage .loginModal__wrap__content .action .inlineLoader,
.loginModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .action .inlineLoader {
  position: absolute;
  top: -4px;
}
.takeoverOnPageOnPageActive .takeoverOnPage .btn .inlineLoader use, .takeoverOnPageOnPageActive .takeoverOnPage .contactModal__wrap__content [type=submit] .inlineLoader use, .contactModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage [type=submit] .inlineLoader use,
.takeoverOnPageOnPageActive .takeoverOnPage .contactModal__wrap__content .action .inlineLoader use,
.contactModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .action .inlineLoader use,
.takeoverOnPageOnPageActive .takeoverOnPage .orderModal__wrap__content [type=submit] .inlineLoader use,
.orderModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage [type=submit] .inlineLoader use,
.takeoverOnPageOnPageActive .takeoverOnPage .orderModal__wrap__content .action .inlineLoader use,
.orderModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .action .inlineLoader use,
.takeoverOnPageOnPageActive .takeoverOnPage .summaryModal__wrap__content [type=submit] .inlineLoader use,
.summaryModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage [type=submit] .inlineLoader use,
.takeoverOnPageOnPageActive .takeoverOnPage .summaryModal__wrap__content .action .inlineLoader use,
.summaryModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .action .inlineLoader use,
.takeoverOnPageOnPageActive .takeoverOnPage .guestModal__wrap__content [type=submit] .inlineLoader use,
.guestModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage [type=submit] .inlineLoader use,
.takeoverOnPageOnPageActive .takeoverOnPage .guestModal__wrap__content .action .inlineLoader use,
.guestModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .action .inlineLoader use,
.takeoverOnPageOnPageActive .takeoverOnPage .loginModal__wrap__content [type=submit] .inlineLoader use,
.loginModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage [type=submit] .inlineLoader use,
.takeoverOnPageOnPageActive .takeoverOnPage .loginModal__wrap__content .action .inlineLoader use,
.loginModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .action .inlineLoader use {
  stroke: #ffffff;
  -webkit-animation: a 2s linear infinite;
          animation: a 2s linear infinite;
}
.takeoverOnPageOnPageActive .takeoverOnPage .btn.busy, .takeoverOnPageOnPageActive .takeoverOnPage .contactModal__wrap__content .busy[type=submit], .contactModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .busy[type=submit],
.takeoverOnPageOnPageActive .takeoverOnPage .contactModal__wrap__content .busy.action,
.contactModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .busy.action,
.takeoverOnPageOnPageActive .takeoverOnPage .orderModal__wrap__content .busy[type=submit],
.orderModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .busy[type=submit],
.takeoverOnPageOnPageActive .takeoverOnPage .orderModal__wrap__content .busy.action,
.orderModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .busy.action,
.takeoverOnPageOnPageActive .takeoverOnPage .summaryModal__wrap__content .busy[type=submit],
.summaryModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .busy[type=submit],
.takeoverOnPageOnPageActive .takeoverOnPage .summaryModal__wrap__content .busy.action,
.summaryModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .busy.action,
.takeoverOnPageOnPageActive .takeoverOnPage .guestModal__wrap__content .busy[type=submit],
.guestModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .busy[type=submit],
.takeoverOnPageOnPageActive .takeoverOnPage .guestModal__wrap__content .busy.action,
.guestModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .busy.action,
.takeoverOnPageOnPageActive .takeoverOnPage .loginModal__wrap__content .busy[type=submit],
.loginModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .busy[type=submit],
.takeoverOnPageOnPageActive .takeoverOnPage .loginModal__wrap__content .busy.action,
.loginModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .busy.action {
  color: #00aeff;
}
.takeoverOnPageOnPageActive .takeoverOnPage .btn.busy .inlineLoader, .takeoverOnPageOnPageActive .takeoverOnPage .contactModal__wrap__content .busy[type=submit] .inlineLoader, .contactModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .busy[type=submit] .inlineLoader,
.takeoverOnPageOnPageActive .takeoverOnPage .contactModal__wrap__content .busy.action .inlineLoader,
.contactModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .busy.action .inlineLoader,
.takeoverOnPageOnPageActive .takeoverOnPage .orderModal__wrap__content .busy[type=submit] .inlineLoader,
.orderModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .busy[type=submit] .inlineLoader,
.takeoverOnPageOnPageActive .takeoverOnPage .orderModal__wrap__content .busy.action .inlineLoader,
.orderModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .busy.action .inlineLoader,
.takeoverOnPageOnPageActive .takeoverOnPage .summaryModal__wrap__content .busy[type=submit] .inlineLoader,
.summaryModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .busy[type=submit] .inlineLoader,
.takeoverOnPageOnPageActive .takeoverOnPage .summaryModal__wrap__content .busy.action .inlineLoader,
.summaryModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .busy.action .inlineLoader,
.takeoverOnPageOnPageActive .takeoverOnPage .guestModal__wrap__content .busy[type=submit] .inlineLoader,
.guestModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .busy[type=submit] .inlineLoader,
.takeoverOnPageOnPageActive .takeoverOnPage .guestModal__wrap__content .busy.action .inlineLoader,
.guestModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .busy.action .inlineLoader,
.takeoverOnPageOnPageActive .takeoverOnPage .loginModal__wrap__content .busy[type=submit] .inlineLoader,
.loginModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .busy[type=submit] .inlineLoader,
.takeoverOnPageOnPageActive .takeoverOnPage .loginModal__wrap__content .busy.action .inlineLoader,
.loginModal__wrap__content .takeoverOnPageOnPageActive .takeoverOnPage .busy.action .inlineLoader {
  opacity: 1;
}
.takeoverOnPageOnPageActive .takeoverOnPage__close {
  position: absolute;
  top: 3rem;
  right: 3rem;
  z-index: 3;
  width: 5rem;
  height: 5rem;
  cursor: pointer;
}
.takeoverOnPageOnPageActive .takeoverOnPage__close svg {
  height: 100%;
  width: 100%;
}
.takeoverOnPageOnPageActive .takeoverOnPage__close svg path {
  fill: #00aeff;
}
.takeoverOnPageOnPageActive .takeoverOnPage .takeoverOnPage__wrap__form {
  transform: translateY(0);
  opacity: 1;
}
.takeoverOnPageOnPageActive .takeoverOnPage select:valid ~ .inlineSelect__animation {
  display: none;
}
.takeoverOnPageOnPageActive .takeoverOnPage .inlineSelect__animation span {
  -webkit-animation: fadeInOut 1.5s;
          animation: fadeInOut 1.5s;
}
@keyframes fadeInOut {
  0% {
    transform: translateY(11%);
    opacity: 0;
  }
  20% {
    transform: translateY(0%);
    opacity: 1;
  }
  50% {
    transform: translateY(0%);
    opacity: 1;
  }
  100% {
    transform: translateY(-11%);
    opacity: 0;
  }
}

.takeoverOnPage {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.99);
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}
.takeoverOnPage__background {
  position: absolute;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}
.takeoverOnPage__wrap {
  padding: 10rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.takeoverOnPage__wrap__copy {
  text-align: center;
  margin-bottom: 0rem;
}
.takeoverOnPage__wrap__copy h1 {
  line-height: 1;
}
.takeoverOnPage__wrap__form {
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(2rem);
  opacity: 0;
}
.takeoverOnPage__wrap__form__line {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 2rem;
}
.takeoverOnPage__wrap__form__line > a {
  margin-top: 3rem;
}
.takeoverOnPage__wrap__form__line p {
  color: #ffffff;
  margin: 0;
  font-size: 3.4rem;
}
.takeoverOnPage__wrap__form__line .slimSelect .selector__header {
  min-width: 18rem;
}

.inlineSelect {
  position: relative;
  margin: 0 1rem 1rem;
}
.inlineSelect__animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  height: 100%;
  pointer-events: none;
}
.inlineSelect__animation span {
  position: absolute;
  top: -5px;
  left: 20px;
  color: #00aeff;
  font-size: 3.4rem;
  margin: 0;
  line-height: 1.8;
  transform: translateY(11%);
  opacity: 0;
}

.inlineSelect--style .select2 {
  min-width: 28rem !important;
}

.inlineSelect--model .select2 {
  min-width: 28rem !important;
}

.inlineSelect--year .select2 {
  min-width: 28rem !important;
}

.fittingMethod .select2-selection__placeholder,
#takeoverOnPage .select2-selection__placeholder {
  opacity: 0;
}
.fittingMethod .select2,
#takeoverOnPage .select2 {
  margin: 0 1rem;
  min-width: 35rem;
}
.fittingMethod .select2 .select2-selection__rendered,
#takeoverOnPage .select2 .select2-selection__rendered {
  background: transparent;
  border: 1px solid #a6a6a6;
  padding: 1rem 5rem 1rem 2rem;
  font-size: 3.4rem;
  color: #00aeff;
  line-height: 1 !important;
  height: auto !important;
}
.fittingMethod .select2-container--open .select2-selection__arrow:before,
#takeoverOnPage .select2-container--open .select2-selection__arrow:before {
  transform: translate(50%, -40%) rotate(-135deg) scale(1);
}
.fittingMethod .select2-selection__arrow,
#takeoverOnPage .select2-selection__arrow {
  height: 5.6rem;
  padding: 0;
  margin: 0;
  width: 4rem;
  top: 0;
  right: 0;
}
.fittingMethod .select2-selection__arrow:before,
#takeoverOnPage .select2-selection__arrow:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  height: 1rem;
  width: 1rem;
  border-right: 0.2rem solid #000000;
  border-bottom: 0.2rem solid #000000;
  transform: translate(50%, -60%) rotate(45deg) scale(1);
  transition: transform 0.3s ease;
  right: 2.5rem;
  height: 1.5rem;
  width: 1.5rem;
  border-right: 0.2rem solid #00aeff;
  border-bottom: 0.2rem solid #00aeff;
}

.takeoverOnPageActive .select2-results__option {
  font-size: 3rem !important;
  color: #000000 !important;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  padding: 0.3rem 2rem !important;
  line-height: 1.8 !important;
  background: white !important;
}

.inlineSelect.busy {
  pointer-events: none !important;
}

.inlineLoader {
  position: absolute;
  width: 10rem;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  pointer-events: none;
}
.inlineLoader.busy {
  opacity: 1;
}
.inlineLoader svg {
  width: 100%;
  fill: none;
  stroke: #222;
  stroke-linecap: round;
  stroke-width: 8%;
}
.inlineLoader use {
  stroke: #00aeff;
  -webkit-animation: a 2s linear infinite;
          animation: a 2s linear infinite;
}
@keyframes a {
  to {
    stroke-dashoffset: 0px;
  }
}

.g-recaptcha {
  margin-bottom: 2rem;
}

.js-opacity-2,
.js-opacity-2-5,
.js-opacity-3,
.js-opacity-4,
.js-opacity-5 {
  opacity: 0.15;
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.js-opacity-2.visible,
.js-opacity-2-5.visible,
.js-opacity-3.visible,
.js-opacity-4.visible,
.js-opacity-5.visible {
  opacity: 1;
}

.Utemaster\\Site\\BuilderPage .vehicleBar {
  display: none !important;
  position: absolute !important;
  left: -1000000px !important;
}

.Utemaster\\Site\\BuilderPage {
  background: #000;
}

.Utemaster\\Site\\BuilderPage .footer {
  display: none !important;
}

body:not(.Utemaster\\Site\\BuilderPage) .vehicleBar {
  padding: 0.7rem 40px;
  background-color: #00aeff;
  color: white;
  font-weight: bold;
  align-items: center;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999;
}
body:not(.Utemaster\\Site\\BuilderPage) .vehicleBar.visible {
  display: flex;
}
body:not(.Utemaster\\Site\\BuilderPage) .vehicleBar.visible ~ .header {
  top: 32px;
}
body:not(.Utemaster\\Site\\BuilderPage) .vehicleBar.visible ~ .megamenu {
  top: 11.75rem;
}

.vehicleBar__icon {
  display: block;
  margin-right: 1rem;
}
.vehicleBar__icon svg {
  position: absolute;
  top: 6px;
}

.vehicleBar__text {
  margin-left: 38px;
  font-size: 1.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vehicleBar__text * {
  color: white !important;
}
.vehicleBar__text a {
  text-decoration: underline;
}

.vehicleBar__action {
  cursor: pointer;
  color: black !important;
  font-size: 1.3rem !important;
  cursor: pointer;
  margin-left: 1rem;
  opacity: 0.6;
}
.vehicleBar__action svg {
  position: relative;
  top: 1px;
}
.vehicleBar__action svg path {
  fill: black;
}
.vehicleBar__action * {
  color: black !important;
}

.btn, .contactModal__wrap__content [type=submit],
.contactModal__wrap__content .action,
.orderModal__wrap__content [type=submit],
.orderModal__wrap__content .action,
.summaryModal__wrap__content [type=submit],
.summaryModal__wrap__content .action,
.guestModal__wrap__content [type=submit],
.guestModal__wrap__content .action,
.loginModal__wrap__content [type=submit],
.loginModal__wrap__content .action {
  display: inline-block;
  background: #ffffff;
  padding: 0.5rem 2rem;
  font-size: 1.6rem;
  color: #000000;
  text-align: center;
  line-height: 30px;
}
.btn:after, .contactModal__wrap__content [type=submit]:after,
.contactModal__wrap__content .action:after,
.orderModal__wrap__content [type=submit]:after,
.orderModal__wrap__content .action:after,
.summaryModal__wrap__content [type=submit]:after,
.summaryModal__wrap__content .action:after,
.guestModal__wrap__content [type=submit]:after,
.guestModal__wrap__content .action:after,
.loginModal__wrap__content [type=submit]:after,
.loginModal__wrap__content .action:after {
  position: absolute;
  content: "";
  display: block;
  background: none, url("../images/btn-arrow.svg") no-repeat center;
  width: 20px;
  height: 12px;
  display: inline-block;
  position: relative;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  top: 1px;
  margin-left: 0.3rem;
}
.btn:hover:after, .contactModal__wrap__content [type=submit]:hover:after,
.contactModal__wrap__content .action:hover:after,
.orderModal__wrap__content [type=submit]:hover:after,
.orderModal__wrap__content .action:hover:after,
.summaryModal__wrap__content [type=submit]:hover:after,
.summaryModal__wrap__content .action:hover:after,
.guestModal__wrap__content [type=submit]:hover:after,
.guestModal__wrap__content .action:hover:after,
.loginModal__wrap__content [type=submit]:hover:after,
.loginModal__wrap__content .action:hover:after {
  transform: translateX(0.3rem);
}
.btn--white {
  background: #ffffff;
  color: #000000;
}
.btn--white:after {
  background: none, url("../images/btn-arrow-white.svg") no-repeat center;
}
.btn--blue, .contactModal__wrap__content [type=submit],
.contactModal__wrap__content .action,
.orderModal__wrap__content [type=submit],
.orderModal__wrap__content .action,
.summaryModal__wrap__content [type=submit],
.summaryModal__wrap__content .action,
.guestModal__wrap__content [type=submit],
.guestModal__wrap__content .action,
.loginModal__wrap__content [type=submit],
.loginModal__wrap__content .action {
  background: #00aeff;
  color: #ffffff;
}
.btn--blue:after, .contactModal__wrap__content [type=submit]:after,
.contactModal__wrap__content .action:after,
.orderModal__wrap__content [type=submit]:after,
.orderModal__wrap__content .action:after,
.summaryModal__wrap__content [type=submit]:after,
.summaryModal__wrap__content .action:after,
.guestModal__wrap__content [type=submit]:after,
.guestModal__wrap__content .action:after,
.loginModal__wrap__content [type=submit]:after,
.loginModal__wrap__content .action:after {
  background: none, url("../images/btn-arrow-white.svg") no-repeat center;
}
.btn--green {
  background: #25b733;
  color: #ffffff;
}
.btn--green:after {
  background: none, url("../images/btn-arrow-white.svg") no-repeat center;
}
.btn--grey {
  background: #555c5e;
  color: #ffffff;
}
.btn--grey:after {
  background: none, url("../images/btn-arrow-white.svg") no-repeat center;
}
.btn--no-arrow:after {
  display: none;
}
.btn--wide {
  width: 100%;
}

/*------------------------------------------------------------------
Choices
------------------------------------------------------------------*/
/*------------------------------------------------------------------
Overrides
------------------------------------------------------------------*/
body .selector {
  position: relative;
  z-index: 100;
  display: block;
  transition: z-index 0.3s ease;
  float: none;
}
body .selector + select {
  display: none;
}
body .selector.js-active {
  z-index: 150;
}
body .selector.js-active .selector__header {
  border-radius: 0 0 0 0;
}
body .selector.js-active .selector__header:before {
  transform: translate(50%, -30%) rotate(45deg) scale(-1);
}
body .selector.js-active .selector__list {
  color: #000000;
  transform: scaleY(1);
  border-radius: 0 0 0 0;
}
body .selector.multiple .selector__option {
  position: relative;
  padding-right: 4rem !important;
}
body .selector.multiple .selector__option:before, body .selector.multiple .selector__option:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  height: 1.4rem;
  width: 1.4rem;
  border-radius: 50%;
  opacity: 0.8;
}
body .selector.multiple .selector__option:before {
  border: 0 solid #000000;
  transition: border-color 0.2s ease;
  transform: translate(50%, -50%);
}
body .selector.multiple .selector__option:after {
  background-color: transparent;
  transition: background-color 0.2s ease;
  transform: translate(50%, -50%) scale(0.5);
}
body .selector.multiple .selector__option--active:before {
  border-color: #ffffff;
}
body .selector.multiple .selector__option--active:after {
  background-color: #ffffff;
}
body .selector__header {
  position: relative;
  min-width: 100%;
  padding: 2rem 4rem 2rem 2rem;
  border: 0 solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 0;
  transition: border-radius 0.3s ease;
}
body .selector__header:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  height: 1rem;
  width: 1rem;
  border-right: 0.2rem solid #000000;
  border-bottom: 0.2rem solid #000000;
  transform: translate(50%, -60%) rotate(45deg) scale(1);
  transition: transform 0.3s ease;
}
body .selector__placeholder {
  color: #000000;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
body .selector__search {
  margin-bottom: 0 !important;
}
body .selector__searchInput {
  margin-bottom: 0;
  border: 0;
  width: 100%;
  padding: 1rem 2rem !important;
  color: #000000;
  border-color: rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
}
body .selector__list {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 0.5rem !important;
  margin: 0;
  color: transparent;
  background-color: #ffffff;
  border: 0 solid rgba(0, 0, 0, 0.2);
  border-top: none;
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition: transform 0.2s ease;
  max-height: 24rem;
  overflow: auto;
}
body .selector__option {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  padding: 1rem 2rem !important;
  margin-bottom: 0 !important;
  color: inherit;
  background-color: #ffffff;
  transition: background-color 0.3s ease, color 0.3s ease;
}
body .selector__option:hover {
  color: #000000;
  background-color: rgba(0, 0, 0, 0.1);
}
body .selector__option--active, body .selector__option--active:hover {
  color: #ffffff;
  background-color: #00aeff;
}
body .selector__header {
  padding: 0.75rem 2rem 0.75rem 0rem;
  border: 0 solid #e4e4e4;
  border-bottom: 1px solid #a6a6a6;
  border-radius: 0rem !important;
}
body .selector__option {
  padding: 0.75rem 2rem 0.75rem 1rem;
}
body .selector__list {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  margin-top: 1rem;
}
body .selector__list::-webkit-scrollbar-track {
  background-color: #e4e4e4;
}
body .selector__list::-webkit-scrollbar {
  width: 8px;
  background-color: #e4e4e4;
}
body .selector__list::-webkit-scrollbar-thumb {
  background-color: #555c5e;
}
body .selector__option--active {
  color: #ffffff !important;
}

.searchActive .searchPane {
  opacity: 1;
  visibility: visible;
}
.searchActive .searchPane .text:after {
  transform: scaleX(1) !important;
}
.searchActive .searchPane__wrap__close {
  transform: translateY(0%);
}

.searchPane {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  background: rgba(255, 255, 255, 0.95);
  transition: all 555ms ease;
  z-index: 9999999999;
  opacity: 0;
  visibility: hidden;
}
.searchPane__wrap {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem;
}
.searchPane__wrap__close {
  top: 4rem;
  right: 2rem;
  transform: translateY(-100%);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  position: relative;
  width: 6rem;
  position: absolute;
}
.searchPane__wrap__close:after {
  content: "";
  position: relative;
  display: block;
  padding-bottom: 100%;
}
.searchPane__wrap__close svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.searchPane__wrap__close svg path {
  fill: #00aeff;
}
.searchPane__wrap__form {
  padding-top: 30rem;
}
.searchPane__wrap__form .field label {
  display: none !important;
}
.searchPane__wrap__form .field.text {
  margin-bottom: 2rem;
  position: relative;
}
.searchPane__wrap__form .field.text:after {
  position: absolute;
  content: "";
  display: block;
  border-bottom: 0.4rem solid #00aeff;
  bottom: 0;
  width: 100%;
  transition: all 666ms ease;
  transform: scaleX(0);
  transform-origin: 0 0;
}
.searchPane__wrap__form .field .text {
  background: transparent;
  border: 0;
  border-radius: 0;
  margin: 0;
  color: #000000;
  box-shadow: none !important;
  font-size: 5rem;
  padding-left: 0 !important;
}
.searchPane__wrap__form .field .text::-webkit-input-placeholder {
  opacity: 1 !important;
  color: rgba(0, 0, 0, 0.8) !important;
}
.searchPane__wrap__form .field .text:-moz-placeholder {
  opacity: 1 !important;
  color: rgba(0, 0, 0, 0.8) !important;
}
.searchPane__wrap__form .field .text::-moz-placeholder {
  opacity: 1 !important;
  color: rgba(0, 0, 0, 0.8) !important;
}
.searchPane__wrap__form .field .text:-ms-input-placeholder {
  opacity: 1 !important;
  color: rgba(0, 0, 0, 0.8) !important;
}
.searchPane__wrap__form #SearchForm_SearchForm_action_results {
  opacity: 0;
  visibility: hidden;
}
.searchPane__wrap__form fieldset {
  position: relative;
}
.searchPane__wrap__form .action {
  position: absolute;
  top: -1rem;
  cursor: pointer;
  right: 0;
  border: 0;
  background: none;
  outline: none;
  z-index: 3;
}
.searchPane__wrap__form__direction {
  color: #00aeff !important;
  display: block;
  text-align: right;
}

.Utemaster\\Site\\AccessoryPage.showVehicleBar .bread-crumbs,
.Utemaster\\Site\\ProductPage.showVehicleBar .bread-crumbs {
  margin-top: 11.8rem;
}

.Utemaster\\Site\\CheckoutPage.showVehicleBar .checkoutProcess__inner__cart {
  top: 5rem !important;
}

.Utemaster\\Site\\ProductPage.showVehicleBar .megamenu {
  top: 11.7rem;
}

.showVehicleBar .product-category {
  padding-top: 80px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9900000;
  width: 100%;
  height: 8.6rem;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.header.nav-up {
  transform: translateY(-110%);
}
.header.nav-down {
  transform: translateY(0%);
  background: black;
}
.header:after {
  position: absolute;
  content: "";
  display: block;
  height: 2px;
  top: 0;
  left: 0;
  width: 100%;
  background: #00aeff;
}
.header__wrap {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.header__wrap__navburger {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  right: 2rem;
  border: 0;
  background: transparent;
  padding: 0;
  width: 2.9rem;
  height: 2.9rem;
  outline: none;
  margin-top: 0.3rem;
  cursor: pointer;
}
.header__wrap__navburger__ring {
  display: block;
  background: #ffffff;
  position: absolute;
  height: 2px;
  right: 0;
  will-change: transform;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.header__wrap__navburger__ring--one {
  width: 23px;
  margin-top: 2px;
}
.header__wrap__navburger__ring--two {
  width: 18px;
  margin-top: 11px;
  margin-right: 0;
}
.header__wrap__navburger__ring--three {
  width: 23px;
  margin-top: 20px;
}
.header__wrap__secondary {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
}
.header__wrap__secondary__link {
  position: relative;
  padding: 0.8rem 1.4rem 0.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.header__wrap__secondary__link svg {
  margin-right: 0.3rem;
}
.header__wrap__secondary__link__text {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1;
  margin: 0;
  color: #a6a6a6;
}
.header__wrap__secondary__link:before {
  position: absolute;
  content: "";
  display: block;
  transform: scaleX(0);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.1);
  transform-origin: bottom right;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
.header__wrap__secondary__link:hover:before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.header__wrap__secondary__link--contact {
  margin-right: 1.5rem;
}
.header__wrap__secondary__link--trolley span {
  background: #00aeff;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  display: block;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 2rem;
  line-height: 1.8rem;
  font-size: 1.2rem;
}
.header__wrap__secondary__link--primary {
  background: #00aeff;
  padding: 0.1rem 2rem 0.3rem;
  position: relative;
  z-index: 3;
  font-family: Arial;
  font-weight: bold;
}
.header__wrap__secondary__link--primary:after {
  position: absolute;
  content: "";
  display: block;
  width: 5rem;
  height: 5rem;
  background: #00aeff;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: 0 100%;
  transform: rotate(-15deg);
  z-index: -1;
}
.header__wrap__secondary__link--primary:before {
  display: none;
}
.header__wrap__secondary__link--primary .header__wrap__secondary__link__text {
  color: #ffffff;
  line-height: 0;
  font-size: 2rem;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.header__wrap__secondary__link--primary:hover .header__wrap__secondary__link__text {
  color: rgba(0, 0, 0, 0.6);
}
.header__wrap__logo {
  display: block;
  position: absolute;
  bottom: 0.5rem;
  bottom: 2.5rem;
  left: 2.5rem;
}
.header__wrap__primary {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 4rem;
  margin-right: 1rem;
}
.header__wrap__primary__item {
  display: inline-block;
  margin: 0;
}
.header__wrap__primary__item__link {
  font-size: 1.8rem;
  line-height: 1;
  color: #ffffff;
  display: inline-block;
  padding: 1.4rem 1rem;
  position: relative;
  font-weight: bold;
  font-size: 1.6rem;
}
.header__wrap__primary__item__link.section, .header__wrap__primary__item__link.current {
  color: #00aeff;
}
.header__wrap__primary__item__link:before {
  position: absolute;
  content: "";
  display: block;
  transform: scaleX(0);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.1);
  transform-origin: bottom right;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
.header__wrap__primary__item__link:hover:before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.two-column-text-element.with-separator {
  padding-top: 200px;
}

.mobile-menu-active .header__wrap__navburger__ring--one {
  transform: rotate(45deg) translateX(6.5px) translateY(6.5px);
}
.mobile-menu-active .header__wrap__navburger__ring--two {
  transform: scaleX(0);
}
.mobile-menu-active .header__wrap__navburger__ring--three {
  transform: rotate(-45deg) translateX(6.5px) translateY(-6.5px);
}

/*------------------------------------------------------------------
Tab menu
------------------------------------------------------------------*/
.tab-menu {
  width: 100%;
  z-index: 10;
  display: none !important;
}

.tab-menu .tab-menu-list {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
}

.tab-menu .tab-menu-list li {
  width: 100%;
}

.tab-menu .tab-menu-list li.current a {
  background-color: #00b1ff;
  color: #fff;
}

.tab-menu .tab-menu-list a {
  display: block;
  color: #555c5e;
  text-transform: uppercase;
  font-weight: 700;
  background-color: #e4e4e4;
  text-align: center;
  padding-top: 13px;
  padding-bottom: 13px;
  border-bottom: 1px solid #fff;
}
.main-scroll {
  padding-top: 8.6rem;
}
.main-scroll .builder,
.main-scroll .utemaster__site__elements__bannerelement {
  margin-top: -8.6rem;
}
.bread-crumbs {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 13px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  display: none;
  font-weight: 700;
  margin-top: 8.6rem;
}
.bread-crumbs + .main-scroll {
  padding-top: 0;
}

.bread-crumbs .breadcrumbs span {
  text-transform: capitalize;
}

.bread-crumbs a {
  color: #fff;
  padding: 0 5px;
}

.bread-crumbs a:hover {
  color: #00b1ff;
}
[data-segment=home] .main-scroll {
  padding-top: 0;
}
.megamenu {
  position: fixed;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  transition: all 555ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
  z-index: 999;
  top: 8.4rem;
  max-height: 0;
  height: 6rem;
  overflow: hidden;
  background: #00aeff;
}
.megamenu.active {
  max-height: 6rem;
}
.megamenu__menu {
  text-align: center;
  position: absolute;
  height: 6rem;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  visibility: hidden;
  transform: translateX(0.5rem);
  background: #00aeff;
  font-size: 0;
}
.megamenu__menu.active {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}
.megamenu__menu__item {
  display: inline-block;
  margin: 0;
}
.megamenu__menu__item__link {
  font-size: 1.8rem;
  text-decoration: none;
  display: block;
  padding: 1.6rem 2.5rem;
  margin: 0;
  color: #ffffff;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}
.megamenu__menu__item__link.current {
  color: #0e4a5b;
}
.megamenu__menu__item__link:before {
  position: absolute;
  content: "";
  display: block;
  transform: scaleX(0);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transform-origin: bottom right;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
.megamenu__menu__item__link:hover:before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.stopInteractions {
  pointer-events: none !important;
}

/*------------------------------------------------------------------
Builder
------------------------------------------------------------------*/
.builder {
  position: relative;
  display: block;
  /*------------------------------------------------------------------
  Orientation
  ------------------------------------------------------------------*/
  /*------------------------------------------------------------------
  Scene
  ------------------------------------------------------------------*/
}
.builder__orientation {
  position: absolute;
  top: 15rem;
  right: 0;
  text-align: right;
  z-index: 4;
}
.builder__orientation.disabled {
  opacity: 0;
  pointer-events: none;
}
.builder__orientation__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.builder__orientation__wrap__previous {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
}
.builder__orientation__wrap__previous path {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.builder__orientation__wrap__previous:hover path {
  fill: #00aeff;
}
.builder__orientation__wrap p {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 1rem;
}
.builder__orientation__wrap p svg {
  margin-left: 0.3rem;
}
.builder__orientation__wrap__next {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
}
.builder__orientation__wrap__next path {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.builder__orientation__wrap__next:hover path {
  fill: #00aeff;
}
.builder__scene {
  /*------------------------------------------------------------------
  Selector
  ------------------------------------------------------------------*/
  /*------------------------------------------------------------------
  Tray
  ------------------------------------------------------------------*/
}
.builder__scene:after {
  pointer-events: none;
}
.builder__scene__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.builder__scene__loader {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  left: 50%;
  margin: 0 auto;
  z-index: 2;
}
.builder__scene__background-mobile {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: none;
}
.builder__scene__vehicle {
  position: relative;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 70%;
  top: 9%;
  transform: translateX(-5%);
  max-width: 90rem;
}
.builder__scene__vehicle:after {
  content: "";
  position: relative;
  display: block;
  padding-bottom: 62.2687047466%;
}
.builder__scene__vehicle img {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
}
.builder__scene__selector {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34rem;
  background: linear-gradient(to bottom, #323131 0%, #080808 100%);
  display: flex;
  flex-wrap: wrap;
  z-index: 33;
  /*------------------------------------------------------------------
  Orientation
  ------------------------------------------------------------------*/
}
.builder__scene__selector__orientation {
  position: absolute;
  top: -20.5rem;
  right: 0.3rem;
  text-align: right;
  z-index: 4;
  display: none;
}
.builder__scene__selector__orientation.disabled {
  opacity: 0;
  pointer-events: none;
}
.builder__scene__selector__orientation__wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.builder__scene__selector__orientation__wrap__previous {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
}
.builder__scene__selector__orientation__wrap__previous path {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.builder__scene__selector__orientation__wrap__previous:hover path {
  fill: #00aeff;
}
.builder__scene__selector__orientation__wrap p {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 1rem;
}
.builder__scene__selector__orientation__wrap p svg {
  margin-left: 0.3rem;
}
.builder__scene__selector__orientation__wrap__next {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  cursor: pointer;
}
.builder__scene__selector__orientation__wrap__next path {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.builder__scene__selector__orientation__wrap__next:hover path {
  fill: #00aeff;
}
.builder__scene__selector__wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.builder__scene__selector__wrap__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.5rem 1rem;
  cursor: pointer;
  justify-content: center;
  position: relative;
  min-width: 25rem;
}
.builder__scene__selector__wrap__item.disabled {
  pointer-events: none;
  opacity: 0;
}
.builder__scene__selector__wrap__item p {
  font-weight: bold;
  color: #ffffff;
  font-size: 1.2rem;
  margin: 0 0 0 0.5rem;
}
.builder__scene__selector__wrap__item.active {
  background: #484747;
}
.builder__scene__selector__wrap__item.active:after {
  position: absolute;
  content: "";
  display: block;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #00aeff transparent;
  transform: translateX(0.8rem);
}
.builder__scene__selector__wrap__item.active path {
  fill: #00aeff;
}
.builder__scene__selector__wrap__item.active p {
  color: #00aeff;
}
.builder__scene__tray {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  background: #484747;
  display: flex;
  flex-wrap: wrap;
  min-height: 34rem;
  z-index: 3;
  align-items: center;
  align-content: center;
  padding: 2rem;
  padding-top: 4rem;
  overflow: hidden;
}
.builder__scene__actions {
  position: absolute;
  z-index: 4;
  right: 1rem;
  bottom: 38rem;
  width: 12rem;
}
.builder__scene__actions__item {
  position: relative;
  width: 100%;
  display: block;
  text-align: right;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: flex-end;
  font-weight: bold;
  color: #ffffff;
}
.builder__scene__actions__item:first-of-type:before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  top: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}
.builder__scene__actions__item:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}
.builder__scene__actions__item--summary {
  background: #51d059;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-right: 0 !important;
  margin-left: 2.5rem;
  position: relative;
}
.builder__scene__actions__item--summary:before {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 32px 32px;
  border-color: transparent transparent #51d059 transparent;
  right: 100%;
  bottom: 0;
}

.picker {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  min-height: 28rem;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 1200px;
  margin: 0 auto;
}
.picker--category .picker__grid {
  padding-right: 0;
}
.picker--product .picker__grid {
  padding-right: 13rem;
}
.picker .sliderProgress {
  height: 2px;
  background: #00aeff;
  position: absolute;
  left: 0;
  top: 0rem;
}
.picker__grid {
  position: relative;
  display: flex;
  width: 100%;
  align-items: flex-start;
  padding-right: 130px;
}
.picker__grid__item {
  position: relative;
  display: block;
  width: 130px;
}
.picker__grid__item--close {
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.picker__grid__item--close:after {
  content: "";
  position: relative;
  display: block;
  padding-bottom: 100%;
}
.picker__grid__item--close:before {
  position: absolute;
  content: "";
  display: block;
  transform: scaleX(0);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #00aeff;
  transform-origin: bottom right;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
.picker__grid__item--close:hover:before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.picker__grid__item--close path {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.picker__grid__item--close:hover path {
  fill: #ffffff;
}
.picker__grid__item.js-back-to-categories .picker__grid__item__icon, .picker__grid__item.js-close-picker .picker__grid__item__icon, .picker__grid__item.js-tray-selector-products .picker__grid__item__icon, .picker__grid__item.js-close-picker-accessory .picker__grid__item__icon {
  height: 100%;
}
.picker__grid__item.js-back-to-categories .picker__grid__item__icon span, .picker__grid__item.js-close-picker .picker__grid__item__icon span, .picker__grid__item.js-tray-selector-products .picker__grid__item__icon span, .picker__grid__item.js-close-picker-accessory .picker__grid__item__icon span {
  z-index: 4;
}
.picker__grid__item--scroll {
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.picker__grid__item--scroll:after {
  content: "";
  position: relative;
  display: block;
  padding-bottom: 100%;
}
.picker__grid__item--scroll path {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.picker__grid__item--scroll:hover path {
  fill: #ffffff;
}
.picker__grid__item .js-next-picker-item {
  border-bottom: 1px solid #3f3f3f;
  top: 0;
}
.picker__grid__item .js-previous-picker-item {
  bottom: 0;
}
.picker__grid__item__icon {
  width: 100%;
  z-index: 2;
  position: absolute;
  height: 50%;
}
.picker__grid__item__icon svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  left: 50%;
  margin: 0 auto;
  z-index: 4;
  width: 5rem;
  height: 5rem;
}
.picker__grid__item__icon:before {
  position: absolute;
  content: "";
  display: block;
  transform: scaleX(0);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #00aeff;
  transform-origin: bottom right;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
.picker__grid__item__icon:hover span {
  color: #ffffff !important;
}
.picker__grid__item__icon span {
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  left: 50%;
  margin: 0 auto;
  color: #a6a6a6;
  font-size: 2rem;
  font-weight: 600;
}
.picker__grid__slider {
  display: flex;
  position: relative;
  overflow: hidden;
  width: calc(100% - 130px);
}
.picker__grid__slider.animateIn .picker__grid__slider__item {
  transform: none !important;
  opacity: 1 !important;
}
.picker__grid__slider.animateOut .picker__grid__slider__item {
  transform: translateY(20%) !important;
  opacity: 0 !important;
}
.picker__grid__slider__item {
  position: relative;
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(20%);
  opacity: 0;
  will-change: transform;
  margin: 0 5px 0 5px;
  margin: 0 -1px 0 0;
  margin: 0 0 0 0;
  width: 130px;
  min-width: 130px;
}
.picker__grid__slider__item.selected {
  z-index: 201 !important;
}
.picker__grid__slider__item.selected .picker__grid__slider__item__image__overlay:before {
  background: #ebebeb;
}
.picker__grid__slider__item.selected:before {
  background: #25b733;
}
.picker__grid__slider__item.selected .picker__grid__slider__item__image {
  border: 2px solid #25b733;
}
.picker__grid__slider__item.selected .picker__grid__slider__item__image:before {
  position: absolute;
  content: "";
  display: block;
  background-image: url('data:image/svg+xml; utf8, <svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><path d="M12 0c3.183 0 6.235 1.265 8.485 3.515a11.995 11.995 0 010 16.97 11.995 11.995 0 01-16.97 0 11.995 11.995 0 010-16.97A11.995 11.995 0 0112 0zm0 1.956a10.043 10.043 0 10.001 20.086A10.043 10.043 0 0012 1.956zm4.67 6.082a.949.949 0 01.678.31c.364.389.35.998-.033 1.369l-6.294 5.968a.911.911 0 01-.684.26.946.946 0 01-.685-.292l-3-3.131a.992.992 0 011.435-1.37l2.315 2.446 5.576-5.283a.943.943 0 01.692-.277z" fill="%2325b733" fill-rule="evenodd"/></svg>');
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 34;
}
.picker__grid__slider__item.selected .picker__grid__slider__item__image .picker__grid__slider__item__image__overlay__icon svg {
  opacity: 0;
}
.picker__grid__slider__item.selected .picker__grid__slider__item__image .picker__grid__slider__item__image__overlay__icon:before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  left: 50%;
  margin: 0 auto;
  width: 7rem;
  height: 7rem;
  border-radius: 7rem;
  background: #25b733;
  position: absolute;
  display: block;
}
.picker__grid__slider__item.selected .picker__grid__slider__item__image .picker__grid__slider__item__image__overlay__icon:after {
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  left: 50%;
  margin: 0 auto;
  content: "REMOVE";
  padding: 0;
  color: #ffffff;
  position: absolute;
  font-weight: bold;
  font-size: 1.2rem;
}
.picker__grid__slider__item.blacklisted {
  z-index: 201 !important;
}
.picker__grid__slider__item.blacklisted:before, .picker__grid__slider__item.blacklisted:after {
  display: none;
}
.picker__grid__slider__item.blacklisted .picker__grid__slider__item__image {
  border: 2px solid #00aeff;
}
.picker__grid__slider__item.blacklisted .picker__grid__slider__item__image:before {
  position: absolute;
  content: "";
  display: block;
  background-image: url('data:image/svg+xml; utf8, <svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><path d="M12 0c3.183 0 6.235 1.265 8.485 3.515a11.995 11.995 0 010 16.97 11.995 11.995 0 01-16.97 0 11.995 11.995 0 010-16.97A11.995 11.995 0 0112 0zm0 1.956a10.043 10.043 0 10.001 20.086A10.043 10.043 0 0012 1.956zm.17 5.56c.446-.02.875.083 1.25.34 1.566 1.08-.22 4.642-.899 6.11l-.104.231a3.677 3.677 0 00-.106.258c-.643 1.842.146 2.266 1.258 1.92l-.078.838c-2.044 1.453-4.903 1.042-3.71-2.483.44-1.299 2.048-3.779 1.578-5.196-.192-.582-.835-.586-1.464-.34l.072-.774c.665-.508 1.457-.87 2.202-.904zM13.362 5c.628 0 1.137.47 1.137 1.048 0 .58-.509 1.049-1.137 1.049s-1.137-.47-1.137-1.049S12.736 5 13.363 5z" fill="%2300aeff" fill-rule="evenodd"/></svg>');
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 34;
}
.picker__grid__slider__item.blacklisted .picker__grid__slider__item__image .picker__grid__slider__item__image__overlay__icon svg {
  opacity: 0;
}
.picker__grid__slider__item.blacklisted .picker__grid__slider__item__image .picker__grid__slider__item__image__overlay__icon:before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  left: 50%;
  margin: 0 auto;
  width: 7rem;
  height: 7rem;
  border-radius: 7rem;
  background: #231f20;
  position: absolute;
  display: none;
}
.picker__grid__slider__item.blacklisted .picker__grid__slider__item__image .picker__grid__slider__item__image__overlay__icon:after {
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  left: 50%;
  margin: 0 auto;
  content: "";
  padding: 0;
  color: #ffffff;
  position: absolute;
  font-weight: bold;
  font-size: 1.2rem;
}
.picker__grid__slider__item:nth-child(0) {
  transition-delay: 0ms;
  z-index: 200;
}
.picker__grid__slider__item:nth-child(1) {
  transition-delay: 40ms;
  z-index: 199;
}
.picker__grid__slider__item:nth-child(2) {
  transition-delay: 80ms;
  z-index: 198;
}
.picker__grid__slider__item:nth-child(3) {
  transition-delay: 120ms;
  z-index: 197;
}
.picker__grid__slider__item:nth-child(4) {
  transition-delay: 160ms;
  z-index: 196;
}
.picker__grid__slider__item:nth-child(5) {
  transition-delay: 200ms;
  z-index: 195;
}
.picker__grid__slider__item:nth-child(6) {
  transition-delay: 240ms;
  z-index: 194;
}
.picker__grid__slider__item:nth-child(7) {
  transition-delay: 280ms;
  z-index: 193;
}
.picker__grid__slider__item:nth-child(8) {
  transition-delay: 320ms;
  z-index: 192;
}
.picker__grid__slider__item:nth-child(9) {
  transition-delay: 360ms;
  z-index: 191;
}
.picker__grid__slider__item:nth-child(10) {
  transition-delay: 400ms;
  z-index: 190;
}
.picker__grid__slider__item:nth-child(11) {
  transition-delay: 440ms;
  z-index: 189;
}
.picker__grid__slider__item:nth-child(12) {
  transition-delay: 480ms;
  z-index: 188;
}
.picker__grid__slider__item:nth-child(13) {
  transition-delay: 520ms;
  z-index: 187;
}
.picker__grid__slider__item:nth-child(14) {
  transition-delay: 560ms;
  z-index: 186;
}
.picker__grid__slider__item:nth-child(15) {
  transition-delay: 600ms;
  z-index: 185;
}
.picker__grid__slider__item:nth-child(16) {
  transition-delay: 640ms;
  z-index: 184;
}
.picker__grid__slider__item:nth-child(17) {
  transition-delay: 680ms;
  z-index: 183;
}
.picker__grid__slider__item:nth-child(18) {
  transition-delay: 720ms;
  z-index: 182;
}
.picker__grid__slider__item:nth-child(19) {
  transition-delay: 760ms;
  z-index: 181;
}
.picker__grid__slider__item__image {
  position: relative;
  cursor: pointer;
  position: relative;
  background-image: url("../images/loader.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-color: #f7f7f7;
}
.picker__grid__slider__item__image:after {
  content: "";
  position: relative;
  display: block;
  padding-bottom: 100%;
}
.picker__grid__slider__item__image img {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
}
.picker__grid__slider__item__image__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.picker__grid__slider__item__image__overlay:before {
  position: absolute;
  content: "";
  display: block;
  transform: scaleX(0);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #00aeff;
  transform-origin: bottom right;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
.picker__grid__slider__item__image__overlay__icon {
  width: 7rem;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  left: 50%;
  margin: 0 auto;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: scale(1.1) translateY(-50%) translateX(-50%);
  will-change: transform;
  position: relative;
  opacity: 0;
  z-index: 2;
  left: 50%;
  margin: 0;
}
.picker__grid__slider__item__image__overlay__icon:after {
  content: "";
  position: relative;
  display: block;
  padding-bottom: 101.6666666667%;
}
.picker__grid__slider__item__image__overlay__icon svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.picker__grid__slider__item:hover .picker__grid__slider__item__image__overlay:before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.picker__grid__slider__item:hover .picker__grid__slider__item__image__overlay__icon {
  transform: scale(1) translateY(-50%) translateX(-50%);
  opacity: 1;
}
.picker__grid__slider__item__details {
  padding: 2rem 0.5rem 0;
}
.picker__grid__slider__item__details p {
  font-size: 1.4rem;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}
.picker__grid__slider__item__details__price {
  color: #a6a6a6;
}
.picker__grid__slider__item__details__title {
  color: #ffffff;
}

/*------------------------------------------------------------------
Animated in picker items
------------------------------------------------------------------*/
.animateIn .picker__grid__item--close,
.animateIn .picker__grid__item--scroll {
  opacity: 1;
  transform: translateX(0);
}

.flickity-viewport {
  width: 100%;
  height: 260px;
}

.flickity-button {
  display: none;
}

.flickity-slider {
  perspective: 500;
}

[data-parent-buyable-id]:before {
  position: absolute;
  content: "";
  display: block;
  background: #00aeff;
  top: 0.6rem;
  left: 0.6rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 4rem;
  z-index: 3;
}
[data-parent-buyable-id]:after {
  position: absolute;
  content: "";
  display: block;
  content: "C";
  color: #ffffff;
  top: 0.45rem;
  left: 0.9rem;
  font-weight: bold;
  font-size: 1rem;
  z-index: 4;
}

.animateIn .picker--categories .picker__grid__slider__item {
  transform: none !important;
  opacity: 1 !important;
}

.animateOut .picker--categories .picker__grid__slider__item {
  transform: translateY(20%) !important;
  opacity: 0 !important;
}

.picker--categories {
  font-size: 0;
  padding-left: 0px;
}
.picker--categories .picker__grid__slider__item {
  cursor: pointer;
  width: auto;
  position: relative;
  min-width: 16rem !important;
  text-align: center;
}
.picker--categories .picker__grid__slider__item:first-of-type:before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  width: 1px;
  left: 0 px;
  background: rgba(255, 255, 255, 0.2);
}
.picker--categories .picker__grid__slider__item:after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  width: 1px;
  right: -1px;
  background: rgba(255, 255, 255, 0.2);
}
.picker--categories .picker__grid__slider__item:hover .picker__grid__slider__item__name {
  background: #00aeff;
}
.picker--categories .picker__grid__slider__item .picker__grid__slider__item__name {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 4.3rem 2rem;
  text-align: center;
}
.picker--categories .picker__grid__slider__item .picker__grid__slider__item__name .picker__grid__slider__item__name__title {
  color: #ffffff;
  margin: 0;
  font-weight: 100 !important;
}

.adding.picker__grid__slider__item .picker__grid__slider__item__image__overlay:before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.adding.picker__grid__slider__item .picker__grid__slider__item__image__overlay__icon {
  transform: scale(1) translateY(-50%) translateX(-50%);
  opacity: 1;
}
.adding.picker__grid__slider__item .picker__grid__slider__item__image__overlay__icon:after {
  content: "ADDING" !important;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  left: 50%;
  margin: 0 auto;
  content: "REMOVE";
  padding: 0;
  color: #ffffff;
  position: absolute;
  font-weight: bold;
  font-size: 1.2rem;
}
.adding.picker__grid__slider__item .picker__grid__slider__item__image__overlay__icon:before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  left: 50%;
  margin: 0 auto;
  width: 7rem;
  height: 7rem;
  border-radius: 7rem;
  background: #231f20;
  position: absolute;
  display: block;
}

.removing.picker__grid__slider__item .picker__grid__slider__item__image__overlay:before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.removing.picker__grid__slider__item .picker__grid__slider__item__image__overlay__icon {
  transform: scale(1) translateY(-50%) translateX(-50%);
  opacity: 1;
}
.removing.picker__grid__slider__item .picker__grid__slider__item__image__overlay__icon:after {
  content: "REMOVING" !important;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  left: 50%;
  margin: 0 auto;
  padding: 0;
  color: #ffffff;
  position: absolute;
  font-weight: bold;
  font-size: 1rem;
}
.removing.picker__grid__slider__item .picker__grid__slider__item__image__overlay__icon:before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  left: 50%;
  margin: 0 auto;
  width: 7rem;
  height: 7rem;
  border-radius: 7rem;
  background: #231f20;
  position: absolute;
  display: block;
}

.loaderTiny {
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  left: 50%;
  margin: 0 auto;
  position: absolute;
  z-index: 5;
  width: 11rem;
  height: 11rem;
  opacity: 0.1;
}

.static .picker__grid__slider__item {
  transition: all 0 !important;
  opacity: 1 !important;
  transform: none !important;
}

.memberActive .sidecart__inner__list {
  max-height: calc(100% - 47.1rem);
}

.dealerPricingActive .memberActive .sidecart__inner__list {
  max-height: calc(100% - 61.1rem);
}

.memberActive .sidecart__inner__list {
  max-height: calc(100% - 46.2rem);
}

.dealerPricingActive .memberActive .sidecart__inner__list {
  max-height: calc(100% - 45.2rem);
}

.dealerPricingActive .memberActive .sidecart__inner__list {
  max-height: calc(100% - 61.1rem) !important;
}

/*------------------------------------------------------------------
Navigator
------------------------------------------------------------------*/
.navigator {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  z-index: 4;
  align-items: center;
  align-content: center;
  padding: 0 0rem;
  overflow: hidden;
  height: 4rem;
  max-width: 1240px;
  right: 0;
  margin: 0 auto;
}
.navigator--1 {
  opacity: 0;
}
.navigator__slider {
  width: 100%;
  height: 4rem;
  padding-left: 15rem;
}
.navigator__slider .flickity-viewport {
  height: 100% !important;
}
.navigator__slider__item {
  font-size: 1.6rem;
  color: #ffffff;
  display: inline-block;
  padding: 0 1rem;
  position: relative;
  cursor: pointer;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 4rem;
  white-space: nowrap;
  overflow: hidden;
}
.navigator__slider__item span {
  position: absolute;
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: #00aeff;
  transform: rotate(45deg);
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  opacity: 0;
}
.navigator__slider__item:first-of-type:before {
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  top: 0.8rem;
  bottom: 0.8rem;
  background: rgba(255, 255, 255, 0.3);
  left: 0rem;
}
.navigator__slider__item:after {
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  top: 0.8rem;
  bottom: 0.8rem;
  background: rgba(255, 255, 255, 0.3);
  right: 0rem;
}
.navigator__slider__item.active {
  color: #00aeff;
}
.navigator__slider__item.active span {
  opacity: 1;
}
.navigator__copy {
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  font-style: italic;
  font-size: 1.4rem;
  margin: 0;
  line-height: 3.6rem;
  width: 100%;
}

.results__wrap__results_items {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.loading .results__wrap__results_items {
  opacity: 0.2;
}
.loading .results__wrap__loader,
.loading .builder__scene__loader {
  opacity: 1;
  transform: scale(1) translateY(-130px) translateX(-50%);
}

.results__wrap__loader,
.builder__scene__loader {
  opacity: 0;
  transform: scale(0.6) translateY(-50px) translateX(-50%);
  will-change: transform, opacity;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.boxes {
  --size: 40px;
  --duration: 800ms;
  height: calc(var(--size) * 2);
  width: calc(var(--size) * 3);
  position: relative;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  margin-top: calc(var(--size) * 1.5 * -1);
  transform: rotateX(60deg) rotateZ(45deg) rotateY(0deg) translateZ(0px);
}
.boxes .box {
  width: var(--size);
  height: var(--size);
  top: 0;
  left: 0;
  position: absolute;
  transform-style: preserve-3d;
}
.boxes .box:nth-child(1) {
  transform: translate(100%, 0);
  -webkit-animation: box1 var(--duration) linear infinite;
          animation: box1 var(--duration) linear infinite;
}
.boxes .box:nth-child(2) {
  transform: translate(0, 100%);
  -webkit-animation: box2 var(--duration) linear infinite;
          animation: box2 var(--duration) linear infinite;
}
.boxes .box:nth-child(3) {
  transform: translate(100%, 100%);
  -webkit-animation: box3 var(--duration) linear infinite;
          animation: box3 var(--duration) linear infinite;
}
.boxes .box:nth-child(4) {
  transform: translate(200%, 0);
  -webkit-animation: box4 var(--duration) linear infinite;
          animation: box4 var(--duration) linear infinite;
}
.boxes .box > div {
  --background: #32b9e2;
  --top: auto;
  --right: auto;
  --bottom: auto;
  --left: auto;
  --translateZ: calc(var(--size) / 2);
  --rotateY: 0deg;
  --rotateX: 0deg;
  --scale: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--background);
  top: var(--top);
  right: var(--right);
  bottom: var(--bottom);
  left: var(--left);
  transform: scale(var(--scale)) rotateY(var(--rotateY)) rotateX(var(--rotateX)) translateZ(var(--translateZ));
}
.boxes .box > div:nth-child(1) {
  --top: 0;
  --left: 0;
}
.boxes .box > div:nth-child(2) {
  --background: #198caf;
  --right: 0;
  --rotateY: 90deg;
}
.boxes .box > div:nth-child(3) {
  --background: #1fb0db;
  --rotateX: -90deg;
}
.boxes .box > div:nth-child(4) {
  --background: #090909;
  --top: 0;
  --left: 0;
  --scale: 1.9;
  --translateZ: calc(var(--size) * 5 * -1);
  filter: blur(10px);
}

@-webkit-keyframes box1 {
  0%, 50% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(200%, 0);
  }
}

@keyframes box1 {
  0%, 50% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(200%, 0);
  }
}
@-webkit-keyframes box2 {
  0% {
    transform: translate(0, 100%);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}
@keyframes box2 {
  0% {
    transform: translate(0, 100%);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}
@-webkit-keyframes box3 {
  0%, 50% {
    transform: translate(100%, 100%);
  }
  100% {
    transform: translate(0, 100%);
  }
}
@keyframes box3 {
  0%, 50% {
    transform: translate(100%, 100%);
  }
  100% {
    transform: translate(0, 100%);
  }
}
@-webkit-keyframes box4 {
  0% {
    transform: translate(200%, 0);
  }
  50% {
    transform: translate(200%, 100%);
  }
  100% {
    transform: translate(100%, 100%);
  }
}
@keyframes box4 {
  0% {
    transform: translate(200%, 0);
  }
  50% {
    transform: translate(200%, 100%);
  }
  100% {
    transform: translate(100%, 100%);
  }
}
/*! Flickity v2.2.2
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/*------------------------------------------------------------------
Side Cart
------------------------------------------------------------------*/
.sidecart {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.9);
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 99999999;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
  /*------------------------------------------------------------------
  Close
  ------------------------------------------------------------------*/
  /*------------------------------------------------------------------
  Recommendations
  ------------------------------------------------------------------*/
  /*------------------------------------------------------------------
  Main inner`
  ------------------------------------------------------------------*/
}
.sidecart:after {
  position: absolute;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: 1920px;
  z-index: -1;
  opacity: 0.33;
}
.sidecart .inlineLoader {
  position: absolute;
  top: -5px;
}
.sidecart .inlineLoader use {
  stroke: #ffffff;
  -webkit-animation: a 2s linear infinite;
          animation: a 2s linear infinite;
}
@keyframes a {
  to {
    stroke-dashoffset: 0px;
  }
}
.sidecart .js-shop-set-checkout.busy {
  position: relative;
  color: #25b733;
}
.sidecart .js-shop-set-checkout.busy:after {
  display: none !important;
}
.sidecart .js-shop-set-checkout.busy .inlineLoader {
  display: block !important;
  opacity: 1;
}
.sidecart__close {
  width: calc(100% - 34rem - 40rem);
  width: calc(100% - 40rem);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  background: transparent;
}
.sidecart__recommend {
  width: 34rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40rem;
  background: #e4e4e4;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(-100%);
  will-change: transform;
  opacity: 0;
}
.sidecart__recommend__title {
  position: relative;
  width: 100%;
  padding: 6rem 2rem 2rem;
}
.sidecart__recommend__title p {
  margin: 0;
  position: relative;
}
.sidecart__recommend__title p:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  top: 54%;
  background: #000000;
  opacity: 0.2;
}
.sidecart__recommend__title span {
  font-size: 2.6rem;
  position: relative;
  padding-right: 1rem;
  background: #e4e4e4;
  text-transform: uppercase;
  z-index: 1;
}
.sidecart__recommend__slider {
  height: 100%;
}
.sidecart__recommend__slider .flickity-viewport {
  height: 100% !important;
}
.sidecart__recommend__slider__item {
  padding: 0 4rem 4rem;
  width: 100%;
}
.sidecart__recommend__slider__item__copy {
  padding-top: 1rem;
}
.sidecart__recommend__slider__item__copy p {
  font-size: 1.4rem;
  line-height: 1.2;
}
.sidecart__recommend__slider__item__actions__item {
  width: 32px;
  height: 34px;
  border: 1px solid #a6a6a6;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.sidecart__recommend__slider__item__actions__item:before {
  position: absolute;
  content: "";
  display: block;
  transform: scaleX(0);
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  left: -1px;
  top: -1px;
  background-color: #00aeff;
  transform-origin: bottom right;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
.sidecart__recommend__slider__item__actions__item:hover:before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.sidecart__recommend__slider__item__actions__item:hover path {
  fill: #ffffff !important;
}
.sidecart__recommend__slider__item__actions__item svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.sidecart__recommend__slider__item__actions__item svg path {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.sidecart__inner {
  width: 40rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: #ffffff;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(-100%);
  will-change: transform;
  cursor: default;
}
.sidecart__inner:after {
  box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.2);
  position: absolute;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity;
  opacity: 0;
}
.sidecart__inner__close {
  position: absolute;
  cursor: pointer;
  top: 2rem;
  left: 2rem;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  outline: none;
  padding: 0;
  z-index: 3;
  width: 3rem;
}
.sidecart__inner__close svg {
  width: 3rem;
  height: 3rem;
}
.sidecart__inner__close svg path {
  fill: #00aeff;
}
.sidecart__inner__title {
  position: relative;
  width: 100%;
  padding: 6rem 2rem 2rem;
}
.sidecart__inner__title p {
  margin: 0;
  position: relative;
}
.sidecart__inner__title p:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  top: 54%;
  background: #000000;
  opacity: 0.2;
}
.sidecart__inner__title span {
  font-size: 2.6rem;
  position: relative;
  padding-right: 1rem;
  background: #ffffff;
  text-transform: uppercase;
  z-index: 1;
}
.sidecart__inner__actions {
  background: #ffffff;
  border-top: 1px solid #e4e4e4;
  width: 100%;
  margin-top: 2rem;
  padding: 3.4rem 2rem;
  position: absolute;
  bottom: 0;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 1;
  transform: translateY(0);
}
.sidecart__inner__actions__total h5 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
.sidecart__inner__actions__total h5 span {
  font-weight: lighter;
  font-family: "Arial";
}
.sidecart__inner__actions__total__smaller {
  font-size: 70%;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 0.8rem;
}
.sidecart__inner__actions__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.sidecart__inner__actions__items p {
  font-size: 1.2rem;
  margin: 0.4rem 0 0.2rem;
  text-align: center;
  width: 100%;
}
.sidecart__inner__actions__items .btn, .sidecart__inner__actions__items .contactModal__wrap__content [type=submit], .contactModal__wrap__content .sidecart__inner__actions__items [type=submit],
.sidecart__inner__actions__items .contactModal__wrap__content .action,
.contactModal__wrap__content .sidecart__inner__actions__items .action,
.sidecart__inner__actions__items .orderModal__wrap__content [type=submit],
.orderModal__wrap__content .sidecart__inner__actions__items [type=submit],
.sidecart__inner__actions__items .orderModal__wrap__content .action,
.orderModal__wrap__content .sidecart__inner__actions__items .action,
.sidecart__inner__actions__items .summaryModal__wrap__content [type=submit],
.summaryModal__wrap__content .sidecart__inner__actions__items [type=submit],
.sidecart__inner__actions__items .summaryModal__wrap__content .action,
.summaryModal__wrap__content .sidecart__inner__actions__items .action,
.sidecart__inner__actions__items .guestModal__wrap__content [type=submit],
.guestModal__wrap__content .sidecart__inner__actions__items [type=submit],
.sidecart__inner__actions__items .guestModal__wrap__content .action,
.guestModal__wrap__content .sidecart__inner__actions__items .action,
.sidecart__inner__actions__items .loginModal__wrap__content [type=submit],
.loginModal__wrap__content .sidecart__inner__actions__items [type=submit],
.sidecart__inner__actions__items .loginModal__wrap__content .action,
.loginModal__wrap__content .sidecart__inner__actions__items .action {
  width: 100%;
}
.sidecart__inner__actions__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: -2rem;
  margin-right: -2rem;
}
.sidecart__inner__actions__buttons .btn, .sidecart__inner__actions__buttons .contactModal__wrap__content [type=submit], .contactModal__wrap__content .sidecart__inner__actions__buttons [type=submit],
.sidecart__inner__actions__buttons .contactModal__wrap__content .action,
.contactModal__wrap__content .sidecart__inner__actions__buttons .action,
.sidecart__inner__actions__buttons .orderModal__wrap__content [type=submit],
.orderModal__wrap__content .sidecart__inner__actions__buttons [type=submit],
.sidecart__inner__actions__buttons .orderModal__wrap__content .action,
.orderModal__wrap__content .sidecart__inner__actions__buttons .action,
.sidecart__inner__actions__buttons .summaryModal__wrap__content [type=submit],
.summaryModal__wrap__content .sidecart__inner__actions__buttons [type=submit],
.sidecart__inner__actions__buttons .summaryModal__wrap__content .action,
.summaryModal__wrap__content .sidecart__inner__actions__buttons .action,
.sidecart__inner__actions__buttons .guestModal__wrap__content [type=submit],
.guestModal__wrap__content .sidecart__inner__actions__buttons [type=submit],
.sidecart__inner__actions__buttons .guestModal__wrap__content .action,
.guestModal__wrap__content .sidecart__inner__actions__buttons .action,
.sidecart__inner__actions__buttons .loginModal__wrap__content [type=submit],
.loginModal__wrap__content .sidecart__inner__actions__buttons [type=submit],
.sidecart__inner__actions__buttons .loginModal__wrap__content .action,
.loginModal__wrap__content .sidecart__inner__actions__buttons .action {
  width: 50%;
}
.sidecart__inner__actions__micro {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.sidecart__inner__actions__micro__item--long {
  margin-left: 0;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
  color: #000000;
  align-items: center;
  font-weight: bold;
}
.sidecart__inner__actions__micro__item--square {
  width: 4rem;
  height: 4rem;
  position: relative;
  margin-left: 1rem;
  background: #e4e4e4;
  margin-right: 0;
}
.sidecart__inner__actions__micro__item--square svg {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.sidecart__inner__actions__micro__item svg {
  width: 4rem;
  height: 4.3rem;
}
.sidecart__inner__actions__micro__item svg path {
  stroke: #000000;
}
.sidecart__inner__list {
  width: 100%;
  max-height: calc(100% - 47.5rem);
  position: relative;
  background: #ffffff;
  overflow: auto;
}
.sidecart__inner__list::-webkit-scrollbar-track {
  background-color: #a6a6a6;
}
.sidecart__inner__list::-webkit-scrollbar {
  width: 3px;
  height: 4px;
  background-color: #a6a6a6;
}
.sidecart__inner__list::-webkit-scrollbar-thumb {
  background-color: #00aeff;
  border: 0;
}
.sidecart__inner__list__empty {
  padding: 0 6rem;
  text-align: center;
  padding-top: 10vh;
}
.sidecart__inner__list__empty path {
  fill: #00aeff;
}
.sidecart__inner__list__emptybutton {
  padding: 0 2rem;
  text-align: center;
}
.sidecart__inner__list__item {
  border-bottom: 1px solid #e4e4e4;
  padding: 0 2rem 0.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity, transform;
  opacity: 0;
  background: #ffffff;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.sidecart__inner__list__item:first-of-type .sidecart__inner__list__item__remove {
  display: none;
}
.sidecart__inner__list__item:nth-child(0) {
  transform: translateX(2rem) translateY(0rem);
}
.sidecart__inner__list__item:nth-child(1) {
  transform: translateX(2rem) translateY(4rem);
}
.sidecart__inner__list__item:nth-child(2) {
  transform: translateX(2rem) translateY(8rem);
}
.sidecart__inner__list__item:nth-child(3) {
  transform: translateX(2rem) translateY(12rem);
}
.sidecart__inner__list__item:nth-child(4) {
  transform: translateX(2rem) translateY(16rem);
}
.sidecart__inner__list__item:nth-child(5) {
  transform: translateX(2rem) translateY(20rem);
}
.sidecart__inner__list__item:nth-child(6) {
  transform: translateX(2rem) translateY(24rem);
}
.sidecart__inner__list__item:nth-child(7) {
  transform: translateX(2rem) translateY(28rem);
}
.sidecart__inner__list__item:nth-child(8) {
  transform: translateX(2rem) translateY(32rem);
}
.sidecart__inner__list__item:nth-child(9) {
  transform: translateX(2rem) translateY(36rem);
}
.sidecart__inner__list__item:nth-child(10) {
  transform: translateX(2rem) translateY(40rem);
}
.sidecart__inner__list__item:nth-child(11) {
  transform: translateX(2rem) translateY(44rem);
}
.sidecart__inner__list__item:nth-child(12) {
  transform: translateX(2rem) translateY(48rem);
}
.sidecart__inner__list__item--placeholder .sidecart__inner__list__item__image span {
  background: rgba(0, 0, 0, 0.1);
  -webkit-animation-duration: 1.25s;
          animation-duration: 1.25s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: placeHolderShimmer;
          animation-name: placeHolderShimmer;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  background: rgba(0, 0, 0, 0.1);
  background: linear-gradient(to right, #eaeaea 10%, #d5dadc 18%, #eaeaea 33%);
  background-size: 800px 104px;
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
.sidecart__inner__list__item--placeholder .sidecart__inner__list__item__details p {
  position: relative;
  width: 100%;
  line-height: 1.2;
}
.sidecart__inner__list__item--placeholder .sidecart__inner__list__item__details p:after {
  position: absolute;
  content: "";
  display: block;
  top: 2px;
  bottom: 2px;
  left: 0;
  right: 0;
  -webkit-animation-duration: 1.25s;
          animation-duration: 1.25s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: placeHolderShimmer;
          animation-name: placeHolderShimmer;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  background: rgba(0, 0, 0, 0.1);
  background: linear-gradient(to right, #eaeaea 10%, #d5dadc 18%, #eaeaea 33%);
  background-size: 800px 104px;
}
.sidecart__inner__list__item--placeholder .sidecart__inner__list__item__details p:last-of-type {
  width: 80%;
}
.sidecart__inner__list__item__image {
  display: block;
  width: 10rem;
  position: relative;
}
.sidecart__inner__list__item__image span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.sidecart__inner__list__item__details {
  width: calc(100% - 10rem);
  padding: 0 2rem;
}
.sidecart__inner__list__item__details p {
  line-height: 1.2;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.sidecart__inner__list__item__details p i {
  font-style: normal;
  font-weight: bold;
  font-size: 1.2rem;
}
.sidecart__inner__list__item__details p span {
  font-size: 70%;
}
.sidecart__inner__list__item__details p:last-of-type {
  font-size: 1.8rem;
}
.sidecart__inner__list__item__remove {
  position: absolute;
  top: 0;
  right: 2rem;
  display: none;
}
.sidecart__inner__list__item__remove svg {
  display: inline-block;
  vertical-align: middle;
  width: 1rem;
  height: 1rem;
}

.side-cart-empty .sidecart__inner__actions {
  opacity: 0;
  transform: translateY(100%);
}

.sidecartActive {
  position: relative;
  max-height: 100%;
  overflow: hidden;
}
.sidecartActive body {
  position: relative;
  max-height: 100%;
  overflow: hidden;
}
.sidecartActive .sidecart {
  visibility: visible;
  opacity: 1;
}
.sidecartActive .sidecart__recommend:after {
  opacity: 1;
}
.sidecartActive .sidecart__inner:after {
  opacity: 1;
}

@-webkit-keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}

@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
.mojs-shape {
  z-index: 33;
}

[data-name=mojs-shape] {
  z-index: 33;
}

.toggle {
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.toggle--bottom {
  margin-top: 2rem;
}
.toggle--bottom:after {
  position: absolute;
  content: "";
  display: block;
  top: -1rem;
  left: -2rem;
  right: -2rem;
  height: 1px;
  background: #e4e4e4;
}
.toggle input {
  position: absolute;
  width: 4.5rem;
  height: 2.6rem;
  right: 0;
  z-index: 3;
  cursor: pointer;
  opacity: 0;
}
.toggle input:focus + label,
.toggle input:checked + label,
.toggle input + label {
  padding-right: 6rem;
  padding-left: 0;
  display: inline-block;
  min-height: 3rem;
  width: 100%;
  font-size: 1.4rem;
  color: #a6a6a6;
  margin: 2.2rem 0 1.1rem;
  display: block;
  line-height: 1.9;
  text-align: right;
}
.toggle input:focus + label:before,
.toggle input:checked + label:before,
.toggle input + label:before {
  position: absolute;
  content: "";
  display: block;
  border: 1px solid #e4e4e4;
  box-shadow: 0 1px 3px 0 rgba(228, 228, 228, 0.7);
  width: 4.5rem;
  background: #ffffff;
  background: #f1f1f1;
  height: 2.6rem;
  right: 0;
  top: 0.1rem;
  border-radius: 100rem;
  left: auto;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: background;
}
.toggle input:focus + label:after,
.toggle input:checked + label:after,
.toggle input + label:after {
  position: absolute;
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 3.8rem;
  border: 1px solid #ffffff;
  top: 0.4rem;
  left: calc(100% - 4.1rem);
  background: #ffffff;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: left, border, width;
}
.toggle input:target + label:before,
.toggle input:active + label:before {
  background: #f7f7f7;
}
.toggle input:target + label:after,
.toggle input:active + label:after {
  width: 2.8rem;
}
.toggle input:checked + label:before {
  border: 1px solid #00a4f0;
  background: #00aeff;
}
.toggle input:checked + label:after {
  width: 2rem;
  background: #ffffff;
  border: 1px solid #ffffff;
  left: calc(100% - 2.4rem);
}
.toggle input:checked:active + label:before {
  border: 1px solid #00a4f0;
  background: #00aeff;
}
.toggle input:checked:active + label:after {
  width: 2.8rem;
  background: #ffffff;
  border: 1px solid #ffffff;
  left: calc(100% - 3.2rem);
}

.altPrice {
  margin-right: 0.5rem;
  margin-left: auto;
  color: #00aeff;
}

.sidecart__inner__margins {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.sidecart__inner__margins__row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e4e4e4;
  font-size: 1.4rem;
}
.sidecart__inner__margins__row--small {
  font-size: 1.2rem;
}
.sidecart__inner__margins__row__item {
  width: 25%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.sidecart__inner__margins__row__item:first-of-type {
  justify-content: flex-start;
}
.sidecart__inner__margins__row__item.arial {
  font-family: "Arial";
  font-weight: bold;
  font-size: 13px;
}

.takeoverActive .select2-results__options li:first-of-type {
  display: none !important;
}

.altHeight {
  max-height: calc(100% - 55.5rem);
}

.mobilegrey {
  background-color: #3a3a3a;
  transition: all 0.6s cubic-bezier(0.75, 0, 0.25, 1);
  transform: translateY(-100%) translateZ(0);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 800000;
  will-change: transform;
  transition-delay: 0.6s;
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.15);
}

.mobileblue {
  background: #00aeff;
  transition: all 0.4s cubic-bezier(0.75, 0, 0.25, 1);
  transform: translateY(-100%) translateZ(0);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 700000;
  will-change: transform;
  transition-delay: 0.8s;
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.15);
}

.mobileMenu {
  background: rgba(0, 0, 0, 0.9);
  transition: all 0.8s cubic-bezier(0.75, 0, 0.25, 1);
  transform: translateY(-100%) translateZ(0);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900000;
  will-change: transform;
  transition-delay: 0.3s;
  overflow: auto;
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.15);
}
.mobileMenu__wrap {
  padding: 8rem 0 2rem;
}
.mobileMenu__wrap__menu {
  opacity: 0;
  transform: translateY(-10%) translateZ(0);
  will-change: transform;
  transition: all 0.8s cubic-bezier(0.75, 0, 0.25, 1);
  transition-delay: 0s;
}
.mobileMenu__wrap__menu__item {
  will-change: transform;
  transition: all 0.8s cubic-bezier(0.75, 0, 0.25, 1);
  transition-delay: 0s;
  opacity: 0;
}
.mobileMenu__wrap__menu__item:nth-child(0) {
  transform: translateX(-160px) translateZ(0);
}
.mobileMenu__wrap__menu__item:nth-child(1) {
  transform: translateX(-185px) translateZ(0);
}
.mobileMenu__wrap__menu__item:nth-child(2) {
  transform: translateX(-210px) translateZ(0);
}
.mobileMenu__wrap__menu__item:nth-child(3) {
  transform: translateX(-235px) translateZ(0);
}
.mobileMenu__wrap__menu__item:nth-child(4) {
  transform: translateX(-260px) translateZ(0);
}
.mobileMenu__wrap__menu__item:nth-child(5) {
  transform: translateX(-285px) translateZ(0);
}
.mobileMenu__wrap__menu__item:nth-child(6) {
  transform: translateX(-310px) translateZ(0);
}
.mobileMenu__wrap__menu__item:nth-child(7) {
  transform: translateX(-335px) translateZ(0);
}
.mobileMenu__wrap__menu__item:nth-child(8) {
  transform: translateX(-360px) translateZ(0);
}
.mobileMenu__wrap__menu__item:nth-child(9) {
  transform: translateX(-385px) translateZ(0);
}
.mobileMenu__wrap__menu__item:nth-child(10) {
  transform: translateX(-410px) translateZ(0);
}
.mobileMenu__wrap__menu__item:nth-child(11) {
  transform: translateX(-435px) translateZ(0);
}
.mobileMenu__wrap__menu__item:nth-child(12) {
  transform: translateX(-460px) translateZ(0);
}
.mobileMenu__wrap__menu__item:nth-child(13) {
  transform: translateX(-485px) translateZ(0);
}
.mobileMenu__wrap__menu__item:nth-child(14) {
  transform: translateX(-510px) translateZ(0);
}
.mobileMenu__wrap__menu__item:nth-child(15) {
  transform: translateX(-535px) translateZ(0);
}
.mobileMenu__wrap__menu__item__link {
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  padding: 0.8rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.mobileMenu__wrap__menu__item__link.active svg {
  transform: rotate(-180deg);
}
.mobileMenu__wrap__menu__item__link svg {
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mobileMenu__wrap__menu__item__link--grey {
  color: #a7a7a7;
}
.mobileMenu__wrap__menu__item__link--grey svg {
  margin-right: 1rem;
}
.mobileMenu__wrap__menu__item .btn, .mobileMenu__wrap__menu__item .contactModal__wrap__content [type=submit], .contactModal__wrap__content .mobileMenu__wrap__menu__item [type=submit],
.mobileMenu__wrap__menu__item .contactModal__wrap__content .action,
.contactModal__wrap__content .mobileMenu__wrap__menu__item .action,
.mobileMenu__wrap__menu__item .orderModal__wrap__content [type=submit],
.orderModal__wrap__content .mobileMenu__wrap__menu__item [type=submit],
.mobileMenu__wrap__menu__item .orderModal__wrap__content .action,
.orderModal__wrap__content .mobileMenu__wrap__menu__item .action,
.mobileMenu__wrap__menu__item .summaryModal__wrap__content [type=submit],
.summaryModal__wrap__content .mobileMenu__wrap__menu__item [type=submit],
.mobileMenu__wrap__menu__item .summaryModal__wrap__content .action,
.summaryModal__wrap__content .mobileMenu__wrap__menu__item .action,
.mobileMenu__wrap__menu__item .guestModal__wrap__content [type=submit],
.guestModal__wrap__content .mobileMenu__wrap__menu__item [type=submit],
.mobileMenu__wrap__menu__item .guestModal__wrap__content .action,
.guestModal__wrap__content .mobileMenu__wrap__menu__item .action,
.mobileMenu__wrap__menu__item .loginModal__wrap__content [type=submit],
.loginModal__wrap__content .mobileMenu__wrap__menu__item [type=submit],
.mobileMenu__wrap__menu__item .loginModal__wrap__content .action,
.loginModal__wrap__content .mobileMenu__wrap__menu__item .action {
  margin-top: 1rem;
  font-family: Arial;
  font-weight: bold;
}
.mobileMenu__wrap__menu__item__children {
  background: #00aeff;
  position: relative;
}
.mobileMenu__wrap__menu__item__children__item {
  color: #ffffff;
  font-size: 1.8rem;
  padding: 0.8rem 3rem;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  align-items: center;
}
.mobileMenu__wrap__menu__item__children__item + .mobile__wrap__menu__item__children__item {
  padding-top: 0;
}

.mobile-menu-active .mobilegrey {
  transform: translateY(0) translateZ(0);
  transition-delay: 0s;
}
.mobile-menu-active .mobileblue {
  transform: translateY(0) translateZ(0);
  transition-delay: 0s;
}
.mobile-menu-active .mobileMenu {
  transform: translateY(0) translateZ(0);
  transition-delay: 0s;
}
.mobile-menu-active .mobileMenu__wrap__menu {
  opacity: 1;
  transform: translateY(0) translateZ(0);
  transition-delay: 0.3s;
}
.mobile-menu-active .mobileMenu__wrap__menu__item {
  opacity: 1;
  transform: translateX(0) translateZ(0);
  transition-delay: 0.3s;
}

.progress {
  position: absolute;
  left: 0;
  right: 0;
  top: 10%;
  top: 10rem;
  z-index: 8;
  padding: 0 2rem;
  z-index: 99;
}
.progress__wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.progress__wrap__item {
  background: #4f4f4f;
  height: 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  padding-left: 2rem;
  position: relative;
}
.progress__wrap__item:after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 18px;
  border-color: transparent transparent transparent #4f4f4f;
  left: 100%;
}
.progress__wrap__item:nth-child(1) {
  z-index: 4;
}
.progress__wrap__item:nth-child(2) {
  z-index: 3;
  padding-right: 3rem;
}
.progress__wrap__item:nth-child(3) {
  z-index: 2;
  padding-right: 3rem;
}
.progress__wrap__item:nth-child(4) {
  z-index: 1;
  padding-right: 3rem;
}
.progress__wrap__item:nth-child(5) {
  z-index: 1;
  padding-right: 3rem;
}
.progress__wrap__item__number {
  font-weight: bold;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 2.3rem;
  line-height: 1.9rem;
  text-align: center;
  background: #9d9d9d;
  color: #535353;
  display: inline-block;
  position: relative;
  left: -2px;
}
.progress__wrap__item__title {
  color: #9d9d9d;
  margin-left: 2rem;
  font-weight: bold !important;
}
.progress__wrap__item--active {
  background: #747474;
}
.progress__wrap__item--active:after {
  border-color: transparent transparent transparent #747474;
}
.progress__wrap__item--active .progress__wrap__item__number {
  color: #ffffff;
  background: #00aeff;
}
.progress__wrap__item--active .progress__wrap__item__title {
  color: #ffffff;
}
.progress__wrap__item--active + .progress__wrap__item .progress__wrap__item__number {
  margin-left: 2rem;
}

.results {
  margin-top: 8.6rem;
  padding-top: 5rem;
}
.results__wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
.results__wrap__loader {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  left: 50%;
  margin: 0 auto;
  z-index: 33;
  margin-top: 9rem;
}
.results__wrap__loader .boxes .box > div:nth-child(4) {
  opacity: 0.4;
}
.results__wrap__form {
  margin: 0 auto;
  width: 100%;
  max-width: 768px;
  margin-bottom: 2rem;
  position: relative;
}
.results__wrap__form .action {
  position: absolute;
  bottom: 1.6rem;
  right: 0;
  background: #00aeff;
  padding: 1.6rem 4rem !important;
  width: auto;
}
.results__wrap__results {
  margin: 0 auto;
  max-width: 1440px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  margin-bottom: 4rem;
  justify-content: flex-start;
}
.results__wrap__results__item {
  width: calc(25% - 2rem);
  margin: 1rem;
}
.results__wrap__results__item__image {
  margin-bottom: 1rem;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #f7f7f7;
  background-image: url("../images/thumbnail.jpg");
}
.results__wrap__results__item__image:after {
  content: "";
  position: relative;
  display: block;
  padding-bottom: 72.972972973%;
}
.results__wrap__results__item__image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.results__wrap__results__item__text p {
  text-transform: uppercase;
}
.results__wrap__pagination {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 3rem auto 6rem;
}
.results__wrap__pagination .js-pagination {
  display: flex;
}
.results__wrap__pagination__item {
  width: 4rem;
  height: 4rem;
  display: block;
  text-align: center;
  line-height: 4rem;
  margin: 0 0.4rem;
}
.results__wrap__pagination__item:hover, .results__wrap__pagination__item--current {
  background: #00aeff;
  color: #ffffff;
}
.results__wrap__pagination__item:hover path, .results__wrap__pagination__item--current path {
  fill: #ffffff;
}
.results__wrap__pagination__item--next {
  width: auto;
  padding: 0 1rem;
}
.results__wrap__pagination__item--previous {
  width: auto;
  padding: 0 1rem;
}

.results__wrap__tags__wrap {
  max-width: 1024px;
  margin: 0 auto;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 4rem;
}
.results__wrap__tags__wrap__item {
  padding: 1rem 3rem;
  border: 2px solid #ffffff;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.results__wrap__tags__wrap__item h5 {
  margin: 0;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #000000;
}
.results__wrap__tags__wrap__item.active, .results__wrap__tags__wrap__item:hover {
  border: 2px solid #000000;
}
.results__wrap__tags__wrap__item.active h5, .results__wrap__tags__wrap__item:hover h5 {
  color: #000000;
}

.results__wrap__tagsMobile {
  margin-bottom: 4rem;
  display: none;
}
.results__wrap__tagsMobile__wrap {
  padding: 0;
}
.results__wrap__tagsMobile__wrap__current {
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  display: block;
  padding: 1rem 0;
  position: relative;
  color: #000000;
  text-decoration: none;
  text-transform: capitalize;
}
.results__wrap__tagsMobile__wrap__current b {
  margin: 0;
}
.results__wrap__tagsMobile__wrap__current svg {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  right: 1rem;
}
.results__wrap__tagsMobile__wrap__current svg path {
  fill: #00aeff;
}
.results__wrap__tagsMobile__wrap__grid {
  display: none;
  width: 100%;
  border-bottom: 1px solid #e4e4e4;
}
.results__wrap__tagsMobile__wrap__grid__item {
  transition: all 111ms ease;
  margin: 0;
  padding: 1rem 0;
  display: block;
  width: 100%;
}
.results__wrap__tagsMobile__wrap__grid__item:hover, .results__wrap__tagsMobile__wrap__grid__item.active {
  color: #000000;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}
.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}
.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

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

.select2-results {
  display: block;
}

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

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

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

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

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

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

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

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

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

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

.select2-container {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  outline: none;
  z-index: 99999;
}
.select2-container * {
  outline: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.select2-container.select2-container--open .select2-selection__rendered:before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.select2-container .select2-selection__placeholder {
  position: relative;
  color: #ffffff;
  z-index: 3;
}
.select2-container .select2-selection {
  margin: 0;
  height: auto;
  border: 0;
  background: transparent;
}
.select2-container .select2-selection__rendered {
  display: block;
  height: 4rem;
  margin: 0;
  font-size: 1.4rem;
  padding: 1.3rem 1.8rem;
  color: #ffffff;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #555c5e;
  line-height: 17px !important;
}
.select2-container .select2-selection__rendered:before {
  position: absolute;
  content: "";
  display: block;
  transform: scaleX(0);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.1);
  transform-origin: bottom right;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
.select2-container .select2-selection__arrow {
  height: 4rem;
  padding: 0;
  margin: 0;
  width: 4rem;
  top: 0;
  right: 0;
}
.select2-container .select2-selection__arrow b {
  display: none !important;
}

.select2-dropdown {
  margin: 0;
  border: 0;
  outline: none;
  border-radius: 0;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: scaleY(0);
  transform-origin: 50% 0;
  box-shadow: -1px 4px 74px -16px rgba(0, 0, 0, 0.15);
}
.select2-dropdown.animating {
  transform: scaleY(1);
}
.select2-dropdown.animatedSlick .select2-results__option {
  opacity: 1;
}
.select2-dropdown * {
  outline: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.select2-dropdown .select2-results {
  margin: 0;
}
.select2-dropdown .select2-results__options {
  margin: 0;
  padding: 0;
  list-style: none;
}
.select2-dropdown .select2-results__options::-webkit-scrollbar-track {
  background-color: #e4e4e4;
}
.select2-dropdown .select2-results__options::-webkit-scrollbar {
  width: 8px;
  background-color: #e4e4e4;
}
.select2-dropdown .select2-results__options::-webkit-scrollbar-thumb {
  background-color: #555c5e;
}
.select2-dropdown .select2-results__option {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.3rem 1.5rem;
  display: block;
  color: #555c5e;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  opacity: 0;
}
.select2-dropdown .select2-results__option--selected {
  background: #ffffff;
}
.select2-dropdown .select2-results__option[aria-selected=true] {
  background: #00aeff !important;
}

#body .select2-container--default .select2-results > .select2-results__options {
  max-height: 400px;
}
#body .locationFilter__state,
#body .productSelector {
  margin-top: 5rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  max-width: 30rem;
}
#body .locationFilter__state .select2-selection__clear,
#body .productSelector .select2-selection__clear {
  display: none;
}
#body .locationFilter__state .select2-selection__rendered,
#body .locationFilter__state .select2-selection__placeholder,
#body .productSelector .select2-selection__rendered,
#body .productSelector .select2-selection__placeholder {
  color: #000000;
}
#body .locationFilter__state .select2-container .select2-selection__arrow,
#body .productSelector .select2-container .select2-selection__arrow {
  margin-right: 1rem;
}

#body span[title=Trade] {
  padding-left: 5rem !important;
}
#body span[title=Trade]:after {
  position: absolute;
  content: "";
  display: block;
  top: 1rem;
  left: 1.3rem;
  position: absolute;
  background: url('data:image/svg+xml; utf8, <svg width="25" height="18" xmlns="http://www.w3.org/2000/svg"><path d="M14.889.73a.65.65 0 01.643.554l.007.096-.001.284 3.73.756a.65.65 0 01.514.535l.008.102-.001.942L24.265 4a.735.735 0 110 1.47h-4.476v1.12a.65.65 0 01-.423.61l-.098.027-3.73.755v.292a.65.65 0 01-.553.643l-.096.007h-2.794v.825a2.833 2.833 0 01-2.19 2.763l-.177.036-.129.021v2.276a2.573 2.573 0 01-2.413 2.562l-.163.005a2.573 2.573 0 01-2.568-2.406l-.005-.162-.001-5.92h-.777A2.955 2.955 0 01.736 6.153L.731 5.98V3.67A2.945 2.945 0 013.502.736L3.675.73H14.89zm-6.59 8.197h-2.55v5.917c0 .61.438 1.123 1.018 1.242l.126.02.13.006c.66 0 1.204-.501 1.27-1.138l.006-.13V8.928zm2.496 0H9.602v2.319l.046-.01a1.532 1.532 0 001.123-1.21l.019-.137.006-.14-.001-.822zm3.443-6.897H3.675c-.808 0-1.482.586-1.619 1.354l-.019.145-.006.142V5.98c0 .855.663 1.562 1.503 1.638l.141.007 10.563-.001V2.03zm1.302.961v3.664l2.949-.597v-2.47l-2.949-.597z" fill="%23fff" fill-rule="nonzero"/></svg>') !important;
  width: 25px !important;
  width: 25px !important;
  height: 18px !important;
  background-size: contain;
}
#body span[title="For your home"] {
  padding-left: 5rem !important;
}
#body span[title="For your home"]:after {
  position: absolute;
  content: "";
  display: block;
  top: 1rem;
  left: 1.3rem;
  position: absolute;
  background: url('data:image/svg+xml; utf8, <svg width="16" height="17" xmlns="http://www.w3.org/2000/svg"><path d="M7.578.481L.608 5.745a.65.65 0 00-.258.518V16c0 .359.291.65.65.65h4.744l.096-.007A.65.65 0 006.394 16v-5.079h3.211V16c0 .359.292.65.65.65H15a.65.65 0 00.65-.65V6.263a.65.65 0 00-.26-.52L8.36.48a.65.65 0 00-.782.001zm.393 1.332l6.379 4.775v8.762h-3.445v-5.079a.65.65 0 00-.65-.65h-4.51l-.097.007a.65.65 0 00-.554.643v5.079H1.65V6.585l6.321-4.772z" fill="%23fff" fill-rule="nonzero"/></svg>') !important;
  width: 16px;
  height: 17px;
  background-size: contain;
}
#body [data-select2-id*=trade] {
  padding-left: 5rem;
}
#body [data-select2-id*=trade]:before {
  position: absolute;
  content: "";
  display: block;
  top: 1rem;
  left: 1.3rem;
  position: absolute;
  background: url('data:image/svg+xml; utf8, <svg width="25" height="18" xmlns="http://www.w3.org/2000/svg"><path d="M14.889.73a.65.65 0 01.643.554l.007.096-.001.284 3.73.756a.65.65 0 01.514.535l.008.102-.001.942L24.265 4a.735.735 0 110 1.47h-4.476v1.12a.65.65 0 01-.423.61l-.098.027-3.73.755v.292a.65.65 0 01-.553.643l-.096.007h-2.794v.825a2.833 2.833 0 01-2.19 2.763l-.177.036-.129.021v2.276a2.573 2.573 0 01-2.413 2.562l-.163.005a2.573 2.573 0 01-2.568-2.406l-.005-.162-.001-5.92h-.777A2.955 2.955 0 01.736 6.153L.731 5.98V3.67A2.945 2.945 0 013.502.736L3.675.73H14.89zm-6.59 8.197h-2.55v5.917c0 .61.438 1.123 1.018 1.242l.126.02.13.006c.66 0 1.204-.501 1.27-1.138l.006-.13V8.928zm2.496 0H9.602v2.319l.046-.01a1.532 1.532 0 001.123-1.21l.019-.137.006-.14-.001-.822zm3.443-6.897H3.675c-.808 0-1.482.586-1.619 1.354l-.019.145-.006.142V5.98c0 .855.663 1.562 1.503 1.638l.141.007 10.563-.001V2.03zm1.302.961v3.664l2.949-.597v-2.47l-2.949-.597z" fill="%23848484" fill-rule="nonzero"/></svg>') !important;
  width: 25px !important;
  height: 18px !important;
  background-size: contain;
}
#body [data-select2-id*=trade][aria-selected=true]:before, #body [data-select2-id*=trade].select2-results__option--highlighted:before {
  background: url('data:image/svg+xml; utf8, <svg width="25" height="18" xmlns="http://www.w3.org/2000/svg"><path d="M14.889.73a.65.65 0 01.643.554l.007.096-.001.284 3.73.756a.65.65 0 01.514.535l.008.102-.001.942L24.265 4a.735.735 0 110 1.47h-4.476v1.12a.65.65 0 01-.423.61l-.098.027-3.73.755v.292a.65.65 0 01-.553.643l-.096.007h-2.794v.825a2.833 2.833 0 01-2.19 2.763l-.177.036-.129.021v2.276a2.573 2.573 0 01-2.413 2.562l-.163.005a2.573 2.573 0 01-2.568-2.406l-.005-.162-.001-5.92h-.777A2.955 2.955 0 01.736 6.153L.731 5.98V3.67A2.945 2.945 0 013.502.736L3.675.73H14.89zm-6.59 8.197h-2.55v5.917c0 .61.438 1.123 1.018 1.242l.126.02.13.006c.66 0 1.204-.501 1.27-1.138l.006-.13V8.928zm2.496 0H9.602v2.319l.046-.01a1.532 1.532 0 001.123-1.21l.019-.137.006-.14-.001-.822zm3.443-6.897H3.675c-.808 0-1.482.586-1.619 1.354l-.019.145-.006.142V5.98c0 .855.663 1.562 1.503 1.638l.141.007 10.563-.001V2.03zm1.302.961v3.664l2.949-.597v-2.47l-2.949-.597z" fill="%23fff" fill-rule="nonzero"/></svg>') !important;
}
#body [data-select2-id*=trade]:after {
  display: none !important;
}
#body [data-select2-id*=home] {
  padding-left: 5rem;
}
#body [data-select2-id*=home]:before {
  position: absolute;
  content: "";
  display: block;
  top: 1rem;
  left: 1.3rem;
  position: absolute;
  background: url('data:image/svg+xml; utf8, <svg width="16" height="17" xmlns="http://www.w3.org/2000/svg"><path d="M7.578.481L.608 5.745a.65.65 0 00-.258.518V16c0 .359.291.65.65.65h4.744l.096-.007A.65.65 0 006.394 16v-5.079h3.211V16c0 .359.292.65.65.65H15a.65.65 0 00.65-.65V6.263a.65.65 0 00-.26-.52L8.36.48a.65.65 0 00-.782.001zm.393 1.332l6.379 4.775v8.762h-3.445v-5.079a.65.65 0 00-.65-.65h-4.51l-.097.007a.65.65 0 00-.554.643v5.079H1.65V6.585l6.321-4.772z" fill="%23848484" fill-rule="nonzero"/></svg>') !important;
  background-size: contain;
  width: 16px;
  height: 17px;
}
#body [data-select2-id*=home][aria-selected=true]:before, #body [data-select2-id*=home].select2-results__option--highlighted:before {
  background: url('data:image/svg+xml; utf8, <svg width="16" height="17" xmlns="http://www.w3.org/2000/svg"><path d="M7.578.481L.608 5.745a.65.65 0 00-.258.518V16c0 .359.291.65.65.65h4.744l.096-.007A.65.65 0 006.394 16v-5.079h3.211V16c0 .359.292.65.65.65H15a.65.65 0 00.65-.65V6.263a.65.65 0 00-.26-.52L8.36.48a.65.65 0 00-.782.001zm.393 1.332l6.379 4.775v8.762h-3.445v-5.079a.65.65 0 00-.65-.65h-4.51l-.097.007a.65.65 0 00-.554.643v5.079H1.65V6.585l6.321-4.772z" fill="%23fff" fill-rule="nonzero"/></svg>') !important;
}
#body [data-select2-id*=home]:after {
  display: none !important;
}

@-webkit-keyframes notyf-fadeinup {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes notyf-fadeinup {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes notyf-fadeinleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes notyf-fadeinleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes notyf-fadeoutright {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(25%);
  }
}
@keyframes notyf-fadeoutright {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(25%);
  }
}
@-webkit-keyframes notyf-fadeoutdown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(25%);
  }
}
@keyframes notyf-fadeoutdown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(25%);
  }
}
@-webkit-keyframes ripple {
  0% {
    transform: scale(0) translateY(-45%) translateX(13%);
  }
  100% {
    transform: scale(1) translateY(-45%) translateX(13%);
  }
}
@keyframes ripple {
  0% {
    transform: scale(0) translateY(-45%) translateX(13%);
  }
  100% {
    transform: scale(1) translateY(-45%) translateX(13%);
  }
}
.notyf {
  position: fixed;
  top: 0;
  left: 0;
  height: calc(100% - 8rem);
  width: 100%;
  z-index: 100000000000000020000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  box-sizing: border-box;
  padding: 20px;
  padding: 20px 10px;
}
.notyf__icon--error, .notyf__icon--success {
  height: 2rem;
  width: 2rem;
  background: white;
  display: block;
  margin: 0 auto;
  position: relative;
  background-image: url('data:image/svg+xml; utf8, <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M19.902 16.867L12.988 9.95l6.914-6.916L16.867 0 9.952 6.916 3.037 0 0 3.035l6.916 6.916L0 16.867l3.035 3.035 6.917-6.915 6.915 6.915z" fill="%23000" fill-rule="evenodd"/></svg>');
}
.notyf__toast {
  display: block;
  overflow: hidden;
  pointer-events: auto;
  -webkit-animation: notyf-fadeinup 0.3s ease-in forwards;
          animation: notyf-fadeinup 0.3s ease-in forwards;
  background: #ffffff;
  box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.3), 0 40px 40px -20px rgba(0, 0, 0, 0.2), 0 70px 50px -30px rgba(0, 0, 0, 0.1), 0 40px 60px -5px rgba(0, 0, 0, 0.3);
  position: relative;
  padding: 0 15px;
  max-width: 300px;
  transform: translateY(25%);
  box-sizing: border-box;
  border: 2px solid #00aeff;
  border: 2px solid #000000;
}
.notyf__toast--disappear {
  transform: translateY(0);
  -webkit-animation: notyf-fadeoutdown 0.3s forwards;
          animation: notyf-fadeoutdown 0.3s forwards;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.notyf__toast--disappear .notyf__message, .notyf__toast--disappear .notyf__icon {
  -webkit-animation: notyf-fadeoutdown 0.3s forwards;
          animation: notyf-fadeoutdown 0.3s forwards;
  opacity: 1;
  transform: translateY(0);
}
.notyf__toast--disappear .notyf__dismiss {
  -webkit-animation: notyf-fadeoutright 0.3s forwards;
          animation: notyf-fadeoutright 0.3s forwards;
  opacity: 1;
  transform: translateX(0);
}
.notyf__toast--disappear .notyf__message {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
  padding-right: 2rem !important;
}
.notyf__toast--upper {
  margin-bottom: 20px;
}
.notyf__toast--lower {
  margin-top: 20px;
}
.notyf__toast--dismissible .notyf__wrapper {
  padding-right: 30px;
}
.notyf__ripple {
  height: 400px;
  width: 400px;
  position: absolute;
  transform-origin: bottom right;
  right: 0;
  top: 0;
  border-radius: 50%;
  transform: scale(0) translateY(-51%) translateX(13%);
  z-index: 5;
  -webkit-animation: ripple 0.4s ease-out forwards;
          animation: ripple 0.4s ease-out forwards;
  background: #ffffff !important;
}
.notyf__wrapper {
  display: flex;
  align-items: center;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-right: 15px;
  border-radius: 0px;
  position: relative;
  z-index: 10;
  align-items: flex-start;
}
.notyf__icon {
  width: 22px;
  text-align: center;
  font-size: 1.3em;
  opacity: 0;
  -webkit-animation: notyf-fadeinup 0.3s forwards;
          animation: notyf-fadeinup 0.3s forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  margin-right: 13px;
}
.notyf__dismiss {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 26px;
  margin-right: -15px;
  -webkit-animation: notyf-fadeinleft 0.3s forwards;
          animation: notyf-fadeinleft 0.3s forwards;
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
  opacity: 0;
}
.notyf__dismiss-btn {
  background-color: #00aeff;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease;
  outline: none;
  height: 100%;
  width: 100%;
}
.notyf__dismiss-btn:after, .notyf__dismiss-btn:before {
  content: "";
  background: white;
  height: 12px;
  width: 2px;
  position: absolute;
  left: calc(50% - 1px);
  top: calc(50% - 5px);
}
.notyf__dismiss-btn:after {
  transform: rotate(-45deg);
}
.notyf__dismiss-btn:before {
  transform: rotate(45deg);
}
.notyf__dismiss-btn:hover {
  opacity: 0.95;
}
.notyf__dismiss-btn:active {
  opacity: 0.95;
}
.notyf__message {
  vertical-align: middle;
  position: relative;
  opacity: 0;
  -webkit-animation: notyf-fadeinup 0.3s forwards;
          animation: notyf-fadeinup 0.3s forwards;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
  font-weight: bold;
  font-size: 1.4rem;
  color: #000000;
}
.notyf__message a {
  display: inline-block;
  vertical-align: bottom;
  margin-left: 1rem;
}

/* Small screens */
.notyf__dismiss-btn {
  padding: 0 !important;
  border-radius: 0;
}

.notyf__message {
  display: flex;
  align-items: center;
  align-content: center;
  font-size: 1.4rem;
  line-height: 1.2;
  padding-right: 2rem !important;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.notyf__message img {
  max-width: 6rem;
  height: 6rem;
  margin: 0 1rem 0 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.swal2-popup.swal2-toast {
  box-sizing: border-box;
  grid-column: 1/4 !important;
  grid-row: 1/4 !important;
  grid-template-columns: 1fr 99fr 1fr;
  padding: 1em;
  overflow-y: hidden;
  background: #fff;
  box-shadow: 0 0 0.625em #d9d9d9;
}

.swal2-popup.swal2-toast > * {
  grid-column: 2;
}

.swal2-popup.swal2-toast .swal2-title {
  margin: 1em;
  padding: 0;
  font-size: 1em;
  text-align: initial;
}

.swal2-popup.swal2-toast .swal2-loading {
  justify-content: center;
}

.swal2-popup.swal2-toast .swal2-input {
  height: 2em;
  margin: 0.5em;
  font-size: 1em;
}

.swal2-popup.swal2-toast .swal2-validation-message {
  font-size: 1em;
}

.swal2-popup.swal2-toast .swal2-footer {
  margin: 0.5em 0 0;
  padding: 0.5em 0 0;
  font-size: 0.8em;
}

.swal2-popup.swal2-toast .swal2-close {
  grid-column: 3/3;
  grid-row: 1/99;
  align-self: center;
  width: 0.8em;
  height: 0.8em;
  margin: 0;
  font-size: 2em;
}

.swal2-popup.swal2-toast .swal2-html-container {
  margin: 1em;
  padding: 0;
  font-size: 1em;
  text-align: initial;
}

.swal2-popup.swal2-toast .swal2-html-container:empty {
  padding: 0;
}

.swal2-popup.swal2-toast .swal2-loader {
  grid-column: 1;
  grid-row: 1/99;
  align-self: center;
  width: 2em;
  height: 2em;
  margin: 0.25em;
}

.swal2-popup.swal2-toast .swal2-icon {
  grid-column: 1;
  grid-row: 1/99;
  align-self: center;
  width: 2em;
  min-width: 2em;
  height: 2em;
  margin: 0 0.5em 0 0;
}

.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
  display: flex;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  top: 0.875em;
  width: 1.375em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
  left: 0.3125em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
  right: 0.3125em;
}

.swal2-popup.swal2-toast .swal2-actions {
  justify-content: flex-start;
  height: auto;
  margin: 0;
  margin-top: 0.3125em;
  padding: 0;
}

.swal2-popup.swal2-toast .swal2-styled {
  margin: 0.25em 0.5em;
  padding: 0.4em 0.6em;
  font-size: 1em;
}

.swal2-popup.swal2-toast .swal2-styled:focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(100, 150, 200, 0.5);
}

.swal2-popup.swal2-toast .swal2-success {
  border-color: #a5dc86;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line] {
  position: absolute;
  width: 1.6em;
  height: 3em;
  transform: rotate(45deg);
  border-radius: 50%;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left] {
  top: -0.8em;
  left: -0.5em;
  transform: rotate(-45deg);
  transform-origin: 2em 2em;
  border-radius: 4em 0 0 4em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right] {
  top: -0.25em;
  left: 0.9375em;
  transform-origin: 0 1.5em;
  border-radius: 0 4em 4em 0;
}

.swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}

.swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
  top: 0;
  left: 0.4375em;
  width: 0.4375em;
  height: 2.6875em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line] {
  height: 0.3125em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip] {
  top: 1.125em;
  left: 0.1875em;
  width: 0.75em;
}

.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long] {
  top: 0.9375em;
  right: 0.1875em;
  width: 1.375em;
}

.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip {
  -webkit-animation: swal2-toast-animate-success-line-tip 0.75s;
  animation: swal2-toast-animate-success-line-tip 0.75s;
}

.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long {
  -webkit-animation: swal2-toast-animate-success-line-long 0.75s;
  animation: swal2-toast-animate-success-line-long 0.75s;
}

.swal2-popup.swal2-toast.swal2-show {
  -webkit-animation: swal2-toast-show 0.5s;
  animation: swal2-toast-show 0.5s;
}

.swal2-popup.swal2-toast.swal2-hide {
  -webkit-animation: swal2-toast-hide 0.1s forwards;
  animation: swal2-toast-hide 0.1s forwards;
}

.swal2-container {
  display: grid;
  position: fixed;
  z-index: 101160;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  grid-template-areas: "top-start     top            top-end" "center-start  center         center-end" "bottom-start  bottom-center  bottom-end" "gap gap gap";
  grid-template-rows: auto auto auto 0.625em;
  height: 100%;
  padding: 0.625em 0.625em 0;
  overflow-x: hidden;
  transition: background-color 0.1s;
  -webkit-overflow-scrolling: touch;
}

.swal2-container::after {
  content: "";
  grid-column: 1/4;
  grid-row: 4;
  height: 0.625em;
}

.swal2-container.swal2-backdrop-show,
.swal2-container.swal2-noanimation {
  background: rgba(0, 0, 0, 0.4);
}

.swal2-container.swal2-backdrop-hide {
  background: transparent !important;
}

.swal2-container.swal2-top-start,
.swal2-container.swal2-center-start,
.swal2-container.swal2-bottom-start {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.swal2-container.swal2-top,
.swal2-container.swal2-center,
.swal2-container.swal2-bottom {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.swal2-container.swal2-top-end,
.swal2-container.swal2-center-end,
.swal2-container.swal2-bottom-end {
  grid-template-columns: auto auto minmax(0, 1fr);
}

.swal2-container.swal2-top-start > .swal2-popup {
  align-self: start;
}

.swal2-container.swal2-top > .swal2-popup {
  grid-column: 2;
  align-self: start;
  justify-self: center;
}

.swal2-container.swal2-top-end > .swal2-popup,
.swal2-container.swal2-top-right > .swal2-popup {
  grid-column: 3;
  align-self: start;
  justify-self: end;
}

.swal2-container.swal2-center-start > .swal2-popup,
.swal2-container.swal2-center-left > .swal2-popup {
  grid-row: 2;
  align-self: center;
}

.swal2-container.swal2-center > .swal2-popup {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: center;
}

.swal2-container.swal2-center-end > .swal2-popup,
.swal2-container.swal2-center-right > .swal2-popup {
  grid-column: 3;
  grid-row: 2;
  align-self: center;
  justify-self: end;
}

.swal2-container.swal2-bottom-start > .swal2-popup,
.swal2-container.swal2-bottom-left > .swal2-popup {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
}

.swal2-container.swal2-bottom > .swal2-popup {
  grid-column: 2;
  grid-row: 3;
  justify-self: center;
  align-self: end;
}

.swal2-container.swal2-bottom-end > .swal2-popup,
.swal2-container.swal2-bottom-right > .swal2-popup {
  grid-column: 3;
  grid-row: 3;
  align-self: end;
  justify-self: end;
}

.swal2-container.swal2-grow-row > .swal2-popup,
.swal2-container.swal2-grow-fullscreen > .swal2-popup {
  grid-column: 1/4;
  width: 100%;
}

.swal2-container.swal2-grow-column > .swal2-popup,
.swal2-container.swal2-grow-fullscreen > .swal2-popup {
  grid-row: 1/4;
  align-self: stretch;
}

.swal2-container.swal2-no-transition {
  transition: none !important;
}

.swal2-popup {
  display: none;
  position: relative;
  box-sizing: border-box;
  width: 32em;
  max-width: 100%;
  padding: 0 0 1.25em;
  border: none;
  border-radius: 5px;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
}

.swal2-popup:focus {
  outline: none;
}

.swal2-popup.swal2-loading {
  overflow-y: hidden;
}

.swal2-title {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: 0.8em 1em 0;
  color: #595959;
  font-size: 1.875em;
  font-weight: 600;
  text-align: center;
  text-transform: none;
  word-wrap: break-word;
}

.swal2-actions {
  display: flex;
  z-index: 1;
  box-sizing: border-box;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 1.25em auto 0;
  padding: 0;
}

.swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
  opacity: 0.4;
}

.swal2-actions:not(.swal2-loading) .swal2-styled:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

.swal2-actions:not(.swal2-loading) .swal2-styled:active {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.swal2-loader {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.2em;
  height: 2.2em;
  margin: 0 1.875em;
  -webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  border-width: 0.25em;
  border-style: solid;
  border-radius: 100%;
  border-color: #2778c4 transparent #2778c4 transparent;
}

.swal2-styled {
  margin: 0.3125em;
  padding: 0.625em 1.1em;
  transition: box-shadow 0.1s;
  box-shadow: 0 0 0 3px transparent;
  font-weight: 500;
}

.swal2-styled:not([disabled]) {
  cursor: pointer;
}

.swal2-styled.swal2-confirm {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #7367f0;
  color: #fff;
  font-size: 1em;
}

.swal2-styled.swal2-confirm:focus {
  box-shadow: 0 0 0 3px rgba(115, 103, 240, 0.5);
}

.swal2-styled.swal2-deny {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #ea5455;
  color: #fff;
  font-size: 1em;
}

.swal2-styled.swal2-deny:focus {
  box-shadow: 0 0 0 3px rgba(234, 84, 85, 0.5);
}

.swal2-styled.swal2-cancel {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #6e7d88;
  color: #fff;
  font-size: 1em;
}

.swal2-styled.swal2-cancel:focus {
  box-shadow: 0 0 0 3px rgba(110, 125, 136, 0.5);
}

.swal2-styled.swal2-default-outline:focus {
  box-shadow: 0 0 0 3px rgba(100, 150, 200, 0.5);
}

.swal2-styled:focus {
  outline: none;
}

.swal2-styled::-moz-focus-inner {
  border: 0;
}

.swal2-footer {
  justify-content: center;
  margin: 1em 0 0;
  padding: 1em 1em 0;
  border-top: 1px solid #eee;
  color: #545454;
  font-size: 1em;
}

.swal2-timer-progress-bar-container {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  grid-column: auto !important;
  height: 0.25em;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.swal2-timer-progress-bar {
  width: 100%;
  height: 0.25em;
  background: rgba(0, 0, 0, 0.2);
}

.swal2-image {
  max-width: 100%;
  margin: 2em auto 1em;
}

.swal2-close {
  z-index: 2;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: -1.2em;
  padding: 0;
  overflow: hidden;
  transition: color 0.1s, box-shadow 0.1s;
  border: none;
  border-radius: 5px;
  background: transparent;
  color: #ccc;
  font-family: serif;
  font-family: monospace;
  font-size: 2.5em;
  cursor: pointer;
  justify-self: end;
}

.swal2-close:hover {
  transform: none;
  background: transparent;
  color: #f27474;
}

.swal2-close:focus {
  outline: none;
  box-shadow: inset 0 0 0 3px rgba(100, 150, 200, 0.5);
}

.swal2-close::-moz-focus-inner {
  border: 0;
}

.swal2-html-container {
  z-index: 1;
  justify-content: center;
  margin: 0;
  padding: 1em 1.6em 0.3em;
  color: #545454;
  font-size: 1.125em;
  font-weight: normal;
  line-height: normal;
  text-align: center;
  word-wrap: break-word;
  word-break: break-word;
}

.swal2-input,
.swal2-file,
.swal2-textarea,
.swal2-select,
.swal2-radio,
.swal2-checkbox {
  margin: 1em 2em 0;
}

.swal2-input,
.swal2-file,
.swal2-textarea {
  box-sizing: border-box;
  width: auto;
  transition: border-color 0.1s, box-shadow 0.1s;
  border: 1px solid #d9d9d9;
  border-radius: 0.1875em;
  background: inherit;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px transparent;
  color: inherit;
  font-size: 1.125em;
}

.swal2-input.swal2-inputerror,
.swal2-file.swal2-inputerror,
.swal2-textarea.swal2-inputerror {
  border-color: #f27474 !important;
  box-shadow: 0 0 2px #f27474 !important;
}

.swal2-input:focus,
.swal2-file:focus,
.swal2-textarea:focus {
  border: 1px solid #b4dbed;
  outline: none;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06), 0 0 0 3px rgba(100, 150, 200, 0.5);
}

.swal2-input::-moz-placeholder,
.swal2-file::-moz-placeholder,
.swal2-textarea::-moz-placeholder {
  color: #ccc;
}

.swal2-input:-ms-input-placeholder,
.swal2-file:-ms-input-placeholder,
.swal2-textarea:-ms-input-placeholder {
  color: #ccc;
}

.swal2-input::-moz-placeholder, .swal2-file::-moz-placeholder, .swal2-textarea::-moz-placeholder {
  color: #ccc;
}

.swal2-input:-ms-input-placeholder, .swal2-file:-ms-input-placeholder, .swal2-textarea:-ms-input-placeholder {
  color: #ccc;
}

.swal2-input::placeholder,
.swal2-file::placeholder,
.swal2-textarea::placeholder {
  color: #ccc;
}

.swal2-range {
  margin: 1em 2em 0;
  background: #fff;
}

.swal2-range input {
  width: 80%;
}

.swal2-range output {
  width: 20%;
  color: inherit;
  font-weight: 600;
  text-align: center;
}

.swal2-range input,
.swal2-range output {
  height: 2.625em;
  padding: 0;
  font-size: 1.125em;
  line-height: 2.625em;
}

.swal2-input {
  height: 2.625em;
  padding: 0 0.75em;
}

.swal2-input[type=number] {
  max-width: 10em;
}

.swal2-file {
  width: 75%;
  margin-right: auto;
  margin-left: auto;
  background: inherit;
  font-size: 1.125em;
}

.swal2-textarea {
  height: 6.75em;
  padding: 0.75em;
}

.swal2-select {
  min-width: 50%;
  max-width: 100%;
  padding: 0.375em 0.625em;
  background: inherit;
  color: inherit;
  font-size: 1.125em;
}

.swal2-radio,
.swal2-checkbox {
  align-items: center;
  justify-content: center;
  background: #fff;
  color: inherit;
}

.swal2-radio label,
.swal2-checkbox label {
  margin: 0 0.6em;
  font-size: 1.125em;
}

.swal2-radio input,
.swal2-checkbox input {
  flex-shrink: 0;
  margin: 0 0.4em;
}

.swal2-input-label {
  display: flex;
  justify-content: center;
  margin: 1em auto 0;
}

.swal2-validation-message {
  align-items: center;
  justify-content: center;
  margin: 1em 0 0;
  padding: 0.625em;
  overflow: hidden;
  background: #f0f0f0;
  color: #666666;
  font-size: 1em;
  font-weight: 300;
}

.swal2-validation-message::before {
  content: "!";
  display: inline-block;
  width: 1.5em;
  min-width: 1.5em;
  height: 1.5em;
  margin: 0 0.625em;
  border-radius: 50%;
  background-color: #f27474;
  color: #fff;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
}

.swal2-icon {
  position: relative;
  box-sizing: content-box;
  justify-content: center;
  width: 5em;
  height: 5em;
  margin: 2.5em auto 0.6em;
  border: 0.25em solid transparent;
  border-radius: 50%;
  border-color: #000;
  font-family: inherit;
  line-height: 5em;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.swal2-icon .swal2-icon-content {
  display: flex;
  align-items: center;
  font-size: 3.75em;
}

.swal2-icon.swal2-error {
  border-color: #f27474;
  color: #f27474;
}

.swal2-icon.swal2-error .swal2-x-mark {
  position: relative;
  flex-grow: 1;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  display: block;
  position: absolute;
  top: 2.3125em;
  width: 2.9375em;
  height: 0.3125em;
  border-radius: 0.125em;
  background-color: #f27474;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
  left: 1.0625em;
  transform: rotate(45deg);
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
  right: 1em;
  transform: rotate(-45deg);
}

.swal2-icon.swal2-error.swal2-icon-show {
  -webkit-animation: swal2-animate-error-icon 0.5s;
  animation: swal2-animate-error-icon 0.5s;
}

.swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark {
  -webkit-animation: swal2-animate-error-x-mark 0.5s;
  animation: swal2-animate-error-x-mark 0.5s;
}

.swal2-icon.swal2-warning {
  border-color: #facea8;
  color: #f8bb86;
}

.swal2-icon.swal2-info {
  border-color: #9de0f6;
  color: #3fc3ee;
}

.swal2-icon.swal2-question {
  border-color: #c9dae1;
  color: #87adbd;
}

.swal2-icon.swal2-success {
  border-color: #a5dc86;
  color: #a5dc86;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line] {
  position: absolute;
  width: 3.75em;
  height: 7.5em;
  transform: rotate(45deg);
  border-radius: 50%;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left] {
  top: -0.4375em;
  left: -2.0635em;
  transform: rotate(-45deg);
  transform-origin: 3.75em 3.75em;
  border-radius: 7.5em 0 0 7.5em;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right] {
  top: -0.6875em;
  left: 1.875em;
  transform: rotate(-45deg);
  transform-origin: 0 3.75em;
  border-radius: 0 7.5em 7.5em 0;
}

.swal2-icon.swal2-success .swal2-success-ring {
  position: absolute;
  z-index: 2;
  top: -0.25em;
  left: -0.25em;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  border: 0.25em solid rgba(165, 220, 134, 0.3);
  border-radius: 50%;
}

.swal2-icon.swal2-success .swal2-success-fix {
  position: absolute;
  z-index: 1;
  top: 0.5em;
  left: 1.625em;
  width: 0.4375em;
  height: 5.625em;
  transform: rotate(-45deg);
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
  display: block;
  position: absolute;
  z-index: 2;
  height: 0.3125em;
  border-radius: 0.125em;
  background-color: #a5dc86;
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
  top: 2.875em;
  left: 0.8125em;
  width: 1.5625em;
  transform: rotate(45deg);
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=long] {
  top: 2.375em;
  right: 0.5em;
  width: 2.9375em;
  transform: rotate(-45deg);
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip {
  -webkit-animation: swal2-animate-success-line-tip 0.75s;
  animation: swal2-animate-success-line-tip 0.75s;
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long {
  -webkit-animation: swal2-animate-success-line-long 0.75s;
  animation: swal2-animate-success-line-long 0.75s;
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right {
  -webkit-animation: swal2-rotate-success-circular-line 4.25s ease-in;
  animation: swal2-rotate-success-circular-line 4.25s ease-in;
}

.swal2-progress-steps {
  flex-wrap: wrap;
  align-items: center;
  max-width: 100%;
  margin: 1.25em auto;
  padding: 0;
  background: inherit;
  font-weight: 600;
}

.swal2-progress-steps li {
  display: inline-block;
  position: relative;
}

.swal2-progress-steps .swal2-progress-step {
  z-index: 20;
  flex-shrink: 0;
  width: 2em;
  height: 2em;
  border-radius: 2em;
  background: #2778c4;
  color: #fff;
  line-height: 2em;
  text-align: center;
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
  background: #2778c4;
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step {
  background: #add8e6;
  color: #fff;
}

.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step-line {
  background: #add8e6;
}

.swal2-progress-steps .swal2-progress-step-line {
  z-index: 10;
  flex-shrink: 0;
  width: 2.5em;
  height: 0.4em;
  margin: 0 -1px;
  background: #2778c4;
}

[class^=swal2] {
  -webkit-tap-highlight-color: transparent;
}

.swal2-show {
  -webkit-animation: swal2-show 0.3s;
  animation: swal2-show 0.3s;
}

.swal2-hide {
  -webkit-animation: swal2-hide 0.15s forwards;
  animation: swal2-hide 0.15s forwards;
}

.swal2-noanimation {
  transition: none;
}

.swal2-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.swal2-rtl .swal2-close {
  margin-right: initial;
  margin-left: 0;
}

.swal2-rtl .swal2-timer-progress-bar {
  right: 0;
  left: auto;
}

@-webkit-keyframes swal2-toast-show {
  0% {
    transform: translateY(-0.625em) rotateZ(2deg);
  }
  33% {
    transform: translateY(0) rotateZ(-2deg);
  }
  66% {
    transform: translateY(0.3125em) rotateZ(2deg);
  }
  100% {
    transform: translateY(0) rotateZ(0deg);
  }
}
@keyframes swal2-toast-show {
  0% {
    transform: translateY(-0.625em) rotateZ(2deg);
  }
  33% {
    transform: translateY(0) rotateZ(-2deg);
  }
  66% {
    transform: translateY(0.3125em) rotateZ(2deg);
  }
  100% {
    transform: translateY(0) rotateZ(0deg);
  }
}
@-webkit-keyframes swal2-toast-hide {
  100% {
    transform: rotateZ(1deg);
    opacity: 0;
  }
}
@keyframes swal2-toast-hide {
  100% {
    transform: rotateZ(1deg);
    opacity: 0;
  }
}
@-webkit-keyframes swal2-toast-animate-success-line-tip {
  0% {
    top: 0.5625em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 0.125em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 0.625em;
    left: -0.25em;
    width: 1.625em;
  }
  84% {
    top: 1.0625em;
    left: 0.75em;
    width: 0.5em;
  }
  100% {
    top: 1.125em;
    left: 0.1875em;
    width: 0.75em;
  }
}
@keyframes swal2-toast-animate-success-line-tip {
  0% {
    top: 0.5625em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 0.125em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 0.625em;
    left: -0.25em;
    width: 1.625em;
  }
  84% {
    top: 1.0625em;
    left: 0.75em;
    width: 0.5em;
  }
  100% {
    top: 1.125em;
    left: 0.1875em;
    width: 0.75em;
  }
}
@-webkit-keyframes swal2-toast-animate-success-line-long {
  0% {
    top: 1.625em;
    right: 1.375em;
    width: 0;
  }
  65% {
    top: 1.25em;
    right: 0.9375em;
    width: 0;
  }
  84% {
    top: 0.9375em;
    right: 0;
    width: 1.125em;
  }
  100% {
    top: 0.9375em;
    right: 0.1875em;
    width: 1.375em;
  }
}
@keyframes swal2-toast-animate-success-line-long {
  0% {
    top: 1.625em;
    right: 1.375em;
    width: 0;
  }
  65% {
    top: 1.25em;
    right: 0.9375em;
    width: 0;
  }
  84% {
    top: 0.9375em;
    right: 0;
    width: 1.125em;
  }
  100% {
    top: 0.9375em;
    right: 0.1875em;
    width: 1.375em;
  }
}
@-webkit-keyframes swal2-show {
  0% {
    transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes swal2-show {
  0% {
    transform: scale(0.7);
  }
  45% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes swal2-hide {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}
@keyframes swal2-hide {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.5);
    opacity: 0;
  }
}
@-webkit-keyframes swal2-animate-success-line-tip {
  0% {
    top: 1.1875em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 1.0625em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 2.1875em;
    left: -0.375em;
    width: 3.125em;
  }
  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em;
  }
  100% {
    top: 2.8125em;
    left: 0.8125em;
    width: 1.5625em;
  }
}
@keyframes swal2-animate-success-line-tip {
  0% {
    top: 1.1875em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 1.0625em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 2.1875em;
    left: -0.375em;
    width: 3.125em;
  }
  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em;
  }
  100% {
    top: 2.8125em;
    left: 0.8125em;
    width: 1.5625em;
  }
}
@-webkit-keyframes swal2-animate-success-line-long {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em;
  }
  100% {
    top: 2.375em;
    right: 0.5em;
    width: 2.9375em;
  }
}
@keyframes swal2-animate-success-line-long {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em;
  }
  100% {
    top: 2.375em;
    right: 0.5em;
    width: 2.9375em;
  }
}
@-webkit-keyframes swal2-rotate-success-circular-line {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}
@keyframes swal2-rotate-success-circular-line {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}
@-webkit-keyframes swal2-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }
  50% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }
  80% {
    margin-top: -0.375em;
    transform: scale(1.15);
  }
  100% {
    margin-top: 0;
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes swal2-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }
  50% {
    margin-top: 1.625em;
    transform: scale(0.4);
    opacity: 0;
  }
  80% {
    margin-top: -0.375em;
    transform: scale(1.15);
  }
  100% {
    margin-top: 0;
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes swal2-animate-error-icon {
  0% {
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}
@keyframes swal2-animate-error-icon {
  0% {
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}
@-webkit-keyframes swal2-rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes swal2-rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
  overflow: hidden;
}

body.swal2-height-auto {
  height: auto !important;
}

body.swal2-no-backdrop .swal2-container {
  background-color: transparent !important;
  pointer-events: none;
}

body.swal2-no-backdrop .swal2-container .swal2-popup {
  pointer-events: all;
}

body.swal2-no-backdrop .swal2-container .swal2-modal {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
body.swal2-toast-shown .swal2-container {
  box-sizing: border-box;
  width: 360px;
  max-width: 100%;
  background-color: transparent;
}

body.swal2-toast-shown .swal2-container.swal2-top {
  top: 0;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-top-end,
body.swal2-toast-shown .swal2-container.swal2-top-right {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
}

body.swal2-toast-shown .swal2-container.swal2-top-start,
body.swal2-toast-shown .swal2-container.swal2-top-left {
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
}

body.swal2-toast-shown .swal2-container.swal2-center-start,
body.swal2-toast-shown .swal2-container.swal2-center-left {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  transform: translateY(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-center {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -50%);
}

body.swal2-toast-shown .swal2-container.swal2-center-end,
body.swal2-toast-shown .swal2-container.swal2-center-right {
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-bottom-start,
body.swal2-toast-shown .swal2-container.swal2-bottom-left {
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
}

body.swal2-toast-shown .swal2-container.swal2-bottom {
  top: auto;
  right: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-bottom-end,
body.swal2-toast-shown .swal2-container.swal2-bottom-right {
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
}

.swal2-container.swal2-backdrop-show {
  background: rgba(0, 0, 0, 0.9) !important;
}

.swal2-modal {
  border-radius: 0 !important;
  border-top: 3px solid #00aeff !important;
}

html .swal2-popup {
  width: 38rem !important;
}
html .swal2-popup .swal2-title {
  margin-top: 1rem;
  line-height: 1.2;
  color: #00aeff;
  font-size: 3rem;
}
html .swal2-popup .swal2-html-container,
html .swal2-popup .swal2-content {
  font-size: 1.6rem;
  margin-top: 1rem;
  color: #000000;
  line-height: 1.6;
}
html .swal2-popup .swal2-actions {
  margin-top: 2rem;
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
html .swal2-popup .swal2-actions button {
  width: calc(50% - 2rem);
  margin: 0 0.5rem;
  font-size: 1.6rem;
  border-radius: 0 !important;
}
html .swal2-popup .swal2-actions .swal2-confirm {
  background: #00aeff !important;
}
html .swal2-popup .swal2-actions .swal2-cancel {
  background: #000000 !important;
}
html .swal2-popup .swal2-styled:focus {
  box-shadow: 0px 1px 8px 0 rgba(0, 0, 0, 0.3);
}

.steps {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  background: #e4e4e4;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  z-index: 9;
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  display: none;
}
.steps .js-total {
  font-family: Arial;
  font-weight: bold;
}
.steps h4,
.steps p {
  margin: 0;
}
.steps__wrap {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  padding-right: 2rem;
}
.steps__wrap__actions .btn, .steps__wrap__actions .contactModal__wrap__content [type=submit], .contactModal__wrap__content .steps__wrap__actions [type=submit],
.steps__wrap__actions .contactModal__wrap__content .action,
.contactModal__wrap__content .steps__wrap__actions .action,
.steps__wrap__actions .orderModal__wrap__content [type=submit],
.orderModal__wrap__content .steps__wrap__actions [type=submit],
.steps__wrap__actions .orderModal__wrap__content .action,
.orderModal__wrap__content .steps__wrap__actions .action,
.steps__wrap__actions .summaryModal__wrap__content [type=submit],
.summaryModal__wrap__content .steps__wrap__actions [type=submit],
.steps__wrap__actions .summaryModal__wrap__content .action,
.summaryModal__wrap__content .steps__wrap__actions .action,
.steps__wrap__actions .guestModal__wrap__content [type=submit],
.guestModal__wrap__content .steps__wrap__actions [type=submit],
.steps__wrap__actions .guestModal__wrap__content .action,
.guestModal__wrap__content .steps__wrap__actions .action,
.steps__wrap__actions .loginModal__wrap__content [type=submit],
.loginModal__wrap__content .steps__wrap__actions [type=submit],
.steps__wrap__actions .loginModal__wrap__content .action,
.loginModal__wrap__content .steps__wrap__actions .action {
  align-items: center;
  align-content: center;
  justify-content: center;
}
.steps__wrap__actions .btn svg, .steps__wrap__actions .contactModal__wrap__content [type=submit] svg, .contactModal__wrap__content .steps__wrap__actions [type=submit] svg,
.steps__wrap__actions .contactModal__wrap__content .action svg,
.contactModal__wrap__content .steps__wrap__actions .action svg,
.steps__wrap__actions .orderModal__wrap__content [type=submit] svg,
.orderModal__wrap__content .steps__wrap__actions [type=submit] svg,
.steps__wrap__actions .orderModal__wrap__content .action svg,
.orderModal__wrap__content .steps__wrap__actions .action svg,
.steps__wrap__actions .summaryModal__wrap__content [type=submit] svg,
.summaryModal__wrap__content .steps__wrap__actions [type=submit] svg,
.steps__wrap__actions .summaryModal__wrap__content .action svg,
.summaryModal__wrap__content .steps__wrap__actions .action svg,
.steps__wrap__actions .guestModal__wrap__content [type=submit] svg,
.guestModal__wrap__content .steps__wrap__actions [type=submit] svg,
.steps__wrap__actions .guestModal__wrap__content .action svg,
.guestModal__wrap__content .steps__wrap__actions .action svg,
.steps__wrap__actions .loginModal__wrap__content [type=submit] svg,
.loginModal__wrap__content .steps__wrap__actions [type=submit] svg,
.steps__wrap__actions .loginModal__wrap__content .action svg,
.loginModal__wrap__content .steps__wrap__actions .action svg {
  position: relative;
  top: 0px;
}
.steps__wrap__actions .btn--blue svg, .steps__wrap__actions .contactModal__wrap__content [type=submit] svg, .contactModal__wrap__content .steps__wrap__actions [type=submit] svg,
.steps__wrap__actions .contactModal__wrap__content .action svg,
.contactModal__wrap__content .steps__wrap__actions .action svg,
.steps__wrap__actions .orderModal__wrap__content [type=submit] svg,
.orderModal__wrap__content .steps__wrap__actions [type=submit] svg,
.steps__wrap__actions .orderModal__wrap__content .action svg,
.orderModal__wrap__content .steps__wrap__actions .action svg,
.steps__wrap__actions .summaryModal__wrap__content [type=submit] svg,
.summaryModal__wrap__content .steps__wrap__actions [type=submit] svg,
.steps__wrap__actions .summaryModal__wrap__content .action svg,
.summaryModal__wrap__content .steps__wrap__actions .action svg,
.steps__wrap__actions .guestModal__wrap__content [type=submit] svg,
.guestModal__wrap__content .steps__wrap__actions [type=submit] svg,
.steps__wrap__actions .guestModal__wrap__content .action svg,
.guestModal__wrap__content .steps__wrap__actions .action svg,
.steps__wrap__actions .loginModal__wrap__content [type=submit] svg,
.loginModal__wrap__content .steps__wrap__actions [type=submit] svg,
.steps__wrap__actions .loginModal__wrap__content .action svg,
.loginModal__wrap__content .steps__wrap__actions .action svg {
  margin-left: 0.4rem;
}
.steps__wrap__actions .btn--blue svg path, .steps__wrap__actions .contactModal__wrap__content [type=submit] svg path, .contactModal__wrap__content .steps__wrap__actions [type=submit] svg path,
.steps__wrap__actions .contactModal__wrap__content .action svg path,
.contactModal__wrap__content .steps__wrap__actions .action svg path,
.steps__wrap__actions .orderModal__wrap__content [type=submit] svg path,
.orderModal__wrap__content .steps__wrap__actions [type=submit] svg path,
.steps__wrap__actions .orderModal__wrap__content .action svg path,
.orderModal__wrap__content .steps__wrap__actions .action svg path,
.steps__wrap__actions .summaryModal__wrap__content [type=submit] svg path,
.summaryModal__wrap__content .steps__wrap__actions [type=submit] svg path,
.steps__wrap__actions .summaryModal__wrap__content .action svg path,
.summaryModal__wrap__content .steps__wrap__actions .action svg path,
.steps__wrap__actions .guestModal__wrap__content [type=submit] svg path,
.guestModal__wrap__content .steps__wrap__actions [type=submit] svg path,
.steps__wrap__actions .guestModal__wrap__content .action svg path,
.guestModal__wrap__content .steps__wrap__actions .action svg path,
.steps__wrap__actions .loginModal__wrap__content [type=submit] svg path,
.loginModal__wrap__content .steps__wrap__actions [type=submit] svg path,
.steps__wrap__actions .loginModal__wrap__content .action svg path,
.loginModal__wrap__content .steps__wrap__actions .action svg path {
  fill: #ffffff;
}
.steps__wrap__actions .btn--white svg {
  margin-right: 0.4rem;
}
.steps__wrap__summary {
  position: relative;
  background: #25b733;
  padding: 2rem 1rem;
  max-width: 44rem;
  width: 100%;
}
.steps__wrap__summary__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}
.steps__wrap__summary__actions p {
  margin: 0;
}
.steps__wrap__summary__actions svg {
  margin-left: 0.5rem;
}
.steps__wrap__summary__amount {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}
.steps__wrap__summary p {
  font-size: 1.4rem !important;
}
.steps__wrap__summary:after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  right: 99%;
  width: 100vw;
  background: #25b733;
}
.steps__wrap__summary__price {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
.steps__wrap__summary__price__amount {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.steps__wrap__summary__price__amount h4 {
  font-family: Arial;
  font-weight: bold;
}
.steps__wrap__summary__price__actions {
  display: flex;
  flex-wrap: wrap;
}
.steps__wrap__summary__total {
  margin-top: 1rem;
  padding-top: 1rem;
  position: relative;
}
.steps__wrap__summary__total:before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
  height: 1px;
}
.steps__wrap__summary__total p:last-of-type {
  font-family: Arial;
  font-weight: bold;
}

.buildSummary {
  padding-top: 4rem;
  margin-bottom: 4rem;
}
.buildSummary__wrap {
  margin: 0 auto;
  max-width: 1024px;
}
.buildSummary__wrap__header h1 {
  color: #00aeff;
}
.buildSummary__wrap__list__item h3 {
  color: #000000;
}
.buildSummary__wrap__list__item__grid__item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  margin-bottom: 2rem;
}
.buildSummary__wrap__list__item__grid__item:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  top: 100%;
  height: 1px;
  background: #e4e4e4;
}
.buildSummary__wrap__list__item__grid__item:last-of-type:after {
  display: none;
}
.buildSummary__wrap__list__item__grid__item__image {
  width: 20rem;
}
.buildSummary__wrap__list__item__grid__item__copy {
  padding-left: 2rem;
  width: calc(100% - 20rem);
}

.tingle-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999999;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  opacity: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.tingle-modal * {
  outline: none;
}
.tingle-modal .embed-container {
  box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
}

.tingle-modal__closeIcon {
  position: fixed;
  top: 20px;
  right: 28px;
  z-index: 999;
  transition: all 333ms ease;
}
.tingle-modal__closeIcon path {
  fill: #00aeff;
}
.tingle-modal__closeIcon:hover {
  transform: scale(1.075);
}

.tingle-modal--confirm .tingle-modal-box {
  text-align: center;
}

.tingle-modal--noOverlayClose {
  cursor: default;
}

.tingle-modal--noClose .tingle-modal__close {
  display: none;
}

.tingle-modal__close {
  position: fixed;
  top: 10px;
  right: 28px;
  z-index: 999;
  padding: 0;
  width: 5rem;
  height: 5rem;
  border: 0;
  background-color: transparent;
  color: #f7f7f7;
  font-size: 0;
  font-family: monospace;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease;
}

.tingle-modal__closeLabel {
  display: none;
}

.tingle-modal__close:hover {
  color: #ffffff;
}

.tingle-modal-box {
  position: relative;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
  max-width: calc(100% - 4rem);
  opacity: 1;
  cursor: auto;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scale(0.8);
  width: 100%;
}

.tingle-modal-box__footer {
  padding: 1.5rem 2rem;
  width: auto;
  background-color: #f7f7f7;
  cursor: auto;
  text-align: right;
}
.tingle-modal-box__footer .button {
  margin-bottom: 0;
}

.tingle-modal-box__footer::after {
  display: table;
  clear: both;
  content: "";
}

.tingle-modal-box__footer--sticky {
  position: fixed;
  bottom: -200px;
  z-index: 9991;
  opacity: 1;
  transition: bottom 0.3s ease-in-out 0.3s;
}

.tingle-enabled {
  overflow: hidden;
  height: 100%;
}
.tingle-modal--visible {
  visibility: visible;
  opacity: 1;
}
.tingle-modal--visible .tingle-modal-box {
  transform: scale(1);
}
.tingle-modal--visible .tingle-modal-box__footer {
  bottom: 0;
}

.tingle-modal--overflow {
  overflow-y: scroll;
  padding-top: 8vh;
}

.tingle-btn {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 1rem 2rem;
  border: 0;
  background-color: #a6a6a6;
  box-shadow: none;
  color: #ffffff;
  vertical-align: middle;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
  line-height: normal;
  cursor: pointer;
  transition: background-color 0.4s ease;
}

.tingle-btn--primary {
  background-color: #00aeff;
}

.tingle-btn--danger {
  background-color: #000000;
}

.tingle-btn--default {
  background-color: #00aeff;
}

.tingle-btn--pull-left {
  float: left;
}

.tingle-btn--pull-right {
  float: right;
}

.closeIcon svg {
  width: 6rem;
  height: 6rem;
}
.closeIcon svg path {
  fill: #00aeff;
}

.shareModal .tingle-modal-box .tingle-modal-box {
  width: calc(100% - 4rem);
  max-width: 80rem;
}
.shareModal__content {
  margin: 0 auto;
  width: 100%;
  padding: 3rem 6rem;
  background: #1c1c1c;
  border-radius: 0rem;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.5);
  max-width: 700px;
}
.shareModal__content p {
  color: #ffffff;
}
.shareModal__content__heading {
  margin-bottom: 2rem;
}
.shareModal__content__heading h4 {
  color: #00aeff;
  text-align: center;
}
.shareModal__content__heading p {
  font-size: 1.4rem !important;
}
.shareModal__content__input {
  border: 1px solid #ffffff;
  border-radius: 0rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 1rem;
  margin-bottom: 4rem;
}
.shareModal__content__input input {
  width: calc(100% - 28px);
  margin: 0;
  padding: 1rem;
  border: 0;
  background: transparent;
  color: #ffffff;
}
.shareModal__content__input input::-webkit-input-placeholder {
  color: #ffffff !important;
  opacity: 1 !important;
}
.shareModal__content__input input:-moz-placeholder {
  color: #ffffff !important;
  opacity: 1 !important;
}
.shareModal__content__input input::-moz-placeholder {
  color: #ffffff !important;
  opacity: 1 !important;
}
.shareModal__content__input input:-ms-input-placeholder {
  color: #ffffff !important;
  opacity: 1 !important;
}
.shareModal__content__list {
  display: flex;
  flex-wrap: wrap;
}
.shareModal__content__list__item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  margin-bottom: -1px;
  padding: 3rem 0;
}
.shareModal__content__list__item__email {
  color: #ffffff;
  margin: 0;
  padding-left: 2rem;
  font-size: 1.4rem;
}
.shareModal__content__actions {
  text-align: center;
  padding: 3rem 0;
}
.shareModal__content__notice {
  font-size: 1.4rem !important;
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: -1rem;
}
.shareModal__content__context {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 0rem;
  text-align: center;
  width: 28rem;
  cursor: pointer;
  margin: 0 auto;
  background: #00aeff;
}
.shareModal__content__context__icon {
  position: relative;
  width: 3rem;
  border-radius: 100rem;
  background: #ffffff;
}
.shareModal__content__context__icon:after {
  content: "";
  position: relative;
  display: block;
  padding-bottom: 100%;
}
.shareModal__content__context__icon svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.shareModal__content__context__icon path {
  fill: #00aeff;
}
.shareModal__content__context p {
  color: #ffffff;
  margin: 0;
  padding-left: 2rem;
  font-size: 1.4rem;
}

/*------------------------------------------------------------------
Build summary modal 
------------------------------------------------------------------*/
.orderNowModal .tingle-modal-box .tingle-modal-box,
.sendBuildSummaryModal .tingle-modal-box .tingle-modal-box {
  width: calc(100% - 4rem);
  max-width: 80rem;
}
.orderNowModal__content,
.sendBuildSummaryModal__content {
  margin: 0 auto;
  width: 100%;
  padding: 3rem 6rem;
  background: #00aeff;
  border-radius: 0rem;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.5);
  max-width: 700px;
}
.orderNowModal__content__heading,
.sendBuildSummaryModal__content__heading {
  margin-bottom: 2rem;
}
.orderNowModal__content__heading h4,
.sendBuildSummaryModal__content__heading h4 {
  color: #ffffff;
  text-align: center;
}
.orderNowModal__content__heading p,
.sendBuildSummaryModal__content__heading p {
  font-size: 1.4rem !important;
}
.orderNowModal__content__form form,
.sendBuildSummaryModal__content__form form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.orderNowModal__content__form form .inputField,
.sendBuildSummaryModal__content__form form .inputField {
  position: relative;
}
.orderNowModal__content__form form .inputField .select2 .select2-selection__rendered,
.sendBuildSummaryModal__content__form form .inputField .select2 .select2-selection__rendered {
  background: white;
  border: 1px solid #a6a6a6;
  height: 55px !important;
  padding-top: 2.7rem;
  font-size: 1.6rem;
}
.orderNowModal__content__form form .inputField textarea,
.orderNowModal__content__form form .inputField input,
.sendBuildSummaryModal__content__form form .inputField textarea,
.sendBuildSummaryModal__content__form form .inputField input {
  padding: 2rem 1rem 0.1rem 1rem;
}
.orderNowModal__content__form form .inputField label,
.sendBuildSummaryModal__content__form form .inputField label {
  position: absolute;
  top: 0.8rem;
  line-height: 1;
  left: 1rem;
  color: #555c5e;
  font-size: 1.4rem;
  font-weight: bold;
  opacity: 0.4;
  z-index: 999999;
}
.orderNowModal__content__form form .inputField--email,
.orderNowModal__content__form form .inputField--region,
.orderNowModal__content__form form .inputField--phone,
.orderNowModal__content__form form .inputField--company,
.orderNowModal__content__form form .inputField--last-name,
.orderNowModal__content__form form .inputField--first-name,
.sendBuildSummaryModal__content__form form .inputField--email,
.sendBuildSummaryModal__content__form form .inputField--region,
.sendBuildSummaryModal__content__form form .inputField--phone,
.sendBuildSummaryModal__content__form form .inputField--company,
.sendBuildSummaryModal__content__form form .inputField--last-name,
.sendBuildSummaryModal__content__form form .inputField--first-name {
  width: calc(50% - 1rem);
}
.orderNowModal__content__form form .inputField--questions,
.sendBuildSummaryModal__content__form form .inputField--questions {
  width: 100%;
}
.orderNowModal__content__form form .inputField--questions textarea,
.sendBuildSummaryModal__content__form form .inputField--questions textarea {
  resize: none;
}
.orderNowModal__content__form form .inputField--submit,
.sendBuildSummaryModal__content__form form .inputField--submit {
  width: 100%;
  text-align: right;
}

.parsley-errors-list {
  position: absolute;
  list-style: none;
  top: 0.9rem;
  top: -0.4rem;
  right: 0.9rem;
  margin: 0;
}
.parsley-errors-list li {
  color: #000000;
  font-size: 1rem;
  font-weight: bold;
}

.Utemaster\\Site\\CheckoutPage li {
  color: #ed4545 !important;
}

#Form_EditProfileForm fieldset {
  display: flex;
  flex-wrap: wrap;
}
#Form_EditProfileForm #Form_EditProfileForm_Company_Holder,
#Form_EditProfileForm #Form_EditProfileForm_FirstName_Holder {
  width: calc(50% - 1rem);
}
#Form_EditProfileForm #Form_EditProfileForm_Phone_Holder,
#Form_EditProfileForm #Form_EditProfileForm_Surname_Holder {
  width: calc(50% - 1rem);
  margin-left: 2rem;
}
#Form_EditProfileForm #Form_EditProfileForm_Address_Holder {
  width: calc(60% - 1rem);
}
#Form_EditProfileForm #Form_EditProfileForm_City_Holder {
  width: calc(40% - 1rem);
  margin-left: 2rem;
}

.editProfile__wrap {
  position: relative;
  margin: 0 auto 4rem;
  max-width: 1200px;
  padding: 0 3rem;
}
.editProfile__wrap .resetMyPassword {
  position: absolute;
  bottom: -1rem;
  right: 0;
}

.myOrders__wrap {
  position: relative;
  margin: 0 auto 4rem;
  max-width: 1200px;
  padding: 0 3rem;
}

.wishlistTable__wrap {
  position: relative;
  margin: 0 auto 4rem;
  max-width: 1200px;
  padding: 0 3rem;
}
.wishlistTable__wrap__heading {
  margin-top: 4rem;
  border-bottom: 1px solid #d5dadc;
}
.wishlistTable__wrap__item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  border-bottom: 1px solid #d5dadc;
  justify-content: space-between;
}
.wishlistTable__wrap__item:first-of-type {
  border-top: 1px solid #d5dadc;
}
.wishlistTable__wrap__item__image {
  width: 16rem;
}
.wishlistTable__wrap__item__link {
  width: 16rem;
}
.wishlistTable__wrap__item__title {
  width: calc(100% - 36rem);
  padding-right: 3rem;
  padding-left: 3rem;
}
.wishlistTable__wrap__item__remove {
  width: 4rem;
}
.wishlistTable .emptyWishlist {
  margin: 0 auto;
  text-align: center;
  max-width: 55rem;
}

[data-segment=Security] {
  background: #1c1c1c !important;
}
[data-segment=Security] .main-scroll main {
  background: #1c1c1c !important;
  position: relative;
  position: relative;
}
[data-segment=Security] .main-scroll main:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 50%;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(/themes/base/images/login.jpg);
}
[data-segment=Security] .main-scroll main:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 50%;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}
[data-segment=Security] .main-scroll main .container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0;
}
[data-segment=Security] .main-scroll main .container > ul {
  display: none;
}
[data-segment=Security] .main-scroll main .container #LostPasswordForm_lostPasswordForm {
  position: relative;
  z-index: 3;
  padding: 4rem 0;
}
[data-segment=Security] .main-scroll main .container .form-tab {
  width: 50%;
  padding: 8rem 6rem;
}
[data-segment=Security] .main-scroll main .container .form-tab h3 {
  color: #00aeff;
  text-transform: uppercase;
}
[data-segment=Security] .main-scroll main .container .form-tab h3 {
  position: relative;
  z-index: 3;
}
[data-segment=Security] .main-scroll main .container .form-tab form {
  position: relative;
  z-index: 3;
}
[data-segment=Security] .main-scroll main .container .form-tab #MemberLoginForm_LoginForm_Remember_Holder {
  display: flex;
  flex-wrap: wrap;
}
[data-segment=Security] .main-scroll main .container .form-tab #MemberLoginForm_LoginForm_Remember_Holder .checkbox {
  position: relative;
  top: 5px;
}

.miniBanner {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: #3a3a3a;
  margin-bottom: 5rem;
}
.miniBanner__wrap {
  width: 100%;
  padding: 5rem 2rem 3rem;
  margin: 0 auto;
  max-width: 1200px;
}

.overflowHidden {
  position: relative;
  max-height: 100%;
  overflow: hidden;
}

.contactModal,
.orderModal,
.summaryModal,
.guestModal,
.loginModal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  background: rgba(255, 255, 255, 0.95);
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 12rem;
}
.contactModal #MemberRegisterForm_MemberRegisterForm_IsDealer_Holder label,
.orderModal #MemberRegisterForm_MemberRegisterForm_IsDealer_Holder label,
.summaryModal #MemberRegisterForm_MemberRegisterForm_IsDealer_Holder label,
.guestModal #MemberRegisterForm_MemberRegisterForm_IsDealer_Holder label,
.loginModal #MemberRegisterForm_MemberRegisterForm_IsDealer_Holder label {
  display: block;
  line-height: 1.5;
}
.contactModal__close,
.orderModal__close,
.summaryModal__close,
.guestModal__close,
.loginModal__close {
  top: 4rem;
  right: 2rem;
  transform: translateY(-100%);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  position: relative;
  width: 6rem;
  position: absolute;
}
.contactModal__close:after,
.orderModal__close:after,
.summaryModal__close:after,
.guestModal__close:after,
.loginModal__close:after {
  content: "";
  position: relative;
  display: block;
  padding-bottom: 100%;
}
.contactModal__close svg,
.orderModal__close svg,
.summaryModal__close svg,
.guestModal__close svg,
.loginModal__close svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contactModal__close svg path,
.orderModal__close svg path,
.summaryModal__close svg path,
.guestModal__close svg path,
.loginModal__close svg path {
  fill: #00aeff;
}
.contactModal.active .orderModal__close, .contactModal.active .contactModal__close, .contactModal.active .summaryModal__close, .contactModal.active .loginModal__close,
.orderModal.active .orderModal__close,
.orderModal.active .contactModal__close,
.orderModal.active .summaryModal__close,
.orderModal.active .loginModal__close,
.summaryModal.active .orderModal__close,
.summaryModal.active .contactModal__close,
.summaryModal.active .summaryModal__close,
.summaryModal.active .loginModal__close,
.guestModal.active .orderModal__close,
.guestModal.active .contactModal__close,
.guestModal.active .summaryModal__close,
.guestModal.active .loginModal__close,
.loginModal.active .orderModal__close,
.loginModal.active .contactModal__close,
.loginModal.active .summaryModal__close,
.loginModal.active .loginModal__close {
  transform: translateY(0%);
}
.contactModal .inputField,
.orderModal .inputField,
.summaryModal .inputField,
.guestModal .inputField,
.loginModal .inputField {
  position: relative;
}
.contactModal .inputField .parsley-hear,
.contactModal .inputField .parsley-region,
.contactModal .inputField .parsley-required,
.orderModal .inputField .parsley-hear,
.orderModal .inputField .parsley-region,
.orderModal .inputField .parsley-required,
.summaryModal .inputField .parsley-hear,
.summaryModal .inputField .parsley-region,
.summaryModal .inputField .parsley-required,
.guestModal .inputField .parsley-hear,
.guestModal .inputField .parsley-region,
.guestModal .inputField .parsley-required,
.loginModal .inputField .parsley-hear,
.loginModal .inputField .parsley-region,
.loginModal .inputField .parsley-required {
  color: #00aeff;
}
.contactModal .inputField .inlineLoader,
.orderModal .inputField .inlineLoader,
.summaryModal .inputField .inlineLoader,
.guestModal .inputField .inlineLoader,
.loginModal .inputField .inlineLoader {
  position: absolute;
  top: -0.4rem;
}
.contactModal .inputField--liner,
.orderModal .inputField--liner,
.summaryModal .inputField--liner,
.guestModal .inputField--liner,
.loginModal .inputField--liner {
  margin-bottom: 1rem;
}
.contactModal .select2,
.orderModal .select2,
.summaryModal .select2,
.guestModal .select2,
.loginModal .select2 {
  margin-bottom: 1rem !important;
  background-image: url("../images/down-caret.svg");
  background-repeat: no-repeat;
  background-size: 25px 12px;
  background-position: center right 5px;
}
.contactModal .select2 .select2-selection__rendered,
.orderModal .select2 .select2-selection__rendered,
.summaryModal .select2 .select2-selection__rendered,
.guestModal .select2 .select2-selection__rendered,
.loginModal .select2 .select2-selection__rendered {
  background: transparent !important;
  color: #ffffff !important;
  border-bottom: 1px solid #00aeff;
  font-size: 1.8rem !important;
  padding-left: 0 !important;
}
.contactModal #profile-form,
.contactModal #login-form,
.contactModal #register-form,
.orderModal #profile-form,
.orderModal #login-form,
.orderModal #register-form,
.summaryModal #profile-form,
.summaryModal #login-form,
.summaryModal #register-form,
.guestModal #profile-form,
.guestModal #login-form,
.guestModal #register-form,
.loginModal #profile-form,
.loginModal #login-form,
.loginModal #register-form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.contactModal.active,
.orderModal.active,
.summaryModal.active,
.guestModal.active,
.loginModal.active {
  opacity: 1 !important;
  visibility: visible !important;
}
.contactModal__wrap,
.orderModal__wrap,
.summaryModal__wrap,
.guestModal__wrap,
.loginModal__wrap {
  margin: 4rem auto 0;
  width: calc(100%);
  max-width: 968px;
  background: #ffffff;
  box-shadow: 0 0 40px 0 #000000;
  display: flex;
  flex-wrap: wrap;
}
.contactModal__wrap__banner,
.orderModal__wrap__banner,
.summaryModal__wrap__banner,
.guestModal__wrap__banner,
.loginModal__wrap__banner {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 50%;
  padding: 10rem 6rem;
  position: relative;
}
.contactModal__wrap__banner:after,
.orderModal__wrap__banner:after,
.summaryModal__wrap__banner:after,
.guestModal__wrap__banner:after,
.loginModal__wrap__banner:after {
  position: absolute;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}
.contactModal__wrap__banner__content,
.orderModal__wrap__banner__content,
.summaryModal__wrap__banner__content,
.guestModal__wrap__banner__content,
.loginModal__wrap__banner__content {
  position: relative;
  z-index: 3;
}
.contactModal__wrap__content,
.orderModal__wrap__content,
.summaryModal__wrap__content,
.guestModal__wrap__content,
.loginModal__wrap__content {
  width: 50%;
  padding: 8rem 4rem;
  background: #1c1c1c;
}
.contactModal__wrap__content label,
.orderModal__wrap__content label,
.summaryModal__wrap__content label,
.guestModal__wrap__content label,
.loginModal__wrap__content label {
  display: none;
}
.contactModal__wrap__content textarea,
.contactModal__wrap__content input[type=email],
.contactModal__wrap__content input[type=number],
.contactModal__wrap__content input[type=text],
.contactModal__wrap__content input[type=password],
.orderModal__wrap__content textarea,
.orderModal__wrap__content input[type=email],
.orderModal__wrap__content input[type=number],
.orderModal__wrap__content input[type=text],
.orderModal__wrap__content input[type=password],
.summaryModal__wrap__content textarea,
.summaryModal__wrap__content input[type=email],
.summaryModal__wrap__content input[type=number],
.summaryModal__wrap__content input[type=text],
.summaryModal__wrap__content input[type=password],
.guestModal__wrap__content textarea,
.guestModal__wrap__content input[type=email],
.guestModal__wrap__content input[type=number],
.guestModal__wrap__content input[type=text],
.guestModal__wrap__content input[type=password],
.loginModal__wrap__content textarea,
.loginModal__wrap__content input[type=email],
.loginModal__wrap__content input[type=number],
.loginModal__wrap__content input[type=text],
.loginModal__wrap__content input[type=password] {
  border: 0 !important;
  border-bottom: 1px solid #00aeff !important;
  background: transparent !important;
  color: #ffffff !important;
  outline: none !important;
  box-shadow: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  font-size: 1.8rem !important;
  resize: none;
}
.contactModal__wrap__content textarea::-webkit-input-placeholder,
.contactModal__wrap__content input[type=email]::-webkit-input-placeholder,
.contactModal__wrap__content input[type=number]::-webkit-input-placeholder,
.contactModal__wrap__content input[type=text]::-webkit-input-placeholder,
.contactModal__wrap__content input[type=password]::-webkit-input-placeholder,
.orderModal__wrap__content textarea::-webkit-input-placeholder,
.orderModal__wrap__content input[type=email]::-webkit-input-placeholder,
.orderModal__wrap__content input[type=number]::-webkit-input-placeholder,
.orderModal__wrap__content input[type=text]::-webkit-input-placeholder,
.orderModal__wrap__content input[type=password]::-webkit-input-placeholder,
.summaryModal__wrap__content textarea::-webkit-input-placeholder,
.summaryModal__wrap__content input[type=email]::-webkit-input-placeholder,
.summaryModal__wrap__content input[type=number]::-webkit-input-placeholder,
.summaryModal__wrap__content input[type=text]::-webkit-input-placeholder,
.summaryModal__wrap__content input[type=password]::-webkit-input-placeholder,
.guestModal__wrap__content textarea::-webkit-input-placeholder,
.guestModal__wrap__content input[type=email]::-webkit-input-placeholder,
.guestModal__wrap__content input[type=number]::-webkit-input-placeholder,
.guestModal__wrap__content input[type=text]::-webkit-input-placeholder,
.guestModal__wrap__content input[type=password]::-webkit-input-placeholder,
.loginModal__wrap__content textarea::-webkit-input-placeholder,
.loginModal__wrap__content input[type=email]::-webkit-input-placeholder,
.loginModal__wrap__content input[type=number]::-webkit-input-placeholder,
.loginModal__wrap__content input[type=text]::-webkit-input-placeholder,
.loginModal__wrap__content input[type=password]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
.contactModal__wrap__content textarea:-moz-placeholder,
.contactModal__wrap__content input[type=email]:-moz-placeholder,
.contactModal__wrap__content input[type=number]:-moz-placeholder,
.contactModal__wrap__content input[type=text]:-moz-placeholder,
.contactModal__wrap__content input[type=password]:-moz-placeholder,
.orderModal__wrap__content textarea:-moz-placeholder,
.orderModal__wrap__content input[type=email]:-moz-placeholder,
.orderModal__wrap__content input[type=number]:-moz-placeholder,
.orderModal__wrap__content input[type=text]:-moz-placeholder,
.orderModal__wrap__content input[type=password]:-moz-placeholder,
.summaryModal__wrap__content textarea:-moz-placeholder,
.summaryModal__wrap__content input[type=email]:-moz-placeholder,
.summaryModal__wrap__content input[type=number]:-moz-placeholder,
.summaryModal__wrap__content input[type=text]:-moz-placeholder,
.summaryModal__wrap__content input[type=password]:-moz-placeholder,
.guestModal__wrap__content textarea:-moz-placeholder,
.guestModal__wrap__content input[type=email]:-moz-placeholder,
.guestModal__wrap__content input[type=number]:-moz-placeholder,
.guestModal__wrap__content input[type=text]:-moz-placeholder,
.guestModal__wrap__content input[type=password]:-moz-placeholder,
.loginModal__wrap__content textarea:-moz-placeholder,
.loginModal__wrap__content input[type=email]:-moz-placeholder,
.loginModal__wrap__content input[type=number]:-moz-placeholder,
.loginModal__wrap__content input[type=text]:-moz-placeholder,
.loginModal__wrap__content input[type=password]:-moz-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
.contactModal__wrap__content textarea::-moz-placeholder,
.contactModal__wrap__content input[type=email]::-moz-placeholder,
.contactModal__wrap__content input[type=number]::-moz-placeholder,
.contactModal__wrap__content input[type=text]::-moz-placeholder,
.contactModal__wrap__content input[type=password]::-moz-placeholder,
.orderModal__wrap__content textarea::-moz-placeholder,
.orderModal__wrap__content input[type=email]::-moz-placeholder,
.orderModal__wrap__content input[type=number]::-moz-placeholder,
.orderModal__wrap__content input[type=text]::-moz-placeholder,
.orderModal__wrap__content input[type=password]::-moz-placeholder,
.summaryModal__wrap__content textarea::-moz-placeholder,
.summaryModal__wrap__content input[type=email]::-moz-placeholder,
.summaryModal__wrap__content input[type=number]::-moz-placeholder,
.summaryModal__wrap__content input[type=text]::-moz-placeholder,
.summaryModal__wrap__content input[type=password]::-moz-placeholder,
.guestModal__wrap__content textarea::-moz-placeholder,
.guestModal__wrap__content input[type=email]::-moz-placeholder,
.guestModal__wrap__content input[type=number]::-moz-placeholder,
.guestModal__wrap__content input[type=text]::-moz-placeholder,
.guestModal__wrap__content input[type=password]::-moz-placeholder,
.loginModal__wrap__content textarea::-moz-placeholder,
.loginModal__wrap__content input[type=email]::-moz-placeholder,
.loginModal__wrap__content input[type=number]::-moz-placeholder,
.loginModal__wrap__content input[type=text]::-moz-placeholder,
.loginModal__wrap__content input[type=password]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
.contactModal__wrap__content textarea:-ms-input-placeholder,
.contactModal__wrap__content input[type=email]:-ms-input-placeholder,
.contactModal__wrap__content input[type=number]:-ms-input-placeholder,
.contactModal__wrap__content input[type=text]:-ms-input-placeholder,
.contactModal__wrap__content input[type=password]:-ms-input-placeholder,
.orderModal__wrap__content textarea:-ms-input-placeholder,
.orderModal__wrap__content input[type=email]:-ms-input-placeholder,
.orderModal__wrap__content input[type=number]:-ms-input-placeholder,
.orderModal__wrap__content input[type=text]:-ms-input-placeholder,
.orderModal__wrap__content input[type=password]:-ms-input-placeholder,
.summaryModal__wrap__content textarea:-ms-input-placeholder,
.summaryModal__wrap__content input[type=email]:-ms-input-placeholder,
.summaryModal__wrap__content input[type=number]:-ms-input-placeholder,
.summaryModal__wrap__content input[type=text]:-ms-input-placeholder,
.summaryModal__wrap__content input[type=password]:-ms-input-placeholder,
.guestModal__wrap__content textarea:-ms-input-placeholder,
.guestModal__wrap__content input[type=email]:-ms-input-placeholder,
.guestModal__wrap__content input[type=number]:-ms-input-placeholder,
.guestModal__wrap__content input[type=text]:-ms-input-placeholder,
.guestModal__wrap__content input[type=password]:-ms-input-placeholder,
.loginModal__wrap__content textarea:-ms-input-placeholder,
.loginModal__wrap__content input[type=email]:-ms-input-placeholder,
.loginModal__wrap__content input[type=number]:-ms-input-placeholder,
.loginModal__wrap__content input[type=text]:-ms-input-placeholder,
.loginModal__wrap__content input[type=password]:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
.contactModal__wrap__content [type=submit],
.contactModal__wrap__content .action,
.orderModal__wrap__content [type=submit],
.orderModal__wrap__content .action,
.summaryModal__wrap__content [type=submit],
.summaryModal__wrap__content .action,
.guestModal__wrap__content [type=submit],
.guestModal__wrap__content .action,
.loginModal__wrap__content [type=submit],
.loginModal__wrap__content .action {
  max-width: 100%;
  margin-bottom: 2rem;
}

/*------------------------------------------------------------------
Checkbox
------------------------------------------------------------------*/
.checkbox--alt {
  opacity: 0;
  z-index: -1;
  position: absolute;
}
.checkbox--alt + label {
  position: relative;
  padding-right: 6rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  color: white;
  font-size: 1.7rem;
  font-weight: 600;
}
.checkbox--alt + label:before {
  position: absolute;
  content: "";
  display: block;
  display: block;
  right: 0;
  top: 1px;
  transition: all 333ms ease;
  background: #f07178;
  width: 60px;
  height: 26px;
  border-radius: 300rem;
  content: "NO";
  color: white;
  font-size: 12px;
  font-weight: 800;
  text-indent: 20px;
  line-height: 2.2;
}
.checkbox--alt + label:after {
  position: absolute;
  content: "";
  display: block;
  display: block;
  right: 36px;
  top: 4px;
  transition: all 333ms ease;
  background: white;
  width: 20px;
  height: 20px;
  border-radius: 300rem;
}
.checkbox--alt:checked + label:before {
  background: #87bf34;
  content: "YES";
  text-indent: -21px;
}
.checkbox--alt:checked + label:after {
  right: 4px;
}

.deliveryModal input[type=checkbox]:not(.checkbox--alt),
.orderModal input[type=checkbox]:not(.checkbox--alt),
.contactModal input[type=checkbox]:not(.checkbox--alt),
.summaryModal input[type=checkbox]:not(.checkbox--alt),
.loginModal input[type=checkbox]:not(.checkbox--alt) {
  opacity: 0;
  z-index: -1;
  position: absolute;
}
.deliveryModal input[type=checkbox]:not(.checkbox--alt) + label,
.orderModal input[type=checkbox]:not(.checkbox--alt) + label,
.contactModal input[type=checkbox]:not(.checkbox--alt) + label,
.summaryModal input[type=checkbox]:not(.checkbox--alt) + label,
.loginModal input[type=checkbox]:not(.checkbox--alt) + label {
  position: relative;
  padding-left: 3rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.deliveryModal input[type=checkbox]:not(.checkbox--alt) + label:before,
.orderModal input[type=checkbox]:not(.checkbox--alt) + label:before,
.contactModal input[type=checkbox]:not(.checkbox--alt) + label:before,
.summaryModal input[type=checkbox]:not(.checkbox--alt) + label:before,
.loginModal input[type=checkbox]:not(.checkbox--alt) + label:before {
  position: absolute;
  content: "";
  display: block;
  display: block;
  left: 0;
  top: 0.5rem;
  transition: all 333ms ease;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  width: 20px;
  height: 20px;
  border-radius: 0.4rem;
}
.deliveryModal input[type=checkbox]:not(.checkbox--alt) + label:after,
.orderModal input[type=checkbox]:not(.checkbox--alt) + label:after,
.contactModal input[type=checkbox]:not(.checkbox--alt) + label:after,
.summaryModal input[type=checkbox]:not(.checkbox--alt) + label:after,
.loginModal input[type=checkbox]:not(.checkbox--alt) + label:after {
  position: absolute;
  content: "";
  display: block;
  transform: rotate(43deg);
  width: 5px;
  height: 9px;
  border: 2px solid #ffffff;
  border-top: 0;
  border-left: 0;
  left: 7px;
  top: 1.5rem;
  transition: all 333ms ease;
  margin-top: -1px;
  transform: translateY(-50%) rotate(20deg);
}
.deliveryModal input[type=checkbox]:not(.checkbox--alt):checked + label:before,
.orderModal input[type=checkbox]:not(.checkbox--alt):checked + label:before,
.contactModal input[type=checkbox]:not(.checkbox--alt):checked + label:before,
.summaryModal input[type=checkbox]:not(.checkbox--alt):checked + label:before,
.loginModal input[type=checkbox]:not(.checkbox--alt):checked + label:before {
  background: #00aeff;
  border-color: #00aeff;
}
.deliveryModal input[type=checkbox]:not(.checkbox--alt):checked + label:after,
.orderModal input[type=checkbox]:not(.checkbox--alt):checked + label:after,
.contactModal input[type=checkbox]:not(.checkbox--alt):checked + label:after,
.summaryModal input[type=checkbox]:not(.checkbox--alt):checked + label:after,
.loginModal input[type=checkbox]:not(.checkbox--alt):checked + label:after {
  transform: translateY(-50%) rotate(43deg);
}
.deliveryModal input[type=checkbox]:not(.checkbox--alt):disabled + label,
.orderModal input[type=checkbox]:not(.checkbox--alt):disabled + label,
.contactModal input[type=checkbox]:not(.checkbox--alt):disabled + label,
.summaryModal input[type=checkbox]:not(.checkbox--alt):disabled + label,
.loginModal input[type=checkbox]:not(.checkbox--alt):disabled + label {
  opacity: 0.3;
}

.sending .inputField .inlineLoader {
  opacity: 1;
  pointer-events: none;
}

#MemberLoginForm_LoginForm_error {
  color: #ffffff;
}

.guestModal {
  background: #1c1c1c;
  padding: 0;
  height: 100%;
  z-index: 2;
}
.guestModal__wrap {
  max-width: 100%;
  margin: 0;
  height: 100%;
  align-items: center;
  background: #1c1c1c;
}
.guestModal__wrap__content, .guestModal__wrap__banner {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
.guestModal__wrap__banner {
  justify-content: flex-end;
}
.guestModal__wrap__banner__content {
  max-width: 40rem;
  text-align: center;
  width: 100%;
}
.guestModal__wrap__banner__content h2 {
  font-size: 3rem !important;
}
.guestModal__wrap__banner__content * {
  color: #ffffff !important;
}
.guestModal__wrap__content {
  justify-content: flex-start;
  text-align: center;
}
.guestModal__wrap__content h2 {
  font-size: 3rem !important;
}
.guestModal__wrap__content * {
  color: #ffffff !important;
}
.guestModal__wrap__content__wrapper {
  max-width: 40rem;
  width: 100%;
}
.guestModal__wrap #MemberLoginForm_LoginForm_Remember_Holder {
  display: none;
}
.guestModal__wrap #MemberLoginForm_LoginForm_Password,
.guestModal__wrap #MemberLoginForm_LoginForm_Email {
  padding-left: 1rem !important;
}
.guestModal__wrap .btn-toolbar {
  padding: 0;
}
.guestModal__wrap #login-form {
  height: 100%;
}

.passwordModal p {
  color: white;
  display: block;
  font-size: 2rem;
  position: relative;
  z-index: 3;
}

[data-segment=Security] .message.warning {
  width: 100%;
  top: 5rem;
  color: white;
  display: block;
  font-size: 2rem;
  position: relative;
  z-index: 3;
}

.accountBanner {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: #3a3a3a;
  margin-bottom: 5rem;
}
.accountBanner__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.accountBanner__wrap {
  width: 100%;
  padding: 8rem 2rem 0;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  z-index: index 2;
}
.accountBanner__wrap p {
  max-width: 55rem;
}
.accountBanner__wrap__links {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 4rem;
}
.accountBanner__wrap__links__item {
  padding: 2rem 3rem;
  position: relative;
  color: #ffffff;
  width: 25%;
  text-align: center;
}
.accountBanner__wrap__links__item:after {
  position: absolute;
  content: "";
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: #00aeff;
  transform: scaleX(0);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: 0% 100%;
}
.accountBanner__wrap__links__item.active:after {
  transform: scaleX(1);
}

/*------------------------------------------------------------------
accountPanes
------------------------------------------------------------------*/
.accountPanes {
  padding: 0 2rem;
  width: 100%;
}
.accountPanes__wrap {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.accountPanes__wrap__item {
  width: 100%;
  display: none;
  justify-content: center;
  padding-bottom: 9rem;
}
.accountPanes__wrap__item.active {
  display: flex;
  flex-wrap: wrap;
}

/*------------------------------------------------------------------
Installer popup
------------------------------------------------------------------*/
#Form_CheckoutForm_ShippingRegion_Holder .select2-selection__rendered {
  color: #ffffff !important;
}

#Form_CheckoutForm .select2-search__field {
  color: #444 !important;
}
#Form_CheckoutForm .parsley-errors-list {
  top: 0.1rem;
}
#Form_CheckoutForm .parsley-required {
  color: #ed4545 !important;
}
#Form_CheckoutForm .parsley-error input {
  border: 1px solid #ed4545 !important;
}

.australia #Form_CheckoutForm_OrderMethod li:nth-child(2):after {
  content: "Select this method if you wish to self install. Please note: You will be charged a 11.75% card fee." !important;
}
.australia #Form_CheckoutForm_OrderMethod li:nth-child(1):after {
  content: "Select this method if you wish to self install. You will be emailed an invoice with payment details." !important;
}
.australia #Form_CheckoutForm_OrderMethod li:nth-child(3):after {
  content: "You will be able to select a preferred reseller who can install the product. Fitting Cost TBC." !important;
}
.australia .fittingMethod {
  display: none !important;
}
.australia .js-change-fitting-type {
  display: none;
}
.australia .js-change-fitting-type + svg {
  display: none;
}
.australia .guestModal {
  display: none !important;
}

#Form_CheckoutForm_ForkliftRequired_Holder {
  position: relative;
}
#Form_CheckoutForm_ForkliftRequired_Holder input {
  position: absolute;
  top: 0.5rem;
  left: 0;
}
#Form_CheckoutForm_ForkliftRequired_Holder label {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  display: block;
  padding-left: 3rem;
}

#Form_CheckoutForm_ShippingRegion_Holder .select2-container,
#Form_CheckoutForm_DealerID_Holder .select2-container {
  z-index: 1;
  margin-bottom: 1rem;
}
#Form_CheckoutForm_ShippingRegion_Holder .select2-container .select2-selection__rendered,
#Form_CheckoutForm_ShippingRegion_Holder .select2-container .select2-selection__placeholder,
#Form_CheckoutForm_DealerID_Holder .select2-container .select2-selection__rendered,
#Form_CheckoutForm_DealerID_Holder .select2-container .select2-selection__placeholder {
  color: #ffffff !important;
}
#Form_CheckoutForm_ShippingRegion_Holder .select2-container .select2-selection,
#Form_CheckoutForm_DealerID_Holder .select2-container .select2-selection {
  border: 1px solid #a6a6a6;
}
#Form_CheckoutForm_ShippingRegion_Holder .select2-container .select2-selection .select2-selection__rendered,
#Form_CheckoutForm_DealerID_Holder .select2-container .select2-selection .select2-selection__rendered {
  background: transparent;
  background-image: url("../images/down-caret.svg");
  background-repeat: no-repeat;
  background-size: 25px 12px;
  background-position: center right 5px;
}

.guestModal {
  display: none !important;
}

.fittingMethod {
  background: #1c1c1c;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 33;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-items: flex-start;
  display: none;
  overflow: auto;
}
.fittingMethod .select2-results__options li:first-of-type {
  display: block !important;
}
.fittingMethod .select2-selection__rendered,
.fittingMethod .select2-selection__placeholder {
  color: #ffffff !important;
  opacity: 1;
  font-size: 2.2rem !important;
}
.fittingMethod .select2-selection__arrow {
  top: 4px !important;
}
.fittingMethod__wrap {
  width: 100%;
  margin: 0 auto;
  max-width: 768px;
  padding: 10rem 2rem 8rem;
}
.fittingMethod__wrap .optionset {
  padding-left: 0;
}
.fittingMethod__wrap h3 {
  color: #ffffff;
  text-align: center;
}
.fittingMethod__wrap p {
  color: #ffffff;
  text-align: center;
}
.fittingMethod__wrap #Form_CheckoutForm_FittingMethod_Holder input {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
.fittingMethod__wrap #Form_CheckoutForm_FittingMethod_Holder input:checked + label {
  background: rgba(0, 174, 255, 0.4) !important;
}
.fittingMethod__wrap #Form_CheckoutForm_FittingMethod_Holder input:checked + label:after {
  transform: translateY(-50%) rotate(43deg);
  opacity: 1;
}
.fittingMethod__wrap #Form_CheckoutForm_FittingMethod_Holder label {
  position: relative;
}
.fittingMethod__wrap #Form_CheckoutForm_FittingMethod_Holder label:before {
  position: absolute;
  content: "";
  display: block;
  display: block;
  right: 1rem;
  top: 1rem;
  transition: all 333ms ease;
  background: transparent;
  border: 1px solid #00aeff;
  width: 20px;
  height: 20px;
  border-radius: 0.3rem;
}
.fittingMethod__wrap #Form_CheckoutForm_FittingMethod_Holder label:after {
  position: absolute;
  content: "";
  display: block;
  transform: rotate(43deg);
  width: 5px;
  height: 9px;
  border: 2px solid #ffffff;
  border-top: 0;
  border-left: 0;
  right: 27px;
  top: 3rem;
  transition: all 333ms ease;
  margin-top: -1px;
  right: 18px;
  top: 2rem;
  transform: translateY(-50%) rotate(20deg);
  opacity: 0;
}
.fittingMethod__wrap #Form_CheckoutForm_FittingMethod_Holder li {
  width: 100%;
  border: 1px solid #00aeff;
  border-radius: 0.4rem;
  margin: 0 auto 2rem;
  position: relative;
  list-style: none;
}
.fittingMethod__wrap #Form_CheckoutForm_FittingMethod_Holder li:before {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  background: #00aeff;
  top: 5.1rem;
  left: 2rem;
  right: 9rem;
}
.fittingMethod__wrap #Form_CheckoutForm_FittingMethod_Holder li:nth-child(1):after {
  position: absolute;
  content: "";
  display: block;
  content: "We\2019ll supply you with detailed fitting instructions.";
  color: #ffffff;
  font-size: 1.4rem;
  bottom: 1.8rem;
  left: 2rem;
  right: 2rem;
  line-height: 1.3;
  pointer-events: none;
}
.fittingMethod__wrap #Form_CheckoutForm_FittingMethod_Holder li:nth-child(2):before {
  display: none;
}
.fittingMethod__wrap #Form_CheckoutForm_FittingMethod_Holder label {
  padding: 2rem 2rem 5.5rem;
  margin: 0;
  cursor: pointer;
  transition: all 111ms ease;
  color: white !important;
}
.fittingMethod__wrap #Form_CheckoutForm_FittingMethod_Holder label:hover {
  background: rgba(0, 174, 255, 0.4);
}

/*------------------------------------------------------------------
Existing popups
------------------------------------------------------------------*/
.js-shipping-selection-message {
  margin-bottom: 0.8rem;
  margin-top: -0.8rem;
}

.Utemaster\\Site\\CheckoutPage {
  background: #1c1c1c;
}
.Utemaster\\Site\\CheckoutPage main {
  background: #1c1c1c !important;
}
.Utemaster\\Site\\CheckoutPage select {
  background-color: transparent !important;
  padding: 0.4rem 1rem !important;
  color: white !important;
  border-radius: 0.2rem;
  border-color: #a6a6a6;
  background-position: center right 10px !important;
}
.Utemaster\\Site\\CheckoutPage .middleColumn {
  position: relative;
}
.Utemaster\\Site\\CheckoutPage .middleColumn .parsley-region,
.Utemaster\\Site\\CheckoutPage .middleColumn .parsley-required {
  color: #00aeff;
}
.Utemaster\\Site\\CheckoutPage .fieldgroup-field {
  position: relative;
}

.shippingDetails h3,
.shippingDetails p {
  display: none;
}

.aleternateActions {
  margin: 0rem auto 0;
  max-width: 768px;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.aleternateActions__text {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.aleternateActions__item {
  width: calc(50% - 1rem);
}

.btn-toolbar {
  margin: 0 auto;
  max-width: 768px;
  padding: 0 2rem;
}
.btn-toolbar .action {
  background: #00aeff;
  color: #ffffff;
  width: 100%;
  max-width: 100%;
}

.dealerInfoDetails__wrap,
.paymentOptionDetails__wrap,
.commentsDetails__wrap,
.dealerDetails__wrap,
.shippingDetails__wrap,
.checkoutDetails__wrap {
  margin: 0 auto;
  max-width: 768px;
  padding: 0 2rem;
}
.dealerInfoDetails__wrap h3,
.paymentOptionDetails__wrap h3,
.commentsDetails__wrap h3,
.dealerDetails__wrap h3,
.shippingDetails__wrap h3,
.checkoutDetails__wrap h3 {
  color: #ffffff !important;
  margin-bottom: 2rem !important;
}
.dealerInfoDetails__wrap h3 + p,
.paymentOptionDetails__wrap h3 + p,
.commentsDetails__wrap h3 + p,
.dealerDetails__wrap h3 + p,
.shippingDetails__wrap h3 + p,
.checkoutDetails__wrap h3 + p {
  margin-top: -1.5rem;
}
.dealerInfoDetails__wrap p,
.paymentOptionDetails__wrap p,
.commentsDetails__wrap p,
.dealerDetails__wrap p,
.shippingDetails__wrap p,
.checkoutDetails__wrap p {
  color: #ffffff !important;
  font-size: 1.6rem !important;
}
.dealerInfoDetails__wrap textarea,
.paymentOptionDetails__wrap textarea,
.commentsDetails__wrap textarea,
.dealerDetails__wrap textarea,
.shippingDetails__wrap textarea,
.checkoutDetails__wrap textarea {
  resize: none;
}
.dealerInfoDetails__wrap textarea,
.dealerInfoDetails__wrap input,
.paymentOptionDetails__wrap textarea,
.paymentOptionDetails__wrap input,
.commentsDetails__wrap textarea,
.commentsDetails__wrap input,
.dealerDetails__wrap textarea,
.dealerDetails__wrap input,
.shippingDetails__wrap textarea,
.shippingDetails__wrap input,
.checkoutDetails__wrap textarea,
.checkoutDetails__wrap input {
  background: transparent !important;
  color: #ffffff !important;
}
.dealerInfoDetails__wrap textarea::-webkit-input-placeholder,
.dealerInfoDetails__wrap input::-webkit-input-placeholder,
.paymentOptionDetails__wrap textarea::-webkit-input-placeholder,
.paymentOptionDetails__wrap input::-webkit-input-placeholder,
.commentsDetails__wrap textarea::-webkit-input-placeholder,
.commentsDetails__wrap input::-webkit-input-placeholder,
.dealerDetails__wrap textarea::-webkit-input-placeholder,
.dealerDetails__wrap input::-webkit-input-placeholder,
.shippingDetails__wrap textarea::-webkit-input-placeholder,
.shippingDetails__wrap input::-webkit-input-placeholder,
.checkoutDetails__wrap textarea::-webkit-input-placeholder,
.checkoutDetails__wrap input::-webkit-input-placeholder {
  color: #ffffff !important;
  opacity: 0.9 !important;
}
.dealerInfoDetails__wrap textarea:-moz-placeholder,
.dealerInfoDetails__wrap input:-moz-placeholder,
.paymentOptionDetails__wrap textarea:-moz-placeholder,
.paymentOptionDetails__wrap input:-moz-placeholder,
.commentsDetails__wrap textarea:-moz-placeholder,
.commentsDetails__wrap input:-moz-placeholder,
.dealerDetails__wrap textarea:-moz-placeholder,
.dealerDetails__wrap input:-moz-placeholder,
.shippingDetails__wrap textarea:-moz-placeholder,
.shippingDetails__wrap input:-moz-placeholder,
.checkoutDetails__wrap textarea:-moz-placeholder,
.checkoutDetails__wrap input:-moz-placeholder {
  color: #ffffff !important;
  opacity: 0.9 !important;
}
.dealerInfoDetails__wrap textarea::-moz-placeholder,
.dealerInfoDetails__wrap input::-moz-placeholder,
.paymentOptionDetails__wrap textarea::-moz-placeholder,
.paymentOptionDetails__wrap input::-moz-placeholder,
.commentsDetails__wrap textarea::-moz-placeholder,
.commentsDetails__wrap input::-moz-placeholder,
.dealerDetails__wrap textarea::-moz-placeholder,
.dealerDetails__wrap input::-moz-placeholder,
.shippingDetails__wrap textarea::-moz-placeholder,
.shippingDetails__wrap input::-moz-placeholder,
.checkoutDetails__wrap textarea::-moz-placeholder,
.checkoutDetails__wrap input::-moz-placeholder {
  color: #ffffff !important;
  opacity: 0.9 !important;
}
.dealerInfoDetails__wrap textarea:-ms-input-placeholder,
.dealerInfoDetails__wrap input:-ms-input-placeholder,
.paymentOptionDetails__wrap textarea:-ms-input-placeholder,
.paymentOptionDetails__wrap input:-ms-input-placeholder,
.commentsDetails__wrap textarea:-ms-input-placeholder,
.commentsDetails__wrap input:-ms-input-placeholder,
.dealerDetails__wrap textarea:-ms-input-placeholder,
.dealerDetails__wrap input:-ms-input-placeholder,
.shippingDetails__wrap textarea:-ms-input-placeholder,
.shippingDetails__wrap input:-ms-input-placeholder,
.checkoutDetails__wrap textarea:-ms-input-placeholder,
.checkoutDetails__wrap input:-ms-input-placeholder {
  color: #ffffff !important;
  opacity: 0.9 !important;
}

.deliveryModal,
.leadTime,
.orderMethod {
  background: #1c1c1c;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: block;
  z-index: 34;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-items: flex-start;
  overflow: auto;
}
.deliveryModal__wrap,
.leadTime__wrap,
.orderMethod__wrap {
  width: 100%;
  margin: 0 auto;
  max-width: 768px;
  padding: 2rem 2rem;
}
.deliveryModal__wrap h3,
.leadTime__wrap h3,
.orderMethod__wrap h3 {
  color: #ffffff;
  text-align: center;
}
.deliveryModal__wrap p,
.leadTime__wrap p,
.orderMethod__wrap p {
  color: #ffffff;
  text-align: center;
}
.deliveryModal__wrap #Form_CheckoutForm_OrderMethod,
.leadTime__wrap #Form_CheckoutForm_OrderMethod,
.orderMethod__wrap #Form_CheckoutForm_OrderMethod {
  list-style: none;
  padding: 0 !important;
}
.deliveryModal__wrap #Form_CheckoutForm_OrderMethod input,
.leadTime__wrap #Form_CheckoutForm_OrderMethod input,
.orderMethod__wrap #Form_CheckoutForm_OrderMethod input {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
.deliveryModal__wrap #Form_CheckoutForm_OrderMethod input:checked + label,
.leadTime__wrap #Form_CheckoutForm_OrderMethod input:checked + label,
.orderMethod__wrap #Form_CheckoutForm_OrderMethod input:checked + label {
  background: rgba(0, 174, 255, 0.4) !important;
}
.deliveryModal__wrap #Form_CheckoutForm_OrderMethod input:checked + label:after,
.leadTime__wrap #Form_CheckoutForm_OrderMethod input:checked + label:after,
.orderMethod__wrap #Form_CheckoutForm_OrderMethod input:checked + label:after {
  transform: translateY(-50%) rotate(43deg);
  opacity: 1;
}
.deliveryModal__wrap #Form_CheckoutForm_OrderMethod label,
.leadTime__wrap #Form_CheckoutForm_OrderMethod label,
.orderMethod__wrap #Form_CheckoutForm_OrderMethod label {
  position: relative;
}
.deliveryModal__wrap #Form_CheckoutForm_OrderMethod label:before,
.leadTime__wrap #Form_CheckoutForm_OrderMethod label:before,
.orderMethod__wrap #Form_CheckoutForm_OrderMethod label:before {
  position: absolute;
  content: "";
  display: block;
  display: block;
  right: 1rem;
  top: 1rem;
  transition: all 333ms ease;
  background: transparent;
  border: 1px solid #00aeff;
  width: 20px;
  height: 20px;
  border-radius: 0.3rem;
}
.deliveryModal__wrap #Form_CheckoutForm_OrderMethod label:after,
.leadTime__wrap #Form_CheckoutForm_OrderMethod label:after,
.orderMethod__wrap #Form_CheckoutForm_OrderMethod label:after {
  position: absolute;
  content: "";
  display: block;
  transform: rotate(43deg);
  width: 5px;
  height: 9px;
  border: 2px solid #ffffff;
  border-top: 0;
  border-left: 0;
  right: 27px;
  top: 3rem;
  transition: all 333ms ease;
  margin-top: -1px;
  right: 18px;
  top: 2rem;
  transform: translateY(-50%) rotate(20deg);
  opacity: 0;
}
.deliveryModal__wrap #Form_CheckoutForm_OrderMethod li,
.leadTime__wrap #Form_CheckoutForm_OrderMethod li,
.orderMethod__wrap #Form_CheckoutForm_OrderMethod li {
  width: 100%;
  border: 1px solid #00aeff;
  border-radius: 0.4rem;
  margin: 0 auto 2rem;
  position: relative;
}
.deliveryModal__wrap #Form_CheckoutForm_OrderMethod li:before,
.leadTime__wrap #Form_CheckoutForm_OrderMethod li:before,
.orderMethod__wrap #Form_CheckoutForm_OrderMethod li:before {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  background: #00aeff;
  top: 5.1rem;
  left: 2rem;
  right: 9rem;
}
.deliveryModal__wrap #Form_CheckoutForm_OrderMethod li:nth-child(1):after,
.leadTime__wrap #Form_CheckoutForm_OrderMethod li:nth-child(1):after,
.orderMethod__wrap #Form_CheckoutForm_OrderMethod li:nth-child(1):after {
  position: absolute;
  content: "";
  display: block;
  content: "You will be emailed an invoice with payment details for payment via bank transfer. ";
  color: #ffffff;
  font-size: 1.4rem;
  bottom: 1.8rem;
  left: 2rem;
  right: 2rem;
  line-height: 1.3;
  pointer-events: none;
}
.deliveryModal__wrap #Form_CheckoutForm_OrderMethod li:nth-child(2):after,
.leadTime__wrap #Form_CheckoutForm_OrderMethod li:nth-child(2):after,
.orderMethod__wrap #Form_CheckoutForm_OrderMethod li:nth-child(2):after {
  position: absolute;
  content: "";
  display: block;
  content: "Please note: You will be charged a 11.75% card fee with this payment method";
  color: #ffffff;
  font-size: 1.4rem;
  bottom: 1.8rem;
  left: 2rem;
  right: 2rem;
  line-height: 1.3;
  pointer-events: none;
}
.deliveryModal__wrap #Form_CheckoutForm_OrderMethod li:nth-child(3):after,
.leadTime__wrap #Form_CheckoutForm_OrderMethod li:nth-child(3):after,
.orderMethod__wrap #Form_CheckoutForm_OrderMethod li:nth-child(3):after {
  position: absolute;
  content: "";
  display: block;
  content: "You will be able to select a preferred dealership";
  color: #ffffff;
  font-size: 1.4rem;
  bottom: 1.8rem;
  left: 2rem;
  right: 2rem;
  line-height: 1.3;
  pointer-events: none;
}
.deliveryModal__wrap #Form_CheckoutForm_OrderMethod li label,
.leadTime__wrap #Form_CheckoutForm_OrderMethod li label,
.orderMethod__wrap #Form_CheckoutForm_OrderMethod li label {
  padding: 2rem 2rem 5.5rem;
  margin: 0;
  cursor: pointer;
  transition: all 111ms ease;
  color: white !important;
}
.deliveryModal__wrap #Form_CheckoutForm_OrderMethod li label:hover,
.leadTime__wrap #Form_CheckoutForm_OrderMethod li label:hover,
.orderMethod__wrap #Form_CheckoutForm_OrderMethod li label:hover {
  background: rgba(0, 174, 255, 0.4);
}

.leadTime {
  z-index: 35;
}

.deliveryModal {
  z-index: 34;
  display: block;
}
.deliveryModal__wrap {
  margin-top: 8rem !important;
}
.deliveryModal__wrap input {
  background: transparent !important;
  color: #ffffff !important;
  border-radius: 2px;
}
.deliveryModal__wrap input::-webkit-input-placeholder {
  color: #ffffff !important;
  opacity: 0.9 !important;
}
.deliveryModal__wrap input:-moz-placeholder {
  color: #ffffff !important;
  opacity: 0.9 !important;
}
.deliveryModal__wrap input::-moz-placeholder {
  color: #ffffff !important;
  opacity: 0.9 !important;
}
.deliveryModal__wrap input:-ms-input-placeholder {
  color: #ffffff !important;
  opacity: 0.9 !important;
}

.order {
  margin-top: 4rem;
  position: relative;
}
.order__wrap {
  margin: 0rem auto 0;
  max-width: 1200px;
  padding: 0 2rem;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  z-index: 2;
  position: relative;
}
.order__wrap__details {
  width: 50%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.order__wrap__details .select2-selection__rendered,
.order__wrap__details .select2-selection__placeholder {
  color: #ffffff !important;
}
.order__wrap__details hr {
  margin: 0.5rem 0 !important;
  opacity: 0.4;
}
.order__wrap__details__constraint {
  padding: 4rem 2rem;
  max-width: 60rem;
  width: 100%;
}
.order__wrap__items {
  width: 50%;
  background: #ffffff;
  padding: 2rem;
}
.order__wrap__items * {
  color: #1c1c1c;
}

.checkoutProcess__inner {
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.checkoutProcess__inner__form {
  width: 55%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.checkoutProcess__inner__form__constraint {
  padding: 4rem 2rem;
  max-width: 60rem;
  width: 100%;
}
.checkoutProcess__inner__cart {
  width: 45%;
  background: #ffffff;
}
.checkoutProcess__inner__cart__constraint {
  max-width: 60rem;
  width: 100%;
  padding: 4rem 2rem 12rem;
  position: relative;
  overflow: auto;
}
.checkoutProcess__inner__cart__constraint__payment {
  background: #00aeff;
  color: #ffffff;
  padding: 1rem 0.4rem;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  display: inline-block;
  font-size: 1.2rem;
  font-size: 1.6rem;
  font-weight: normal;
  margin-top: 2rem;
  order: 2;
}
.checkoutProcess__inner__cart__constraint__proceed {
  background: #3ac044;
  color: #ffffff;
  padding: 1rem 0.4rem;
  text-align: center;
  font-weight: bold;
  width: 100%;
  cursor: pointer;
  display: inline-block;
  font-size: 1.2rem;
  font-size: 1.6rem;
  font-weight: normal;
  order: 1;
}
.checkoutProcess__inner__cart__constraint__proceed:after {
  background: none, url(../images/btn-arrow-white.svg) no-repeat center;
}

.myCheckout {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.myCheckout__totals {
  width: 100%;
}
.myCheckout__totals__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  font-size: 1.6rem;
}
.myCheckout__totals__item--large {
  font-size: 2.2rem;
}
.myCheckout__totals__item b {
  color: #00aeff;
}
.myCheckout__totals__item span {
  font-weight: bold;
}
.myCheckout__item {
  border-bottom: 1px solid #e4e4e4;
  padding: 0 2rem 1rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity, transform;
  background: #ffffff;
  width: 100%;
}
.myCheckout__item--placeholder .sidecart__inner__list__item__image span {
  background: rgba(0, 0, 0, 0.1);
  -webkit-animation-duration: 1.25s;
          animation-duration: 1.25s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: placeHolderShimmer;
          animation-name: placeHolderShimmer;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  background: rgba(0, 0, 0, 0.1);
  background: linear-gradient(to right, #eaeaea 10%, #d5dadc 18%, #eaeaea 33%);
  background-size: 800px 104px;
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
.myCheckout__item--placeholder .sidecart__inner__list__item__details p {
  position: relative;
  width: 100%;
  line-height: 1.2;
}
.myCheckout__item--placeholder .sidecart__inner__list__item__details p:after {
  position: absolute;
  content: "";
  display: block;
  top: 2px;
  bottom: 2px;
  left: 0;
  right: 0;
  -webkit-animation-duration: 1.25s;
          animation-duration: 1.25s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: placeHolderShimmer;
          animation-name: placeHolderShimmer;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  background: rgba(0, 0, 0, 0.1);
  background: linear-gradient(to right, #eaeaea 10%, #d5dadc 18%, #eaeaea 33%);
  background-size: 800px 104px;
}
.myCheckout__item--placeholder .sidecart__inner__list__item__details p:last-of-type {
  width: 80%;
}
.myCheckout__item__image {
  display: block;
  width: 10rem;
  position: relative;
  margin: -1rem 0;
}
.myCheckout__item__image span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.myCheckout__item__details {
  width: calc(100% - 10rem);
  padding: 0 2rem;
}
.myCheckout__item__details p {
  line-height: 1.2;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.myCheckout__item__details p i {
  font-style: normal;
  font-weight: bold;
  font-size: 1.2rem;
}
.myCheckout__item__details p span {
  font-size: 70%;
}
.myCheckout__item__details p:last-of-type {
  font-size: 1.8rem;
}
.myCheckout__item__remove {
  position: absolute;
  top: 0;
  right: 2rem;
}
.myCheckout__item__remove svg {
  display: inline-block;
  vertical-align: middle;
  width: 1rem;
  height: 1rem;
}

.js-my-checkout {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.checkoutLoading .js-my-checkout {
  opacity: 0.4;
  pointer-events: none;
}

.checkoutDetails .crumbs__wrap {
  padding-left: 0;
  padding-right: 0;
}

.crumbs {
  width: 100%;
}
.crumbs__wrap {
  margin: 0 auto;
  max-width: 786px;
  padding: 2rem;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.crumbs svg {
  margin: 0 0.8rem;
}
.crumbs.inactive {
  opacity: 0.5;
}
.crumbs .active {
  color: #00aeff;
}

.deliveryModal .crumbs {
  margin: 12rem auto 0;
}

.orderMethod .crumbs {
  margin: 12rem auto 0;
}

.guestModal__wrap .crumbs {
  margin: 12rem auto 0;
}

.fittingMethod .crumbs {
  margin: 14rem auto -5rem;
  width: 100%;
}

#Form_CheckoutForm_PaymentOption_Holder {
  list-style: none;
  padding: 0 !important;
}
#Form_CheckoutForm_PaymentOption_Holder #Form_CheckoutForm_PaymentOption {
  list-style: none;
  padding: 0 !important;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  justify-content: space-between;
}
#Form_CheckoutForm_PaymentOption_Holder #Form_CheckoutForm_PaymentOption li {
  width: calc(50% - 0.5rem);
}
#Form_CheckoutForm_PaymentOption_Holder input {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
#Form_CheckoutForm_PaymentOption_Holder input:checked + label {
  background: rgba(0, 174, 255, 0.4) !important;
}
#Form_CheckoutForm_PaymentOption_Holder input:checked + label:after {
  transform: translateY(-50%) rotate(43deg);
  opacity: 1;
}
#Form_CheckoutForm_PaymentOption_Holder label {
  position: relative;
}
#Form_CheckoutForm_PaymentOption_Holder label:before {
  position: absolute;
  content: "";
  display: block;
  display: block;
  right: 1rem;
  top: 1rem;
  transition: all 333ms ease;
  background: transparent;
  border: 1px solid #00aeff;
  width: 20px;
  height: 20px;
  border-radius: 0.3rem;
}
#Form_CheckoutForm_PaymentOption_Holder label:after {
  position: absolute;
  content: "";
  display: block;
  transform: rotate(43deg);
  width: 5px;
  height: 9px;
  border: 2px solid #ffffff;
  border-top: 0;
  border-left: 0;
  right: 27px;
  top: 3rem;
  transition: all 333ms ease;
  margin-top: -1px;
  right: 18px;
  top: 2rem;
  transform: translateY(-50%) rotate(20deg);
  opacity: 0;
}
#Form_CheckoutForm_PaymentOption_Holder li {
  width: 100%;
  border: 1px solid #00aeff;
  border-radius: 0.4rem;
  margin: 0;
  margin-bottom: 2rem;
  position: relative;
}
#Form_CheckoutForm_PaymentOption_Holder li:before {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  background: #00aeff;
  top: 3.8rem;
  left: 2rem;
  right: 9rem;
}
#Form_CheckoutForm_PaymentOption_Holder li:nth-child(1):after {
  position: absolute;
  content: "";
  display: block;
  content: "Click here to pay a 20% deposit to secure you spot in production.";
  color: #ffffff;
  font-size: 1.2rem;
  bottom: 1rem;
  left: 2rem;
  right: 2rem;
  line-height: 1.3;
  pointer-events: none;
}
#Form_CheckoutForm_PaymentOption_Holder li:nth-child(2):after {
  position: absolute;
  content: "";
  display: block;
  content: "Click here to pay in full for a seamless transaction.";
  color: #ffffff;
  font-size: 1.2rem;
  bottom: 1rem;
  left: 2rem;
  right: 2rem;
  line-height: 1.3;
  pointer-events: none;
}
#Form_CheckoutForm_PaymentOption_Holder label {
  padding: 1rem 2rem 6rem;
  margin: 0;
  cursor: pointer;
  transition: all 111ms ease;
  color: white !important;
  font-size: 1.6rem;
}
#Form_CheckoutForm_PaymentOption_Holder label:hover {
  background: rgba(0, 174, 255, 0.4);
}
.overflowHidden {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.submittingCheckout .inlineLoader {
  display: block !important;
  opacity: 1;
}
.submittingCheckout #Form_CheckoutForm_action_doSubmit {
  color: #00aeff;
  pointer-events: none;
}

.checkoutProcess__inner__form__constraint .inlineLoader {
  position: absolute;
  bottom: -0.4rem;
  z-index: 3;
}

.message.error {
  color: #00aeff !important;
}

.showMobile {
  display: none;
}

.checkoutLoader {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 444;
  background: #1c1c1c;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.checkoutLoader__loader {
  width: 14rem;
  height: 10rem;
}

.busy .checkoutLoader {
  opacity: 1;
  visibility: visible;
}

.autoComplete {
  display: inline-block;
  position: relative;
  width: 100%;
}
.autoComplete.visible .autoComplete__results {
  display: block !important;
}
.autoComplete.busy .autoComplete__input__loader {
  opacity: 1 !important;
}
.autoComplete__input {
  border: 1px solid #d7d9de;
  border-radius: 1000px;
  position: relative;
}
.autoComplete__input svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.5rem;
}
.autoComplete__input svg path {
  fill: #00aeff;
}
.autoComplete__input input {
  color: #00aeff;
  font-size: 10px;
  width: 15.5rem;
  font-weight: bold;
  border: 0;
  padding: 0.75rem 1.5rem 0.75rem 1.9rem;
  background: transparent;
  outline: none;
}
.autoComplete__input input::-webkit-input-placeholder {
  opacity: 1;
}
.autoComplete__input input:-moz-placeholder {
  opacity: 1;
}
.autoComplete__input input::-moz-placeholder {
  opacity: 1;
}
.autoComplete__input input:-ms-input-placeholder {
  opacity: 1;
}
.autoComplete__input__loader {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-bottom-color: transparent;
  border-left-color: transparent;
  width: 16px;
  height: 16px;
  -webkit-animation: rotate 0.8s linear 1s infinite;
          animation: rotate 0.8s linear 1s infinite;
  opacity: 0;
}
@-webkit-keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
.autoComplete__results {
  position: absolute;
  left: 0;
  right: 0;
  display: none;
  top: 50px;
  z-index: 3;
}
.autoComplete__results__inner {
  background: #ffffff;
  border-radius: 0.2rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: auto;
}
.autoComplete__results__inner__entry {
  background: #ffffff;
  color: #6f778a;
  padding: 0.5rem 1rem;
  font-size: 14px;
  display: block;
  position: relative;
  cursor: pointer;
}
.autoComplete__results__inner__entry:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: #f5f5f5;
}
.autoComplete__results__inner__entry:hover {
  color: #00aeff;
}
.autoComplete__results__inner__all {
  background: #00aeff;
  color: #ffffff;
  padding: 1rem;
  font-size: 10px;
  display: block;
  font-weight: bold;
  text-align: center;
}

/*------------------------------------------------------------------
flyover
------------------------------------------------------------------*/
.flyover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.9);
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 999999999;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
}
.flyover__close {
  width: calc(100% - 34rem - 40rem);
  width: calc(100% - 40rem);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background: transparent;
}
.flyover__inner {
  width: 40rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(100%);
  will-change: transform;
  cursor: default;
}
.flyover__inner__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  height: calc(100% - 20rem);
  position: relative;
  overflow: auto;
  padding-bottom: 5rem;
  overflow-y: scroll;
}
.flyover__inner__list::-webkit-scrollbar-track {
  background-color: #a6a6a6;
}
.flyover__inner__list::-webkit-scrollbar {
  width: 3px;
  height: 4px;
  background-color: #a6a6a6;
}
.flyover__inner__list::-webkit-scrollbar-thumb {
  background-color: #00aeff;
  border: 0;
}
.flyover__inner__list ::-webkit-scrollbar {
  -webkit-appearance: none;
}
.flyover__inner__list ::-webkit-scrollbar:vertical {
  width: 12px;
}
.flyover__inner__list ::-webkit-scrollbar-thumb:window-inactive {
  background: #41617d !important;
}
.flyover__inner__list__totals {
  padding: 0 2rem;
  width: 100%;
}
.flyover__inner__list__totals__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  font-size: 1.6rem;
}
.flyover__inner__list__totals__item--large {
  font-size: 2.2rem;
}
.flyover__inner__list__totals__item b {
  color: #00aeff;
}
.flyover__inner__list__totals__item span {
  font-weight: bold;
}
.flyover__inner__list__item {
  border-bottom: 1px solid #e4e4e4;
  padding: 0 2rem 1rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity, transform;
  background: #ffffff;
  width: 100%;
}
.flyover__inner__list__item .inlineLoader {
  top: 2rem;
}
.flyover__inner__list__item.busy {
  pointer-events: none;
  opacity: 0.3;
}
.flyover__inner__list__item.busy .inlineLoader {
  opacity: 1;
}
.flyover__inner__list__item--placeholder .sidecart__inner__list__item__image span {
  background: rgba(0, 0, 0, 0.1);
  -webkit-animation-duration: 1.25s;
          animation-duration: 1.25s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: placeHolderShimmer;
          animation-name: placeHolderShimmer;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  background: rgba(0, 0, 0, 0.1);
  background: linear-gradient(to right, #eaeaea 10%, #d5dadc 18%, #eaeaea 33%);
  background-size: 800px 104px;
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
.flyover__inner__list__item--placeholder .sidecart__inner__list__item__details p {
  position: relative;
  width: 100%;
  line-height: 1.2;
}
.flyover__inner__list__item--placeholder .sidecart__inner__list__item__details p:after {
  position: absolute;
  content: "";
  display: block;
  top: 2px;
  bottom: 2px;
  left: 0;
  right: 0;
  -webkit-animation-duration: 1.25s;
          animation-duration: 1.25s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: placeHolderShimmer;
          animation-name: placeHolderShimmer;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  background: rgba(0, 0, 0, 0.1);
  background: linear-gradient(to right, #eaeaea 10%, #d5dadc 18%, #eaeaea 33%);
  background-size: 800px 104px;
}
.flyover__inner__list__item--placeholder .sidecart__inner__list__item__details p:last-of-type {
  width: 80%;
}
.flyover__inner__list__item__image {
  display: block;
  width: 10rem;
  position: relative;
  margin: -1rem 0;
}
.flyover__inner__list__item__image span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.flyover__inner__list__item__details {
  width: calc(100% - 10rem);
  padding: 0 2rem;
}
.flyover__inner__list__item__details p {
  line-height: 1.2;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.flyover__inner__list__item__details p i {
  font-style: normal;
  font-weight: bold;
  font-size: 1.2rem;
}
.flyover__inner__list__item__details p span {
  font-size: 70%;
}
.flyover__inner__list__item__details p:last-of-type {
  font-size: 1.8rem;
}
.flyover__inner__list__item__details__quantity {
  display: inline-block;
  position: relative;
  width: 5rem;
  position: absolute;
  right: 1rem;
  top: 3.5rem;
}
.flyover__inner__list__item__details__quantity__input {
  padding: 0.3rem 0.5rem 0.3rem 1.2rem !important;
  font-size: 1.4rem !important;
  margin: 0;
}
.flyover__inner__list__item__details__quantity__add {
  border-radius: 0.1rem;
  display: block;
  width: 2rem;
  height: 1.7rem;
  position: absolute !important;
  top: 2px;
  right: 2px;
  line-height: 2rem;
  color: #ffffff;
  background: #00aeff;
}
.flyover__inner__list__item__details__quantity__add:hover {
  background: #008bcc;
}
.flyover__inner__list__item__details__quantity__add svg {
  width: 10px;
  height: 10px;
  transform: rotate(-90deg);
  position: relative;
  top: 50%;
  margin: 0 auto;
  top: -2px;
}
.flyover__inner__list__item__details__quantity__subtract {
  border-radius: 0.1rem;
  display: block;
  width: 2rem;
  height: 1.7rem;
  position: absolute !important;
  bottom: 2px;
  right: 2px;
  line-height: 2rem;
  color: #ffffff;
  background: #00aeff;
}
.flyover__inner__list__item__details__quantity__subtract:hover {
  background: #008bcc;
}
.flyover__inner__list__item__details__quantity__subtract svg {
  width: 10px;
  height: 10px;
  transform: rotate(90deg);
  position: relative;
  top: 50%;
  margin: 0 auto;
  top: -2px;
}
.flyover__inner__list__item__details__quantity__add, .flyover__inner__list__item__details__quantity__subtract {
  text-align: center;
  cursor: pointer;
}
.flyover__inner__list__item__details__quantity__add svg path, .flyover__inner__list__item__details__quantity__subtract svg path {
  fill: #ffffff;
}
.flyover__inner__list__item__remove {
  position: absolute;
  top: -0.5rem;
  right: 2rem;
}
.flyover__inner__list__item__remove svg {
  display: inline-block;
  vertical-align: middle;
  width: 1.8rem;
  height: 1.8rem;
}
.flyover__inner__close {
  position: absolute;
  cursor: pointer;
  top: 2rem;
  left: 2rem;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  outline: none;
  padding: 0;
  z-index: 3;
  width: 3rem;
}
.flyover__inner__close svg {
  width: 3rem;
  height: 3rem;
}
.flyover__inner__close svg path {
  fill: #00aeff;
}
.flyover__inner__title {
  position: relative;
  width: 100%;
  padding: 6rem 2rem 2rem;
}
.flyover__inner__title p {
  margin: 0;
  position: relative;
}
.flyover__inner__title p:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  top: 54%;
  background: #000000;
  opacity: 0.2;
}
.flyover__inner__title span {
  font-size: 2.6rem;
  position: relative;
  padding-right: 1rem;
  background: #ffffff;
  text-transform: uppercase;
  z-index: 1;
}
.flyover__inner__actions {
  background: #ffffff;
  border-top: 1px solid #e4e4e4;
  width: 100%;
  margin-top: 2rem;
  padding: 3.4rem 2rem;
  position: absolute;
  bottom: 0;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 1;
  transform: translateY(0);
}
.flyover__inner__actions .btn, .flyover__inner__actions .contactModal__wrap__content [type=submit], .contactModal__wrap__content .flyover__inner__actions [type=submit],
.flyover__inner__actions .contactModal__wrap__content .action,
.contactModal__wrap__content .flyover__inner__actions .action,
.flyover__inner__actions .orderModal__wrap__content [type=submit],
.orderModal__wrap__content .flyover__inner__actions [type=submit],
.flyover__inner__actions .orderModal__wrap__content .action,
.orderModal__wrap__content .flyover__inner__actions .action,
.flyover__inner__actions .summaryModal__wrap__content [type=submit],
.summaryModal__wrap__content .flyover__inner__actions [type=submit],
.flyover__inner__actions .summaryModal__wrap__content .action,
.summaryModal__wrap__content .flyover__inner__actions .action,
.flyover__inner__actions .guestModal__wrap__content [type=submit],
.guestModal__wrap__content .flyover__inner__actions [type=submit],
.flyover__inner__actions .guestModal__wrap__content .action,
.guestModal__wrap__content .flyover__inner__actions .action,
.flyover__inner__actions .loginModal__wrap__content [type=submit],
.loginModal__wrap__content .flyover__inner__actions [type=submit],
.flyover__inner__actions .loginModal__wrap__content .action,
.loginModal__wrap__content .flyover__inner__actions .action {
  width: 100%;
  background: #3ac044;
}

.flyoverActive {
  position: relative;
  max-height: 100%;
  overflow: hidden;
}
.flyoverActive body {
  position: relative;
  max-height: 100%;
  overflow: hidden;
}
.flyoverActive .flyover {
  visibility: visible;
  opacity: 1;
}
.flyoverActive .flyover__inner:after {
  opacity: 1;
}

/*------------------------------------------------------------------
Print styles
------------------------------------------------------------------*/
/*------------------------------------------------------------------
Merch page
------------------------------------------------------------------*/
.Utemaster\\Site\\ShopProductPage .flyover + .bread-crumbs {
  display: none;
}

[data-segment=merch-product] .bread-crumbs {
  display: block !important;
}

.merch {
  width: 100%;
  position: relative;
  margin: 8rem auto;
}
.merch .bread-crumbs {
  display: block !important;
  margin: 0 0 0.5rem;
  background: transparent;
  padding: 0;
  font-size: 1.2rem;
}
.merch .bread-crumbs * {
  color: #3a3a3a;
  padding: 0;
  font-weight: 600;
}
.merch__wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}
.merch__wrap__title h1 {
  color: black;
}
.merch__wrap .field {
  width: 100%;
}
.merch__wrap .select2-selection__arrow b {
  background-image: url('data:image/svg+xml; utf8, <svg width="15" height="9" viewBox="0 0 15 9" xmlns="http://www.w3.org/2000/svg"><path d="m12.984.261 1.348 1.478-7.089 6.464L.317 1.731 1.683.269l5.576 5.212z" fill="%2305B9E3" fill-rule="nonzero"/></svg>');
  background-repeat: no-repeat;
  width: 15px !important;
  left: 0px !important;
  top: 18px !important;
  height: 9px !important;
  display: block !important;
  border: 0 !important;
}
.merch__wrap__gallery {
  position: relative;
}
.merch__wrap__gallery__progess {
  width: 30%;
  position: absolute;
  right: 0;
  height: 2px;
  background: #e4e4e4;
}
.merch__wrap__gallery__progess__bar {
  width: 5%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #00aeff;
}
.merch__wrap__gallery__nav {
  margin-top: 3.6rem;
  position: relative;
  width: 100%;
}
.merch__wrap__gallery__nav .is-selected img {
  outline: 2px solid #00aeff;
}
.merch__wrap__gallery__nav__item {
  margin: 5px;
  max-width: 10rem;
}
.merch__wrap h1 {
  margin-top: -1rem;
  margin-bottom: 1rem;
}
.merch__wrap h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 3rem;
}
.merch__wrap h2 .price {
  font-size: 3.6rem;
  font-weight: 800;
  margin-right: 0.5rem;
}
.merch__wrap__part__content, .merch__wrap__details__content {
  margin-top: 4rem;
  margin-bottom: 4rem;
  max-width: 45rem;
}
.merch__wrap__part__content p, .merch__wrap__details__content p {
  font-size: 1.6rem;
}
.merch__wrap__part__content {
  margin-top: 0;
}
.merch__wrap__form form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 45rem;
}
.merch__wrap__form .select2-container {
  border: 1px solid #e4e4e4;
  margin-bottom: 10px;
  padding: 0.8rem;
}
.merch__wrap__form .select2-selection__rendered {
  background: white;
  font-weight: 500 !important;
  text-transform: uppercase;
}
.merch__wrap__form .select2-selection__arrow b {
  top: 26px !important;
}
.merch__wrap__form .field [type=text] {
  border: 1px solid #e4e4e4;
  box-shadow: none;
  font-weight: 500;
  padding: 15px 15px;
}
.merch__wrap__form [name=quantity] {
  margin-top: 0.4rem;
}
.merch__wrap__form [type=submit] {
  width: calc(100% - 23rem);
  margin-top: 2rem;
  border: 0;
  background: #00aeff;
  min-width: 13rem;
}

.quantity--inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  margin-right: 2rem;
  width: 18.2rem;
  border: 1px solid #e4e4e4;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.quantity--inline .quantity__subtract,
.quantity--inline .quantity__add {
  background: transparent;
  border: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.quantity--inline .quantity__subtract svg,
.quantity--inline .quantity__add svg {
  display: block;
}
.quantity--inline .quantity__subtract:hover svg path,
.quantity--inline .quantity__add:hover svg path {
  fill: #00aeff;
}
.quantity--inline .quantity__subtract {
  margin-right: 0.5rem;
}
.quantity--inline .quantity__quantity {
  width: 7rem;
  background: transparent;
  font-size: 3rem;
  text-align: center;
  padding: 0 0.5rem;
  margin: 0;
  border: 0;
  box-shadow: none;
}
.quantity--inline .quantity__add {
  margin-left: 0.5rem;
}

/*------------------------------------------------------------------
Crazy mobile layouts
------------------------------------------------------------------*/
.merch__wrap__gallery {
  order: 1;
  width: 60%;
  float: left;
  padding-right: 5rem;
}
.merch__wrap__gallery .carousel-status {
  position: absolute;
  font-weight: 600;
  color: #00aeff;
  position: absolute;
  left: 0;
  margin-top: 1.5rem;
}
.merch__wrap__gallery .progress-bar {
  height: 2px;
  width: 0;
  background: #979797;
  width: 26rem;
  position: relative;
  margin: 2.4rem 0 auto auto;
}
.merch__wrap__gallery .progress-bar-progress {
  position: absolute;
  top: -1px;
  height: 4px;
  position: absolute;
  left: 0;
  width: 33%;
  background: #00aeff;
}
.merch__wrap__gallery .flickity-button {
  display: block;
}
.merch__wrap__gallery .flickity-button path {
  fill: #a6a6a6;
}
.merch__wrap__gallery .flickity-page-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.merch__wrap__gallery .flickity-page-dots .dot {
  border-radius: 0;
  width: 5rem;
  display: block;
}

.merch__wrap__title,
.merch__wrap__price,
.merch__wrap__form,
.merch__wrap__part,
.merch__wrap__details {
  float: right;
  width: 40%;
}

.merch__wrap__title {
  order: 2;
}

.merch__wrap__price {
  order: 3;
}

.merch__wrap__form {
  order: 5;
}

.merch__wrap__part {
  order: 6;
}

.merch__wrap__details {
  order: 6;
}

/*------------------------------------------------------------------
Product Slider
------------------------------------------------------------------*/
.product-slider {
  position: relative;
  width: 100%;
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.product-slider .flickity-button {
  display: block;
  background: transparent;
}
.product-slider__heading {
  max-width: 768px;
  margin: 0 auto 3rem;
}
.product-slider__heading h2 {
  width: 100%;
  text-align: center;
}
.product-slider__slider {
  width: 100%;
}
.product-slider__slider__item {
  width: 20%;
  padding: 1rem;
  display: block;
}
.product-slider__slider__item.odd {
  padding-top: 10rem;
}
.product-slider__slider__item.even {
  padding-bottom: 10rem;
}
.product-slider__slider__item__link {
  display: block;
}
.product-slider__slider__item__link__image {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product-slider__slider__item__link__image img {
  width: 100%;
  height: auto;
  display: block;
}
.product-slider__slider__item__link__content {
  padding-top: 2rem;
  color: #555c5e;
  font-weight: 400;
}
.product-slider__slider__item__link__content svg {
  position: relative;
  top: 1px;
  margin-left: 0.5rem;
  opacity: 0;
  transform: translateX(0.5rem);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product-slider__slider__item__link:hover .product-slider__slider__item__link__image {
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.15);
}
.product-slider__slider__item__link:hover .product-slider__slider__item__link__content {
  color: #00aeff;
}
.product-slider__slider__item__link:hover .product-slider__slider__item__link__content svg {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (min-width: 320px) and (max-width: 767px) and (orientation: landscape) {
  .steps {
    position: relative;
  }
}
@media only screen and (min-width: 540px) and (max-width: 767px) {
  .builder__scene__vehicle {
    position: relative;
    margin-bottom: 10rem;
    margin-bottom: 30rem;
    top: 15% !important;
    margin-left: 0% !important;
    width: 100% !important;
  }
}
@media only screen and (min-width: 700px) {
  .steps__wrap__actions {
    border-top: 0px solid #ffffff;
  }
}
@media only screen and (min-width: 768px) {
  .button.skinny,
button.skinny,
input[type=button].skinny,
input[type=reset].skinny,
input[type=submit].skinny {
    max-width: 270px;
  }
  [type=color],
[type=date],
[type=datetime],
[type=datetime-local],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
input:not([type]),
textarea {
    line-height: 32px;
  }
  h1 {
    font-size: 36px;
  }
  .section-h1 {
    margin: 0 0 35px;
  }
  h2 {
    font-size: 28px;
  }
  .h2 {
    font-size: 28px;
  }
  .secondary-h2 {
    margin: 0 0 45px 0;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 22px;
  }
  p {
    font-size: 20px;
  }
  .p3 {
    font-size: 15px;
  }
  .hero-title {
    font-size: 72px;
    letter-spacing: 2px;
    line-height: 70px;
  }
  .hero-subtitle {
    font-size: 36px;
    line-height: 40px;
  }
  .super-heavyweight {
    font-size: 22px;
  }
  .super-heavyweight__blue {
    font-size: 22px;
  }
  .home-section-headings {
    font-size: 36px;
    line-height: 40px;
  }
  .mobile-only {
    display: none !important;
  }
  .footer {
    padding: 90px 25px 80px;
  }
  .footer .footer-logo {
    max-width: 475px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .footer .to-top {
    display: none;
  }
  .footer .contact-option {
    width: calc(33% - 10px);
    margin: 5px;
  }
  .footer .right-column {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .footer .contact-options {
    display: flex;
  }
  .footer .contact-options p {
    font-size: 15px;
    line-height: 20px;
  }
  .footer-navigation {
    padding-top: 30px;
    padding-bottom: 30px;
    justify-content: center;
    display: flex;
  }
  .home-banner .banner-links {
    padding-top: 75px;
  }
  .home-banner .banner-links {
    padding-top: 70px;
    padding-bottom: 60px;
  }
  .home-banner .banner-link .image-wrapper {
    height: 74px;
    width: 74px;
  }
  .home-banner .banner-link a {
    padding: 10px;
  }
  .home-banner .banner-link img {
    margin-bottom: 12px;
    width: 74px;
  }
  .home-banner .banner-link img {
    margin-bottom: 20px;
  }
  .home-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 85px;
  }
  .home-banner {
    padding-bottom: 0;
    padding-top: 154px;
    overflow: hidden;
  }
  .home-banner .banner-content {
    padding-top: 0;
  }
  .banner-video {
    display: block;
    position: absolute;
    height: 100%;
    width: 156%;
    top: 0;
    left: -28%;
  }
  .banner-video {
    width: 100%;
    left: 0;
  }
  .scroll-down {
    display: block;
  }
  .product-holder .header-wrapper h1 {
    width: unset;
  }
  .product-category {
    padding-top: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e4e4e4;
  }
  .product-list {
    padding-left: 25px;
    padding-right: 25px;
    margin-left: -10px;
    margin-right: -10px;
  }
  .product-preview {
    width: calc(33% - 20px);
    margin: 10px;
  }
  .product-preview p {
    font-size: 17px;
    line-height: 19px;
    padding: 15px;
  }
  .accordian-wrapper {
    display: none;
  }
  .teammember {
    width: calc(50% - 20px);
    height: 350px;
    margin: 10px;
  }
  .teammember .name {
    font-size: 28px;
  }
  .teammember .role {
    font-size: 15px;
  }
  .theteam .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  .theteam .intro-content {
    padding-bottom: 30px;
  }
  .theteam .history {
    padding-bottom: 40px;
  }
  .teammembers_list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
    padding-bottom: 60px;
  }
  .header-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .contact-container .contact-wrapper {
    margin-left: 25px;
    margin-right: 25px;
    padding-left: 60px;
    padding-right: 60px;
  }
  .contact-container .content {
    padding: 56px 25px 80px;
  }
  label {
    font-size: 20px;
    line-height: 32px;
  }
  .map {
    height: 600px;
  }
  .newspage .content {
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 160px;
  }
  .newspage .p3.blue-itl {
    margin-bottom: 23px;
  }
  .lastest-articles_wrapper {
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 110px;
  }
  .news-image {
    padding-bottom: 45px;
  }
  .home-products {
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .home-who {
    text-align: left;
    height: 100vh;
    padding-top: 192px;
    padding-bottom: 80px;
    display: flex;
  }
  .home-who .container {
    width: 100%;
  }
  .home-who .header-wrapper {
    text-align: left;
    padding-left: 0;
  }
  .home-who .content-wrapper {
    max-width: 300px;
    margin-right: auto;
  }
  .home-who .button {
    margin-top: 40px;
  }
  .find-on-facebook {
    text-align: left;
    margin-left: auto;
  }
  .home-contact {
    text-align: right;
    height: 100vh;
    padding-top: 0;
    padding-bottom: 80px;
    display: flex;
  }
  .home-contact .container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
  }
  .home-contact .header-wrapper {
    text-align: right;
    padding-right: 0;
  }
  .home-contact .content-wrapper {
    max-width: 300px;
    margin-left: auto;
  }
  .home-contact .button {
    margin-top: 40px;
  }
  .home-products .button-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .featured-list {
    display: flex;
    flex-wrap: wrap;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 60px;
  }
  .featured-product {
    width: calc(50% - 20px);
    margin: 10px;
    height: 410px;
  }
  .featured-product p {
    font-size: 30px;
  }
  .build-landing-container .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  .build-landing-container {
    padding: 35px 0 70px;
  }
  .build-category {
    display: flex;
    margin: 0 0 40px 0;
    padding: 60px 40px 45px 60px;
  }
  .build-category-title-teaser {
    width: 50%;
  }
  .build-category-title {
    margin: 0 0 15px 0;
    max-width: none;
    text-align: left;
    padding-right: 40px;
  }
  .build-category-img-teaser {
    margin: 0;
    max-width: none;
    width: 50%;
  }
  .build-category-divider {
    margin: 0 0 83px;
  }
  .build-category-divider-label {
    margin: -15px 0;
  }
  .build-container .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  .build-container {
    padding: 0 0 130px;
  }
  .build-vehicle-wrapper {
    margin: 0 20px 40px;
  }
  .build-select-wrapper {
    margin: 0 0 45px;
  }
  .build-summary-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 1rem auto;
  }
  .build-summary-wrapper .build-summary-actions {
    margin-bottom: 0;
  }
  .build-summary-wrapper h1 {
    display: flex;
    align-items: center;
    text-align: left;
    width: 100%;
    margin: 0;
  }
  .build-select-tabs {
    margin: 0 0 20px;
    flex-wrap: nowrap;
  }
  .build-select-tab {
    font-size: 15px;
    padding: 25px 40px;
    width: auto;
    text-align: left;
  }
  .build-select-tab.is-active::after {
    width: 100%;
    height: 5px;
  }
  .build-select-container .VueCarousel-navigation-button[type=button] {
    top: 115%;
    background-size: 2rem;
  }
  .build-select-container .VueCarousel-navigation-button[type=button].VueCarousel-navigation-prev {
    transform: translateY(-50%);
  }
  .build-select-container .VueCarousel-navigation-button[type=button].VueCarousel-navigation-next {
    transform: translateY(-50%) rotate(180deg);
  }
  .VueCarousel-slide:last-of-type .build-select-tile {
    border-right: 130px;
  }
  .build-option {
    background-size: cover;
    height: 190px;
    width: 100%;
  }
  .build-summary-info-wrapper .upper-controls {
    margin: 35px 0 50px 0;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
  .build-summary-info-wrapper .cart-controls {
    flex-direction: row;
    margin: 35px 0;
  }
  .build-summary-info-wrapper .cart-controls .button {
    margin: 0;
  }
  .build-summary-info-wrapper .cart-controls .button:not(:first-child) {
    margin-top: 0px;
    margin-left: 15px;
  }
  .build-summary-info-wrapper .lower-region {
    padding: 0;
    margin-bottom: -5px;
  }
  .build-summary-info-wrapper .lower-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5px 0 25px 0;
    border-top: 1px solid lightgray;
    border-bottom: 1px solid lightgray;
    margin: 25px 0 25px 0;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
  .build-summary-info-wrapper .lower-controls a.button {
    align-self: flex-end;
    margin-bottom: 0;
    flex-basis: calc(50% - 10px);
    max-width: 50%;
  }
  .build-summary-info-wrapper .lower-controls .button:first-of-type {
    margin-bottom: 20px;
  }
  .build-summary-info-wrapper .lower-controls .input-wrapper {
    width: 100%;
    flex-basis: calc(50% - 10px);
    margin: 0;
    margin-bottom: 20px;
  }
  .build-summary-info-wrapper .build-summary-model {
    margin: 0 0 35px;
  }
  .build-summary-info-wrapper .build-summary-info {
    display: inline-block;
    padding: 0 0 0 5px;
  }
  .cart-container .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  .cart-container {
    padding: 0 0 100px;
  }
  .cart-column-wrapper {
    margin: 5px 0 50px 0;
  }
  .cart-column:nth-of-type(2n - 1) {
    margin: 0 0 35px;
  }
  .cart-model-wrapper {
    margin: 0 0 30px;
  }
  .cart-model-label {
    display: inline-block;
    margin: 0;
  }
  .cart-model-name {
    display: inline-block;
  }
  .cart-model-img {
    height: 280px;
    margin: 0;
  }
  .cart-model-cta {
    display: block;
  }
  .cart-table-container {
    margin: 0 0 20px;
  }
  .cart-shipping-teaser {
    width: 80%;
  }
  .cart-shipping-left-panel {
    padding: 0 0 15px;
  }
  .cart-btn-wrapper {
    margin-top: 40px;
  }
  .black-overlay .pulled-left {
    max-width: 780px;
  }
  .login-container .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  .login-container {
    padding: 0 0 100px;
  }
  .login-teaser:nth-of-type(2n - 1) {
    margin-bottom: 75px;
    padding: 0 12px 70px;
  }
  .login-panel {
    margin: 0 auto;
    width: 80%;
  }
  .gallery-element .gallery-container {
    padding-left: 25px;
    padding-right: 25px;
  }
  .gallery-element .gallery-image {
    height: 740px;
  }
  .product-table {
    padding-left: 25px;
    padding-right: 25px;
  }
  .product-table-head {
    text-align: left;
  }
  .product-table-product {
    align-items: center;
    display: flex;
    padding: 0;
  }
  .product-table-img-block {
    margin-bottom: 0;
    max-width: 250px;
    margin-bottom: 30px;
  }
  .product-table-img {
    margin: 0 22px 0 15px;
  }
  .product-table-text-block {
    flex-wrap: nowrap;
  }
  .product-table-price {
    text-align: right;
    width: unset;
  }
  .product-table-total-box {
    max-width: 355px;
    padding: 5px 0 30px;
  }
  .product-table-btn-wrapper {
    text-align: right;
  }
  .utebuilder-wrapper {
    flex-wrap: nowrap;
  }
  .utebuilder-title {
    width: auto;
    display: inline-block;
  }
  .utebuilder-dealertoggle {
    margin: 0;
  }
  .utebuilder-wrapper {
    flex-wrap: nowrap;
  }
  .utebuilder-title {
    width: auto;
    display: inline-block;
  }
  .utebuilder-dealertoggle {
    margin: 0;
  }
  .content-element__content {
    padding-left: 25px;
    padding-right: 25px;
  }
  .action-btn {
    transform: none;
    left: auto;
    right: 2.5rem;
  }
  .tab-menu .tab-menu-list {
    display: flex;
    width: 100%;
  }

  .tab-menu .tab-menu-list li:last-of-type a {
    border-right: none;
  }

  .tab-menu .tab-menu-list a {
    padding: 25px 10px;
    border-right: 1px solid #fff;
  }
  .bread-crumbs {
    padding-left: 30px;
  }
  .builder__scene {
    position: relative;
    overflow: hidden;
  }
  .builder__scene:after {
    content: "";
    position: relative;
    display: block;
    padding-bottom: 98.9583333333%;
  }
  .builder__scene__actions__item--summary {
    display: none !important;
  }
  .picker__grid__item__icon:hover:before {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  .memberActive .sidecart__inner__list {
    max-height: calc(100% - 53.2rem);
  }
  .Utemaster\\Site\\CheckoutPage .middleColumn {
    flex-wrap: wrap;
    display: flex;
  }
  .Utemaster\\Site\\CheckoutPage .middleColumn .optionset,
.Utemaster\\Site\\CheckoutPage .middleColumn .fieldgroup-field {
    width: 100%;
  }
  .Utemaster\\Site\\CheckoutPage .middleColumn .optionset input,
.Utemaster\\Site\\CheckoutPage .middleColumn .fieldgroup-field input {
    border-radius: 0.2rem;
  }
  .Utemaster\\Site\\CheckoutPage .middleColumn .fieldgroup-field#Form_CheckoutForm_FirstName_Holder,
.Utemaster\\Site\\CheckoutPage .middleColumn .fieldgroup-field#Form_CheckoutForm_Suburb_Holder {
    width: calc(50% - 0.5rem);
    margin-right: 0.5rem;
  }
  .Utemaster\\Site\\CheckoutPage .middleColumn .fieldgroup-field#Form_CheckoutForm_Surname_Holder,
.Utemaster\\Site\\CheckoutPage .middleColumn .fieldgroup-field#Form_CheckoutForm_City_Holder {
    width: calc(50% - 0.5rem);
    margin-left: 0.5rem;
    position: relative;
    right: -1px;
  }
}
@media only screen and (min-width: 800px) {
  .banner-video {
    width: 150%;
    left: -25%;
  }
}
@media only screen and (min-width: 968px) {
  .builder__orientation {
    top: 30%;
    width: 100%;
  }
  .builder__orientation p {
    display: none;
  }
  .builder__orientation .builder__orientation__wrap {
    width: 100%;
    justify-content: space-between;
  }
  .builder__orientation .builder__orientation__wrap__next svg,
.builder__orientation .builder__orientation__wrap__previous svg {
    width: 96px;
    height: 96px;
  }
  .builder__orientation .builder__orientation__wrap__previous {
    left: 0;
  }
  .builder__orientation .builder__orientation__wrap__next {
    right: 0;
  }
  .builder__scene {
    position: relative;
    max-height: 1000px;
  }
  .builder__scene:after {
    content: "";
    position: relative;
    display: block;
    padding-bottom: 87.5%;
  }
  .picker--categories .picker__grid__slider__item .picker__grid__slider__item__name {
    padding: 4rem 2rem;
    min-height: 13rem;
  }
  .order:after {
    position: absolute;
    content: "";
    display: block;
    background: white;
    top: -4rem;
    bottom: 0;
    right: 0;
    left: 50%;
    z-index: 1;
  }
  .order__wrap {
    color: #ffffff;
  }
  .order__wrap__details p {
    color: #ffffff;
  }
  .checkoutProcess__inner__cart__constraint__payment {
    display: none;
  }
  .checkoutProcess__inner__cart__constraint__proceed {
    display: none;
  }
  .product-slider--4 .flickity-button {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .header-wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .contact-container .content .content-wrapper {
    border-left: 4px solid #e4e4e4;
    padding-left: 55px;
  }
  .map {
    height: 700px;
  }
  .content-top--mobile {
    display: none;
  }
  .content-top--desktop {
    display: block;
  }
  .build-container .container {
    padding-left: 45px;
  }
  .build-vehicle-wrapper {
    margin: 0 0 30px;
    text-align: right;
  }
  .build-vehicle-stack {
    width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .build-select-wrapper {
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 35px;
  }
  .build-select-container .VueCarousel-navigation-button[type=button] {
    top: 50%;
    height: 80px;
  }
  .build-select-container .VueCarousel-navigation-button[type=button].VueCarousel-navigation-prev {
    left: -45px;
  }
  .build-select-container .VueCarousel-navigation-button[type=button].VueCarousel-navigation-next {
    right: -45px;
  }
  .build-option {
    height: 160px;
  }
  .build-option.empty {
    display: block;
  }
  .build-option_title {
    font-size: 20px;
  }
  .build-option_price {
    font-size: 20px;
  }
  .build-summary-info-wrapper .upper-controls .field-wrapper {
    flex-basis: 65%;
    margin-bottom: 0;
  }
  .build-summary-info-wrapper .upper-controls .input-wrapper {
    flex-basis: 30%;
  }
  .build-summary-info-wrapper .cart-controls .button {
    flex-basis: 30%;
  }
  .build-summary-info-wrapper .lower-region {
    margin-bottom: 0;
  }
  .build-summary-info-wrapper .lower-controls .input-wrapper {
    flex-basis: 30%;
    margin-bottom: 0;
  }
  .build-summary-info-wrapper .build-summary-model {
    margin: 0;
  }
  .build-summary-info-wrapper .build-summary-info-label {
    display: block;
  }
  .build-summary-info-wrapper .build-summary-info {
    display: block;
    padding: 0;
  }
  .cart-container input:not([type=button]) {
    text-align: left;
  }
  .cart-container {
    padding: 0 0 140px;
  }
  .cart-column-wrapper {
    display: flex;
    margin: 10px 0 90px;
  }
  .cart-column {
    text-align: left;
    padding: 0 0 20px;
    width: 50%;
  }
  .cart-column:nth-of-type(2n - 1) {
    border-bottom: none;
    border-right: 4px solid #e4e4e4;
    margin: 0;
  }
  .cart-column:nth-of-type(2n - 1) .cart-column-panel {
    padding: 0 60px 0 0;
  }
  .cart-column:nth-of-type(2n) .cart-column-panel {
    padding: 0 0 0 60px;
  }
  .cart-column-panel {
    margin: 0;
    max-width: none;
  }
  .cart-model-img {
    height: 260px;
  }
  .cart-label {
    margin: 0 0 10px;
  }
  .cart-purchaser {
    margin: 0 0 30px 0;
  }
  .cart-table-container {
    margin: 0 0 50px;
  }
  .cart-shipping-wrapper {
    display: flex;
    text-align: left;
  }
  .cart-shipping-teaser {
    margin: 0;
    width: 50%;
  }
  .cart-shipping-left-panel {
    padding: 0 20px 0 0;
  }
  .cart-btn-wrapper {
    margin-top: 0;
    margin-left: auto;
    margin-right: 0;
  }
  .login-container {
    padding: 0 0 140px;
  }
  .login-columns {
    display: flex;
  }
  .login-teaser {
    margin: 0;
    padding: 0;
    text-align: left;
    width: 50%;
  }
  .login-teaser:nth-of-type(2n - 1) {
    border-bottom: none;
    border-right: 4px solid #00aeff;
    margin: 0;
    padding: 0;
  }
  .login-teaser:nth-of-type(2n - 1) .login-panel {
    padding: 0 60px 0 0;
  }
  .login-teaser:nth-of-type(2n) .login-panel {
    padding: 0 0 0 60px;
  }
  .login-panel {
    margin: 0;
    width: 100%;
  }
  .account-input-group {
    margin: 0 0 35px;
    overflow: hidden;
  }
  .takeover__wrap .js-opacity-2-5 {
    min-width: 420px;
  }
}
@media only screen and (min-width: 1140px) {
  .header__wrap__navburger {
    display: none;
  }
  .merch__wrap__gallery {
    min-height: 80rem;
  }
}
@media only screen and (min-width: 1200px) {
  .inline-field {
    float: left;
    width: 50%;
  }
  .inline-field:nth-of-type(2n - 1) {
    padding: 0 10px 0 0;
  }
  .inline-field:nth-of-type(2n) {
    padding: 0 0 0 10px;
  }
  h1 {
    font-size: 40px;
  }
  .section-h1 {
    text-align: left;
  }
  h2 {
    font-size: 33px;
  }
  .h2 {
    font-size: 33px;
  }
  .secondary-h2 {
    margin: 0 0 15px 0;
  }
  h3 {
    font-size: 33px;
  }
  h4 {
    font-size: 24px;
  }
  p {
    font-size: 20px;
  }
  .p3 {
    font-size: 16px;
  }
  .hero-title {
    font-size: 80px;
    line-height: 78px;
  }
  .hero-subtitle {
    font-size: 44px;
    line-height: 48px;
  }
  .blue-bar_left:after {
    top: 28px;
    left: calc(-50vw - 20px);
  }
  .blue-bar_right:after {
    top: 20px;
    right: calc(-50vw - 20px);
  }
  .super-heavyweight {
    font-size: 24px;
  }
  .super-heavyweight__blue {
    font-size: 24px;
  }
  .home-section-headings {
    font-size: 40px;
    line-height: 44px;
  }
  .tablet-down {
    display: none !important;
  }
  .footer {
    padding-bottom: 100px;
  }
  .footer .container {
    display: flex;
  }
  .footer .footer-logo {
    max-width: 315px;
    margin-left: 0;
  }
  .footer .contact-option {
    text-align: right;
    width: 100%;
  }
  .footer .left-column {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .footer .right-column {
    width: 280px;
    padding-bottom: 0;
    padding-top: 0;
    text-align: right;
  }
  .footer .contact-options {
    display: block;
  }
  .footer .contact-options p {
    font-size: 15px;
    line-height: 17px;
  }
  .site-info {
    padding-left: 0;
    padding-top: 30px;
  }
  .site-info.mobile {
    display: none;
  }
  .site-info.desktop {
    text-align: left;
    display: block;
  }
  .footer-navigation {
    justify-content: flex-start;
  }
  .product-category {
    padding-bottom: 80px;
  }
  .product-category .category-title {
    text-align: left;
    padding-left: 25px;
  }
  .product-preview {
    width: calc(25% - 20px);
  }
  .product-preview p {
    font-size: 18px;
    line-height: 20px;
    padding: 20px;
  }
  .teammember {
    width: calc(25% - 30px);
    height: 260px;
    margin: 15px;
  }
  .teammember .name {
    font-size: 26px;
  }
  .theteam .intro-content {
    padding-bottom: 40px;
    text-align: left;
  }
  .theteam .history {
    display: flex;
    padding-bottom: 60px;
  }
  .theteam .history_left {
    padding-bottom: 0;
    width: 50%;
    padding-right: 100px;
  }
  .theteam .history_right {
    padding-top: 0;
    width: 50%;
    padding-left: 100px;
    border-top: none;
    border-left: 4px solid #00aeff;
  }
  .teammembers_list {
    margin-left: -15px;
    margin-right: -15px;
    padding-bottom: 80px;
  }
  .contact-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    padding-bottom: 140px;
  }
  .contact-container .contact-wrapper {
    margin-left: 0;
    margin-right: 0;
    padding-left: 25px;
    width: 50%;
    border-bottom: none;
    border-top: none;
    padding-bottom: 0;
    padding-top: 0;
  }
  .contact-container .content {
    padding-top: 0;
    padding-left: 0;
    width: 50%;
    text-align: left;
    padding-bottom: 0;
  }
  label {
    line-height: 23px;
  }
  .newspage {
    margin-top: 4rem;
  }
  .newspage .container {
    display: flex;
  }
  .newspage .content {
    width: 75%;
    padding-left: 0;
    padding-right: 120px;
  }
  .newspage .p3.blue-itl {
    margin-bottom: 28px;
  }
  .lastest-articles_wrapper {
    width: 25%;
  }
  .lastest-articles_wrapper .latest-articles {
    padding-top: 24px;
  }
  .news-image {
    padding-bottom: 35px;
  }
  .home-who,
.home-banner {
    height: calc(100vh - 120px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .home-products {
    padding-top: 140px;
    padding-bottom: 150px;
  }
  .home-who {
    padding-top: 0;
    padding-bottom: 0;
  }
  .home-contact {
    padding-top: 160px;
    padding-bottom: 80px;
    display: flex;
  }
  .featured-list {
    padding-bottom: 90px;
    padding-top: 40px;
  }
  .featured-product {
    width: calc(25% - 20px);
    height: 530px;
    margin: 10px;
  }
  .featured-product p {
    font-size: 26px;
  }
  .section-navigation {
    display: block;
    position: fixed;
    right: 35px;
    top: 50%;
  }
  .build-landing-container {
    padding: 45px 0 110px;
  }
  .build-category {
    padding: 60px 70px 45px 100px;
  }
  .build-category-title-teaser {
    width: 60%;
  }
  .build-category-img-teaser {
    width: 40%;
  }
  .build-container {
    padding: 0 0 140px;
  }
  .build-summary-info-wrapper .upper-controls {
    display: flex;
    text-align: left;
    justify-content: space-between;
    align-items: flex-start;
    margin: 30px 0 20px 0;
  }
  .build-summary-info-wrapper .lower-controls {
    text-align: left;
    align-items: flex-end;
    margin: 20px 0 20px 0;
    padding: 25px 0 25px 0;
  }
  .build-summary-info-wrapper .lower-controls a.button {
    flex-basis: 30%;
    margin-top: 50px;
  }
  .build-summary-info-wrapper .lower-controls .button:first-of-type {
    margin-bottom: 0;
  }
  .build-summary-info-wrapper .lower-controls .button:not(:last-of-type) {
    margin-right: 15px;
  }
  .gallery-element .gallery-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
  .content-element__content {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
  .tab-menu.hug-top {
    top: 120px;
  }

  .tab-menu .tab-menu-list a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .bread-crumbs {
    display: block;
    padding-left: 40px;
  }
}
@media (min-width: 1280px) {
  .news-preview {
    margin-right: 15px;
    margin-left: 15px;
  }
  .news-preview {
    width: calc(33% - 30px);
  }
  .news-preview.first-news {
    display: flex;
    margin-bottom: 70px;
    border-bottom: none;
  }
  .news-preview.first-news .image-wrapper {
    padding-bottom: 0;
    padding-right: 60px;
  }
  .news-preview.first-news .content {
    padding-top: 0;
    border-left: 4px solid #e4e4e4;
    padding-left: 55px;
  }
  .news-preview_list {
    margin-left: -15px;
    margin-right: -15px;
    padding-bottom: 80px;
  }
  .openings-list {
    max-width: 960px;
    margin-right: auto;
    padding-bottom: 90px;
  }
  .opening {
    padding-bottom: 30px;
    text-align: left;
  }
  .application {
    padding-top: 120px;
    padding-bottom: 130px;
  }
  .application-form .btn-toolbar {
    padding-top: 65px;
  }
  .application-form .btn-toolbar {
    text-align: left;
  }
  .application-form {
    max-width: 570px;
    margin-right: auto;
  }
  .find-on-facebook {
    margin-right: auto;
    margin-left: 0;
    position: absolute;
    bottom: 0;
  }
  .home-contact .content {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .home-contact .header-wrapper {
    margin-left: auto;
    margin-right: 0;
  }
  .extra-info .panel-wrapper {
    display: flex;
    flex-wrap: wrap;
  }
  .extra-info .cart-shipping-left-panel {
    width: 50%;
  }
  .cart-model-img .build-vehicle-stack {
    width: 100%;
  }
  .profile-container {
    padding-bottom: 60px;
  }
  .profile-container {
    padding-top: 120px;
  }
  .navigation-spacing_elements {
    padding-top: 120px;
  }
  .normal-page .container {
    padding-bottom: 60px;
  }
  .banner-element {
    height: calc(100vh - 120px);
    padding-top: 100px;
    padding-bottom: 85px;
    text-align: left;
  }
  .banner-element .hero-subtitle {
    font-size: 80px;
  }
  .banner-element .cta {
    width: 370px;
  }
  .banner-element .made-in-nz {
    margin-bottom: 27px;
  }
  .banner-element .content-wrapper {
    font-size: 16px;
    padding-bottom: 0;
  }
  .gallery-element .gallery-image {
    height: 900px;
  }
  .gallery-element .flickity-prev-next-button.next {
    right: 40px;
  }
  .gallery-element .flickity-prev-next-button.previous {
    left: 40px;
  }
  .two-column-text-element {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .two-column-text-element .image-container {
    display: block;
  }
  .two-column-text-element .container {
    display: flex;
  }
  .two-column-text-element .left-column,
.two-column-text-element .right-column {
    width: 50%;
  }
  .two-column-text-element .left-column {
    padding-bottom: 0;
    text-align: left;
    padding-right: 100px;
  }
  .two-column-text-element .right-column {
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 100px;
  }
  .two-column-text-element .right-column .with-separator {
    border-top: none;
    border-left: 4px solid #00aeff;
  }
  .single-column-text-element {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .single-column-text-element {
    padding-top: 95px;
    padding-bottom: 90px;
  }
  .single-column-text-element .container {
    padding-left: 25px;
    padding-right: 25px;
    text-align: left;
  }
  .single-column-text-element .content-wrapper {
    max-width: 870px;
    margin-right: auto;
  }
  .text-above-image {
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
  }
  .text-above-image.ImageGap .content {
    max-width: 710px;
    padding-right: 110px;
    margin-left: auto;
  }
  .text-above-image.ImageGap .image {
    width: 45%;
  }
  .text-above-image.ImageClose .content {
    max-width: 710px;
    margin-left: auto;
  }
  .text-above-image.ImageClose .image {
    width: 45%;
  }
  .text-above-image.ImageOverlap {
    display: block;
  }
  .text-above-image.ImageOverlap .content {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 515px;
    padding-bottom: 50px;
    position: relative;
  }
  .text-above-image.ImageOverlap .image {
    width: 1100px;
    margin-left: auto;
    margin-top: -100px;
  }
  .text-above-image .content {
    text-align: left;
  }
  .text-image-element.is-reverse .left-text {
    order: 2;
  }
  .text-image-element.is-reverse .right {
    order: 1;
  }
  .text-image-element.is-reverse .left-text {
    padding-bottom: 0;
    padding-right: 0px;
    padding-left: 20px;
    width: 50%;
  }
  .text-image-element.is-reverse .right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0px;
    padding-right: 20px;
    width: 50%;
  }
  .text-image-element {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .text-image-element {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .text-image-element .container {
    display: flex;
    padding-left: 0;
    padding-right: 0;
  }
  .text-image-element .left-text {
    padding-bottom: 0;
    padding-right: 20px;
    width: 50%;
  }
  .text-image-element .right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 20px;
    width: 50%;
  }
  .text-on-image {
    text-align: left;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .text-on-image .content-wrapper {
    max-width: 570px;
  }
  .feature-silder {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .feature-silder .flickity-prev-next-button {
    top: 50%;
  }
  .feature-silder .flickity-prev-next-button.next {
    right: -30px;
  }
  .feature-silder .flickity-prev-next-button.previous {
    left: -30px;
  }
  .slide-navigation {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 25px;
    padding-right: 25px;
  }
  .go-to-feature:first-of-type {
    margin-left: 0;
  }
  .feature-slide {
    display: flex;
    align-items: center;
    padding-left: 25px;
    padding-right: 25px;
  }
  .feature-slide .image {
    width: 530px;
    order: 1;
    padding-left: 0;
    padding-right: 0;
  }
  .feature-slide .content {
    padding-left: 60px;
    padding-right: 25px;
    width: 60%;
    order: 2;
  }
  .content-element__content {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .gallery-grid {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .gallery-grid .lightbox-link {
    width: 25%;
  }
  .gallery-grid .lightbox-link:nth-of-type(7n), .gallery-grid .lightbox-link:nth-of-type(7n-1), .gallery-grid .lightbox-link:nth-of-type(7n-2) {
    width: calc(100% / 3);
  }
  .lightbox-gallery-element {
    padding: 80px 0px;
  }
  .lightbox-gallery-element .container__image {
    grid-template-columns: repeat(5, 1fr);
  }
  .product-table-img-block {
    max-width: 300px;
  }
  .product-table-remove::after {
    height: 34px;
    width: 34px;
  }
  .product-table-img {
    margin: 0 43px 0 20px;
  }
  .product-table-total-box {
    max-width: 470px;
    padding: 5px 0 30px;
  }
}
@media only screen and (min-width: 1280px) {
  .australia .navigation-right .account-options {
    right: 330px;
  }
  .vimeo-list .vimeo-item {
    width: calc((100% / 3));
  }
}
@media only screen and (max-width: 1024px) {
  body h1 {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 768px) {
  body h1 {
    font-size: 3.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .tablet-up {
    display: none !important;
  }
  .accordian-wrapper {
    display: none;
  }
  .accordian-wrapper {
    display: none;
  }
  .takeoverActive select {
    padding: 5px 30px 5px 5px;
  }
  .takeover {
    align-content: flex-start;
  }
  .takeover__wrap {
    padding: 2rem;
    padding-top: 10rem;
    overflow: auto;
    max-height: calc(100vh - 1rem);
  }
  .takeover__wrap__copy {
    margin-bottom: -1.5rem;
  }
  .takeover__wrap__form__line {
    margin: 0 !important;
  }
  .takeover__wrap__form__line--negative {
    margin-top: -3.5rem;
  }
  .takeover__wrap__form__line--negativemore {
    margin-top: -1.5rem !important;
  }
  .takeover__wrap__form__line > a {
    margin-top: 1rem;
  }
  .takeover__wrap__form__line p {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2.4rem;
    display: none;
  }
  .takeover__wrap__form__line .slimSelect {
    margin-bottom: 3rem;
  }
  .inlineSelect {
    margin: 0;
  }
  .inlineSelect__animation span {
    font-size: 2.4rem;
    top: 2px;
  }
  .inlineSelect--make {
    width: 100%;
    max-width: 45rem;
    margin-bottom: 0rem;
  }
  .inlineSelect--style {
    width: 100%;
    max-width: 45rem;
    margin-bottom: 1rem;
  }
  .inlineSelect--model {
    width: 100%;
    max-width: 45rem;
    margin-bottom: 0rem;
  }
  .inlineSelect--year {
    width: 100%;
    max-width: 45rem;
    margin-bottom: 0rem !important;
  }
  .inlineSelect--prodcut {
    width: 100%;
    max-width: 40rem;
    margin-bottom: 1rem;
  }
  .fittingMethod .select2,
#takeover .select2 {
    min-width: 30rem;
  }
  .fittingMethod .select2 .select2-selection__rendered,
#takeover .select2 .select2-selection__rendered {
    padding: 0.5rem 5rem 0.5rem 2rem;
    font-size: 3rem !important;
  }
  .fittingMethod .select2-selection__arrow,
#takeover .select2-selection__arrow {
    height: 4.2rem;
  }
  .takeoverActive .select2-results__option {
    font-size: 2.8rem !important;
    line-height: 1.2 !important;
  }
  .takeoverOnPageOnPageActive select {
    padding: 5px 30px 5px 5px;
  }
  .takeoverOnPage {
    align-content: flex-start;
  }
  .takeoverOnPage__wrap {
    padding: 2rem;
    padding-top: 10rem;
    overflow: auto;
    max-height: calc(100vh - 1rem);
  }
  .takeoverOnPage__wrap__copy {
    margin-bottom: -1.5rem;
  }
  .takeoverOnPage__wrap__form__line {
    margin: 0 !important;
  }
  .takeoverOnPage__wrap__form__line--negative {
    margin-top: -3.5rem;
  }
  .takeoverOnPage__wrap__form__line--negativemore {
    margin-top: -1.5rem !important;
  }
  .takeoverOnPage__wrap__form__line > a {
    margin-top: 1rem;
  }
  .takeoverOnPage__wrap__form__line p {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 2.4rem;
    display: none;
  }
  .takeoverOnPage__wrap__form__line .slimSelect {
    margin-bottom: 3rem;
  }
  .inlineSelect {
    margin: 0;
  }
  .inlineSelect__animation span {
    font-size: 2.4rem;
    top: 2px;
  }
  .inlineSelect--make {
    width: 100%;
    max-width: 45rem;
    margin-bottom: 0rem;
  }
  .inlineSelect--style {
    width: 100%;
    max-width: 45rem;
    margin-bottom: 1rem;
  }
  .inlineSelect--model {
    width: 100%;
    max-width: 45rem;
    margin-bottom: 0rem;
  }
  .inlineSelect--year {
    width: 100%;
    max-width: 45rem;
    margin-bottom: 0rem !important;
  }
  .inlineSelect--prodcut {
    width: 100%;
    max-width: 40rem;
    margin-bottom: 1rem;
  }
  .fittingMethod .select2,
#takeoverOnPage .select2 {
    min-width: 30rem;
  }
  .fittingMethod .select2 .select2-selection__rendered,
#takeoverOnPage .select2 .select2-selection__rendered {
    padding: 0.5rem 5rem 0.5rem 2rem;
    font-size: 3rem !important;
  }
  .fittingMethod .select2-selection__arrow,
#takeoverOnPage .select2-selection__arrow {
    height: 4.2rem;
  }
  .takeoverOnPageActive .select2-results__option {
    font-size: 2.8rem !important;
    line-height: 1.2 !important;
  }
  .btn, .contactModal__wrap__content [type=submit],
.contactModal__wrap__content .action,
.orderModal__wrap__content [type=submit],
.orderModal__wrap__content .action,
.summaryModal__wrap__content [type=submit],
.summaryModal__wrap__content .action,
.guestModal__wrap__content [type=submit],
.guestModal__wrap__content .action,
.loginModal__wrap__content [type=submit],
.loginModal__wrap__content .action {
    padding: 0.5rem 1rem;
    font-size: 1.6rem;
  }
  .searchPane__wrap__form .field .text {
    font-size: 3rem;
  }
  .main-scroll {
    padding-top: 4.6rem;
  }
  .main-scroll .builder,
.main-scroll .utemaster__site__elements__bannerelement {
    margin-top: -4.6rem;
  }
  .builder__orientation {
    width: 100%;
  }
  .builder__orientation__wrap {
    width: 100%;
    justify-content: space-between;
  }
  .builder__scene {
    padding-top: 10rem;
    overflow: hidden;
  }
  .builder__scene__background {
    display: none;
  }
  .builder__scene__background-mobile {
    background-position: 0px -72px;
    display: block;
    background-size: auto 113%;
  }
  .builder__scene__selector__orientation__wrap {
    width: 100%;
    justify-content: space-between;
  }
  .builder__scene__selector {
    bottom: 27.5rem;
  }
  .builder__scene__selector__wrap__item {
    width: 50%;
    min-width: 10rem;
  }
  .builder__scene__tray {
    min-height: 27.5rem;
  }
  .builder__scene__tray {
    padding: 0.5rem 0;
    padding-top: 4rem;
  }
  .builder__scene__actions {
    bottom: 30.9rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    right: 0;
    padding: 0 0rem;
    justify-content: flex-end;
  }
  .builder__scene__actions__item {
    width: auto;
    margin-right: 0rem;
    font-size: 1.3rem !important;
  }
  .builder__scene__actions__item:first-of-type:before {
    display: none;
  }
  .builder__scene__actions__item:after {
    display: none;
  }
  .builder__scene__actions__item--print {
    display: none;
  }
  .builder__scene__actions__item--save {
    display: none;
  }
  .builder__scene__actions__item--summary {
    padding-left: 0 !important;
    padding-right: 0.2rem !important;
  }
  .picker {
    min-height: 23rem;
  }
  .picker__grid {
    padding-right: 40px !important;
  }
  .picker__grid__item--close {
    width: 40px !important;
    height: 110px;
  }
  .picker__grid__item--scroll {
    width: 40px !important;
    height: 110px;
  }
  .picker__grid__item__icon span {
    transform: rotate(-90deg) translateX(25%) translateY(-25%);
    transform-origin: 50% 50%;
    left: 0;
    top: 50%;
  }
  .picker__grid__slider {
    width: calc(100% - 0px) !important;
  }
  .picker__grid__slider__item__details p {
    font-size: 1.2rem;
  }
  .picker--categories {
    padding-left: 0px;
  }
  .dealerPricingActive .memberActive .sidecart__inner__list {
    max-height: calc(100% - 52.2rem) !important;
  }
  .loading .results__wrap__loader,
.loading .builder__scene__loader {
    transform: scale(0.6) translateY(-200px) translateX(-75%);
  }
  .results__wrap__loader,
.builder__scene__loader {
    transform: scale(0.2) translateY(-160px) translateX(-75%);
  }
  .sidecart__recommend__title p {
    display: none;
  }
  .sidecart__inner__back {
    display: flex !important;
    background: #00aeff;
    align-items: center;
    width: 100%;
    padding: 0.5rem 2rem;
    position: absolute;
    top: 0;
    z-index: 3;
    cursor: pointer;
  }
  .sidecart__inner__back path {
    stroke: #ffffff;
  }
  .sidecart__inner__back p {
    color: #ffffff;
    font-weight: bold;
    margin: 0;
    margin-left: 2rem;
  }
  .sidecart__inner__close {
    display: none;
  }
  .sidecart__inner__title {
    padding: 2.4rem 2rem 2rem;
  }
  .sidecart__inner__title p {
    display: none;
  }
  .sidecart__inner__list {
    max-height: calc(100% - 39.8rem);
  }
  .altHeight {
    max-height: calc(100% - 48.8rem);
  }
  .results__wrap__form .action {
    padding: 1.3rem 4rem !important;
  }
  .results__wrap__results__item {
    width: calc(50% - 2rem);
  }
  .results__wrap__tags__wrap {
    display: none;
  }
  .results__wrap__tagsMobile {
    display: block;
  }
  .steps__wrap__summary {
    background: #00aeff;
  }
  .steps__wrap__summary:after {
    background: #00aeff;
  }
  .steps__wrap__summary__price {
    justify-content: center;
  }
  .shareModal__content {
    padding: 3rem 2rem;
  }
  .shareModal__content__list__item {
    padding: 2rem 0;
  }
  .orderNowModal__content__form form .select2,
.sendBuildSummaryModal__content__form form .select2 {
    margin-bottom: 1.6rem;
  }
  .orderNowModal__content__form form .inputField--email,
.orderNowModal__content__form form .inputField--region,
.orderNowModal__content__form form .inputField--phone,
.orderNowModal__content__form form .inputField--company,
.orderNowModal__content__form form .inputField--last-name,
.orderNowModal__content__form form .inputField--first-name,
.sendBuildSummaryModal__content__form form .inputField--email,
.sendBuildSummaryModal__content__form form .inputField--region,
.sendBuildSummaryModal__content__form form .inputField--phone,
.sendBuildSummaryModal__content__form form .inputField--company,
.sendBuildSummaryModal__content__form form .inputField--last-name,
.sendBuildSummaryModal__content__form form .inputField--first-name {
    width: calc(100%);
  }
  .wishlistTable__wrap__item {
    justify-content: flex-end;
  }
  .wishlistTable__wrap__item__title {
    width: calc(100% - 16rem);
  }
  [data-segment=Security] .main-scroll main:before {
    display: none;
  }
  [data-segment=Security] .main-scroll main:after {
    display: none;
  }
  [data-segment=Security] .main-scroll main .container .form-tab {
    width: 100%;
    padding: 3rem 2rem;
  }
  .contactModal,
.orderModal,
.summaryModal,
.guestModal,
.loginModal {
    padding: 4rem 0 0;
    align-items: flex-start;
    align-content: flex-start;
  }
  .contactModal__close,
.orderModal__close,
.summaryModal__close,
.guestModal__close,
.loginModal__close {
    top: 4.5rem;
    z-index: 99;
    width: 3rem;
  }
  .contactModal__wrap,
.orderModal__wrap,
.summaryModal__wrap,
.guestModal__wrap,
.loginModal__wrap {
    margin: 0 auto;
    min-height: 100vh;
    padding-top: 0;
  }
  .contactModal__wrap__back,
.orderModal__wrap__back,
.summaryModal__wrap__back,
.guestModal__wrap__back,
.loginModal__wrap__back {
    display: flex !important;
    background: #00aeff;
    align-items: center;
    width: 100%;
    padding: 0.5rem 2rem;
    position: absolute;
    top: 0;
    z-index: 3;
    cursor: pointer;
  }
  .contactModal__wrap__back path,
.orderModal__wrap__back path,
.summaryModal__wrap__back path,
.guestModal__wrap__back path,
.loginModal__wrap__back path {
    stroke: #ffffff;
  }
  .contactModal__wrap__back p,
.orderModal__wrap__back p,
.summaryModal__wrap__back p,
.guestModal__wrap__back p,
.loginModal__wrap__back p {
    color: #ffffff;
    font-weight: bold;
    margin: 0;
    margin-left: 2rem;
  }
  .contactModal__wrap__banner,
.orderModal__wrap__banner,
.summaryModal__wrap__banner,
.guestModal__wrap__banner,
.loginModal__wrap__banner {
    width: 100%;
    padding: 2rem 2rem;
    padding-top: 4rem;
  }
  .contactModal__wrap__content,
.orderModal__wrap__content,
.summaryModal__wrap__content,
.guestModal__wrap__content,
.loginModal__wrap__content {
    width: 100%;
    padding: 2rem 2rem;
  }
  .guestModal__wrap__content, .guestModal__wrap__banner {
    height: auto;
  }
  .guestModal__wrap__banner {
    border-bottom: 2px solid #00aeff;
  }
  .guestModal__wrap__banner__content {
    max-width: 100%;
  }
  .guestModal__wrap__content__wrapper {
    max-width: 100%;
  }
  .fittingMethod__wrap {
    padding-top: 0;
  }
  .fittingMethod__wrap #Form_CheckoutForm_FittingMethod_Holder li:last-of-type label {
    padding-bottom: 3rem;
  }
  .fittingMethod__wrap #Form_CheckoutForm_FittingMethod_Holder label {
    padding: 2rem 2rem 8.4rem;
  }
  .dealerInfoDetails__wrap h3,
.paymentOptionDetails__wrap h3,
.commentsDetails__wrap h3,
.dealerDetails__wrap h3,
.shippingDetails__wrap h3,
.checkoutDetails__wrap h3 {
    font-size: 3rem;
  }
  .deliveryModal__wrap #Form_CheckoutForm_OrderMethod li label,
.leadTime__wrap #Form_CheckoutForm_OrderMethod li label,
.orderMethod__wrap #Form_CheckoutForm_OrderMethod li label {
    padding: 2rem 2rem 8.4rem;
  }
  .deliveryModal__wrap {
    margin-top: 0 !important;
  }
  .deliveryModal .crumbs {
    margin: 6rem auto 2rem;
  }
  .orderMethod .crumbs {
    margin: 6rem auto 2rem;
  }
  .guestModal__wrap .crumbs {
    margin: 6rem auto 2rem;
  }
  .fittingMethod .crumbs {
    margin: 6rem auto 2rem;
  }
  #Form_CheckoutForm_PaymentOption_Holder #Form_CheckoutForm_PaymentOption li {
    width: calc(100% - 0.5rem);
  }
  .tableNarrow,
.tableWide,
.tableImage {
    width: 100%;
    display: block;
    padding: 0.2rem 0;
  }
  .tableNarrow--hide-mobile,
.tableWide--hide-mobile,
.tableImage--hide-mobile {
    display: none;
  }

  .tableImage {
    padding-top: 1rem;
  }
  .centerMobile {
    text-align: center;
  }
  .hideMobile {
    display: none;
  }
  .showMobile {
    display: block;
  }
  .flyover__inner__back {
    display: flex !important;
    background: #00aeff;
    align-items: center;
    width: 100%;
    padding: 0.5rem 2rem;
    position: absolute;
    top: 0;
    z-index: 3;
    cursor: pointer;
  }
  .flyover__inner__back path {
    stroke: #ffffff;
  }
  .flyover__inner__back p {
    color: #ffffff;
    font-weight: bold;
    margin: 0;
    margin-left: 2rem;
  }
  .flyover__inner__close {
    display: none;
  }
  .flyover__inner__title {
    padding: 2.4rem 2rem 2rem;
  }
  .flyover__inner__title p {
    display: none;
  }
  .product-slider__slider__item {
    width: 47% !important;
  }
}
@media only screen and (max-width: 1199px) {
  .desktop-only {
    display: none !important;
  }
  .builder__scene__vehicle {
    top: 8%;
  }
  .progress__wrap__item__title {
    font-size: 1.4rem;
  }
}
@media (min-width: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1)) {
  .news-preview {
    width: calc(50% - 20px);
    padding: 30px 0;
    margin-right: 10px;
    margin-left: 10px;
  }
  .news-preview .image-wrapper {
    padding-bottom: 20px;
  }
  .news-preview.first-news {
    margin-bottom: 40px;
  }
  .news-preview.first-news .content {
    padding-left: 0;
    padding-right: 0;
  }
  .news-preview_list {
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
  }
  .openings-list {
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 60px;
  }
  .opening {
    padding-top: 30px;
  }
  .application {
    padding-top: 80px;
    padding-bottom: 110px;
  }
  .application .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  .application-form .btn-toolbar {
    padding-top: 60px;
  }
  .error-page .container {
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 130px;
  }
  .extra-info {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .cart-model-img .build-vehicle-stack {
    width: 100%;
  }
  .submission-message {
    padding-top: 45px;
  }
  .shipping-info {
    padding-top: 45px;
  }
  .profile-container {
    padding-bottom: 45px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .builder-spacing {
    padding-top: 160px;
  }
  .profile-container {
    padding-top: 80px;
  }
  .navigation-spacing_elements {
    padding-top: 82px;
  }
  .normal-page .container {
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 50px;
  }
  .sales-order {
    padding-bottom: 45px;
  }
  .customer-quotes {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .banner-element {
    height: calc(100vh - 82px);
    padding-top: 80px;
    padding-bottom: 90px;
  }
  .banner-element .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  .banner-element .hero-title,
.banner-element .hero-subtitle {
    margin-bottom: 25px;
  }
  .banner-element .hero-subtitle {
    font-size: 72px;
  }
  .banner-element .made-in-nz {
    margin-bottom: 24px;
    width: 105px;
  }
  .banner-element .content-wrapper {
    font-size: 15px;
  }
  .two-column-text-element {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .two-column-text-element .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  .two-column-text-element .right-column {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .single-column-text-element {
    padding-bottom: 60px;
    padding-top: 60px;
  }
  .single-column-text-element {
    padding-top: 80px;
    padding-bottom: 75px;
  }
  .text-above-image {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .text-above-image .header-wrapper {
    padding-left: 0;
  }
  .text-above-image .content {
    padding-left: 25px;
    padding-right: 25px;
  }
  .text-image-element .container {
    display: flex;
    padding-left: 25px;
    padding-right: 25px;
  }
  .text-on-image {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .text-on-image .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  .text-on-image .header-wrapper {
    width: 80%;
  }
  .feature-silder {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .slide-navigation {
    padding-bottom: 20px;
    margin-bottom: 20px;
    flex-direction: row;
    overflow-x: auto;
  }
  .feature-slide .image {
    padding-left: 80px;
    padding-right: 80px;
  }
  .feature-slide .content {
    padding-left: 80px;
    padding-right: 80px;
  }
  .content-element__content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .gallery-grid {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .lightbox-gallery-element {
    padding: 60px 25px;
  }
  .lightbox-gallery-element .container__image {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 1139px) {
  .Utemaster\\Site\\ProductPage:not([data-segment=commercial-fleet]) {
    padding-top: 4rem;
  }
  .header {
    height: 4.3rem;
  }
  .header__wrap__secondary {
    margin-right: 6.5rem;
  }
  .header__wrap__secondary__link--primary:before {
    position: absolute;
    content: "";
    display: block;
    width: 5rem;
    height: 5rem;
    background: #00aeff;
    position: absolute;
    right: 0;
    bottom: 0;
    transform-origin: 100% 100% !important;
    transform: rotate(15deg) !important;
    z-index: -1;
    left: auto;
    top: auto;
  }
  .header__wrap__logo {
    bottom: 0rem;
  }
  .header__wrap__primary {
    display: none;
  }
  .merch {
    margin: 8rem auto;
  }
  .merch__wrap__gallery {
    width: 50%;
  }
  .merch__wrap__title,
.merch__wrap__price,
.merch__wrap__form,
.merch__wrap__part,
.merch__wrap__details {
    width: 50%;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .build-vehicle-wrapper {
    height: 600px;
  }
  .build-vehicle-stack {
    position: relative;
    height: 100%;
  }
  .build-vehicle-img {
    position: absolute;
  }
}
@media (max-width: 1280px) {
  .vimeo-page {
    padding: 2rem;
  }
  .vimeo-page .vimeo-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1)) {
  .vimeo-page .vimeo-title {
    font-size: 1.5rem;
  }
  .vimeo-subtitle {
    font-size: 1.3rem;
  }
  .go-to-feature {
    width: 100%;
    text-align: left;
    padding: 10px 20px;
    border-bottom: none !important;
    border-left: 5px solid transparent;
  }
  .go-to-feature:hover, .go-to-feature:focus {
    background-color: transparent;
    color: #00aeff;
  }
  .go-to-feature.is-selected {
    border-left: 5px solid #00aeff;
  }
}
@media only screen and (min-width: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1)) {
  .vimeo-list .vimeo-item {
    width: 50%;
  }
}
@media only screen and (max-width: 967px) {
  .onPageWrapper__copy {
    width: 100%;
    padding-right: 0rem;
  }
  .onPageWrapper__selector {
    width: 100%;
  }
  body .onPageSelector {
    width: 100%;
    padding: 2rem;
  }
  body:not(.Utemaster\\Site\\BuilderPage) .vehicleBar {
    padding: 0.9rem 15px;
  }
  .vehicleBar__text {
    font-size: 1rem;
    max-width: 23rem;
  }
  .vehicleBar__action {
    width: 5.3rem;
    font-size: 1rem !important;
  }
  .vehicleBar__action span {
    display: none;
  }
  .vehicleBar__action svg {
    position: relative;
    top: 3px;
  }
  .builder__orientation {
    top: 9rem;
  }
  .builder__scene__selector__orientation {
    display: none;
  }
  .picker__grid {
    padding-right: 80px;
  }
  .picker__grid__item {
    width: 100px;
  }
  .picker__grid__item--close {
    width: 80px;
    height: 110px;
  }
  .picker__grid__item--scroll {
    width: 80px;
    height: 110px;
  }
  .picker__grid__slider {
    width: calc(100% - 80px);
  }
  .picker__grid__slider__item {
    width: 110px;
    min-width: 110px;
  }
  .navigator__slider {
    padding-left: 0rem;
  }
  .progress {
    transform: scale(1);
    top: 6%;
    top: 43px !important;
    right: auto;
    left: -1rem;
    padding-left: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding-right: 0;
    background: #4f4f4f;
  }
  .progress__wrap {
    justify-content: flex-start;
  }
  .progress__wrap__item {
    padding-left: 1rem;
    padding-left: 2rem;
    margin-right: -1px;
    justify-content: flex-start;
  }
  .progress__wrap__item:after {
    display: none;
  }
  .progress__wrap__item:nth-child(2) {
    padding-right: 0;
  }
  .progress__wrap__item:nth-child(3) {
    padding-right: 0;
  }
  .progress__wrap__item:nth-child(4) {
    padding-right: 0;
  }
  .progress__wrap__item:nth-child(5) {
    padding-right: 0;
  }
  .progress__wrap__item:nth-child(5):after {
    display: block !important;
  }
  .progress__wrap__item__title {
    display: none;
    margin-left: 2rem;
    font-size: 1.2rem;
  }
  .progress__wrap__item--active + .progress__wrap__item .progress__wrap__item__number {
    margin-left: 0rem;
  }
  .progress__wrap__item--current .progress__wrap__item__title {
    display: inline-block !important;
  }
  .progress__wrap__item--current + .progress__wrap__item {
    padding-left: 2.5rem;
  }
  .progress__wrap__item--current:after {
    display: block !important;
  }
  .results__wrap__results__item {
    width: calc(33.3333% - 2rem);
  }
  .dealerInfoDetails__wrap,
.paymentOptionDetails__wrap,
.commentsDetails__wrap,
.dealerDetails__wrap,
.shippingDetails__wrap,
.checkoutDetails__wrap {
    padding: 0;
  }
  .order h2 {
    font-size: 2.4rem !important;
  }
  .order__wrap__details {
    background: #ffffff;
  }
  .order__wrap__details {
    width: 100%;
    order: 2;
  }
  .order__wrap__details__constraint {
    max-width: 100rem;
  }
  .order__wrap__items {
    width: 100%;
    order: 1;
  }
  .checkoutProcess__inner__form {
    width: 100%;
  }
  .checkoutProcess__inner__form__constraint {
    max-width: 100rem;
  }
  .checkoutProcess__inner__cart {
    width: 100%;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 22;
    overflow: auto;
  }
  .checkoutProcess__inner__cart:after {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 0;
    right: 0;
    background: #000000;
    height: 4.4rem;
    display: block;
  }
  .checkoutProcess__inner__cart.active {
    display: block;
  }
  .checkoutProcess__inner__cart__constraint {
    max-width: 100rem;
  }
  .checkoutProcess__inner__cart__constraint__back {
    display: flex !important;
    background: #00aeff;
    align-items: center;
    padding: 0.5rem 2rem;
    margin: 0.3rem -2rem 2rem;
    top: 0;
    z-index: 3;
    cursor: pointer;
  }
  .checkoutProcess__inner__cart__constraint__back path {
    stroke: #ffffff;
  }
  .checkoutProcess__inner__cart__constraint__back p {
    color: #ffffff;
    font-weight: bold;
    margin: 0;
    margin-left: 2rem;
  }
  .merch {
    margin: 0rem auto 4rem !important;
    padding-top: 6rem;
  }
  .merch__wrap__part__content, .merch__wrap__details__content {
    max-width: 100%;
  }
  .merch__wrap__details__content hr {
    display: none;
  }
  .merch__wrap__gallery {
    width: 100% !important;
    padding-right: 0;
  }
  .merch__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .merch__wrap__title,
.merch__wrap__price,
.merch__wrap__form,
.merch__wrap__part,
.merch__wrap__details {
    width: 100% !important;
    margin: 0 atuo;
  }
  .merch__wrap__title {
    order: 1;
    border-bottom: 1px solid #e4e4e4;
  }
  .merch__wrap__gallery {
    order: 2;
  }
  .merch__wrap__price {
    order: 6;
    max-width: 50rem;
  }
  .merch__wrap__form {
    max-width: 50rem;
  }
  .merch__wrap__part {
    order: 4;
    max-width: 50rem;
  }
  .merch__wrap__details {
    order: 3;
  }
}
@media only screen and (max-width: 639px) {
  .fittingMethod .select2,
#takeover .select2 {
    min-width: 100% !important;
  }
  .fittingMethod .select2,
#takeoverOnPage .select2 {
    min-width: 100% !important;
  }
  .searchPane__wrap__form .field.text:after {
    border-bottom: 0.2rem solid #00aeff;
  }
  .searchPane__wrap__form .field .text {
    font-size: 2.4rem;
  }
  .searchPane__wrap__form__direction {
    font-size: 1.2rem !important;
  }
  .header__wrap__secondary__link__text {
    font-size: 0 !important;
  }
  .sidecart {
    background: white;
  }
  .sidecart__inner {
    width: calc(100%);
  }
  .sidecartActive .steps {
    opacity: 0;
  }
  .steps {
    position: fixed;
  }
  .wishlistTable__wrap__item {
    justify-content: center;
  }
  .wishlistTable__wrap__item__title {
    width: calc(100%);
  }
  .crumbs__wrap {
    font-size: 1.2rem;
  }
  .flyover__inner {
    width: calc(100%);
  }
}
@media only screen and (max-width: 373px) {
  .btn, .contactModal__wrap__content [type=submit],
.contactModal__wrap__content .action,
.orderModal__wrap__content [type=submit],
.orderModal__wrap__content .action,
.summaryModal__wrap__content [type=submit],
.summaryModal__wrap__content .action,
.guestModal__wrap__content [type=submit],
.guestModal__wrap__content .action,
.loginModal__wrap__content [type=submit],
.loginModal__wrap__content .action {
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 579px) {
  .header:after {
    display: none;
  }
  .header__wrap__secondary {
    margin-right: 4.5rem;
  }
  .header__wrap__secondary__link--search {
    display: flex !important;
  }
  .header__wrap__secondary__link--primary {
    display: none !important;
  }
}
@media only screen and (max-width: 829px) {
  .header__wrap__navburger {
    margin-top: 5px;
  }
  .header__wrap__secondary__link {
    display: none;
  }
  .header__wrap__secondary__link--search {
    display: flex;
  }
  .header__wrap__secondary__link--search {
    margin-top: 3px;
  }
  .header__wrap__secondary__link--primary {
    display: flex;
  }
}
@media only screen and (max-width: 539px) {
  .builder__scene__vehicle {
    position: relative;
    margin-top: -2rem;
    margin-bottom: 32rem;
    top: 15% !important;
    margin-left: 0% !important;
    width: 100% !important;
  }
}
@media (max-height: 600px) and (max-width: 1300px) {
  .progress {
    top: 10rem;
  }
}
@media only screen and (max-width: 1023px) {
  .progress__wrap__item__title {
    font-size: 1.2rem;
  }
  .product-slider__slider__item {
    width: 24%;
  }
}
@media only screen and (max-width: 967px) and (max-width: 767px) {
  .progress__wrap__item--current + .progress__wrap__item {
    padding-left: 3.5rem;
  }
}
@media only screen and (max-width: 480px) {
  .notyf {
    padding: 0;
  }
  .notyf__ripple {
    height: 600px;
    width: 600px;
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
  }
  .notyf__toast {
    max-width: initial;
    border-radius: 0;
    box-shadow: 0px -2px 7px 0px rgba(0, 0, 0, 0.13);
    width: 100%;
  }
  .notyf__dismiss {
    width: 56px;
  }
}
@media print {
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    overflow-y: scroll !important;
  }

  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) > [aria-hidden=true] {
    display: none;
  }

  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container {
    position: static !important;
  }
  @page {
    size: auto;
    margin: 0mm;
  }
  * {
    -webkit-print-color-adjust: exact !important;
    color-adjust: exact !important;
  }

  html,
body {
    height: 100% !important;
  }

  .builder__scene__background,
.sidecart__inner__actions__micro,
.sidecart__inner__actions__buttons,
.builder__scene__actions,
.builder__scene__tray,
.sidecart__inner__close,
.sidecart__close,
.sidecart__recommend,
.steps,
.progress,
.header,
.megamenu,
.mobilegrey,
.mobileblue,
.mobileMenu,
.searchPane,
.footer {
    display: none !important;
  }

  .header__wrap__secondary__link--contact {
    opacity: 0 !important;
  }

  .header {
    z-index: 556;
  }

  .header__wrap__navburger,
.header__wrap__secondary__link--search,
.js-toggle-account,
.header__wrap__primary {
    display: none !important;
  }

  .builder__scene__vehicle {
    margin-top: 8rem !important;
    position: relative !important;
  }

  .sidecart {
    position: relative !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    bottom: auto !important;
    height: auto !important;
  }
  .sidecart__inner {
    transform: none !important;
    position: relative !important;
    width: 100% !important;
    bottom: auto !important;
    height: auto !important;
  }
  .sidecart__inner__list {
    max-height: none !important;
    height: auto !important;
  }
  .sidecart__inner__list__item {
    opacity: 1;
    transform: none !important;
    -moz-column-break-inside: avoid;
         break-inside: avoid;
  }
  .sidecart__inner__actions {
    position: relative !important;
  }

  .builder__scene {
    background: #ffffff !important;
    position: relative;
    z-index: 555;
  }
}
@media only screen and (max-width: 699px) {
  .steps__wrap__actions a:first-of-type {
    display: none !important;
  }
  .steps__wrap__actions a:last-of-type {
    width: 100% !important;
  }
  .steps__wrap__actions {
    padding: 2rem;
    padding: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .steps__wrap__actions .btn, .steps__wrap__actions .contactModal__wrap__content [type=submit], .contactModal__wrap__content .steps__wrap__actions [type=submit],
.steps__wrap__actions .contactModal__wrap__content .action,
.contactModal__wrap__content .steps__wrap__actions .action,
.steps__wrap__actions .orderModal__wrap__content [type=submit],
.orderModal__wrap__content .steps__wrap__actions [type=submit],
.steps__wrap__actions .orderModal__wrap__content .action,
.orderModal__wrap__content .steps__wrap__actions .action,
.steps__wrap__actions .summaryModal__wrap__content [type=submit],
.summaryModal__wrap__content .steps__wrap__actions [type=submit],
.steps__wrap__actions .summaryModal__wrap__content .action,
.summaryModal__wrap__content .steps__wrap__actions .action,
.steps__wrap__actions .guestModal__wrap__content [type=submit],
.guestModal__wrap__content .steps__wrap__actions [type=submit],
.steps__wrap__actions .guestModal__wrap__content .action,
.guestModal__wrap__content .steps__wrap__actions .action,
.steps__wrap__actions .loginModal__wrap__content [type=submit],
.loginModal__wrap__content .steps__wrap__actions [type=submit],
.steps__wrap__actions .loginModal__wrap__content .action,
.loginModal__wrap__content .steps__wrap__actions .action {
    width: calc(50% - 0px) !important;
    margin: 0 !important;
    display: flex;
    flex-wrap: wrap;
  }
  .steps__wrap__actions .btn:last-of-type, .steps__wrap__actions .contactModal__wrap__content [type=submit]:last-of-type, .contactModal__wrap__content .steps__wrap__actions [type=submit]:last-of-type,
.steps__wrap__actions .contactModal__wrap__content .action:last-of-type,
.contactModal__wrap__content .steps__wrap__actions .action:last-of-type,
.steps__wrap__actions .orderModal__wrap__content [type=submit]:last-of-type,
.orderModal__wrap__content .steps__wrap__actions [type=submit]:last-of-type,
.steps__wrap__actions .orderModal__wrap__content .action:last-of-type,
.orderModal__wrap__content .steps__wrap__actions .action:last-of-type,
.steps__wrap__actions .summaryModal__wrap__content [type=submit]:last-of-type,
.summaryModal__wrap__content .steps__wrap__actions [type=submit]:last-of-type,
.steps__wrap__actions .summaryModal__wrap__content .action:last-of-type,
.summaryModal__wrap__content .steps__wrap__actions .action:last-of-type,
.steps__wrap__actions .guestModal__wrap__content [type=submit]:last-of-type,
.guestModal__wrap__content .steps__wrap__actions [type=submit]:last-of-type,
.steps__wrap__actions .guestModal__wrap__content .action:last-of-type,
.guestModal__wrap__content .steps__wrap__actions .action:last-of-type,
.steps__wrap__actions .loginModal__wrap__content [type=submit]:last-of-type,
.loginModal__wrap__content .steps__wrap__actions [type=submit]:last-of-type,
.steps__wrap__actions .loginModal__wrap__content .action:last-of-type,
.loginModal__wrap__content .steps__wrap__actions .action:last-of-type {
    border-left: 1px solid #ffffff;
  }
  .steps__wrap {
    padding-right: 0;
    justify-content: center;
  }
  .steps__wrap__summary {
    display: none;
  }
  .steps__wrap__summary {
    max-width: 100rem;
    padding: 1rem;
  }
}