@charset "UTF-8";
/**
 * CSS Reset
 * 
 * @media    screen
 * @author   Quiller Caudill
 * @version  0.1
 * @desc     Based on YUI Reset: http://developer.yahoo.com/yui/reset/
 */
@import url("https://fast.fonts.net/t/1.css?apiType=css&projectid=1872874d-eb75-4ad0-8592-eb0567a9e7ee");
*,
*:before,
*:after {
  box-sizing: border-box;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

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

fieldset, img {
  border: 0 none;
}

address, caption, cite, code, dfn, em, strong, th, var, optgroup {
  font-style: inherit;
  font-weight: inherit;
}

del, ins {
  text-decoration: none;
}

li {
  list-style-image: none;
  list-style-position: outside;
  list-style-type: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

input, button, textarea, select, optgroup, option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

sup, sub {
  vertical-align: baseline;
}

/**
 * @section Classes
 */
.clear {
  clear: both;
}

.clear-left {
  clear: left;
}

.clear-right {
  clear: right;
}

.hidden, html.js .noscript {
  display: none;
}

.nowrap {
  white-space: nowrap;
}

/**
 * @section Mozilla
 * @purpose Target Mozilla-based browsers with unique rules
 */
a:focus, object:focus, param:focus {
  -moz-outline-style: none;
  outline-style: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

*:focus {
  outline: none;
}

/* --------------------------
 * RESPONSIVE FONT SIZE
 * -------------------------- */
/* --------------------------
 * RESPONSIVE LINE HEIGHT SIZE
 * -------------------------- */
/* --------------------------
 * KEYFRAMES & ANIMATION
 * -------------------------- */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}

.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  animation-name: bounceOutUp;
}

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

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

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

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}

/* --------------
 * SEMANTIC
 * -------------- */
/* --------------
 * COLORS EZGO - New
 * -------------- */
/* --------------
 * COLORS EZGO - Deprecated
 * -------------- */
/* "Blues */
/* "Gold" */
/* "Black" */
/* "Tan" */
/* "Orange" */
/* "Yellow" */
/* "White" */
/* "Green" */
/* "Red" */
/* Vehicle Colors*/
/* --------------
 * COLORS Cushman
 * -------------- */
/* Brand "Black" */
/* Brand "Brown" */
/* Brand "Gray" */
/* Brand "Gold" */
/* Brand "Red" */
/* Brand "Tan" */
/* Brand "Yellow" */
/* ----------------
 * SITE-WIDE VALUES
 * ---------------- */
/* Transition time */
/* --------------
 * FONTS
 * -------------- */
/* EZGO Fonts */
@font-face {
  font-family: "Helvetica Neue LT W01107XBlkCn";
  src: url("../fonts/web-font/beeae2da-8ac8-47ed-9e87-4f9bdd1454fe.eot?#iefix");
  src: url("../fonts/web-font/beeae2da-8ac8-47ed-9e87-4f9bdd1454fe.eot?#iefix") format("eot"), url("../fonts/web-font/931ee3cf-83a1-4ca5-b091-97c58c39a850.woff2") format("woff2"), url("../fonts/web-font/e08521db-2fd8-4bc6-9294-0e563b179db9.woff") format("woff"), url("../fonts/web-font/2fe5a3aa-9a97-4012-91bc-f5a5515b27ad.ttf") format("truetype"), url("../fonts/web-font/50a9d8b8-1d65-417c-a3fe-37a19246b43f.svg#50a9d8b8-1d65-417c-a3fe-37a19246b43f") format("svg");
}

/* Omnes Pro */
/* Helvetic Neue */
/* Gotham
    Gotham Book Italic: font-style: italic
    Gotham Medium: font-weight: 500;
    Gotham Bold: font-weight: 700;
*/
/* Icon Font */
@font-face {
  font-family: 'ezgo';
  src: url("../fonts/icon-font/ezgo.ttf?8f9lm5") format("truetype"), url("../fonts/icon-font/ezgo.woff?8f9lm5") format("woff"), url("../fonts/icon-font/ezgo.svg?8f9lm5#ezgo") format("svg");
  font-weight: normal;
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'RBNo2-1a W00 Bold';
  font-weight: normal;
  src: url("../fonts/2516708e-1e4c-4ca1-adfa-27b1ab947462.eot?#iefix");
  src: url("../fonts/2516708e-1e4c-4ca1-adfa-27b1ab947462.eot?#iefix") format("eot"), url("../fonts/5093c66c-c4a0-4011-95e7-66218b6a5397.woff2") format("woff2"), url("../fonts/30e53489-04c0-4fee-bfca-50ea3d5887b7.woff") format("woff"), url("../fonts/4318b6e2-bc70-4585-aff3-1b422a4dfc62.ttf") format("truetype"), url("../fonts/e2b21ad8-7114-41b4-973c-eb2f70ab9483.svg#e2b21ad8-7114-41b4-973c-eb2f70ab9483") format("svg");
}

@font-face {
  font-family: 'Trade Gothic W01 Cn_18';
  font-weight: normal;
  src: url("../fonts/087e5c21-3358-4cf3-9d2c-289a03a48292.eot?#iefix");
  src: url("../fonts/087e5c21-3358-4cf3-9d2c-289a03a48292.eot?#iefix") format("eot"), url("../fonts/30ebcbfa-d651-4ecd-a0a2-2bb110def1d4.woff2") format("woff2"), url("../fonts/fb754dec-aa8f-444c-be48-868464c47ab0.woff") format("woff"), url("../fonts/295ff20c-2b48-4fa6-be92-a53bbf9bbbb4.ttf") format("truetype"), url("../fonts/c573d9d0-0726-4b95-aeee-fb621a299563.svg#c573d9d0-0726-4b95-aeee-fb621a299563") format("svg");
}

@font-face {
  font-family: 'TradeGothicW01-BoldCn20_675334';
  font-weight: normal;
  src: url("../fonts/257c802f-349c-4b4d-aefa-546d5de15ec6.eot?#iefix");
  src: url("../fonts/257c802f-349c-4b4d-aefa-546d5de15ec6.eot?#iefix") format("eot"), url("../fonts/1ba28851-f34b-4cb8-bf58-6a4b160ba249.woff2") format("woff2"), url("../fonts/5fdc935e-9e30-442a-bbe9-8d887b858471.woff") format("woff"), url("../fonts/616c4c87-a077-43f4-a9f4-f01267c13818.ttf") format("truetype"), url("../fonts/c901ad5f-a842-4549-a1f4-583a97f7e169.svg#c901ad5f-a842-4549-a1f4-583a97f7e169") format("svg");
}

/* Icon map */
/* --------------
 * Form Variables
 * -------------- */
/* Media queries */
/* Font helper */
/* Column System */
/*
 * Viewport sized typography with minimum and maximum values
 *
 * @author Eduardo Boucas (@eduardoboucas)
 *
 * @param {Number}   $responsive  - Viewport-based size
 * @param {Number}   $min         - Minimum font size (px)
 * @param {Number}   $max         - Maximum font size (px)
 *                                  (optional)
 * @param {Number}   $fallback    - Fallback for viewport-
 *                                  based units (optional)
 *
 * @example scss - 5vw font size (with 50px fallback),
 *                 minumum of 35px and maximum of 150px
 */
/* Get icon font value from map */
/* Access icon font with default styles */
/* Generate icon classes */
.icon-accordion-collapse:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-accordian-expand:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-check:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-chevron-down-double:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-chevron-up-double:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-chevron-down:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-chevron-left:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-chevron-right:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-chevron-up:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-find-dealer:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-filetype-doc:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-filetype-pdf:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-filetype-ppt:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-filetype-xls:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-hamburger-close:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-hamburger-open:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-dealer:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-finance:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-promo:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-quote:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-video:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-build:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-filetype-external:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-search:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-facebook:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-instagram:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-twitter:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-youtube:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-bullet:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-play:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.text-blue-dark {
  color: #0A2240;
}

.text-blue {
  color: #587A91;
}

.text-blue-light {
  color: #9EAEC4;
}

.text-orange {
  color: #C15722;
}

.text-orange-light {
  color: #BD581E;
}

.text-orange-dark {
  color: #A83E09;
}

.text-gold {
  color: #A29771;
}

.text-gray-dark {
  color: #c2c3c7;
}

.text-gray {
  color: #E7E8EC;
}

.text-gray-light {
  color: #F3F4F6;
}

.text-gray-lightest {
  color: #CCD7DE;
}

.text-black {
  color: #000000;
}

.text-white {
  color: #FFFFFF;
}

.text-offwhite {
  color: #EFF7FA;
}

.border-color-blue-dark {
  border-color: #0A2240;
}

.border-color-blue {
  border-color: #587A91;
}

.border-color-blue-light {
  border-color: #9EAEC4;
}

.border-color-orange {
  border-color: #C15722;
}

.border-color-orange-light {
  border-color: #BD581E;
}

.border-color-orange-dark {
  border-color: #A83E09;
}

.border-color-gold {
  border-color: #A29771;
}

.border-color-gray-dark {
  border-color: #c2c3c7;
}

.border-color-gray {
  border-color: #E7E8EC;
}

.border-color-gray-light {
  border-color: #F3F4F6;
}

.border-color-gray-lightest {
  border-color: #CCD7DE;
}

.border-color-black {
  border-color: #000000;
}

.border-color-white {
  border-color: #FFFFFF;
}

.border-color-offwhite {
  border-color: #EFF7FA;
}

.bg-blue-dark {
  background-color: #0A2240;
}

.bg-blue {
  background-color: #587A91;
}

.bg-blue-light {
  background-color: #9EAEC4;
}

.bg-orange {
  background-color: #C15722;
}

.bg-orange-light {
  background-color: #BD581E;
}

.bg-orange-dark {
  background-color: #A83E09;
}

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

.bg-gray-dark {
  background-color: #c2c3c7;
}

.bg-gray {
  background-color: #E7E8EC;
}

.bg-gray-light {
  background-color: #F3F4F6;
}

.bg-gray-lightest {
  background-color: #CCD7DE;
}

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

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

.bg-offwhite {
  background-color: #EFF7FA;
}

.shadow {
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

:root {
  --blue-dark: #0A2240;
  --blue: #587A91;
  --blue-light: #9EAEC4;
  --orange: #C15722;
  --orange-light: #BD581E;
  --orange-dark: #A83E09;
  --gold: #A29771;
  --gray-dark: #c2c3c7;
  --gray: #E7E8EC;
  --gray-light: #F3F4F6;
  --gray-lightest: #CCD7DE;
  --black: #000000;
  --white: #FFFFFF;
  --offwhite: #EFF7FA;
}

.chevron-left:before,
.chevronLeft:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: inherit;
  transition: 0.25s;
  position: relative;
  top: 1px;
}

.chevron-right:after,
.chevronRight:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: inherit;
  transition: 0.25s;
  position: relative;
  top: 1px;
}

.fullscreen-toggle:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: inherit;
  transition: 0.25s;
  position: relative;
  top: 1px;
}

body {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  color: #222222;
  font-size: 16px;
  line-height: 25px;
}

@media all and (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 25px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: henderson-sans-basic,sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #587A91;
  text-transform: uppercase;
}

h1 {
  font-size: 60px;
  line-height: 63px;
}

h2 {
  margin-bottom: 15px;
  font-size: 43px;
  line-height: 1;
}

@media all and (max-width: 768px) {
  h2 {
    font-size: 28px;
    line-height: 28px;
  }
}

.personal h2,
.personal .mceContentBody h2 {
  color: #F6861F;
  font-size: 44px;
  text-transform: none;
}

@media all and (max-width: 768px) {
  .personal h2,
  .personal .mceContentBody h2 {
    font-size: 31px;
  }
}

h3 {
  margin-bottom: 15px;
  font-size: 30px;
  line-height: 36px;
}

@media all and (max-width: 768px) {
  h3 {
    font-size: 25px;
    line-height: 29px;
  }
}

h4 {
  margin-bottom: 15px;
  font-size: 25px;
  line-height: 36px;
}

@media all and (max-width: 768px) {
  h4 {
    font-size: 21px;
    line-height: 25px;
  }
}

h5 {
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 26px;
}

@media all and (max-width: 768px) {
  h5 {
    font-size: 17px;
    line-height: 21px;
  }
}

h6 {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 15px;
}

a {
  text-decoration: none;
  transition: .2s;
}

.messages.warning,
.messages.status,
.messages.error {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  position: relative;
  padding: 20px 20px 20px 80px;
  background-color: #f5f5f4;
  color: #5b524d !important;
  font-size: 18px;
  border: none;
}

.messages.warning:before, .messages.warning:after,
.messages.status:before,
.messages.status:after,
.messages.error:before,
.messages.error:after {
  position: absolute;
  left: 0;
  width: 60px;
}

.messages.warning a,
.messages.status a,
.messages.error a {
  display: inline;
  position: relative;
  color: #70ABBB;
}

.messages.warning a:hover,
.messages.status a:hover,
.messages.error a:hover {
  color: #598895;
}

.messages.warning ul li,
.messages.status ul li,
.messages.error ul li {
  list-style-type: disc;
  margin-bottom: 7px;
}

.messages.warning ul li:last-child,
.messages.status ul li:last-child,
.messages.error ul li:last-child {
  margin-bottom: 0;
}

.messages.warning:before {
  content: '';
  background: #f2ca0e;
  height: 100%;
  top: 0;
}

.messages.warning:after {
  content: '!';
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 47px;
  text-align: center;
}

.messages.status:before {
  content: '';
  background: #1A4919;
  height: 100%;
  top: 0;
}

.messages.status:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 36px;
  text-align: center;
}

.messages.error:before {
  content: '';
  background: #ed6a5a;
  height: 100%;
  top: 0;
}

.messages.error:after {
  content: '!';
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 47px;
  text-align: center;
}

.button {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 15px 20px;
  padding-right: 35px;
  color: #ffffff;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: #C15722;
  overflow: hidden;
  transition: 0.25s;
}

@media all and (max-width: 600px) {
  .button {
    font-size: 15px;
    padding: 10px 20px;
    padding-right: 30px;
  }
}

.button:before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #222222;
  opacity: .1;
  transform: translateX(-100%);
  transition: 0.25s;
}

.button:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 15px;
  top: 51%;
  color: #ffffff;
  font-size: 18px;
  transform: translate(0, -50%);
  transition: 0.25s;
}

@media all and (max-width: 600px) {
  .button:after {
    top: 50%;
    right: 13px;
    font-size: 16px;
  }
}

.button:hover {
  color: #FFFFFF;
}

.button:hover:before {
  transform: translateX(0);
}

.button:hover:after {
  right: 10px;
}

@media all and (max-width: 600px) {
  .button:hover:after {
    right: 8px;
  }
}

.page-node-244 .button {
  background: #ffffff;
  color: #70ABBB;
}

.page-node-244 .button:before {
  background: #F6861F;
  opacity: 1;
}

.page-node-244 .button:after {
  color: #70ABBB;
}

.page-node-244 .button:hover {
  color: #ffffff;
}

.page-node-244 .button:hover:before {
  transform: translateX(0);
}

.page-node-244 .button:hover:after {
  right: 10px;
  color: #ffffff;
}

@media all and (max-width: 600px) {
  .page-node-244 .button:hover:after {
    right: 8px;
  }
}

.page-node-244 header .button {
  background: #70ABBB;
  color: #ffffff;
}

.page-node-244 header .button:before {
  background: #F6861F;
  opacity: 1;
}

.page-node-244 header .button:after {
  color: #ffffff;
}

.page-node-244 header .button:hover {
  color: #ffffff;
}

.page-node-244 header .button:hover:before {
  transform: translateX(0);
}

.page-node-244 header .button:hover:after {
  right: 10px;
  color: #ffffff;
}

@media all and (max-width: 600px) {
  .page-node-244 header .button:hover:after {
    right: 8px;
  }
}

.button.button-bg-yellow {
  color: #846e06;
  background: #FFC40C;
}

.button.button-bg-yellow:before {
  background: #f2ca0e;
}

.button.button-bg-transparent {
  background: none;
  text-align: left;
  color: #C15722;
}

.button.button-bg-transparent:before {
  display: none;
}

.button.button-bg-transparent:after {
  color: #C15722;
}

.button.button-bg-transparent:hover, .button.button-bg-transparent:hover:after {
  color: #A83E09;
}

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

.button.button-text-yellow {
  color: #f2ca0e;
}

.button.button-text-yellow:hover {
  color: #ed6a5a;
}

.button-transparent {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  position: relative;
  font-size: 15px;
  text-transform: uppercase;
  color: #C15722;
  transition: 0.25s;
}

.button-transparent:hover {
  color: #A83E09;
}

.button-transparent:hover:after {
  color: #A83E09;
  transform: translate(4px, -50%);
}

.button-transparent:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: -19px;
  top: 45%;
  color: #C15722;
  font-size: 18px;
  transform: translate(0, -50%);
  transition: 0.25s;
}

#tinymce hr,
.mceContentBody hr {
  clear: both;
  margin: 61px 0;
  height: 1px;
  border: none;
  background: #DDDDDD;
}

@media all and (max-width: 600px) {
  #tinymce hr,
  .mceContentBody hr {
    margin: 38px 0;
  }
}

#tinymce h1,
#tinymce h2,
#tinymce h3,
#tinymce h4,
#tinymce h5,
#tinymce h6,
.mceContentBody h1,
.mceContentBody h2,
.mceContentBody h3,
.mceContentBody h4,
.mceContentBody h5,
.mceContentBody h6 {
  font-style: normal;
  margin-top: 60px;
}

#tinymce h6,
.mceContentBody h6 {
  font-size: 15px;
  line-height: 20px;
}

#tinymce h5,
.mceContentBody h5 {
  font-size: 20px;
  line-height: 27px;
}

@media all and (max-width: 768px) {
  #tinymce h5,
  .mceContentBody h5 {
    font-size: 17px;
    line-height: 21px;
  }
}

#tinymce h4,
.mceContentBody h4 {
  font-size: 27px;
  line-height: 31px;
}

@media all and (max-width: 768px) {
  #tinymce h4,
  .mceContentBody h4 {
    font-size: 21px;
    line-height: 25px;
  }
}

#tinymce h3,
.mceContentBody h3 {
  font-size: 33px;
}

@media all and (max-width: 768px) {
  #tinymce h3,
  .mceContentBody h3 {
    font-size: 25px;
    line-height: 29px;
  }
}

@media all and (max-width: 768px) {
  #tinymce h2,
  .mceContentBody h2 {
    font-size: 28px;
    line-height: 28px;
  }
}

#tinymce h1,
.mceContentBody h1 {
  font-size: 63px;
}

#tinymce p,
.mceContentBody p {
  margin-bottom: 15px;
}

#tinymce ul,
#tinymce ol,
.mceContentBody ul,
.mceContentBody ol {
  position: relative;
  counter-reset: item;
}

#tinymce ul li,
#tinymce ol li,
.mceContentBody ul li,
.mceContentBody ol li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 55px;
}

@media all and (max-width: 600px) {
  #tinymce ul li,
  #tinymce ol li,
  .mceContentBody ul li,
  .mceContentBody ol li {
    padding-left: 30px;
  }
}

#tinymce ul li:before,
#tinymce ol li:before,
.mceContentBody ul li:before,
.mceContentBody ol li:before {
  color: #A29771;
}

#tinymce ul li li:first-of-type,
#tinymce ol li li:first-of-type,
.mceContentBody ul li li:first-of-type,
.mceContentBody ol li li:first-of-type {
  margin-top: 15px;
}

#tinymce ul li li:before,
#tinymce ol li li:before,
.mceContentBody ul li li:before,
.mceContentBody ol li li:before {
  color: #A29771;
}

#tinymce ul li li li:before,
#tinymce ol li li li:before,
.mceContentBody ul li li li:before,
.mceContentBody ol li li li:before {
  color: #A29771;
}

#tinymce ul > li:before,
.mceContentBody ul > li:before {
  content: '';
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  top: 5px;
  left: 35px;
  font-size: 14px;
  background-image: url("/_ui/skin/img/ul-diamond.png");
  background-size: contain;
  background-position: 50% 50%;
}

@media all and (max-width: 600px) {
  #tinymce ul > li:before,
  .mceContentBody ul > li:before {
    left: 10px;
  }
}

#tinymce ul > li > ul > li:before,
.mceContentBody ul > li > ul > li:before {
  content: '';
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  top: 10px;
  left: 35px;
  font-size: 14px;
  background-image: url("/_ui/skin/img/ul-circle.png");
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

@media all and (max-width: 768px) {
  #tinymce ul > li > ul > li:before,
  .mceContentBody ul > li > ul > li:before {
    left: 11px;
  }
}

#tinymce ol > li:before,
.mceContentBody ol > li:before {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  content: counter(item) ".";
  counter-increment: item;
  position: absolute;
  top: 0px;
  left: 35px;
  color: #A29771;
}

@media all and (max-width: 600px) {
  #tinymce ol > li:before,
  .mceContentBody ol > li:before {
    left: 10px;
  }
}

#tinymce ol > li ol > li:before,
.mceContentBody ol > li ol > li:before {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  content: counter(item) ".";
  color: #A29771;
}

#tinymce ol > li ol ol > li:before,
.mceContentBody ol > li ol ol > li:before {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  content: counter(item) ".";
  color: #A29771;
}

#tinymce ol > li > ul > li:before,
.mceContentBody ol > li > ul > li:before {
  content: '';
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  top: 11px;
  left: 35px;
  font-size: 14px;
  background-image: url("/_ui/skin/img/ul-circle.png");
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

@media all and (max-width: 768px) {
  #tinymce ol > li > ul > li:before,
  .mceContentBody ol > li > ul > li:before {
    left: 11px;
  }
}

#tinymce strong,
#tinymce b,
.mceContentBody strong,
.mceContentBody b {
  font-weight: bold;
}

#tinymce em,
.mceContentBody em {
  font-style: italic;
}

#tinymce a:not(.button),
.mceContentBody a:not(.button) {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  display: inline;
  position: relative;
  color: #C15722;
}

#tinymce a:not(.button):hover,
.mceContentBody a:not(.button):hover {
  color: #A83E09;
}

#tinymce img,
.mceContentBody img {
  position: relative;
  max-width: 100%;
  height: auto;
}

#tinymce img.image-border,
.mceContentBody img.image-border {
  border-left: 10px solid #31AFCF;
}

#tinymce .image-with-caption,
.mceContentBody .image-with-caption {
  position: relative;
  height: 100%;
  transform: translateY(5px);
}

@media all and (max-width: 600px) {
  #tinymce .image-with-caption,
  .mceContentBody .image-with-caption {
    margin: 40px auto;
  }
}

#tinymce .image-with-caption .caption-bar,
.mceContentBody .image-with-caption .caption-bar {
  position: absolute;
  width: 10px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(49, 175, 207, 0.7);
}

#tinymce .image-with-caption img,
.mceContentBody .image-with-caption img {
  margin: 0;
}

#tinymce .image-with-caption img.align-left, #tinymce .image-with-caption img.align-right,
.mceContentBody .image-with-caption img.align-left,
.mceContentBody .image-with-caption img.align-right {
  float: none;
}

#tinymce .image-with-caption .caption,
.mceContentBody .image-with-caption .caption {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  padding: 0 0 0 12px;
  width: 100%;
  height: auto;
  bottom: 0;
  font-size: 14px;
  line-height: 22px;
  color: #222222;
}

@media all and (max-width: 600px) {
  #tinymce .image-with-caption .caption,
  .mceContentBody .image-with-caption .caption {
    position: relative;
    padding: 10px 10px;
  }
}

#tinymce .align-left,
.mceContentBody .align-left {
  float: left;
  margin: 0 30px 20px 0;
}

@media all and (max-width: 600px) {
  #tinymce .align-left,
  .mceContentBody .align-left {
    display: block;
    float: none;
    margin: 40px auto;
  }
}

#tinymce .align-right,
.mceContentBody .align-right {
  float: right;
  margin: 0 0 30px 20px;
}

@media all and (max-width: 600px) {
  #tinymce .align-right,
  .mceContentBody .align-right {
    display: block;
    float: none;
    margin: 40px auto;
  }
}

#tinymce .full,
.mceContentBody .full {
  margin: 0 auto;
  width: 100%;
}

#tinymce blockquote,
.mceContentBody blockquote {
  position: relative;
  vertical-align: middle;
  margin: 60px auto;
  width: 85%;
}

@media all and (max-width: 600px) {
  #tinymce blockquote,
  .mceContentBody blockquote {
    margin: 60px 20px 60px;
    width: calc(100% - 40px);
  }
}

#tinymce blockquote p,
.mceContentBody blockquote p {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #222222;
  line-height: 25px;
}

@media all and (max-width: 600px) {
  #tinymce blockquote p,
  .mceContentBody blockquote p {
    font-size: 14px;
    line-height: 25px;
  }
}

#tinymce blockquote p:last-of-type,
.mceContentBody blockquote p:last-of-type {
  margin-bottom: 0;
  text-align: left;
  font-size: 13px;
}

#tinymce blockquote p:first-of-type,
.mceContentBody blockquote p:first-of-type {
  text-align: left;
}

#tinymce blockquote:before,
.mceContentBody blockquote:before {
  content: '';
  position: absolute;
  vertical-align: middle;
  width: 10px;
  height: 100%;
  top: 0;
  left: -26px;
  opacity: .7;
  background-color: #31AFCF;
}

@media all and (max-width: 1024px) {
  #tinymce blockquote:before,
  .mceContentBody blockquote:before {
    top: 3px;
    left: -20px;
    font-size: 27px;
  }
}

#tinymce .nowrap,
.mceContentBody .nowrap {
  position: relative;
}

#tinymce .link-icon-ext,
#tinymce .link-icon-ppt,
#tinymce .link-icon-xls,
#tinymce .link-icon-doc,
#tinymce .link-icon-pdf,
.mceContentBody .link-icon-ext,
.mceContentBody .link-icon-ppt,
.mceContentBody .link-icon-xls,
.mceContentBody .link-icon-doc,
.mceContentBody .link-icon-pdf {
  margin-right: 38px;
  padding-bottom: 1px;
}

#tinymce .link-icon-ext span:after,
#tinymce .link-icon-ppt span:after,
#tinymce .link-icon-xls span:after,
#tinymce .link-icon-doc span:after,
#tinymce .link-icon-pdf span:after,
.mceContentBody .link-icon-ext span:after,
.mceContentBody .link-icon-ppt span:after,
.mceContentBody .link-icon-xls span:after,
.mceContentBody .link-icon-doc span:after,
.mceContentBody .link-icon-pdf span:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: -6px;
  right: -33px;
  color: #C15722;
  font-size: 31px;
  transition: 0.25s;
}

#tinymce .link-icon-ext:hover span:after,
#tinymce .link-icon-ppt:hover span:after,
#tinymce .link-icon-xls:hover span:after,
#tinymce .link-icon-doc:hover span:after,
#tinymce .link-icon-pdf:hover span:after,
.mceContentBody .link-icon-ext:hover span:after,
.mceContentBody .link-icon-ppt:hover span:after,
.mceContentBody .link-icon-xls:hover span:after,
.mceContentBody .link-icon-doc:hover span:after,
.mceContentBody .link-icon-pdf:hover span:after {
  color: #A83E09;
}

#tinymce .link-icon-doc span:after,
.mceContentBody .link-icon-doc span:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#tinymce .link-icon-xls span:after,
.mceContentBody .link-icon-xls span:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#tinymce .link-icon-ppt span:after,
.mceContentBody .link-icon-ppt span:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#tinymce .link-icon-ext,
.mceContentBody .link-icon-ext {
  margin-right: 28px;
}

#tinymce .link-icon-ext span:after,
.mceContentBody .link-icon-ext span:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 0;
  right: -22px;
  font-size: 19px;
}

#tinymce .responsive-video,
.mceContentBody .responsive-video {
  position: relative;
  height: 0;
  margin: 0 auto;
  padding-bottom: 56.25%;
}

#tinymce .responsive-video iframe,
.mceContentBody .responsive-video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: none;
}

#tinymce {
  padding: 10px;
}

.mceContentBody .field-name-body .field-items .field-item > *:first-child {
  margin-top: 0;
}

.mceContentBody .field-name-body .field-items .field-item > *:last-child {
  margin-bottom: -10px;
}

@media all and (max-width: 600px) {
  .mceContentBody .field-name-body .field-items .field-item > *:last-child {
    margin-bottom: -10px;
  }
}

table {
  width: 100%;
  text-align: center;
  line-height: 18px;
  table-layout: fixed;
}

@media all and (max-width: 600px) {
  table.responsive thead {
    display: none;
  }
}

@media all and (max-width: 600px) {
  table.responsive tbody tr {
    display: block;
    padding: 10px 0 25px;
  }
}

@media all and (max-width: 600px) {
  table.responsive tbody tr:nth-child(even) {
    background-color: #F3F4F5;
  }
}

@media all and (max-width: 600px) {
  table.responsive tbody tr:nth-child(odd) {
    background-color: #E6E8EB;
  }
}

table.responsive tbody tr td {
  padding: 20px;
}

@media all and (max-width: 600px) {
  table.responsive tbody tr td {
    display: block;
    padding: 5px 10px;
    border: none;
  }
  table.responsive tbody tr td:first-child {
    padding-bottom: 10px;
    font-family: henderson-sans-basic,sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    text-transform: uppercase;
  }
}

@media all and (max-width: 600px) {
  table.responsive tbody tr td:before {
    content: attr(data-heading);
    display: block;
    color: #222222;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 28px;
  }
}

table thead {
  background: #0A2240;
}

table th {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  padding: 10px 10px 10px;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  border: none;
}

@media all and (max-width: 600px) {
  table th {
    font-size: 12px;
  }
}

table tbody {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  border-top: none;
}

table tbody tr:nth-child(even) {
  background: #F3F4F5;
}

table tbody tr:nth-child(odd) {
  background: #E6E8EB;
}

table tr {
  color: #222222;
}

table tr td {
  padding: 10px;
}

table tr td:first-child {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 500;
  font-weight: bold;
  font-size: 14px;
}

table h6 {
  margin-top: 0 !important;
  margin-bottom: 0;
}

.table-wrapper {
  position: relative;
  overflow: hidden;
}

.pinned {
  position: absolute;
  width: calc(40% + 1px);
  height: 100%;
  left: 0;
  bottom: 0;
  background: #ffffff;
  overflow: hidden;
  overflow-x: scroll;
}

.pinned table {
  width: 100%;
  height: 100%;
}

.pinned table th,
.pinned table td {
  white-space: nowrap;
}

.scrollable {
  overflow: hidden;
  overflow-x: scroll;
}

.scrollable table {
  margin-left: 40%;
  width: 160%;
  border-right: none;
}

.scrollable table th:first-child,
.scrollable table td:first-child {
  display: none;
}

.admin-tabs h2 {
  display: none;
}

.admin-tabs .tabs {
  margin: 0;
  padding: 0;
  font-size: 0;
  text-align: center;
  border: none;
}

.admin-tabs .tabs li {
  display: inline-block;
  margin-right: 20px;
}

.admin-tabs .tabs li:last-of-type {
  margin-right: 0;
}

.admin-tabs .tabs li a {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 15px 20px;
  padding-right: 20px;
  color: #ffffff;
  font-size: 17px;
  line-height: 18px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: #C15722;
  border: none;
  overflow: hidden;
  transition: 0.25s;
}

@media all and (max-width: 600px) {
  .admin-tabs .tabs li a {
    font-size: 15px;
    padding: 10px 20px;
    padding-right: 25px;
  }
}

.admin-tabs .tabs li a:before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #A83E09;
  transform: translateX(-100%);
  transition: 0.25s;
}

.admin-tabs .tabs li a:hover {
  background: #A83E09;
}

.admin-tabs .tabs li a:hover:before {
  transform: translateX(0);
}

.admin-tabs .tabs li a.active {
  background: #A83E09;
  border: none;
}

.vehicle-color {
  border: 1px solid #DDDDDD;
  border-radius: 50%;
}

.vehicle-color-oceangray {
  background-color: #a3b5c3 !important;
}

.vehicle-color-oceangray.vehicle-color-selected {
  border: 2px solid #a3b5c3 !important;
}

.vehicle-color-almond {
  background-color: #A29771 !important;
}

.vehicle-color-almond.vehicle-color-selected {
  border: 2px solid #A29771 !important;
}

.vehicle-color-patriotblue {
  background-color: #1e3457 !important;
}

.vehicle-color-patriotblue.vehicle-color-selected {
  border: 2px solid #1e3457 !important;
}

.vehicle-color-brightwhite {
  background-color: #ffffff !important;
}

.vehicle-color-brightwhite.vehicle-color-selected {
  border: 2px solid #ffffff !important;
}

.vehicle-color-brightwhite.vehicle-color-selected:after {
  border: 4px solid #DDDDDD !important;
}

.vehicle-color-black {
  background-color: #000000 !important;
}

.vehicle-color-black.vehicle-color-selected {
  border: 2px solid #000000 !important;
}

.vehicle-color-electricblue {
  background-color: #1a2a57 !important;
}

.vehicle-color-electricblue.vehicle-color-selected {
  border: 2px solid #1a2a57 !important;
}

.vehicle-color-burgundy {
  background-color: #6d120e !important;
}

.vehicle-color-burgundy.vehicle-color-selected {
  border: 2px solid #6d120e !important;
}

.vehicle-color-flamered {
  background-color: #870000 !important;
}

.vehicle-color-flamered.vehicle-color-selected {
  border: 2px solid #870000 !important;
}

.vehicle-color-forestgreen {
  background-color: #184a16 !important;
}

.vehicle-color-forestgreen.vehicle-color-selected {
  border: 2px solid #184a16 !important;
}

.vehicle-color-ivory {
  background-color: #f6f2e8 !important;
}

.vehicle-color-ivory.vehicle-color-selected {
  border: 2px solid #f6f2e8 !important;
}

.vehicle-color-infernored {
  background-color: #81170d !important;
}

.vehicle-color-infernored.vehicle-color-selected {
  border: 2px solid #81170d !important;
}

.vehicle-color-metalliccharcoal {
  background-color: #575551 !important;
}

.vehicle-color-metalliccharcoal.vehicle-color-selected {
  border: 2px solid #575551 !important;
}

.vehicle-color-platinum {
  background-color: #c1c4c6 !important;
}

.vehicle-color-platinum.vehicle-color-selected {
  border: 2px solid #c1c4c6 !important;
}

.vehicle-color-orange {
  background-color: #f5840b !important;
}

.vehicle-color-orange.vehicle-color-selected {
  border: 2px solid #f5840b !important;
}

.vehicle-color-monstergreen {
  background-color: #26b726 !important;
}

.vehicle-color-monstergreen.vehicle-color-selected {
  border: 2px solid #26b726 !important;
}

.vehicle-color-sunburstorange {
  background-color: #af5312 !important;
}

.vehicle-color-sunburstorange.vehicle-color-selected {
  border: 2px solid #af5312 !important;
}

.vehicle-color-oasisgreen {
  background-color: #3d4d30 !important;
}

.vehicle-color-oasisgreen.vehicle-color-selected {
  border: 2px solid #3d4d30 !important;
}

.vehicle-color-truetimberkanaticamo {
  background-image: url("../../../sites/default/files/vehicle-color-photos/swatch-truetimber-kanati.jpg");
  background-repeat: no-repeat;
  background-size: 35px 35px;
}

.vehicle-color-truetimberkanaticamo.vehicle-color-selected {
  border: 2px solid #BAB1A7 !important;
}

.selector {
  transition: 0.25s ease-in;
  position: relative;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.selector.hover span {
  border: 1px solid #C15722;
}

.selector:focus span {
  border: 1px solid #C15722;
}

.selector span {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  display: block;
  padding: 10px 20px;
  height: 40px;
  font-size: 14px;
  line-height: 20px;
  border: 1px solid #DDDDDD;
  transition: 0.25s ease-in;
}

.selector span:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  padding-left: 14px;
  padding-top: 12px;
  top: 0px;
  right: 0px;
  width: 41px;
  height: 100%;
  background-color: #C15722;
  color: #ffffff;
  z-index: 0;
}

.selector select {
  position: absolute;
  padding: 10px 20px;
  width: 100%;
  height: 40px;
  top: 0;
  left: 0;
  font-size: 15px;
  background: #ffffff;
  color: #919191;
  border-radius: 0;
  transition: 0.25s;
  opacity: 0;
  cursor: pointer;
}

.search-snippet strong {
  font-weight: bold;
}

.nobreak {
  white-space: nowrap;
}

.unset_capitalization {
  text-transform: none;
}

.action-links {
  margin-left: auto;
  margin-right: auto;
  max-width: 1069px;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 30px;
}

@media all and (max-width: 1024px) {
  .action-links {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media all and (max-width: 600px) {
  .action-links {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.action-links a {
  color: #31AFCF;
}

.action-links a:hover {
  color: #598895;
}

html {
  position: relative;
  z-index: 1201;
  -webkit-overflow-scrolling: touch;
}

@media all and (min-width: 1600px) {
  html {
    z-index: 1600;
  }
}

@media all and (max-width: 1200px) {
  html {
    z-index: 1200;
  }
}

@media all and (max-width: 1024px) {
  html {
    z-index: 1024;
  }
}

@media all and (max-width: 600px) {
  html {
    z-index: 600;
  }
}

body {
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main.wrapper {
  display: block;
}

a {
  color: #C15722;
}

a:hover {
  color: #A83E09;
}

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

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

.container:after {
  clear: both;
}

.container {
  *zoom: 1;
}

#breadcrumb,
#back-to,
#page-title {
  padding-right: 30px;
  padding-left: 30px;
  position: relative;
}

#breadcrumb:before, #breadcrumb:after,
#back-to:before,
#back-to:after,
#page-title:before,
#page-title:after {
  content: " ";
  display: table;
}

#breadcrumb:after,
#back-to:after,
#page-title:after {
  clear: both;
}

#breadcrumb,
#back-to,
#page-title {
  *zoom: 1;
}

@media all and (max-width: 1024px) {
  #breadcrumb,
  #back-to,
  #page-title {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media all and (max-width: 600px) {
  #breadcrumb,
  #back-to,
  #page-title {
    padding-right: 10px;
    padding-left: 10px;
  }
}

#back-to {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  padding-right: 0;
  padding-left: 22px;
  margin-right: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
  height: 21px;
  line-height: 1;
  overflow-x: hidden;
}

@media all and (max-width: 1024px) {
  #back-to {
    margin-right: 20px;
    margin-bottom: 30px;
    padding-left: 11px;
  }
}

@media all and (max-width: 600px) {
  #back-to {
    padding-left: 3px;
  }
}

.has-promo #back-to {
  margin-top: 35px;
}

#back-to:before {
  content: '';
  display: block;
  position: absolute;
  width: calc(100% - 60px);
  height: 1px;
  top: 50%;
  left: 30px;
  background: #ecebe9;
  transform: translateY(-50%);
}

@media all and (max-width: 1024px) {
  #back-to:before {
    width: calc(100% - 40px);
    left: 20px;
  }
}

@media all and (max-width: 600px) {
  #back-to:before {
    width: calc(100% - 20px);
    left: 10px;
  }
}

#back-to a {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  display: inline-block;
  position: relative;
  padding-left: 0px;
  padding-right: 10px;
  width: auto;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  color: inherit;
  z-index: 1;
}

#back-to a:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  position: relative;
  top: 2px;
  color: inherit;
  font-size: 15px;
  transform: translateX(0);
  transition: 0.25s;
}

#back-to a:after {
  content: '';
  position: absolute;
  width: 5000px;
  height: 1px;
  top: 60%;
  right: 0;
  background-color: #DDDDDD;
  transform: translate(100%, -50%);
  z-index: -1;
}

#back-to a:hover {
  color: #587A91;
}

#back-to a:hover:before {
  color: #587A91;
  transform: translateX(-5px);
}

main:before, main:after {
  content: " ";
  display: table;
}

main:after {
  clear: both;
}

main {
  *zoom: 1;
}

body.front #main {
  position: relative;
}

body.front #main:before {
  content: '';
  position: absolute;
  top: -25px;
  right: 0;
  width: calc(50% - 15px);
  height: 50px;
  background-color: rgba(88, 122, 145, 0.8);
  z-index: 1;
}

@media all and (max-width: 768px) {
  body.front #main:before {
    height: 40px;
    top: -20px;
  }
}

body.not-front #back-to {
  position: relative;
}

body.not-front #back-to:before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: rgba(49, 175, 207, 0.6);
  z-index: 1;
}

@media all and (max-width: 1024px) {
  body.not-front #back-to:before {
    height: 30px;
    top: -30px;
  }
}

#page-title {
  margin: 55px 0;
}

@media all and (max-width: 600px) {
  #page-title {
    margin: 30px 0;
    font-size: 30px;
    line-height: 30px;
  }
  body.node-type-campaign-page #page-title {
    font-size: 46px;
    line-height: 49px;
    margin-bottom: 0;
  }
}

#page-title + #back-to {
  margin-top: -12px;
}

body.page-user #center .content {
  padding-right: 30px;
  padding-left: 30px;
}

body.page-user #center .content:before, body.page-user #center .content:after {
  content: " ";
  display: table;
}

body.page-user #center .content:after {
  clear: both;
}

body.page-user #center .content {
  *zoom: 1;
}

@media all and (max-width: 1024px) {
  body.page-user #center .content {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media all and (max-width: 600px) {
  body.page-user #center .content {
    padding-right: 10px;
    padding-left: 10px;
  }
}

#center .notifications {
  padding-right: 30px;
  padding-left: 30px;
  max-width: 1072px;
}

#center .notifications:before, #center .notifications:after {
  content: " ";
  display: table;
}

#center .notifications:after {
  clear: both;
}

#center .notifications {
  *zoom: 1;
}

@media all and (max-width: 1024px) {
  #center .notifications {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media all and (max-width: 600px) {
  #center .notifications {
    padding-right: 10px;
    padding-left: 10px;
  }
}

body.node-type-home-page #center .notifications {
  max-width: 1220px;
}

#center .notifications .admin-tabs {
  margin-bottom: 30px;
}

body.node-type-home-page #center .notifications .admin-tabs {
  margin-top: 30px;
  margin-bottom: 0;
}

#center .notifications .messages {
  margin: 30px 0;
}

#center .node .content {
  padding-right: 30px;
  padding-left: 30px;
}

#center .node .content:before, #center .node .content:after {
  content: " ";
  display: table;
}

#center .node .content:after {
  clear: both;
}

#center .node .content {
  *zoom: 1;
}

@media all and (max-width: 1024px) {
  #center .node .content {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media all and (max-width: 600px) {
  #center .node .content {
    padding-right: 10px;
    padding-left: 10px;
  }
}

#user-login {
  margin: 0 auto;
  max-width: 1012px;
}

#reload-prompt {
  display: block;
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 120px;
  top: 0;
  left: 0;
  background: #ffffff;
  border-top: 8px solid #587A91;
  transition: 0.25s;
  transform: translateY(-100%);
}

@media all and (max-width: 1170px) {
  #reload-prompt {
    height: 80px;
  }
}

#reload-prompt.reload-prompt-active {
  transform: translateY(0);
}

body.sticky-header #reload-prompt {
  height: 88px;
}

@media all and (max-width: 1024px) {
  body.sticky-header #reload-prompt {
    height: 80px;
  }
}

#reload-prompt p {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  display: block;
  position: relative;
  padding: 0 40px;
  width: 100%;
  top: 50%;
  color: #222222;
  line-height: 18px;
  text-align: center;
  transform: translateY(-50%);
}

#reload-prompt #reload-close {
  display: block;
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 30px;
  color: #0A2240;
}

#reload-prompt #reload-close:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: 0.25s;
  color: inherit;
}

#user-login label {
  padding-bottom: 7px;
  font-size: 18px;
  color: #5b524d;
  transition: 0.25s;
}

#user-login label .form-required {
  color: #8e1f0b;
}

#user-login input[type="text"],
#user-login input[type="password"] {
  font-family: henderson-sans-basic,sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
  padding: 10px 20px;
  height: 40px;
  background: #ffffff;
  font-size: 15px;
  color: #919191;
  border: 1px solid #DDDDDD;
  box-shadow: inset 0 7px 9px -6px rgba(201, 198, 196, 0.4), 0px 0px 3px 1px rgba(86, 82, 69, 0);
  transition: 0.25s ease-in;
}

@media all and (max-width: 600px) {
  #user-login input[type="text"],
  #user-login input[type="password"] {
    width: 100%;
  }
}

#user-login input[type="text"]:hover, #user-login input[type="text"]:focus, #user-login input[type="text"]:active,
#user-login input[type="password"]:hover,
#user-login input[type="password"]:focus,
#user-login input[type="password"]:active {
  border: 1px solid #C15722;
  box-shadow: inset 0 7px 9px -6px rgba(201, 198, 196, 0), 0px 0px 3px 1px rgba(86, 82, 69, 0.4);
}

#user-login .form-submit {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 15px 20px;
  padding-right: 25px;
  color: #ffffff;
  font-size: 15px;
  line-height: 18px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: #C15722;
  overflow: hidden;
  border: none;
  transition: 0.25s;
}

@media all and (max-width: 600px) {
  #user-login .form-submit {
    font-size: 15px;
    padding: 10px 20px;
    padding-right: 25px;
  }
}

#user-login .form-submit:hover {
  background: #8e1f0b;
  cursor: pointer;
}

@media all and (max-width: 1170px) {
  body {
    padding-top: 80px !important;
  }
}

body.sticky-header {
  padding-top: 120px;
}

body.sticky-header.has-breadcrumbs {
  padding-top: 138px;
}

@media all and (max-width: 1170px) {
  body.sticky-header.has-breadcrumbs {
    padding-top: 104px;
  }
}

header {
  position: relative;
  z-index: 99;
  width: 100%;
}

header:before, header:after {
  content: " ";
  display: table;
}

header:after {
  clear: both;
}

header {
  *zoom: 1;
}

@media all and (max-width: 1170px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
  }
}

body.sticky-header header {
  position: fixed;
  top: 0;
  left: 0;
}

.node-type-campaign-page header {
  height: 80px;
}

.node-type-campaign-page header .logo {
  position: relative;
  float: left;
  padding-left: 30px;
  width: 163px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.25s;
}

@media all and (max-width: 1170px) {
  .node-type-campaign-page header .logo {
    padding-left: 20px;
    width: 150px;
    height: 40px;
    background-size: contain;
  }
}

@media all and (max-width: 600px) {
  .node-type-campaign-page header .logo {
    padding-left: 10px;
  }
}

.sticky-header .node-type-campaign-page header .logo {
  transform: translateY(7px);
}

.node-type-campaign-page header .logo a h1 {
  width: 163px;
  height: 40px;
  overflow: hidden;
  text-indent: 110%;
  white-space: nowrap;
  background: url("../img/logo-horizontal.png");
  background-size: contain;
  background-repeat: no-repeat;
}

@media all and (max-width: 1170px) {
  .node-type-campaign-page header .logo a h1 {
    width: 150px;
    height: 40px;
    background-size: contain;
  }
}

@media all and (max-width: 600px) {
  .node-type-campaign-page header .logo a h1 {
    width: 150px;
    height: 40px;
    background-size: contain;
  }
}

.header-top {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 20px;
}

.header-top:before, .header-top:after {
  content: " ";
  display: table;
}

.header-top:after {
  clear: both;
}

.header-top {
  *zoom: 1;
}

@media all and (max-width: 1170px) {
  .header-top {
    display: none;
  }
}

body.sticky-header .header-top {
  display: none;
}

.header-top .secondary-menu {
  padding-right: 30px;
  padding-left: 30px;
  position: relative;
  float: right;
  margin-top: 2px;
  padding-left: 20px;
  width: 100%;
  line-height: 22px;
}

.header-top .secondary-menu:before, .header-top .secondary-menu:after {
  content: " ";
  display: table;
}

.header-top .secondary-menu:after {
  clear: both;
}

.header-top .secondary-menu {
  *zoom: 1;
}

@media all and (max-width: 1024px) {
  .header-top .secondary-menu {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media all and (max-width: 600px) {
  .header-top .secondary-menu {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.header-top .secondary-menu .menu {
  position: relative;
  float: right;
  line-height: 22px;
}

.header-top .secondary-menu .menu a {
  color: inherit;
}

.header-top .secondary-menu .menu li {
  display: inline-block;
  margin: 0;
  margin-right: 40px;
  padding: 0;
  line-height: 22px;
}

.header-top .secondary-menu .menu li.icon-dealer-small {
  position: relative;
}

.header-top .secondary-menu .menu li.icon-dealer-small:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  left: -2px;
  top: 0;
  font-size: 23px;
  cursor: pointer;
  transition: 0.25s;
}

.header-top .secondary-menu .menu li.icon-dealer-small a {
  padding-left: 18px;
}

.header-top .secondary-menu .menu li.icon-search {
  position: relative;
  margin-right: 0;
}

.header-top .secondary-menu .menu li.icon-search:before {
  position: absolute;
  left: -3px;
  top: 0;
  font-size: 23px;
  cursor: pointer;
  transition: 0.25s;
}

.header-top .secondary-menu .menu li.icon-search a {
  padding-left: 18px;
}

.header-top .secondary-menu .menu li:hover a {
  color: #A29771;
}

.header-top .secondary-menu .menu li:hover:before {
  color: #A29771;
}

.header-top .secondary-menu .menu li a {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 500;
  text-decoration: none;
  font-size: 11px;
  text-transform: uppercase;
  line-height: 22px;
  transition: 0.25s;
}

.wrapper-header {
  width: 100%;
  transition: all 0.25s ease;
}

.wrapper-header .wrapper-megamenu {
  position: relative;
  z-index: 2;
}

.wrapper-header .wrapper-megamenu:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  background: linear-gradient(to bottom, rgba(34, 34, 34, 0.09) 0%, rgba(34, 34, 34, 0) 100%);
}

@media all and (min-width: 1025px) {
  .has-breadcrumbs .wrapper-header .wrapper-megamenu:before {
    opacity: 0;
  }
}

.market-breadcrumbs .wrapper-header .wrapper-megamenu:before {
  opacity: 0;
}

.mobile-menu-active .wrapper-header .wrapper-megamenu:before {
  opacity: 0;
}

.sticky-vehicle-mobile-navigation .wrapper-header .wrapper-megamenu:before {
  opacity: 0;
}

.wrapper-header .header-inner {
  padding-right: 30px;
  padding-left: 30px;
  position: relative;
  z-index: 1;
  padding-top: 15px;
  width: 100%;
}

.wrapper-header .header-inner:before, .wrapper-header .header-inner:after {
  content: " ";
  display: table;
}

.wrapper-header .header-inner:after {
  clear: both;
}

.wrapper-header .header-inner {
  *zoom: 1;
}

@media all and (max-width: 1024px) {
  .wrapper-header .header-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media all and (max-width: 600px) {
  .wrapper-header .header-inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media all and (max-width: 1170px) {
  .wrapper-header .header-inner {
    padding-top: 20px;
    padding-bottom: 18px;
  }
}

.wrapper-header .header-inner .logo {
  float: left;
  margin-top: 4px;
  width: 162px;
  transition: transform 0.25s;
}

.sticky-header .wrapper-header .header-inner .logo {
  transform: translateY(4px);
}

@media all and (max-width: 1170px) {
  .wrapper-header .header-inner .logo {
    margin-top: 2px;
    width: 150px;
    height: 40px;
    background-size: contain;
  }
  .sticky-header .wrapper-header .header-inner .logo {
    transform: translateY(0px);
  }
}

.wrapper-header .header-inner .logo a h1 {
  width: 163px;
  height: 40px;
  overflow: hidden;
  text-indent: 110%;
  white-space: nowrap;
  background: url("../img/logo-horizontal.png");
  background-size: contain;
  background-repeat: no-repeat;
}

@media all and (max-width: 1170px) {
  .wrapper-header .header-inner .logo a h1 {
    width: 150px;
    height: 40px;
    background-size: contain;
  }
}

@media all and (max-width: 600px) {
  .wrapper-header .header-inner .logo a h1 {
    width: 150px;
    height: 40px;
    background-size: contain;
  }
}

.wrapper-header .header-inner .main-menu {
  display: inline-block;
  position: relative;
  margin-left: 48px;
  transition: 0.25s;
  width: calc(100% - 290px);
}

@media all and (max-width: 1170px) {
  .wrapper-header .header-inner .main-menu {
    display: none;
  }
}

body.sticky-header .wrapper-header .header-inner .main-menu {
  width: calc(100% - 220px);
  padding-right: 25px;
}

@media all and (max-width: 1170px) {
  body.sticky-header .wrapper-header .header-inner .main-menu {
    padding-right: 40px;
  }
}

@media all and (max-width: 1060px) {
  body.sticky-header .wrapper-header .header-inner .main-menu {
    padding-right: 20px;
  }
}

.wrapper-header .header-inner .main-menu > .menu {
  padding: 13px 0 21px;
  text-align: left;
}

body.sticky-header .wrapper-header .header-inner .main-menu > .menu {
  padding: 16px 0 6px;
}

.wrapper-header .header-inner .main-menu > .menu > li {
  display: inline-block;
  vertical-align: top;
  margin: 0;
  margin-right: 50px;
  padding: 0;
  text-align: center;
}

.wrapper-header .header-inner .main-menu > .menu > li.last {
  margin-right: 0 !important;
}

.wrapper-header .header-inner .main-menu > .menu > li.last a {
  color: #A29771;
  background: none;
}

.wrapper-header .header-inner .main-menu > .menu > li.has-megamenu a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 3px;
  background-color: #A29771;
  opacity: 0;
  transform-origin: 0% 50%;
  transform: translateX(-50%) scaleX(0);
  transition: 0.25s;
}

.wrapper-header .header-inner .main-menu > .menu > li.has-megamenu > ul {
  display: none;
}

.wrapper-header .header-inner .main-menu > .menu > li:not(.has-megamenu) {
  position: relative;
  padding-bottom: 20px;
}

.wrapper-header .header-inner .main-menu > .menu > li:not(.has-megamenu).menu-hover > ul {
  top: 42px;
  height: auto;
  opacity: 1;
  background-color: #FFFFFF;
}

.wrapper-header .header-inner .main-menu > .menu > li:not(.has-megamenu).menu-hover > ul a {
  color: #000000;
}

.wrapper-header .header-inner .main-menu > .menu > li:not(.has-megamenu).menu-hover > a:after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.wrapper-header .header-inner .main-menu > .menu > li:not(.has-megamenu) > ul {
  position: absolute;
  padding: 20px 20px 20px 10px;
  top: 30px;
  left: 50%;
  width: 200px;
  height: 0;
  box-shadow: 0 5px 10px 0 rgba(34, 34, 34, 0.11);
  opacity: 0;
  overflow: hidden;
  transform: translateX(-50%);
  transition: 0.25s;
}

.wrapper-header .header-inner .main-menu > .menu > li:not(.has-megamenu) > ul li {
  position: relative;
  display: block;
  margin-right: 0;
  margin-bottom: 20px;
  text-align: left;
}

.wrapper-header .header-inner .main-menu > .menu > li:not(.has-megamenu) > ul li:last-child {
  margin-bottom: 0;
}

.wrapper-header .header-inner .main-menu > .menu > li:not(.has-megamenu) > ul li:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 2px;
  top: 45%;
  width: 8px;
  height: 11px;
  font-size: 16px;
  color: #A29771;
  transform: translate(0, -50%);
  transition: 0.25s;
}

.wrapper-header .header-inner .main-menu > .menu > li:not(.has-megamenu) > ul li.menu-hover a {
  color: #A29771;
}

.wrapper-header .header-inner .main-menu > .menu > li:not(.has-megamenu) > ul li.menu-hover:after {
  right: -3px;
}

.wrapper-header .header-inner .main-menu > .menu > li:not(.has-megamenu) > ul li.external:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 55%;
  right: -5px;
  width: 18px;
  height: 18px;
  font-size: 18px;
  transform: translateY(-50%);
}

.wrapper-header .header-inner .main-menu > .menu > li:not(.has-megamenu) > ul li.external.menu-hover:after {
  right: -10px;
}

.wrapper-header .header-inner .main-menu > .menu > li:not(.has-megamenu) > ul li a {
  padding-bottom: 0;
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 16px;
}

.wrapper-header .header-inner .main-menu > .menu > li:not(.has-megamenu) > a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 3px;
  background-color: #A29771;
  opacity: 0;
  transform-origin: 0% 50%;
  transform: translateX(-50%) scaleX(0);
  transition: 0.25s;
}

.wrapper-header .header-inner .main-menu > .menu > li.menu-hover a:after, .wrapper-header .header-inner .main-menu > .menu > li.menu-active a:after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
  color: #FFC40C;
}

.wrapper-header .header-inner .main-menu > .menu > li.menu-hover-siblings a, .wrapper-header .header-inner .main-menu > .menu > li.menu-inactive a {
  color: #587A91 !important;
}

.wrapper-header .header-inner .main-menu > .menu > li a {
  display: inline-block;
  position: relative;
  color: inherit;
  padding-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.wrapper-header .header-inner #search-sticky {
  position: absolute;
  top: 50%;
  right: 0;
  width: 50px;
  height: 28px;
  transform: translateY(-50%);
  transition: 0.25s;
  overflow: hidden;
}

@media all and (max-width: 1170px) {
  .wrapper-header .header-inner #search-sticky {
    display: none;
  }
}

.wrapper-header .header-inner #search-sticky a {
  position: absolute;
  color: #222222;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
}

body.sticky-header .wrapper-header .header-inner #search-sticky a {
  right: 30px;
}

@media all and (max-width: 1150px) {
  body.sticky-header .wrapper-header .header-inner #search-sticky a {
    right: 15px;
  }
}

.wrapper-header .header-inner #search-sticky a.menu-hover-siblings, .wrapper-header .header-inner #search-sticky a.menu-inactive {
  color: #DDDDDD;
}

.wrapper-header .header-inner #search-sticky a:before {
  font-size: 24px;
}

.wrapper-header .header-bottom {
  position: relative;
  float: left;
  z-index: 2;
  width: 100%;
  height: 8px;
}

.wrapper-header .header-bottom .header-bottom-inner {
  position: relative;
  height: 20px;
  overflow-x: hidden;
}

#breadcrumb {
  padding-right: 30px;
  padding-left: 30px;
  position: relative;
  z-index: 1;
  float: none;
  clear: both;
  padding-top: 10px;
  padding-bottom: 7px;
  width: 100%;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  text-transform: capitalize;
  box-shadow: 0px 2px 3px 0px rgba(34, 34, 34, 0.12);
}

#breadcrumb:before, #breadcrumb:after {
  content: " ";
  display: table;
}

#breadcrumb:after {
  clear: both;
}

#breadcrumb {
  *zoom: 1;
}

#breadcrumb:before, #breadcrumb:after {
  content: " ";
  display: table;
}

#breadcrumb:after {
  clear: both;
}

#breadcrumb {
  *zoom: 1;
}

@media all and (max-width: 1024px) {
  #breadcrumb {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media all and (max-width: 600px) {
  #breadcrumb {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media all and (max-width: 1170px) {
  #breadcrumb {
    display: none;
  }
}

#breadcrumb.market-breadcrumbs-attached {
  box-shadow: none;
}

.megamenu-open #breadcrumb {
  z-index: 0;
}

#breadcrumb a {
  float: left;
  margin-right: 7px;
  text-decoration: none;
  color: inherit;
  border: none;
  transition: 0.25s;
}

#breadcrumb a:hover {
  color: #A29771;
}

#breadcrumb .separator {
  position: relative;
  float: left;
  margin-right: 7px;
  text-decoration: none;
}

#breadcrumb .separator:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  top: -1px;
  font-size: 15px;
  color: inherit;
}

body.mobile-menu-active {
  overflow: hidden;
}

#mobile-menu {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  position: fixed;
  z-index: 98;
  padding-top: 80px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  overflow-y: scroll;
  transition: 0.5s;
  transform: translateY(-100%);
}

@media all and (max-width: 600px) {
  #mobile-menu {
    padding-top: 80px;
  }
}

@media all and (max-width: 1170px) {
  body.mobile-menu-active #mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

#mobile-menu.locked {
  overflow: hidden;
  overflow-y: hidden;
}

#mobile-menu ul {
  padding-right: 30px;
  padding-left: 30px;
}

#mobile-menu ul:before, #mobile-menu ul:after {
  content: " ";
  display: table;
}

#mobile-menu ul:after {
  clear: both;
}

#mobile-menu ul {
  *zoom: 1;
}

@media all and (max-width: 1024px) {
  #mobile-menu ul {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media all and (max-width: 600px) {
  #mobile-menu ul {
    padding-right: 10px;
    padding-left: 10px;
  }
}

#mobile-menu ul.menu-main-menu {
  position: relative;
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}

#mobile-menu ul.menu-main-menu:first-of-type > li:first-of-type {
  position: relative;
  border-top: none;
}

@media all and (max-width: 600px) {
  #mobile-menu ul.menu-main-menu:first-of-type > li:first-of-type:after {
    content: '';
    left: -10px;
    width: calc(100% + 20px);
  }
}

#mobile-menu ul.menu-main-menu:first-of-type > li:first-of-type:not(.back):after {
  content: '';
  position: absolute;
  top: 0;
  left: -30px;
  width: calc(100% + 60px);
  height: 4px;
  background: linear-gradient(to bottom, rgba(34, 34, 34, 0.09) 0%, rgba(34, 34, 34, 0) 100%);
}

#mobile-menu ul.menu-main-menu > li {
  border-top: 1px solid #DDDDDD;
}

#mobile-menu ul.menu-main-menu > li.has-children > a, #mobile-menu ul.menu-main-menu > li.last > a {
  color: #0A2240;
  display: inline-block;
  position: relative;
  padding: 25px 0;
  font-size: 18px;
  line-height: 20px;
  text-transform: uppercase;
}

#mobile-menu ul.menu-main-menu > li.has-children > a:after, #mobile-menu ul.menu-main-menu > li.last > a:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  position: relative;
  top: 2px;
  color: inherit;
  font-size: 19px;
  transition: 0.25s;
  transform: translateX(3px);
  will-change: transform;
}

#mobile-menu ul.menu-main-menu > li.has-children > a:hover:after, #mobile-menu ul.menu-main-menu > li.last > a:hover:after {
  transform: translateX(8px);
}

#mobile-menu ul.menu-main-menu > li:last-child {
  border-bottom: 1px solid #DDDDDD;
}

#mobile-menu ul.menu-main-menu > li.last .RAQ {
  color: #A29771;
}

#mobile-menu ul.menu-main-menu > li.last .RAQ:after {
  color: inherit;
}

#mobile-menu ul.menu-main-menu > li > ul.menu-main-menu > li.leaf a {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  display: block;
  padding: 25px 0;
  color: #222222;
  font-size: 14px;
}

#mobile-menu ul.menu-main-menu > li > ul.menu-main-menu > li.leaf.last {
  border-bottom: none;
}

#mobile-menu ul:first-child > li:last-child {
  border-bottom: none;
}

#mobile-menu ul.menu-secondary-menu li.has-children:first-of-type > a, #mobile-menu ul.menu-extra-menu li.has-children:first-of-type > a {
  padding-top: 25px;
}

#mobile-menu ul.menu-secondary-menu li.has-children > a, #mobile-menu ul.menu-extra-menu li.has-children > a {
  padding: 10px 0;
}

#mobile-menu ul.menu-secondary-menu li.has-children > a:after, #mobile-menu ul.menu-extra-menu li.has-children > a:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  position: relative;
  top: 1px;
  color: inherit;
  font-size: 13px;
  transition: 0.25s;
  transform: translateX(3px);
  will-change: transform;
}

#mobile-menu ul.menu-secondary-menu li.has-children > a:hover:after, #mobile-menu ul.menu-extra-menu li.has-children > a:hover:after {
  transform: translateX(8px);
}

#mobile-menu ul.menu-secondary-menu li a, #mobile-menu ul.menu-extra-menu li a {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 500;
  display: inline-block;
  color: #0A2240;
  font-size: 13px;
  line-height: 18px;
  text-transform: uppercase;
}

#mobile-menu ul.menu-secondary-menu li li:not(.back):not(.parent), #mobile-menu ul.menu-extra-menu li li:not(.back):not(.parent) {
  border-bottom: 1px solid #DDDDDD;
}

#mobile-menu ul.menu-secondary-menu li li:not(.back):not(.parent) > a, #mobile-menu ul.menu-extra-menu li li:not(.back):not(.parent) > a {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  display: block;
  padding: 25px 0;
  font-size: 14px;
  text-transform: initial;
}

#mobile-menu ul.menu-secondary-menu li li:not(.back):not(.parent).last, #mobile-menu ul.menu-extra-menu li li:not(.back):not(.parent).last {
  border-bottom: none;
}

#mobile-menu ul.menu-extra-menu li:last-of-type a {
  padding-bottom: 25px;
}

#mobile-menu ul.menu-extra-menu li.icon-dealer-small {
  position: relative;
}

#mobile-menu ul.menu-extra-menu li.icon-dealer-small:before {
  position: absolute;
  top: 10px;
  left: -3px;
  color: inherit;
  font-size: 18px;
}

#mobile-menu ul.menu-extra-menu li.icon-dealer-small a {
  position: relative;
  padding-left: 16px;
}

#mobile-menu ul.menu-extra-menu li.icon-dealer-small a:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  left: -6px;
  top: 6px;
  font-size: 23px;
  color: inherit;
  cursor: pointer;
  transition: 0.25s;
}

#mobile-menu ul.menu-extra-menu li a {
  padding: 10px 0;
}

#mobile-menu ul.locked {
  overflow: hidden;
}

#mobile-menu ul ul.menu {
  position: fixed;
  z-index: 1;
  padding-top: 80px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #ffffff;
  overflow: hidden;
  overflow-y: scroll;
  transition: 0.25s;
  transform: translateX(100%);
}

#mobile-menu ul ul.visible {
  transform: translateX(0);
}

#mobile-menu ul ul.market-vehicles {
  position: relative;
}

#mobile-menu ul li {
  display: block;
  margin: 0;
}

#mobile-menu ul li.back,
#mobile-menu ul li.parent,
#mobile-menu ul li.market-vehicle-view-all {
  display: block;
  position: relative;
  padding-right: 30px;
  padding-left: 30px;
  width: calc(100% + 60px);
  left: -30px;
  line-height: 1;
}

@media all and (max-width: 1024px) {
  #mobile-menu ul li.back,
  #mobile-menu ul li.parent,
  #mobile-menu ul li.market-vehicle-view-all {
    padding-right: 20px;
    padding-left: 20px;
    width: calc(100% + 40px);
    left: -20px;
  }
}

@media all and (max-width: 600px) {
  #mobile-menu ul li.back,
  #mobile-menu ul li.parent,
  #mobile-menu ul li.market-vehicle-view-all {
    padding-right: 10px;
    padding-left: 10px;
    width: calc(100% + 20px);
    left: -10px;
  }
}

#mobile-menu ul li.back {
  z-index: 1;
  padding-top: 10px;
  padding-bottom: 10px;
  background: #000000;
}

#mobile-menu ul li.back a {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  display: inline-block;
  position: relative;
  padding-left: 0;
  color: #FFFFFF;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
}

#mobile-menu ul li.back a:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  position: relative;
  top: 1px;
  color: inherit;
  font-size: 13px;
  transform: translateX(-3px);
  transition: 0.25s;
}

#mobile-menu ul li.back a:hover:before {
  transform: translateX(-7px);
}

#mobile-menu ul li.parent {
  background: #587A91;
  box-shadow: 0 2px 3px 0 rgba(34, 34, 34, 0.12);
}

#mobile-menu ul li.parent a {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  display: block;
  padding-top: 12px;
  padding-bottom: 12px;
  color: #ffffff;
  font-size: 17px;
  line-height: 20px;
  text-transform: uppercase;
}

#mobile-menu ul li.market-vehicle-view-all {
  z-index: -1;
  margin-top: -5px;
  padding-top: 10px;
  padding-bottom: 30px;
}

#mobile-menu ul li.market-vehicle-view-all a {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  color: #0A2240;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

#mobile-menu ul li.market-vehicle-view-all a:hover {
  color: #A29771;
}

#mobile-menu ul li.market-vehicle-types {
  position: relative;
  margin-top: 38px;
  margin-bottom: -10px;
}

#mobile-menu ul li.market-vehicle-types.first {
  margin-top: 28px;
}

#mobile-menu ul li.market-vehicle-types.last {
  margin-bottom: -5px;
}

#mobile-menu ul li.market-vehicle-types.last:after {
  content: '';
  display: block;
  position: relative;
  width: calc(100% + 60px);
  height: 5px;
  bottom: 5px;
  left: -30px;
  background: #ffffff;
}

@media all and (max-width: 1170px) {
  #mobile-menu ul li.market-vehicle-types.last:after {
    width: calc(100% + 40px);
    left: -20px;
  }
}

@media all and (max-width: 600px) {
  #mobile-menu ul li.market-vehicle-types.last:after {
    width: calc(100% + 20px);
    left: -10px;
  }
}

#mobile-menu ul li.market-vehicle-types .market-vehicle-type {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
  color: #0A2240;
  font-size: 17px;
  line-height: 17px;
  text-transform: uppercase;
}

#mobile-menu ul li.market-vehicle-types .market-vehicles {
  position: relative;
  margin-bottom: 20px;
  padding-left: 0;
}

#mobile-menu ul li.market-vehicle-types .market-vehicles .market-vehicle-item {
  border-bottom: 1px solid #DDDDDD;
}

#mobile-menu ul li.market-vehicle-types .market-vehicles .market-vehicle-item:last-of-type {
  border-bottom: 0;
}

#mobile-menu ul li.market-vehicle-types .market-vehicles .market-vehicle-item a {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  display: block;
  padding: 22px 0;
  color: #222222;
  font-size: 14px;
  line-height: 18px;
}

.mobile-menu-items {
  display: none;
  position: absolute;
  padding-right: 78px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.25s;
}

@media all and (max-width: 1170px) {
  .mobile-menu-items {
    display: inherit;
  }
}

.mobile-menu-items .search {
  position: relative;
  top: 4px;
}

.mobile-menu-items .search:before {
  color: #FFFFFF;
  font-size: 33px;
}

.mobile-menu-items .search:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 33px;
  top: -18px;
  right: -10px;
  background: #FFFFFF;
}

.mobile-menu-items #menu-button {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 52%;
  left: 56px;
  transform: translateY(-50%);
}

.mobile-menu-items #menu-button:hover:before, .mobile-menu-items #menu-button:hover:after,
.mobile-menu-items #menu-button:hover .line {
  background: #FFFFFF;
}

.mobile-menu-items #menu-button:active:before, .mobile-menu-items #menu-button:active:after,
.mobile-menu-items #menu-button:active .line {
  background: #333437;
}

.mobile-menu-items #menu-button:before, .mobile-menu-items #menu-button:after,
.mobile-menu-items #menu-button .line {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 5px;
  background: #FFFFFF;
  border-radius: 1px;
  transform-origin: 50% 50%;
  transform: translate3d(0, 0, 0);
  transition: 0.25s;
}

.mobile-menu-items #menu-button:before, .mobile-menu-items #menu-button:after {
  content: '';
}

.mobile-menu-items #menu-button:before {
  top: 0;
  transform: translateY(7px) rotate(0);
}

body.mobile-menu-active .mobile-menu-items #menu-button:before {
  transform: translateY(14px) rotate(45deg);
}

.mobile-menu-items #menu-button:after {
  bottom: 0;
  transform: translateY(-7px) rotate(0);
}

body.mobile-menu-active .mobile-menu-items #menu-button:after {
  transform: translateY(-14px) rotate(-45deg);
}

.mobile-menu-items #menu-button .line {
  margin-top: -1px;
  top: 50%;
}

body.mobile-menu-active .mobile-menu-items #menu-button .line {
  opacity: 0;
}

footer {
  padding-top: 40px;
  width: 100%;
}

footer .wrapper .footer-social .connect-us {
  padding: 5px 0 15px;
}

footer .wrapper .footer-social .connect-us .social-media {
  margin: 0 auto;
  margin-top: 15px;
  width: 230px;
}

footer .wrapper .footer-social .connect-us .social-media svg path {
  fill: #0A2240;
}

footer .wrapper .footer-social .connect-us .social-media svg:hover path {
  fill: #587A91;
}

footer .wrapper .footer-social .connect-us .social-media:before, footer .wrapper .footer-social .connect-us .social-media:after {
  content: " ";
  display: table;
}

footer .wrapper .footer-social .connect-us .social-media:after {
  clear: both;
}

footer .wrapper .footer-social .connect-us .social-media {
  *zoom: 1;
}

footer .wrapper .footer-social .connect-us .social-media li {
  display: block;
  float: left;
}

footer .wrapper .footer-social .connect-us .social-media .leaf {
  margin-right: 10px;
  width: auto;
}

footer .wrapper .footer-social .connect-us .social-media .leaf:last-of-type {
  margin-right: 0;
}

footer .wrapper .footer-social .connect-us .social-media .leaf a {
  display: block;
  position: relative;
  margin-bottom: 10px;
  width: 25px;
  height: 26px;
  min-height: 30px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  color: inherit;
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-social .connect-us .social-media .leaf a {
    margin-bottom: 20px;
    min-height: 0;
  }
}

footer .wrapper .footer-social .connect-us .social-media .leaf a:before {
  content: none;
}

footer .wrapper .footer-social .connect-us .social-media .leaf a svg {
  width: 25px;
}

footer .wrapper .footer-social .connect-us .social-media .leaf a svg #Fill-13 {
  transition: 0.25s;
}

footer .wrapper .footer-social .connect-us .social-media .leaf a.icon-facebook {
  width: 30px;
  height: 30px;
}

footer .wrapper .footer-social .connect-us .social-media .leaf a.icon-facebook svg {
  width: 30px;
  height: 30px;
}

footer .wrapper .footer-social .connect-us .social-media .leaf a.icon-twitter {
  width: 35px;
  height: 29px;
}

footer .wrapper .footer-social .connect-us .social-media .leaf a.icon-twitter svg {
  width: 35px;
  height: 29px;
}

footer .wrapper .footer-social .connect-us .social-media .leaf a.icon-twitter svg #Home {
  transition: 0.25s;
}

footer .wrapper .footer-social .connect-us .social-media .leaf a.icon-youtube {
  width: 42px;
  height: 30px;
}

footer .wrapper .footer-social .connect-us .social-media .leaf a.icon-youtube svg {
  width: 42px;
  height: 30px;
}

footer .wrapper .footer-social .connect-us .social-media .leaf a.icon-youtube svg #Home {
  transition: 0.25s;
}

footer .wrapper .footer-social .connect-us .social-media .leaf a.icon-instagram {
  width: 29px;
  height: 29px;
}

footer .wrapper .footer-social .connect-us .social-media .leaf a.icon-instagram svg {
  width: 29px;
  height: 29px;
}

footer .wrapper .footer-social .connect-us .social-media .leaf a.icon-instagram svg path {
  transition: 0.25s;
}

footer .wrapper .footer-search {
  padding: 50px 20px 20px;
  text-align: center;
}

footer .wrapper .footer-search h3 {
  font-family: henderson-sans-basic,sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 0;
  font-style: normal;
  font-size: 27px;
}

footer .wrapper .footer-search .search-wrap {
  margin-top: 20px;
}

footer .wrapper .footer-wrapper-links {
  padding-right: 30px;
  padding-left: 30px;
  margin: 0 auto;
  padding-bottom: 30px;
}

footer .wrapper .footer-wrapper-links:before, footer .wrapper .footer-wrapper-links:after {
  content: " ";
  display: table;
}

footer .wrapper .footer-wrapper-links:after {
  clear: both;
}

footer .wrapper .footer-wrapper-links {
  *zoom: 1;
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-wrapper-links {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media all and (max-width: 600px) {
  footer .wrapper .footer-wrapper-links {
    padding-right: 10px;
    padding-left: 10px;
  }
}

footer .wrapper .footer-wrapper-links .footer-primary-menu {
  padding: 30px 0;
}

footer .wrapper .footer-wrapper-links .footer-primary-menu:before, footer .wrapper .footer-wrapper-links .footer-primary-menu:after {
  content: " ";
  display: table;
}

footer .wrapper .footer-wrapper-links .footer-primary-menu:after {
  clear: both;
}

footer .wrapper .footer-wrapper-links .footer-primary-menu {
  *zoom: 1;
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-wrapper-links .footer-primary-menu {
    padding-top: 40px;
    padding-bottom: 0;
  }
}

footer .wrapper .footer-wrapper-links .footer-primary-menu .footer-primary-headline {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-wrapper-links .footer-primary-menu .footer-primary-headline {
    margin-bottom: 20px;
    padding-top: 35px;
    padding-left: 10px;
    text-align: left;
    font-size: 14px;
    border-top: 1px solid #DDDDDD;
  }
}

footer .wrapper .footer-wrapper-links .footer-primary-menu .menu {
  padding-left: 10px;
  line-height: 1;
  text-align: center;
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-wrapper-links .footer-primary-menu .menu {
    text-align: left;
  }
}

footer .wrapper .footer-wrapper-links .footer-primary-menu .menu li {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  padding-right: 15px;
  padding-left: 15px;
  font-size: 13px;
  line-height: 18px;
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-wrapper-links .footer-primary-menu .menu li {
    margin-right: 30px;
    width: calc(((100% - 30px * 0) / 1) - 0.01px);
    float: left;
    margin-bottom: 20px;
    padding-left: 15px;
    border-right: none;
  }
}

@media all and (max-width: 1024px) and (max-width: 1024px) {
  footer .wrapper .footer-wrapper-links .footer-primary-menu .menu li {
    margin-right: 20px;
    width: calc(((100% - 20px * 0) / 1) - 0.01px);
  }
}

@media all and (max-width: 1024px) and (max-width: 600px) {
  footer .wrapper .footer-wrapper-links .footer-primary-menu .menu li {
    margin-right: 10px;
    width: calc(((100% - 10px * 0) / 1) - 0.01px);
  }
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-wrapper-links .footer-primary-menu .menu li:last-of-type {
    margin-right: 0;
  }
}

footer .wrapper .footer-wrapper-links .footer-primary-menu .menu li:after {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
  background: #DDDDDD;
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-wrapper-links .footer-primary-menu .menu li:after {
    display: none;
  }
}

footer .wrapper .footer-wrapper-links .footer-primary-menu .menu li.first {
  padding-left: 0;
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-wrapper-links .footer-primary-menu .menu li.first {
    padding-left: 15px;
  }
}

footer .wrapper .footer-wrapper-links .footer-primary-menu .menu li.last {
  padding-right: 0;
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-wrapper-links .footer-primary-menu .menu li.last {
    margin-bottom: 5px;
  }
}

footer .wrapper .footer-wrapper-links .footer-primary-menu .menu li.last:after {
  display: none;
}

footer .wrapper .footer-wrapper-links .footer-primary-menu .menu li a {
  color: inherit;
}

footer .wrapper .footer-wrapper-links .footer-primary-menu .menu li a:hover {
  color: #A29771;
}

footer .wrapper .footer-wrapper-links .footer-secondary-wrapper {
  position: relative;
  margin: 0 auto;
  padding: 30px 20px 40px;
  max-width: 1280px;
}

footer .wrapper .footer-wrapper-links .footer-secondary-wrapper:before, footer .wrapper .footer-wrapper-links .footer-secondary-wrapper:after {
  content: " ";
  display: table;
}

footer .wrapper .footer-wrapper-links .footer-secondary-wrapper:after {
  clear: both;
}

footer .wrapper .footer-wrapper-links .footer-secondary-wrapper {
  *zoom: 1;
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-wrapper-links .footer-secondary-wrapper {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0;
  }
}

footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu {
  display: flex;
  justify-content: center;
  width: 100%;
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu {
    flex-direction: column;
    width: 100%;
  }
}

footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu > .menu {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu > .menu {
    flex-direction: column;
    width: 100%;
  }
}

footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu > .menu > li {
  width: calc(100% / 4);
}

footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu > .menu > li > a {
  vertical-align: top;
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  display: inline-block !important;
  margin-bottom: 14px;
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu > .menu > li > a {
    margin-bottom: 20px;
    min-height: 0;
    vertical-align: 0;
  }
}

footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu > .menu:last-child > li {
  width: calc(100% / 2);
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu > .menu:last-child > li {
    width: 100%;
  }
}

footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu .menu {
  border: none;
  text-align: left;
  list-style: none;
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu .menu {
    width: 100%;
  }
}

footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu .menu > li {
  display: block;
  float: left;
  margin: 0;
  padding-top: 0;
  padding-right: 10px;
  padding-bottom: 0;
  padding-left: 10px;
  line-height: 1;
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu .menu > li {
    margin-right: 30px;
    width: calc(((100% - 30px * 0) / 1) - 0.01px);
    float: left;
    padding-top: 40px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 0;
    border-bottom: 1px solid #DDDDDD;
  }
}

@media all and (max-width: 1024px) and (max-width: 1024px) {
  footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu .menu > li {
    margin-right: 20px;
    width: calc(((100% - 20px * 0) / 1) - 0.01px);
  }
}

@media all and (max-width: 1024px) and (max-width: 600px) {
  footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu .menu > li {
    margin-right: 10px;
    width: calc(((100% - 10px * 0) / 1) - 0.01px);
  }
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu .menu > li:last-of-type {
    margin-right: 0;
  }
  footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu .menu > li.last {
    border-bottom: none;
  }
}

footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu .menu > li.first {
  padding-left: 0;
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu .menu > li.first {
    padding-left: 15px;
    border-top: 1px solid #DDDDDD;
  }
}

footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu .menu > li.expanded ul li {
  display: block;
  float: none;
  margin: 0;
  margin-bottom: 15px;
  padding: 0;
  width: 100%;
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu .menu > li.expanded ul li {
    margin-bottom: 20px;
    padding-left: 15px;
    border: none;
  }
}

footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu .menu > li.expanded ul li a {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  color: inherit;
  font-size: 14px;
  text-transform: none;
}

footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu .menu > li.expanded ul li a:hover {
  color: #A29771;
}

footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu .menu > li.last {
  margin-right: 0;
  padding-right: 0;
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu .menu > li.last {
    margin-right: auto;
  }
}

footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu .menu > li a {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  color: inherit;
}

footer .wrapper .footer-wrapper-links .footer-secondary-wrapper .footer-secondary-menu .menu > li a:hover {
  color: #A29771;
}

footer .wrapper .footer-image {
  position: relative;
  width: 100%;
  height: 115px;
}

footer .wrapper .footer-image .footer-image-inner {
  position: absolute;
  margin: 0 auto;
  width: 204px;
  height: 50px;
  top: 50%;
  left: 50%;
  background-image: url("../img/logo-horizontal.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-50%, -50%);
}

footer .wrapper .footer-sub-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 5px;
}

footer .wrapper .footer-sub-logos div {
  margin: 0 15px;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

footer .wrapper .footer-sub-logos .cmaa,
footer .wrapper .footer-sub-logos .pga {
  width: 49px;
  height: 49px;
  background-image: url("../img/PGA_Logo_480x480.png");
}

footer .wrapper .footer-sub-logos .cmaa {
  background-image: url("../img/CMAA.png");
}

footer .wrapper .footer-sub-logos .iltva {
  width: 137px;
  height: 44px;
  background-image: url("../img/iltva.png");
}

footer .wrapper .footer-bottom {
  padding-right: 30px;
  padding-left: 30px;
  margin: 0 auto;
  padding-top: 20px;
  max-width: 1280px;
  line-height: 18px;
}

footer .wrapper .footer-bottom:before, footer .wrapper .footer-bottom:after {
  content: " ";
  display: table;
}

footer .wrapper .footer-bottom:after {
  clear: both;
}

footer .wrapper .footer-bottom {
  *zoom: 1;
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-bottom {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media all and (max-width: 600px) {
  footer .wrapper .footer-bottom {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-bottom .footer-bottom-left {
    float: none;
    margin: 0 auto;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
  }
}

footer .wrapper .footer-bottom .footer-bottom-left > ul {
  display: flex;
  justify-content: space-around;
  max-width: 811px;
  margin: 0 auto;
}

@media all and (max-width: 768px) {
  footer .wrapper .footer-bottom .footer-bottom-left > ul {
    flex-direction: column;
  }
}

footer .wrapper .footer-bottom .footer-bottom-left .menu li {
  display: inline-block;
  margin: 0;
  margin-right: 30px;
  padding: 0;
}

footer .wrapper .footer-bottom .footer-bottom-left .menu li:last-child {
  margin-right: 0;
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-bottom .footer-bottom-left .menu li {
    display: block;
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }
}

footer .wrapper .footer-bottom .footer-bottom-left .menu li a {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: inherit;
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-bottom .footer-bottom-left .menu li a {
    font-size: 12px;
  }
}

footer .wrapper .footer-bottom .footer-bottom-left .menu li a:hover {
  color: #A29771;
}

footer .wrapper .footer-bottom .footer-bottom-right {
  padding: 30px 0;
  text-align: center;
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-bottom .footer-bottom-right {
    float: none;
    margin: 0 auto;
    padding-top: 0;
    max-width: 300px;
    text-align: center;
  }
}

footer .wrapper .footer-bottom .footer-bottom-right .copy-right {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  padding-top: 30px;
  color: inherit;
  font-size: 14px;
  line-height: 18px;
  border-top: 1px solid #DDDDDD;
}

@media all and (max-width: 1024px) {
  footer .wrapper .footer-bottom .footer-bottom-right .copy-right {
    font-size: 13px;
  }
}

footer .interstitial {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 101;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(34, 34, 34, 0.75);
  transition: 0.25s;
}

footer .interstitial.show {
  opacity: 1;
  visibility: visible;
}

footer .interstitial__content {
  position: absolute;
  padding: 40px 30px 20px;
  width: 50%;
  height: auto;
  background-color: #ffffff;
}

@media all and (max-width: 600px) {
  footer .interstitial__content {
    width: calc(100% - 35px);
  }
}

footer .interstitial__content:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 10px;
  top: 0;
  left: 0;
  background-color: #587A91;
}

footer .interstitial__buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

footer .interstitial h2 {
  font-family: henderson-sans-basic,sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 27px;
  font-style: normal;
  margin-bottom: 4px;
}

footer .interstitial p {
  margin-bottom: 10px;
}

footer .interstitial a {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  margin-left: 23px;
  color: #587A91;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
}

footer .interstitial a.button {
  color: #ffffff;
}

footer .interstitial a:not(.button) {
  transition: 0.25s;
}

footer .interstitial a:not(.button):hover {
  color: #A29771;
}

.accordion .panel.panel-open .panel-trigger:before {
  transform: translateY(-50%) rotateZ(180deg);
}

.accordion .panel.panel-open .panel-trigger:after {
  transform: translateY(-50%) rotateZ(90deg);
}

.accordion .panel .panel-trigger {
  position: relative;
  cursor: pointer;
}

.accordion .panel .panel-trigger:before, .accordion .panel .panel-trigger:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  background: #587A91;
  transform: translateY(-50%) rotateZ(0deg);
  transition: 0.25s;
}

html.no-js .accordion .panel .panel-trigger:before, html.no-js .accordion .panel .panel-trigger:after {
  display: none;
}

.accordion .panel .panel-trigger:before {
  width: 12px;
  height: 2px;
  right: 19px;
}

.accordion .panel .panel-trigger:after {
  width: 2px;
  height: 12px;
  right: 24px;
}

.accordion .panel .panel-content {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: 0.25s max-height;
}

html.no-js .accordion .panel .panel-content {
  max-height: none;
  overflow: auto;
}

.card--builder {
  padding: 2rem;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.5);
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
  -ms-grid-column-align: center;
      justify-items: center;
}

.card--builder__title {
  font-size: 24px;
  color: #000000;
  font-weight: 600;
  text-decoration: none solid black;
  text-align: center;
  text-transform: uppercase;
}

#running-callouts {
  padding-right: 30px;
  padding-left: 30px;
  margin-top: 60px;
}

#running-callouts:before, #running-callouts:after {
  content: " ";
  display: table;
}

#running-callouts:after {
  clear: both;
}

#running-callouts {
  *zoom: 1;
}

@media all and (max-width: 1024px) {
  #running-callouts {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media all and (max-width: 600px) {
  #running-callouts {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media all and (max-width: 600px) {
  #running-callouts {
    margin-top: 40px;
  }
}

#running-callouts .container {
  padding-top: 60px;
  border-top: 1px solid #DDDDDD;
}

@media all and (max-width: 600px) {
  #running-callouts .container {
    padding-top: 40px;
  }
}

.callouts {
  /* Universal Callouts */
}

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

.callouts:after {
  clear: both;
}

.callouts {
  *zoom: 1;
}

.callouts .callout {
  display: block;
  position: relative;
  height: 140px;
  text-decoration: none;
  background-color: #0A2240;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: 0.25s;
}

.callouts .callout:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #0A2240;
  transition: 0.25s;
}

.callouts .callout:hover {
  box-shadow: 0 0px 20px rgba(34, 34, 34, 0.4), 0 5px 10px rgba(70, 70, 70, 0.2);
}

.callouts .callout:hover .button:after {
  right: 10px;
}

.callouts .callout:hover .button:before {
  transform: translateX(0);
}

.callouts .callout.no-image:after {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 100%;
  top: 0;
  right: 0;
  background: #FFC40C;
}

.callouts .callout .callout-content {
  position: relative;
}

.callouts .callout .headline {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
}

.callouts .views-row .callout {
  box-shadow: inset 0 0 30px 20px rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
}

.callouts .views-row .callout:before {
  opacity: 0.5;
}

.callouts .views-row .callout:hover:before {
  opacity: 0.9;
}

.callouts .views-row .callout:hover .button {
  color: inherit;
}

.callouts .views-row .callout:hover .button:after {
  right: 6px;
  color: inherit;
}

.callouts .views-row .callout .button {
  display: inline;
  color: inherit;
  padding-top: 0;
  padding-right: 27px;
  padding-bottom: 0;
  font-size: 15px;
  letter-spacing: calc(1px / 2);
}

.callouts .views-row .callout .button:after {
  right: 10px;
  font-size: 16px;
  color: inherit;
}

.callouts .views-row .callout-content {
  top: 50%;
  text-align: center;
  transform: translateY(-46%);
}

.callouts .views-row .headline {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  width: 80%;
  margin: 0 auto;
  font-size: 19px;
  line-height: 22px;
}

.callouts-2-column .views-row {
  margin-right: 30px;
  width: calc(((100% - 30px * 1) / 2) - 0.01px);
  float: left;
}

@media all and (max-width: 1024px) {
  .callouts-2-column .views-row {
    margin-right: 20px;
    width: calc(((100% - 20px * 1) / 2) - 0.01px);
  }
}

@media all and (max-width: 600px) {
  .callouts-2-column .views-row {
    margin-right: 10px;
    width: calc(((100% - 10px * 1) / 2) - 0.01px);
  }
}

.callouts-2-column .views-row:last-of-type {
  margin-right: 0;
}

.callouts-3-column .views-row {
  margin-right: 30px;
  width: calc(((100% - 30px * 2) / 3) - 0.01px);
  float: left;
}

@media all and (max-width: 1024px) {
  .callouts-3-column .views-row {
    margin-right: 20px;
    width: calc(((100% - 20px * 2) / 3) - 0.01px);
  }
}

@media all and (max-width: 600px) {
  .callouts-3-column .views-row {
    margin-right: 10px;
    width: calc(((100% - 10px * 2) / 3) - 0.01px);
  }
}

.callouts-3-column .views-row:last-of-type {
  margin-right: 0;
}

.callouts-4-column .views-row {
  margin-right: 30px;
  width: calc(((100% - 30px * 3) / 4) - 0.01px);
  float: left;
}

@media all and (max-width: 1024px) {
  .callouts-4-column .views-row {
    margin-right: 20px;
    width: calc(((100% - 20px * 3) / 4) - 0.01px);
  }
}

@media all and (max-width: 600px) {
  .callouts-4-column .views-row {
    margin-right: 10px;
    width: calc(((100% - 10px * 3) / 4) - 0.01px);
  }
}

.callouts-4-column .views-row:last-of-type {
  margin-right: 0;
}

@media all and (max-width: 768px) {
  .callouts-2-column .views-row,
  .callouts-3-column .views-row,
  .callouts-4-column .views-row {
    margin-right: 30px;
    width: calc(((100% - 30px * 0) / 1) - 0.01px);
    float: left;
    margin-bottom: 20px;
  }
}

@media all and (max-width: 768px) and (max-width: 1024px) {
  .callouts-2-column .views-row,
  .callouts-3-column .views-row,
  .callouts-4-column .views-row {
    margin-right: 20px;
    width: calc(((100% - 20px * 0) / 1) - 0.01px);
  }
}

@media all and (max-width: 768px) and (max-width: 600px) {
  .callouts-2-column .views-row,
  .callouts-3-column .views-row,
  .callouts-4-column .views-row {
    margin-right: 10px;
    width: calc(((100% - 10px * 0) / 1) - 0.01px);
  }
}

@media all and (max-width: 768px) {
  .callouts-2-column .views-row:last-of-type,
  .callouts-3-column .views-row:last-of-type,
  .callouts-4-column .views-row:last-of-type {
    margin-right: 0;
  }
  .callouts-2-column .views-row:last-of-type,
  .callouts-3-column .views-row:last-of-type,
  .callouts-4-column .views-row:last-of-type {
    margin-bottom: 0;
  }
  .callouts-2-column .views-row .callout,
  .callouts-3-column .views-row .callout,
  .callouts-4-column .views-row .callout {
    height: auto;
    background: #919191;
    box-shadow: none;
  }
  .callouts-2-column .views-row .callout:hover,
  .callouts-3-column .views-row .callout:hover,
  .callouts-4-column .views-row .callout:hover {
    background-color: #31AFCF;
  }
  .callouts-2-column .views-row .callout .callout-content,
  .callouts-3-column .views-row .callout .callout-content,
  .callouts-4-column .views-row .callout .callout-content {
    padding: 20px 20px 15px;
    top: auto;
    transform: none;
  }
}

.callouts-2-column .views-row .callout-content,
.callouts-3-column .views-row .callout-content,
.callouts-4-column .views-row .callout-content {
  padding: 0 10px;
}

/* Home Page Callouts */
.callouts-home {
  margin-bottom: 60px;
  padding: 60px 40px 40px;
  padding-top: 60px;
  padding-bottom: 40px;
  max-width: 100%;
}

@media all and (max-width: 768px) {
  .callouts-home {
    padding: 60px 20px 40px;
  }
}

body.logged-in .callouts-home {
  margin-top: 25px;
}

.callouts-home .callouts-container {
  margin: 0 auto;
  max-width: 1160px;
}

.callouts-home .callout {
  height: 280px;
}

.callouts-home .callout.callout-featured {
  margin-right: 30px;
  width: calc(((100% - 30px * 1) / 2) - 0.01px);
  float: left;
}

@media all and (max-width: 1024px) {
  .callouts-home .callout.callout-featured {
    margin-right: 20px;
    width: calc(((100% - 20px * 1) / 2) - 0.01px);
  }
}

@media all and (max-width: 600px) {
  .callouts-home .callout.callout-featured {
    margin-right: 10px;
    width: calc(((100% - 10px * 1) / 2) - 0.01px);
  }
}

.callouts-home .callout.callout-featured:last-of-type {
  margin-right: 0;
}

@media all and (max-width: 1024px) {
  .callouts-home .callout.callout-featured {
    margin-right: 30px;
    width: calc(((100% - 30px * 0) / 1) - 0.01px);
    float: left;
    margin-bottom: 20px;
  }
}

@media all and (max-width: 1024px) and (max-width: 1024px) {
  .callouts-home .callout.callout-featured {
    margin-right: 20px;
    width: calc(((100% - 20px * 0) / 1) - 0.01px);
  }
}

@media all and (max-width: 1024px) and (max-width: 600px) {
  .callouts-home .callout.callout-featured {
    margin-right: 10px;
    width: calc(((100% - 10px * 0) / 1) - 0.01px);
  }
}

@media all and (max-width: 1024px) {
  .callouts-home .callout.callout-featured:last-of-type {
    margin-right: 0;
  }
}

@media all and (max-width: 600px) {
  .callouts-home .callout.callout-featured {
    margin-bottom: 10px;
  }
}

.callouts-home .callout.callout-featured:before {
  background: linear-gradient(to right, #222222 0%, rgba(34, 34, 34, 0.5) 35%, rgba(34, 34, 34, 0) 75%);
}

@media all and (max-width: 1024px) {
  .callouts-home .callout.callout-featured:before {
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
    background: linear-gradient(to top, #222222 0%, rgba(34, 34, 34, 0.5) 35%, rgba(34, 34, 34, 0) 75%);
  }
}

.callouts-home .callout.callout-featured .callout-content {
  padding-right: 30px;
  padding-left: 30px;
  max-width: 70%;
  top: 50%;
  font-size: 0;
  transform: translateY(-49%);
}

.callouts-home .callout.callout-featured .callout-content:before, .callouts-home .callout.callout-featured .callout-content:after {
  content: " ";
  display: table;
}

.callouts-home .callout.callout-featured .callout-content:after {
  clear: both;
}

.callouts-home .callout.callout-featured .callout-content {
  *zoom: 1;
}

@media all and (max-width: 1024px) {
  .callouts-home .callout.callout-featured .callout-content {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media all and (max-width: 600px) {
  .callouts-home .callout.callout-featured .callout-content {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media all and (max-width: 1024px) {
  .callouts-home .callout.callout-featured .callout-content {
    max-width: none;
    text-align: center;
  }
}

@media all and (max-width: 600px) {
  .callouts-home .callout.callout-featured .callout-content {
    position: absolute;
    padding: 30px;
    width: 100%;
    top: auto;
    bottom: 0;
    transform: none;
  }
}

.callouts-home .callout.callout-featured .callout-content .button:before {
  will-change: transform;
}

@media all and (max-width: 600px) {
  .callouts-home .callout.callout-featured .headline {
    font-size: 20px;
    line-height: 23px;
  }
}

.callouts-home .callout.callout-featured .button {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: -15px;
}

@media all and (max-width: 1024px) {
  .callouts-home .callout.callout-featured .button {
    max-width: 600px;
  }
}

@media all and (max-width: 600px) {
  .callouts-home .callout.callout-featured .button {
    max-width: 400px;
  }
}

.callouts-home .callout.callout-secondary {
  margin-right: 30px;
  width: calc(((100% - 30px * 3) / 4) - 0.01px);
  float: left;
}

@media all and (max-width: 1024px) {
  .callouts-home .callout.callout-secondary {
    margin-right: 20px;
    width: calc(((100% - 20px * 3) / 4) - 0.01px);
  }
}

@media all and (max-width: 600px) {
  .callouts-home .callout.callout-secondary {
    margin-right: 10px;
    width: calc(((100% - 10px * 3) / 4) - 0.01px);
  }
}

.callouts-home .callout.callout-secondary:last-of-type {
  margin-right: 0;
}

@media all and (max-width: 1024px) {
  .callouts-home .callout.callout-secondary {
    margin-right: 30px;
    width: calc(((100% - 30px * 1) / 2) - 0.01px);
    float: left;
  }
}

@media all and (max-width: 1024px) and (max-width: 1024px) {
  .callouts-home .callout.callout-secondary {
    margin-right: 20px;
    width: calc(((100% - 20px * 1) / 2) - 0.01px);
  }
}

@media all and (max-width: 1024px) and (max-width: 600px) {
  .callouts-home .callout.callout-secondary {
    margin-right: 10px;
    width: calc(((100% - 10px * 1) / 2) - 0.01px);
  }
}

@media all and (max-width: 1024px) {
  .callouts-home .callout.callout-secondary:last-of-type {
    margin-right: 0;
  }
}

@media all and (max-width: 600px) {
  .callouts-home .callout.callout-secondary {
    margin-right: 30px;
    width: calc(((100% - 30px * 0) / 1) - 0.01px);
    float: left;
    margin-bottom: 10px;
  }
}

@media all and (max-width: 600px) and (max-width: 1024px) {
  .callouts-home .callout.callout-secondary {
    margin-right: 20px;
    width: calc(((100% - 20px * 0) / 1) - 0.01px);
  }
}

@media all and (max-width: 600px) and (max-width: 600px) {
  .callouts-home .callout.callout-secondary {
    margin-right: 10px;
    width: calc(((100% - 10px * 0) / 1) - 0.01px);
  }
}

@media all and (max-width: 600px) {
  .callouts-home .callout.callout-secondary:last-of-type {
    margin-right: 0;
  }
  .callouts-home .callout.callout-secondary:last-of-type {
    margin-bottom: 0;
  }
}

.callouts-home .callout.callout-secondary:before {
  height: 50%;
  top: auto;
  bottom: 0;
  background: none;
}

.callouts-home .callout.callout-secondary:hover {
  color: #A83E09;
}

.callouts-home .callout.callout-secondary:hover .button:after {
  right: -3px;
  color: #A83E09;
}

.callouts-home .callout.callout-secondary .callout-content {
  position: absolute;
  padding: 20px 15px 10px;
  width: 100%;
  bottom: 0;
  left: 0;
  text-align: center;
  background: linear-gradient(to bottom, transparent 0%, rgba(34, 34, 34, 0.5) 15%, rgba(34, 34, 34, 0.9) 100%);
}

.callouts-home .callout.callout-secondary .headline {
  font-size: 19px;
  line-height: 22px;
}

.callouts-home .callout.callout-secondary .button {
  padding: 1px 20px 0 6px;
  text-align: center;
}

.callouts-home .callout.callout-secondary .button:after {
  right: 2px;
  color: inherit;
}

.callouts-home .callout .headline {
  font-size: 24px;
  line-height: 27px;
}

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

@media all and (min-width: 1025px) {
  .card-deck .card {
    width: 33%;
  }
}

@media all and (max-width: 1024px) {
  .card-deck .card {
    width: 50%;
  }
}

@media all and (max-width: 600px) {
  .card-deck .card {
    width: 100%;
  }
}

.marquee {
  position: relative;
}

.marquee:after {
  content: none;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}

@media all and (max-width: 600px) {
  .marquee:after {
    content: '' !important;
  }
}

.marquee.video-active:before {
  opacity: 1;
  visibility: visible;
}

.marquee.video-active .close-video {
  opacity: 1.0;
  visibility: visible;
}

.marquee.video-active .container {
  padding: 30px 0;
  padding-top: 70px;
  transition: 0.6s;
}

@media all and (max-width: 600px) {
  .marquee.video-active .container {
    transition: 0.6s 1.0s;
  }
}

.marquee.video-active .marquee-image,
.marquee.video-active .marquee-video,
.marquee.video-active .owl-item.active {
  -webkit-filter: blur(20px);
          filter: blur(20px);
}

.marquee.video-active .marquee-content {
  position: absolute;
  opacity: 0;
  width: 50%;
}

@media all and (max-width: 600px) {
  .marquee.video-active .marquee-content {
    width: 100%;
    position: relative;
    max-height: 0;
  }
}

.marquee.video-active .responsive-video {
  opacity: 1;
}

@media all and (max-width: 600px) {
  .marquee.video-active .gradient-overlay {
    bottom: 0;
  }
}

.marquee.video-active .share-links {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s 0.3s, opacity 0.3s;
}

.marquee.video-active .disclaimer {
  opacity: 0;
}

.marquee .close-video {
  position: absolute;
  margin: 0 30px;
  width: calc(100% - 60px);
  height: 20px;
  top: 17px;
  left: 0;
  text-align: right;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  z-index: 10;
}

.marquee .close-video:before {
  content: '';
  position: absolute;
  width: calc(100% - 70px);
  height: 1px;
  top: 9px;
  left: 0px;
  background: white;
}

.marquee .close-video a {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  display: inline-block;
  position: relative;
  color: #ffffff;
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  transition: 0.25s;
  transform: translateY(-4px);
}

.marquee .close-video a:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 41px;
  color: #ffffff;
  font-size: 24px;
  transform: translateY(-50%);
  transition: 0.25s;
}

.marquee .close-video a:hover, .marquee .close-video a:hover:before {
  color: #C15722;
}

.marquee .responsive-video {
  position: absolute;
  height: 0;
  top: 50%;
  left: 50%;
  margin: 0 auto;
  padding-bottom: 56.25%;
  opacity: 0;
  overflow: hidden;
  transform: translate(-50%, -50%);
  transition: 0.6s 2.0s opacity;
  z-index: 50;
}

.marquee .responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.marquee .marquee-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.marquee .marquee-video {
  display: block;
  position: absolute;
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  transition: 0.25s;
  transform: translate(-50%, -50%);
}

.marquee .marquee-video.marquee-video--loaded {
  opacity: 1;
}

@media all and (max-width: 1024px) {
  .marquee .marquee-video {
    display: none;
  }
}

.marquee .marquee-content {
  padding-right: 30px;
  padding-left: 30px;
  width: 50%;
  position: relative;
  z-index: 2;
}

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

.marquee .marquee-content:after {
  clear: both;
}

.marquee .marquee-content {
  *zoom: 1;
}

@media all and (max-width: 1024px) {
  .marquee .marquee-content {
    width: 100%;
  }
}

.marquee h1 {
  font-size: 45px;
  font-size: 4vw;
  line-height: 54px;
  line-height: 4vw;
  color: #ffffff;
  font-family: henderson-sans-basic,sans-serif;
  font-weight: 200;
  font-style: normal;
  text-shadow: 0 1px 0 rgba(34, 34, 34, 0.15);
}

@media (max-width: 725px) {
  .marquee h1 {
    font-size: 29px;
  }
}

@media (min-width: 1375px) {
  .marquee h1 {
    font-size: 55px;
  }
}

@media (max-width: 725px) {
  .marquee h1 {
    line-height: 29px;
  }
}

@media (min-width: 1500px) {
  .marquee h1 {
    line-height: 60px;
  }
}

.marquee p {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 3px;
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(34, 34, 34, 0.15);
}

.marquee .button {
  margin-top: 20px;
}

@media all and (max-width: 1024px) {
  .marquee .button {
    margin-top: 15px;
  }
}

.marquee .button.link-external:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media all and (max-width: 600px) {
  .marquee-standard,
  .marquee-rotating-static,
  .marquee-rotating-rotating {
    background: #333437;
  }
}

.marquee-standard:after,
.marquee-rotating-static:after,
.marquee-rotating-rotating:after {
  content: '';
  position: absolute;
  bottom: -25px;
  right: 0;
  width: calc(50% - 15px);
  height: 50px;
  background-color: rgba(88, 122, 145, 0.8);
  z-index: 1;
}

@media all and (max-width: 768px) {
  .marquee-standard:after,
  .marquee-rotating-static:after,
  .marquee-rotating-rotating:after {
    height: 40px;
    bottom: -20px;
  }
}

.has-promo .marquee-standard:after, .has-promo
.marquee-rotating-static:after, .has-promo
.marquee-rotating-rotating:after {
  content: none;
}

.marquee-standard:before,
.marquee-rotating-static:before,
.marquee-rotating-rotating:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 2;
  width: 75%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgba(34, 34, 34, 0.8), rgba(34, 34, 34, 0));
}

@media all and (max-width: 600px) {
  .marquee-standard:before,
  .marquee-rotating-static:before,
  .marquee-rotating-rotating:before {
    width: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
  }
}

.page-node-244 .marquee-standard:before, .page-node-244
.marquee-rotating-static:before, .page-node-244
.marquee-rotating-rotating:before {
  background: linear-gradient(to right, rgba(49, 175, 207, 0.7), transparent);
}

@media all and (max-width: 600px) {
  .page-node-244 .marquee-standard:before, .page-node-244
  .marquee-rotating-static:before, .page-node-244
  .marquee-rotating-rotating:before {
    background: rgba(49, 175, 207, 0.5);
  }
}

@media all and (max-width: 600px) {
  .marquee-standard .marquee-image,
  .marquee-rotating-static .marquee-image,
  .marquee-rotating-rotating .marquee-image {
    height: 100%;
  }
  .marquee-standard .marquee-image:before,
  .marquee-rotating-static .marquee-image:before,
  .marquee-rotating-rotating .marquee-image:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to top, #333437 0%, rgba(51, 52, 55, 0) 40%);
  }
}

@media all and (max-width: 600px) and (max-width: 600px) {
  .marquee-standard .marquee-image:before,
  .marquee-rotating-static .marquee-image:before,
  .marquee-rotating-rotating .marquee-image:before {
    display: none;
  }
}

.marquee-standard .marquee-content,
.marquee-rotating-static .marquee-content,
.marquee-rotating-rotating .marquee-content {
  padding-top: 200px;
  padding-bottom: 200px;
}

@media all and (max-width: 768px) {
  .marquee-standard .marquee-content,
  .marquee-rotating-static .marquee-content,
  .marquee-rotating-rotating .marquee-content {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media all and (max-width: 600px) {
  .marquee-standard .marquee-content,
  .marquee-rotating-static .marquee-content,
  .marquee-rotating-rotating .marquee-content {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}

@media all and (max-width: 320px) {
  .marquee-standard .marquee-content,
  .marquee-rotating-static .marquee-content,
  .marquee-rotating-rotating .marquee-content {
    width: 100% !important;
  }
}

.marquee-standard h1,
.marquee-rotating-static h1,
.marquee-rotating-rotating h1 {
  display: block;
  position: relative;
  margin-bottom: 8px;
}

@media all and (max-width: 768px) {
  .marquee-standard h1,
  .marquee-rotating-static h1,
  .marquee-rotating-rotating h1 {
    font-size: 34px;
    line-height: 34px;
  }
}

.marquee-standard p,
.marquee-rotating-static p,
.marquee-rotating-rotating p {
  position: relative;
  font-size: 16px;
  line-height: 20px;
  width: 50%;
}

.marquee-rotating-rotating .marquee-rotating-carousel {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

@media all and (max-width: 600px) {
  .marquee-rotating-rotating .marquee-rotating-carousel {
    height: 75%;
  }
  .marquee-rotating-rotating .marquee-rotating-carousel:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to top, #333437 0%, rgba(51, 52, 55, 0) 40%);
  }
}

.marquee-rotating-rotating .marquee-rotating-carousel .owl-stage-outer {
  height: 100%;
}

.marquee-rotating-rotating .marquee-rotating-carousel .owl-stage-outer .owl-stage {
  height: 100%;
}

.marquee-rotating-rotating .marquee-rotating-carousel .owl-stage-outer .owl-stage .owl-item {
  position: relative;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform: translateZ(0) scale(1, 1);
}

.marquee-rotating-rotating .marquee-rotating-carousel .owl-stage-outer .owl-stage .owl-item .marquee-rotating-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.marquee-slides .carousel {
  position: relative;
}

.marquee-slides .marquee-slide {
  display: flex;
  align-items: center;
  position: relative;
  height: 550px;
  overflow: hidden;
}

@media all and (max-width: 768px) {
  .marquee-slides .marquee-slide {
    height: 440px;
  }
}

@media all and (max-width: 600px) {
  .marquee-slides .marquee-slide {
    height: 380px;
  }
}

.marquee-slides .marquee-slide:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  width: 75%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgba(34, 34, 34, 0.8), rgba(34, 34, 34, 0));
}

@media all and (max-width: 600px) {
  .marquee-slides .marquee-slide:before {
    width: 100%;
    background: rgba(0, 0, 0, 0.45);
  }
}

.marquee-slides .marquee-content {
  position: relative;
  flex: 0 1 auto;
}

@media all and (max-width: 600px) {
  .marquee-slides .marquee-content {
    max-width: none;
  }
}

@media all and (max-width: 768px) {
  .marquee-slides h1 {
    margin-bottom: 5px;
    font-size: 29px;
    line-height: 30px;
  }
}

.marquee-slides p {
  text-transform: uppercase;
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 25px;
}

@media all and (max-width: 768px) {
  .marquee-slides p {
    font-size: 15px;
    line-height: 24px;
  }
}

.marquee-slides .owl-carousel {
  display: block;
}

.marquee-slides .owl-carousel:not(.owl-loaded) .marquee-slide {
  display: none;
}

.marquee-slides .owl-carousel:not(.owl-loaded) .marquee-slide:first-of-type {
  display: block;
}

.marquee-slides .owl-dots {
  position: absolute;
  width: 40px;
  height: auto;
  top: 50%;
  right: 0;
  font-size: 0;
  text-align: center;
  transform: translateY(-50%);
}

@media all and (max-width: 768px) {
  .marquee-slides .owl-dots {
    display: none;
  }
}

.marquee-slides .owl-dots .owl-dot {
  display: block;
  position: relative;
  margin-bottom: 10px;
  width: 25px;
  height: 25px;
  transition: 0.25s;
}

@media all and (max-width: 768px) {
  .marquee-slides .owl-dots .owl-dot {
    margin-right: 20px;
  }
}

.marquee-slides .owl-dots .owl-dot:last-of-type {
  margin-right: 0;
}

.marquee-slides .owl-dots .owl-dot.active span, .marquee-slides .owl-dots .owl-dot:hover span {
  border: 2px solid #ffffff;
  background: #C15722;
}

.marquee-slides .owl-dots .owl-dot span {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 15px;
  left: 0;
  background: #ffffff;
  transition: 0.25s;
  border-radius: 25px;
}

.marquee-slides .owl-nav {
  position: absolute;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  bottom: 40px;
  left: 0;
}

@media all and (max-width: 768px) {
  .marquee-slides .owl-nav {
    display: flex;
  }
}

.marquee-slides .owl-nav .owl-prev,
.marquee-slides .owl-nav .owl-next {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 20px;
  transition: 0.25s;
}

.marquee-slides .owl-nav .owl-prev:after,
.marquee-slides .owl-nav .owl-next:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 17px;
  color: #A29771;
  transform: translate(-45%, -50%);
  transition: 0.25s;
}

.marquee-slides .owl-nav .owl-prev:hover,
.marquee-slides .owl-nav .owl-next:hover {
  background-color: #A29771;
}

.marquee-slides .owl-nav .owl-prev:hover:after,
.marquee-slides .owl-nav .owl-next:hover:after {
  color: #ffffff;
}

.marquee-slides .owl-nav .owl-prev.disabled,
.marquee-slides .owl-nav .owl-next.disabled {
  background-color: #ffffff;
  cursor: default;
}

.marquee-slides .owl-nav .owl-prev.disabled:after,
.marquee-slides .owl-nav .owl-next.disabled:after {
  color: #DDDDDD;
}

.marquee-slides .owl-nav .owl-prev.disabled:hover,
.marquee-slides .owl-nav .owl-next.disabled:hover {
  background-color: #ffffff;
}

.marquee-slides .owl-nav .owl-prev.disabled:hover:after,
.marquee-slides .owl-nav .owl-next.disabled:hover:after {
  color: #DDDDDD;
}

.marquee-slides .owl-nav .owl-prev {
  margin-right: 10px;
}

.marquee-slides .owl-nav .owl-prev:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(-55%, -50%);
}

#megamenu-overlay {
  display: block;
  position: fixed;
  z-index: 5;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #222222;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
}

body.megamenu-open #megamenu-overlay {
  opacity: .75;
  visibility: visible;
}

@media all and (max-width: 1024px) {
  body.sticky-vehicle-mobile-navigation.sticky-vehicle-mobile-navigation--open #megamenu-overlay {
    opacity: .7;
    visibility: visible;
  }
}

#megamenu {
  display: block;
  position: absolute;
  width: 100%;
  height: 0;
  top: calc(100%);
  left: 0;
  overflow: hidden;
  transform: translateY(-100%);
  transition: 0.25s;
}

@media all and (max-width: 1024px) {
  #megamenu {
    display: none;
  }
}

#megamenu.megamenu-active {
  transform: translateY(0);
}

#megamenu .megamenu-item {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
}

#megamenu .megamenu-item.megamenu-item-active {
  opacity: 1;
  visibility: visible;
}

#megamenu .megamenu-sidebar {
  display: block;
  position: absolute;
  z-index: 2;
  padding: 20px 0;
  width: 225px;
  height: 100%;
  top: 0;
  left: 0;
  background: #ffffff;
}

#megamenu .megamenu-sidebar .megamenu-sidebar-view-all {
  position: absolute;
  padding: 0 30px;
  bottom: 0;
  left: 0;
}

#megamenu .megamenu-sidebar .megamenu-sidebar-view-all a {
  padding-bottom: 0;
  padding-left: 0;
  color: #222222;
  font-size: 13px;
}

#megamenu .megamenu-sidebar .megamenu-sidebar-view-all a:after {
  top: 23px;
  font-size: 17px;
  color: #222222;
  transition: 0.25s;
}

#megamenu .megamenu-sidebar .megamenu-sidebar-view-all a:hover {
  color: #A29771;
}

#megamenu .megamenu-sidebar .megamenu-sidebar-view-all a:hover:after {
  color: #A29771;
}

#megamenu .megamenu-sidebar .megamenu-sidebar-menu .megamenu-sidebar-menu-item {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  display: block;
  position: relative;
  padding: 12px 30px;
  width: 100%;
  color: #222222;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  background: rgba(112, 171, 187, 0);
  box-shadow: 0 2px 3px 0 rgba(34, 34, 34, 0);
  cursor: default;
  transition: 0.25s;
}

#megamenu .megamenu-sidebar .megamenu-sidebar-menu .megamenu-sidebar-menu-item:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  color: #A29771;
  font-size: 16px;
  transform: translateY(-50%);
  transition: 0.25s;
}

#megamenu .megamenu-sidebar .megamenu-sidebar-menu .megamenu-sidebar-menu-item.megamenu-sidebar-menu-item--active {
  width: calc(100% + 10px);
  color: #ffffff;
  background: #0A2240;
  box-shadow: 0 2px 3px 0 rgba(34, 34, 34, 0.12);
}

#megamenu .megamenu-sidebar .megamenu-sidebar-menu .megamenu-sidebar-menu-item.megamenu-sidebar-menu-item--active:after {
  color: #ffffff;
}

#megamenu .megamenu-content {
  display: block;
  position: relative;
  margin-left: 225px;
  width: calc(100% - 225px);
  height: 100%;
}

#megamenu .megamenu-content .megamenu-content-item {
  display: block;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transition: 0.25s;
}

#megamenu .megamenu-content .megamenu-content-item.megamenu-content-item--active {
  opacity: 1;
  visibility: visible;
}

#megamenu .megamenu-content .megamenu-content-item.megamenu-content-item--active .megamenu-content-item-carousel {
  opacity: 1;
  visibility: visible;
}

#megamenu .megamenu-content .megamenu-content-item.megamenu-content-item--active .megamenu-content-item-carousel .megamenu-card {
  transform: translateX(0);
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel {
  display: flex;
  /* Firefox 4 */
  /* Safari and Chrome */
  /* Opera */
  /* IExplorer 10 */
  transform: translate3d(0, 0, 0);
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  width: auto;
  height: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel:before, #megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel:after {
  content: " ";
  display: table;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel:after {
  clear: both;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel {
  *zoom: 1;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  float: left;
  margin-right: 30px;
  padding: 30px 30px 15px;
  width: 230px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(148, 135, 127, 0.12), 0 1px 2px rgba(148, 135, 127, 0.24);
  transition: all 0.125s, transform 0.5s;
  transform: translateX(40px);
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card.link-external .megamenu-card-button p {
  position: relative;
  left: -8px;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card.link-external .megamenu-card-button p:after {
  content: '';
  width: 11px;
  height: 11px;
  right: -17px;
  top: 49%;
  background-image: url("../img/svg/icon-link-external.svg");
  background-repeat: no-repeat;
  background-size: 11px 11px;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card:first-of-type {
  margin-left: 30px;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card:last-of-type {
  margin-right: 0;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card:hover {
  box-shadow: 0 7px 14px rgba(148, 135, 127, 0.15), 0 5px 5px rgba(148, 135, 127, 0.15);
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card:hover .megamenu-card-button:before {
  transform: translateX(0);
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card:hover .megamenu-card-button p:after {
  right: -23px;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card .megamenu-card-image {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card .megamenu-card-image img {
  display: block;
  width: 100%;
  height: auto;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card .megamenu-card-callout {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 500;
  padding: 5px 0;
  background-color: #A29771;
  color: #ffffff;
  font-size: 12px;
  line-height: 12px;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card .megamenu-card-title {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #231f20;
  font-size: 19px;
  line-height: 22px;
  text-transform: uppercase;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card .megamenu-card-button {
  font-size: 13px;
  padding: 10px 20px;
  width: 100%;
  background-color: #C15722;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card .megamenu-card-button p {
  position: relative;
  display: inline-block;
  width: auto;
  left: -7.5px;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card .megamenu-card-button p:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: -18px;
  top: 50%;
  color: #ffffff;
  transform: translate(0, -50%);
  transition: 0.25s;
  font-size: 16px;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card .megamenu-card-button:after {
  content: none;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card .megamenu-card-RAQ {
  font-size: 13px;
  padding: 10px 0px;
  color: #587A91;
  text-align: center;
  background: none;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card .megamenu-card-RAQ p:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: inherit;
  transition: 0.25s;
  font-size: 16px;
  position: relative;
  top: 2.5px;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card .megamenu-card-RAQ:after {
  content: none;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card .megamenu-card-RAQ:before {
  display: none;
}

#golf-megamenu #megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card .megamenu-card-RAQ {
  display: none;
}

#golf-megamenu #megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card .megamenu-card-RAQ p {
  display: none;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation {
  position: relative;
  width: 100%;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation:before, #megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation:after {
  content: " ";
  display: table;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation:after {
  clear: both;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation {
  *zoom: 1;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-prev,
#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-next {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  display: block;
  float: left;
  width: 50%;
  height: 35px;
  color: #0A2240;
  font-size: 15px;
  line-height: 35px;
  text-align: center;
  text-transform: uppercase;
  background: #ffffff;
  transition: 0.25s;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-prev:before, #megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-prev:after,
#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-next:before,
#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-next:after {
  display: inline-block;
  position: relative;
  top: 1px;
  color: #0A2240;
  font-size: 15px;
  transition: 0.25s;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-prev:hover, #megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-prev:hover:before, #megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-prev:hover:after,
#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-next:hover,
#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-next:hover:before,
#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-next:hover:after {
  color: #A29771;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-prev.disabled,
#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-next.disabled {
  color: #DDDDDD;
  background: #ffffff;
  cursor: default;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-prev.disabled:before, #megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-prev.disabled:after,
#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-next.disabled:before,
#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-next.disabled:after {
  color: #DDDDDD;
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-prev.disabled:hover:before,
#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-next.disabled:hover:before {
  color: #DDDDDD;
  transform: translateX(-5px);
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-prev.disabled:hover:after,
#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-next.disabled:hover:after {
  color: #DDDDDD;
  transform: translateX(5px);
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-prev:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateX(-3px);
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-prev:hover:before {
  transform: translateX(-8px);
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-next:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translateX(3px);
}

#megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-navigation .megamenu-next:hover:after {
  transform: translateX(8px);
}

#megamenu #golf-megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card {
  height: 356px;
}

#megamenu #golf-megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card .megamenu-card-button {
  bottom: 30px;
}

#megamenu #golf-megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card .megamenu-card-RAQ {
  display: none;
}

#megamenu #golf-megamenu .megamenu-content .megamenu-content-item .megamenu-content-item-carousel .megamenu-card .megamenu-card-RAQ p {
  display: none;
}

/* Header Search */
#search-wrapper {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 120px;
  top: 0;
  background: #ffffff;
  transform: translateY(-100%);
  transition: 0.25s transform;
}

@media all and (max-width: 1024px) {
  #search-wrapper {
    height: 80px;
  }
}

body.search-open #search-wrapper {
  transform: translateY(0);
}

body.sticky-header #search-wrapper {
  height: 88px;
}

#search-wrapper .cancel {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  position: absolute;
  padding-right: 20px;
  top: 50%;
  right: 30px;
  font-size: 15px;
  color: #0A2240;
  text-transform: uppercase;
  transform: translateY(-50%);
  transition: 0.25s;
}

@media all and (max-width: 1024px) {
  #search-wrapper .cancel {
    right: 20px;
  }
}

@media all and (max-width: 600px) {
  #search-wrapper .cancel {
    padding-right: 0;
    right: 10px;
  }
}

#search-wrapper .cancel:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 18px;
  color: #0A2240;
  transform: translateY(-50%);
  transition: 0.25s;
}

@media all and (max-width: 600px) {
  #search-wrapper .cancel:before {
    display: none;
  }
}

#search-wrapper .cancel:hover {
  color: #A29771;
}

#search-wrapper .cancel:hover:before {
  color: #A29771;
}

#header-search {
  height: 45px;
  top: 50%;
  transform: translateY(-50%);
}

@media all and (max-width: 1024px) {
  #header-search {
    margin: 0;
    width: calc(100% - 85px);
    max-width: none;
  }
}

@media all and (max-width: 600px) {
  #header-search {
    width: calc(100% - 60px);
  }
}

#header-search .form-submit {
  width: 50px;
}

#search-form {
  margin-top: 30px;
  max-width: 490px;
}

#search-form .form-wrapper {
  position: relative;
  width: 100%;
}

#search-form .form-wrapper:before, #search-form .form-wrapper:after {
  content: " ";
  display: table;
}

#search-form .form-wrapper:after {
  clear: both;
}

#search-form .form-wrapper {
  *zoom: 1;
}

#search-form .form-wrapper .form-item {
  display: block;
  position: relative;
  float: left;
  margin: 0;
  width: 100%;
  left: 0;
}

#search-form .form-wrapper .form-item:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  left: 10px;
  z-index: 1;
  color: #919191;
  font-size: 24px;
  transform: translateY(-50%);
}

.footer-search #search-form .form-wrapper .form-item:before {
  content: none;
}

#search-form .form-wrapper .form-item label {
  display: none;
}

#search-form .form-wrapper .form-submit {
  position: absolute;
  width: 87px;
  top: 0;
  right: 0;
  cursor: pointer;
}

@media all and (max-width: 360px) {
  #search-form .form-wrapper .form-submit {
    width: 40px;
  }
}

#search-form .form-wrapper input[type='submit'] {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  padding-left: 1px;
  width: 100%;
  height: 45px;
  max-width: 87px;
  color: #ffffff;
  font-size: 15px;
  line-height: 12px;
  text-transform: uppercase;
  background-color: #C15722;
  border: 1px solid #C15722;
  border-left: none;
  border-radius: 0;
  cursor: pointer;
  -webkit-appearance: none;
  transition: 0.25s;
}

@media all and (max-width: 360px) {
  #search-form .form-wrapper input[type='submit'] {
    font-size: 14px;
  }
}

#search-form .form-wrapper input[type='submit']:hover, #search-form .form-wrapper input[type='submit']:active {
  background-color: #A83E09;
  border-color: #A83E09;
}

#search-form input[type="text"] {
  position: relative;
  padding: 10px 100px 10px 40px;
  width: 100%;
  min-width: 465px;
  height: 45px;
  font-size: 14px;
  background: #ffffff;
  color: #919191;
  border: 1px solid #DDDDDD;
  border-right: none;
  border-radius: 0;
  transition: 0.25s;
}

@media all and (max-width: 1024px) {
  #search-form input[type="text"] {
    min-width: inherit;
  }
}

@media all and (max-width: 600px) {
  #search-form input[type="text"] {
    font-size: 12px;
  }
}

@media all and (max-width: 360px) {
  #search-form input[type="text"] {
    padding-right: 54px;
    font-size: 10px;
  }
}

#search-form input[type="text"]::-webkit-input-placeholder {
  color: #919191;
}

#search-form input[type="text"]:-ms-input-placeholder {
  color: #919191;
}

#search-form input[type="text"]::placeholder {
  color: #919191;
}

#search-form input[type="text"]:hover, #search-form input[type="text"]:focus {
  border-color: #70ABBB;
}

#search-form #edit-advanced {
  display: none;
}

.wrapper-search {
  padding-right: 30px;
  padding-left: 30px;
  position: relative;
  margin: 0 auto;
  max-width: 550px;
}

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

.wrapper-search:after {
  clear: both;
}

.wrapper-search {
  *zoom: 1;
}

@media all and (max-width: 1024px) {
  .wrapper-search {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media all and (max-width: 600px) {
  .wrapper-search {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.wrapper-search .form-wrapper {
  position: relative;
  width: 100%;
}

.wrapper-search .form-wrapper:before, .wrapper-search .form-wrapper:after {
  content: " ";
  display: table;
}

.wrapper-search .form-wrapper:after {
  clear: both;
}

.wrapper-search .form-wrapper {
  *zoom: 1;
}

.wrapper-search .form-wrapper .form-item {
  display: block;
  position: relative;
  float: left;
  margin: 0;
  width: 100%;
  left: 0;
}

.wrapper-search .form-wrapper .form-item:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  left: 10px;
  z-index: 1;
  color: #919191;
  font-size: 24px;
  transform: translateY(-50%);
}

.footer-search .wrapper-search .form-wrapper .form-item:before {
  content: none;
}

.wrapper-search .form-wrapper .form-submit {
  float: left;
  position: absolute;
  width: 85px;
  top: 0;
  right: 0;
  cursor: pointer;
}

@media all and (max-width: 360px) {
  .wrapper-search .form-wrapper .form-submit {
    width: 60px;
  }
}

.wrapper-search .form-wrapper .form-submit input[type='submit'] {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  padding-left: 1px;
  width: 100%;
  height: 45px;
  color: #ffffff;
  font-size: 15px;
  line-height: 12px;
  text-transform: uppercase;
  background-color: #C15722;
  border: 1px solid #C15722;
  border-left: none;
  border-radius: 0;
  cursor: pointer;
  -webkit-appearance: none;
  transition: 0.25s;
}

@media all and (max-width: 360px) {
  .wrapper-search .form-wrapper .form-submit input[type='submit'] {
    font-size: 14px;
  }
}

.wrapper-search .form-wrapper .form-submit input[type='submit']:hover, .wrapper-search .form-wrapper .form-submit input[type='submit']:active {
  background-color: #A83E09;
  border-color: #A83E09;
}

.wrapper-search input[type="text"] {
  position: relative;
  padding: 10px 100px 10px 40px;
  width: 100%;
  min-width: 465px;
  height: 45px;
  font-size: 14px;
  background: #ffffff;
  color: #919191;
  border: 1px solid #DDDDDD;
  border-right: none;
  border-radius: 0;
  transition: 0.25s;
}

@media all and (max-width: 1024px) {
  .wrapper-search input[type="text"] {
    min-width: inherit;
  }
}

@media all and (max-width: 600px) {
  .wrapper-search input[type="text"] {
    font-size: 12px;
  }
}

@media all and (max-width: 360px) {
  .wrapper-search input[type="text"] {
    padding-right: 54px;
    font-size: 10px;
  }
}

.wrapper-search input[type="text"]::-webkit-input-placeholder {
  color: #919191;
}

.wrapper-search input[type="text"]:-ms-input-placeholder {
  color: #919191;
}

.wrapper-search input[type="text"]::placeholder {
  color: #919191;
}

.wrapper-search input[type="text"]:hover, .wrapper-search input[type="text"]:focus {
  border-color: #70ABBB;
}

footer .wrapper-search input[type="text"] {
  padding: 10px 100px 10px 15px;
}

body.page-search #page-title {
  display: none;
}

.view-search .view-filter-wrapper {
  width: 100%;
  border-bottom: 10px solid #f5f5f4;
}

.view-search .view-filter-wrapper .view-filters {
  padding-right: 30px;
  padding-left: 30px;
  position: relative;
  margin: 0 auto;
  padding: 60px 0;
  max-width: 550px;
}

.view-search .view-filter-wrapper .view-filters:before, .view-search .view-filter-wrapper .view-filters:after {
  content: " ";
  display: table;
}

.view-search .view-filter-wrapper .view-filters:after {
  clear: both;
}

.view-search .view-filter-wrapper .view-filters {
  *zoom: 1;
}

@media all and (max-width: 1024px) {
  .view-search .view-filter-wrapper .view-filters {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media all and (max-width: 600px) {
  .view-search .view-filter-wrapper .view-filters {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media all and (max-width: 600px) {
  .view-search .view-filter-wrapper .view-filters {
    padding: 25px 0 30px;
  }
}

.view-search .view-filter-wrapper .view-filters .views-exposed-form {
  padding-right: 30px;
  padding-left: 30px;
}

.view-search .view-filter-wrapper .view-filters .views-exposed-form:before, .view-search .view-filter-wrapper .view-filters .views-exposed-form:after {
  content: " ";
  display: table;
}

.view-search .view-filter-wrapper .view-filters .views-exposed-form:after {
  clear: both;
}

.view-search .view-filter-wrapper .view-filters .views-exposed-form {
  *zoom: 1;
}

@media all and (max-width: 1024px) {
  .view-search .view-filter-wrapper .view-filters .views-exposed-form {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media all and (max-width: 600px) {
  .view-search .view-filter-wrapper .view-filters .views-exposed-form {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.view-search .view-filter-wrapper .view-filters .views-exposed-form .views-exposed-widgets {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.view-search .view-filter-wrapper .view-filters .views-exposed-form .views-exposed-widgets .views-exposed-widget {
  float: inherit;
  padding: 0;
}

.view-search .view-filter-wrapper .view-filters .views-exposed-form .views-exposed-widgets label {
  padding-bottom: 30px;
  text-transform: uppercase;
  font-size: 30px;
  text-align: center;
}

@media all and (max-width: 600px) {
  .view-search .view-filter-wrapper .view-filters .views-exposed-form .views-exposed-widgets label {
    padding-bottom: 20px;
    font-size: 21px;
  }
}

.view-search .view-filter-wrapper .view-filters .views-exposed-form .views-exposed-widgets .form-item {
  position: relative;
}

.view-search .view-filter-wrapper .view-filters .views-exposed-form .views-exposed-widgets .form-item:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 15px;
  color: #919191;
  font-size: 15px;
  transform: translateY(-50%);
}

.view-search .view-filter-wrapper .view-filters .views-exposed-form .views-exposed-widgets .form-item input[type="text"] {
  position: relative;
  padding: 10px 100px 10px 40px;
  width: 100%;
  min-width: 465px;
  height: 45px;
  background: #ffffff;
  color: #919191;
  border-top: 1px solid #ecebe9;
  border-bottom: 1px solid #ecebe9;
  border-left: 1px solid #ecebe9;
  transition: 0.25s;
}

@media all and (max-width: 1024px) {
  .view-search .view-filter-wrapper .view-filters .views-exposed-form .views-exposed-widgets .form-item input[type="text"] {
    min-width: inherit;
  }
}

.view-search .view-filter-wrapper .view-filters .views-exposed-form .views-exposed-widgets .form-item input[type="text"]::-webkit-input-placeholder {
  color: #919191;
}

.view-search .view-filter-wrapper .view-filters .views-exposed-form .views-exposed-widgets .form-item input[type="text"]:-ms-input-placeholder {
  color: #919191;
}

.view-search .view-filter-wrapper .view-filters .views-exposed-form .views-exposed-widgets .form-item input[type="text"]::placeholder {
  color: #919191;
}

.view-search .view-filter-wrapper .view-filters .views-exposed-form .views-exposed-widgets .form-item input[type="text"]:hover, .view-search .view-filter-wrapper .view-filters .views-exposed-form .views-exposed-widgets .form-item input[type="text"]:focus {
  border-color: #c9c6c4;
}

.view-search .view-filter-wrapper .view-filters .views-exposed-form .views-exposed-widgets .views-submit-button {
  display: block;
  position: absolute;
  margin: 0;
  padding: 0;
  width: 65px;
  right: 0;
  bottom: 0;
}

.view-search .view-filter-wrapper .view-filters .views-exposed-form .views-exposed-widgets .views-submit-button input[type='submit'] {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  width: 100%;
  height: 45px;
  max-width: 65px;
  color: #ffffff;
  font-size: 15px;
  line-height: 12px;
  text-transform: uppercase;
  background-color: #ed6a5a;
  border: 1px solid #8e1f0b;
  border-left: none;
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  transition: 0.25s;
}

.view-search .view-filter-wrapper .view-filters .views-exposed-form .views-exposed-widgets .views-submit-button input[type='submit']:hover {
  background-color: #8e1f0b;
}

.view-search .view-filter-wrapper .view-filters .views-exposed-form .views-exposed-widgets .views-submit-button input[type='submit']:active {
  background-color: #8e1f0b;
}

.view-search .container {
  padding-right: 30px;
  padding-left: 30px;
  max-width: 1072px;
}

.view-search .container:before, .view-search .container:after {
  content: " ";
  display: table;
}

.view-search .container:after {
  clear: both;
}

.view-search .container {
  *zoom: 1;
}

@media all and (max-width: 1024px) {
  .view-search .container {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media all and (max-width: 600px) {
  .view-search .container {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.view-search .container .results-count-wrapper {
  position: relative;
}

.view-search .container .results-count-wrapper:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #DDDDDD;
}

.view-search .container .results-count-wrapper .result-count {
  padding: 25px 0;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 18px;
  color: #919191;
}

.view-search .container .view-empty {
  margin-top: 60px;
}

.view-search .container .view-content .views-row {
  position: relative;
  float: left;
  padding: 25px 0;
  width: 100%;
}

.view-search .container .view-content .views-row:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #DDDDDD;
}

.view-search .container .view-content .views-row .search-left-wrapper {
  margin-right: 30px;
  width: calc(((100% - 30px * 4) / 5) - 0.01px);
  float: left;
  transition: 0.25s;
}

@media all and (max-width: 1024px) {
  .view-search .container .view-content .views-row .search-left-wrapper {
    margin-right: 20px;
    width: calc(((100% - 20px * 4) / 5) - 0.01px);
  }
}

@media all and (max-width: 600px) {
  .view-search .container .view-content .views-row .search-left-wrapper {
    margin-right: 10px;
    width: calc(((100% - 10px * 4) / 5) - 0.01px);
  }
}

.view-search .container .view-content .views-row .search-left-wrapper:last-of-type {
  margin-right: 0;
}

@media all and (max-width: 600px) {
  .view-search .container .view-content .views-row .search-left-wrapper {
    margin-bottom: 10px;
    width: 100%;
  }
}

.view-search .container .view-content .views-row .search-left-wrapper .search-teaser-icon {
  padding: 25px 0;
  width: 100%;
  text-align: center;
}

.view-search .container .view-content .views-row .search-left-wrapper .search-teaser-icon .related-teaser-icon {
  font-size: 70px;
  color: #ed6a5a;
}

.view-search .container .view-content .views-row .search-left-wrapper .search-teaser-icon .related-teaser-icon:hover {
  color: #FFC40C;
}

.view-search .container .view-content .views-row .search-left-wrapper a {
  display: block;
}

.view-search .container .view-content .views-row .search-left-wrapper img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 300px;
  height: auto;
}

.view-search .container .view-content .views-row .search-left-wrapper img.placeholder-image {
  max-width: 85px;
}

.view-search .container .view-content .views-row .search-title-body-wrapper {
  float: left;
}

.view-search .container .view-content .views-row .search-title-body-wrapper.search-right-wrapper {
  margin-right: 30px;
  width: calc(((100% - 30px * 0.25) / 1.25) - 0.01px);
  float: left;
}

@media all and (max-width: 1024px) {
  .view-search .container .view-content .views-row .search-title-body-wrapper.search-right-wrapper {
    margin-right: 20px;
    width: calc(((100% - 20px * 0.25) / 1.25) - 0.01px);
  }
}

@media all and (max-width: 600px) {
  .view-search .container .view-content .views-row .search-title-body-wrapper.search-right-wrapper {
    margin-right: 10px;
    width: calc(((100% - 10px * 0.25) / 1.25) - 0.01px);
  }
}

.view-search .container .view-content .views-row .search-title-body-wrapper.search-right-wrapper:last-of-type {
  margin-right: 0;
}

@media all and (max-width: 600px) {
  .view-search .container .view-content .views-row .search-title-body-wrapper.search-right-wrapper {
    padding-left: 0;
    width: 100%;
  }
}

.view-search .container .view-content .views-row .search-title-body-wrapper a {
  color: #ed6a5a;
  font-size: 22px;
  line-height: 26px;
}

.view-search .container .view-content .views-row .search-title-body-wrapper a:hover {
  color: #FFC40C;
}

.page-search h2 {
  margin: 50px auto;
  padding: 0 40px;
  max-width: 1420px;
  color: #A29771;
}

@media all and (max-width: 1024px) {
  .page-search h2 {
    padding: 0 20px;
  }
}

@media all and (max-width: 600px) {
  .page-search h2 {
    padding: 0 10px;
  }
}

.page-search .search-form,
.page-search .search-results {
  margin: 0 auto;
  padding: 0 40px;
  max-width: 1012px;
}

@media all and (max-width: 1024px) {
  .page-search .search-form,
  .page-search .search-results {
    padding: 0 20px;
  }
}

@media all and (max-width: 600px) {
  .page-search .search-form,
  .page-search .search-results {
    padding: 0 10px;
  }
}

.page-search .search-form {
  padding: 0;
}

@media all and (max-width: 600px) {
  .page-search .search-form {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.page-search .search-results h3,
.page-search .search-results a {
  color: #70ABBB;
}

.page-search .search-result {
  margin-top: 30px;
}

.page-search .search-result h3 {
  margin-bottom: 0;
}

.page-search .search-result .search-snippet-info {
  padding-left: 0;
}

.page-search .search-result .search-info {
  display: none;
}

.item-list {
  display: inline-block;
  padding-top: 60px;
  width: 100%;
}

@media all and (max-width: 600px) {
  .item-list {
    padding-top: 40px;
  }
}

.item-list .pager {
  margin-bottom: 0;
  padding: 0;
  text-align: center;
}

.item-list .pager .pager-first,
.item-list .pager .pager-last {
  display: none;
}

.item-list .pager .pager-current,
.item-list .pager .pager-item {
  display: inline-block;
  margin: 0;
  padding: 0;
  font-weight: normal;
  vertical-align: middle;
}

.item-list .pager .pager-current:before,
.item-list .pager .pager-item:before {
  display: none;
}

.item-list .pager .pager-current a,
.item-list .pager .pager-item a {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 500;
  padding: 0 12px;
  color: #C15722;
  font-size: 20px;
  line-height: 28px;
  border-bottom: none !important;
}

@media all and (max-width: 600px) {
  .item-list .pager .pager-current a,
  .item-list .pager .pager-item a {
    padding: 0 15px;
  }
}

.item-list .pager .pager-current a:hover,
.item-list .pager .pager-item a:hover {
  color: #A83E09;
}

.item-list .pager .pager-current {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #A83E09;
  padding: 0 12px;
}

@media all and (max-width: 600px) {
  .item-list .pager .pager-current {
    padding: 0 15px;
  }
}

.item-list .pager .pager-ellipsis {
  display: none;
}

.item-list .pager .pager-previous,
.item-list .pager .pager-next {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0px;
  vertical-align: middle;
}

.item-list .pager .pager-previous:before,
.item-list .pager .pager-next:before {
  display: none;
}

.item-list .pager .pager-previous.disabled a,
.item-list .pager .pager-next.disabled a {
  cursor: default;
  background-color: #DDDDDD;
  border-radius: 50%;
}

.item-list .pager .pager-previous.disabled a:before,
.item-list .pager .pager-next.disabled a:before {
  color: #ffffff;
}

.item-list .pager .pager-previous.disabled a:hover,
.item-list .pager .pager-next.disabled a:hover {
  background-color: #DDDDDD;
}

.item-list .pager .pager-previous a,
.item-list .pager .pager-next a {
  display: block;
  width: 40px;
  height: 40px;
  font-size: 0;
  line-height: 40px;
  background-color: #C15722;
  border: none;
  border-radius: 50%;
  transition: 0.25s;
}

.item-list .pager .pager-previous a:before,
.item-list .pager .pager-next a:before {
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  color: #ffffff;
  font-size: 20px;
}

.item-list .pager .pager-previous a:hover,
.item-list .pager .pager-next a:hover {
  background-color: #A83E09;
}

.item-list .pager .pager-previous {
  margin-right: 18px;
}

@media all and (max-width: 600px) {
  .item-list .pager .pager-previous {
    margin-right: 15px;
  }
}

.item-list .pager .pager-previous a:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  left: -1px;
  line-height: 40px;
}

.item-list .pager .pager-next {
  margin-left: 18px;
}

@media all and (max-width: 600px) {
  .item-list .pager .pager-next {
    margin-left: 15px;
  }
}

.item-list .pager .pager-next a:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  left: 1px;
  line-height: 40px;
}

.container--social {
  width: 100%;
  max-width: 1400px;
}

.container--social h2 {
  margin-bottom: 20px;
  font-size: 43px;
  line-height: 58px;
  text-align: center;
}

@media all and (max-width: 1024px) {
  .container--social h2 {
    margin-bottom: 25px;
    font-size: 32px;
    line-height: 30px;
  }
}

.container--social #social {
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
}

@media all and (max-width: 768px) {
  .container--social #social {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.container--social #social .container {
  width: 100%;
}

.container--social a {
  position: relative;
  float: left;
  margin: 0;
  color: #ffffff;
  text-decoration: none;
  border: 0;
  transition: 0.25s;
}

.container--social a.post {
  position: relative;
  height: 300px;
  padding: 20px;
  background: #587A91;
}

.container--social a.post:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  box-shadow: 0 0 85px rgba(34, 34, 34, 0.52) inset;
  z-index: 1;
  transition: 0.25s;
}

.container--social a.post:not(.no-img):hover:after {
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 85px rgba(34, 34, 34, 0.52) inset, 0 2px 7px rgba(34, 34, 34, 0.3);
  z-index: 1;
  transition: 0.25s;
}

.container--social a.post:focus:after {
  background: #455f71;
}

.container--social a.post.no-img h2 {
  color: #FFFFFF !important;
  text-shadow: none !important;
}

.container--social a.post.no-img p {
  color: #FFFFFF;
  text-shadow: none;
}

.container--social a.post.no-img:after {
  box-shadow: 0 0 32px black inset;
}

.container--social a.post.no-img:hover {
  background-color: #455f71;
}

.container--social a.post.no-img:focus:after {
  background-color: rgba(112, 171, 187, 0.5);
}

.container--social a.post.no-img .post-source:after {
  color: #FFFFFF;
}

.container--social a.post .post-image {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(234, 243, 245, 0.8);
  background-position: center center;
  background-size: cover;
}

.container--social a.post-twitter, .container--social a.post-facebook, .container--social a.post-instagram {
  width: 25%;
}

@media all and (max-width: 1024px) {
  .container--social a.post-twitter, .container--social a.post-facebook, .container--social a.post-instagram {
    width: 50%;
  }
}

@media all and (max-width: 600px) {
  .container--social a.post-twitter, .container--social a.post-facebook, .container--social a.post-instagram {
    width: 100%;
  }
}

.container--social a.post-twitter .post-image, .container--social a.post-facebook .post-image {
  opacity: 0.45;
  background-blend-mode: luminosity;
}

.container--social a.post-youtube {
  width: 50%;
}

@media all and (max-width: 600px) {
  .container--social a.post-youtube {
    width: 100%;
  }
}

.container--social a.post-youtube:before {
  content: '';
  display: block;
  position: absolute;
  width: 77px;
  height: 77px;
  top: 50%;
  left: 50%;
  z-index: 2;
  background-image: url("/_ui/skin/img/play-button.png");
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%) scale(1);
  transition: 0.25s;
}

.container--social a.post-youtube:hover:before {
  transform: translate(-50%, -50%) scale(1.07);
}

@media all and (max-width: 600px) {
  .container--social a.post-instagram {
    height: 300px;
  }
}

.container--social a .profile {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin: 0 0 20px;
  z-index: 2;
}

@media all and (max-width: 600px) {
  .container--social a .profile {
    margin: 0 0 10px;
  }
}

.container--social a .profile img {
  width: 46px;
  height: 46px;
  margin-right: 10px;
}

@media all and (max-width: 1024px) {
  .container--social a .profile img {
    width: 35px;
    height: auto;
  }
}

.container--social a .profile .text {
  margin-top: 3px;
}

.container--social a .profile .text h2 {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  margin-bottom: 0;
  color: #ffffff;
  font-size: 16px;
  font-style: normal;
  line-height: 22px;
  text-shadow: 0 0 15px rgba(50, 50, 50, 0.8);
}

.container--social a .profile .text .time-ago {
  color: #ffffff;
  font-size: 14px;
  line-height: 14px;
  opacity: 0.7;
}

.container--social a p {
  position: relative;
  top: 50%;
  color: #ffffff;
  font-size: 18px;
  line-height: 24px;
  text-shadow: 0 0 15px rgba(50, 50, 50, 0.25);
  z-index: 2;
  transform: translateY(-50%);
}

@media all and (max-width: 1024px) {
  .container--social a p {
    font-size: 21px;
    line-height: 31px;
  }
}

@media all and (max-width: 600px) {
  .container--social a p {
    font-size: 16px;
    line-height: 23px;
  }
}

.container--social a .post-source {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  position: absolute;
  width: 33px;
  height: 33px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}

.container--social a .post-source:after {
  position: absolute;
  color: #ffffff;
  text-indent: 0;
  z-index: 2;
}

.container--social a .post-source.post-facebook:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 0;
  left: 0;
  font-size: 40px;
}

.container--social a .post-source.post-twitter:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 0;
  left: 0;
  font-size: 40px;
  color: #70ABBB;
}

.container--social a .post-source.post-instagram:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 0;
  left: 0;
  font-size: 40px;
}

.container--social a .post-source.post-youtube {
  width: 36px;
}

.container--social a .post-source.post-youtube:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 0;
  left: 0;
  font-size: 38px;
}

body {
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input:focus {
  border: 3px solid #0A2240;
}

/* ---------------
*  Radio
* --------------- */
.pd-radio {
  display: block;
  width: 100%;
}

.pd-radio > span {
  display: block;
}

.pd-radio > span > span {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border: 1px solid #DDDDDD;
  cursor: pointer;
  transition: 0.25s;
}

.pd-radio > span > span:last-child .radio {
  border-bottom: none;
}

.pd-radio > span > span .radio {
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 100%;
  background-color: #DDDDDD;
  border-bottom: 1px solid #ffffff;
  cursor: pointer;
  transition: 0.25s;
}

.pd-radio > span > span .radio span {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.pd-radio > span > span .radio span:before, .pd-radio > span > span .radio span:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: 1;
  transition: 0.25s;
}

.pd-radio > span > span .radio span:before {
  width: 20px;
  height: 20px;
  left: 10px;
  background: #ffffff;
  border: 0px solid rgba(89, 136, 149, 0);
  transition: 0.25s;
}

.pd-radio > span > span .radio span:after {
  width: 10px;
  height: 10px;
  left: 15px;
  background: #ffffff;
  opacity: 0;
}

.pd-radio > span > span .radio span input {
  position: absolute;
  margin: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}

.pd-radio > span > span .inline {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  display: inline-block;
  position: relative;
  left: 40px;
  line-height: 15px;
  width: calc(100% - 40px);
  padding: 12px 20px;
  font-size: 15px;
  color: #222222;
  border-left: none;
  cursor: pointer;
  transition: 0.25s;
}

.pd-radio > span > span:nth-of-type(even) {
  border-top: none;
  border-bottom: none;
}

.pd-radio > span > span:nth-of-type(even) .radio {
  border-top: none;
}

.pd-radio > span > span:nth-of-type(even) .inline {
  border-top: none;
  border-bottom: none;
}

.pd-radio > span > span:last-of-type {
  border-bottom: 1px solid #DDDDDD;
}

.pd-radio > span > span:hover .radio {
  background-color: #70ABBB;
}

.pd-radio > span > span:hover .radio > span:before {
  background-color: #ffffff;
}

.pd-radio > span > span:hover .inline {
  color: #222222;
}

.pd-radio > span > span.selected {
  background: #ffffff;
  border: 1px solid #70ABBB;
}

.pd-radio > span > span.selected .radio {
  width: 47px;
  background-color: #70ABBB;
  border-right: 2px solid #598895;
  border-bottom: none;
}

.pd-radio > span > span.selected .radio > span:before {
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border: 3px solid #598895;
}

.pd-radio > span > span.selected .radio > span:after {
  opacity: 1;
}

.pd-radio > span > span.selected .inline {
  color: #222222;
  width: calc(100% - 47px);
}

#pardot-form {
  display: flex;
  flex-direction: column;
  padding: 0 4px;
}

@media all and (max-width: 600px) {
  #pardot-form {
    width: auto;
  }
}

#pardot-form .messages {
  margin-bottom: 30px;
}

#pardot-form .form-item {
  position: relative;
  padding: 10px 0;
  width: 390px;
  max-width: 390px;
  /* ---------------
        *  Label
        * --------------- */
  /* ---------------
        *  TEXTFIELD
        * --------------- */
  /* ---------------
        *  Checkbox
        * --------------- */
  /* ---------------
        *  Radio
        * --------------- */
  /* ---------------
        *  Textarea
        * --------------- */
  /* ---------------
        *  SELECT FIELDS
        * --------------- */
}

@media all and (max-width: 600px) {
  #pardot-form .form-item {
    width: auto;
  }
}

#pardot-form .form-item.error label.field-label {
  margin-right: 31px;
  color: #ed6a5a;
}

#pardot-form .form-item.error label.field-label:before {
  content: '!';
  position: absolute;
  width: 25px;
  height: 25px;
  right: 0;
  color: #ffffff;
  line-height: 25px;
  text-align: center;
  background: #ed6a5a;
}

#pardot-form .form-item.error input[type="text"],
#pardot-form .form-item.error input[type="number"],
#pardot-form .form-item.error input[type="password"],
#pardot-form .form-item.error input[type="email"],
#pardot-form .form-item.error textarea {
  border: 1px solid #ed6a5a !important;
}

#pardot-form .form-item.error.pd-radio *,
#pardot-form .form-item.error.pd-checkbox * {
  border-color: #ed6a5a !important;
}

#pardot-form .form-item.error.pd-radio > span > span > div,
#pardot-form .form-item.error.pd-checkbox > span > span > div {
  border-color: #8e1f0b !important;
}

#pardot-form .form-item.required label.field-label:after {
  content: '*';
  display: inline;
  position: relative;
  color: #ed6a5a;
}

#pardot-form .form-item label.field-label {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  display: block;
  padding-bottom: 3px;
  font-size: 14px;
  color: #222222;
  transition: 0.25s;
}

#pardot-form .form-item:focus input[type="text"],
#pardot-form .form-item:focus input[type="number"],
#pardot-form .form-item:focus input[type="password"],
#pardot-form .form-item:focus input[type="email"], #pardot-form .form-item:active input[type="text"],
#pardot-form .form-item:active input[type="number"],
#pardot-form .form-item:active input[type="password"],
#pardot-form .form-item:active input[type="email"], #pardot-form .form-item:focus input[type="text"],
#pardot-form .form-item:focus input[type="number"],
#pardot-form .form-item:focus input[type="password"],
#pardot-form .form-item:focus input[type="email"] {
  border: 1px solid #C15722;
}

#pardot-form .form-item input[type="text"],
#pardot-form .form-item input[type="number"],
#pardot-form .form-item input[type="password"],
#pardot-form .form-item input[type="email"] {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  padding: 10px 20px;
  width: 100%;
  height: 40px;
  background: #ffffff;
  font-size: 15px;
  color: #222222;
  border: 1px solid #DDDDDD;
  border-radius: 0;
  transition: 0.25s ease-in;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

#pardot-form .form-item input[type="text"]:hover,
#pardot-form .form-item input[type="number"]:hover,
#pardot-form .form-item input[type="password"]:hover,
#pardot-form .form-item input[type="email"]:hover {
  border: 1px solid #C15722;
}

#pardot-form .form-item input[type="text"]:focus,
#pardot-form .form-item input[type="number"]:focus,
#pardot-form .form-item input[type="password"]:focus,
#pardot-form .form-item input[type="email"]:focus {
  border: 1px solid #C15722;
}

#pardot-form .form-item.pd-checkbox {
  display: block;
  width: 100%;
}

#pardot-form .form-item.pd-checkbox > span {
  display: block;
}

#pardot-form .form-item.pd-checkbox > span > span {
  display: block;
  position: relative;
  width: 100%;
  border: 1px solid #DDDDDD;
  background: #ffffff;
  cursor: pointer;
  transition: 0.25s;
}

#pardot-form .form-item.pd-checkbox > span > span:last-child .checker {
  border-bottom: none;
}

#pardot-form .form-item.pd-checkbox > span > span .checker {
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 100%;
  background-color: #DDDDDD;
  border-bottom: 1px solid #ffffff;
  cursor: pointer;
  transition: 0.25s;
}

#pardot-form .form-item.pd-checkbox > span > span .checker > span {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

#pardot-form .form-item.pd-checkbox > span > span .checker > span:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  left: 11px;
  color: #ffffff;
  font-size: 18px;
  transform: translateY(-50%);
  transition: 0.25s;
}

#pardot-form .form-item.pd-checkbox > span > span .checker > span input {
  position: absolute;
  margin: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}

#pardot-form .form-item.pd-checkbox > span > span .inline {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  display: inline-block;
  position: relative;
  left: 40px;
  line-height: 15px;
  padding: 12px 20px;
  width: calc(100% - 40px);
  font-size: 15px;
  color: #222222;
  border-left: none;
  cursor: pointer;
  transition: 0.25s;
}

#pardot-form .form-item.pd-checkbox > span > span:nth-of-type(even) {
  border-top: none;
  border-bottom: none;
}

#pardot-form .form-item.pd-checkbox > span > span:nth-of-type(even) .checker {
  border-top: none;
}

#pardot-form .form-item.pd-checkbox > span > span:nth-of-type(even) .inline {
  border-top: none;
  border-bottom: none;
}

#pardot-form .form-item.pd-checkbox > span > span:last-of-type {
  border-bottom: 1px solid #DDDDDD;
}

#pardot-form .form-item.pd-checkbox > span > span:hover .checker {
  background-color: #70ABBB;
}

#pardot-form .form-item.pd-checkbox > span > span:hover .checker > span:before {
  color: #598895;
}

#pardot-form .form-item.pd-checkbox > span > span:hover .inline {
  color: #222222;
}

#pardot-form .form-item.pd-checkbox > span > span.selected {
  background: #ffffff;
  border: 1px solid #70ABBB;
}

#pardot-form .form-item.pd-checkbox > span > span.selected .checker {
  width: 47px;
  background-color: #70ABBB;
  border-right: 2px solid #598895;
  border-bottom: none;
}

#pardot-form .form-item.pd-checkbox > span > span.selected .checker > span:before {
  color: #ffffff;
}

#pardot-form .form-item.pd-checkbox > span > span.selected .inline {
  color: #222222;
  width: calc(100% - 47px);
}

#pardot-form .form-item.pd-radio {
  display: block;
  width: 100%;
}

#pardot-form .form-item.pd-radio > span {
  display: block;
}

#pardot-form .form-item.pd-radio > span > span {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border: 1px solid #DDDDDD;
  cursor: pointer;
  transition: 0.25s;
}

#pardot-form .form-item.pd-radio > span > span:last-child .radio {
  border-bottom: none;
}

#pardot-form .form-item.pd-radio > span > span .radio {
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 100%;
  background-color: #DDDDDD;
  border-bottom: 1px solid #ffffff;
  cursor: pointer;
  transition: 0.25s;
}

#pardot-form .form-item.pd-radio > span > span .radio span {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

#pardot-form .form-item.pd-radio > span > span .radio span:before, #pardot-form .form-item.pd-radio > span > span .radio span:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: 1;
  transition: 0.25s;
}

#pardot-form .form-item.pd-radio > span > span .radio span:before {
  width: 20px;
  height: 20px;
  left: 10px;
  background: #ffffff;
  border: 0px solid rgba(89, 136, 149, 0);
  transition: 0.25s;
}

#pardot-form .form-item.pd-radio > span > span .radio span:after {
  width: 10px;
  height: 10px;
  left: 15px;
  background: #ffffff;
  opacity: 0;
}

#pardot-form .form-item.pd-radio > span > span .radio span input {
  position: absolute;
  margin: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}

#pardot-form .form-item.pd-radio > span > span .inline {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  display: inline-block;
  position: relative;
  left: 40px;
  line-height: 15px;
  width: calc(100% - 40px);
  padding: 12px 20px;
  font-size: 15px;
  color: #222222;
  border-left: none;
  cursor: pointer;
  transition: 0.25s;
}

#pardot-form .form-item.pd-radio > span > span:nth-of-type(even) {
  border-top: none;
  border-bottom: none;
}

#pardot-form .form-item.pd-radio > span > span:nth-of-type(even) .radio {
  border-top: none;
}

#pardot-form .form-item.pd-radio > span > span:nth-of-type(even) .inline {
  border-top: none;
  border-bottom: none;
}

#pardot-form .form-item.pd-radio > span > span:last-of-type {
  border-bottom: 1px solid #DDDDDD;
}

#pardot-form .form-item.pd-radio > span > span:hover .radio {
  background-color: #70ABBB;
}

#pardot-form .form-item.pd-radio > span > span:hover .radio > span:before {
  background-color: #ffffff;
}

#pardot-form .form-item.pd-radio > span > span:hover .inline {
  color: #222222;
}

#pardot-form .form-item.pd-radio > span > span.selected {
  background: #ffffff;
  border: 1px solid #70ABBB;
}

#pardot-form .form-item.pd-radio > span > span.selected .radio {
  width: 47px;
  background-color: #70ABBB;
  border-right: 2px solid #598895;
  border-bottom: none;
}

#pardot-form .form-item.pd-radio > span > span.selected .radio > span:before {
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border: 3px solid #598895;
}

#pardot-form .form-item.pd-radio > span > span.selected .radio > span:after {
  opacity: 1;
}

#pardot-form .form-item.pd-radio > span > span.selected .inline {
  color: #222222;
  width: calc(100% - 47px);
}

#pardot-form .form-item.pd-textarea:focus textarea {
  border: 1px solid #C15722;
}

#pardot-form .form-item.pd-textarea textarea {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  display: block;
  padding: 10px 20px;
  width: 100%;
  min-height: 225px;
  color: #222222;
  border: 1px solid #DDDDDD;
  border-radius: 0;
  transition: 0.25s ease-in;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

#pardot-form .form-item.pd-textarea textarea:hover {
  border: 1px solid #C15722;
}

#pardot-form .form-item.pd-select .selector {
  transition: 0.25s ease-in;
  position: relative;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

#pardot-form .form-item.pd-select .selector.hover span {
  border: 1px solid #C15722;
}

#pardot-form .form-item.pd-select .selector:focus span {
  border: 1px solid #C15722;
}

#pardot-form .form-item.pd-select .selector span {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  display: block;
  padding: 10px 20px;
  height: 40px;
  font-size: 14px;
  line-height: 20px;
  border: 1px solid #DDDDDD;
  transition: 0.25s ease-in;
}

#pardot-form .form-item.pd-select .selector span:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  padding-left: 14px;
  padding-top: 12px;
  top: 0px;
  right: 0px;
  width: 41px;
  height: 100%;
  background-color: #A83E09;
  color: #ffffff;
  z-index: 0;
}

#pardot-form .form-item.pd-select .selector select {
  position: absolute;
  padding: 10px 20px;
  width: 100%;
  height: 40px;
  top: 0;
  left: 0;
  font-size: 15px;
  background: #ffffff;
  color: #919191;
  border-radius: 0;
  transition: 0.25s;
  opacity: 0;
  cursor: pointer;
}

#pardot-form .submit {
  display: inline-block;
  -ms-grid-row-align: center;
      align-self: center;
  margin-top: 15px;
  will-change: transform;
}

#pardot-form .submit:after {
  z-index: 5;
}

#pardot-form .submit.button {
  padding: 0 10px 0 5px;
  position: relative;
}

#pardot-form .submit.button:before {
  will-change: transform;
}

#pardot-form .submit input {
  font-family: henderson-sans-basic,sans-serif;
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 15px 20px;
  padding-right: 25px;
  color: #ffffff;
  font-size: 17px;
  line-height: 18px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: none;
  border-radius: 0;
  overflow: hidden;
  border: none;
  transition: 0.25s;
}

@media all and (max-width: 600px) {
  #pardot-form .submit input {
    font-size: 15px;
    padding: 10px 20px;
    padding-right: 25px;
  }
}

#pardot-form .submit input:hover {
  cursor: pointer;
}

.page-parts-accessories-tire-and-wheel-showroom .title {
  display: none;
}

.page-parts-accessories-tire-and-wheel-showroom .marquee-image {
  background-image: url("/sites/default/files/tireandwheelshowcase/marquee/marquee-tire-and-wheel.jpg");
  background-position: 50% 50%;
}

.page-parts-accessories-tire-and-wheel-showroom .container > .content {
  padding-left: 20px;
  padding-right: 20px;
}

.page-parts-accessories-tire-and-wheel-showroom .introduction {
  margin-top: -27px;
  margin-left: 22px;
  margin-right: 30px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  text-align: center;
  border-bottom: 1px solid #ecebe9;
}

@media all and (max-width: 1024px) {
  .page-parts-accessories-tire-and-wheel-showroom .introduction {
    margin-top: -8px;
  }
}

@media all and (max-width: 768px) {
  .page-parts-accessories-tire-and-wheel-showroom .introduction {
    margin-top: -3px;
  }
}

.page-parts-accessories-tire-and-wheel-showroom .introduction p {
  margin: 0 auto;
  max-width: 750px;
}

.page-parts-accessories-tire-and-wheel-showroom .mceContentBody {
  margin-bottom: 66px;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel {
  display: flex;
  flex-direction: column;
  position: relative;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__result {
  position: relative;
  display: flex;
  flex-direction: row;
  flex: 0 1 auto;
  margin-bottom: 30px;
  width: 100%;
}

@media all and (max-width: 768px) {
  .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__result {
    flex-direction: column;
    margin-bottom: 0;
  }
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__result__vehicle {
  position: relative;
  flex: 0 1 auto;
  align-self: flex-end;
  width: 50%;
}

@media all and (max-width: 768px) {
  .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__result__vehicle {
    order: 1;
    margin: 0 auto;
    width: 100%;
    max-width: 420px;
  }
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__result__vehicle__component {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__result__vehicle__component--car {
  position: relative;
  max-height: 446px;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__result__description {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 30px;
  width: 50%;
}

@media all and (max-width: 768px) {
  .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__result__description {
    order: 0;
    margin-bottom: 21px;
    padding-left: 0;
    width: 100%;
  }
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__result__description__title {
  font-family: henderson-sans-basic,sans-serif;
  font-weight: 700;
  font-style: normal;
  flex: 0 1 auto;
  margin-bottom: 7px;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: 1.06px;
}

@media all and (max-width: 768px) {
  .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__result__description__title {
    margin-bottom: 23px;
    font-size: 23px;
    line-height: 25px;
    letter-spacing: 0.9px;
  }
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__result__description__details {
  flex: 0 1 auto;
  margin-bottom: 23px;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.55px;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__result__description__details strong {
  font-weight: bold;
  font-size: 15px;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__result__description__model {
  flex: 0 1 auto;
  margin-bottom: 23px;
}

@media all and (max-width: 768px) {
  .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__result__description__model {
    display: none;
  }
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__result__description__model .selector {
  max-width: 218px;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__result__description__model .selector option {
  color: #222222;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__result__description__model .selector option:disabled {
  color: #c9c6c4;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__result__description__price {
  flex: 0 1 auto;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__result__description__price p {
  margin-bottom: 17px;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.63px;
}

@media all and (max-width: 768px) {
  .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__result__description__price p {
    font-size: 10px;
  }
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__result__description__price p strong {
  font-family: henderson-sans-basic,sans-serif;
  font-weight: 700;
  font-style: normal;
  position: relative;
  padding-left: 10px;
  font-size: 27px;
  font-weight: 700;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__result__description__price p strong:before {
  content: '$';
  font-family: henderson-sans-basic,sans-serif;
  font-weight: 700;
  font-style: normal;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 15px;
  font-weight: 700;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel .model-mobile {
  display: none;
  margin-bottom: 20px;
}

@media all and (max-width: 768px) {
  .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel .model-mobile {
    display: block;
  }
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel .model-mobile .selector option {
  color: #222222;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel .model-mobile .selector option:disabled {
  color: #c9c6c4;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options {
  position: relative;
  flex: 0 1 auto;
  width: 100%;
  border: 1px solid #DDDDDD;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__select {
  display: none;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__select .selector > span {
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 1px solid #DDDDDD;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__select .selector option {
  color: #222222;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__select .selector option:disabled {
  color: #c9c6c4;
}

@media all and (max-width: 768px) {
  .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__select {
    display: block;
  }
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__tabs {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  border-bottom: solid 1px #DDDDDD;
}

@media all and (max-width: 768px) {
  .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__tabs {
    display: none;
  }
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__tabs__tab {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex: 0 1 auto;
  width: 100%;
  padding: 10px 10px;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.63px;
  color: #FFFFFF;
  background-color: #0A2240;
  text-transform: uppercase;
  text-align: center;
  scroll-behavior: smooth;
  transition: color 0.25s, background-color 0.25s;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__tabs__tab:hover {
  color: #ffffff;
  background-color: #587A91;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__tabs__tab:last-of-type {
  border-right: none;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__tabs__tab.is-active {
  color: #0A2240;
  background-color: #FFFFFF;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__tabs__tab.is-disabled {
  pointer-events: none;
  color: #DDDDDD;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__tabs__tab span {
  flex: 0 1 auto;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel {
  position: relative;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .no-results {
  padding: 20px;
  text-align: center;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel {
  min-height: 100px;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-stage {
  will-change: transform;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .item {
  margin: 30px 10px;
  opacity: .5;
  transition: opacity 0.25s;
  cursor: pointer;
}

@media all and (max-width: 1024px) {
  .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .item {
    margin-top: 30px;
    margin-right: 10px;
    margin-bottom: 19px;
    margin-left: 10px;
  }
}

@media all and (min-width: 1025px) {
  .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .item:hover {
    opacity: 1;
  }
  .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .item:hover:after {
    opacity: 1;
  }
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .item:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 6px;
  width: 134px;
  background-color: #A29771;
  transform: translateX(-50%);
  opacity: 0;
  transform: opacity 0.25s;
}

@media all and (max-width: 1024px) {
  .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .item:after {
    display: none;
  }
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .item.selected {
  opacity: 1;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .item.selected:after {
  opacity: 1;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav {
  display: block;
}

@media all and (max-width: 1024px) {
  .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-bottom: -19px;
  }
  .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .owl-prev,
  .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .owl-next {
    flex: 0 1 auto;
    display: inline-block;
  }
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .disabled .prev,
.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .disabled .next {
  color: #ecebe9;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .disabled .prev:hover,
.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .disabled .next:hover {
  border: 1px solid #DDDDDD;
  background-color: #ffffff;
  cursor: default;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .disabled .prev:hover:before, .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .disabled .prev:hover:after,
.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .disabled .next:hover:before,
.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .disabled .next:hover:after {
  color: #ecebe9;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .prev,
.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .next {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: 1px solid #DDDDDD;
  background-color: #ffffff;
  font-size: 20px;
  color: #A29771;
  transition: border 0.25s, background-color 0.25s;
}

@media all and (max-width: 1024px) {
  .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .prev,
  .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .next {
    position: relative;
    transform: translateY(0);
    top: auto;
  }
  .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .prev:first-of-type,
  .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .next:first-of-type {
    margin-right: 5px;
  }
  .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .prev:last-of-type,
  .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .next:last-of-type {
    margin-left: 5px;
  }
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .prev:hover,
.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .next:hover {
  background-color: #A29771;
  border: 1px solid #A29771;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .prev:hover:before, .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .prev:hover:after,
.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .next:hover:before,
.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .next:hover:after {
  color: #ffffff;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .prev {
  left: -21px;
}

@media all and (max-width: 1024px) {
  .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .prev {
    left: auto;
  }
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .prev:after {
  content: '';
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: color 0.25s;
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .next {
  right: -21px;
}

@media all and (max-width: 1024px) {
  .page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .next {
    right: auto;
  }
}

.page-parts-accessories-tire-and-wheel-showroom .tire-and-wheel__options__carousel .owl-carousel .owl-nav .next:after {
  content: '';
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: color 0.25s;
}

.content_wide-top {
  width: 100%;
  padding-bottom: 20px;
  margin: 0 auto;
}

.locator .search {
  display: none;
  width: 100%;
  text-align: left;
  padding-top: 20px;
  color: #A29771;
}

.locator .search .param {
  float: left;
  font-size: 14px;
  font-weight: bold;
  margin-right: 25px;
}

@media all and (max-width: 768px) {
  .locator .search .param {
    float: none;
    margin-bottom: 35px;
  }
}

.locator .search .param option {
  color: #222222;
}

.locator .search .param option:disabled {
  color: #c9c6c4;
}

.locator .search .param.state, .locator .search .param.province, .locator .search .param.county {
  width: auto;
}

@media all and (max-width: 768px) {
  .locator .search .param.state, .locator .search .param.province, .locator .search .param.county {
    float: none;
    margin-bottom: 15px;
  }
}

.locator .search .param.state .selector span, .locator .search .param.province .selector span, .locator .search .param.county .selector span {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  color: #222222;
  padding-right: 63px;
}

.locator .search .param label {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #222222;
}

.locator .search input[type="radio"] {
  margin: 6px 3px 0px 0px;
}

.locator .search select {
  font-size: 14px;
  font: 13.3333px Arial;
  cursor: pointer;
}

.locator .result {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 20px;
  width: 485px;
  height: 115px;
  padding: 20px;
}

@media all and (max-width: 768px) {
  .locator .result {
    width: 100%;
  }
}

.locator .result .icons {
  display: none;
  width: 100px;
  text-align: center;
  float: left;
  margin-right: 20px;
}

.locator .result .detail {
  float: left;
  color: #666;
  font-size: 14px;
  font-family: Arial;
  line-height: 20px;
}

.pd-radio {
  display: block;
  width: 100%;
}

.pd-radio > span {
  display: block;
}

.pd-radio > span > span {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border: 1px solid #DDDDDD;
  cursor: pointer;
  transition: 0.25s;
}

.pd-radio > span > span:last-child .radio {
  border-bottom: none;
}

.pd-radio > span > span .radio {
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 100%;
  background-color: #DDDDDD;
  border-bottom: 1px solid #ffffff;
  cursor: pointer;
  transition: 0.25s;
}

.pd-radio > span > span .radio span {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.pd-radio > span > span .radio span:before, .pd-radio > span > span .radio span:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: 1;
  transition: 0.25s;
}

.pd-radio > span > span .radio span:before {
  width: 20px;
  height: 20px;
  left: 10px;
  background: #ffffff;
  border: 0px solid rgba(89, 136, 149, 0);
  transition: 0.25s;
}

.pd-radio > span > span .radio span:after {
  width: 10px;
  height: 10px;
  left: 15px;
  background: #ffffff;
  opacity: 0;
}

.pd-radio > span > span .radio span input {
  position: absolute;
  margin: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}

.pd-radio > span > span .inline {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  display: inline-block;
  position: relative;
  left: 40px;
  line-height: 15px;
  width: calc(100% - 40px);
  padding: 12px 20px;
  font-size: 15px !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  color: #222222;
  border-left: none;
  cursor: pointer;
  transition: 0.25s;
}

.pd-radio > span > span:nth-of-type(even) {
  border-top: none;
  border-bottom: none;
}

.pd-radio > span > span:nth-of-type(even) .radio {
  border-top: none;
}

.pd-radio > span > span:nth-of-type(even) .inline {
  border-top: none;
  border-bottom: none;
}

.pd-radio > span > span:last-of-type {
  border-bottom: 1px solid #DDDDDD;
}

.pd-radio > span > span:hover .radio {
  background-color: #70ABBB;
}

.pd-radio > span > span:hover .radio > span:before {
  background-color: #ffffff;
}

.pd-radio > span > span:hover .inline {
  color: #222222;
}

.pd-radio > span > span.selected {
  background: #ffffff;
  border: 1px solid #70ABBB;
}

.pd-radio > span > span.selected .radio {
  width: 47px;
  background-color: #70ABBB;
  border-right: 2px solid #598895;
  border-bottom: none;
}

.pd-radio > span > span.selected .radio > span:before {
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border: 3px solid #598895;
}

.pd-radio > span > span.selected .radio > span:after {
  opacity: 1;
}

.pd-radio > span > span.selected .inline {
  color: #222222;
  width: calc(100% - 47px);
}

.locator .search {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.locator .search .param {
  width: calc(100% / 3);
}

@media all and (max-width: 768px) {
  .locator .search .param {
    width: 100%;
    margin-right: 0;
  }
}

.locator .search .form-item.country {
  margin-top: 0;
}

.locator .selector {
  -webkit-font-smoothing: antialiased;
  transition: 0.25s ease-in;
  position: relative;
  width: 100%;
  text-align: left;
}

.locator .selector.hover span {
  border: 1px solid #C15722;
}

.locator .selector.focus span {
  border: 1px solid #C15722;
}

.locator .selector span {
  -webkit-font-smoothing: antialiased;
  transition: 0.25s ease-in;
  box-sizing: border-box;
  padding: 8px 20px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  height: 40px;
  display: block;
  border: 1px solid #DDDDDD;
}

.locator .selector span:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  padding-left: 13px;
  padding-top: 13px;
  top: 0px;
  right: 0px;
  width: 41px;
  height: 100%;
  background-color: #70ABBB;
  color: #ffffff;
  z-index: 0;
}

.locator .selector select {
  position: absolute;
  padding: 10px 20px;
  padding-right: 50px;
  width: 100%;
  height: 40px;
  top: 0;
  left: 0;
  font-size: 15px;
  background: #ffffff;
  color: #DDDDDD;
  border-radius: 0;
  transition: 0.25s;
  opacity: 0;
}

.page-financing-find-golf-sales-rep .content {
  margin: 0 auto;
  padding: 0 40px;
  max-width: 1300px;
}

@media all and (max-width: 1024px) {
  .page-financing-find-golf-sales-rep .content {
    padding: 0 20px;
  }
}

@media all and (max-width: 600px) {
  .page-financing-find-golf-sales-rep .content {
    padding: 0 10px;
  }
}

.page-financing-find-golf-sales-rep .content .mceContentBody a {
  color: #70ABBB !important;
}

.page-financing-find-golf-sales-rep .content .mceContentBody a:hover {
  color: #598895 !important;
}

.builder {
  line-height: 1;
}

.builder__main {
  flex-direction: row;
  max-width: 1240px;
}

.builder__main .builder__image {
  width: calc(100% - 400px);
}

.builder__main .builder__aside {
  width: 400px;
}

@media all and (max-width: 1024px) {
  .builder__main .builder__image,
  .builder__main .builder__aside {
    width: 50%;
  }
}

@media all and (max-width: 600px) {
  .builder__main .builder__image,
  .builder__main .builder__aside {
    width: 100%;
  }
}

.builder__header {
  display: flex;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  z-index: 50;
  position: relative;
  width: 100%;
  background-color: #fff;
}

.builder__header .builder__header__wrapper {
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
  margin: auto;
  flex-direction: column;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 100%;
}

@media all and (min-width: 1025px) {
  .builder__header .builder__header__wrapper {
    flex-direction: row;
    max-width: 1240px;
  }
}

.builder__header__title {
  padding: 0 1rem 0 0;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}

@media all and (min-width: 1025px) {
  .builder__header__title {
    margin-bottom: 0;
    font-size: 2rem;
    border-right: 1px solid;
    line-height: 1;
    margin-right: 1rem;
  }
}

.builder__header__sub {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
  justify-content: space-between;
  font-size: 0.85rem;
  line-height: 1.25;
}

@media all and (min-width: 1025px) {
  .builder__header__sub {
    flex-direction: row;
    align-items: flex-end;
  }
}

.builder__header__msrp {
  padding-right: 0.25rem;
  font-weight: 600;
  font-size: 1rem;
}

@media all and (min-width: 1025px) {
  .builder__header__msrp {
    font-size: 1.75rem;
  }
}

.builder__header__summary {
  font-weight: 600;
  text-transform: uppercase;
  background: transparent;
  border: none;
  cursor: pointer;
}

.builder__header__summary:hover {
  color: #7293aa;
}

.builder__image {
  position: relative;
  align-items: flex-start;
  display: flex;
  flex-grow: 1;
}

.vehicle-builder__summary {
  margin: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media all and (min-width: 1025px) {
  .vehicle-builder__summary {
    max-width: 1240px;
  }
}

.builder__tabs__content {
  display: block !important;
  max-height: 100%;
}

@media all and (max-width: 1024px) {
  .builder__tabs__content {
    height: 240px;
  }
}

@media all and (min-width: 1025px) {
  .builder__tabs__content {
    height: 500px;
  }
}

@media all and (min-width: 1025px) {
  .vehicle-image-stack__message {
    font-size: 1.25rem;
  }
}

.vehicle-image-stack__base {
  height: 100% !important;
}

body.node-type-home-page #center .node-home-page > .content {
  padding: 0;
}

.node-type-landing-page .mceContentBody + .landing-related-content {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #ecebe9;
}

@media all and (max-width: 600px) {
  .node-type-landing-page .mceContentBody + .landing-related-content {
    margin-top: 40px;
    padding-top: 33px;
  }
}

.landing-related-content {
  padding-right: 30px;
  padding-left: 30px;
  margin: 0 auto;
  margin-bottom: -50px;
  overflow: hidden;
}

.landing-related-content:before, .landing-related-content:after {
  content: " ";
  display: table;
}

.landing-related-content:after {
  clear: both;
}

.landing-related-content {
  *zoom: 1;
}

.landing-related-content:before, .landing-related-content:after {
  content: " ";
  display: table;
}

.landing-related-content:after {
  clear: both;
}

.landing-related-content {
  *zoom: 1;
}

@media all and (max-width: 1024px) {
  .landing-related-content {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media all and (max-width: 600px) {
  .landing-related-content {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media all and (max-width: 768px) {
  .landing-related-content {
    padding-right: 0;
    padding-left: 0;
  }
}

@media all and (max-width: 600px) {
  .landing-related-content {
    margin-bottom: -35px;
  }
}

.landing-related-content .related-teaser {
  display: block;
  position: relative;
  float: left;
  margin-bottom: 50px;
  width: calc(50% - 25px);
  height: 100%;
  vertical-align: top;
}

.landing-related-content .related-teaser:before, .landing-related-content .related-teaser:after {
  content: " ";
  display: table;
}

.landing-related-content .related-teaser:after {
  clear: both;
}

.landing-related-content .related-teaser {
  *zoom: 1;
}

@media all and (max-width: 768px) {
  .landing-related-content .related-teaser {
    float: none;
    margin: 0 auto;
    margin-bottom: 50px;
    width: 100%;
  }
}

@media all and (max-width: 600px) {
  .landing-related-content .related-teaser {
    margin-bottom: 35px;
  }
}

.landing-related-content .related-teaser:nth-of-type(odd) {
  margin-right: 50px;
}

@media all and (max-width: 768px) {
  .landing-related-content .related-teaser:nth-of-type(odd) {
    margin-right: auto;
  }
}

.landing-related-content .related-teaser-image,
.landing-related-content .related-teaser-icon {
  display: block;
  float: left;
  padding-right: 15px;
  width: 30%;
  height: 100%;
}

.landing-related-content .related-teaser-image > img,
.landing-related-content .related-teaser-icon > img {
  position: relative;
  width: 100%;
  top: 0;
  left: 0px;
}

.landing-related-content .related-teaser-image:before,
.landing-related-content .related-teaser-icon:before {
  position: relative;
  top: 8px;
  left: calc(50% - 35px);
  font-size: 70px;
  color: #FFC40C;
}

@media all and (max-width: 600px) {
  .landing-related-content .related-teaser-image:before,
  .landing-related-content .related-teaser-icon:before {
    left: calc(50% - 25px);
    font-size: 50px;
  }
}

.landing-related-content .related-teaser-content {
  display: block;
  float: left;
  width: 70%;
  font-size: 21px;
  color: #919191;
}

@media all and (max-width: 600px) {
  .landing-related-content .related-teaser-content {
    font-size: 18px;
  }
}

.landing-related-content .related-teaser-content .button {
  display: block;
  padding-left: 0;
}

.landing-related-content .related-teaser-title {
  position: relative;
  padding-bottom: 10px;
  width: 100%;
  font-size: 18.01px;
  line-height: 19px;
}

.landing-related-content .related-teaser-title:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #DDDDDD;
}

.landing-related-content .related-teaser-title a {
  color: #231f20;
  text-transform: uppercase;
  transition: 0.25s;
}

@media all and (max-width: 600px) {
  .landing-related-content .related-teaser-title a {
    font-size: 19px;
  }
}

.landing-related-content .related-teaser-title a:hover {
  color: #919191;
}

.landing-related-content .related-teaser-description {
  padding-top: 9px;
  font-size: 18px;
  line-height: 24px;
}

.landing-related-content .button {
  padding-bottom: 0;
}

body.node-type-market-page #main .container {
  max-width: 1220px;
}

.slide_up {
  transform: translate(0, -100px) !important;
}

.market-breadcrumbs {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 1220px;
  transition: 0.25s;
}

.market-breadcrumbs.header-width {
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.12);
}

.market-breadcrumbs .active {
  color: #587A91 !important;
}

@media all and (max-width: 1024px) {
  .market-breadcrumbs {
    z-index: 2;
  }
}

@media all and (max-width: 600px) {
  .market-breadcrumbs {
    margin: 0 auto;
    width: 100%;
    overflow: visible;
    transition: max-width 0;
  }
  .market-breadcrumbs .market-breadcrumbs-mobile-container {
    position: relative;
    margin: 0 auto;
    max-width: 400px;
  }
  .market-breadcrumbs .market-breadcrumbs-mobile-container:after {
    content: "";
    position: absolute;
    width: 38px;
    height: 42px;
    top: 0px;
    right: 0px;
    background: #70ABBB;
    pointer-events: none;
    transition: 0.25s;
    display: none;
  }
  .market-breadcrumbs .market-breadcrumbs-mobile-container:before {
    content: "";
    font-family: 'ezgo';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    z-index: 5;
    top: 15px;
    right: 12px;
    font-size: 14px;
    color: #ffffff;
    pointer-events: none;
    opacity: 1;
    display: none;
  }
  .market-breadcrumbs .selector {
    background-color: #ffffff;
  }
  .market-breadcrumbs .selector select {
    padding: 0 60px 0 15px;
    width: 100%;
    height: 42px;
    font-size: 13px;
    text-indent: 0;
    border-radius: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    text-transform: uppercase;
  }
}

header .market-breadcrumbs.header-width .market-breadcrumbs-full {
  width: 100%;
  max-width: 100% !important;
}

.market-breadcrumbs.main-width {
  width: 100%;
  max-width: 100% !important;
}

header .market-breadcrumbs {
  position: absolute;
  margin: 0 auto;
  width: 100%;
  max-width: none;
  bottom: 0;
  left: 0;
  vertical-align: middle;
  background: #ffffff;
  transform: translateY(99%);
}

@media all and (max-width: 1024px) {
  header .market-breadcrumbs {
    margin-top: 8px;
  }
  body.mobile-menu-active header .market-breadcrumbs {
    opacity: 0;
    visibility: hidden;
  }
}

@media all and (max-width: 600px) {
  header .market-breadcrumbs {
    padding: 30px 10px;
    width: 100%;
    background-color: #EAF3F5;
  }
}

header .market-breadcrumbs:before {
  top: 60%;
  right: 10%;
}

header .market-breadcrumbs:after {
  height: 40px;
  top: 28px;
  right: 7%;
}

.market-breadcrumbs li {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  display: inline-block;
  position: relative;
  margin-right: 36px;
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  transition: 0.25s;
}

.market-breadcrumbs li:hover {
  color: #A29771;
}

.market-breadcrumbs li:first-child {
  margin-right: 18px;
  padding-right: 14px;
  line-height: 14px;
  color: #c9c6c4;
  border-right: 1px solid #c9c6c4;
}

.market-breadcrumbs li:first-child:after {
  content: none;
}

.market-breadcrumbs li a {
  color: inherit;
}

.market-breadcrumbs li a:hover {
  color: #A29771;
}

.market-breadcrumbs li a:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 5px;
  right: -21px;
  vertical-align: middle;
  font-size: 15px;
  cursor: pointer;
}

.market-breadcrumbs-full {
  display: block;
  transition: max-width 0.25s;
}

@media all and (max-width: 600px) {
  .market-breadcrumbs-full {
    display: none;
  }
}

header .market-breadcrumbs-full {
  margin: 0 auto;
  padding: 6px 0 4px;
  padding-left: 30px;
  max-width: 1280px;
}

@media all and (max-width: 1024px) {
  header .market-breadcrumbs-full {
    padding: 15px 0;
    padding-left: 20px;
  }
}

.market-breadcrumbs-mobile {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  display: none;
  position: relative;
  margin: 0 auto;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  height: 38px;
  font-size: 14px;
  color: #919191;
  border: 1px solid #DDDDDD;
  background: #ffffff;
  transition: 0.25s;
}

@media all and (max-width: 600px) {
  .market-breadcrumbs-mobile {
    display: block;
  }
}

.market-breadcrumbs-mobile:hover {
  border-color: #70ABBB;
}

.vehicle-main-content {
  margin-top: 30px;
  padding-top: 60px;
  border-top: 1px solid #DDDDDD;
}

.vehicle-main-content:before, .vehicle-main-content:after {
  content: " ";
  display: table;
}

.vehicle-main-content:after {
  clear: both;
}

.vehicle-main-content {
  *zoom: 1;
}

@media all and (max-width: 600px) {
  .vehicle-main-content {
    border-top: none;
  }
}

.vehicle-main-content:first-child {
  margin-top: 0;
}

.vehicle-main-content:last-child {
  margin-bottom: 30px;
}

.market-sticky-left {
  margin-right: 30px;
  width: calc(((100% - 30px * 2) / 3) - 0.01px);
  float: left;
}

@media all and (max-width: 1024px) {
  .market-sticky-left {
    margin-right: 20px;
    width: calc(((100% - 20px * 2) / 3) - 0.01px);
  }
}

@media all and (max-width: 600px) {
  .market-sticky-left {
    margin-right: 10px;
    width: calc(((100% - 10px * 2) / 3) - 0.01px);
  }
}

.market-sticky-left:last-of-type {
  margin-right: 0;
}

@media all and (max-width: 1024px) {
  .market-sticky-left {
    float: none;
    margin: 0 auto 60px;
    width: 100%;
  }
}

@media all and (max-width: 600px) {
  .market-sticky-left {
    margin-bottom: 30px;
  }
}

.personal .market-sticky-left h1 {
  font-family: "omnes-pro", Arial, sans-serif;
  font-weight: 700;
  font-style: italic;
  color: #F6861F;
  font-size: 44px;
  line-height: 44px;
  text-transform: capitalize;
}

@media all and (max-width: 1024px) {
  .personal .market-sticky-left h1 {
    padding-left: 0 !important;
  }
}

@media all and (max-width: 600px) {
  .personal .market-sticky-left h1 {
    padding-left: 0;
    padding-bottom: 5px !important;
    margin-bottom: 0;
    font-size: 31px;
  }
}

.market-sticky-left h1 {
  font-family: henderson-sans-basic,sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
  padding: 0;
  font-size: 36px;
  line-height: 36px;
  color: #A29771;
  background: none;
}

.market-sticky-left p {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  color: #222222;
  line-height: 25px;
}

.vehicles-section {
  margin-right: 30px;
  width: calc(((100% - 30px * 0.5) / 1.5) - 0.01px);
  float: left;
  position: relative;
}

@media all and (max-width: 1024px) {
  .vehicles-section {
    margin-right: 20px;
    width: calc(((100% - 20px * 0.5) / 1.5) - 0.01px);
  }
}

@media all and (max-width: 600px) {
  .vehicles-section {
    margin-right: 10px;
    width: calc(((100% - 10px * 0.5) / 1.5) - 0.01px);
  }
}

.vehicles-section:last-of-type {
  margin-right: 0;
}

@media all and (max-width: 1024px) {
  .vehicles-section {
    float: none;
    margin: 0 auto 30px;
    width: 100%;
  }
}

.vehicles-section .vehicle-card {
  margin-right: 30px;
  width: calc(((100% - 30px * 1) / 2) - 0.01px);
  float: left;
  position: relative;
  margin-bottom: 60px;
  padding: 20px 30px 127px;
  box-shadow: 0 1px 3px rgba(34, 34, 34, 0.05), 0 0px 6px rgba(34, 34, 34, 0.09);
  overflow: hidden;
  transition: 0.25s;
  /* &:hover {
            .button:before {
                transform: translateY(0);
            }
            .button p:after {
                right: -23px;
            }
            a.link-external p:after {
                right: -26px;
            }
            .vehicle-card__RAQ p:after {
                right: -18px !important;
            }
        } */
}

@media all and (max-width: 1024px) {
  .vehicles-section .vehicle-card {
    margin-right: 20px;
    width: calc(((100% - 20px * 1) / 2) - 0.01px);
  }
}

@media all and (max-width: 600px) {
  .vehicles-section .vehicle-card {
    margin-right: 10px;
    width: calc(((100% - 10px * 1) / 2) - 0.01px);
  }
}

.vehicles-section .vehicle-card:last-of-type {
  margin-right: 0;
}

.vehicles-section .vehicle-card:nth-of-type(2n) {
  margin-right: 0;
}

.vehicles-section .vehicle-card:nth-of-type(2n + 1) {
  clear: left;
}

@media all and (max-width: 1024px) {
  .vehicles-section .vehicle-card {
    margin-top: 0;
    margin-bottom: 30px;
  }
}

@media all and (max-width: 600px) {
  .vehicles-section .vehicle-card {
    margin-right: 30px;
    width: calc(((100% - 30px * 0) / 1) - 0.01px);
    float: left;
    margin-bottom: 40px;
    padding: 20px 10px 117px;
  }
}

@media all and (max-width: 600px) and (max-width: 1024px) {
  .vehicles-section .vehicle-card {
    margin-right: 20px;
    width: calc(((100% - 20px * 0) / 1) - 0.01px);
  }
}

@media all and (max-width: 600px) and (max-width: 600px) {
  .vehicles-section .vehicle-card {
    margin-right: 10px;
    width: calc(((100% - 10px * 0) / 1) - 0.01px);
  }
}

@media all and (max-width: 600px) {
  .vehicles-section .vehicle-card:last-of-type {
    margin-right: 0;
  }
}

body.golf .vehicles-section .vehicle-card {
  padding: 30px 30px 97px;
}

@media all and (max-width: 600px) {
  body.golf .vehicles-section .vehicle-card {
    padding: 20px 20px 77px;
  }
}

.vehicles-section .vehicle-card:first-child, .vehicles-section .vehicle-card:nth-child(2) {
  margin-top: 0;
}

.vehicles-section .vehicle-card:last-child, .vehicles-section .vehicle-card:nth-last-child(2) {
  margin-bottom: 30px;
}

@media all and (max-width: 1024px) {
  .vehicles-section .vehicle-card:last-child, .vehicles-section .vehicle-card:nth-last-child(2) {
    margin-bottom: 30px;
  }
}

@media all and (max-width: 600px) {
  .vehicles-section .vehicle-card:last-child, .vehicles-section .vehicle-card:nth-last-child(2) {
    margin-bottom: 40px;
  }
}

@media all and (max-width: 1024px) {
  .vehicles-section .vehicle-card:last-child {
    margin-bottom: 30px;
  }
}

.vehicles-section .vehicle-card h4 {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  display: block;
  margin: 0 auto 22px;
  font-size: 27px;
  line-height: 30px;
  text-align: center;
}

@media all and (max-width: 1024px) {
  .vehicles-section .vehicle-card h4 {
    margin-top: 0;
    font-size: 28px;
    line-height: 27px;
  }
}

.vehicles-section .vehicle-card img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

@media all and (max-width: 1024px) {
  .vehicles-section .vehicle-card img {
    margin-bottom: 10px;
  }
}

.vehicles-section .vehicle-card .promo-card-callout {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 0;
  width: 100%;
  background-color: #A29771;
}

.vehicles-section .vehicle-card .promo-card-callout p {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
}

.vehicles-section .vehicle-card .vehicle_card_top_bar {
  position: absolute;
  width: 100%;
  height: 10px;
  top: 0;
  left: 0;
  background: url(../img/pattern-stripe.png) repeat-x;
  background-size: 6%;
}

.vehicles-section .vehicle-card > p {
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  margin-top: -15px;
  margin-bottom: 23px;
}

@media all and (max-width: 600px) {
  .vehicles-section .vehicle-card > p {
    margin-bottom: 19px;
    font-size: 16px;
    line-height: 20px;
  }
}

body.golf .vehicles-section .vehicle-card > p {
  margin-bottom: 0;
}

.vehicles-section .vehicle-card .button {
  display: block;
  position: absolute;
  margin: 0 auto;
  padding: 10px 20px;
  width: calc(100% - 60px);
  height: auto;
  bottom: 30px;
  left: 30px;
  text-align: center;
  vertical-align: middle;
}

@media all and (max-width: 600px) {
  .vehicles-section .vehicle-card .button {
    width: calc(100% - 40px);
    bottom: 20px;
    left: 20px;
  }
}

.vehicles-section .vehicle-card .button:after {
  content: none;
}

.vehicles-section .vehicle-card .button:hover p:after {
  right: -23px;
}

.vehicles-section .vehicle-card .button p {
  display: inline-block;
  position: relative;
  width: auto;
}

.vehicles-section .vehicle-card .button p:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: -18px;
  top: 1px;
  color: #ffffff;
  font-size: 17px;
  transition: 0.25s;
}

@media all and (max-width: 600px) {
  .vehicles-section .vehicle-card .button p:after {
    font-size: 16px;
  }
}

.vehicles-section .vehicle-card .button.link-external p:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  right: -21px;
}

.vehicles-section .vehicle-card .vehicle-card__RAQ {
  bottom: 80px !important;
  left: 30px !important;
  width: calc(100% - 60px) !important;
  margin: 3px 0 8px;
  font-size: 17px !important;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  transform: none !important;
}

.vehicles-section .vehicle-card .vehicle-card__RAQ:hover p:after {
  right: -23px !important;
}

@media all and (max-width: 600px) {
  .vehicles-section .vehicle-card .vehicle-card__RAQ {
    bottom: 70px !important;
    left: 20px !important;
    width: calc(100% - 40px) !important;
    font-size: 15px !important;
  }
}

.vehicles-section .vehicle-card .vehicle-card__RAQ p {
  padding: 9px 0 8px;
}

.vehicles-section .vehicle-card .vehicle-card__RAQ p:after {
  top: 9px !important;
  font-size: 18px !important;
  transform: translate(0, 0) !important;
}

@media all and (max-width: 600px) {
  .vehicles-section .vehicle-card .vehicle-card__RAQ p:after {
    font-size: 16px !important;
  }
}

.slide_up {
  transform: translate(0, -100px) !important;
}

.powertrains-vehicle-title {
  font-family: henderson-sans-basic,sans-serif;
  font-weight: 700;
  font-style: normal;
}

.vehicles-section .vehicle-card .vehicle-card__RAQ {
  position: absolute;
  bottom: 18px;
  left: calc(50% - (16px / 2));
  padding: 0;
  font-size: 15px;
  transform: translateX(-50%);
  width: 170px;
  color: #587A91;
  background: none;
}

.vehicles-section .vehicle-card .vehicle-card__RAQ p {
  position: relative;
  display: inline-block;
  width: auto;
}

.vehicles-section .vehicle-card .vehicle-card__RAQ p:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: -18px;
  top: 50%;
  color: #587A91;
  transform: translate(0, -50%);
  transition: 0.25s;
  font-size: 16px;
  line-height: 18px;
}

.vehicles-section .vehicle-card .vehicle-card__RAQ:after {
  content: none;
}

.vehicles-section .vehicle-card .vehicle-card__RAQ:before {
  display: none;
}

.promotion-full-width {
  position: relative;
  margin-top: -30px;
  padding: 60px 40px 15px;
  width: 100%;
  height: auto;
  background-color: rgba(49, 175, 207, 0.7);
  z-index: 1;
}

@media all and (max-width: 768px) {
  .promotion-full-width {
    margin-top: -20px;
    padding: 60px 20px 20px;
    height: auto;
  }
}

.promotion-full-width .content-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media all and (max-width: 768px) {
  .promotion-full-width .content-wrap {
    flex-direction: column;
    text-align: center;
  }
}

.promotion-full-width .content-wrap h6,
.promotion-full-width .content-wrap h2 {
  color: #ffffff;
}

.promotion-full-width .content-wrap h2 {
  font-size: 43px;
  margin-bottom: 3px;
  text-transform: none;
}

@media all and (max-width: 768px) {
  .promotion-full-width .content-wrap h2 {
    font-size: 30px;
    margin-bottom: 5px;
  }
}

.promotion-full-width .content-wrap h6 {
  font-size: 22px;
  line-height: 28px;
}

@media all and (max-width: 768px) {
  .promotion-full-width .content-wrap h6 {
    font-size: 18px;
    line-height: 16px;
  }
}

.promotion-full-width .content-wrap .text {
  margin-right: 40px;
}

@media all and (max-width: 768px) {
  .promotion-full-width .content-wrap .text {
    margin-right: 0;
  }
}

.promotion-full-width .button {
  background-color: #ffffff;
  color: #70ABBB;
}

.promotion-full-width .button:after {
  color: #70ABBB;
}

body.logged-in.node-type-vehicle-page .admin-tabs,
body.logged-in.node-type-vehicle-page .tabs {
  margin-top: 0;
}

.node-vehicle-page {
  overflow: hidden;
}

.node-vehicle-page h4 {
  font-size: 27px;
  line-height: 32px;
}

@media all and (max-width: 600px) {
  .node-vehicle-page h4 {
    font-size: 23px;
  }
}

.node-vehicle-page .quote-modal__close {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.node-vehicle-page .quote-modal__close:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  width: 100%;
  height: 100%;
  top: -8px;
  left: -7px;
  font-size: 33px;
  color: #70ABBB;
  transition: 0.25s;
}

.node-vehicle-page .quote-modal__close:hover:after {
  color: #222222;
}

.node-vehicle-page .request-content {
  position: fixed;
  padding: 70px 20px 20px;
  max-width: 400px;
  height: 100%;
  top: 0;
  right: 0;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  z-index: 501;
  overflow-y: scroll;
  transform: translateX(100%);
  transition: 0.25s;
}

body.quote-modal--open .node-vehicle-page .request-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.node-vehicle-page .request-content iframe {
  margin-top: 30px;
  width: 100%;
  height: 1350px;
  border: none;
  overflow: hidden;
}

.node-vehicle-page .request-quote {
  margin: 0 auto;
  max-width: 1012px;
}

.node-vehicle-page .request-quote h2 {
  margin: 0 auto 15px;
  line-height: 40px;
}

.node-vehicle-page .quote-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  z-index: 500;
  transition: 0.25s;
}

body.quote-modal--open .node-vehicle-page .quote-overlay {
  opacity: 1;
  visibility: visible;
}

.node-vehicle-page body.logged-in .admin-tabs {
  margin-top: 0;
}

@media all and (max-width: 600px) {
  .node-vehicle-page h2 {
    font-size: 26px;
    line-height: 28px;
  }
}

.personal .node-vehicle-page h2 {
  font-family: "omnes-pro", Arial, sans-serif;
  font-weight: 700;
  font-style: italic;
  color: #F6861F;
  text-transform: capitalize;
  font-size: 44px;
  line-height: 40px;
}

@media all and (max-width: 600px) {
  .personal .node-vehicle-page h2 {
    font-size: 33px;
    line-height: 28px;
  }
}

.node-vehicle-page section {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}

@media all and (max-width: 600px) {
  .node-vehicle-page section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.node-vehicle-page section:after {
  content: '';
  display: block;
  position: absolute;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1012px;
  height: 1px;
  right: 0;
  bottom: 0;
  left: 0;
  background: #DDDDDD;
}

.node-vehicle-page section:last-of-type {
  padding-bottom: 0;
}

.node-vehicle-page section:last-of-type:after {
  display: none;
}

.node-vehicle-page section#overview, .node-vehicle-page section.vehicle-media-gallery, .node-vehicle-page section.callouts {
  padding-top: 0;
}

.node-vehicle-page section.vehicle-resources-callouts {
  padding-top: 60px;
}

@media all and (max-width: 600px) {
  .node-vehicle-page section.vehicle-resources-callouts {
    padding-top: 40px;
  }
}

.node-vehicle-page section.vehicle-media-gallery {
  padding-bottom: 23px;
}

@media all and (max-width: 600px) {
  .node-vehicle-page section.vehicle-media-gallery {
    padding-bottom: 20px;
  }
}

.node-vehicle-page section.vehicle-media-gallery:after {
  display: block !important;
  width: calc(100% - 60px);
}

@media all and (max-width: 1024px) {
  .node-vehicle-page section.vehicle-media-gallery:after {
    width: calc(100% - 40px);
  }
}

@media all and (max-width: 600px) {
  .node-vehicle-page section.vehicle-media-gallery:after {
    width: calc(100% - 20px);
  }
}

.node-vehicle-page section#powertrains {
  padding-bottom: 0;
}

.node-vehicle-page section#powertrains:after {
  display: none;
}

.node-vehicle-page .view-callouts:before, .node-vehicle-page .view-callouts:after {
  content: " ";
  display: table;
}

.node-vehicle-page .view-callouts:after {
  clear: both;
}

.node-vehicle-page .view-callouts {
  *zoom: 1;
}

.node-vehicle-page .callouts {
  margin-top: 30px;
  padding-bottom: 30px;
}

.main-menu {
  position: relative;
}

header .vehicle-navigation {
  position: absolute;
  z-index: 1;
  margin-bottom: 0;
  width: calc(100% - 240px);
  height: 100%;
  top: 50%;
  left: 240px;
  background: #ffffff;
  border-top: none;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: 0.25s;
}

@media all and (max-width: 1024px) {
  header .vehicle-navigation {
    display: none;
  }
}

header .vehicle-navigation.vehicle-navigation--active {
  opacity: 1;
  visibility: visible;
  background-color: #0A2240;
}

header .vehicle-navigation.vehicle-navigation--active a {
  color: #FFFFFF;
}

header .vehicle-navigation ul {
  position: relative;
  margin: 0 auto;
  padding-right: 120px;
  top: 50%;
  font-size: 0;
  text-align: center;
  transform: translateY(-50%);
}

header .vehicle-navigation ul:before, header .vehicle-navigation ul:after {
  content: " ";
  display: table;
}

header .vehicle-navigation ul:after {
  clear: both;
}

header .vehicle-navigation ul {
  *zoom: 1;
}

header .vehicle-navigation li {
  display: inline-block;
  position: relative;
  padding: 0 40px;
  width: auto;
  border: none;
}

@media all and (max-width: 1080px) {
  header .vehicle-navigation li {
    padding: 0 30px;
  }
}

header .vehicle-navigation li:hover {
  background: none;
}

header .vehicle-navigation li:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 20px;
  top: 50%;
  right: 0;
  background: #c9c6c4;
  transform: translateY(-50%);
}

header .vehicle-navigation li:last-of-type:after {
  display: none;
}

header .vehicle-navigation li.active a:before {
  width: 100%;
}

header .vehicle-navigation a {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  display: block;
  position: relative;
  padding-top: 0;
  padding-bottom: 5px;
  width: auto;
  height: auto;
  color: #222222;
  font-size: 16px;
  text-transform: uppercase;
}

header .vehicle-navigation a:before {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background: #A29771;
  transition: width 0.25s;
}

header .vehicle-navigation a:hover:before {
  width: 100%;
}

header .vehicle-navigation .header-menu-chevron {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 30px;
  top: 10px;
  text-indent: 100%;
  overflow: hidden;
}

header .vehicle-navigation .header-menu-chevron:before {
  display: none;
}

header .vehicle-navigation .header-menu-chevron:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  color: #222222;
  font-size: 14px;
  text-indent: 0;
  transform: translateY(-50%) rotate(180deg);
  transform-origin: 50% 50%;
}

#main .vehicle-navigation {
  margin-bottom: 30px;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid #DDDDDD;
}

@media all and (max-width: 1024px) {
  #main .vehicle-navigation {
    margin: 0;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
  }
}

#main .vehicle-navigation ul {
  margin: 0 auto;
  max-width: 1280px;
  font-size: 0;
}

#main .vehicle-navigation li {
  display: inline-block;
  position: relative;
  width: 19.7%;
  height: 66px;
  text-align: center;
  cursor: pointer;
}

#main .vehicle-navigation a {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  display: block;
  position: relative;
  padding-top: 20px;
  width: 100%;
  height: 100%;
  top: 0%;
  color: inherit;
  font-size: 16px;
  text-transform: uppercase;
  background: #ffffff;
  transition: 0.25s;
}

#main .vehicle-navigation a:hover :before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background: #587A91;
  transition: width 0.25s;
}

#main .vehicle-navigation-mobile {
  display: block;
  position: fixed;
  width: 100%;
  top: 84px;
  opacity: 0;
  visibility: hidden;
  background: #EAF3F5;
  border: none;
  box-shadow: 0 2px 3px 0 rgba(34, 34, 34, 0.12);
  transform: translateY(-110%);
  transition: 0.25s;
}

@media all and (max-width: 1024px) {
  #main .vehicle-navigation-mobile {
    top: 80px;
    z-index: 50;
    height: auto;
    opacity: 1;
    visibility: visible;
  }
  body.sticky-vehicle-mobile-navigation #main .vehicle-navigation-mobile {
    transform: translateY(0);
  }
  body.sticky-vehicle-mobile-navigation #main .vehicle-navigation-mobile.hidden-transition {
    transform: translateY(-110%);
  }
  #main .vehicle-navigation-mobile ul {
    display: block;
  }
  #main .vehicle-navigation-mobile li {
    display: none;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #CFCBBD;
    border-top: solid 1px #DDDDDD;
    border-left: none;
  }
  #main .vehicle-navigation-mobile li:first-of-type {
    border-top: none !important;
  }
  #main .vehicle-navigation-mobile li.active {
    display: block;
    border-top: none;
  }
  body.sticky-vehicle-mobile-navigation--open #main .vehicle-navigation-mobile li.active {
    border-top: solid 1px #DDDDDD;
  }
  #main .vehicle-navigation-mobile li.active a {
    position: relative;
    color: #222222;
    background: #EAF3F5;
  }
  #main .vehicle-navigation-mobile li.active a span {
    position: relative;
  }
  #main .vehicle-navigation-mobile li.active a span:after {
    content: "";
    font-family: 'ezgo';
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    position: absolute;
    top: 46%;
    right: -18px;
    font-size: 10px;
    color: #222222;
    transform: translateY(-50%);
    transition: 0.25s;
  }
  .sticky-vehicle-mobile-navigation--open #main .vehicle-navigation-mobile li.active a span:after {
    content: none;
  }
  #main .vehicle-navigation-mobile li a {
    font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
    font-weight: 700;
    display: block;
    padding: 5px 0;
    font-size: 13px;
    color: #222222;
    background: #EAF3F5;
    text-transform: capitalize;
  }
  #main .vehicle-navigation-mobile li a:hover {
    color: #ffffff;
    background: #A29771;
  }
  #main .vehicle-navigation-mobile li a:hover span:after {
    color: #ffffff;
  }
  body.sticky-vehicle-mobile-navigation--open #main .vehicle-navigation-mobile li a {
    padding: 10px 0;
  }
}

@media all and (max-width: 768px) {
  #main .vehicle-navigation-mobile {
    top: 80px;
  }
}

#main #overview {
  padding-top: 30px;
  padding-bottom: 60px;
}

@media all and (max-width: 600px) {
  #main #overview {
    padding-top: 0;
    padding-bottom: 40px;
  }
}

.spinner {
  position: relative;
  margin: 0 auto 50px;
  padding-left: 30px;
  padding-right: 30px;
  max-width: 700px;
}

.spinner .tap-drag {
  font-family: henderson-sans-basic,sans-serif;
  font-weight: 700;
  font-style: normal;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 5px 12px;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.spinner .tap-drag.mobile {
  display: none;
}

@media all and (max-width: 1024px) {
  .spinner .tap-drag.mobile {
    display: block;
  }
}

@media all and (max-width: 1024px) {
  .spinner .tap-drag.desktop {
    display: none;
  }
}

.spinner .spinner-gallery {
  width: 100%;
  margin: 0 auto;
}

.spinner .spinner-gallery .active-image {
  width: 100%;
}

.spinner .spinner-gallery .active-image img {
  width: 100%;
}

.vehicle-media-gallery {
  overflow: hidden;
}

@media all and (max-width: 600px) {
  .vehicle-media-gallery {
    margin-bottom: 40px;
  }
}

.vehicle-media-gallery .media-gallery-main-carousel {
  margin-bottom: 30px;
}

.vehicle-media-gallery .media-gallery-main-carousel .image-with-caption {
  position: relative;
  height: 100%;
}

@media all and (max-width: 600px) {
  .vehicle-media-gallery .media-gallery-main-carousel .image-with-caption {
    margin: 40px auto;
  }
}

.vehicle-media-gallery .media-gallery-main-carousel .image-with-caption:after {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 1477px;
  height: 30%;
  bottom: 0;
  left: 50%;
  background: linear-gradient(360deg, #333437 0%, rgba(51, 52, 55, 0.5) 79%, rgba(51, 52, 55, 0) 100%);
  transform: translateX(-50%);
}

@media all and (max-width: 600px) {
  .vehicle-media-gallery .media-gallery-main-carousel .image-with-caption:after {
    content: none;
  }
}

.vehicle-media-gallery .media-gallery-main-carousel .image-with-caption img {
  margin: 0 auto;
}

.vehicle-media-gallery .media-gallery-main-carousel .image-with-caption .caption {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  display: block;
  position: absolute;
  z-index: 1;
  margin-bottom: 0;
  padding: 0 25px;
  width: 90%;
  max-width: 1477px !important;
  bottom: 35px;
  left: 50%;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  transform: translateX(-50%);
}

@media all and (max-width: 600px) {
  .vehicle-media-gallery .media-gallery-main-carousel .image-with-caption .caption {
    position: relative;
    padding: 10px 10px;
    bottom: 0;
    background: #333437;
  }
}

.vehicle-media-gallery .media-gallery-main-carousel .image-with-caption .caption:before {
  display: inline-block;
  position: absolute;
  vertical-align: middle;
  margin-right: 10px;
  width: 15px;
  height: 100%;
  top: 50%;
  left: 0;
  background: #70ABBB;
  transform: translate(0, -50%);
}

@media all and (max-width: 600px) {
  .vehicle-media-gallery .media-gallery-main-carousel .image-with-caption .caption:before {
    content: none;
  }
}

.vehicle-media-gallery .media-gallery-main-carousel .owl-stage-outer {
  min-height: 100px;
}

.vehicle-media-gallery .media-gallery-main-carousel .owl-stage {
  min-height: 100px;
}

.vehicle-media-gallery .media-gallery-main-carousel .slide,
.vehicle-media-gallery .media-gallery-main-carousel .item-video {
  position: relative;
}

.vehicle-media-gallery .media-gallery-main-carousel .slide {
  min-height: 1px;
}

.vehicle-media-gallery .media-gallery-main-carousel img {
  position: relative;
  margin: 0 auto;
  width: auto;
  max-width: 100%;
  height: auto;
  min-height: 1px;
  top: 0;
  left: 0;
}

.vehicle-media-gallery .media-gallery-main-carousel .video-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 1600px;
}

.vehicle-media-gallery .media-gallery-main-carousel .item-video {
  position: relative;
  padding-bottom: 37.5%;
  width: 100%;
  height: 0;
}

.vehicle-media-gallery .media-gallery-main-carousel .owl-video-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.vehicle-media-gallery .media-gallery-main-carousel .owl-video-wrapper .owl-video-play-icon {
  display: block;
  position: absolute;
  margin: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: visible;
  transform: none !important;
  transition: 0.25s;
}

.vehicle-media-gallery .media-gallery-main-carousel .owl-video-wrapper .owl-video-play-icon:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #ffffff;
  font-size: 60px;
  text-shadow: 0 1px 0 rgba(34, 34, 34, 0.15);
  transform: translate(-50%, -50%);
}

.vehicle-media-gallery .media-gallery-main-carousel .owl-video-wrapper .owl-video-play-icon:hover:after {
  text-shadow: 0 0 0 rgba(34, 34, 34, 0);
}

.vehicle-media-gallery .media-gallery-main-carousel .owl-video-frame + .owl-video-play-icon {
  opacity: 0;
  visibility: hidden;
}

.vehicle-media-gallery .media-gallery-main-carousel .owl-video-tn {
  background-size: cover;
}

.vehicle-media-gallery .media-gallery-main-carousel iframe {
  position: absolute;
  width: 66.66667%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media all and (max-width: 600px) {
  .vehicle-media-gallery .media-gallery-main-carousel .image-with-caption {
    margin: 0 auto;
  }
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

@media all and (max-width: 1024px) {
  .vehicle-media-gallery .media-gallery-thumbnail-carousel {
    width: 80%;
    margin: 0 auto;
  }
}

@media all and (max-width: 600px) {
  .vehicle-media-gallery .media-gallery-thumbnail-carousel {
    width: 70%;
    margin: 0 auto;
  }
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .slide {
  position: relative;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(34, 34, 34, 0), 0 0 0 rgba(34, 34, 34, 0);
  transition: 0.25s;
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .slide .thumbnail-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.6;
  transition: 0.25s;
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .slide:after {
  content: '';
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #222222;
  opacity: 0.4;
  transition: 0.25s;
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .slide:hover {
  box-shadow: 0 7px 14px rgba(34, 34, 34, 0.1), 0 5px 5px rgba(34, 34, 34, 0.1);
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .slide:hover .thumbnail-image {
  opacity: 0.75;
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .slide:hover:after {
  opacity: 0.15;
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .slide.video:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #ffffff;
  font-size: 45px;
  text-shadow: 0 1px 0 rgba(34, 34, 34, 0.15);
  transform: translate(-50%, -50%);
  z-index: 50;
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-stage-outer {
  padding-bottom: 17px;
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-stage {
  margin: 0 auto;
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-item.synced .slide {
  border: 3px solid #587A91;
  box-shadow: 0 7px 14px rgba(34, 34, 34, 0.1), 0 5px 5px rgba(34, 34, 34, 0.1);
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-item.synced .slide .thumbnail-image {
  opacity: 1;
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-item.synced .slide:after {
  opacity: 0;
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-item .slide {
  height: 90px;
}

@media all and (max-width: 1024px) {
  .vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-item .slide {
    height: 70px;
  }
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-next,
.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-prev {
  position: absolute;
  top: 40%;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 1px solid #DDDDDD;
  border-radius: 50%;
  transform: translateY(-75%);
  transition: 0.25s;
}

@media all and (max-width: 350px) {
  .vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-next,
  .vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-prev {
    width: 35px;
    height: 35px;
  }
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-next:after,
.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-prev:after {
  content: none;
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-next:before,
.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-prev:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 17px;
  color: #A29771;
  transform: translate(-50%, -50%);
  transition: 0.25s;
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-next:hover,
.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-prev:hover {
  background: #A29771;
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-next:hover:before,
.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-prev:hover:before {
  color: #ffffff;
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-next.disabled,
.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-prev.disabled {
  cursor: default;
  background-color: #ffffff;
  border-radius: 50%;
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-next.disabled:before,
.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-prev.disabled:before {
  color: #DDDDDD;
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-next.disabled:hover,
.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-prev.disabled:hover {
  background-color: #ecebe9;
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-next {
  right: -50px;
}

@media all and (max-width: 350px) {
  .vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-next {
    right: -43px;
  }
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-next:before {
  left: 52%;
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-prev {
  left: -50px;
}

@media all and (max-width: 350px) {
  .vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-prev {
    left: -43px;
  }
}

.vehicle-media-gallery .media-gallery-thumbnail-carousel .owl-prev:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  left: 48%;
}

#features .features-content-blocks {
  margin-top: 25px;
}

#features .features-content-blocks:before, #features .features-content-blocks:after {
  content: " ";
  display: table;
}

#features .features-content-blocks:after {
  clear: both;
}

#features .features-content-blocks {
  *zoom: 1;
}

@media all and (max-width: 600px) {
  #features .features-content-blocks {
    margin-top: 20px;
  }
}

#features .features-block {
  margin-right: 30px;
  width: calc(((100% - 30px * 1) / 2) - 0.01px);
  float: left;
  position: relative;
  margin-bottom: 30px;
  background: #ffffff;
}

@media all and (max-width: 1024px) {
  #features .features-block {
    margin-right: 20px;
    width: calc(((100% - 20px * 1) / 2) - 0.01px);
  }
}

@media all and (max-width: 600px) {
  #features .features-block {
    margin-right: 10px;
    width: calc(((100% - 10px * 1) / 2) - 0.01px);
  }
}

#features .features-block:last-of-type {
  margin-right: 0;
}

#features .features-block:nth-of-type(2n) {
  margin-right: 0;
}

#features .features-block:nth-of-type(2n + 1) {
  clear: left;
}

@media all and (max-width: 600px) {
  #features .features-block {
    margin-right: 30px;
    width: calc(((100% - 30px * 0) / 1) - 0.01px);
    float: left;
    padding-left: 0;
    height: auto;
    border-left: solid 10px #587A91;
    background-color: transparent;
  }
  #features .features-block:nth-of-type(2n) {
    margin-right: 30px;
  }
}

@media all and (max-width: 600px) and (max-width: 1024px) {
  #features .features-block:nth-of-type(2n) {
    margin-right: 20px;
  }
}

@media all and (max-width: 600px) and (max-width: 600px) {
  #features .features-block:nth-of-type(2n) {
    margin-right: 10px;
  }
}

@media all and (max-width: 600px) {
  #features .features-block:nth-of-type(2n + 1) {
    clear: none;
  }
}

@media all and (max-width: 600px) and (max-width: 1024px) {
  #features .features-block:nth-of-type(2n + 1) {
    clear: none;
  }
}

@media all and (max-width: 600px) and (max-width: 600px) {
  #features .features-block:nth-of-type(2n + 1) {
    clear: none;
  }
}

@media all and (max-width: 600px) and (max-width: 1024px) {
  #features .features-block {
    margin-right: 20px;
    width: calc(((100% - 20px * 0) / 1) - 0.01px);
  }
}

@media all and (max-width: 600px) and (max-width: 600px) {
  #features .features-block {
    margin-right: 10px;
    width: calc(((100% - 10px * 0) / 1) - 0.01px);
  }
}

@media all and (max-width: 600px) {
  #features .features-block:last-of-type {
    margin-right: 0;
  }
}

#features .features-block:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 80%;
  bottom: 0;
  left: 0;
}

@media all and (max-width: 600px) {
  #features .features-block:after {
    content: none;
  }
}

#features .features-block:nth-last-of-type(2), #features .features-block:last-of-type {
  margin-bottom: 0;
}

@media all and (max-width: 600px) {
  #features .features-block:nth-last-of-type(2), #features .features-block:last-of-type {
    margin-bottom: 30px;
  }
}

#features .features-block:last-of-type {
  margin-bottom: 0;
}

@media all and (max-width: 600px) {
  #features .features-block:last-of-type {
    margin-bottom: 0;
  }
}

#features .features-block-content {
  box-shadow: inset 0 0 30px 40px rgba(0, 0, 0, 0.5);
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 230px;
  bottom: 0;
  left: 0;
  background-size: cover;
}

@media all and (max-width: 600px) {
  #features .features-block-content {
    position: relative;
    padding: 0;
    height: auto;
    bottom: auto;
    left: auto;
    background-image: none !important;
    box-shadow: none;
  }
  #features .features-block-content .features-block-gradient {
    display: none;
  }
}

#features .features-block-content:after {
  content: '';
  display: block;
  position: absolute;
  width: 10px;
  height: 100%;
  bottom: 0;
  left: 0;
  background: rgba(88, 122, 145, 0.7);
}

@media all and (max-width: 600px) {
  #features .features-block-content:after {
    display: none;
  }
}

#features .features-block-gradient {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 66%;
  background: linear-gradient(-180deg, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.7) 79%);
}

#features .features-block-headline {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  display: inline-block;
  position: absolute;
  margin-right: 15px;
  margin-bottom: 10px;
  margin-left: 25px;
  bottom: 0;
  font-size: 20px;
  line-height: 23px;
  color: #ffffff;
  text-transform: uppercase;
}

@media all and (max-width: 600px) {
  #features .features-block-headline {
    position: relative;
    margin-top: 5px;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 10px;
    font-size: 18px;
    color: #222222;
    line-height: 21px;
  }
}

#features .features-block-description {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  margin-top: 9px;
  margin-right: 15px;
  padding-left: 25px;
  font-size: 14px;
  color: #222222;
  line-height: 22px;
}

@media all and (max-width: 600px) {
  #features .features-block-description {
    margin-top: 0;
    margin-right: 0;
    padding-left: 10px;
    font-size: 14px;
    color: #222222;
    line-height: 22px;
  }
}

#models > h2 {
  margin-bottom: 45px;
}

@media all and (max-width: 600px) {
  #models > h2 {
    margin-bottom: 25px;
  }
}

#models .views-row:first-child .powertrains-vehicle-row {
  margin-top: 30px;
}

#models .powertrains-vehicle-row {
  margin: 0;
  margin-top: 60px;
}

#models .powertrains-vehicle-row:before, #models .powertrains-vehicle-row:after {
  content: " ";
  display: table;
}

#models .powertrains-vehicle-row:after {
  clear: both;
}

#models .powertrains-vehicle-row {
  *zoom: 1;
}

#models .powertrain-column {
  margin-right: 30px;
  width: calc(((100% - 30px * 1) / 2) - 0.01px);
  float: left;
  position: relative;
}

@media all and (max-width: 1024px) {
  #models .powertrain-column {
    margin-right: 20px;
    width: calc(((100% - 20px * 1) / 2) - 0.01px);
  }
}

@media all and (max-width: 600px) {
  #models .powertrain-column {
    margin-right: 10px;
    width: calc(((100% - 10px * 1) / 2) - 0.01px);
  }
}

#models .powertrain-column:last-of-type {
  margin-right: 0;
}

#models .powertrain-column:nth-of-type(2n) {
  margin-right: 0;
}

#models .powertrain-column:nth-of-type(2n + 1) {
  clear: left;
}

@media all and (max-width: 600px) {
  #models .powertrain-column {
    margin-right: 30px;
    width: calc(((100% - 30px * 0) / 1) - 0.01px);
    float: left;
    float: none;
  }
}

@media all and (max-width: 600px) and (max-width: 1024px) {
  #models .powertrain-column {
    margin-right: 20px;
    width: calc(((100% - 20px * 0) / 1) - 0.01px);
  }
}

@media all and (max-width: 600px) and (max-width: 600px) {
  #models .powertrain-column {
    margin-right: 10px;
    width: calc(((100% - 10px * 0) / 1) - 0.01px);
  }
}

@media all and (max-width: 600px) {
  #models .powertrain-column:last-of-type {
    margin-right: 0;
  }
  #models .powertrain-column:nth-of-type(2n) {
    margin-right: 30px;
  }
}

@media all and (max-width: 600px) and (max-width: 1024px) {
  #models .powertrain-column:nth-of-type(2n) {
    margin-right: 20px;
  }
}

@media all and (max-width: 600px) and (max-width: 600px) {
  #models .powertrain-column:nth-of-type(2n) {
    margin-right: 10px;
  }
}

@media all and (max-width: 600px) {
  #models .powertrain-column:nth-of-type(2n + 1) {
    clear: none;
  }
}

@media all and (max-width: 600px) and (max-width: 1024px) {
  #models .powertrain-column:nth-of-type(2n + 1) {
    clear: none;
  }
}

@media all and (max-width: 600px) and (max-width: 600px) {
  #models .powertrain-column:nth-of-type(2n + 1) {
    clear: none;
  }
}

@media all and (max-width: 600px) {
  #models .powertrain-column:nth-of-type(1n) {
    margin-right: 0;
  }
  #models .powertrain-column:nth-of-type(1n + 1) {
    clear: left;
  }
}

#models .powertrains-vehicle-image > img {
  width: 100%;
}

@media all and (max-width: 768px) {
  #models .powertrains-vehicle-image {
    display: none;
  }
}

#models .powertrains-vehicle-image--mobile {
  display: none;
}

@media all and (max-width: 768px) {
  #models .powertrains-vehicle-image--mobile {
    display: block;
    width: 100%;
  }
}

@media all and (max-width: 768px) {
  #models .powertrains-vehicle-info > p {
    margin-bottom: 13px;
  }
}

#models .powertrains-vehicle-info li {
  padding-left: 30px;
}

#models .powertrains-vehicle-info li:before {
  left: 7px;
}

#models .powertrains-vehicle-info span {
  font-size: 26px;
}

#models .powertrains-vehicle-info .button span {
  font-size: 17px;
}

#models .powertrains-vehicle-description {
  margin-bottom: 25px;
}

#models .powertrains-vehicle-description li {
  margin-bottom: 0;
}

#models .vehicle-colors {
  margin-top: 10px;
  margin-bottom: 5px;
}

#models .vehicle-colors span,
#models .vehicle-colors p {
  font-size: 14px;
}

#models .vehicle-colors span {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
}

#models .vehicle-colors li {
  display: inline-block;
  width: 35px;
  height: 35px;
  margin-right: 10px;
  margin-bottom: 10px;
  padding-left: 0;
  overflow: hidden;
}

#models .vehicle-colors li a {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #222222;
  border-radius: 100%;
  text-indent: 110%;
}

#models .vehicle-colors li a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 4px solid rgba(255, 255, 255, 0);
  border-radius: 100%;
  transition: 0.25s;
}

#models .vehicle-colors li a.vehicle-color-selected {
  border: 2px solid #222222;
}

#models .vehicle-colors li a.vehicle-color-selected:after {
  border: 4px solid white;
}

#models .vehicle-colors .color-category {
  margin-top: 5px;
}

#resources {
  padding-top: 60px;
}

#resources > h2 {
  margin-top: 0;
  margin-bottom: 15px;
}

#resources h4 {
  margin-top: 0;
}

@media all and (max-width: 600px) {
  #resources h4 {
    margin-bottom: 0;
  }
}

#resources ul li {
  display: inline-block;
  position: relative;
  margin-right: 20px;
  margin-bottom: 10px;
  padding: 0;
  padding-right: 20px;
}

@media all and (max-width: 600px) {
  #resources ul li {
    display: block;
  }
}

#resources ul li:before {
  content: none;
}

#resources ul li:after {
  content: '';
  position: absolute;
  height: 100%;
  width: 1px;
  top: 0;
  right: 0;
  background: #DDDDDD;
}

@media all and (max-width: 600px) {
  #resources ul li:after {
    content: none;
  }
}

#resources ul li:first-child {
  padding-left: 0;
}

#resources ul li:last-child:after {
  content: none;
}

#resources ul li a {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

@media all and (max-width: 600px) {
  #resources ul li a {
    font-size: 16px;
  }
}

#specs .specs-container {
  border: 1px solid #DDDDDD;
}

#specs .specs-container .panel {
  border-bottom: 1px solid #DDDDDD;
}

#specs .specs-container .panel:last-of-type {
  border-bottom: none;
}

#specs .specs-container .panel-trigger {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 500;
  padding: 20px 30px;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  background: #ffffff;
  transition: 0.25s;
}

#specs .specs-container .panel-trigger:hover {
  background: #f5f5f4;
}

#specs .specs-container .panel-title {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
}

#specs .specs-container .panel-open .panel-title {
  color: #0A2240;
}

#specs .specs-container .panel-content {
  position: relative;
  padding: 0 30px;
}

#specs .specs-container .panel-content table {
  margin-top: 20px;
  margin-bottom: 20px;
}

#specs .specs-container .panel-content .table-wrapper {
  margin-bottom: 20px;
}

#specs .specs-container .panel-content .table-wrapper table {
  margin-bottom: 0;
}

#accessories {
  position: relative;
  padding: 60px 0;
  background: #f5f5f4;
  overflow: hidden;
}

@media all and (max-width: 600px) {
  #accessories {
    padding: 30px 0;
  }
}

#accessories .accessories-top-stripe,
#accessories .accessories-bottom-stripe {
  position: absolute;
  width: 200px;
  height: 15px;
  background: #ffffff;
  transform: skewX(45deg);
}

@media all and (max-width: 600px) {
  #accessories .accessories-top-stripe,
  #accessories .accessories-bottom-stripe {
    width: 100px;
  }
}

#accessories .accessories-top-stripe:before,
#accessories .accessories-bottom-stripe:before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 192px;
  height: 15px;
  background-image: url(../img/pattern-stripe.png);
  background-size: 26px;
  transform: skewX(-45deg);
}

@media all and (max-width: 600px) {
  #accessories .accessories-top-stripe:before,
  #accessories .accessories-bottom-stripe:before {
    width: 95px;
  }
}

#accessories .accessories-top-stripe {
  top: 0;
  left: 0;
}

#accessories .accessories-top-stripe:before {
  top: 0;
  left: 0;
  background-position: 10px 0;
  border-bottom: solid 5px #ffffff;
}

@media all and (max-width: 600px) {
  #accessories .accessories-top-stripe:before {
    background-position: 15px 0;
  }
}

#accessories .accessories-bottom-stripe {
  right: 0;
  bottom: 0;
}

#accessories .accessories-bottom-stripe:before {
  right: 0;
  bottom: 0;
  background-position: 0px 0;
  border-top: solid 5px #ffffff;
}

@media all and (max-width: 600px) {
  #accessories .accessories-bottom-stripe:before {
    background-position: 6px 0;
  }
}

#accessories .related-accessories {
  font-size: 0;
  text-align: center;
}

#accessories .related-accessories:before, #accessories .related-accessories:after {
  content: " ";
  display: table;
}

#accessories .related-accessories:after {
  clear: both;
}

#accessories .related-accessories {
  *zoom: 1;
}

#accessories .related-accessories .related-accessory {
  margin-right: 30px;
  width: calc(((100% - 30px * 3) / 4) - 0.01px);
  float: left;
  display: inline-block;
  float: none;
  margin-bottom: 30px;
  color: #5b524d;
  font-size: 17px;
  line-height: 18px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: top;
}

@media all and (max-width: 1024px) {
  #accessories .related-accessories .related-accessory {
    margin-right: 20px;
    width: calc(((100% - 20px * 3) / 4) - 0.01px);
  }
}

@media all and (max-width: 600px) {
  #accessories .related-accessories .related-accessory {
    margin-right: 10px;
    width: calc(((100% - 10px * 3) / 4) - 0.01px);
  }
}

#accessories .related-accessories .related-accessory:last-of-type {
  margin-right: 0;
}

#accessories .related-accessories .related-accessory:nth-of-type(4n) {
  margin-right: 0;
}

#accessories .related-accessories .related-accessory:nth-of-type(4n + 1) {
  clear: left;
}

@media all and (max-width: 600px) {
  #accessories .related-accessories .related-accessory {
    margin-right: 30px;
    width: calc(((100% - 30px * 1) / 2) - 0.01px);
    float: left;
    display: inline-block;
    float: none;
  }
  #accessories .related-accessories .related-accessory:nth-of-type(4n) {
    margin-right: 30px;
  }
}

@media all and (max-width: 600px) and (max-width: 1024px) {
  #accessories .related-accessories .related-accessory:nth-of-type(4n) {
    margin-right: 20px;
  }
}

@media all and (max-width: 600px) and (max-width: 600px) {
  #accessories .related-accessories .related-accessory:nth-of-type(4n) {
    margin-right: 10px;
  }
}

@media all and (max-width: 600px) {
  #accessories .related-accessories .related-accessory:nth-of-type(4n + 1) {
    clear: none;
  }
}

@media all and (max-width: 600px) and (max-width: 1024px) {
  #accessories .related-accessories .related-accessory:nth-of-type(4n + 1) {
    clear: none;
  }
}

@media all and (max-width: 600px) and (max-width: 600px) {
  #accessories .related-accessories .related-accessory:nth-of-type(4n + 1) {
    clear: none;
  }
}

@media all and (max-width: 600px) {
  #accessories .related-accessories .related-accessory:nth-of-type(2n) {
    margin-right: 0;
  }
  #accessories .related-accessories .related-accessory:nth-of-type(2n + 1) {
    clear: left;
  }
}

@media all and (max-width: 600px) and (max-width: 1024px) {
  #accessories .related-accessories .related-accessory {
    margin-right: 20px;
    width: calc(((100% - 20px * 1) / 2) - 0.01px);
  }
}

@media all and (max-width: 600px) and (max-width: 600px) {
  #accessories .related-accessories .related-accessory {
    margin-right: 10px;
    width: calc(((100% - 10px * 1) / 2) - 0.01px);
  }
}

@media all and (max-width: 600px) {
  #accessories .related-accessories .related-accessory:last-of-type {
    margin-right: 0;
  }
}

#accessories .related-accessories .related-accessory:hover .related-accessory-image {
  box-shadow: 0 7px 14px rgba(34, 34, 34, 0.1), 0 5px 5px rgba(34, 34, 34, 0.1);
}

#accessories .related-accessories .related-accessory-image {
  margin-bottom: 3px;
  width: 100%;
  height: auto;
  box-shadow: 0 0 0 rgba(34, 34, 34, 0), 0 0 0 rgba(34, 34, 34, 0);
  transition: 0.25s;
}

#accessories .button {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.powertrains-vehicle-info span.price {
  color: #0A2240;
  font-family: henderson-sans-basic,sans-serif;
  font-weight: 700;
  font-style: normal;
}

body.page-vehicles #main {
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-bottom: 60px;
  margin-left: auto;
  max-width: 1280px;
}

body.page-vehicles #main:before, body.page-vehicles #main:after {
  content: " ";
  display: table;
}

body.page-vehicles #main:after {
  clear: both;
}

body.page-vehicles #main {
  *zoom: 1;
}

body.page-vehicles #main:before, body.page-vehicles #main:after {
  content: " ";
  display: table;
}

body.page-vehicles #main:after {
  clear: both;
}

body.page-vehicles #main {
  *zoom: 1;
}

@media all and (max-width: 1024px) {
  body.page-vehicles #main {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media all and (max-width: 600px) {
  body.page-vehicles #main {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media all and (max-width: 600px) {
  body.page-vehicles #main {
    margin-bottom: 40px;
  }
}

body.page-vehicles #sidebar-left {
  margin-right: 30px;
  width: calc(((100% - 30px * 3) / 4) - 0.01px);
  float: left;
  position: relative;
  padding-right: 30px;
}

@media all and (max-width: 1024px) {
  body.page-vehicles #sidebar-left {
    margin-right: 20px;
    width: calc(((100% - 20px * 3) / 4) - 0.01px);
  }
}

@media all and (max-width: 600px) {
  body.page-vehicles #sidebar-left {
    margin-right: 10px;
    width: calc(((100% - 10px * 3) / 4) - 0.01px);
  }
}

body.page-vehicles #sidebar-left:last-of-type {
  margin-right: 0;
}

@media all and (max-width: 1024px) {
  body.page-vehicles #sidebar-left {
    padding-right: 20px;
  }
}

@media all and (max-width: 768px) {
  body.page-vehicles #sidebar-left {
    margin-right: 30px;
    width: calc(((100% - 30px * 0) / 1) - 0.01px);
    float: left;
    padding-right: 0;
  }
}

@media all and (max-width: 768px) and (max-width: 1024px) {
  body.page-vehicles #sidebar-left {
    margin-right: 20px;
    width: calc(((100% - 20px * 0) / 1) - 0.01px);
  }
}

@media all and (max-width: 768px) and (max-width: 600px) {
  body.page-vehicles #sidebar-left {
    margin-right: 10px;
    width: calc(((100% - 10px * 0) / 1) - 0.01px);
  }
}

@media all and (max-width: 768px) {
  body.page-vehicles #sidebar-left:last-of-type {
    margin-right: 0;
  }
}

body.page-vehicles #sidebar-left:before {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
  background: #DDDDDD;
}

@media all and (max-width: 768px) {
  body.page-vehicles #sidebar-left:before {
    width: 100%;
    height: 1px;
    right: auto;
    left: 0;
  }
}

body.page-vehicles #sidebar-left:after {
  content: '';
  display: none;
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #DDDDDD;
}

@media all and (max-width: 768px) {
  body.page-vehicles #sidebar-left:after {
    display: block;
  }
}

body.page-vehicles #sidebar-left h2 {
  color: #94877f;
  font-size: 18px;
  line-height: 17px;
}

body.page-vehicles #sidebar-left #vehicle-filter-reset {
  display: block;
  width: 100%;
  text-align: center;
}

body.page-vehicles #sidebar-left #vehicle-filter-reset:after {
  display: none;
}

@media all and (max-width: 768px) {
  body.page-vehicles #sidebar-left #vehicle-filter-reset {
    margin-bottom: 30px;
  }
}

body.page-vehicles #sidebar-left .region-sidebar-first {
  transition: max-height 0.5s;
}

@media all and (max-width: 768px) {
  body.page-vehicles #sidebar-left .region-sidebar-first {
    padding: 0 10px;
    max-height: 0;
    overflow: hidden;
  }
  html.no-js body.page-vehicles #sidebar-left .region-sidebar-first {
    max-height: none !important;
  }
}

body.page-vehicles #sidebar-left .block-facetapi {
  margin-bottom: 30px;
}

body.page-vehicles #sidebar-left .item-list {
  display: block;
  padding: 0;
}

body.page-vehicles #sidebar-left .item-list ul {
  margin: 0;
}

body.page-vehicles #sidebar-left .item-list ul li {
  display: block;
  position: relative;
  margin: 0;
  margin-bottom: 10px;
  list-style: none;
}

body.page-vehicles #sidebar-left .item-list ul li:before, body.page-vehicles #sidebar-left .item-list ul li:after {
  content: " ";
  display: table;
}

body.page-vehicles #sidebar-left .item-list ul li:after {
  clear: both;
}

body.page-vehicles #sidebar-left .item-list ul li {
  *zoom: 1;
}

body.page-vehicles #sidebar-left .item-list ul li:last-of-type {
  margin-bottom: 0;
}

body.page-vehicles #sidebar-left .item-list ul li:hover .checker span {
  border: 1px solid #ed6a5a;
  box-shadow: 2px 2px 6px 0 rgba(34, 34, 34, 0) inset, 0 0 8px 0 rgba(142, 31, 11, 0.25) !important;
}

body.page-vehicles #sidebar-left .item-list ul li.active .checker span {
  box-shadow: 2px 2px 6px 0 rgba(34, 34, 34, 0) inset, 0 0 8px 0 rgba(142, 31, 11, 0);
}

body.page-vehicles #sidebar-left .item-list ul li .checker {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  cursor: pointer;
  transform: translateY(-50%);
}

body.page-vehicles #sidebar-left .item-list ul li .checker span {
  display: block;
  position: relative;
  width: 12px;
  height: 12px;
  top: 2px;
  background: #ffffff;
  border: 1px solid #c9c6c4;
  box-shadow: 2px 2px 6px 0 rgba(34, 34, 34, 0.18) inset, 0 0 0 0 rgba(142, 31, 11, 0);
  transition: 0.25s;
}

body.page-vehicles #sidebar-left .item-list ul li .checker span.checked:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: -10px;
  left: -2px;
  color: #ed6a5a;
  font-size: 22px;
}

body.page-vehicles #sidebar-left .item-list ul li .checker input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

body.page-vehicles #sidebar-left .item-list ul li a,
body.page-vehicles #sidebar-left .item-list ul li span.text {
  display: block;
  padding-left: 24px;
  color: #231f20;
  font-size: 16px;
  line-height: 18px;
  cursor: pointer;
}

body.page-vehicles #center {
  margin-right: 30px;
  width: calc(((100% - 30px * 0.3333) / 1.3333) - 0.01px);
  float: left;
  position: relative;
}

@media all and (max-width: 1024px) {
  body.page-vehicles #center {
    margin-right: 20px;
    width: calc(((100% - 20px * 0.3333) / 1.3333) - 0.01px);
  }
}

@media all and (max-width: 600px) {
  body.page-vehicles #center {
    margin-right: 10px;
    width: calc(((100% - 10px * 0.3333) / 1.3333) - 0.01px);
  }
}

body.page-vehicles #center:last-of-type {
  margin-right: 0;
}

@media all and (max-width: 768px) {
  body.page-vehicles #center {
    margin-right: 30px;
    width: calc(((100% - 30px * 0) / 1) - 0.01px);
    float: left;
    margin-top: 30px;
  }
}

@media all and (max-width: 768px) and (max-width: 1024px) {
  body.page-vehicles #center {
    margin-right: 20px;
    width: calc(((100% - 20px * 0) / 1) - 0.01px);
  }
}

@media all and (max-width: 768px) and (max-width: 600px) {
  body.page-vehicles #center {
    margin-right: 10px;
    width: calc(((100% - 10px * 0) / 1) - 0.01px);
  }
}

@media all and (max-width: 768px) {
  body.page-vehicles #center:last-of-type {
    margin-right: 0;
  }
}

body.page-vehicles #center:before {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: -31px;
  background: #DDDDDD;
}

@media all and (max-width: 1024px) {
  body.page-vehicles #center:before {
    left: -21px;
  }
}

@media all and (max-width: 768px) {
  body.page-vehicles #center:before {
    display: none;
  }
}

.vehicle-search-title,
.vehicle-filter-title {
  color: #231f20;
  text-transform: uppercase;
}

.vehicle-search-title {
  margin-bottom: 20px;
  font-size: 36px;
  line-height: 36px;
}

@media all and (max-width: 768px) {
  .vehicle-search-title {
    font-size: 26px;
    line-height: 26px;
  }
}

.vehicle-filter-title {
  position: relative;
  margin-bottom: 33px;
  font-size: 15px;
  line-height: 17px;
}

@media all and (max-width: 768px) {
  .vehicle-filter-title {
    margin-bottom: 0;
    padding: 20px 10px;
    font-size: 17px;
    line-height: 17px;
    cursor: pointer;
    transition: 0.25s;
  }
  .vehicle-filter-title:hover {
    color: #FFC40C;
  }
  .vehicle-filter-title:before, .vehicle-filter-title:after {
    content: '';
    display: block;
    position: absolute;
    background: #FFC40C;
    top: 50%;
    transform: translateY(-50%) rotateZ(0deg);
    transition: 0.25s;
  }
  .vehicle-filter-title:before {
    width: 12px;
    height: 2px;
    right: 14px;
  }
  .vehicle-filter-title:after {
    width: 2px;
    height: 12px;
    right: 19px;
  }
  .vehicle-filter-title.filter-active:before {
    transform: translateY(-50%) rotateZ(180deg);
  }
  .vehicle-filter-title.filter-active:after {
    transform: translateY(-50%) rotateZ(90deg);
  }
}

.view-vehicle-search .view-content:before, .view-vehicle-search .view-content:after {
  content: " ";
  display: table;
}

.view-vehicle-search .view-content:after {
  clear: both;
}

.view-vehicle-search .view-content {
  *zoom: 1;
}

.view-vehicle-search .item-list {
  padding-top: 0;
}

@media all and (max-width: 1024px) {
  .view-vehicle-search .item-list {
    padding-top: 10px;
  }
}

@media all and (max-width: 600px) {
  .view-vehicle-search .item-list {
    padding-top: 30px;
  }
}

.view-vehicle-search .vehicle-search-row {
  display: block;
  width: 100%;
  float: left;
}

.view-vehicle-search .vehicle-search-row:before, .view-vehicle-search .vehicle-search-row:after {
  content: " ";
  display: table;
}

.view-vehicle-search .vehicle-search-row:after {
  clear: both;
}

.view-vehicle-search .vehicle-search-row {
  *zoom: 1;
}

.view-vehicle-search .views-row {
  margin-right: 30px;
  width: calc(((100% - 30px * 2) / 3) - 0.01px);
  float: left;
  margin-bottom: 30px;
}

@media all and (max-width: 1024px) {
  .view-vehicle-search .views-row {
    margin-right: 20px;
    width: calc(((100% - 20px * 2) / 3) - 0.01px);
  }
}

@media all and (max-width: 600px) {
  .view-vehicle-search .views-row {
    margin-right: 10px;
    width: calc(((100% - 10px * 2) / 3) - 0.01px);
  }
}

.view-vehicle-search .views-row:last-of-type {
  margin-right: 0;
}

.view-vehicle-search .views-row:nth-of-type(3n) {
  margin-right: 0;
}

.view-vehicle-search .views-row:nth-of-type(3n + 1) {
  clear: left;
}

@media all and (max-width: 1024px) {
  .view-vehicle-search .views-row {
    margin-right: 30px;
    width: calc(((100% - 30px * 1) / 2) - 0.01px);
    float: left;
    margin-bottom: 20px;
  }
}

@media all and (max-width: 1024px) and (max-width: 1024px) {
  .view-vehicle-search .views-row {
    margin-right: 20px;
    width: calc(((100% - 20px * 1) / 2) - 0.01px);
  }
}

@media all and (max-width: 1024px) and (max-width: 600px) {
  .view-vehicle-search .views-row {
    margin-right: 10px;
    width: calc(((100% - 10px * 1) / 2) - 0.01px);
  }
}

@media all and (max-width: 1024px) {
  .view-vehicle-search .views-row:last-of-type {
    margin-right: 0;
  }
  .view-vehicle-search .views-row:nth-of-type(3n) {
    margin-right: 30px;
  }
}

@media all and (max-width: 1024px) and (max-width: 1024px) {
  .view-vehicle-search .views-row:nth-of-type(3n) {
    margin-right: 20px;
  }
}

@media all and (max-width: 1024px) and (max-width: 600px) {
  .view-vehicle-search .views-row:nth-of-type(3n) {
    margin-right: 10px;
  }
}

@media all and (max-width: 1024px) {
  .view-vehicle-search .views-row:nth-of-type(3n + 1) {
    clear: none;
  }
}

@media all and (max-width: 1024px) and (max-width: 1024px) {
  .view-vehicle-search .views-row:nth-of-type(3n + 1) {
    clear: none;
  }
}

@media all and (max-width: 1024px) and (max-width: 600px) {
  .view-vehicle-search .views-row:nth-of-type(3n + 1) {
    clear: none;
  }
}

@media all and (max-width: 1024px) {
  .view-vehicle-search .views-row:nth-of-type(2n) {
    margin-right: 0;
  }
  .view-vehicle-search .views-row:nth-of-type(2n + 1) {
    clear: left;
  }
}

@media all and (max-width: 600px) {
  .view-vehicle-search .views-row {
    margin-bottom: 10px;
  }
}

.view-vehicle-search .vehicle-search-card {
  display: block;
  position: relative;
  padding: 30px;
  padding-top: 40px;
  padding-bottom: 78px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(34, 34, 34, 0.05), 0 1px 2px rgba(34, 34, 34, 0.09);
  transition: 0.25s;
}

@media all and (max-width: 1024px) {
  .view-vehicle-search .vehicle-search-card {
    padding: 20px;
    padding-top: 30px;
    padding-bottom: 68px;
  }
}

@media all and (max-width: 600px) {
  .view-vehicle-search .vehicle-search-card {
    padding: 10px;
    padding-top: 30px;
    padding-bottom: 58px;
  }
}

.view-vehicle-search .vehicle-search-card:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 10px;
  top: 0;
  left: 0;
  background-image: url(../img/pattern-stripe.png);
  background-repeat: repeat-x;
  background-size: 26px 26px;
}

.view-vehicle-search .vehicle-search-card:hover {
  box-shadow: 0 7px 14px rgba(34, 34, 34, 0.1), 0 5px 5px rgba(34, 34, 34, 0.1);
}

.view-vehicle-search .vehicle-search-card:hover .vehicle-search-card-button:before {
  transform: translateX(0);
}

.view-vehicle-search .vehicle-search-card:hover .vehicle-search-card-button:after {
  transform: translateX(10px);
}

.view-vehicle-search .vehicle-search-card .vehicle-search-card-image {
  display: block;
  margin-bottom: 10px;
}

.view-vehicle-search .vehicle-search-card .vehicle-search-card-image img {
  display: block;
  width: 100%;
  height: auto;
}

.view-vehicle-search .vehicle-search-card .vehicle-search-card-title {
  margin-bottom: 3px;
  color: #231f20;
  font-size: 25px;
  line-height: 24px;
  text-transform: uppercase;
}

@media all and (max-width: 1024px) {
  .view-vehicle-search .vehicle-search-card .vehicle-search-card-title {
    font-size: 34px;
    line-height: 34px;
  }
}

@media all and (max-width: 600px) {
  .view-vehicle-search .vehicle-search-card .vehicle-search-card-title {
    font-size: 20px;
    line-height: 19px;
  }
}

.view-vehicle-search .vehicle-search-card .vehicle-search-card-markets {
  margin-bottom: 25px;
  color: #919191;
  font-size: 14px;
  line-height: 17px;
}

@media all and (max-width: 600px) {
  .view-vehicle-search .vehicle-search-card .vehicle-search-card-markets {
    font-size: 13px;
    line-height: 16px;
  }
}

.view-vehicle-search .vehicle-search-card .vehicle-search-card-button {
  position: absolute;
  width: calc(100% - 60px);
  bottom: 30px;
  left: 30px;
  text-align: center;
}

@media all and (max-width: 1024px) {
  .view-vehicle-search .vehicle-search-card .vehicle-search-card-button {
    width: calc(100% - 40px);
    bottom: 20px;
    left: 20px;
  }
}

@media all and (max-width: 600px) {
  .view-vehicle-search .vehicle-search-card .vehicle-search-card-button {
    width: calc(100% - 20px);
    left: 10px;
  }
}

.view-press-room .container {
  padding-right: 30px;
  padding-left: 30px;
  max-width: 1072px;
}

.view-press-room .container:before, .view-press-room .container:after {
  content: " ";
  display: table;
}

.view-press-room .container:after {
  clear: both;
}

.view-press-room .container {
  *zoom: 1;
}

@media all and (max-width: 1024px) {
  .view-press-room .container {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media all and (max-width: 600px) {
  .view-press-room .container {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.view-press-room .container .views-row {
  position: relative;
  float: left;
  padding-top: 25px;
  padding-right: 0;
  padding-bottom: 28px;
  padding-left: 0;
  width: 100%;
}

.view-press-room .container .views-row:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #DDDDDD;
}

.view-press-room .container .views-row:first-of-type {
  margin-top: -15px;
  padding-top: 0;
}

@media all and (max-width: 1024px) {
  .view-press-room .container .views-row:first-of-type {
    margin-top: -2px;
  }
}

.view-press-room .container .views-row:last-of-type:before {
  display: none;
}

.view-press-room .container .views-row .press-release-title {
  margin-bottom: 5px;
  font-size: 22px;
  line-height: 26px;
}

.view-press-room .container .views-row .press-release-title a {
  color: #0A2240;
}

.view-press-room .container .views-row .press-release-title a:hover {
  color: #587A91;
}

.view-press-room .container .views-row .press-release-date {
  color: #919191;
  font-size: 12px;
  line-height: 16px;
}

.view-press-room .container .views-row .press-release-summary {
  margin-top: 13px;
}

.view-press-room .container .views-row .press-release-link {
  margin-top: 17px;
}

.view-press-room .container .item-list {
  position: relative;
}

.view-press-room .container .item-list:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  background: #DDDDDD;
}

.node-press-release .press-release-date {
  margin-bottom: 20px;
  font-size: 12px;
  color: #919191;
}

@media all and (max-width: 600px) {
  .node-accessory-category {
    margin: 0 10px;
  }
}

.node-accessory-category .content {
  padding: 0 !important;
}

.node-accessory-category .content .container {
  max-width: 1220px;
}

.view-accessory-item {
  position: relative;
}

.view-accessory-item .view-content {
  margin: 0 auto;
  margin-bottom: -60px;
  overflow: hidden;
}

.view-accessory-item .view-content:before, .view-accessory-item .view-content:after {
  content: " ";
  display: table;
}

.view-accessory-item .view-content:after {
  clear: both;
}

.view-accessory-item .view-content {
  *zoom: 1;
}

@media all and (max-width: 600px) {
  .view-accessory-item .view-content {
    margin-bottom: -40px;
  }
}

.view-accessory-item .views-row {
  float: left;
  margin-bottom: 60px;
  padding: 0 30px;
  width: 25%;
  border-right: 1px solid #DDDDDD;
}

@media all and (max-width: 1024px) {
  .view-accessory-item .views-row {
    padding: 0 20px;
    width: 50%;
  }
  .view-accessory-item .views-row:nth-of-type(even), .view-accessory-item .views-row:last-of-type {
    border-right: none;
  }
  .view-accessory-item .views-row:nth-of-type(odd) {
    clear: left;
  }
}

@media all and (max-width: 600px) {
  .view-accessory-item .views-row {
    margin-bottom: 40px;
    padding: 0;
    padding-bottom: 20px;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #DDDDDD;
  }
  .view-accessory-item .views-row:last-of-type {
    border-bottom: none;
  }
}

.view-accessory-item .views-row:last-of-type, .view-accessory-item .views-row:nth-of-type(4n+4) {
  border-right: none;
}

.view-accessory-item .views-row:nth-of-type(4n+5) {
  clear: left;
}

.view-accessory-item .views-row img {
  width: 100%;
}

.view-accessory-item .views-row h5 {
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 9px;
}

.view-accessory-item .views-row p {
  line-height: 20px;
  margin-bottom: 5px;
}

.view-accessory-item .views-row .main-content {
  margin-top: 20px;
  padding: 0 0 12px;
}

.view-accessory-item .views-row .content-body {
  padding: 0 0 0;
  font-size: 18px;
  line-height: 24px;
}

.view-accessory-item .views-row .sub-content {
  padding-top: 18px;
  border-top: 1px solid #DDDDDD;
  line-height: 20px;
}

@media all and (max-width: 600px) {
  .view-accessory-item .views-row .sub-content {
    padding-top: 0;
    padding-bottom: 20px;
    border-top: none;
  }
}

.view-accessory-item .views-row .available-on,
.view-accessory-item .views-row .kit-includes {
  color: #919191;
  font-size: 14px;
}

.view-accessory-item .views-row .kit-includes {
  margin-bottom: 14px;
}

#uniform-storemapper-distance span {
  display: none;
}

#storemapper {
  min-height: 500px;
  border: 1px solid #DDDDDD !important;
}

@media all and (max-width: 600px) {
  #storemapper {
    min-height: auto;
  }
}

#storemapper a {
  color: #C15722 !important;
}

#storemapper .gm-control-active img {
  position: absolute;
}

#storemapper br {
  display: none;
}

#storemapper #storemapper-go {
  font-size: 15px !important;
  font-weight: 700 !important;
}

#storemapper-left {
  padding: 30px;
  border-right: none;
}

@media all and (max-width: 1024px) {
  #storemapper-left {
    width: 100% !important;
    height: auto !important;
    border-right: 1px solid #DDDDDD;
  }
}

#storemapper-left label {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 9px;
  font-size: 18px;
  color: #222222;
}

#storemapper-left input[type="text"] {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 400;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
  margin-bottom: 10px;
  padding: 10px 20px;
  width: 100%;
  height: 40px;
  background: #ffffff;
  font-size: 15px;
  color: #DDDDDD;
  border: 1px solid #DDDDDD !important;
  border-radius: 0;
  transition: 0.25s ease-in;
}

#storemapper-left input[type="text"].focus, #storemapper-left input[type="text"].hover {
  border: 1px solid #C15722 !important;
}

#storemapper-left .selector {
  margin-bottom: 22px;
}

#storemapper-left #storemapper-zip {
  margin-bottom: 22px;
  border-radius: 0 !important;
  box-shadow: none !important;
}

#storemapper-left #storemapper-distance {
  cursor: pointer;
}

#storemapper-left label[for="storemapper-distance"],
#storemapper-left label[for="storemapper-zip"] {
  transition: 0.25s;
}

#storemapper-left .selector {
  -webkit-font-smoothing: antialiased;
  transition: 0.25s ease-in;
  position: relative;
  width: 100%;
  text-align: left;
}

#storemapper-left .selector.hover span {
  border: 1px solid #C15722;
}

#storemapper-left .selector.focus span {
  border: 1px solid #C15722;
}

#storemapper-left .selector span {
  -webkit-font-smoothing: antialiased;
  transition: 0.25s ease-in;
  box-sizing: border-box;
  padding: 8px 20px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  height: 40px;
  display: block;
  border: 1px solid #DDDDDD;
}

#storemapper-left .selector span:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  padding-left: 13px;
  padding-top: 13px;
  top: 0px;
  right: 0px;
  width: 41px;
  height: 100%;
  background-color: #C15722;
  background-image: url("../img/texture-background.png");
  background-position: center;
  background-repeat: repeat;
  color: #ffffff;
  z-index: 0;
}

#storemapper-left .selector select {
  position: absolute;
  padding: 10px 20px;
  width: 100%;
  height: 40px;
  top: 0;
  left: 0;
  font-size: 15px;
  background: #ffffff;
  color: #DDDDDD;
  border-radius: 0;
  transition: 0.25s;
  opacity: 0;
}

#storemapper-left .form-item {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 390px;
}

#storemapper-left .form-item label {
  font-family: henderson-sans-basic,sans-serif;
  font-weight: 400;
  font-style: normal;
  display: block;
  margin: 0;
  padding-bottom: 7px;
  font-size: 18px;
  font-weight: 400 !important;
  color: #222222;
  transition: 0.25s;
}

#storemapper-left .form-item.pd-checkbox {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}

#storemapper-left .form-item.pd-checkbox > span {
  display: block;
}

#storemapper-left .form-item.pd-checkbox > span > span {
  display: block;
  position: relative;
  width: 100%;
  border: 1px solid #DDDDDD;
  background: #ffffff;
  cursor: pointer;
  transition: 0.25s;
}

#storemapper-left .form-item.pd-checkbox > span > span .checker {
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 100%;
  background-color: #919191;
  background-image: url("../img/texture-background.png");
  background-position: center;
  background-repeat: repeat;
  cursor: pointer;
  transition: 0.25s;
}

#storemapper-left .form-item.pd-checkbox > span > span .checker > span {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

#storemapper-left .form-item.pd-checkbox > span > span .checker > span:before {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  left: 11px;
  color: #5b524d;
  font-size: 18px;
  transform: translateY(-50%);
  transition: 0.25s;
}

#storemapper-left .form-item.pd-checkbox > span > span .checker > span input {
  position: absolute;
  margin: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}

#storemapper-left .form-item.pd-checkbox > span > span .option {
  font-family: henderson-sans-basic,sans-serif;
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  position: relative;
  left: 40px;
  line-height: 15px;
  padding: 12px 20px;
  width: calc(100% - 40px);
  font-size: 15px;
  color: #5b524d;
  border-left: none;
  cursor: pointer;
  transition: 0.25s;
}

#storemapper-left .form-item.pd-checkbox > span > span:nth-of-type(even) {
  border-top: none;
  border-bottom: none;
}

#storemapper-left .form-item.pd-checkbox > span > span:nth-of-type(even) .checker {
  border-top: none;
}

#storemapper-left .form-item.pd-checkbox > span > span:nth-of-type(even) .option {
  border-top: none;
  border-bottom: none;
}

#storemapper-left .form-item.pd-checkbox > span > span:last-of-type {
  border-bottom: 1px solid #DDDDDD;
}

#storemapper-left .form-item.pd-checkbox > span > span:hover .checker {
  background-color: #ed6a5a;
}

#storemapper-left .form-item.pd-checkbox > span > span:hover .checker > span:before {
  color: #8e1f0b;
}

#storemapper-left .form-item.pd-checkbox > span > span:hover .option {
  color: #222222;
}

#storemapper-left .form-item.pd-checkbox > span > span.selected {
  background: #f5f5f4;
}

#storemapper-left .form-item.pd-checkbox > span > span.selected .checker {
  width: 47px;
  background-color: #ed6a5a;
  border-right: 2px solid #8e1f0b;
}

#storemapper-left .form-item.pd-checkbox > span > span.selected .checker > span:before {
  color: #ffffff;
}

#storemapper-left .form-item.pd-checkbox > span > span.selected .option {
  color: #222222;
  width: calc(100% - 47px);
}

#storemapper-form {
  background-color: #ffffff !important;
}

#storemapper-form .storemapper-form-inner #storemapper-go {
  width: 100% !important;
  background-color: #C15722 !important;
  transition: 0.25s;
}

#storemapper-form .storemapper-form-inner #storemapper-go:hover {
  color: #ffffff;
}

#storemapper-form .storemapper-form-inner .product-filter {
  display: none;
}

#storemapper-form .storemapper-form-inner #storemapper-autocomplete {
  margin-top: -22px;
}

#storemapper-form .storemapper-form-inner #storemapper-autocomplete li:before {
  display: none;
}

.storemapper-error {
  line-height: 20px;
  margin: 0 0 30px;
}

#storemapper-go {
  display: block;
  width: 100%;
  border: none;
  cursor: pointer;
  background-color: #C15722;
  font-weight: 700;
  font-size: 15px;
}

.storemapper-categories {
  display: none;
}

#storemapper-list {
  margin-top: 60px;
}

#storemapper-list h4 {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif !important;
  font-weight: 700;
  margin-top: 0;
  font-size: 21px;
  line-height: 25px;
}

#storemapper-list p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 19px;
}

#storemapper-list li {
  margin-bottom: 52px !important;
  margin-top: 0;
  padding-top: 55px;
  padding-left: 0;
  border-top: 1px solid #DDDDDD;
  border-bottom: none !important;
}

#storemapper-list li:before {
  content: none;
}

#storemapper-list .storemapper-address {
  margin-bottom: 15px;
}

#storemapper-list .storemapper-url {
  margin-bottom: 15px;
}

#storemapper-list .storemapper-storelink {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-top: 15px;
  padding: 9px 20px;
  padding-right: 25px;
  height: 40px;
  width: 100%;
  color: #ffffff !important;
  line-height: 17px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  background: #C15722;
  border-bottom: none;
  overflow: hidden;
  transition: 0.25s;
}

@media all and (max-width: 600px) {
  #storemapper-list .storemapper-storelink {
    font-size: 15px;
    padding: 10px 20px;
    padding-right: 25px;
  }
}

#storemapper-list .storemapper-storelink:before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #222222;
  opacity: .1;
  transform: translateX(-100%);
  transition: 0.25s;
}

#storemapper-list .storemapper-storelink:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  position: relative;
  top: 2px;
  font-size: 18px;
  will-change: transform;
  transform: translateX(5px);
  transition: 0s color, 0.25s transform;
}

#storemapper-list .storemapper-storelink:hover {
  color: #ffffff;
  text-decoration: none;
}

#storemapper-list .storemapper-storelink:hover:before {
  transform: translateX(0);
}

#storemapper-list .storemapper-storelink:hover:after {
  transform: translateX(10px);
}

.btn {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-top: 15px;
  padding: 9px 20px;
  padding-right: 25px;
  height: 40px;
  width: 100%;
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  color: #ffffff !important;
  line-height: 17px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase !important;
  background: #C15722;
  border-bottom: none;
  border: none !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  transition: 0.25s;
}

@media all and (max-width: 600px) {
  .btn {
    font-size: 15px;
    padding: 10px 20px;
    padding-right: 25px;
  }
}

.btn:before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #222222;
  opacity: .1;
  transform: translateX(-100%);
  transition: 0.25s;
}

.btn:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  position: relative;
  top: 3px;
  left: -8px;
  font-size: 18px;
  will-change: transform;
  transform: translateX(5px);
  transition: 0s color, 0.25s transform;
}

.btn:hover {
  color: #ffffff;
  text-decoration: none;
}

.btn:hover:before {
  transform: translateX(0);
}

.btn:hover:after {
  transform: translateX(10px);
}

#storemapper a.storemapper-map-directions {
  color: #ffffff !important;
  background-color: #C15722 !important;
  font-weight: 400;
}

#storemapper a.storemapper-map-directions:hover {
  text-decoration: none;
}

#storemapper .storemapper_directions {
  border: none;
  background-color: transparent;
}

#storemapper .storemapper_directions a {
  padding: 0 !important;
  font-size: 16px !important;
}

@media all and (max-width: 1024px) {
  #storemapper-right {
    display: none;
  }
}

.gm-style-iw h4 {
  font-size: 21px;
  margin: 15px 0;
  line-height: 25px;
}

.gm-style-iw p {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 10px !important;
}

.storemapper-loader img, .storemapper-loader img[style] {
  display: none !important;
}

.storemapper-loader,
.storemapper-loader[style],
.storemapper-loader:before,
.storemapper-loader:after {
  width: 2.5em !important;
  height: 2.5em !important;
  min-height: auto !important;
  border-radius: 50%;
  animation-fill-mode: both;
  animation: load7 1.8s infinite ease-in-out;
}

.storemapper-loader,
.storemapper-loader[style] {
  position: relative;
  margin: 80px auto;
  color: #ed6a5a;
  font-size: 10px;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
}

.storemapper-loader:before,
.storemapper-loader:after {
  content: '';
  position: absolute;
  top: 0;
}

.storemapper-loader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}

.storemapper-loader:after {
  left: 3.5em;
}

@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}

.storemapper-scroll-top {
  display: none !important;
}

#center .campaign-content .campaign-wrap {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 50px;
}

#center .campaign-content .quote-modal__close {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

#center .campaign-content .quote-modal__close:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  width: 100%;
  height: 100%;
  top: -8px;
  left: -7px;
  font-size: 33px;
  color: #70ABBB;
  transition: 0.25s;
}

#center .campaign-content .quote-modal__close:hover:after {
  color: #222222;
}

#center .campaign-content .request-content {
  position: fixed;
  padding: 70px 20px 20px;
  max-width: 400px;
  height: 100%;
  top: 0;
  right: 0;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  z-index: 501;
  overflow-y: scroll;
  transform: translateX(100%);
  transition: 0.25s;
}

body.quote-modal--open #center .campaign-content .request-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

#center .campaign-content .request-content iframe {
  margin-top: 30px;
  width: 100%;
  height: 1350px;
  border: none;
  overflow: hidden;
}

#center .campaign-content .request-quote {
  margin: 0 auto;
  max-width: 1012px;
}

#center .campaign-content .request-quote h2 {
  font-size: 44px;
  line-height: 40px;
  text-transform: capitalize;
  margin: 0 auto 15px;
  line-height: 40px;
}

#center .campaign-content .quote-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  z-index: 500;
  transition: 0.25s;
}

body.quote-modal--open #center .campaign-content .quote-overlay {
  opacity: 1;
  visibility: visible;
}

/* --------------------------
 * HEADER
 * -------------------------- */
.node-type-campaign-page {
  padding-top: 98px;
}

.node-type-campaign-page.logged-in {
  margin-top: 0px !important;
}

.node-type-campaign-page header {
  position: fixed;
  padding-top: 25px;
  padding-right: 30px;
  padding-bottom: 18px;
  padding-left: 30px;
  width: 100%;
  height: 98px;
  left: 0;
  top: 0;
  box-shadow: 0 2px 4px 0 rgba(34, 34, 34, 0.07);
  transition: opacity 1s;
}

@media all and (max-width: 600px) {
  .node-type-campaign-page header {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.node-type-campaign-page header.has-callouts .callouts {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.node-type-campaign-page header.has-callouts .button-transparent {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.node-type-campaign-page header.is-small-screen .logo {
  display: none;
  opacity: 0;
}

.node-type-campaign-page header .logo {
  margin-top: 6px;
  padding-left: 0;
  top: inherit;
  transform: none;
  transition: opacity 0.25s;
}

.node-type-campaign-page header .logo h1 {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  height: 40px;
}

.node-type-campaign-page header .button-transparent {
  display: inline-block;
  margin-top: 15px;
  margin-left: 15px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50px);
  transition: transform 0.25s, opacity 0.25s;
}

@media all and (max-width: 768px) {
  .node-type-campaign-page header .button-transparent {
    display: none;
  }
}

.node-type-campaign-page header .button-transparent:after {
  will-change: transform;
  font-size: 13px;
  right: -14px;
  top: 50%;
}

.node-type-campaign-page header .callouts {
  float: right;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50px);
  transition: transform 0.25s, opacity 0.25s;
}

@media all and (max-width: 600px) {
  .node-type-campaign-page header .callouts {
    position: absolute;
    display: flex;
    justify-content: center;
    float: none;
    margin-top: 5px;
    left: 0;
    top: 26px;
    width: 100%;
  }
}

@media all and (max-width: 600px) {
  .node-type-campaign-page header .callouts .buttons {
    flex: 0 1 auto;
  }
}

.node-type-campaign-page header .callouts .buttons a {
  margin-left: 15px;
}

.node-type-campaign-page header .callouts .buttons a:first-of-type {
  margin-left: 0;
}

/* --------------------------
   * FORM
   * -------------------------- */
.campaign-form {
  padding: 60px 0 80px;
  background-image: linear-gradient(-126deg, #F6FAFB 0%, #EAF3F5 100%);
}

.campaign-form .form-wrap {
  margin: 0 auto;
  padding: 40px;
  max-width: 483px;
  background-color: #ffffff;
  box-shadow: 0 0 9px 0 rgba(34, 34, 34, 0.1);
  text-align: center;
}

.campaign-form .form-wrap p {
  margin-bottom: 15px;
}

.campaign-form .form-wrap iframe {
  width: 100%;
  max-width: 440px;
}

.campaign-form .form-wrap .legal {
  font-size: 12px;
  line-height: 17px;
  text-align: left;
}

/* --------------------------
   * LOGGED IN STYLES
   * -------------------------- */
body.logged-in.node-type-campaign-page .tabs {
  margin-top: 50px;
}

body.logged-in.node-type-campaign-page .paragraphs-item--first {
  padding-top: 0;
  margin-top: -73px;
}

/* --------------------------
   * TEASERS
   * -------------------------- */
.paragraphs-item {
  padding-bottom: 60px;
  padding-top: 60px;
  border-bottom: 1px solid #DDDDDD;
}

.paragraphs-item.paragraphs-item--first {
  padding-top: 36px;
}

.paragraphs-item:last-of-type {
  border-bottom: none;
}

.paragraphs-item > p {
  margin-bottom: 30px;
}

.paragraphs-item .introduction p {
  margin-bottom: 15px;
}

.paragraphs-item .introduction p:last-of-type {
  margin-bottom: 30px;
}

.paragraphs-item h2 + .teasers {
  margin-top: 50px;
}

.paragraphs-item .field-item > h2 {
  margin-top: 0;
}

.teasers-models > h2 {
  margin-bottom: 45px;
}

@media all and (max-width: 600px) {
  .teasers-models > h2 {
    margin-bottom: 25px;
  }
}

.teasers-models .views-row:first-child .powertrains-vehicle-row {
  margin-top: 30px;
}

.teasers-models .powertrains-vehicle-row {
  margin: 0;
  margin-top: 60px;
}

.teasers-models .powertrains-vehicle-row:before, .teasers-models .powertrains-vehicle-row:after {
  content: " ";
  display: table;
}

.teasers-models .powertrains-vehicle-row:after {
  clear: both;
}

.teasers-models .powertrains-vehicle-row {
  *zoom: 1;
}

.teasers-models .powertrain-column {
  margin-right: 30px;
  width: calc(((100% - 30px * 1) / 2) - 0.01px);
  float: left;
  position: relative;
}

@media all and (max-width: 1024px) {
  .teasers-models .powertrain-column {
    margin-right: 20px;
    width: calc(((100% - 20px * 1) / 2) - 0.01px);
  }
}

@media all and (max-width: 600px) {
  .teasers-models .powertrain-column {
    margin-right: 10px;
    width: calc(((100% - 10px * 1) / 2) - 0.01px);
  }
}

.teasers-models .powertrain-column:last-of-type {
  margin-right: 0;
}

.teasers-models .powertrain-column:nth-of-type(2n) {
  margin-right: 0;
}

.teasers-models .powertrain-column:nth-of-type(2n + 1) {
  clear: left;
}

@media all and (max-width: 600px) {
  .teasers-models .powertrain-column {
    margin-right: 30px;
    width: calc(((100% - 30px * 0) / 1) - 0.01px);
    float: left;
    float: none;
  }
}

@media all and (max-width: 600px) and (max-width: 1024px) {
  .teasers-models .powertrain-column {
    margin-right: 20px;
    width: calc(((100% - 20px * 0) / 1) - 0.01px);
  }
}

@media all and (max-width: 600px) and (max-width: 600px) {
  .teasers-models .powertrain-column {
    margin-right: 10px;
    width: calc(((100% - 10px * 0) / 1) - 0.01px);
  }
}

@media all and (max-width: 600px) {
  .teasers-models .powertrain-column:last-of-type {
    margin-right: 0;
  }
  .teasers-models .powertrain-column:nth-of-type(2n) {
    margin-right: 30px;
  }
}

@media all and (max-width: 600px) and (max-width: 1024px) {
  .teasers-models .powertrain-column:nth-of-type(2n) {
    margin-right: 20px;
  }
}

@media all and (max-width: 600px) and (max-width: 600px) {
  .teasers-models .powertrain-column:nth-of-type(2n) {
    margin-right: 10px;
  }
}

@media all and (max-width: 600px) {
  .teasers-models .powertrain-column:nth-of-type(2n + 1) {
    clear: none;
  }
}

@media all and (max-width: 600px) and (max-width: 1024px) {
  .teasers-models .powertrain-column:nth-of-type(2n + 1) {
    clear: none;
  }
}

@media all and (max-width: 600px) and (max-width: 600px) {
  .teasers-models .powertrain-column:nth-of-type(2n + 1) {
    clear: none;
  }
}

@media all and (max-width: 600px) {
  .teasers-models .powertrain-column:nth-of-type(1n) {
    margin-right: 0;
  }
  .teasers-models .powertrain-column:nth-of-type(1n + 1) {
    clear: left;
  }
}

.teasers-models .powertrains-vehicle-image > img {
  width: 100%;
}

@media all and (max-width: 768px) {
  .teasers-models .powertrains-vehicle-image {
    display: none;
  }
}

.teasers-models .powertrains-vehicle-image--mobile {
  display: none;
}

@media all and (max-width: 768px) {
  .teasers-models .powertrains-vehicle-image--mobile {
    display: block;
    width: 100%;
  }
}

.teasers-models .powertrains-vehicle-info h4 {
  color: #0A2240;
  font-size: 27px;
  line-height: 32px;
  font-weight: 700;
}

@media all and (max-width: 768px) {
  .teasers-models .powertrains-vehicle-info > p {
    margin-bottom: 13px;
  }
}

.teasers-models .powertrains-vehicle-info li {
  padding-left: 30px;
}

.teasers-models .powertrains-vehicle-info li:before {
  left: 7px;
}

.teasers-models .powertrains-vehicle-info span {
  font-size: 26px;
}

.teasers-models .powertrains-vehicle-info .button span {
  font-size: 17px;
}

.teasers-models .powertrains-vehicle-description {
  margin-bottom: 25px;
}

.teasers-models .powertrains-vehicle-description li {
  margin-bottom: 0;
}

.teasers-models .vehicle-colors {
  margin-top: 10px;
  margin-bottom: 5px;
}

.teasers-models .vehicle-colors span,
.teasers-models .vehicle-colors p {
  font-size: 14px;
}

.teasers-models .vehicle-colors span {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
}

.teasers-models .vehicle-colors li {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 10px;
  margin-bottom: 10px;
  padding-left: 0;
  overflow: hidden;
}

.teasers-models .vehicle-colors li a {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #222222;
  text-indent: 110%;
}

.teasers-models .vehicle-colors li a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  border: 4px solid rgba(255, 255, 255, 0);
  transition: 0.25s;
}

.teasers-models .vehicle-colors li a.vehicle-color-selected {
  border: 2px solid #222222;
}

.teasers-models .vehicle-colors li a.vehicle-color-selected:after {
  border-radius: 50%;
  border: 4px solid white;
}

.teasers-models .vehicle-colors li a.vehicle-color-standard-green {
  background-color: #1A4919;
}

.teasers-models .vehicle-colors li a.vehicle-color-standard-green.vehicle-color-selected {
  border: 2px solid #1A4919;
}

.teasers-models .vehicle-colors li a.vehicle-color-optional-orange {
  background-color: #F6861F;
}

.teasers-models .vehicle-colors li a.vehicle-color-optional-orange.vehicle-color-selected {
  border: 2px solid #F6861F;
}

.teasers-models .vehicle-colors .color-category {
  margin-top: 5px;
}

.teasers-horizontal {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.teasers-horizontal > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(50% - 25px);
  margin-right: 50px;
  margin-top: 55px;
}

@media all and (max-width: 768px) {
  .teasers-horizontal > div {
    width: 100%;
    margin-right: 0;
  }
}

.teasers-horizontal > div:nth-child(-n+2) {
  margin-top: 0;
}

@media all and (max-width: 768px) {
  .teasers-horizontal > div:nth-child(2) {
    margin-top: 30px;
  }
}

.teasers-horizontal > div:nth-child(even) {
  margin-right: 0;
}

.teasers-horizontal > div > div {
  margin-right: 20px;
  width: 50px;
}

.teasers-horizontal > div > div img {
  width: 100%;
}

.teasers-horizontal > div .teasers-content {
  width: calc(100% - 70px);
}

.teasers-horizontal > div .teasers-content h5 {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  line-height: 22px;
}

.teasers-horizontal > div .teasers-content p {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 20px;
}

.teasers-horizontal > div .teasers-content .link-teaser:after {
  top: 48%;
}

.teasers-vertical {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: nowrap;
  text-align: center;
}

@media all and (max-width: 768px) {
  .teasers-vertical {
    flex-wrap: wrap;
  }
}

.teasers-vertical > div {
  margin-right: 40px;
  width: calc(100% / 3 - 40px);
}

@media all and (max-width: 768px) {
  .teasers-vertical > div {
    margin-top: 30px;
    margin-right: 0;
    width: 100%;
  }
}

.teasers-vertical > div:last-child {
  margin-right: 0;
}

.teasers-vertical h5 {
  margin-top: 5px;
  margin-bottom: 10px;
  line-height: 22px;
}

.teasers-vertical p {
  margin-bottom: 8px;
  line-height: 20px;
}

.teasers-cards:before, .teasers-cards:after {
  content: " ";
  display: table;
}

.teasers-cards:after {
  clear: both;
}

.teasers-cards {
  *zoom: 1;
}

.teasers-cards .teaser-card {
  margin-right: 30px;
  width: calc(((100% - 30px * 2) / 3) - 0.01px);
  float: left;
  position: relative;
  padding: 30px;
  padding-top: 28px;
  padding-bottom: 56px;
  box-shadow: 0 1px 3px rgba(34, 34, 34, 0.05), 0 0px 6px rgba(34, 34, 34, 0.09);
  overflow: hidden;
  transition: 0.25s;
}

@media all and (max-width: 1024px) {
  .teasers-cards .teaser-card {
    margin-right: 20px;
    width: calc(((100% - 20px * 2) / 3) - 0.01px);
  }
}

@media all and (max-width: 600px) {
  .teasers-cards .teaser-card {
    margin-right: 10px;
    width: calc(((100% - 10px * 2) / 3) - 0.01px);
  }
}

.teasers-cards .teaser-card:last-of-type {
  margin-right: 0;
}

.teasers-cards .teaser-card:nth-of-type(3n) {
  margin-right: 0;
}

.teasers-cards .teaser-card:nth-of-type(3n + 1) {
  clear: left;
}

@media all and (max-width: 768px) {
  .teasers-cards .teaser-card {
    margin-right: 30px;
    width: calc(((100% - 30px * 0) / 1) - 0.01px);
    float: left;
    margin-bottom: 40px;
    padding: 30px 10px;
    padding-bottom: 90px;
  }
}

@media all and (max-width: 768px) and (max-width: 1024px) {
  .teasers-cards .teaser-card {
    margin-right: 20px;
    width: calc(((100% - 20px * 0) / 1) - 0.01px);
  }
}

@media all and (max-width: 768px) and (max-width: 600px) {
  .teasers-cards .teaser-card {
    margin-right: 10px;
    width: calc(((100% - 10px * 0) / 1) - 0.01px);
  }
}

@media all and (max-width: 768px) {
  .teasers-cards .teaser-card:last-of-type {
    margin-right: 0;
  }
}

.teasers-cards .teaser-card:hover .button:before {
  transform: translateY(0);
}

.teasers-cards .teaser-card:hover .button p:after {
  right: -23px;
}

.teasers-cards .teaser-card:hover a.link-external p:after {
  right: -26px;
}

.teasers-cards .teaser-card:first-child, .teasers-cards .teaser-card:nth-child(2) {
  margin-top: 0;
}

@media all and (max-width: 1024px) {
  .teasers-cards .teaser-card:last-child, .teasers-cards .teaser-card:nth-last-child(2) {
    margin-bottom: 30px;
  }
}

@media all and (max-width: 600px) {
  .teasers-cards .teaser-card:last-child, .teasers-cards .teaser-card:nth-last-child(2) {
    margin-bottom: 40px;
  }
}

@media all and (max-width: 1024px) {
  .teasers-cards .teaser-card:last-child {
    margin-bottom: 30px;
  }
}

.teasers-cards .teaser-card h4 {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 700;
  display: block;
  margin: 0 auto 15px;
  font-size: 19px;
  color: #222222;
  line-height: 20px;
  text-align: center;
}

@media all and (max-width: 1024px) {
  .teasers-cards .teaser-card h4 {
    margin-top: 0;
    font-size: 28px;
    line-height: 27px;
  }
}

.teasers-cards .teaser-card img {
  display: block;
  margin: 0 auto 30px;
  max-width: 100%;
}

.teasers-cards .teaser-card .promo-card-callout {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 0;
  width: 100%;
  background-color: #A29771;
}

.teasers-cards .teaser-card .promo-card-callout p {
  font-family: "Gotham SSm A", "Gotham SSm B", Arial, sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
}

.teasers-cards .teaser-card .vehicle_card_top_bar {
  position: absolute;
  width: 100%;
  height: 10px;
  top: 0;
  left: 0;
  background: url(../img/pattern-stripe.png) repeat-x;
  background-size: 6%;
}

.teasers-cards .teaser-card > p {
  font-size: 18px;
  line-height: 18px;
  text-align: center;
}

.teasers-cards .teaser-card .button {
  display: block;
  position: absolute;
  margin: 0 auto;
  padding: 10px 20px;
  padding-right: 35px;
  width: calc(100% - 60px);
  height: auto;
  bottom: 28px;
  text-align: center;
  vertical-align: middle;
}

@media all and (max-width: 600px) {
  .teasers-cards .teaser-card .button {
    width: calc(100% - 20px);
  }
}

.teasers-cards .teaser-card .button:after {
  content: none;
}

.teasers-cards .teaser-card .button:hover p:after {
  right: -23px;
}

.teasers-cards .teaser-card .button p {
  display: inline-block;
  position: relative;
  width: auto;
}

.teasers-cards .teaser-card .button p:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: -19px;
  top: 50%;
  color: #ffffff;
  font-size: 18px;
  transform: translate(0, -50%);
  transition: 0.25s;
}

.teasers-cards .teaser-card .button.link-external p:after {
  content: "";
  font-family: 'ezgo';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  right: -23px;
}

.teasers-photo {
  display: flex;
  justify-content: space-around;
}

@media all and (max-width: 768px) {
  .teasers-photo {
    flex-direction: column;
    align-items: center;
  }
}

.teasers-photo .teaser-photo {
  flex: 0 1 auto;
  width: calc(33% - 36px);
  text-align: center;
}

@media all and (max-width: 768px) {
  .teasers-photo .teaser-photo {
    margin-bottom: 30px;
    width: 100%;
    max-width: 360px;
  }
  .teasers-photo .teaser-photo:last-of-type {
    margin-bottom: 0;
  }
}

.teasers-photo .teaser-photo img {
  position: relative;
  width: 100%;
}

.teasers-photo .teaser-photo h5 {
  position: relative;
  margin-bottom: 10px;
  margin-bottom: 5px;
}

.teasers-photo .teaser-photo p {
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: .55px;
}

.paragraphs-item--teaser_vehicle {
  padding-bottom: 0px !important;
}

.teasers-vehicle {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

@media all and (max-width: 768px) {
  .teasers-vehicle {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}

.teasers-vehicle .teaser-vehicle {
  flex: 0 1 auto;
  margin-bottom: 60px;
  width: calc(33% - 36px);
  text-align: center;
}

@media all and (max-width: 768px) {
  .teasers-vehicle .teaser-vehicle {
    width: 100%;
  }
}

.teasers-vehicle .teaser-vehicle a {
  position: relative;
}

.teasers-vehicle .teaser-vehicle a img {
  position: relative;
  width: 100%;
  max-width: 296px;
}

.teasers-vehicle .teaser-vehicle a p {
  position: relative;
  display: inline-block;
}

.node-form-page .mceContentBody {
  margin-bottom: 60px;
}

.node-form-page .form-wrap {
  margin: 0 auto;
  max-width: 390px;
  text-align: center;
}

.node-form-page .form-wrap p {
  margin-bottom: 15px;
}

.node-form-page .form-wrap .legal {
  font-size: 12px;
  line-height: 17px;
  text-align: left;
}

.node-form-page .form-wrap .legal:last-of-type {
  margin-bottom: 0;
}

.node-form-page .form-wrap iframe {
  display: block;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
  width: 100%;
}

.node-type-vehicle-feature .paragraphs-items-field-technology-content > .field-name-field-technology-content > .field-items > .field-item {
  padding-bottom: 60px;
  padding-top: 60px;
  border-bottom: 1px solid #DDDDDD;
}

.node-type-vehicle-feature .paragraphs-items-field-technology-content > .field-name-field-technology-content > .field-items > .field-item:first-of-type {
  padding-top: 0;
}

.node-type-vehicle-feature .paragraphs-items-field-technology-content > .field-name-field-technology-content > .field-items > .field-item:last-of-type {
  border-bottom: none;
}

.node-type-vehicle-feature .paragraphs-items-field-technology-content > .field-name-field-technology-content > .field-items > .field-item h2 {
  margin-top: 0;
}

.node-type-vehicle-feature .paragraphs-items-field-technology-content > .field-name-field-technology-content > .field-items > .field-item .introduction p {
  margin-bottom: 15px;
}

.node-type-vehicle-feature .paragraphs-items-field-technology-content > .field-name-field-technology-content > .field-items > .field-item .introduction p:last-of-type {
  margin-bottom: 30px;
}

.node-type-vehicle-feature .paragraphs-items-field-technology-content .teaser-photo h5 {
  margin-top: 10px;
  margin-bottom: 5px;
}

.node-type-vehicle-feature .paragraphs-item-intro-with-image .content {
  display: flex;
  align-items: center;
}

@media all and (max-width: 1024px) {
  .node-type-vehicle-feature .paragraphs-item-intro-with-image .content {
    margin-top: 20px;
  }
}

@media all and (max-width: 768px) {
  .node-type-vehicle-feature .paragraphs-item-intro-with-image .content {
    flex-direction: column;
  }
}

.node-type-vehicle-feature .paragraphs-item-intro-with-image .content .field-type-text-with-summary {
  flex: 0 1 auto;
  width: 100%;
}

@media all and (max-width: 768px) {
  .node-type-vehicle-feature .paragraphs-item-intro-with-image .content .field-type-text-with-summary {
    order: 2;
  }
}

.node-type-vehicle-feature .paragraphs-item-intro-with-image .content .field-type-image {
  flex: 0 1 auto;
  width: 380px;
  padding: 0 30px;
}

@media all and (max-width: 768px) {
  .node-type-vehicle-feature .paragraphs-item-intro-with-image .content .field-type-image {
    order: 1;
    margin-bottom: 30px;
    padding: 0;
    max-width: 250px;
  }
}

.node-type-vehicle-feature .paragraphs-item-intro-with-image .content .field-type-image img {
  width: 100%;
  height: auto;
}

.node-type-vehicle-feature .two-column-teasers {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media all and (max-width: 1024px) {
  .node-type-vehicle-feature .two-column-teasers {
    flex-wrap: nowrap;
    flex-direction: column;
  }
}

.node-type-vehicle-feature .two-column-teasers .teaser-container {
  flex: 0 1 auto;
  display: flex;
  margin-bottom: 60px;
  width: calc(50% - 30px);
}

@media all and (max-width: 1024px) {
  .node-type-vehicle-feature .two-column-teasers .teaser-container {
    width: 100%;
  }
}

@media all and (max-width: 600px) {
  .node-type-vehicle-feature .two-column-teasers .teaser-container {
    flex-direction: column;
    align-items: center;
  }
}

.node-type-vehicle-feature .two-column-teasers .teaser-container .teaser-image {
  flex: 0 1 auto;
  margin-right: 20px;
}

@media all and (max-width: 600px) {
  .node-type-vehicle-feature .two-column-teasers .teaser-container .teaser-image {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.node-type-vehicle-feature .two-column-teasers .teaser-container .teaser-description {
  flex: 0 1 auto;
  width: 100%;
}

.node-type-vehicle-feature .two-column-teasers .teaser-container .teaser-description h5 {
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.63px;
}

.node-type-vehicle-feature .two-column-teasers .teaser-container .teaser-description p {
  font-size: 14px;
  letter-spacing: 0.55px;
  line-height: 21px;
}

.node-type-vehicle-feature .button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

@media all and (max-width: 600px) {
  .node-type-vehicle-feature .button-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.node-type-vehicle-feature .button-wrapper .button {
  margin-left: 10px;
  margin-right: 10px;
}

@media all and (max-width: 600px) {
  .node-type-vehicle-feature .button-wrapper .button {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/*# sourceMappingURL=style.css.map */