/*
 * Breakpoint / Media Query Helper
 *
 * This mixin helps to create media queries based on a given query parameter.
 * Various syntaxes may be used for the query paramater.
 *
 * Logic:
 * 1) If the query is a number, assume a min-width media query by default
 * 2) If the query is a list ...
 *    2a) If the first list item is a string, assume a feature/value pair (i.e. max-width 500px)
 *    2b) If both values are numbers, assume a min-width/max-width pair
 * 3) If the query is a map, assume one or more feature/value pairs (i.e. max-width 500px, or min-width 300px and max-width 400px)
 *
 * Examples of Use:
 * @include bp(500px) {...}  =>  min-width: 500px
 * @include bp(min-width 500px) {...}  =>  min-width: 500px
 * @include bp(max-width 500px) {...}  =>  max-width: 500px
 * @include bp(500px 750px) {...}  =>  min-width: 500px, max-width: 750px
 * @include bp((min-width: 500px)) {...}  =>  min-width: 500px
 * @include bp((max-width: 500px)) {...}  =>  max-width: 500px
 * @include bp((min-width: 500px, max-width: 750px)) {...}  =>  max-width: 500px, max-width: 750px
 *
*/
/*
 * Font Conversion Helper
 *
 * This Mixin will conver pixels units to rems.
 *
 */
@font-face {
  font-family: 'Overpass-Extra-Light';
  src: url("../fonts/overpass/extra-light.woff2") format("woff2"), url("../fonts/overpass/extra-light.woff") format("woff"), url("../fonts/overpass/extra-light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Overpass-Light';
  src: url("../fonts/overpass/light.woff2") format("woff2"), url("../fonts/overpass/light.woff") format("woff"), url("../fonts/overpass/light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Overpass-Bold';
  src: url("../fonts/overpass/bold.woff2") format("woff2"), url("../fonts/overpass/bold.woff") format("woff"), url("../fonts/overpass/bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue LT W05 45 Light';
  src: url("../fonts/helvetica-neue/light.woff2") format("woff2"), url("../fonts/helvetica-neue/light.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Helvetica Neue LT W05 75 Bold';
  src: url("../fonts/helvetica-neue/bold.woff2") format("woff2"), url("../fonts/helvetica-neue/bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Swiss721 BT W01 Black Outline";
  src: url("../fonts/swiss-outline/Fonts/5967648/883d5e8e-66ef-425c-b17d-082884851c1c.woff2") format("woff2"), url("../fonts/swiss-outline/Fonts/5967648/be4b205c-8f2b-4fed-bbad-3b2eccfe830b.woff") format("woff");
}

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

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

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

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

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

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

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

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

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

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

sup {
  top: -0.7em;
}

sub {
  bottom: -0.25em;
}

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

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

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

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

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

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

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

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

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

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

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

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

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

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

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

/** VARIABLES
===================================*/
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  touch-action: pan-y;
}

.bx-wrapper img {
  max-width: 100%;
  display: block;
}

.bxslider {
  margin: 0;
  padding: 0;
}

ul.bxslider {
  list-style: none;
}

.bx-viewport {
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
}

/** THEME
===================================*/
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: -30px;
  width: 100%;
}

/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: transparent url("../img/bx-slider-assets/bx_loader.gif") center center no-repeat #ffffff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}

/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: .85em;
  font-family: Arial;
  font-weight: bold;
  color: #959595;
  padding-top: 20px;
}

.bx-wrapper .bx-pager.bx-default-pager a {
  background: #959595;
  border: 1px solid #959595;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active,
.bx-wrapper .bx-pager.bx-default-pager a:focus {
  background: #b0001d;
}

.bx-wrapper .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  *zoom: 1;
  *display: inline;
}

.bx-wrapper .bx-pager-item {
  font-size: 0;
  line-height: 0;
}

/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
  left: 10px;
  background: url("../img/bx-slider-assets/controls.png") no-repeat 0 -32px;
}

.bx-wrapper .bx-prev:hover,
.bx-wrapper .bx-prev:focus {
  background-position: 0 0;
}

.bx-wrapper .bx-next {
  right: 10px;
  background: url("../img/bx-slider-assets/controls.png") no-repeat -43px -32px;
}

.bx-wrapper .bx-next:hover,
.bx-wrapper .bx-next:focus {
  background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}

/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
  text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url("../img/bx-slider-assets/controls.png") -86px -11px no-repeat;
  margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:focus {
  background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url("../img/bx-slider-assets/controls.png") -86px -44px no-repeat;
  margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:focus {
  background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}

/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666;
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
}

.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: .85em;
  padding: 10px;
}

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  border-radius: 4px;
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-opened .fancybox-skin {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url("../img/fancybox-assets/fancybox_sprite.png");
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("../img/fancybox-assets/fancybox_loading.gif") center center no-repeat;
}

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("../img/fancybox-assets/blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("../img/fancybox-assets/fancybox_overlay.png");
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url("../img/fancybox-assets/fancybox_sprite@2x.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
  #fancybox-loading div {
    background-image: url("../img/fancybox-assets/fancybox_loading@2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
}

.scroll-wrapper {
  overflow: hidden !important;
  padding: 0 !important;
  position: relative;
}

.scroll-wrapper > .scroll-content {
  border: none !important;
  box-sizing: content-box !important;
  height: auto;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none !important;
  overflow: scroll !important;
  padding: 0;
  position: relative !important;
  top: 0;
  width: auto !important;
}

.scroll-wrapper > .scroll-content::-webkit-scrollbar {
  height: 0;
  width: 0;
}

.scroll-element {
  display: none;
}

.scroll-element, .scroll-element div {
  box-sizing: content-box;
}

.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
  display: block;
}

.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
  cursor: default;
}

.scroll-textarea {
  border: 1px solid #cccccc;
  border-top-color: #999999;
}

.scroll-textarea > .scroll-content {
  overflow: hidden !important;
}

.scroll-textarea > .scroll-content > textarea {
  border: none !important;
  box-sizing: border-box;
  height: 100% !important;
  margin: 0;
  max-height: none !important;
  max-width: none !important;
  overflow: scroll !important;
  outline: none;
  padding: 2px;
  position: relative !important;
  top: 0;
  width: 100% !important;
}

.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
  height: 0;
  width: 0;
}

.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-inner > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-inner > .scroll-element.scroll-x {
  bottom: 2px;
  height: 8px;
  left: 0;
  width: 100%;
}

.scrollbar-inner > .scroll-element.scroll-y {
  height: 100%;
  right: 2px;
  top: 0;
  width: 8px;
}

.scrollbar-inner > .scroll-element .scroll-element_outer {
  overflow: hidden;
}

.scrollbar-inner > .scroll-element .scroll-element_outer,
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  border-radius: 8px;
}

.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: alpha(opacity=40);
  opacity: 0.4;
}

.scrollbar-inner > .scroll-element .scroll-element_track {
  background-color: #e0e0e0;
}

.scrollbar-inner > .scroll-element .scroll-bar {
  background-color: #c2c2c2;
}

.scrollbar-inner > .scroll-element:hover .scroll-bar {
  background-color: #919191;
}

.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #919191;
}

.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -12px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -12px;
}

.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -12px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -12px;
}

.scrollbar-outer > .scroll-element,
.scrollbar-outer > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-outer > .scroll-element {
  background-color: #ffffff;
}

.scrollbar-outer > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-outer > .scroll-element.scroll-x {
  bottom: 0;
  height: 12px;
  left: 0;
  width: 100%;
}

.scrollbar-outer > .scroll-element.scroll-y {
  height: 100%;
  right: 0;
  top: 0;
  width: 12px;
}

.scrollbar-outer > .scroll-element.scroll-x .scroll-element_outer {
  height: 8px;
  top: 2px;
}

.scrollbar-outer > .scroll-element.scroll-y .scroll-element_outer {
  left: 2px;
  width: 8px;
}

.scrollbar-outer > .scroll-element .scroll-element_outer {
  overflow: hidden;
}

.scrollbar-outer > .scroll-element .scroll-element_track {
  background-color: #eeeeee;
}

.scrollbar-outer > .scroll-element .scroll-element_outer,
.scrollbar-outer > .scroll-element .scroll-element_track,
.scrollbar-outer > .scroll-element .scroll-bar {
  border-radius: 8px;
}

.scrollbar-outer > .scroll-element .scroll-bar {
  background-color: #d9d9d9;
}

.scrollbar-outer > .scroll-element .scroll-bar:hover {
  background-color: #c2c2c2;
}

.scrollbar-outer > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #919191;
}

.scrollbar-outer > .scroll-content.scroll-scrolly_visible {
  left: -12px;
  margin-left: 12px;
}

.scrollbar-outer > .scroll-content.scroll-scrollx_visible {
  top: -12px;
  margin-top: 12px;
}

.scrollbar-outer > .scroll-element.scroll-x .scroll-bar {
  min-width: 10px;
}

.scrollbar-outer > .scroll-element.scroll-y .scroll-bar {
  min-height: 10px;
}

.scrollbar-outer > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -14px;
}

.scrollbar-outer > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -14px;
}

.scrollbar-outer > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -14px;
}

.scrollbar-outer > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -14px;
}

/*
// SCROLLBAR MAC OS X

.scrollbar-macosx > .scroll-element,
.scrollbar-macosx > .scroll-element div
{
    background: none;
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
}

.scrollbar-macosx > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.scrollbar-macosx > .scroll-element .scroll-element_track { display: none; }
.scrollbar-macosx > .scroll-element .scroll-bar {
    background-color: #6C6E71;
    display: block;

    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;

    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;

    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    -ms-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}
.scrollbar-macosx:hover > .scroll-element .scroll-bar,
.scrollbar-macosx > .scroll-element.scroll-draggable .scroll-bar {
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=70);
    opacity: 0.7;
}

.scrollbar-macosx > .scroll-element.scroll-x {
    bottom: 0px;
    height: 0px;
    left: 0;
    min-width: 100%;
    overflow: visible;
    width: 100%;
}

.scrollbar-macosx > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 0px;
    top: 0;
    width: 0px;
}

// scrollbar height/width & offset from container borders
.scrollbar-macosx > .scroll-element.scroll-x .scroll-bar { height: 7px; min-width: 10px; top: -9px; }
.scrollbar-macosx > .scroll-element.scroll-y .scroll-bar { left: -9px; min-height: 10px; width: 7px; }

.scrollbar-macosx > .scroll-element.scroll-x .scroll-element_outer { left: 2px; }
.scrollbar-macosx > .scroll-element.scroll-x .scroll-element_size { left: -4px; }

.scrollbar-macosx > .scroll-element.scroll-y .scroll-element_outer { top: 2px; }
.scrollbar-macosx > .scroll-element.scroll-y .scroll-element_size { top: -4px; }

// update scrollbar offset if both scrolls are visible
.scrollbar-macosx > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -11px; }
.scrollbar-macosx > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -11px; }



// SCROLLBAR LIGHT

.scrollbar-light > .scroll-element,
.scrollbar-light > .scroll-element div {
    border: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    z-index: 10;
}

.scrollbar-light > .scroll-element {
    background-color: #ffffff;
}

.scrollbar-light > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.scrollbar-light > .scroll-element .scroll-element_outer {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.scrollbar-light > .scroll-element .scroll-element_size {
    background: #dbdbdb;
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RiZGJkYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlOGU4ZTgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+');
    background: -moz-linear-gradient(left, #dbdbdb 0%, #e8e8e8 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#dbdbdb), color-stop(100%,#e8e8e8));
    background: -webkit-linear-gradient(left, #dbdbdb 0%,#e8e8e8 100%);
    background: -o-linear-gradient(left, #dbdbdb 0%,#e8e8e8 100%);
    background: -ms-linear-gradient(left, #dbdbdb 0%,#e8e8e8 100%);
    background: linear-gradient(to right, #dbdbdb 0%,#e8e8e8 100%);

    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.scrollbar-light > .scroll-element.scroll-x {
    bottom: 0;
    height: 17px;
    left: 0;
    min-width: 100%;
    width: 100%;
}

.scrollbar-light > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 0;
    top: 0;
    width: 17px;
}

.scrollbar-light > .scroll-element .scroll-bar {
    background: #fefefe;
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZlZmVmZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNWY1ZjUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+');
    background: -moz-linear-gradient(left, #fefefe 0%, #f5f5f5 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#fefefe), color-stop(100%,#f5f5f5));
    background: -webkit-linear-gradient(left, #fefefe 0%,#f5f5f5 100%);
    background: -o-linear-gradient(left, #fefefe 0%,#f5f5f5 100%);
    background: -ms-linear-gradient(left, #fefefe 0%,#f5f5f5 100%);
    background: linear-gradient(to right, #fefefe 0%,#f5f5f5 100%);

    border: 1px solid #dbdbdb;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

// scrollbar height/width & offset from container borders

.scrollbar-light > .scroll-content.scroll-scrolly_visible { left: -17px; margin-left: 17px; }
.scrollbar-light > .scroll-content.scroll-scrollx_visible { top:  -17px; margin-top:  17px; }

.scrollbar-light > .scroll-element.scroll-x .scroll-bar { height: 10px; min-width: 10px; top: 0px; }
.scrollbar-light > .scroll-element.scroll-y .scroll-bar { left: 0px; min-height: 10px; width: 10px; }

.scrollbar-light > .scroll-element.scroll-x .scroll-element_outer { height: 12px; left: 2px; top: 2px; }
.scrollbar-light > .scroll-element.scroll-x .scroll-element_size { left: -4px; }

.scrollbar-light > .scroll-element.scroll-y .scroll-element_outer { left: 2px; top: 2px; width: 12px; }
.scrollbar-light > .scroll-element.scroll-y .scroll-element_size { top: -4px; }

// update scrollbar offset if both scrolls are visible

.scrollbar-light > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -19px; }
.scrollbar-light > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -19px; }

.scrollbar-light > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -19px; }
.scrollbar-light > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -19px; }



// SCROLLBAR RAIL

.scrollbar-rail > .scroll-element,
.scrollbar-rail > .scroll-element div
{
    border: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    z-index: 10;
}

.scrollbar-rail > .scroll-element {
    background-color: #ffffff;
}

.scrollbar-rail > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.scrollbar-rail > .scroll-element .scroll-element_size {
    background-color: #999;
    background-color: rgba(0, 0, 0, 0.3);
}

.scrollbar-rail > .scroll-element .scroll-element_outer:hover .scroll-element_size {
    background-color: #666;
    background-color: rgba(0, 0, 0, 0.5);
}

.scrollbar-rail > .scroll-element.scroll-x {
    bottom: 0;
    height: 12px;
    left: 0;
    min-width: 100%;
    padding: 3px 0 2px;
    width: 100%;
}

.scrollbar-rail > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    padding: 0 2px 0 3px;
    right: 0;
    top: 0;
    width: 12px;
}

.scrollbar-rail > .scroll-element .scroll-bar {
    background-color: #d0b9a0;

    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;

    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.scrollbar-rail > .scroll-element .scroll-element_outer:hover .scroll-bar {
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

// scrollbar height/width & offset from container borders

.scrollbar-rail > .scroll-content.scroll-scrolly_visible { left: -17px; margin-left: 17px; }
.scrollbar-rail > .scroll-content.scroll-scrollx_visible { margin-top: 17px; top: -17px; }

.scrollbar-rail > .scroll-element.scroll-x .scroll-bar { height: 10px; min-width: 10px; top: 1px; }
.scrollbar-rail > .scroll-element.scroll-y .scroll-bar { left: 1px; min-height: 10px; width: 10px; }

.scrollbar-rail > .scroll-element.scroll-x .scroll-element_outer { height: 15px; left: 5px; }
.scrollbar-rail > .scroll-element.scroll-x .scroll-element_size { height: 2px; left: -10px; top: 5px; }

.scrollbar-rail > .scroll-element.scroll-y .scroll-element_outer { top: 5px; width: 15px; }
.scrollbar-rail > .scroll-element.scroll-y .scroll-element_size { left: 5px; top: -10px; width: 2px; }

// update scrollbar offset if both scrolls are visible

.scrollbar-rail > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -25px; }
.scrollbar-rail > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -25px; }

.scrollbar-rail > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -25px; }
.scrollbar-rail > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -25px; }



// SCROLLBAR DYNAMIC

.scrollbar-dynamic > .scroll-element,
.scrollbar-dynamic > .scroll-element div
{
    background: none;
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
}

.scrollbar-dynamic > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.scrollbar-dynamic > .scroll-element.scroll-x {
    bottom: 2px;
    height: 7px;
    left: 0;
    min-width: 100%;
    width: 100%;
}

.scrollbar-dynamic > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 2px;
    top: 0;
    width: 7px;
}

.scrollbar-dynamic > .scroll-element .scroll-element_outer {
    opacity: 0.3;

    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
}
.scrollbar-dynamic > .scroll-element .scroll-element_size {
    background-color: #cccccc;
    opacity: 0;

    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;

    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    -ms-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.scrollbar-dynamic > .scroll-element .scroll-bar {
    background-color: #6c6e71;

    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

// scrollbar height/width & offset from container borders

.scrollbar-dynamic > .scroll-element.scroll-x .scroll-bar {
    bottom: 0;
    height: 7px;
    min-width: 24px;
    top: auto;
}
.scrollbar-dynamic > .scroll-element.scroll-y .scroll-bar {
    left: auto;
    min-height: 24px;
    right: 0;
    width: 7px;
}

.scrollbar-dynamic > .scroll-element.scroll-x .scroll-element_outer {
    bottom: 0;
    top: auto;
    left: 2px;

    -webkit-transition: height 0.2s;
    -moz-transition: height 0.2s;
    -o-transition: height 0.2s;
    -ms-transition: height 0.2s;
    transition: height 0.2s;
}

.scrollbar-dynamic > .scroll-element.scroll-y .scroll-element_outer {
    left: auto;
    right: 0;
    top: 2px;

    -webkit-transition: width 0.2s;
    -moz-transition: width 0.2s;
    -o-transition: width 0.2s;
    -ms-transition: width 0.2s;
    transition: width 0.2s;
}

.scrollbar-dynamic > .scroll-element.scroll-x .scroll-element_size { left: -4px; }
.scrollbar-dynamic > .scroll-element.scroll-y .scroll-element_size { top: -4px; }

// update scrollbar offset if both scrolls are visible

.scrollbar-dynamic > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -11px; }
.scrollbar-dynamic > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -11px; }

// hover & drag

.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer {
    overflow: hidden;

    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=70);
    opacity: 0.7;
}
.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer .scroll-element_size,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer .scroll-element_size {
    opacity: 1;
}
.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer .scroll-bar,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer .scroll-bar {
    height: 100%;
    width: 100%;

    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
}

.scrollbar-dynamic > .scroll-element.scroll-x:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-x.scroll-draggable .scroll-element_outer {
    height: 20px;
    min-height: 7px;
}
.scrollbar-dynamic > .scroll-element.scroll-y:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-y.scroll-draggable .scroll-element_outer {
    min-width: 7px;
    width: 20px;
}



// SCROLLBAR GOOGLE CHROME

.scrollbar-chrome > .scroll-element,
.scrollbar-chrome > .scroll-element div
{
    border: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    z-index: 10;
}

.scrollbar-chrome > .scroll-element {
    background-color: #ffffff;
}

.scrollbar-chrome > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.scrollbar-chrome > .scroll-element .scroll-element_outer {}

.scrollbar-chrome > .scroll-element .scroll-element_track {
    background: #f1f1f1;
    border: 1px solid #dbdbdb;
}

.scrollbar-chrome > .scroll-element.scroll-x {
    bottom: 0;
    height: 16px;
    left: 0;
    min-width: 100%;
    width: 100%;
}

.scrollbar-chrome > .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 0;
    top: 0;
    width: 16px;
}

.scrollbar-chrome > .scroll-element .scroll-bar {
    background-color: #d9d9d9;
    border: 1px solid #bdbdbd;
    cursor: default;

    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.scrollbar-chrome > .scroll-element .scroll-bar:hover {
    background-color: #c2c2c2;
    border-color: #a9a9a9;
}

.scrollbar-chrome > .scroll-element.scroll-draggable .scroll-bar {
    background-color: #919191;
    border-color: #7e7e7e;
}

// scrollbar height/width & offset from container borders

.scrollbar-chrome > .scroll-content.scroll-scrolly_visible { left: -16px; margin-left: 16px; }
.scrollbar-chrome > .scroll-content.scroll-scrollx_visible { top:  -16px; margin-top:  16px; }

.scrollbar-chrome > .scroll-element.scroll-x .scroll-bar { height: 8px; min-width: 10px; top: 3px; }
.scrollbar-chrome > .scroll-element.scroll-y .scroll-bar { left: 3px; min-height: 10px; width: 8px; }

.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_outer { border-left: 1px solid #dbdbdb; }
.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_track { height: 14px; left: -3px; }
.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_size { height: 14px; left: -4px; }

.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_outer { border-top: 1px solid #dbdbdb; }
.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_track { top: -3px; width: 14px; }
.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_size { top: -4px; width: 14px; }

// update scrollbar offset if both scrolls are visible

.scrollbar-chrome > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -19px; }
.scrollbar-chrome > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -19px; }

.scrollbar-chrome > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -19px; }
.scrollbar-chrome > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -19px; }
*/
body[data-aos-duration='50'] [data-aos], [data-aos][data-aos][data-aos-duration='50'] {
  transition-duration: 50ms;
}

body[data-aos-delay='50'] [data-aos], [data-aos][data-aos][data-aos-delay='50'] {
  transition-delay: 0;
}

body[data-aos-delay='50'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='50'].aos-animate {
  transition-delay: 50ms;
}

body[data-aos-duration='100'] [data-aos], [data-aos][data-aos][data-aos-duration='100'] {
  transition-duration: 100ms;
}

body[data-aos-delay='100'] [data-aos], [data-aos][data-aos][data-aos-delay='100'] {
  transition-delay: 0;
}

body[data-aos-delay='100'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='100'].aos-animate {
  transition-delay: 100ms;
}

body[data-aos-duration='150'] [data-aos], [data-aos][data-aos][data-aos-duration='150'] {
  transition-duration: 150ms;
}

body[data-aos-delay='150'] [data-aos], [data-aos][data-aos][data-aos-delay='150'] {
  transition-delay: 0;
}

body[data-aos-delay='150'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='150'].aos-animate {
  transition-delay: 150ms;
}

body[data-aos-duration='200'] [data-aos], [data-aos][data-aos][data-aos-duration='200'] {
  transition-duration: 200ms;
}

body[data-aos-delay='200'] [data-aos], [data-aos][data-aos][data-aos-delay='200'] {
  transition-delay: 0;
}

body[data-aos-delay='200'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='200'].aos-animate {
  transition-delay: 200ms;
}

body[data-aos-duration='250'] [data-aos], [data-aos][data-aos][data-aos-duration='250'] {
  transition-duration: 250ms;
}

body[data-aos-delay='250'] [data-aos], [data-aos][data-aos][data-aos-delay='250'] {
  transition-delay: 0;
}

body[data-aos-delay='250'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='250'].aos-animate {
  transition-delay: 250ms;
}

body[data-aos-duration='300'] [data-aos], [data-aos][data-aos][data-aos-duration='300'] {
  transition-duration: 300ms;
}

body[data-aos-delay='300'] [data-aos], [data-aos][data-aos][data-aos-delay='300'] {
  transition-delay: 0;
}

body[data-aos-delay='300'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='300'].aos-animate {
  transition-delay: 300ms;
}

body[data-aos-duration='350'] [data-aos], [data-aos][data-aos][data-aos-duration='350'] {
  transition-duration: 350ms;
}

body[data-aos-delay='350'] [data-aos], [data-aos][data-aos][data-aos-delay='350'] {
  transition-delay: 0;
}

body[data-aos-delay='350'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='350'].aos-animate {
  transition-delay: 350ms;
}

body[data-aos-duration='400'] [data-aos], [data-aos][data-aos][data-aos-duration='400'] {
  transition-duration: 400ms;
}

body[data-aos-delay='400'] [data-aos], [data-aos][data-aos][data-aos-delay='400'] {
  transition-delay: 0;
}

body[data-aos-delay='400'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='400'].aos-animate {
  transition-delay: 400ms;
}

body[data-aos-duration='450'] [data-aos], [data-aos][data-aos][data-aos-duration='450'] {
  transition-duration: 450ms;
}

body[data-aos-delay='450'] [data-aos], [data-aos][data-aos][data-aos-delay='450'] {
  transition-delay: 0;
}

body[data-aos-delay='450'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='450'].aos-animate {
  transition-delay: 450ms;
}

body[data-aos-duration='500'] [data-aos], [data-aos][data-aos][data-aos-duration='500'] {
  transition-duration: 500ms;
}

body[data-aos-delay='500'] [data-aos], [data-aos][data-aos][data-aos-delay='500'] {
  transition-delay: 0;
}

body[data-aos-delay='500'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='500'].aos-animate {
  transition-delay: 500ms;
}

body[data-aos-duration='550'] [data-aos], [data-aos][data-aos][data-aos-duration='550'] {
  transition-duration: 550ms;
}

body[data-aos-delay='550'] [data-aos], [data-aos][data-aos][data-aos-delay='550'] {
  transition-delay: 0;
}

body[data-aos-delay='550'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='550'].aos-animate {
  transition-delay: 550ms;
}

body[data-aos-duration='600'] [data-aos], [data-aos][data-aos][data-aos-duration='600'] {
  transition-duration: 600ms;
}

body[data-aos-delay='600'] [data-aos], [data-aos][data-aos][data-aos-delay='600'] {
  transition-delay: 0;
}

body[data-aos-delay='600'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='600'].aos-animate {
  transition-delay: 600ms;
}

body[data-aos-duration='650'] [data-aos], [data-aos][data-aos][data-aos-duration='650'] {
  transition-duration: 650ms;
}

body[data-aos-delay='650'] [data-aos], [data-aos][data-aos][data-aos-delay='650'] {
  transition-delay: 0;
}

body[data-aos-delay='650'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='650'].aos-animate {
  transition-delay: 650ms;
}

body[data-aos-duration='700'] [data-aos], [data-aos][data-aos][data-aos-duration='700'] {
  transition-duration: 700ms;
}

body[data-aos-delay='700'] [data-aos], [data-aos][data-aos][data-aos-delay='700'] {
  transition-delay: 0;
}

body[data-aos-delay='700'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='700'].aos-animate {
  transition-delay: 700ms;
}

body[data-aos-duration='750'] [data-aos], [data-aos][data-aos][data-aos-duration='750'] {
  transition-duration: 750ms;
}

body[data-aos-delay='750'] [data-aos], [data-aos][data-aos][data-aos-delay='750'] {
  transition-delay: 0;
}

body[data-aos-delay='750'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='750'].aos-animate {
  transition-delay: 750ms;
}

body[data-aos-duration='800'] [data-aos], [data-aos][data-aos][data-aos-duration='800'] {
  transition-duration: 800ms;
}

body[data-aos-delay='800'] [data-aos], [data-aos][data-aos][data-aos-delay='800'] {
  transition-delay: 0;
}

body[data-aos-delay='800'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='800'].aos-animate {
  transition-delay: 800ms;
}

body[data-aos-duration='850'] [data-aos], [data-aos][data-aos][data-aos-duration='850'] {
  transition-duration: 850ms;
}

body[data-aos-delay='850'] [data-aos], [data-aos][data-aos][data-aos-delay='850'] {
  transition-delay: 0;
}

body[data-aos-delay='850'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='850'].aos-animate {
  transition-delay: 850ms;
}

body[data-aos-duration='900'] [data-aos], [data-aos][data-aos][data-aos-duration='900'] {
  transition-duration: 900ms;
}

body[data-aos-delay='900'] [data-aos], [data-aos][data-aos][data-aos-delay='900'] {
  transition-delay: 0;
}

body[data-aos-delay='900'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='900'].aos-animate {
  transition-delay: 900ms;
}

body[data-aos-duration='950'] [data-aos], [data-aos][data-aos][data-aos-duration='950'] {
  transition-duration: 950ms;
}

body[data-aos-delay='950'] [data-aos], [data-aos][data-aos][data-aos-delay='950'] {
  transition-delay: 0;
}

body[data-aos-delay='950'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='950'].aos-animate {
  transition-delay: 950ms;
}

body[data-aos-duration='1000'] [data-aos], [data-aos][data-aos][data-aos-duration='1000'] {
  transition-duration: 1000ms;
}

body[data-aos-delay='1000'] [data-aos], [data-aos][data-aos][data-aos-delay='1000'] {
  transition-delay: 0;
}

body[data-aos-delay='1000'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1000'].aos-animate {
  transition-delay: 1000ms;
}

body[data-aos-duration='1050'] [data-aos], [data-aos][data-aos][data-aos-duration='1050'] {
  transition-duration: 1050ms;
}

body[data-aos-delay='1050'] [data-aos], [data-aos][data-aos][data-aos-delay='1050'] {
  transition-delay: 0;
}

body[data-aos-delay='1050'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1050'].aos-animate {
  transition-delay: 1050ms;
}

body[data-aos-duration='1100'] [data-aos], [data-aos][data-aos][data-aos-duration='1100'] {
  transition-duration: 1100ms;
}

body[data-aos-delay='1100'] [data-aos], [data-aos][data-aos][data-aos-delay='1100'] {
  transition-delay: 0;
}

body[data-aos-delay='1100'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1100'].aos-animate {
  transition-delay: 1100ms;
}

body[data-aos-duration='1150'] [data-aos], [data-aos][data-aos][data-aos-duration='1150'] {
  transition-duration: 1150ms;
}

body[data-aos-delay='1150'] [data-aos], [data-aos][data-aos][data-aos-delay='1150'] {
  transition-delay: 0;
}

body[data-aos-delay='1150'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1150'].aos-animate {
  transition-delay: 1150ms;
}

body[data-aos-duration='1200'] [data-aos], [data-aos][data-aos][data-aos-duration='1200'] {
  transition-duration: 1200ms;
}

body[data-aos-delay='1200'] [data-aos], [data-aos][data-aos][data-aos-delay='1200'] {
  transition-delay: 0;
}

body[data-aos-delay='1200'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1200'].aos-animate {
  transition-delay: 1200ms;
}

body[data-aos-duration='1250'] [data-aos], [data-aos][data-aos][data-aos-duration='1250'] {
  transition-duration: 1250ms;
}

body[data-aos-delay='1250'] [data-aos], [data-aos][data-aos][data-aos-delay='1250'] {
  transition-delay: 0;
}

body[data-aos-delay='1250'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1250'].aos-animate {
  transition-delay: 1250ms;
}

body[data-aos-duration='1300'] [data-aos], [data-aos][data-aos][data-aos-duration='1300'] {
  transition-duration: 1300ms;
}

body[data-aos-delay='1300'] [data-aos], [data-aos][data-aos][data-aos-delay='1300'] {
  transition-delay: 0;
}

body[data-aos-delay='1300'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1300'].aos-animate {
  transition-delay: 1300ms;
}

body[data-aos-duration='1350'] [data-aos], [data-aos][data-aos][data-aos-duration='1350'] {
  transition-duration: 1350ms;
}

body[data-aos-delay='1350'] [data-aos], [data-aos][data-aos][data-aos-delay='1350'] {
  transition-delay: 0;
}

body[data-aos-delay='1350'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1350'].aos-animate {
  transition-delay: 1350ms;
}

body[data-aos-duration='1400'] [data-aos], [data-aos][data-aos][data-aos-duration='1400'] {
  transition-duration: 1400ms;
}

body[data-aos-delay='1400'] [data-aos], [data-aos][data-aos][data-aos-delay='1400'] {
  transition-delay: 0;
}

body[data-aos-delay='1400'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1400'].aos-animate {
  transition-delay: 1400ms;
}

body[data-aos-duration='1450'] [data-aos], [data-aos][data-aos][data-aos-duration='1450'] {
  transition-duration: 1450ms;
}

body[data-aos-delay='1450'] [data-aos], [data-aos][data-aos][data-aos-delay='1450'] {
  transition-delay: 0;
}

body[data-aos-delay='1450'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1450'].aos-animate {
  transition-delay: 1450ms;
}

body[data-aos-duration='1500'] [data-aos], [data-aos][data-aos][data-aos-duration='1500'] {
  transition-duration: 1500ms;
}

body[data-aos-delay='1500'] [data-aos], [data-aos][data-aos][data-aos-delay='1500'] {
  transition-delay: 0;
}

body[data-aos-delay='1500'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1500'].aos-animate {
  transition-delay: 1500ms;
}

body[data-aos-duration='1550'] [data-aos], [data-aos][data-aos][data-aos-duration='1550'] {
  transition-duration: 1550ms;
}

body[data-aos-delay='1550'] [data-aos], [data-aos][data-aos][data-aos-delay='1550'] {
  transition-delay: 0;
}

body[data-aos-delay='1550'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1550'].aos-animate {
  transition-delay: 1550ms;
}

body[data-aos-duration='1600'] [data-aos], [data-aos][data-aos][data-aos-duration='1600'] {
  transition-duration: 1600ms;
}

body[data-aos-delay='1600'] [data-aos], [data-aos][data-aos][data-aos-delay='1600'] {
  transition-delay: 0;
}

body[data-aos-delay='1600'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1600'].aos-animate {
  transition-delay: 1600ms;
}

body[data-aos-duration='1650'] [data-aos], [data-aos][data-aos][data-aos-duration='1650'] {
  transition-duration: 1650ms;
}

body[data-aos-delay='1650'] [data-aos], [data-aos][data-aos][data-aos-delay='1650'] {
  transition-delay: 0;
}

body[data-aos-delay='1650'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1650'].aos-animate {
  transition-delay: 1650ms;
}

body[data-aos-duration='1700'] [data-aos], [data-aos][data-aos][data-aos-duration='1700'] {
  transition-duration: 1700ms;
}

body[data-aos-delay='1700'] [data-aos], [data-aos][data-aos][data-aos-delay='1700'] {
  transition-delay: 0;
}

body[data-aos-delay='1700'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1700'].aos-animate {
  transition-delay: 1700ms;
}

body[data-aos-duration='1750'] [data-aos], [data-aos][data-aos][data-aos-duration='1750'] {
  transition-duration: 1750ms;
}

body[data-aos-delay='1750'] [data-aos], [data-aos][data-aos][data-aos-delay='1750'] {
  transition-delay: 0;
}

body[data-aos-delay='1750'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1750'].aos-animate {
  transition-delay: 1750ms;
}

body[data-aos-duration='1800'] [data-aos], [data-aos][data-aos][data-aos-duration='1800'] {
  transition-duration: 1800ms;
}

body[data-aos-delay='1800'] [data-aos], [data-aos][data-aos][data-aos-delay='1800'] {
  transition-delay: 0;
}

body[data-aos-delay='1800'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1800'].aos-animate {
  transition-delay: 1800ms;
}

body[data-aos-duration='1850'] [data-aos], [data-aos][data-aos][data-aos-duration='1850'] {
  transition-duration: 1850ms;
}

body[data-aos-delay='1850'] [data-aos], [data-aos][data-aos][data-aos-delay='1850'] {
  transition-delay: 0;
}

body[data-aos-delay='1850'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1850'].aos-animate {
  transition-delay: 1850ms;
}

body[data-aos-duration='1900'] [data-aos], [data-aos][data-aos][data-aos-duration='1900'] {
  transition-duration: 1900ms;
}

body[data-aos-delay='1900'] [data-aos], [data-aos][data-aos][data-aos-delay='1900'] {
  transition-delay: 0;
}

body[data-aos-delay='1900'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1900'].aos-animate {
  transition-delay: 1900ms;
}

body[data-aos-duration='1950'] [data-aos], [data-aos][data-aos][data-aos-duration='1950'] {
  transition-duration: 1950ms;
}

body[data-aos-delay='1950'] [data-aos], [data-aos][data-aos][data-aos-delay='1950'] {
  transition-delay: 0;
}

body[data-aos-delay='1950'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='1950'].aos-animate {
  transition-delay: 1950ms;
}

body[data-aos-duration='2000'] [data-aos], [data-aos][data-aos][data-aos-duration='2000'] {
  transition-duration: 2000ms;
}

body[data-aos-delay='2000'] [data-aos], [data-aos][data-aos][data-aos-delay='2000'] {
  transition-delay: 0;
}

body[data-aos-delay='2000'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2000'].aos-animate {
  transition-delay: 2000ms;
}

body[data-aos-duration='2050'] [data-aos], [data-aos][data-aos][data-aos-duration='2050'] {
  transition-duration: 2050ms;
}

body[data-aos-delay='2050'] [data-aos], [data-aos][data-aos][data-aos-delay='2050'] {
  transition-delay: 0;
}

body[data-aos-delay='2050'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2050'].aos-animate {
  transition-delay: 2050ms;
}

body[data-aos-duration='2100'] [data-aos], [data-aos][data-aos][data-aos-duration='2100'] {
  transition-duration: 2100ms;
}

body[data-aos-delay='2100'] [data-aos], [data-aos][data-aos][data-aos-delay='2100'] {
  transition-delay: 0;
}

body[data-aos-delay='2100'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2100'].aos-animate {
  transition-delay: 2100ms;
}

body[data-aos-duration='2150'] [data-aos], [data-aos][data-aos][data-aos-duration='2150'] {
  transition-duration: 2150ms;
}

body[data-aos-delay='2150'] [data-aos], [data-aos][data-aos][data-aos-delay='2150'] {
  transition-delay: 0;
}

body[data-aos-delay='2150'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2150'].aos-animate {
  transition-delay: 2150ms;
}

body[data-aos-duration='2200'] [data-aos], [data-aos][data-aos][data-aos-duration='2200'] {
  transition-duration: 2200ms;
}

body[data-aos-delay='2200'] [data-aos], [data-aos][data-aos][data-aos-delay='2200'] {
  transition-delay: 0;
}

body[data-aos-delay='2200'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2200'].aos-animate {
  transition-delay: 2200ms;
}

body[data-aos-duration='2250'] [data-aos], [data-aos][data-aos][data-aos-duration='2250'] {
  transition-duration: 2250ms;
}

body[data-aos-delay='2250'] [data-aos], [data-aos][data-aos][data-aos-delay='2250'] {
  transition-delay: 0;
}

body[data-aos-delay='2250'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2250'].aos-animate {
  transition-delay: 2250ms;
}

body[data-aos-duration='2300'] [data-aos], [data-aos][data-aos][data-aos-duration='2300'] {
  transition-duration: 2300ms;
}

body[data-aos-delay='2300'] [data-aos], [data-aos][data-aos][data-aos-delay='2300'] {
  transition-delay: 0;
}

body[data-aos-delay='2300'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2300'].aos-animate {
  transition-delay: 2300ms;
}

body[data-aos-duration='2350'] [data-aos], [data-aos][data-aos][data-aos-duration='2350'] {
  transition-duration: 2350ms;
}

body[data-aos-delay='2350'] [data-aos], [data-aos][data-aos][data-aos-delay='2350'] {
  transition-delay: 0;
}

body[data-aos-delay='2350'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2350'].aos-animate {
  transition-delay: 2350ms;
}

body[data-aos-duration='2400'] [data-aos], [data-aos][data-aos][data-aos-duration='2400'] {
  transition-duration: 2400ms;
}

body[data-aos-delay='2400'] [data-aos], [data-aos][data-aos][data-aos-delay='2400'] {
  transition-delay: 0;
}

body[data-aos-delay='2400'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2400'].aos-animate {
  transition-delay: 2400ms;
}

body[data-aos-duration='2450'] [data-aos], [data-aos][data-aos][data-aos-duration='2450'] {
  transition-duration: 2450ms;
}

body[data-aos-delay='2450'] [data-aos], [data-aos][data-aos][data-aos-delay='2450'] {
  transition-delay: 0;
}

body[data-aos-delay='2450'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2450'].aos-animate {
  transition-delay: 2450ms;
}

body[data-aos-duration='2500'] [data-aos], [data-aos][data-aos][data-aos-duration='2500'] {
  transition-duration: 2500ms;
}

body[data-aos-delay='2500'] [data-aos], [data-aos][data-aos][data-aos-delay='2500'] {
  transition-delay: 0;
}

body[data-aos-delay='2500'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2500'].aos-animate {
  transition-delay: 2500ms;
}

body[data-aos-duration='2550'] [data-aos], [data-aos][data-aos][data-aos-duration='2550'] {
  transition-duration: 2550ms;
}

body[data-aos-delay='2550'] [data-aos], [data-aos][data-aos][data-aos-delay='2550'] {
  transition-delay: 0;
}

body[data-aos-delay='2550'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2550'].aos-animate {
  transition-delay: 2550ms;
}

body[data-aos-duration='2600'] [data-aos], [data-aos][data-aos][data-aos-duration='2600'] {
  transition-duration: 2600ms;
}

body[data-aos-delay='2600'] [data-aos], [data-aos][data-aos][data-aos-delay='2600'] {
  transition-delay: 0;
}

body[data-aos-delay='2600'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2600'].aos-animate {
  transition-delay: 2600ms;
}

body[data-aos-duration='2650'] [data-aos], [data-aos][data-aos][data-aos-duration='2650'] {
  transition-duration: 2650ms;
}

body[data-aos-delay='2650'] [data-aos], [data-aos][data-aos][data-aos-delay='2650'] {
  transition-delay: 0;
}

body[data-aos-delay='2650'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2650'].aos-animate {
  transition-delay: 2650ms;
}

body[data-aos-duration='2700'] [data-aos], [data-aos][data-aos][data-aos-duration='2700'] {
  transition-duration: 2700ms;
}

body[data-aos-delay='2700'] [data-aos], [data-aos][data-aos][data-aos-delay='2700'] {
  transition-delay: 0;
}

body[data-aos-delay='2700'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2700'].aos-animate {
  transition-delay: 2700ms;
}

body[data-aos-duration='2750'] [data-aos], [data-aos][data-aos][data-aos-duration='2750'] {
  transition-duration: 2750ms;
}

body[data-aos-delay='2750'] [data-aos], [data-aos][data-aos][data-aos-delay='2750'] {
  transition-delay: 0;
}

body[data-aos-delay='2750'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2750'].aos-animate {
  transition-delay: 2750ms;
}

body[data-aos-duration='2800'] [data-aos], [data-aos][data-aos][data-aos-duration='2800'] {
  transition-duration: 2800ms;
}

body[data-aos-delay='2800'] [data-aos], [data-aos][data-aos][data-aos-delay='2800'] {
  transition-delay: 0;
}

body[data-aos-delay='2800'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2800'].aos-animate {
  transition-delay: 2800ms;
}

body[data-aos-duration='2850'] [data-aos], [data-aos][data-aos][data-aos-duration='2850'] {
  transition-duration: 2850ms;
}

body[data-aos-delay='2850'] [data-aos], [data-aos][data-aos][data-aos-delay='2850'] {
  transition-delay: 0;
}

body[data-aos-delay='2850'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2850'].aos-animate {
  transition-delay: 2850ms;
}

body[data-aos-duration='2900'] [data-aos], [data-aos][data-aos][data-aos-duration='2900'] {
  transition-duration: 2900ms;
}

body[data-aos-delay='2900'] [data-aos], [data-aos][data-aos][data-aos-delay='2900'] {
  transition-delay: 0;
}

body[data-aos-delay='2900'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2900'].aos-animate {
  transition-delay: 2900ms;
}

body[data-aos-duration='2950'] [data-aos], [data-aos][data-aos][data-aos-duration='2950'] {
  transition-duration: 2950ms;
}

body[data-aos-delay='2950'] [data-aos], [data-aos][data-aos][data-aos-delay='2950'] {
  transition-delay: 0;
}

body[data-aos-delay='2950'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='2950'].aos-animate {
  transition-delay: 2950ms;
}

body[data-aos-duration='3000'] [data-aos], [data-aos][data-aos][data-aos-duration='3000'] {
  transition-duration: 3000ms;
}

body[data-aos-delay='3000'] [data-aos], [data-aos][data-aos][data-aos-delay='3000'] {
  transition-delay: 0;
}

body[data-aos-delay='3000'] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay='3000'].aos-animate {
  transition-delay: 3000ms;
}

body[data-aos-easing="linear"] [data-aos], [data-aos][data-aos][data-aos-easing="linear"] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

body[data-aos-easing="ease"] [data-aos], [data-aos][data-aos][data-aos-easing="ease"] {
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

body[data-aos-easing="ease-in"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in"] {
  transition-timing-function: cubic-bezier(0.42, 0, 1, 1);
}

body[data-aos-easing="ease-out"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-out"] {
  transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
}

body[data-aos-easing="ease-in-out"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-out"] {
  transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
}

body[data-aos-easing="ease-in-back"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-back"] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

body[data-aos-easing="ease-out-back"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-out-back"] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body[data-aos-easing="ease-in-out-back"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-out-back"] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body[data-aos-easing="ease-in-sine"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-sine"] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

body[data-aos-easing="ease-out-sine"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-out-sine"] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

body[data-aos-easing="ease-in-out-sine"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-out-sine"] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

body[data-aos-easing="ease-in-quad"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-quad"] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

body[data-aos-easing="ease-out-quad"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-out-quad"] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body[data-aos-easing="ease-in-out-quad"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-out-quad"] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

body[data-aos-easing="ease-in-cubic"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-cubic"] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

body[data-aos-easing="ease-out-cubic"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-out-cubic"] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body[data-aos-easing="ease-in-out-cubic"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-out-cubic"] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

body[data-aos-easing="ease-in-quart"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-quart"] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

body[data-aos-easing="ease-out-quart"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-out-quart"] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body[data-aos-easing="ease-in-out-quart"] [data-aos], [data-aos][data-aos][data-aos-easing="ease-in-out-quart"] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

/**
 * Fade animations:
 * fade
 * fade-up, fade-down, fade-left, fade-right
 * fade-up-right, fade-up-left, fade-down-right, fade-down-left
 */
[data-aos^='fade'][data-aos^='fade'] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^='fade'][data-aos^='fade'].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-aos='fade-up'] {
  transform: translate3d(0, 100px, 0);
}

[data-aos='fade-down'] {
  transform: translate3d(0, -100px, 0);
}

[data-aos='fade-right'] {
  transform: translate3d(-100px, 0, 0);
}

[data-aos='fade-left'] {
  transform: translate3d(100px, 0, 0);
}

[data-aos='fade-up-right'] {
  transform: translate3d(-100px, 100px, 0);
}

[data-aos='fade-up-left'] {
  transform: translate3d(100px, 100px, 0);
}

[data-aos='fade-down-right'] {
  transform: translate3d(-100px, -100px, 0);
}

[data-aos='fade-down-left'] {
  transform: translate3d(100px, -100px, 0);
}

/**
 * Zoom animations:
 * zoom-in, zoom-in-up, zoom-in-down, zoom-in-left, zoom-in-right
 * zoom-out, zoom-out-up, zoom-out-down, zoom-out-left, zoom-out-right
 */
[data-aos^='zoom'][data-aos^='zoom'] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^='zoom'][data-aos^='zoom'].aos-animate {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

[data-aos='zoom-in'] {
  transform: scale(0.6);
}

[data-aos='zoom-in-up'] {
  transform: translate3d(0, 100px, 0) scale(0.6);
}

[data-aos='zoom-in-down'] {
  transform: translate3d(0, -100px, 0) scale(0.6);
}

[data-aos='zoom-in-right'] {
  transform: translate3d(-100px, 0, 0) scale(0.6);
}

[data-aos='zoom-in-left'] {
  transform: translate3d(100px, 0, 0) scale(0.6);
}

[data-aos='zoom-out'] {
  transform: scale(1.2);
}

[data-aos='zoom-out-up'] {
  transform: translate3d(0, 100px, 0) scale(1.2);
}

[data-aos='zoom-out-down'] {
  transform: translate3d(0, -100px, 0) scale(1.2);
}

[data-aos='zoom-out-right'] {
  transform: translate3d(-100px, 0, 0) scale(1.2);
}

[data-aos='zoom-out-left'] {
  transform: translate3d(100px, 0, 0) scale(1.2);
}

/**
 * Slide animations
 */
[data-aos^='slide'][data-aos^='slide'] {
  transition-property: transform;
}

[data-aos^='slide'][data-aos^='slide'].aos-animate {
  transform: translate3d(0, 0, 0);
}

[data-aos='slide-up'] {
  transform: translate3d(0, 100%, 0);
}

[data-aos='slide-down'] {
  transform: translate3d(0, -100%, 0);
}

[data-aos='slide-right'] {
  transform: translate3d(-100%, 0, 0);
}

[data-aos='slide-left'] {
  transform: translate3d(100%, 0, 0);
}

/**
 * Flip animations:
 * flip-left, flip-right, flip-up, flip-down
 */
[data-aos^='flip'][data-aos^='flip'] {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition-property: transform;
}

[data-aos='flip-left'] {
  transform: perspective(2500px) rotateY(-100deg);
}

[data-aos='flip-left'].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos='flip-right'] {
  transform: perspective(2500px) rotateY(100deg);
}

[data-aos='flip-right'].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos='flip-up'] {
  transform: perspective(2500px) rotateX(-100deg);
}

[data-aos='flip-up'].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

[data-aos='flip-down'] {
  transform: perspective(2500px) rotateX(100deg);
}

[data-aos='flip-down'].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

body, select, input, textarea {
  color: #262627;
  font-weight: 500;
  -webkit-text-size-adjust: none;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 93%;
  line-height: 1.625;
}

@media screen and (min-width: 640px) {
  body, select, input, textarea {
    font-size: 95%;
  }
}

@media screen and (min-width: 960px) {
  body, select, input, textarea {
    font-size: 98%;
  }
}

@media screen and (min-width: 1280px) {
  body, select, input, textarea {
    font-size: 100%;
  }
}

select, input, textarea,
[type="submit"] {
  font-family: "Overpass-Light", sans-serif;
}

body {
  background-color: #fff;
  overflow-x: hidden;
  font-family: "Overpass-Light", sans-serif;
  position: relative;
  width: 100%;
}

::selection {
  color: #fff;
  background: #262627;
}

::-webkit-input-placeholder {
  color: #929b9f;
}

:-moz-placeholder {
  color: #929b9f;
}

::-moz-placeholder {
  color: #929b9f;
}

:-ms-input-placeholder {
  color: #929b9f;
}

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

a {
  color: #b0001d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Overpass-Bold", sans-serif;
  font-weight: normal;
  line-height: 1.17;
  margin: 0 0 1.25rem;
}

h1.upper, h2.upper, h3.upper, h4.upper, h5.upper, h6.upper,
.h1.upper, .h2.upper, .h3.upper, .h4.upper, .h5.upper, .h6.upper {
  text-transform: uppercase;
}

h1.center, h2.center, h3.center, h4.center, h5.center, h6.center,
.h1.center, .h2.center, .h3.center, .h4.center, .h5.center, .h6.center {
  text-align: center;
}

h1 sup, h2 sup, h3 sup, h4 sup, h5 sup, h6 sup,
.h1 sup, .h2 sup, .h3 sup, .h4 sup, .h5 sup, .h6 sup {
  font-size: 30%;
  top: -1.7em;
}

h1, .h1 {
  color: #262627;
  font-size: 2.1875rem;
  text-transform: uppercase;
}

h2, .h2 {
  color: #262627;
  font-size: 2rem;
  font-family: "Overpass-Light", sans-serif;
}

h3, .h3 {
  color: #262627;
  font-size: 1.875rem;
}

h4, .h4 {
  color: #262627;
  font-size: 1.5625rem;
}

h5, .h5 {
  color: #262627;
  font-size: 1.375rem;
}

h6, .h6 {
  color: #262627;
  font-size: 1.25rem;
}

@media screen and (min-width: 960px) {
  h1, .h1 {
    font-size: 2.8125rem;
  }
  h2, .h2 {
    font-size: 2rem;
  }
  h3, .h3 {
    font-size: 2rem;
  }
  h4, .h4 {
    font-size: 1.75rem;
  }
  h5, .h5 {
    font-size: 1.5rem;
  }
  h6, .h6 {
    font-size: 1.375rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}

@media screen and (min-width: 640px) {
  img {
    display: inline;
  }
}

p {
  margin: 0 0 1rem;
  line-height: 1.5;
}

b,
strong {
  font-weight: bold;
}

address {
  font-style: normal;
}

.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.no-display {
  display: none;
}

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

.testing {
  color: red !important;
}

.visually-hidden {
  display: block;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(1px);
  clip-path: inset(1px);
  white-space: nowrap;
  position: absolute;
}

.sr-only,
.screen-reader-text {
  position: absolute;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}

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


.clearfix:after {
  clear: both;
}

.page-wrapper {
  margin: 0 auto;
  max-width: 80rem;
  padding: 0 0.625rem;
}

.page-wrapper.small {
  max-width: 800px;
}

.page-wrapper.medium {
  max-width: 960px;
}

.page-wrapper.large {
  max-width: 1100px;
}

.cookie-confirmation {
  position: relative;
  z-index: 100;
  background: #ebebeb;
  font: normal 14px/1.25 "Overpass-Light", sans-serif;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.show-cookie-banner .cookie-confirmation {
  max-height: 200px;
}

.cookie-confirmation .page-wrapper {
  padding: 10px 20px;
}

.cookie-confirmation .btn {
  margin-top: 10px;
  padding: 10px;
  background: none;
  border: solid #6e6e6e 2px;
  color: #6e6e6e;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
}

.cookie-confirmation .btn:hover {
  background: #6e6e6e;
  color: #FFFFFF;
}

@media screen and (min-width: 640px) {
  .cookie-confirmation .page-wrapper {
    display: flex;
    align-items: center;
    max-width: 1000px;
  }
  .cookie-confirmation .notice {
    flex: 1;
    margin-right: 20px;
  }
  .cookie-confirmation .btn {
    margin: 0;
    padding: 15px;
  }
}

.header-red-banner {
  background-color: #b1000d;
  color: white;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.header-red-banner a {
  color: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 640px) {
  .header-red-banner .page-wrapper {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
}

.header-red-banner--where-to-buy {
  line-height: 1.5625rem;
  border-bottom: 2px solid #c6444e;
}

@media screen and (min-width: 640px) {
  .header-red-banner--where-to-buy {
    border: none;
  }
}

.header-red-banner--where-to-buy svg {
  width: 12px;
  height: 17px;
  fill: white;
  margin-left: 7px;
}

.header-red-banner--join-vc {
  font-family: "Overpass-Bold", sans-serif;
  line-height: 2.3125rem;
}

@media screen and (min-width: 640px) {
  .header-red-banner--join-vc {
    line-height: 2.5rem;
  }
}

.header-red-banner--join-vc svg {
  width: auto;
  height: 28px;
  fill: white;
  margin-right: 10px;
}

@media screen and (max-width: 959px) {
  body {
    padding-top: 50px;
  }
  body.page-id-20, body.page-id-10163 {
    padding-top: 0;
  }
}

.find-retailer-container {
  display: none;
}

.page-id-10163 .find-retailer-container {
  display: none !important;
}

@media screen and (max-width: 959px) {
  .find-retailer-container {
    display: block;
    background-color: #b0001d;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 901;
  }
  .find-retailer-container a {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .find-retailer-container-blurb {
    color: white;
    font-family: "Overpass-Bold", sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-size: 1.25rem;
    line-height: 3.125rem;
    margin-right: 10px;
  }
  .find-retailer-container svg {
    height: 26px;
    width: 24px;
    fill: white;
  }
}

.header-main {
  position: relative;
  background-color: white;
  z-index: 900;
}

.header-logo {
  display: block;
  height: 38px;
  width: 140px;
  margin: 9px 0;
  background: transparent url(../svg/logo-golfpride-new-2022.svg) center center no-repeat;
  background-size: contain;
  text-indent: -9999px;
}

.header-logo h1 {
  margin: 0;
}

@media screen and (max-width: 959px) {
  .header-logo {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 960px) {
  .header-logo {
    width: 260px;
    height: 38px;
  }
}

.buy-link {
  display: none;
}

@media screen and (min-width: 960px) {
  .buy-link {
    display: inline;
  }
}

.eyebrow-nav {
  background-color: #131315;
  color: white;
}

.page-id-10163 .eyebrow-nav {
  display: none !important;
}

.eyebrow-nav .page-wrapper {
  display: flex;
  height: 30px;
  align-items: center;
  justify-content: space-between;
}

.eyebrow-nav .country-wrapper {
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.eyebrow-nav .country-wrapper .label {
  font-size: 11px;
  text-transform: uppercase;
}

.eyebrow-nav .country-wrapper .selection .selector span {
  padding: 6px 6px 5px 6px;
  background: none;
  border: 0;
  color: #FFFFFF;
  font-size: 11px;
  text-transform: uppercase;
}

.eyebrow-nav .country-wrapper .selection .selector span:after {
  display: none;
}

.eyebrow-nav .country-wrapper .selection .selector select {
  height: 22px;
}

.eyebrow-nav .country-wrapper .selection .selector:hover span {
  text-decoration: underline;
}

.eyebrow-nav .country-wrapper.setup {
  opacity: 1;
}

.eyebrow-nav .buy-link {
  display: block;
  color: inherit;
  font-size: 0.875rem;
  font-family: "Overpass-Light", sans-serif;
  line-height: 30px;
  text-decoration: none;
  text-transform: uppercase;
}

.eyebrow-nav .buy-link svg {
  float: right;
  height: 17px;
  width: 13px;
  margin: 8px;
  fill: #b5b5b5;
}

@media screen and (max-width: 639px) {
  .eyebrow-nav .buy-link {
    display: none;
  }
}

.eyebrow-nav .flag {
  width: 18px;
  height: 12px;
}

@media screen and (max-width: 959px) {
  .eyebrow-nav .flag {
    position: absolute;
    top: 22px;
    right: 10px;
  }
}

@media screen and (min-width: 960px) {
  .eyebrow-nav .flag {
    float: right;
    margin: 10px 0 0 14px;
  }
}

.mobile-menu-trigger {
  position: absolute;
  top: 12px;
  left: 13px;
  color: #131315;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  font-family: "Overpass-Light", sans-serif;
  font-size: 0.875rem;
}

@media screen and (min-width: 960px) {
  .mobile-menu-trigger {
    display: none;
  }
}

.mobile-menu-trigger .hamburger {
  width: 40px;
  height: 18px;
  position: relative;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
}

.mobile-menu-trigger .hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #131315;
  opacity: 1;
  left: 0;
  border-radius: 4px;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
  /*
			.nav_open &:nth-child(1) {
				top: 6px;
				width: 0%;
				left: 50%;
			}

			.nav_open &:nth-child(2) {
				transform: rotate(45deg);
			}

			.nav_open &:nth-child(3) {
				transform: rotate(-45deg);
			}

			.nav_open &:nth-child(4) {
				top: 6px;
				width: 0%;
				left: 50%;
			}
*/
}

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

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

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

@media screen and (max-width: 959px) {
  .desktop-navigation-container {
    display: none;
  }
  .close-mobile-container {
    position: absolute;
    z-index: 2222;
    width: 52px;
    height: 52px;
    top: 0;
    left: -50px;
    background-color: #727272;
    cursor: pointer;
    transition: left 0.3s;
    opacity: 0;
  }
  .close-mobile-container svg {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    fill: #fff;
    transform: rotate(45deg);
  }
  .mobile_nav_open {
    overflow: hidden;
  }
  .mobile_nav_open .mobile-navigation-container,
  .mobile_nav_open .close-mobile-container {
    opacity: 1;
    transform: translate(0, 0);
  }
  .mobile_nav_open .close-mobile-container {
    left: 300px;
  }
  .mobile_nav_open .bg-overlay {
    z-index: 1233;
    opacity: 1;
  }
  .mobile-navigation-container {
    position: fixed;
    display: block;
    z-index: 1234;
    top: 0;
    bottom: 0;
    width: 80%;
    max-width: 300px;
    background-color: #fff;
    overflow: auto;
    opacity: 0;
    transform: translate(-120%, 0);
    transition: all 0.3s;
  }
  .mobile-navigation-list li {
    display: block;
  }
  .mobile-navigation-list li a {
    display: block;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-family: "Overpass-Light", sans-serif;
    padding: 13px 10px 13px 20px;
    border-bottom: 2px solid #d7d7d7;
    color: #b0001d;
  }
  .mobile-navigation-list > li.find-a-retailer a {
    display: none;
    background-color: #b0001d;
    color: white;
  }
  .preview .mobile-navigation-list > li.find-a-retailer a {
    display: block;
  }
  .mobile-navigation-list > li.find-a-retailer a:after {
    top: 14px;
    right: 17px;
    width: 24px;
    height: 20px;
    background: url(../img/svg-inline/icon-visit-a-retailer.svg) center center no-repeat;
    background-size: 100% auto;
  }
  .preview .mobile-navigation-list > li.retail-locator a {
    display: none;
  }
  .mobile-navigation-list > li.retail-locator a:after {
    top: 14px;
    right: 25px;
    width: 16px;
    height: 20px;
    background-image: url(../svg/src/icon-map-point.svg);
  }
  .mobile-navigation-list > li > a {
    font-family: "Overpass-Bold", sans-serif;
  }
  .mobile-navigation-list > li > a:after {
    content: '';
    position: absolute;
    top: 14px;
    right: 27px;
    width: 10px;
    height: 20px;
    background: url(../svg/src/icon-chevron.svg) no-repeat center center;
    background-size: contain;
  }
  .mobile-navigation-list > .menu-item-has-children > a:after {
    top: 15px;
    right: 25px;
    width: 18px;
    height: 18px;
    background-image: url(../svg/src/icon-menu-plus.svg);
  }
  .mobile-navigation-list .sub {
    clear: both;
  }
  .mobile-navigation-list > li .mobile-sub-level {
    position: fixed;
    z-index: 1;
    top: 0;
    bottom: 0;
    overflow: auto;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: all 0.3s;
    transform: translate(-120%, 0%);
    opacity: 0;
  }
  .mobile-navigation-list > li .mobile-sub-level.open {
    transform: translate(0, 0);
    opacity: 1;
  }
  .mobile-navigation-list > li .mobile-sub-level .level-close-button {
    float: left;
    width: 20%;
  }
  .mobile-navigation-list > li .mobile-sub-level .level-title {
    float: right;
    width: 80%;
    text-transform: uppercase;
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-family: "Overpass-Bold", sans-serif;
    padding: 13px 10px 13px 20px;
    border-bottom: 2px solid #d7d7d7;
    color: #b0001d;
    margin: 0;
  }
  .mobile-navigation-list > li .mobile-sub-level svg {
    display: block;
    width: 23px;
    height: 24px;
  }
  .mobile-navigation-list > li .mobile-sub-level a {
    color: #131315;
  }
  .mobile-navigation-list > li .mobile-sub-level .menu-item-has-children > a:after {
    content: '';
    position: absolute;
    top: 21px;
    right: 27px;
    height: 10px;
    width: 20px;
    background: url(../svg/src/icon-chevron-down.svg) no-repeat center center;
    background-size: contain;
  }
  .mobile-navigation-list .sub .sub {
    transition: all 0.3s;
    max-height: 0;
    overflow: hidden;
  }
  .mobile-navigation-list .sub .sub.open {
    max-height: 1000px;
  }
  .mobile-navigation-list .sub .sub a {
    padding-left: 40px;
  }
  .mobile-navigation-list .sub .sub .sub a {
    padding-left: 60px;
  }
}

@media screen and (max-width: 959px) {
  body .mobile-navigation-container {
    width: 400px;
  }
  body .mobile-navigation-list > li .mobile-sub-level .level-title {
    text-align: center;
    text-indent: -52px;
  }
}

@media screen and (min-width: 960px) {
  .mobile-navigation-container,
  .close-mobile-container {
    display: none;
  }
  .desktop-navigation-list .desktop-fixed-white-bg {
    position: absolute;
    display: none;
    background-color: white;
    border-top: 1px solid #6e6e6e;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 40px 0 25px;
  }
  .desktop-navigation-list .desktop-fixed-white-bg .page-wrapper {
    overflow: hidden;
  }
  .desktop-navigation-list .desktop-fixed-white-bg .sub-column {
    float: left;
    display: inline;
    border-left: 2px solid #d7d7d7;
    padding: 0 10px;
  }
  .desktop-navigation-list .desktop-fixed-white-bg .sub-column:nth-of-type(1) {
    border-left: none;
    padding-left: 0;
  }
  .desktop-navigation-list .desktop-fixed-white-bg.grips .page-wrapper {
    display: flex;
  }
  .desktop-navigation-list .desktop-fixed-white-bg.grips .sub-column {
    float: none;
    display: block;
    width: 280px;
    padding: 0;
  }
  .desktop-navigation-list .desktop-fixed-white-bg.grips .grip-subnav {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    flex: 1;
    max-height: 650px;
    margin-left: -5px;
    margin-right: -12px;
  }
  .desktop-navigation-list .desktop-fixed-white-bg.grips .grip-subnav-group {
    width: 25%;
    padding: 0 12px 20px 12px;
    border-left: solid #ececec 2px;
  }
  .desktop-navigation-list .desktop-fixed-white-bg.grips .grip-subnav-group .menu-item {
    font-size: 15px;
  }
  .desktop-navigation-list .desktop-fixed-white-bg.grips .grip-subnav-group .menu-item:not(.heading) {
    padding-left: 10px;
  }
  .desktop-navigation-list .desktop-fixed-white-bg.grips .grip-subnav-group a {
    line-height: 1;
  }
  .desktop-navigation-list .desktop-fixed-white-bg.grips .sub-image {
    max-width: 250px;
  }
  .desktop-navigation-list .desktop-fixed-white-bg.learn .sub-column:nth-of-type(1) {
    width: 32.29167%;
  }
  .desktop-navigation-list .desktop-fixed-white-bg.learn .sub-column:nth-of-type(2) {
    width: 23.95833%;
  }
  .desktop-navigation-list .desktop-fixed-white-bg.learn .sub-column:nth-of-type(3) {
    width: 41.66667%;
    border-left: none;
  }
  .desktop-navigation-list .desktop-fixed-white-bg.learn .sub-column:nth-of-type(3) img {
    max-width: 100%;
  }
  .desktop-navigation-list .desktop-fixed-white-bg.about .sub-column:nth-of-type(1) {
    width: 32.29167%;
  }
  .desktop-navigation-list .desktop-fixed-white-bg.about .sub-column:nth-of-type(2), .desktop-navigation-list .desktop-fixed-white-bg.about .sub-column:nth-of-type(3) {
    width: 19.79167%;
  }
  .desktop-navigation-list .desktop-fixed-white-bg.about .sub-column:nth-of-type(4) {
    width: 28.125%;
    border-left: none;
  }
  .desktop-navigation-list .desktop-fixed-white-bg.about .sub-column:nth-of-type(4) img {
    max-width: 100%;
  }
  .desktop-navigation-list .desktop-fixed-white-bg .btn {
    overflow: hidden;
    display: block;
    font-size: 1rem;
    line-height: 19px;
    font-family: "Overpass-Bold", sans-serif;
    margin-bottom: 20px;
    width: 250px;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
    letter-spacing: 0;
    border-radius: 0;
  }
  .desktop-navigation-list .desktop-fixed-white-bg .btn svg {
    float: right;
    width: 10px;
    height: 19px;
    fill: #b0001d;
    transition: fill 0.3s;
  }
  .desktop-navigation-list .desktop-fixed-white-bg .btn:hover {
    transform: skew(-10deg);
  }
  .desktop-navigation-list .desktop-fixed-white-bg .btn:hover svg {
    fill: white;
  }
  .desktop-navigation-container {
    float: right;
  }
  .desktop-navigation-list {
    float: left;
    width: 100%;
    display: block;
  }
  .desktop-navigation-list > li {
    display: inline;
    float: left;
  }
  .desktop-navigation-list > li.mobile-only {
    display: none;
  }
  .desktop-navigation-list > li.sfHover > a {
    background-color: #d7d7d7;
  }
  .desktop-navigation-list > li.sfHover > a:after {
    opacity: 1;
  }
  .desktop-navigation-list > li > a {
    position: relative;
    z-index: 100;
    display: block;
    padding: 0 20px;
    font-size: 1rem;
    line-height: 4.375rem;
    color: #131315;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s;
  }
  .desktop-navigation-list > li > a:hover {
    background-color: #d7d7d7;
  }
  .desktop-navigation-list ul > .menu-item {
    font-size: 1rem;
    line-height: 1.25rem;
    color: #131315;
    display: block;
  }
  .desktop-navigation-list ul > .menu-item.heading {
    font-family: "Overpass-Bold", sans-serif;
    text-transform: uppercase;
    font-size: 1.25rem;
  }
  .desktop-navigation-list ul > .menu-item.heading:nth-child(1n+2) {
    margin-top: 30px;
  }
  .desktop-navigation-list ul > .menu-item > a {
    display: block;
    overflow: hidden;
    position: relative;
    padding: 8px 0;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
  }
  .desktop-navigation-list ul > .menu-item > a:after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: 0;
    width: 40%;
    height: 1px;
    background-color: #747480;
    transition: all 0.3s;
    transform: translate(-100%, 0);
    opacity: 0;
  }
  .desktop-navigation-list ul > .menu-item > a:hover {
    color: #747480;
  }
  .desktop-navigation-list ul > .menu-item > a:hover:after {
    transform: translate(0%, 0);
    opacity: 1;
  }
  .desktop-navigation-list .sub-image {
    display: block;
  }
  .desktop-navigation-list .sub-image img {
    display: block;
  }
}

@media screen and (min-width: 1280px) {
  .desktop-navigation-list .desktop-fixed-white-bg.about .sub-column:nth-of-type(1) {
    width: 25.39683%;
  }
  .desktop-navigation-list .desktop-fixed-white-bg.about .sub-column:nth-of-type(2), .desktop-navigation-list .desktop-fixed-white-bg.about .sub-column:nth-of-type(3) {
    width: 19.04762%;
  }
  .desktop-navigation-list .desktop-fixed-white-bg.about .sub-column:nth-of-type(4) {
    width: 34.12698%;
    float: right;
  }
}

.page-content {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 30px 0;
}

.internal {
  padding-bottom: 20px;
}

@media screen and (min-width: 640px) {
  .internal {
    padding: 20px 0 40px;
  }
}

@media screen and (min-width: 960px) {
  .internal {
    padding: 30px 0 60px;
  }
}

.newsletter-signup-container {
  background-color: #d7d7d7;
  padding: 65px 20px 13px;
  overflow: hidden;
}

@media screen and (min-width: 1080px) {
  .newsletter-signup-container {
    padding-left: 0;
    padding-right: 0;
  }
  .newsletter-signup-container .page-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 60px);
    max-width: 1480px;
  }
}

.newsletter-signup-container .newsletter-signup {
  position: relative;
  overflow: visible;
  margin-bottom: 70px;
  padding-bottom: 50px;
}

.newsletter-signup-container .newsletter-signup:before {
  content: '';
  position: absolute;
  z-index: 0;
  left: -60px;
  right: -60px;
  top: -120px;
  bottom: 0;
  background-color: #b0001d;
  transform: skewY(-5deg);
}

.newsletter-signup-container .newsletter-signup .form-row.error label {
  color: #e0575b;
}

.newsletter-signup-container .newsletter-signup .form-row.error .required {
  border-color: #e0575b;
}

@media screen and (min-width: 1080px) {
  .newsletter-signup-container .newsletter-signup {
    padding-right: 125px;
    padding-bottom: 20px;
    margin: 0;
    width: 75%;
    max-width: 1000px;
  }
  .newsletter-signup-container .newsletter-signup:before {
    transform: skewX(20deg);
    top: -80px;
    bottom: -20px;
    left: -800px;
    right: 50px;
  }
}

.newsletter-signup-container .newsletter-signup .row-title {
  position: relative;
  z-index: 1;
  color: white;
  font-family: "Overpass-Light", sans-serif;
  font-weight: 400;
  color: white;
  font-size: 2rem;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

@media screen and (min-width: 960px) {
  .newsletter-signup-container .newsletter-signup .row-title:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 44px;
    background-color: white;
    top: -22px;
    left: -18px;
    transform: rotate(45deg);
  }
}

.newsletter-signup-container .newsletter-signup label,
.newsletter-signup-container .newsletter-signup .selector span,
.newsletter-signup-container .newsletter-signup .input-txt {
  font-size: 1rem;
}

.newsletter-signup-container .newsletter-signup .label {
  color: white;
  text-transform: none;
}

.newsletter-signup-container .newsletter-signup .input-txt {
  padding: 15px 15px 9px;
}

.newsletter-signup-container .newsletter-signup .selector span {
  padding: 16px 32px 12px 15px;
  text-transform: uppercase;
}

.newsletter-signup-container .newsletter-signup .form-elem {
  margin-bottom: 20px;
}

.newsletter-signup-container .newsletter-signup div.checker {
  float: none;
}

.newsletter-signup-container .newsletter-signup div.checker span {
  width: 20px;
  height: 20px;
  background: white;
  border-color: white;
}

.newsletter-signup-container .newsletter-signup div.checker span.checked {
  background: white url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMjAuMjg1IDJsLTExLjI4NSAxMS41NjctNS4yODYtNS4wMTEtMy43MTQgMy43MTYgOSA4LjcyOCAxNS0xNS4yODV6Ii8+PC9zdmc+) center center no-repeat;
  background-size: auto 14px;
}

.newsletter-signup-container .newsletter-signup .checkbox-row {
  display: flex;
  flex-wrap: wrap;
}

.newsletter-signup-container .newsletter-signup .checkbox-row .error-message {
  width: 100%;
  color: white;
  text-transform: uppercase;
  font-size: 1.125rem;
  font-family: "Overpass-Bold",sans-serif;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: all 0.3s;
}

.newsletter-signup-container .newsletter-signup .checkbox-row.error .error-message {
  max-height: 50px;
  padding: 10px 0;
}

.newsletter-signup-container .newsletter-signup .checkbox-row .checker {
  width: 30px;
}

.newsletter-signup-container .newsletter-signup .checkbox-row .label {
  color: white !important;
  flex: 1;
}

.newsletter-signup-container .newsletter-signup .checkbox-row .label a {
  text-decoration: underline;
  color: inherit;
}

@media screen and (min-width: 960px) {
  .newsletter-signup-container .newsletter-signup .form-row.full {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .newsletter-signup-container .newsletter-signup .form-row.full .form-elem {
    margin: 0;
    width: 36.77419%;
  }
  .newsletter-signup-container .newsletter-signup .form-row.full .form-elem:last-of-type {
    width: auto;
  }
}

.newsletter-signup-container .find-retailer {
  max-width: 480px;
  margin: 0 auto;
  margin-bottom: 25px;
}

@media screen and (min-width: 1080px) {
  .newsletter-signup-container .find-retailer {
    width: 30%;
  }
}

.newsletter-signup-container .find-retailer label:not(.label) {
  right: 60px;
}

.newsletter-signup-container .find-retailer .input-text,
.newsletter-signup-container .find-retailer .input-txt,
.newsletter-signup-container .find-retailer input[type=text],
.newsletter-signup-container .find-retailer input[type=password],
.newsletter-signup-container .find-retailer input[type=email],
.newsletter-signup-container .find-retailer input[type=number],
.newsletter-signup-container .find-retailer input[type=tel],
.newsletter-signup-container .find-retailer textarea {
  border-color: white;
  margin-right: -60px;
}

.newsletter-signup-container .find-retailer .input-text:focus,
.newsletter-signup-container .find-retailer .input-txt:focus,
.newsletter-signup-container .find-retailer input[type=text]:focus,
.newsletter-signup-container .find-retailer input[type=password]:focus,
.newsletter-signup-container .find-retailer input[type=email]:focus,
.newsletter-signup-container .find-retailer input[type=number]:focus,
.newsletter-signup-container .find-retailer input[type=tel]:focus,
.newsletter-signup-container .find-retailer textarea:focus {
  border-color: #6e6e6e !important;
}

.newsletter-signup-container .find-retailer [type=submit] {
  position: relative;
  float: right;
  width: 60px;
  height: 50px;
  outline: none;
  border: none;
  text-indent: -9999px;
  background-color: #b0001d;
  border: 1px solid #b0001d;
  transition: all 0.3s;
}

.newsletter-signup-container .find-retailer [type=submit] svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  transition: all 0.3s;
  fill: white;
}

.newsletter-signup-container .find-retailer [type=submit]:active, .newsletter-signup-container .find-retailer [type=submit]:focus, .newsletter-signup-container .find-retailer [type=submit]:hover {
  background-color: #fff;
}

.newsletter-signup-container .find-retailer [type=submit]:active svg, .newsletter-signup-container .find-retailer [type=submit]:focus svg, .newsletter-signup-container .find-retailer [type=submit]:hover svg {
  fill: #b0001d;
}

#at4m-mobile-container {
  z-index: 1000 !important;
}

.footer-main {
  position: relative;
  background-color: #131315;
  color: #959595;
  text-align: center;
  padding-top: 65px;
}

.footer-main a {
  color: inherit;
  text-decoration: none;
}

.footer-main .footer-navigation {
  margin-bottom: 50px;
}

@media screen and (min-width: 640px) {
  .footer-main .footer-navigation {
    float: left;
    width: 48.3871%;
  }
}

@media screen and (min-width: 960px) {
  .footer-main .footer-navigation {
    text-align: left;
    width: 31.91489%;
    margin-right: 2.12766%;
  }
}

@media screen and (min-width: 1280px) {
  .footer-main .footer-navigation {
    width: 23.80952%;
    margin-right: 1.5873%;
  }
}

.footer-main .footer-navigation ul {
  width: 100%;
  overflow: hidden;
}

.footer-main .footer-navigation li {
  width: 50%;
  float: left;
}

.footer-main .footer-navigation li a {
  display: block;
  outline: none;
  font-size: 0.875rem;
  line-height: 1.125rem;
  padding: 7px 0;
  transition: color 0.3s;
}

.footer-main .footer-navigation li a:hover, .footer-main .footer-navigation li a:active, .footer-main .footer-navigation li a:focus {
  color: white;
}

.footer-main .social-media-container {
  max-width: 180px;
  margin: 0 auto 60px;
}

@media screen and (min-width: 640px) {
  .footer-main .social-media-container {
    float: right;
    width: 48.3871%;
    margin-bottom: 40px;
    max-width: none;
  }
  .footer-main .social-media-container .social-media-nav {
    max-width: 180px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 960px) {
  .footer-main .social-media-container {
    float: left;
    width: 23.40426%;
  }
}

@media screen and (min-width: 1280px) {
  .footer-main .social-media-container {
    width: 17.46032%;
  }
}

.footer-main .social-media-container .social-media-title {
  font-size: 0.875rem;
  line-height: 1.0625rem;
  text-transform: uppercase;
  color: #959595;
  margin-bottom: 13px;
}

.footer-main .social-media-container .social-media-nav {
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.footer-main .social-media-container .social-media-nav a {
  width: 25%;
  outline: none;
  margin: 0;
}

.footer-main .social-media-container .social-media-nav a svg {
  width: 30px;
  height: 30px;
  fill: #959595;
}

.footer-main .copyright-logos {
  max-width: 205px;
  margin: 0 auto 50px;
  overflow: hidden;
}

@media screen and (min-width: 640px) {
  .footer-main .copyright-logos {
    float: right;
    width: 48.3871%;
    max-width: none;
  }
}

@media screen and (min-width: 960px) {
  .footer-main .copyright-logos {
    float: right;
    width: 23.40426%;
  }
}

@media screen and (min-width: 1280px) {
  .footer-main .copyright-logos {
    width: 17.46032%;
  }
}

.footer-main .copyright-logos a {
  display: block;
}

.footer-main .copyright-logos .gp-logo {
  margin-bottom: 28px;
}

.footer-main .copyright-logos .gp-logo svg {
  fill: #959595;
  max-width: 100%;
  height: 80px;
}

.footer-main .copyright-logos .eaton-love {
  width: 100%;
  max-width: 210px;
  overflow: hidden;
  margin: 0 auto 50px;
}

.footer-main .copyright-logos .eaton-love a {
  float: left;
  width: 75px;
}

.footer-main .copyright-logos .eaton-love a svg {
  fill: #959595;
  width: 75px;
  height: 21px;
  margin-top: 3px;
}

.footer-main .copyright-logos .eaton-love p {
  float: left;
  text-align: left;
  margin: 0 0 0 15px;
  font-size: 0.75rem;
  line-height: 0.875rem;
}

.footer-main .trimark-policy {
  border-top: 1px solid #545556;
  overflow: hidden;
  clear: both;
}

.footer-main .trimark-policy .policy {
  display: block;
  margin: 10px 0;
  font-size: 0.6875rem;
  line-height: 0.875rem;
}

.footer-main .trimark-policy .policy {
  text-align: center;
  line-height: 15px;
}

.bg-overlay {
  position: fixed;
  opacity: 0;
  z-index: -99;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(19, 19, 21, 0.8);
  transition: opacity 0.3s;
}

.btn {
  display: inline-block;
  padding: 17px 24px;
  color: #FFFFFF;
  font-size: 0.9375rem;
  font-family: "Overpass-Bold", sans-serif;
  line-height: 1;
  letter-spacing: 1.5px;
  background: #343434;
  border: solid #b5b5b5 1px;
  border-radius: 2px;
  outline: none;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.btn:hover, .btn:focus {
  text-decoration: none;
  background-color: #414141;
}

.btn.center {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 300px;
}

.btn.right {
  float: right;
  padding: 17px 60px;
}

.btn.red {
  color: white;
  border-color: #b0001d;
  background-color: #b0001d;
}

.btn.red:hover {
  background-color: white;
  color: #b0001d;
}

.btn.red.static:hover {
  background-color: #ca0021;
  border-color: #ca0021;
  color: white;
}

.btn.red.inverse {
  background-color: white;
  color: #b0001d;
}

.btn.red.inverse:hover {
  color: white;
  background-color: #b0001d;
}

.btn.red.inverse.static:hover {
  background: rgba(191, 111, 111, 0.15);
  border-color: #ca0021;
  color: #ca0021;
}

.btn.red.transparent {
  background-color: transparent;
}

.btn.red.transparent:hover {
  color: white;
  background-color: #b0001d;
}

.btn.green {
  color: white;
  border-color: #006649;
  background-color: #006649;
}

.btn.green:hover {
  background-color: white;
  color: #006649;
}

.btn.green.inverse {
  background-color: white;
  color: #006649;
}

.btn.green.inverse:hover {
  color: white;
  background-color: #006649;
}

.btn.white {
  color: white;
  border-color: white;
  background-color: transparent;
}

.btn.white:hover {
  background-color: white;
  color: #343434;
}

.btn[disabled] {
  background: #e6e6e6 !important;
  border: 0 !important;
  color: #7e7e7e !important;
  cursor: default;
}

.plus, .minus {
  position: absolute;
  background: #fff;
  transform: rotate(0deg);
  transition: all 0.7s;
}

.plus {
  top: 0;
  left: 5px;
  right: 5px;
  height: 100%;
}

.active .plus {
  background-color: #252222;
  transform: rotate(270deg);
}

.minus {
  top: 5px;
  left: 0;
  right: 0;
  bottom: 5px;
}

.plus-minus-icon {
  position: absolute;
  cursor: pointer;
  right: 20px;
  top: 23px;
  width: 12px;
  height: 12px;
  outline: none;
}

@media screen and (min-width: 960px) {
  .plus-minus-icon {
    display: none;
  }
}

.btn-sm-underline {
  background: none !important;
  border: none;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  color: #060808;
  padding: 8px 10px 5px;
  position: relative;
  font: 12px "Helvetica Neue LT W05 75 Bold", sans-serif;
  text-transform: uppercase;
}

.btn-sm-underline::after {
  content: '';
  background: #BE0802;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  transition: height 200ms ease;
}

.btn-sm-underline:hover, .btn-sm-underline:focus {
  color: white;
}

.btn-sm-underline:hover::after, .btn-sm-underline:focus::after {
  height: 100%;
}

.btn-hv2 {
  background: #060808;
  border: none;
}

.btn-hv2:hover, .btn-hv2:focus {
  color: white;
  background-color: #BE0802;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

form {
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  max-width: 720px;
}

form .row-title {
  text-transform: uppercase;
  font-size: 1.125rem;
  line-height: 1;
  margin-bottom: 7px;
}

form .row {
  overflow: hidden;
  margin-bottom: 18px;
}

form fieldset {
  border: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-text,
.input-txt,
input[type=text],
input[type=password],
input[type=email],
input[type=number],
input[type=tel],
textarea {
  padding: 5px 15px;
  border: solid #c2c4cb 1px;
  border-radius: 2px;
  color: #444345;
  font-size: 1.25rem;
  line-height: 20px;
  outline: none;
  background-color: #fff;
  -webkit-appearance: none;
}

.input-text:focus, .input-text:active,
.input-txt:focus,
.input-txt:active,
input[type=text]:focus,
input[type=text]:active,
input[type=password]:focus,
input[type=password]:active,
input[type=email]:focus,
input[type=email]:active,
input[type=number]:focus,
input[type=number]:active,
input[type=tel]:focus,
input[type=tel]:active,
textarea:focus,
textarea:active {
  border-color: #8b8f9c;
}

.input-text[disabled], .input-text[readonly],
.input-txt[disabled],
.input-txt[readonly],
input[type=text][disabled],
input[type=text][readonly],
input[type=password][disabled],
input[type=password][readonly],
input[type=email][disabled],
input[type=email][readonly],
input[type=number][disabled],
input[type=number][readonly],
input[type=tel][disabled],
input[type=tel][readonly],
textarea[disabled],
textarea[readonly] {
  color: rgba(68, 67, 69, 0.5);
}

input:-ms-input-placeholder {
  font-size: 14px;
}

input::-ms-input-placeholder {
  font-size: 14px;
}

input::placeholder {
  font-size: 14px;
}

.selector {
  position: relative;
  text-align: left !important;
  z-index: 10;
}

.selector span {
  position: relative;
  display: block;
  padding: 10px 32px 10px 15px;
  background: #FFFFFF;
  border: solid #d4d6d5 1px;
  border-radius: 2px;
  color: #444345;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selector span:after {
  position: absolute;
  right: 0;
  top: 50%;
  display: block;
  height: 20px;
  width: 32px;
  margin-top: -10px;
  background: url("../svg/icon-angle-down.svg") center center no-repeat;
  background-size: 12px auto;
  content: ' ';
  text-align: center;
}

.selector select {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 100%;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0;
  -webkit-appearance: menulist-button;
}

.selector.disabled span {
  background: #8a8e8e;
  border-color: #bec0c0;
  color: #8a8e8e;
  cursor: default;
}

.selector.disabled select {
  cursor: default;
}

div.radio,
div.checker {
  float: left;
  position: relative;
  display: inline-block;
  line-height: 1;
  margin: 0 7px 0 0;
}

div.radio span,
div.radio input,
div.checker span,
div.checker input {
  width: 16px;
  height: 16px;
}

div.radio span,
div.checker span {
  display: inline-block;
  position: relative;
  border: solid #c2c4cb 1px;
  border-radius: 2px;
}

div.radio span.checked,
div.checker span.checked {
  border-color: #b0001d;
}

div.radio span.checked:after,
div.checker span.checked:after {
  content: '';
}

div.radio input,
div.checker input {
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  background: none;
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: 999;
}

div.radio.disabled,
div.checker.disabled {
  opacity: 0.4;
}

div.radio.disabled + label,
div.checker.disabled + label {
  opacity: 0.25;
}

div.checker span.checked:after {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  background: url("../svg/icon-check-mark.svg") center center no-repeat;
  background-size: cover;
}

div.radio span {
  border-radius: 50%;
}

div.radio span.checked:after {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  right: 3px;
  background: #ca0021;
  border-radius: 50%;
  content: '';
}

.form-elem-checkradio {
  display: flex;
  align-items: flex-start;
  margin: 4px 0;
  line-height: 16px;
}

.form-elem-checkradio .cheker {
  float: none;
}

.form-elem-checkradio label {
  flex: 1;
  line-height: 16px;
}

.uploader {
  position: relative;
  text-align: left !important;
  z-index: 10;
}

.uploader .filename {
  position: relative;
  display: block;
  padding: 10px 32px 10px 15px;
  background: #FFFFFF;
  border: solid #d4d6d5 1px;
  border-radius: 2px;
  color: #444345;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.uploader input {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 100%;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0;
  z-index: 1;
}

input[name=breathing] {
  display: none;
}

.i-req {
  color: red;
  font-size: 14px;
  line-height: 1;
  vertical-align: bottom;
}

.validation-failed {
  border-color: #ff173d !important;
}

.validation-advice {
  margin-top: 2px;
  padding-left: 2px;
  color: #e30025;
  font-size: 12px;
  line-height: 1;
  text-align: left;
}

.form-label-stacked li,
.form-label-stacked .field,
.form-label-stacked .form-row {
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  padding-right: 1px;
}

.form-label-stacked label:not(.label) {
  display: block;
  margin-bottom: 2px;
  padding-left: 5px;
  font-size: 0.8125rem;
  line-height: 1.25;
  text-align: left;
  text-transform: uppercase;
}

.form-label-stacked .label-inline {
  display: inline-block;
}

.form-label-stacked .input-text,
.form-label-stacked .input-txt,
.form-label-stacked input[type=text],
.form-label-stacked input[type=password],
.form-label-stacked input[type=email],
.form-label-stacked input[type=number],
.form-label-stacked input[type=tel],
.form-label-stacked textarea {
  width: 100%;
}

.form-label-tabled li,
.form-label-tabled .field,
.form-label-tabled .form-row {
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  padding-right: 1px;
}

.form-label-tabled label:not(.label) {
  display: block;
  margin-bottom: 2px;
  padding-left: 5px;
  font-size: 0.8125rem;
  line-height: 1.25;
  text-align: left;
  text-transform: uppercase;
}

@media screen and (min-width: 640px) {
  .form-label-tabled label:not(.label) {
    float: left;
    display: inline;
    width: 33%;
    padding-right: 10px;
    text-align: right;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
  }
  .form-label-tabled label:not(.label) ~ * {
    float: right;
    display: inline;
    width: 66%;
  }
}

.form-label-tabled .label-inline {
  display: inline-block;
}

.form-label-tabled .input-text,
.form-label-tabled .input-txt,
.form-label-tabled input[type=text],
.form-label-tabled input[type=password],
.form-label-tabled input[type=email],
.form-label-tabled input[type=number],
.form-label-tabled input[type=tel],
.form-label-tabled textarea {
  width: 100%;
}

@media screen and (min-width: 640px) {
  .form-label-tabled .input-text,
  .form-label-tabled .input-txt,
  .form-label-tabled input[type=text],
  .form-label-tabled input[type=password],
  .form-label-tabled input[type=email],
  .form-label-tabled input[type=number],
  .form-label-tabled input[type=tel],
  .form-label-tabled textarea {
    float: right;
    display: inline;
    width: 66%;
  }
}

.form-label-tabled input[type=submit] {
  float: right;
}

.form-label-inline label:not(.label) {
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 1px;
  right: 1px;
  z-index: 100;
  padding-left: 15px;
  cursor: text;
  line-height: 48px;
  text-transform: uppercase;
  transition: font-size 0.25s ease, top 0.25s ease;
}

.form-label-inline .input-txt {
  width: 100%;
  padding: 12px 15px 5px;
}

.form-label-inline .form-row {
  position: relative;
  margin: 8px 0 20px 0;
}

.form-label-inline .form-elem {
  position: relative;
}

.form-label-inline:not(.form-label-fade) .form-row.label-up label {
  top: 6px;
  bottom: auto;
  font-size: 12px;
  line-height: 1;
  color: #929b9f;
}

.form-label-inline.form-label-fade .form-row.label-up label {
  display: none;
}

.eighteen-days.form-label-stacked label,
.eighteen-days.form-label-stacked .input-txt,
.eighteen-days.form-label-stacked .selector {
  display: block;
  width: 100%;
  float: none;
  position: relative;
  top: auto;
  transform: none;
  text-align: left;
}

hr, .hr {
  position: relative;
  display: block;
  height: 1px;
  margin: 40px 0;
  background-color: rgba(38, 38, 39, 0.25);
  border: 0;
  outline: none;
  overflow: visible;
}

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

.ul li,
.ol li,
.wp-page-content ol li,
.wp-page-content ul li {
  padding-left: 32px;
  position: relative;
  margin: 0;
}

@media screen and (min-width: 640px) {
  .ul.two-column,
  .ol.two-column,
  .wp-page-content ol.two-column,
  .wp-page-content ul.two-column {
    width: 100%;
    overflow: hidden;
  }
  .ul.two-column li,
  .ol.two-column li,
  .wp-page-content ol.two-column li,
  .wp-page-content ul.two-column li {
    float: left;
    display: inline;
    width: 50%;
  }
}

.ul li:before,
.wp-page-content ul li:before {
  content: "\00BB";
  color: #b0001d;
  display: inline-block;
  left: 15px;
  position: absolute;
  font-weight: 900;
}

.ol,
.wp-page-content ol {
  counter-reset: orderlist;
}

.ol li:before,
.wp-page-content ol li:before {
  counter-increment: orderlist;
  content: counters(orderlist, ".") " ";
  left: 15px;
  position: absolute;
  font-weight: 900;
}

.wp-page-content .faq-menu li:before {
  content: "";
}

.wp-page-content .faq-menu li a {
  text-decoration: inherit;
}

.news-block-container .card-deck {
  width: 100%;
}

.news-block-container .card-deck .card-item {
  display: block;
  border: 1px solid #ebebeb;
  margin-bottom: 20px;
}

@media screen and (min-width: 640px) {
  .news-block-container .card-deck .card-item {
    width: 48.3871%;
  }
}

.news-block-container .card-deck .card-item .card-item-padding {
  padding: 25px;
}

.news-block-container .card-deck .card-item img {
  display: block;
}

.news-block-container .card-deck h3 {
  color: #202b5d;
  margin-bottom: 10px;
}

.news-block-container .card-deck p {
  margin-bottom: 40px;
  max-height: 112px;
  overflow: hidden;
}

.news-block-container .card-deck .item-meta {
  font-size: 0.8125rem;
  text-transform: uppercase;
  overflow: hidden;
}

.news-block-container .card-deck .item-meta .date {
  font-family: "Overpass-Bold", sans-serif;
}

.news-block-container .card-deck .item-meta a {
  font-weight: 700;
  text-decoration: none;
  float: right;
}

.overlay--fixed {
  position: fixed;
  z-index: 1000;
  top: 50vh;
  right: 0;
  width: 100%;
  max-width: 450px;
  padding: 38px 22px 13px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
  opacity: 0;
  transform: translate(150%, -50%);
}

.show-overlay .overlay--fixed {
  opacity: 1;
  transform: translate(0, -50%);
}

.overlay--is-promo {
  padding: 0;
}

.overlay--is-promo .overlay-cotnent {
  max-width: none;
}

.overlay__email-signup {
  background-color: #b0001d;
  color: white;
}

.overlay .checkbox-row {
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 600;
}

.overlay .checkbox-row label {
  color: white;
}

.overlay label {
  color: #262627;
}

.overlay-close-button {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  text-indent: -9999px;
}

.overlay-close-button:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background-color: #d7d7d7;
  width: 90px;
  height: 90px;
  transform-origin: left top;
  transform: skewX(45deg);
}

.overlay-close-button:after {
  content: '\002b';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  text-align: center;
  text-indent: 0;
  color: #221f1f;
  font-size: 3.375rem;
  line-height: 2.8125rem;
  transform: translate(-43%, -53%) rotate(45deg);
}

.overlay-cotnent {
  margin: 0 auto;
  max-width: 370px;
}

.overlay-title {
  position: relative;
  padding-left: 35px;
  font-size: 1.75rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.overlay-title:before {
  content: '';
  position: absolute;
  width: 2px;
  height: 44px;
  background-color: white;
  top: -22px;
  left: 18px;
  transform: rotate(45deg);
}

.find-grip-fit-block {
  overflow: hidden;
  position: relative;
  z-index: 100;
  padding: 95px 0;
  color: white;
  background: url(../img/bg-get-fit-tech-points-04.jpg) transparent center center no-repeat;
  background-size: auto 100%;
}

@media screen and (min-width: 760px) {
  .find-grip-fit-block {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    background-image: url(../img/bg-get-fit-tech-points-08.jpg);
  }
}

@media screen and (min-width: 960px) {
  .find-grip-fit-block {
    padding: 145px 0;
    background-image: url(../img/bg-get-fit-tech-points-12.jpg);
    background-size: auto 110%;
    max-width: 1400px;
    margin: 0 auto;
  }
}

.find-grip-fit-block:before, .find-grip-fit-block:after {
  content: '';
  position: absolute;
  z-index: 10;
  left: -10px;
  right: -10px;
  background-color: white;
  height: 60px;
  transform: skewY(4deg);
}

@media screen and (min-width: 960px) {
  .find-grip-fit-block:before, .find-grip-fit-block:after {
    height: 80px;
    transform: skewY(2.5deg);
  }
}

.find-grip-fit-block:before {
  top: 0;
  transform-origin: top right;
}

.find-grip-fit-block:after {
  bottom: 0;
  transform-origin: bottom left;
}

.find-grip-fit-block--gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.15));
}

@media screen and (min-width: 760px) {
  .find-grip-fit-block--gradient {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.05));
  }
}

@media screen and (min-width: 960px) {
  .find-grip-fit-block--ruler {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 60px;
    background: url(../img/bg-grip-fit-block-ruler.png) right bottom no-repeat;
    background-size: 100% auto;
  }
}

.find-grip-fit-block--tech-point-list {
  position: relative;
  max-width: 260px;
  margin: 0 auto;
}

@media screen and (min-width: 760px) {
  .find-grip-fit-block--tech-point-list {
    margin: 0 40px 0 130px;
  }
}

@media screen and (min-width: 960px) {
  .find-grip-fit-block--tech-point-list {
    margin: 0 170px 0 180px;
    transform: translate(0, 35px);
  }
}

.find-grip-fit-block--tech-point-list > li {
  position: relative;
  display: flex;
  margin-bottom: 45px;
}

.find-grip-fit-block--tech-point-list > li:before {
  content: '';
  position: absolute;
  left: 48px;
  top: 23px;
  height: 0;
  border-top: 2px dashed white;
}

.find-grip-fit-block--tech-point-list > li:after {
  content: '';
  position: absolute;
  top: 24px;
  height: 0;
  width: 35px;
  border-top: 2px dashed white;
  transform-origin: top left;
  transform: rotate(50deg);
}

.find-grip-fit-block--tech-point-list > li:nth-of-type(1):before {
  width: 153px;
}

.find-grip-fit-block--tech-point-list > li:nth-of-type(1):after {
  left: calc(153px + 49px);
}

.find-grip-fit-block--tech-point-list > li:nth-of-type(2):before {
  width: 153px;
}

.find-grip-fit-block--tech-point-list > li:nth-of-type(2):after {
  left: calc(153px + 49px);
}

.find-grip-fit-block--tech-point-list > li:nth-of-type(3):before {
  width: 131px;
}

.find-grip-fit-block--tech-point-list > li:nth-of-type(3):after {
  left: calc(131px + 49px);
}

.find-grip-fit-block--tech-point-list > li:nth-of-type(4):before {
  width: 118px;
}

.find-grip-fit-block--tech-point-list > li:nth-of-type(4):after {
  left: calc(118px + 49px);
}

@media screen and (min-width: 760px) {
  .find-grip-fit-block--tech-point-list > li:last-of-type {
    margin-bottom: 0;
  }
}

.find-grip-fit-block--tech-point-list svg {
  fill: #fff !important;
  width: 48px;
  height: 48px;
}

.find-grip-fit-block--tech-point-content {
  flex: auto;
  padding-left: 10px;
  font-size: 0.6875rem;
  line-height: 1.375rem;
  text-transform: uppercase;
}

.find-grip-fit-block--tech-point-content strong {
  padding-top: 2px;
  display: block;
}

.find-grip-fit-block--cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 12px;
}

.find-grip-fit-block--cta-title {
  margin-bottom: 22px;
  text-align: center;
  font-size: 2.5rem;
  line-height: 3rem;
  text-transform: uppercase;
}

.find-grip-fit-block--cta .btn {
  border-width: 2px;
}

@keyframes wave {
  0% {
    opacity: 0.9;
    transform: scale(0.8);
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}

/*
body.home {
	.overlay--fixed {
		padding: 0;
	}
	.overlay__email-signup {
		background: none;
	}
	.overlay-cotnent {
		max-width: none;
	}
}
*/
.section-container {
  position: relative;
}

.section-container--hero-video {
  position: relative;
  height: 60vw;
  max-height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 640px) {
  .section-container--hero-video {
    height: 50vw;
  }
  .section-container--hero-video img {
    display: none;
  }
}

.section-container--hero-video .asset-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  overflow: hidden;
}

.section-container--hero-video .asset-container:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.4);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

.section-container--hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  height: auto;
  width: auto;
  max-width: none;
  max-height: 100vw;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 639px) {
  .section-container--hero-video video {
    display: none;
  }
}

.section-container--hero-video .content-container {
  position: relative;
  z-index: 10;
  font-size: calc(23px + (72 - 23) * (100vw - 320px) / (1280 - 320));
  color: white;
  line-height: 1.2;
  text-transform: uppercase;
}

@media screen and (min-width: 1280px) {
  .section-container--hero-video .content-container {
    font-size: 4.5rem;
  }
}

.section-container--hero-video .title {
  text-indent: -16px;
}

.section-container--hero-video .sub-title {
  font-family: "Overpass-Bold", sans-serif;
  text-indent: 16px;
}

.section-container--grip-models {
  padding: 55px 0 20px;
  overflow: hidden;
}

.section-container--grip-models img {
  display: block;
}

.section-container--grip-models .page-wrapper {
  padding: 0 20px;
}

@media screen and (min-width: 960px) {
  .section-container--grip-models {
    padding: 120px 0 0;
  }
}

@media screen and (min-width: 1280px) {
  .section-container--grip-models {
    padding-bottom: 40vw;
  }
}

@media screen and (min-width: 960px) {
  .section-container--grip-models .grip-model-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-around;
  }
}

.section-container--grip-models .grip-model-wrapper--title {
  max-width: 480px;
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  .section-container--grip-models .grip-model-wrapper--title {
    width: 50%;
  }
}

.section-container--grip-models .grip-model-wrapper--title .logo {
  margin: 0 auto 40px;
}

@media screen and (min-width: 960px) {
  .section-container--grip-models .grip-model-wrapper--title .logo {
    margin-bottom: 70px;
  }
}

.section-container--grip-models .grip-model-wrapper--title .title {
  margin: 0 auto 40px;
}

@media screen and (max-width: 639px) {
  .section-container--grip-models .grip-model-wrapper--title .title {
    display: none;
  }
}

@media screen and (max-width: 639px) {
  .section-container--grip-models .grip-model-wrapper--content {
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 960px) {
  .section-container--grip-models .grip-model-wrapper--content {
    margin-left: 40px;
    flex: auto;
  }
}

@media screen and (min-width: 1280px) {
  .section-container--grip-models .grip-model-wrapper--content {
    flex: none;
    margin: 0;
    width: 50%;
  }
}

.section-container--grip-models .models {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  max-width: 480px;
  margin-bottom: 60px;
}

@media screen and (min-width: 640px) {
  .section-container--grip-models .models {
    padding: 0 15px;
  }
}

@media screen and (min-width: 1280px) {
  .section-container--grip-models .models {
    max-width: 550px;
    margin-left: 170px;
  }
}

.section-container--grip-models .models .title {
  position: relative;
  width: 100%;
  font-size: 1.3125rem;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Overpass-Extra-Light", sans-serif;
  margin-bottom: 30px;
  padding-left: 25px;
}

.section-container--grip-models .models .title:before {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 26px;
  height: 1px;
  background-color: #262627;
  transform-origin: center;
  transform: rotate(-45deg);
}

.section-container--grip-models .models .svg-container {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 40px;
  max-height: 40px;
  padding: 0 20px;
  opacity: 0.5;
  transform-origin: center;
  transition: all 0.3s cubic-bezier(0, -0.02, 0.18, 1.95);
}

.section-container--grip-models .models .svg-container__new:before {
  content: 'New';
  position: absolute;
  z-index: 10;
  bottom: -18px;
  left: calc(50% - 63px);
  width: 126px;
  height: 30px;
  text-align: center;
  font-family: "Overpass-Bold", sans-serif;
  font-style: italic;
  font-size: 0.875rem;
  line-height: 38px;
  text-transform: uppercase;
}

.section-container--grip-models .models .svg-container__new:after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: calc(50% - 43px);
  width: 86px;
  height: 0;
  border-top: 21px solid #cddd00;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}

.section-container--grip-models .models .svg-container__new.white:before {
  color: White;
}

.section-container--grip-models .models .svg-container__new.white:after {
  border-top-color: #cf152d;
}

.section-container--grip-models .models .svg-container__new__more-padding:before, .section-container--grip-models .models .svg-container__new__more-padding:after {
  bottom: -22px;
}

.section-container--grip-models .models .svg-container:hover {
  opacity: 1;
}

.section-container--grip-models .models .svg-container:active, .section-container--grip-models .models .svg-container.active {
  outline: none;
  opacity: 1;
  transform: scale(1.55);
}

.section-container--grip-models .models .svg-container svg {
  display: block;
  overflow: hidden;
  width: 100%;
}

.section-container--grip-models .models--four .svg-container {
  width: 25%;
}

.section-container--grip-models .models--three .svg-container {
  width: 33%;
}

.section-container--grip-models .models--two .svg-container {
  width: 45%;
}

.section-container--grip-models .models .btn {
  margin-top: 35px;
  padding: 12px 18px;
}

@media screen and (min-width: 960px) {
  .section-container--grip-models .models .btn {
    margin-top: 45px;
  }
}

.section-container--grip-models .asset-container {
  position: relative;
  z-index: 1;
  width: calc(100% + 20px);
  height: 50vw;
  background: transparent left top no-repeat;
  background-size: 130vw auto;
  transition: all 0.3s;
}

.section-container--grip-models .asset-container.hide {
  opacity: 0;
}

@media screen and (min-width: 960px) {
  .section-container--grip-models .asset-container {
    margin-top: -80px;
  }
}

@media screen and (min-width: 1280px) {
  .section-container--grip-models .asset-container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(100% - 40px);
    margin: 0;
    background-size: 100vw auto;
  }
}

.section-container--grip-models .asset-container .asset-bullet {
  cursor: pointer;
  position: absolute;
  width: 22px;
  height: 22px;
  transform-origin: center;
  transform: rotate(45deg);
  transition: all 0.3s cubic-bezier(0, -0.02, 0.18, 2.5);
}

@media screen and (min-width: 960px) {
  .section-container--grip-models .asset-container .asset-bullet {
    width: 32px;
    height: 32px;
  }
}

.section-container--grip-models .asset-container .asset-bullet:before, .section-container--grip-models .asset-container .asset-bullet:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.section-container--grip-models .asset-container .asset-bullet:before {
  background-color: white;
  z-index: -2;
  animation: wave 2s linear infinite;
}

.section-container--grip-models .asset-container .asset-bullet:after {
  background-color: #2c2a25;
}

.section-container--grip-models .asset-container .asset-bullet span {
  position: absolute;
  z-index: 10;
  top: 3px;
  bottom: 3px;
  left: 3px;
  right: 3px;
  border: 2px solid white;
  transition: all 0.3s;
}

@media screen and (min-width: 960px) {
  .section-container--grip-models .asset-container .asset-bullet span {
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
  }
}

.section-container--grip-models .asset-container .asset-bullet.active {
  transform: rotate(45deg) scale(1.55);
}

.section-container--grip-models .asset-container .asset-bullet.active span {
  background: white;
}

.section-container--grip-models .asset-container .asset-bullet.active:before {
  display: none;
}

.section-container--grip-models .asset-container .asset-bullet:nth-of-type(1) {
  top: 11vw;
  left: 30vw;
}

.section-container--grip-models .asset-container .asset-bullet:nth-of-type(2) {
  top: 18vw;
  left: 48vw;
}

.section-container--grip-models .asset-container .asset-bullet:nth-of-type(3) {
  top: 26vw;
  left: 63vw;
}

.section-container--grip-models .asset-container .asset-bullet:nth-of-type(4) {
  top: 32vw;
  left: 80vw;
}

.section-container--grip-models .details-list-container {
  position: relative;
  z-index: 10;
  padding: 0 10px;
  margin-bottom: 25px;
}

.section-container--grip-models .details-list-container img {
  width: 50%;
  max-width: 170px;
  margin-bottom: 12px;
}

@media screen and (min-width: 960px) {
  .section-container--grip-models .details-list-container {
    margin-bottom: 55px;
  }
  .section-container--grip-models .details-list-container .detail-item-container {
    width: 600px;
    display: flex;
    align-items: center;
  }
  .section-container--grip-models .details-list-container .detail-item-container img {
    width: 140px;
  }
}

.section-container--grip-models .details-list-container .bx-wrapper {
  transition: all 0.3s;
}

.section-container--grip-models .details-list-container .bx-wrapper:nth-of-type(1n+2) {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  right: 10px;
  opacity: 0;
  z-index: -1;
}

.section-container--grip-models .details-list-container .bx-pager {
  position: relative;
  bottom: auto;
  padding: 10px 0;
  text-align: left;
}

.section-container--grip-models .details-list-container .bx-pager .bx-pager-item a {
  background: #d7d7d7;
  width: 14px;
  height: 14px;
  border-radius: 0;
  border: none;
  margin: 0 16px;
  transition: all 0.3s;
  transform: rotate(45deg);
}

.section-container--grip-models .details-list-container .bx-pager .bx-pager-item a.active {
  background-color: #b0001d;
  transform: rotate(45deg) scale(1.4);
}

.section-container--grip-models .details-list-container .detail-item-container {
  display: flex;
}

.section-container--grip-models .details-list-container .detail-item-container img {
  align-self: flex-start;
  margin-right: 10px;
}

@media screen and (min-width: 640px) {
  .section-container--grip-models .details-list-container .detail-item-container img {
    max-width: 190px;
    margin-right: 30px;
  }
}

@media screen and (min-width: 640px) {
  .section-container--grip-models .details-list-container .bx-controls {
    position: absolute;
    bottom: 10px;
    left: 210px;
  }
}

@media screen and (min-width: 960px) {
  .section-container--grip-models .details-list-container .detail-item-container img {
    margin-right: 10px;
  }
  .section-container--grip-models .details-list-container .bx-controls {
    bottom: -20px;
    left: 158px;
  }
}

@media screen and (min-width: 1280px) {
  .section-container--grip-models .details-list-container .bx-controls {
    bottom: -40px;
  }
}

.section-container--grip-models .details-list-container .content {
  max-width: 300px;
  position: relative;
}

@media screen and (max-width: 639px) {
  .section-container--grip-models .details-list-container .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
  }
}

@media screen and (min-width: 960px) {
  .section-container--grip-models .details-list-container .content {
    margin-bottom: 30px;
    padding: 0 15px;
    max-width: 350px;
  }
}

.section-container--grip-models .details-list-container .title {
  line-height: 1.375rem;
  font-family: "Overpass-Bold", sans-serif;
  text-transform: uppercase;
  margin-bottom: 12px;
  max-width: 210px;
}

@media screen and (min-width: 960px) {
  .section-container--grip-models .details-list-container .title {
    font-size: 1.125rem;
    line-height: 1.5rem;
    max-width: 100%;
  }
}

.section-container--grip-models .details-list-container .copy {
  display: none;
}

@media screen and (min-width: 640px) {
  .section-container--grip-models .details-list-container .copy {
    display: block;
    font-size: 0.8125rem;
    line-height: 1.3125rem;
  }
}

@media screen and (min-width: 960px) {
  .section-container--grip-models .details-list-container .copy {
    font-size: 0.875rem;
    line-height: 1.875rem;
  }
}

@media screen and (min-width: 640px) {
  .section-container--grip-models .btn {
    margin-left: 210px;
  }
}

@media screen and (min-width: 960px) {
  .section-container--grip-models .btn {
    margin-left: 177px;
    margin-top: 25px;
  }
}

.section-container--grip-models[data-grip-name="plus4"] .asset-container .asset-bullet:nth-of-type(2) {
  top: 28vw;
  left: 75.5vw;
}

.section-container--grip-models[data-grip-name="plus4"] .asset-container .asset-bullet:nth-of-type(3) {
  top: 36vw;
  left: 88.3vw;
}

.section-container--grip-models[data-grip-name="snsr"] {
  background: transparent url(//www.golfpride.com/align/library/img/bg-body-warehouse.jpg) center top no-repeat;
  background-size: cover;
}

@media screen and (max-width: 1279px) {
  .section-container--grip-models[data-grip-name="snsr"] {
    padding-bottom: 0;
  }
}

.section-container--grip-models[data-grip-name="snsr"] .title {
  max-width: 340px;
}

.section-container--grip-models[data-grip-name="snsr"] .asset-container {
  background-size: cover;
}

.section-container--grip-models[data-grip-name="snsr"] .asset-container .asset-bullet:nth-of-type(1) {
  top: 19vw;
  left: 20vw;
}

.section-container--grip-models[data-grip-name="snsr"] .asset-container .asset-bullet:nth-of-type(2) {
  top: 29vw;
  left: 49vw;
}

.section-container--grip-models[data-grip-name="snsr"] .asset-container .asset-bullet:nth-of-type(3) {
  top: 35vw;
  left: 68vw;
}

.section-container--grip-models__flipped {
  background: transparent url(//www.golfpride.com/align/library/img/bg-body-warehouse.jpg) center top no-repeat;
  background-size: cover;
}

.section-container--grip-models__flipped .grip-model-wrapper--title {
  justify-content: flex-start;
}

.section-container--grip-models__flipped .asset-container {
  height: 47vw;
  background-size: auto 100%;
}

.section-container--grip-models__flipped .asset-container .asset-bullet:nth-of-type(1) {
  top: 38vw;
  left: 13vw;
}

.section-container--grip-models__flipped .asset-container .asset-bullet:nth-of-type(2) {
  top: 23vw;
  left: 37vw;
}

.section-container--grip-models__flipped .asset-container .asset-bullet:nth-of-type(3) {
  top: 16vw;
  left: 63vw;
}

.section-container--grip-models__flipped .detail-item-container .title {
  max-width: none;
}

.section-container--grip-models__flipped .detail-item-container .content:before {
  left: 0;
  right: auto;
  transform: rotate(-45deg);
}

.section-container--promox-box .promox-box-row {
  position: relative;
  padding: 205px 0 55px;
  overflow: hidden;
  margin-bottom: 55px;
}

.section-container--promox-box .promox-box-row:before {
  content: '';
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  top: 180px;
  bottom: -100px;
  background: white;
  transform: skewY(8deg);
}

.section-container--promox-box .promox-box-row--right:before {
  transform: skewY(-8deg);
}

.section-container--promox-box .promox-box-row .btn {
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 640px) {
  .section-container--promox-box .promox-box-row {
    padding: 0;
    display: flex;
    height: 455px;
    align-items: center;
    margin-bottom: 125px;
  }
  .section-container--promox-box .promox-box-row:before {
    top: 0;
    bottom: 0;
    left: -250px;
    right: calc(100% - 350px);
    transform: skewX(-15deg);
  }
  .section-container--promox-box .promox-box-row--right {
    flex-direction: row-reverse;
    text-align: right;
  }
  .section-container--promox-box .promox-box-row--right:before {
    right: -250px;
    left: calc(100% - 350px);
    transform: skewX(15deg);
  }
  .section-container--promox-box .promox-box-row--right .title {
    transform-origin: right top;
  }
}

@media screen and (min-width: 1280px) {
  .section-container--promox-box .promox-box-row {
    height: 510px;
    margin-bottom: 175px;
    justify-content: center;
  }
  .section-container--promox-box .promox-box-row .content {
    transform: translateX(-660px) translateX(50%);
  }
  .section-container--promox-box .promox-box-row:before {
    right: calc(50vw + 220px);
    transform: skewX(-40deg);
  }
  .section-container--promox-box .promox-box-row--right .content {
    transform: translateX(660px) translateX(-50%);
  }
  .section-container--promox-box .promox-box-row--right:before {
    right: -250px;
    left: calc(50vw + 100px);
    transform: skewX(40deg);
  }
}

.section-container--promox-box .asset {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: transparent center top no-repeat;
  background-size: cover;
  transition: all 1s;
}

.section-container--promox-box .asset--desktop {
  display: none;
}

@media screen and (min-width: 640px) {
  .section-container--promox-box .asset--mobile {
    display: none;
  }
  .section-container--promox-box .asset--desktop {
    display: block;
    background-position: left center;
  }
}

@media screen and (min-width: 1280px) {
  .section-container--promox-box .asset--desktop {
    left: calc(50vw - 600px);
  }
}

@media screen and (min-width: 1280px) {
  .section-container--promox-box .promox-box-row--right .asset--desktop {
    left: 0;
    right: calc(50vw - 600px);
  }
}

.section-container--promox-box .content {
  position: relative;
  z-index: 10;
  max-width: 440px;
  padding: 0 30px;
  margin: 0 auto;
  overflow: visible;
  align-self: center;
}

@media screen and (min-width: 640px) {
  .section-container--promox-box .content {
    margin: 0;
    max-width: 320px;
    padding: 0 20px;
  }
}

@media screen and (min-width: 1280px) {
  .section-container--promox-box .content {
    max-width: 380px;
  }
}

.section-container--promox-box .title {
  font-size: 2.25rem;
  line-height: 1;
  font-family: "Overpass-Bold", sans-serif;
  text-transform: uppercase;
  margin-bottom: 26px;
}

@media screen and (min-width: 640px) {
  .section-container--promox-box .title {
    transform-origin: left top;
    font-size: 1.125rem;
    padding-bottom: 24px;
    transform: scale(3);
  }
}

@media screen and (min-width: 1280px) {
  .section-container--promox-box .title {
    transform: scale(6);
    padding-bottom: 95px;
    margin-bottom: 33px;
  }
}

.section-container--promox-box .sub-title {
  line-height: 1.25rem;
  font-family: "Overpass-Bold", sans-serif;
  text-transform: uppercase;
  margin-bottom: 12px;
}

@media screen and (min-width: 640px) {
  .section-container--promox-box .sub-title {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}

.section-container--promox-box .copy {
  font-size: 0.90625rem;
  line-height: 1.4375rem;
  margin-bottom: 30px;
}

@media screen and (min-width: 640px) {
  .section-container--promox-box .copy {
    font-size: 1rem;
    line-height: 1.625rem;
    margin-bottom: 40px;
  }
}

.section-container .title-stats,
.section-container .title-copy {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-container .title-stats {
  font-family: "Overpass-Extra-Light", sans-serif;
  font-size: 3rem;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 17px;
}

.section-container .title-copy {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  margin-bottom: 27px;
}

.section-container--tour-stats {
  padding-top: 55px;
  background: url(../img/home-page-revamp/bg-section-tour-specs-mobile.jpg) center center no-repeat;
  background-size: cover;
  max-width: 1400px;
  margin: 0 auto;
}

.section-container--tour-stats:before {
  content: '';
  position: absolute;
  top: 0;
  height: 50%;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 960px) {
  .section-container--tour-stats {
    padding: 0;
    background-image: url(../img/home-page-revamp/bg-section-tour-specs.jpg);
  }
  .section-container--tour-stats:before {
    width: 50%;
  }
  .section-container--tour-stats:after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 0;
    height: 50%;
    right: 0;
    width: 50%;
    background-color: rgba(0, 0, 0, 0.5);
  }
}

.section-container--tour-stats .tour-victory-container {
  position: relative;
  z-index: 10;
  margin: 0 auto 55px;
  width: 100vw;
  height: 100vw;
  max-width: 240px;
  max-height: 240px;
  color: white;
  letter-spacing: 0.5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 960px) {
  .section-container--tour-stats .tour-victory-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 335px;
    max-height: 335px;
  }
}

@media screen and (min-width: 1280px) {
  .section-container--tour-stats .tour-victory-container {
    max-width: 360px;
    max-height: 360px;
  }
}

.section-container--tour-stats .tour-victory-container:before, .section-container--tour-stats .tour-victory-container:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform-origin: center;
  transform: rotate(-45deg);
}

.section-container--tour-stats .tour-victory-container:before {
  background: #b0001d;
}

.section-container--tour-stats .tour-victory-container:after {
  background: linear-gradient(45deg, #121212 0%, rgba(211, 211, 211, 0) 30%, rgba(205, 205, 205, 0) 70%, #121212 100%);
  opacity: 0.4;
}

.section-container--tour-stats .tour-victory-container .title {
  position: relative;
  z-index: 10;
  font-family: "Overpass-Bold", sans-serif;
  font-size: 1.375rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-container--tour-stats .tour-victory-container .title:after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: white;
}

@media screen and (min-width: 960px) {
  .section-container--tour-stats .tour-victory-container .title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  .section-container--tour-stats .tour-victory-container .title:after {
    bottom: -20px;
    width: 92px;
    height: 4px;
  }
}

.section-container--tour-stats .tour-victory-container .companies {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  max-width: 80%;
  width: 100vw;
  background: transparent right center no-repeat;
  background-size: auto 100%;
}

.section-container--tour-stats .tour-victory-container .companies span {
  display: block;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 600;
}

.section-container--tour-stats .tour-victory-container .companies svg {
  width: 107px;
  height: 30px;
  fill: #fff;
  display: block;
}

@media screen and (min-width: 960px) {
  .section-container--tour-stats .tour-victory-container .companies span {
    font-size: 1.5rem;
  }
  .section-container--tour-stats .tour-victory-container .companies svg {
    width: 163px;
    height: 47px;
  }
}

.section-container--tour-stats .tour-stats-list-container {
  position: relative;
  z-index: 10;
  max-width: 260px;
  margin: 0 auto;
  padding: 140px 0;
}

@media screen and (min-width: 960px) {
  .section-container--tour-stats .tour-stats-list-container {
    padding: 0;
    max-width: 1400px;
  }
  .section-container--tour-stats .tour-stats-list-container .tour-stats-list {
    display: flex;
    flex-wrap: wrap;
  }
  .section-container--tour-stats .tour-stats-list-container .tour-stats-list-item {
    width: 50%;
    height: 24vw;
    max-height: 410px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .section-container--tour-stats .tour-stats-list-container .tour-stats-list-item img {
    max-width: 210px;
  }
}

@media screen and (min-width: 1280px) {
  .section-container--tour-stats .tour-stats-list-container .tour-stats-list-item img {
    max-width: 300px;
  }
}

.section-container--tour-stats .tour-stats-list-container .bx-wrapper .bx-pager {
  bottom: -100px;
}

.section-container--tour-stats .tour-stats-list-container .bx-wrapper .bx-pager.bx-default-pager {
  display: flex;
  justify-content: center;
}

.section-container--tour-stats .tour-stats-list-container .bx-wrapper .bx-pager.bx-default-pager .bx-pager-item {
  margin: 0 10px;
}

.section-container--tour-stats .tour-stats-list-container .bx-wrapper .bx-pager.bx-default-pager a {
  position: relative;
  width: 14px;
  height: 14px;
  margin: 0;
  border-radius: 0;
  border: 2px solid white;
  background: none;
  transform-origin: center;
  transform: rotate(45deg);
}

.section-container--tour-stats .tour-stats-list-container .bx-wrapper .bx-pager.bx-default-pager a.active:after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  top: -4px;
  bottom: -4px;
  background-color: white;
}

.section-container--my-grip-fit {
  padding: 50px 0 40px;
}

@media screen and (min-width: 640px) {
  .section-container--my-grip-fit {
    padding: 80px 0 70px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (min-width: 640px) {
  .section-container--my-grip-fit {
    padding: 140px 0 130px;
  }
}

@media screen and (min-width: 1280px) {
  .section-container--my-grip-fit {
    padding: 200px 0 190px;
  }
}

.section-container--my-grip-fit .asset-container,
.section-container--my-grip-fit .content-container {
  padding-left: 25px;
}

.section-container--my-grip-fit .asset-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.section-container--my-grip-fit .asset-container img {
  width: 50%;
  height: auto;
}

.section-container--my-grip-fit .asset-container img:nth-of-type(2) {
  display: none;
}

@media screen and (min-width: 960px) {
  .section-container--my-grip-fit .asset-container img {
    width: 33%;
  }
  .section-container--my-grip-fit .asset-container img:nth-of-type(2) {
    display: block;
  }
}

.section-container--my-grip-fit .content-container {
  max-width: 300px;
}

.section-container--my-grip-fit .title {
  font-family: "Overpass-Bold", sans-serif;
  font-size: calc(42px + (46 - 42) * (100vw - 320px) / (1280 - 320));
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

@media screen and (min-width: 640px) {
  .section-container--my-grip-fit .title {
    transform-origin: left bottom;
    transform: scale(1.3);
  }
}

@media screen and (min-width: 1280px) {
  .section-container--my-grip-fit .title {
    font-size: 2.875rem;
  }
}

.section-container--my-grip-fit .copy {
  font-size: 0.90625rem;
  line-height: 1.1875rem;
  margin-bottom: 30px;
}

@media screen and (min-width: 960px) {
  .section-container--my-grip-fit .copy {
    font-size: 1rem;
    line-height: 1.3125rem;
  }
}

.section-container--hero-video {
  position: relative;
  z-index: 10;
  height: 60vw;
  max-height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 640px) {
  .section-container--hero-video {
    height: 50vw;
  }
  .section-container--hero-video img {
    display: none;
  }
}

.section-container--hero-video .asset-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  overflow: hidden;
}

.section-container--hero-video .asset-container:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.4);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

.section-container--hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  height: auto;
  width: auto;
  max-width: none;
  max-height: 100vw;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 639px) {
  .section-container--hero-video video {
    display: none;
  }
}

.section-container--hero-video .content-container {
  position: relative;
  z-index: 10;
  font-size: calc(23px + (72 - 23) * (100vw - 320px) / (1280 - 320));
  color: white;
  line-height: 1.2;
  text-transform: uppercase;
}

@media screen and (min-width: 1280px) {
  .section-container--hero-video .content-container {
    font-size: 4.5rem;
  }
}

.section-container--hero-video .title {
  text-indent: -16px;
}

.section-container--hero-video .sub-title {
  font-family: "Overpass-Bold", sans-serif;
  text-indent: 16px;
}

.section-container--hero-video .play-button-container {
  display: none;
}

@media screen and (min-width: 640px) {
  .section-container--hero-video .play-button-container {
    cursor: pointer;
    display: block;
    position: absolute;
    right: 20px;
    bottom: 20px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .section-container--hero-video .play-button-container svg {
    position: absolute;
    height: 12px;
    top: calc(50% - 6px);
    left: calc(50% - 8px);
  }
}

.grip-promo-container {
  padding-bottom: 55px;
  overflow: hidden;
}

.grip-promo-container .btn {
  font-size: .875rem;
  padding: 24px 44px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.grip-promo-container .btn__view-all {
  background-color: transparent;
  padding: 0;
  line-height: 2.5rem;
  border: solid #b0001d;
  border-width: 0 0 2px;
  color: #b0001d;
  box-shadow: none;
  transform: translate(calc(50vw - 50%), 0);
}

.grip-promo-container .btn__view-all:hover {
  border-color: transparent;
}

.grip-promo--card {
  position: relative;
  margin-bottom: 60px;
  padding: 60px 0 50px;
}

.grip-promo--card:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  bottom: -20px;
  opacity: 0.15;
  background: transparent center center repeat;
  box-shadow: inset 0 0 100px white;
}

@media screen and (min-width: 960px) {
  .grip-promo--card:before {
    left: 40%;
  }
}

.grip-promo--card:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 768px) {
  .grip-promo--card:after {
    left: 85px;
    right: 85px;
  }
}

@media screen and (min-width: 960px) {
  .grip-promo--card:after {
    left: 50%;
  }
}

.grip-promo--card__first {
  margin-top: 40px;
}

.grip-promo--card__align:before {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0.9) 100%), url(../img/home-pg-v3/bg-card-texture-align.png);
}

.grip-promo--card__align:after {
  top: -150px;
}

@media screen and (min-width: 960px) {
  .grip-promo--card__align:after {
    right: 65px;
  }
}

.grip-promo--card__plus4:before {
  opacity: 0.1;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0.9) 100%), url(../img/home-pg-v3/bg-card-texture-plus4.png);
}

@media screen and (min-width: 960px) {
  .grip-promo--card__plus4:before {
    left: 0;
    right: 40%;
  }
}

@media screen and (min-width: 960px) {
  .grip-promo--card__plus4:after {
    top: 3vw;
    bottom: 15vw;
    left: 85px;
    right: 45%;
  }
}

.grip-promo--card__snsr:before {
  opacity: 0.2;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0.9) 100%), url(../img/home-pg-v3/bg-card-texture-snsr.png);
}

@media screen and (min-width: 960px) {
  .grip-promo--card__snsr:after {
    top: 5vw;
    bottom: 10vw;
    left: 47%;
    right: 0;
  }
}

@media screen and (min-width: 960px) {
  .grip-promo--card {
    display: flex;
    flex-direction: row-reverse;
    max-width: 1280px;
    margin: 0 auto 120px;
  }
  .grip-promo--card__align {
    align-items: flex-end;
  }
  .grip-promo--card__plus4 {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  .grip-promo--card__snsr {
    padding: 0;
  }
}

@media screen and (max-width: 959px) {
  .grip-promo--card-asset {
    padding-top: 120px;
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
  }
}

@media screen and (min-width: 960px) {
  .grip-promo--card-asset {
    position: relative;
    z-index: 5;
    width: 50%;
    max-width: 700px;
  }
}

@media screen and (min-width: 960px) {
  .grip-promo--card-asset__plus4 {
    width: 65%;
    padding-right: 130px;
  }
}

.grip-promo--card-asset__snsr {
  padding-top: 140px;
}

@media screen and (min-width: 768px) {
  .grip-promo--card-asset__snsr img {
    margin-left: 85px;
  }
}

@media screen and (min-width: 960px) {
  .grip-promo--card-asset__snsr {
    padding-top: 70px;
  }
  .grip-promo--card-asset__snsr img {
    margin: 0;
  }
}

.grip-promo--card-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media screen and (min-width: 960px) {
  .grip-promo--card-content {
    width: 310px;
    margin-right: 120px;
    text-align: left;
    align-items: flex-start;
  }
  .grip-promo--card-content__align {
    padding-bottom: 70px;
  }
  .grip-promo--card-content__plus4 {
    margin-right: 0;
    padding-right: 20px;
  }
}

.grip-promo--logo {
  margin-bottom: 120vw;
  max-width: 235px;
}

@media screen and (min-width: 480px) {
  .grip-promo--logo {
    margin-bottom: 62vw;
    max-width: 255px;
  }
  .grip-promo--logo__align {
    margin-bottom: 68vw;
  }
  .grip-promo--logo__plus4 {
    max-width: 290px;
  }
  .grip-promo--logo__snsr {
    max-width: 320px;
  }
}

@media screen and (min-width: 768px) {
  .grip-promo--logo {
    margin-bottom: 45vw;
  }
  .grip-promo--logo__align {
    margin-bottom: 55vw;
  }
}

@media screen and (min-width: 960px) {
  .grip-promo--logo {
    margin-bottom: 52px;
  }
}

.grip-promo--description {
  font-size: 0.9375rem;
  line-height: 2;
  margin: 0 auto 34px;
  max-width: 300px;
}

@media screen and (min-width: 480px) {
  .grip-promo--description {
    max-width: 405px;
  }
}

.new-tech-nav-logo--container {
  position: relative;
  z-index: 5;
  padding: 35px 0 5px;
}

@media screen and (min-width: 960px) {
  .new-tech-nav-logo--container {
    padding: 85px 0 15px;
  }
}

.new-tech-nav-logo--container:before {
  content: '';
  position: absolute;
  top: -180px;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  background-color: #020001;
  transform: skewY(-5deg);
  transform-origin: top right;
}

.new-tech-nav-logo--title {
  position: relative;
  color: #484748;
  text-align: center;
  font-family: "Overpass-Bold", sans-serif;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

@media screen and (max-width: 767px) {
  .new-tech-nav-logo--title .second-line {
    display: block;
    font-size: 50px;
  }
}

@media screen and (min-width: 768px) {
  .new-tech-nav-logo--title {
    font-size: 5.125rem;
  }
}

@media screen and (min-width: 960px) {
  .new-tech-nav-logo--title {
    font-size: 6.25rem;
  }
}

@media screen and (min-width: 1280px) {
  .new-tech-nav-logo--title {
    font-size: 8.125rem;
  }
}

.new-tech-nav-logo--title:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55px;
  background-image: linear-gradient(to top, black, rgba(0, 0, 0, 0));
}

@media screen and (min-width: 960px) {
  .new-tech-nav-logo--title:after {
    height: 80px;
  }
}

.new-tech-nav-logo--assets {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(0, -8px);
}

@media screen and (min-width: 768px) {
  .new-tech-nav-logo--assets {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto;
    max-width: 1110px;
    transform: translate(0, -20px);
  }
}

@media screen and (min-width: 960px) {
  .new-tech-nav-logo--assets {
    transform: translate(0, -30px);
  }
}

.new-tech-nav-logo--assets-card {
  cursor: pointer;
  position: relative;
  display: block;
  padding: 30px 0;
}

.new-tech-nav-logo--assets-card:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: calc(50% - 105px);
  width: 210px;
  height: 1px;
  background-color: #818080;
}

@media screen and (min-width: 768px) {
  .new-tech-nav-logo--assets-card:after {
    width: 1px;
    height: 100%;
    right: 0;
    left: auto;
  }
}

@media screen and (max-width: 767px) {
  .new-tech-nav-logo--assets-card:nth-of-type(1) {
    padding-top: 0;
    max-width: 165px;
  }
  .new-tech-nav-logo--assets-card:nth-of-type(2) {
    max-width: 175px;
  }
  .new-tech-nav-logo--assets-card:nth-of-type(3) {
    max-width: 205px;
  }
  .new-tech-nav-logo--assets-card:nth-of-type(3):after {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .new-tech-nav-logo--assets-card {
    padding: 25px 50px;
  }
  .new-tech-nav-logo--assets-card:nth-of-type(3):after {
    display: none;
  }
}

@media screen and (min-width: 960px) {
  .new-tech-nav-logo--assets-card {
    padding: 18px 77px;
  }
}

.tour-victories--container {
  background-color: white;
  padding: 30px 0;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  max-width: 88%;
  margin: 0 auto 65px;
  font-family: "Overpass-Bold", sans-serif;
  font-size: 1.5625rem;
  line-height: 2.25rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media screen and (min-width: 640px) {
  .tour-victories--container {
    padding: 80px 0;
    max-width: 80%;
    font-size: 2.5rem;
    line-height: 3rem;
  }
}

@media screen and (min-width: 960px) {
  .tour-victories--container {
    max-width: 930px;
    margin-bottom: 85px;
  }
}

.tour-victories--title {
  position: relative;
  max-width: 250px;
  margin: 0 auto 55px;
}

@media screen and (min-width: 640px) {
  .tour-victories--title {
    max-width: 400px;
  }
}

@media screen and (min-width: 960px) {
  .tour-victories--title {
    max-width: 930px;
    margin-bottom: 75px;
  }
}

.tour-victories--title:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -26px;
  width: 92px;
  height: 2px;
  background-color: #d7d7d7;
  transform: translate(-50%, 0);
}

@media screen and (min-width: 640px) {
  .tour-victories--title:after {
    width: 300px;
  }
}

@media screen and (min-width: 960px) {
  .tour-victories--title:after {
    bottom: -37px;
    width: 720px;
  }
}

.tour-victories--gp {
  color: #b1000d;
}

.tour-victories--gp .black {
  color: #262627;
}

.tour-victories--competitor {
  font-size: 1rem;
  line-height: 1.875rem;
  font-family: "Overpass-Light", sans-serif;
}

@media screen and (min-width: 640px) {
  .tour-victories--competitor {
    font-size: 1.25rem;
    line-height: 2.375rem;
  }
}

.tour-victories--tour-players {
  display: block;
  opacity: 0.2;
  width: 100%;
  max-width: 75%;
  margin: 0 auto 60px;
}

@media screen and (min-width: 640px) {
  .tour-victories--tour-players {
    max-width: 580px;
  }
}

@media screen and (min-width: 960px) {
  .tour-victories--tour-players {
    max-width: 780px;
    margin-bottom: 80px;
  }
}

.mygripfit-promo-block {
  position: relative;
  margin: 0 auto 70px;
  padding: 0 5px;
  max-width: 340px;
}

@media screen and (min-width: 640px) {
  .mygripfit-promo-block {
    margin-bottom: 100px;
    max-width: 780px;
  }
}

@media screen and (min-width: 960px) {
  .mygripfit-promo-block {
    max-width: 1200px;
  }
}

.mygripfit-promo-block--content {
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mygripfit-promo-block--content-title {
  margin-bottom: 12px;
  color: #b1000d;
  font-size: 2.5rem;
  line-height: 3.125rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mygripfit-promo-block--content-btn {
  font-size: 0.875rem;
  padding: 24px 44px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.pg-grip-archive .grip-type-menu {
  background: #515151;
  font-size: 0;
  text-align: center;
}

.pg-grip-archive .grip-type-menu ul {
  position: relative;
}

.pg-grip-archive .grip-type-menu li {
  width: 50%;
  display: inline-block;
}

.pg-grip-archive .grip-type-ctrl {
  position: relative;
  height: 37px;
  background: #515151;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  font: normal 16px/37px "Overpass-Bold", sans-serif;
  text-transform: uppercase;
  transition: background 0.25s ease;
}

.pg-grip-archive .grip-type-ctrl:after {
  position: absolute;
  top: 37px;
  left: 50%;
  display: block;
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 0 7px 0 7px;
  content: ' ';
  transform: translateX(-50%);
  transition: background 0.25s ease, border-width 0.25s ease;
}

.pg-grip-archive .grip-type-ctrl.active {
  background: #b0001d;
  color: #FFFFFF;
}

.pg-grip-archive .grip-type-ctrl.active:after {
  border-top-width: 9px;
  border-color: #b0001d transparent transparent transparent;
}

.pg-grip-archive .grip-type-ctrl:hover {
  color: #FFFFFF;
}

.pg-grip-archive[data-type="putter"] .grip-filters {
  display: none;
}

.pg-grip-archive .grip-filters {
  position: relative;
  margin-top: 40px;
  font-size: 0;
  text-align: center;
  z-index: 10;
}

.pg-grip-archive .grip-filters.active .grip-filters-wrapper {
  width: 220px;
}

.pg-grip-archive .grip-filters.active .grip-filters-wrapper-trigger {
  opacity: 0.35;
}

.pg-grip-archive .grip-filters.active .grip-filters-wrapper-trigger:after {
  content: attr(data-label-active);
}

.pg-grip-archive .grip-filters.active .grip-filters-wrapper-trigger:hover {
  opacity: 1;
}

.pg-grip-archive .grip-filters.active .grip-filters-wrapper-inner {
  max-height: 450px;
  margin: 20px 0 10px 0;
}

@media screen and (min-width: 960px) {
  .pg-grip-archive .grip-filters .grip-filters-wrapper {
    width: auto !important;
    border: 0;
  }
  .pg-grip-archive .grip-filters .grip-filters-wrapper-trigger {
    display: none;
  }
  .pg-grip-archive .grip-filters .grip-filters-wrapper-inner {
    max-height: none !important;
    overflow: visible;
  }
}

.pg-grip-archive .grip-filters-wrapper {
  width: 180px;
  margin: 0 auto;
  border: solid #262627 1px;
  transition: width 0.25s ease-in-out;
}

.pg-grip-archive .grip-filters-wrapper-trigger {
  cursor: pointer;
  font: normal 11px/35px "Overpass-Bold", sans-serif;
  text-align: center;
  text-transform: uppercase;
  transition: opacity 0.25s ease;
}

.pg-grip-archive .grip-filters-wrapper-trigger:after {
  content: attr(data-label-default);
}

.pg-grip-archive .grip-filters-wrapper-inner {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out, margin 0.25s ease-in-out;
}

.pg-grip-archive .grip-filter-ctrl-group {
  display: block;
  font: normal 11px/1 "Overpass-Bold", sans-serif;
  text-align: left;
  text-transform: uppercase;
  vertical-align: top;
}

@media screen and (max-width: 959px) {
  .pg-grip-archive .grip-filter-ctrl-group {
    margin: 0 auto 10px auto;
  }
}

@media screen and (min-width: 960px) {
  .pg-grip-archive .grip-filter-ctrl-group {
    display: inline-block;
  }
}

.pg-grip-archive .grip-filter {
  position: relative;
  width: 180px;
}

.pg-grip-archive .grip-filter .trigger {
  position: relative;
  height: 35px;
  padding-left: 15px;
  background: #FFFFFF;
  border: solid #262627 1px;
  cursor: pointer;
  line-height: 35px;
  transition: background 0.25s ease, color 0.25s ease;
}

.pg-grip-archive .grip-filter .trigger i {
  position: absolute;
  top: 50%;
  right: 12px;
  display: block;
  width: 16px;
  transform: translateY(-50%);
}

.pg-grip-archive .grip-filter .trigger svg {
  display: block;
  width: 100%;
  fill: #262627;
}

.pg-grip-archive .grip-filter .options {
  max-height: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.9);
  border: solid #262627 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

@media screen and (min-width: 960px) {
  .pg-grip-archive .grip-filter .options {
    position: absolute;
    top: 34px;
    left: 0;
    width: 100%;
  }
}

.pg-grip-archive .grip-filter .opt {
  position: relative;
  padding: 10px 35px 10px 15px;
  cursor: pointer;
}

.pg-grip-archive .grip-filter .opt i {
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  height: 10px;
  width: 10px;
  border: solid #262627 1px;
  transform: translateY(-50%);
}

.pg-grip-archive .grip-filter .opt i:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  height: 0;
  width: 0;
  background: #262627;
  content: ' ';
  transform: translate(-50%, -50%);
  transition: height 0.25s ease, width 0.25s ease;
}

.pg-grip-archive .grip-filter .opt:hover {
  background: rgba(0, 0, 0, 0.1);
}

.pg-grip-archive .grip-filter .opt.active i:after {
  height: 6px;
  width: 6px;
}

.pg-grip-archive .grip-filter.active .trigger {
  background: #262627;
  color: #FFFFFF;
}

.pg-grip-archive .grip-filter.active .trigger svg {
  fill: #FFFFFF;
}

.pg-grip-archive .grip-filter.active .options {
  max-height: 200px;
  padding: 8px 0;
  border-width: 1px;
}

@media screen and (min-width: 960px) {
  .pg-grip-archive .grip-filter.size {
    margin-right: 20px;
  }
}

.pg-grip-archive .grip-sort {
  overflow: hidden;
}

.pg-grip-archive .grip-sort .label {
  padding-bottom: 4px;
  text-align: center;
}

@media screen and (min-width: 960px) {
  .pg-grip-archive .grip-sort .label {
    float: left;
    padding: 8px 4px 0 0;
    text-align: right;
  }
}

.pg-grip-archive .grip-sort .button-group {
  overflow: hidden;
}

.pg-grip-archive .grip-sort .opt {
  height: 35px;
  width: 180px;
  background: #FFFFFF;
  border: solid #262627 1px;
  cursor: pointer;
  line-height: 35px;
  text-align: center;
  transition: background 0.25s ease, color 0.25s ease;
}

.pg-grip-archive .grip-sort .opt.active {
  background: #262627;
  color: #FFFFFF;
}

@media screen and (max-width: 959px) {
  .pg-grip-archive .grip-sort {
    width: 180px;
    margin-top: 20px;
  }
}

@media screen and (min-width: 960px) {
  .pg-grip-archive .grip-sort {
    margin-left: 50px;
  }
  .pg-grip-archive .grip-sort .label {
    float: left;
    width: 40px;
    padding: 8px 4px 0 0;
    text-align: right;
  }
  .pg-grip-archive .grip-sort .button-group {
    float: left;
  }
  .pg-grip-archive .grip-sort .opt {
    float: left;
  }
}

.pg-grip-archive[data-type="putter"] .grip-sorting-spectrum {
  display: none;
}

.pg-grip-archive[data-sort="moisture-management"] .icon-set.moisture-management {
  display: block;
}

.pg-grip-archive[data-sort="firmness"] .icon-set.firmness {
  display: block;
}

.pg-grip-archive .grip-sorting-spectrum {
  position: relative;
  margin-top: 50px;
  padding: 0 40px;
  z-index: 1;
}

.pg-grip-archive .grip-sorting-spectrum .spectrum {
  position: relative;
  height: 24px;
  background: linear-gradient(to right, #343434 0%, #DCDCDC 100%);
}

.pg-grip-archive .grip-sorting-spectrum .spectrum:before, .pg-grip-archive .grip-sorting-spectrum .spectrum:after {
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 40px;
  content: ' ';
  z-index: 1;
}

.pg-grip-archive .grip-sorting-spectrum .spectrum:before {
  left: 0;
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
}

.pg-grip-archive .grip-sorting-spectrum .spectrum:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%);
}

.pg-grip-archive .grip-sorting-spectrum .icon-set {
  display: none;
}

.pg-grip-archive .grip-sorting-spectrum .icon {
  position: absolute;
  top: 50%;
  display: block;
  height: 32px;
  width: 32px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0 10px 5px #FFFFFF;
  transform: translateY(-50%);
  z-index: 2;
}

.pg-grip-archive .grip-sorting-spectrum .icon.icon-alpha {
  left: -20px;
}

.pg-grip-archive .grip-sorting-spectrum .icon.icon-omega {
  right: -20px;
}

.pg-grip-archive .grip-sorting-spectrum .icon svg {
  display: block;
  width: 100%;
}

.pg-grip-archive .grip-display {
  position: relative;
  margin-top: 35px;
  margin-bottom: 50px;
  height: 340px;
  font-size: 0;
  overflow: hidden;
  z-index: 1;
}

.pg-grip-archive .grip-display:before, .pg-grip-archive .grip-display:after {
  position: absolute;
  display: block;
  top: 0;
  bottom: 1px;
  width: 50px;
  content: ' ';
  z-index: 2;
}

.pg-grip-archive .grip-display:before {
  left: 0;
  background: linear-gradient(to right, white 0%, white 30%, rgba(255, 255, 255, 0) 100%);
}

.pg-grip-archive .grip-display:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 70%, white 100%);
}

.pg-grip-archive .grip-display.centered .grip-wrapper {
  left: 50%;
  transform: translateX(-50%);
}

.pg-grip-archive .grip-display.centered .grip-display-ctrl {
  display: none;
}

.pg-grip-archive .grip-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 35px;
  transition: left 0.5s ease-out;
  white-space: nowrap;
  z-index: 1;
}

.pg-grip-archive .grip-wrapper:after {
  position: absolute;
  bottom: 0;
  left: -100px;
  right: -100px;
  display: block;
  height: 1px;
  background: #262627;
  content: ' ';
}

.pg-grip-archive .grip-display-ctrl {
  position: absolute;
  top: 50%;
  height: 100px;
  width: 40px;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 3;
}

.pg-grip-archive .grip-display-ctrl i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  height: 44px;
  width: 22px;
  transform: translate(-50%, -50%);
}

.pg-grip-archive .grip-display-ctrl.ctrl-left {
  left: 0;
}

.pg-grip-archive .grip-display-ctrl.ctrl-right {
  right: 0;
}

.pg-grip-archive .grip-display-ctrl svg {
  fill: #b0001d;
}

.pg-grip-archive .grip {
  position: relative;
  display: inline-block;
  width: 90px;
  text-align: center;
}

.pg-grip-archive .grip .quickview-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease 0;
}

.pg-grip-archive .grip .btn {
  display: block;
  padding: 10px 10px;
  cursor: pointer;
  font: normal 10px/1 "Overpass-Bold", sans-serif;
  letter-spacing: 1px;
}

.pg-grip-archive .grip .btn-quickview {
  margin-bottom: 15px;
}

.pg-grip-archive .grip .quickview-content {
  display: none;
}

@media screen and (min-width: 960px) {
  .pg-grip-archive .grip {
    cursor: default;
  }
}

.pg-grip-archive .grip-img {
  display: inline-block !important;
  height: 320px;
  transition: opacity 0.5s ease;
}

.pg-grip-archive .grip-name {
  position: absolute;
  top: 10px;
  right: 50%;
  margin-right: 35px;
  font: normal 10px/1 "Overpass-Bold", sans-serif;
  text-align: right;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: top right;
  transition: opacity 0.5s ease;
  white-space: nowrap;
}

.pg-grip-archive .grip-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  height: 24px;
  padding: 0 12px;
  color: #FFFFFF;
  font: normal 14px/24px "Overpass-Light", sans-serif;
  text-transform: uppercase;
  transform: translateX(-50%) skew(-10deg);
  z-index: 1;
}

.pg-grip-archive .grip-badge.new {
  background: #b0001d;
}

.pg-grip-archive .grip-badge.limited-edition {
  padding-top: 1px;
  background: #009f9b;
  font: normal 11px/1 "Overpass-Light", sans-serif;
}

@media screen and (min-width: 960px) {
  .pg-grip-archive .grip-display {
    height: 410px;
  }
  .pg-grip-archive .grip:hover .grip-img,
  .pg-grip-archive .grip:hover .grip-name {
    opacity: 0.4;
  }
  .pg-grip-archive .grip:hover .quickview-hover {
    opacity: 1;
    transition: opacity 0.5s ease 0.25s;
  }
  .pg-grip-archive .grip-img {
    height: 390px;
  }
  .pg-grip-archive .grip-name {
    margin-right: 39px;
  }
}

.grip-quickview {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background: rgba(19, 19, 21, 0.8);
  z-index: 999;
}

.grip-quickview .body {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 750px;
  padding: 50px 40px;
  background: #F2F2F2;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.grip-quickview .single-grip-product-well {
  padding: 0;
  background: none;
}

.grip-quickview .single-grip-product-well .h1 {
  margin-bottom: 20px;
  font: normal 52px/1 "Overpass-Bold", sans-serif;
}

.grip-quickview .single-grip-product-well .slogan {
  margin-bottom: 30px;
}

.grip-quickview .single-grip-product-well .main-product-img {
  float: none;
  width: 100%;
}

.grip-quickview .single-grip-product-well .wp-content {
  margin-bottom: 30px;
  font: normal 14px/1.45 "Overpass-Light", sans-serif;
}

.grip-quickview .single-grip-product-well .wp-content p {
  font: inherit;
}

.grip-quickview .single-grip-product-well .product-color-list {
  float: left;
  max-width: 75%;
  margin-left: 15px;
  text-align: left;
}

.grip-quickview .single-grip-product-well .product-color-list li {
  height: 25px;
  width: 25px;
  margin: 0 10px 0 0;
  cursor: default;
}

.grip-quickview .single-grip-product-well .product-color-list li:before, .grip-quickview .single-grip-product-well .product-color-list li:after {
  display: none;
}

.grip-quickview .single-grip-product-well .fulldetails {
  float: right;
  margin-right: 10px;
  color: #b0001d;
  font: normal 11px/25px "Overpass-Bold", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
}

.grip-quickview .single-grip-product-well .fulldetails i {
  display: inline-block;
  height: 11px;
  width: 5px;
  margin-left: 5px;
}

.grip-quickview .single-grip-product-well .fulldetails svg {
  fill: #b0001d;
}

.grip-quickview .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  height: 40px;
  width: 40px;
  background: #FFFFFF;
  box-shadow: -1px -1px 10px 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
  font: normal 30px/40px "Overpass-Light", sans-serif;
  text-align: center;
}

.grip-quickview .close-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.get-fit-ad-container {
  background: #515151 url(../img/bg-grip-acrhive-get-fit-ad.png) no-repeat center center;
  background-size: 100% auto;
  color: white;
  text-align: center;
  padding: 35px 0;
  margin-bottom: 40px;
}

.get-fit-ad-container .ad-title {
  color: white;
  font-size: 1.875rem;
  line-height: 2.125rem;
  margin: 0;
}

.get-fit-ad-container p {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.375rem;
  margin: 0 0 20px;
}

.get-fit-ad-container .btn {
  letter-spacing: 0;
  font-family: "Overpass-Bold", sans-serif;
  font-size: 0.6875rem;
  line-height: 1.875rem;
  padding: 0 60px;
  background-color: transparent;
}

.get-fit-ad-container .btn:hover {
  background-color: white;
  color: #515151;
}

.container-title {
  position: relative;
  color: #101013;
  font-size: 1.125rem;
  font-family: "Overpass-Bold", sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  font-style: normal;
  margin: 0;
}

@media screen and (min-width: 960px) {
  .container-title {
    text-align: center;
    font-size: 1.875rem;
  }
}

.coming-soon-banner {
  background-color: #b2001d;
  color: white;
}

.coming-soon-banner-text {
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1;
  padding: 1.0625rem 0.625rem;
  text-align: center;
}

.product-nav-container {
  display: none;
}

@media screen and (min-width: 960px) {
  .product-nav-container {
    display: block;
    width: 100%;
    overflow: hidden;
    background-color: #666567;
    padding: 20px 0;
  }
  .product-nav-container .nav-icon {
    float: left;
    max-height: 66px;
  }
  .product-nav-container .product-nav {
    float: right;
    padding: 13px;
  }
  .product-nav-container .product-nav a {
    float: left;
    font-family: "Overpass-Bold", sans-serif;
    font-size: 1.25rem;
    line-height: 40px;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    padding: 0 22px;
    cursor: pointer;
  }
  .product-nav-container .product-nav a:last-of-type {
    padding-right: 0;
  }
}

.single-grip-product-well {
  position: relative;
  padding: 50px 0;
  background-color: #efefef;
}

@media screen and (min-width: 960px) {
  .single-grip-product-well {
    padding: 105px 0 120px;
  }
}

.single-grip-product-well .new-banner-flag {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 46px;
  background: transparent url(../svg/icon-new-product-flag.svg) center center no-repeat;
  background-size: contain;
}

@media screen and (min-width: 960px) {
  .single-grip-product-well .new-banner-flag {
    width: 80px;
    height: 105px;
  }
}

@media screen and (min-width: 1280px) {
  .single-grip-product-well .new-banner-flag {
    right: 50%;
    transform: translate(640px, 0);
  }
}

.single-grip-product-well .h1 {
  font-family: "Overpass-Bold", sans-serif;
  font-weight: 100;
  font-size: 1.875rem;
  line-height: 2.125rem;
  padding: 3px 0;
  margin: 0;
  text-align: center;
  border: none;
}

@media screen and (min-width: 960px) {
  .single-grip-product-well .h1 {
    font-size: 4.75rem;
    line-height: 98px;
  }
}

.single-grip-product-well .slogan {
  text-align: center;
  color: #545556;
  font-size: 1.125rem;
  line-height: 1.375rem;
  margin: 0 0 17px;
  font-family: "Overpass-Light", sans-serif;
  font-style: normal;
}

@media screen and (min-width: 960px) {
  .single-grip-product-well .slogan {
    font-size: 1.625rem;
  }
}

.single-grip-product-well .wp-content p {
  font-size: 0.875rem;
  line-height: 1.375rem;
  margin: 0;
  text-align: left;
}

@media screen and (min-width: 960px) {
  .single-grip-product-well .wp-content p {
    font-size: 1.0625rem;
    line-height: 1.75rem;
    text-align: center;
  }
}

.single-grip-product-well .main-product-img {
  margin-bottom: 11px;
  transition: all 0.3s;
}

@media screen and (min-width: 960px) {
  .single-grip-product-well .main-product-img {
    float: left;
    width: 90%;
  }
}

.single-grip-product-well .main-product-img img {
  display: block;
  margin: 0 auto;
}

.single-grip-product-well .link-360,
.single-grip-product-well .view-360 {
  display: block;
  position: relative;
  z-index: 99;
  cursor: default;
  width: 30px;
  height: 30px;
  margin: 0 auto 12px;
}

.single-grip-product-well .link-360 svg,
.single-grip-product-well .view-360 svg {
  fill: #b5b5b5;
  transition: fill 0.3s;
}

.single-grip-product-well .link-360:hover svg,
.single-grip-product-well .view-360:hover svg {
  fill: #262627;
}

@media screen and (min-width: 960px) {
  .single-grip-product-well .link-360,
  .single-grip-product-well .view-360 {
    width: 45px;
    height: 45px;
    float: right;
    margin: 5% 40px 0 0;
  }
}

.single-grip-product-well .product-color-list {
  width: 100%;
  clear: both;
  margin-bottom: 15px;
  text-align: center;
}

.single-grip-product-well .product-color-list li {
  display: inline-block;
  cursor: pointer;
  width: 30px;
  height: 30px;
  margin: 0 7px;
  border: 1px solid #818181;
  position: relative;
  transition: all 0.3s;
}

.single-grip-product-well .product-color-list li.active {
  border-color: #262627;
  border-width: 2px;
}

.single-grip-product-well .product-color-list li:before, .single-grip-product-well .product-color-list li:after {
  position: absolute;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%);
  transition: top 0.35s ease, opacity 0.35s ease;
}

.single-grip-product-well .product-color-list li:before {
  top: -23px;
  padding: 5px 10px;
  background: #343434;
  border-radius: 3px;
  color: #FFFFFF;
  content: attr(aria-label);
  font: italic 13px/1 'Overpass-Light', sans-serif;
  white-space: nowrap;
}

.single-grip-product-well .product-color-list li:after {
  top: 0;
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #343434 transparent transparent transparent;
  content: ' ';
}

.single-grip-product-well .product-color-list li:hover {
  overflow: visible;
}

.single-grip-product-well .product-color-list li:hover:before {
  top: -33px;
  opacity: 1;
}

.single-grip-product-well .product-color-list li:hover:after {
  top: -10px;
  opacity: 1;
}

.single-grip-product-well .product-color-list li span {
  position: absolute;
  bottom: -2px;
  right: -8px;
  transform: rotate(-45deg);
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 12px 12px 0 12px;
  border-color: #343434 transparent transparent transparent;
}

.single-grip-product-well .product-sizes-avilable {
  width: 100%;
  overflow: hidden;
  margin-bottom: 15px;
  text-align: center;
}

.single-grip-product-well .product-sizes-avilable li {
  display: inline-block;
  line-height: 27px;
  background-color: #fefefe;
  color: #d7d7d7;
  border: 1px solid #d7d7d7;
  font-size: 0.9375rem;
  padding: 0 10px;
  margin: 0 5px 10px;
  opacity: 0.65;
  transition: all 0.3s;
}

.single-grip-product-well .product-sizes-avilable li.active {
  border-color: #818181;
  color: #4e4e4e;
}

.single-grip-product-well .grip-specs-data {
  margin-top: 5px;
  text-align: center;
}

.single-grip-product-well .grip-specs-data .trigger {
  text-transform: uppercase;
}

.single-grip-product-well .grip-specs-data .grip-specs-wrapper {
  display: none;
  overflow: hidden;
}

.single-grip-product-well .grip-specs-data .available-colors {
  position: relative;
  top: 2px;
  height: 15px;
}

.single-grip-product-well .grip-specs-data .available-colors .swatch {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 5px 0 0;
  border: 1px solid #818181;
  position: relative;
}

.single-grip-product-well .grip-specs-data .available-colors .corner {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 0 0 6px 6px;
  border-color: transparent transparent #343434 transparent;
}

.single-grip-product-well .grip-specs-data th, .single-grip-product-well .grip-specs-data td {
  padding: 3px 15px;
  border-bottom: solid #DDDDDD 1px;
  text-align: left;
  vertical-align: top;
}

.single-grip-product-well .grip-specs-data .disclaimer {
  margin-top: 7px;
  padding-right: 15px;
  font-size: 12px;
  font-style: italic;
  text-align: right;
}

.single-grip-product-well .grip-specs-data .disclaimer--patent {
  max-width: 230px;
  height: 50px;
  margin: 10px 0 0 auto;
  font-size: 0.8125rem;
  line-height: 48px;
  color: white;
  text-align: right;
  padding-right: 38px;
  background: transparent url(../img/bg-patented-technology.png) right center no-repeat;
  background-size: contain;
}

.single-grip-product-well .grip-specs-data.active {
  margin-top: 40px;
}

.single-grip-product-well .grip-specs-data.active .trigger {
  display: none;
}

.single-grip-product-well .grip-specs-data.active .grip-specs-wrapper {
  display: inline-block;
}

@media screen and (max-width: 639px) {
  .single-grip-product-well .grip-specs-data thead {
    display: none;
  }
  .single-grip-product-well .grip-specs-data tbody td {
    display: block;
    float: left\9;
    width: 100%\9;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-width: 0;
    white-space: nowrap;
    vertical-align: top;
  }
  .single-grip-product-well .grip-specs-data tbody td .available-colors {
    top: 3px;
    left: -1px;
    display: inline-block;
  }
  .single-grip-product-well .grip-specs-data tbody td:first-child {
    padding-top: 10px;
  }
  .single-grip-product-well .grip-specs-data tbody td:last-child {
    padding-bottom: 10px;
    border-bottom-width: 1px;
  }
  .single-grip-product-well .grip-specs-data tbody td[data-label] {
    font-size: 13px;
  }
  .single-grip-product-well .grip-specs-data tbody td[data-label]:before {
    display: inline-block;
    min-width: 70px;
    padding-right: 10px;
    content: attr(data-label) ":";
    font-weight: bold;
    text-align: right;
  }
}

.single-grip_family .grip-360-container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #efefef;
  z-index: -1;
  opacity: 0;
  transform: translateY(-200%);
  transition: opacity 0.3s, transform 0.9s;
}

.single-grip_family .grip-360-container .x-close {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 0;
  background-color: #d7d7d7;
  color: #b5b5b5;
  border: solid #b5b5b5;
  border-width: 0 0 1px 1px;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 2rem;
  z-index: 323;
}

.single-grip_family .grip-360-container .x-close:after {
  content: "\2715";
}

.single-grip_family.show-360-view {
  overflow: hidden;
}

.single-grip_family.show-360-view .grip-360-container {
  z-index: 1000000;
  opacity: 1;
  transform: translateY(0%);
  transition: opacity 0.9s, transform 0.3s;
}

.single-grip_family .gs-results-grip-img .img-set {
  position: static;
}

.single-grip_family .gs-results-grip-img .img-set:after {
  bottom: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #efefef 100%);
}

.single-grip_family .gs-results-grip-img .ctrls {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.single-grip_family .gs-results-grip-img .img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.single-grip_family .gs-results-grip-img img {
  display: block;
  width: auto;
  height: auto;
  max-height: 95%;
  max-width: 100%;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, 0);
}

.single-tour-stats-container {
  background-color: #b0001d;
  padding: 20px 0;
}

@media screen and (min-width: 960px) {
  .single-tour-stats-container {
    padding: 30px 0;
  }
}

.single-tour-stats-container .bx-wrapper {
  margin-bottom: 20px;
}

.single-tour-stats-container .single-tour-stats-list li {
  display: block;
  width: 100%;
  font-size: 1rem;
  line-height: 1.375rem;
  text-align: center;
  color: white;
  text-transform: uppercase;
}

@media screen and (min-width: 960px) {
  .single-tour-stats-container .single-tour-stats-list li {
    font-size: 1.5rem;
    line-height: 2.125rem;
  }
}

.single-tour-stats-container .bx-wrapper .bx-pager {
  bottom: -25px;
}

.single-tour-stats-container .bx-wrapper .bx-pager.bx-default-pager a {
  border-color: white;
  background: transparent;
  margin: 0 6px;
}

.single-tour-stats-container .bx-wrapper .bx-pager.bx-default-pager a.active {
  background: white;
}

.grip-technology-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.tech-shot-container {
  background: transparent center center no-repeat;
  background-size: auto 100%;
}

@media screen and (min-width: 960px) {
  .tech-shot-container {
    background-image: none !important;
    float: left;
  }
}

.tech-shot-container img {
  display: block;
  margin: 0 auto;
  max-width: 93.75%;
}

@media screen and (min-width: 960px) {
  .tech-shot-container img {
    max-width: 65%;
    position: absolute;
    left: -15%;
    bottom: 0;
  }
}

@media screen and (min-width: 1280px) {
  .postid-7540 .tech-shot-container img,
  .postid-7542 .tech-shot-container img {
    left: -3%;
  }
}

.tech-spec-container {
  border-top: 1px solid #474545;
  background-color: #252222;
  color: white;
}

@media screen and (min-width: 960px) {
  .tech-spec-container {
    float: right;
    width: 47.91667%;
    margin-right: 2.08333%;
    background: none;
    border: none;
  }
}

.tech-spec-container .tech-title,
.tech-spec-container .tech-sub-title {
  font-size: 1.125rem;
  line-height: 1.375rem;
  text-transform: uppercase;
  margin: 0 auto;
  max-width: 93.75%;
}

@media screen and (min-width: 960px) {
  .tech-spec-container .tech-title,
  .tech-spec-container .tech-sub-title {
    max-width: 100%;
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

.tech-spec-container .tech-title {
  font-family: "Overpass-Bold", sans-serif;
  margin-top: 17px;
}

.tech-spec-container .tech-sub-title {
  margin-bottom: 17px;
}

@media screen and (min-width: 960px) {
  .tech-spec-container .tech-title {
    margin-top: 60px;
  }
  .tech-spec-container .tech-sub-title {
    margin-bottom: 60px;
  }
}

.tech-spec-container .tech-spec-list {
  border-top: 1px solid #474545;
}

@media screen and (min-width: 960px) {
  .tech-spec-container .tech-spec-list {
    border: none;
    margin-bottom: 40px;
  }
}

.tech-spec-container .tech-spec-list li {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 13px 20px;
  border-bottom: 1px solid #474545;
}

.tech-spec-container .tech-spec-list li svg {
  float: left;
  fill: white;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.tech-spec-container .tech-spec-list li .tech-title {
  float: left;
  width: 85.71429%;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1rem;
  padding: 8px 0;
  color: white;
  font-style: normal;
  font-family: "Overpass-Light", sans-serif;
}

.tech-spec-container .tech-spec-list li p {
  font-size: 0.875rem;
  line-height: 1.125rem;
  text-align: left;
  margin: 0;
  padding-left: 40px;
  clear: both;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s;
}

@media screen and (min-width: 960px) {
  .tech-spec-container .tech-spec-list li p {
    opacity: 1;
    max-height: none;
  }
}

@media screen and (min-width: 960px) {
  .tech-spec-container .tech-spec-list li {
    border-bottom: none;
    padding: 0;
  }
  .tech-spec-container .tech-spec-list li svg {
    width: 60px;
    height: 60px;
  }
  .tech-spec-container .tech-spec-list li .tech-title {
    width: 82.6087%;
    font-size: 1.25rem;
    line-height: 1;
    margin-bottom: 8px;
    padding: 0;
  }
  .tech-spec-container .tech-spec-list li p {
    clear: none;
    padding: 0;
    float: left;
    width: 82.6087%;
    font-size: 0.9375rem;
    line-height: 1.375rem;
    margin: 0 0 45px;
  }
}

.tech-spec-container .tech-spec-list li.active p {
  max-height: 400px;
  opacity: 1;
}

.grip-specs-container {
  padding: 35px 0;
  position: relative;
  background-color: #efefef;
}

.grip-specs-container .page-wrapper {
  max-width: 20rem;
}

@media screen and (min-width: 640px) {
  .grip-specs-container .page-wrapper {
    max-width: 1100px;
  }
  .grip-specs-container .page-wrapper .container-title {
    display: inline-block;
    padding: 0 25px;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    transition: all 0.3s;
  }
  .grip-specs-container .page-wrapper .plus-minus-icon {
    top: 5px;
  }
}

@media screen and (min-width: 640px) and (min-width: 960px) {
  .grip-specs-container .page-wrapper .plus-minus-icon {
    top: 13px;
  }
}

.grip-specs-container .plus-minus-icon {
  opacity: 0;
  top: 5px;
  right: 0;
  display: block;
}

.grip-specs-container .plus-minus-icon .plus, .grip-specs-container .plus-minus-icon .minus {
  background-color: #101013;
}

@media screen and (min-width: 640px) {
  .grip-specs-container .plus-minus-icon {
    opacity: 1;
  }
}

.grip-specs-container .active .plus {
  background-color: #efefef;
}

.grip-specs-list {
  width: 100%;
  overflow: hidden;
}

.grip-specs-list .column-title,
.grip-specs-list .spec {
  font-size: 1.0625rem;
  line-height: 20px;
  padding: 10px 0;
  margin: 0;
  text-align: left;
}

.grip-specs-list .column-title {
  font-family: "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

@media screen and (min-width: 640px) {
  .grip-specs-list {
    opacity: 0;
    max-height: 0;
    transition: all 0.3s;
  }
  .grip-specs-list.active {
    opacity: 1;
    max-height: 500px;
    padding-top: 25px;
  }
  .grip-specs-list .spec-column {
    float: left;
    margin-right: 1.81818%;
    width: 20%;
  }
  .grip-specs-list .spec-column:nth-of-type(1) {
    width: 34.54545%;
  }
  .grip-specs-list .spec-column:nth-of-type(4) {
    margin-right: 0;
  }
}

.video-product-content .vjs-dock-text,
.video-product-content .vjs-dock-title,
.video-product-content .vjs-dock-description {
  visibility: hidden;
}

.join-conversation .social-icons {
  font-size: 0;
  text-align: center;
  margin: 0 0 20px;
}

.join-conversation .social-icons svg {
  display: inline-block;
  height: 35px;
  margin: 0 10px;
}

.join-conversation .juicer-feed .j-paginate {
  background-color: #b0001d;
  border-color: #b0001d;
  color: white;
}

.join-conversation .juicer-feed .j-paginate:hover {
  color: #b0001d;
  background-color: white;
}

.suggested-grips-container {
  padding: 35px 0;
  background-color: #fff;
}

.suggested-grips-container .page-wrapper {
  max-width: 20rem;
}

.suggested-grips-container .suggested-grips-list {
  width: 100%;
  overflow: hidden;
}

.suggested-grips-container a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.suggested-grips-container a img {
  transition: transform 0.3s;
}

.suggested-grips-container a:hover img {
  transform: scale(1.03);
}

.suggested-grips-container li {
  overflow: hidden;
  padding-top: 10px;
}

.suggested-grips-container .grip-img {
  display: block;
  width: 100%;
}

.suggested-grips-container .grip-name {
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.5rem;
}

@media screen and (min-width: 960px) {
  .suggested-grips-container {
    padding: 40px 0 35px;
  }
  .suggested-grips-container .page-wrapper {
    max-width: 68.75rem;
  }
  .suggested-grips-container li {
    float: left;
    width: 460px;
  }
  .suggested-grips-container li:nth-of-type(2n) {
    float: right;
  }
  .suggested-grips-container .grip-name {
    font-size: 1.25rem;
    line-height: 2.25rem;
  }
}

.grip-selector a {
  text-decoration: none;
}

.pg-grip-selector {
  max-width: none !important;
  padding: 0 !important;
}

.pg-grip-selector .page-wrapper {
  max-width: 1280px;
  padding: 0 20px;
}

.gs-nav {
  position: relative;
  background: #343434;
}

.gs-nav .step-trigger {
  position: relative;
  display: block;
  cursor: pointer;
  font: normal 17px/70px 'Overpass-Bold', sans-serif;
  text-align: center;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.gs-nav .step-trigger:hover {
  color: #B0001D;
}

.gs-nav .step-trigger:before, .gs-nav .step-trigger:after {
  position: absolute;
  top: 0;
  display: none;
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 35px 0 35px 15px;
  content: ' ';
  z-index: 2;
}

.gs-nav .step-trigger:before {
  left: 0;
  border-color: transparent transparent transparent #343434;
}

.gs-nav .step-trigger:after {
  right: 0;
  border-color: transparent transparent transparent #6E6E6E;
}

.gs-nav .step-trigger i {
  position: absolute;
  display: none;
  top: 0;
  right: 0;
  height: 100%;
  width: 15px;
  background: #343434;
  z-index: 1;
}

.gs-nav-ctrl {
  position: absolute;
  top: 50%;
  display: block;
  height: 40px;
  width: 40px;
  cursor: pointer;
  transform: translateY(-50%);
}

.gs-nav-ctrl svg {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  height: 15px;
  width: 15px;
  fill: #B5B5B5;
  transform: translate(-50%, -50%);
}

.gs-nav-ctrl.prev {
  left: 8px;
}

.gs-nav-ctrl.next {
  right: 8px;
}

.gs-nav-progress {
  position: absolute;
  top: 55px;
  left: 0;
  height: 5px;
  width: 100%;
  background: #FFFFFF;
}

.gs-nav-progress:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  display: block;
  background: #B5B5B5;
  content: ' ';
}

@media screen and (max-width: 959px) {
  .gs-nav {
    height: 55px;
  }
  .gs-nav .step-trigger {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    height: 55px;
    width: 100%;
    line-height: 55px;
  }
  .gs-panel[data-step="1"] .gs-nav .step-trigger-1 {
    display: block;
  }
  .gs-panel[data-step="2a"] .gs-nav .step-trigger-2a {
    display: block;
  }
  .gs-panel[data-step="2b"] .gs-nav .step-trigger-2b {
    display: block;
  }
  .gs-panel[data-step="3"] .gs-nav .step-trigger-3 {
    display: block;
  }
  .gs-panel[data-step="4"] .gs-nav .step-trigger-4 {
    display: block;
  }
}

@media screen and (min-width: 960px) {
  .gs-nav .page-wrapper {
    position: relative;
    z-index: 1;
  }
  .gs-nav ul {
    overflow: hidden;
  }
  .gs-nav .step-trigger {
    float: left;
    width: 22%;
    background: #343434;
    line-height: 70px;
  }
  .gs-nav .step-trigger[data-step="2b"] {
    display: none;
  }
  .gs-nav .step-trigger[data-step="4"] {
    width: 34%;
  }
  .gs-nav-ctrl {
    display: none;
  }
  .gs-nav-progress {
    display: none;
  }
}

.gs-panel {
  position: relative;
  color: #FFFFFF;
}

.gs-panel .btn {
  display: block;
  padding: 12px 0;
  background: #FFFFFF;
  border: solid #B5B5B5 1px;
  color: #262627;
  cursor: pointer;
  font: normal 15px/1 'Overpass-Light', sans-serif;
  letter-spacing: 2px;
}

.gs-panel .btn:hover {
  background-color: #E9E9E9;
}

.gs-panel .selector {
  position: relative;
  text-align: left !important;
  z-index: 10;
}

.gs-panel .selector span {
  position: relative;
  display: block;
  padding: 12px 38px 12px 15px;
  background: #FFFFFF;
  border: solid #B5B5B5 1px;
  border-radius: 2px;
  color: #262627;
  cursor: pointer;
  font: normal 15px/1 'Overpass-Light', sans-serif;
  letter-spacing: 0;
  outline: none;
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gs-panel .selector span:after {
  position: absolute;
  right: 12px;
  top: 50%;
  display: block;
  height: 14px;
  width: 14px;
  margin-top: -7px;
  background: url("../img/svg-inline/icon-arrow-full-down.svg") center center no-repeat;
  background-size: 100%;
  content: ' ';
}

.gs-panel .selector select {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 100%;
  cursor: pointer;
  font: normal 15px/1 'Overpass-Light', sans-serif;
  opacity: 0;
  -webkit-appearance: menulist-button;
}

.gs-body {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 550px;
}

@media screen and (min-width: 400px) {
  .gs-body {
    min-height: 630px;
  }
}

.gs-step {
  display: none;
  padding: 50px 0 30px 0;
  text-align: center;
}

@media screen and (min-width: 960px) {
  .gs-step {
    padding-top: 80px;
  }
}

.gs-step .question {
  margin-bottom: 5px;
  font: normal 32px/1 'Overpass-Bold', sans-serif;
  text-transform: uppercase;
}

@media screen and (min-width: 960px) {
  .gs-step .question {
    font-size: 50px;
  }
}

@media screen and (min-width: 1280px) {
  .gs-step .question {
    font-size: 70px;
  }
}

.gs-step .instructions {
  margin-bottom: 25px;
  font: normal 13px/1 'Overpass-Light', sans-serif;
}

.gs-step .options {
  max-width: 480px;
  margin: 0 auto;
  font-size: 0;
  overflow: hidden;
}

.gs-step .option {
  float: left;
  width: 100%;
  padding-bottom: 10px;
}

@media screen and (min-width: 960px) {
  .gs-step .options {
    max-width: 700px;
  }
  .gs-step .option {
    width: 50%;
    padding: 0 5px 10px 5px;
  }
}

.gs-step .video {
  width: 250px;
  margin: 50px auto 0 auto;
  cursor: pointer;
}

.gs-step .video .thumb {
  position: relative;
  display: block;
  height: 0;
  padding-bottom: 56.25%;
  background: url("../img/grip-selector/bg-video-thumb.jpg") center center no-repeat;
  background-size: cover;
  color: inherit;
}

.gs-step .video .thumb:after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(52, 52, 52, 0.9);
  content: ' ';
}

.gs-step .video .title {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 0 15px;
  font: italic 13px/1.25 'Overpass-Light', sans-serif;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(-50%);
  z-index: 2;
}

.gs-step .video .title i {
  position: relative;
  display: block;
  height: 36px;
  width: 36px;
  margin: 5px auto 0 auto;
  border: solid #FFFFFF 2px;
  border-radius: 50%;
}

.gs-step .video .title i svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  margin-left: -7px;
  fill: #FFFFFF;
  transform: translateY(-50%);
}

.gs-processing-indicator {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 20;
}

.gs-processing-indicator .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 150px;
  width: 150px;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 960px) {
  .gs-panel[data-step="1"] .gs-nav .step-trigger[data-step="1"] {
    background: #6E6E6E;
  }
  .gs-panel[data-step="1"] .gs-nav .step-trigger[data-step="1"]:before, .gs-panel[data-step="1"] .gs-nav .step-trigger[data-step="1"]:after {
    display: block;
  }
  .gs-panel[data-step="1"] .gs-nav .step-trigger[data-step="1"] i {
    display: block;
  }
}

.gs-panel[data-step="1"] .gs-nav-ctrl.prev {
  display: none;
}

.gs-panel[data-step="1"] .gs-nav-progress:before {
  width: 25%;
}

.gs-panel[data-step="1"] .gs-body {
  background-color: #B0001D;
  background-image: url("../img/grip-selector/bg-step-size.png");
  background-position: bottom center;
}

.gs-panel[data-step="1"] .gs-step-1 {
  display: block;
}

@media screen and (min-width: 960px) {
  .gs-panel[data-step="2a"] .gs-nav .step-trigger[data-step="2a"] {
    background: #6E6E6E;
  }
  .gs-panel[data-step="2a"] .gs-nav .step-trigger[data-step="2a"]:before, .gs-panel[data-step="2a"] .gs-nav .step-trigger[data-step="2a"]:after {
    display: block;
  }
  .gs-panel[data-step="2a"] .gs-nav .step-trigger[data-step="2a"] i {
    display: block;
  }
}

.gs-panel[data-step="2a"] .gs-nav-progress:before {
  width: 50%;
}

.gs-panel[data-step="2a"] .gs-body {
  background-color: #90908F;
  background-image: url("../img/grip-selector/bg-step-climate.png");
}

.gs-panel[data-step="2a"] .gs-step-2a {
  display: block;
}

@media screen and (min-width: 960px) {
  .gs-panel[data-step="2b"] .gs-nav .step-trigger[data-step="2a"] {
    background: #6E6E6E;
  }
  .gs-panel[data-step="2b"] .gs-nav .step-trigger[data-step="2a"]:before, .gs-panel[data-step="2b"] .gs-nav .step-trigger[data-step="2a"]:after {
    display: block;
  }
  .gs-panel[data-step="2b"] .gs-nav .step-trigger[data-step="2a"] i {
    display: block;
  }
}

.gs-panel[data-step="2b"] .gs-nav-progress:before {
  width: 50%;
}

.gs-panel[data-step="2b"] .gs-body {
  background-color: #90908F;
  background-image: url("../img/grip-selector/bg-step-climate.png");
}

.gs-panel[data-step="2b"] .gs-step-2b {
  display: block;
}

@media screen and (min-width: 960px) {
  .gs-panel[data-step="3"] .gs-nav .step-trigger[data-step="3"] {
    background: #6E6E6E;
  }
  .gs-panel[data-step="3"] .gs-nav .step-trigger[data-step="3"]:before, .gs-panel[data-step="3"] .gs-nav .step-trigger[data-step="3"]:after {
    display: block;
  }
  .gs-panel[data-step="3"] .gs-nav .step-trigger[data-step="3"] i {
    display: block;
  }
}

.gs-panel[data-step="3"] .gs-nav-progress:before {
  width: 75%;
}

.gs-panel[data-step="3"] .gs-body {
  background-color: #B0001D;
  background-image: url("../img/grip-selector/bg-step-firmness.png");
}

.gs-panel[data-step="3"] .gs-step-3 {
  display: block;
}

@media screen and (min-width: 960px) {
  .gs-panel[data-step="4"] .gs-nav .step-trigger[data-step="4"] {
    background: #6E6E6E;
  }
  .gs-panel[data-step="4"] .gs-nav .step-trigger[data-step="4"]:before, .gs-panel[data-step="4"] .gs-nav .step-trigger[data-step="4"]:after {
    display: block;
  }
  .gs-panel[data-step="4"] .gs-nav .step-trigger[data-step="4"] i {
    display: block;
  }
}

.gs-panel[data-step="4"] .gs-nav-ctrl.next {
  display: none;
}

.gs-panel[data-step="4"] .gs-nav-progress:before {
  width: 100%;
}

.gs-panel[data-step="4"] .gs-body {
  background-color: #90908F;
  background-image: url("../img/grip-selector/bg-step-texture.png");
}

.gs-panel[data-step="4"] .gs-step-4 {
  display: block;
}

.gs-step-1 .options-wrapper {
  position: relative;
}

.gs-step-1 .or {
  position: absolute;
  top: 50px;
  left: 50%;
  height: 37px;
  width: 37px;
  margin: 0 auto;
  transform: translateX(-50%);
}

.gs-step-1 .or:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  content: 'or';
  font: normal 11px/37px 'Overpass-Light', sans-serif;
  text-align: center;
  text-transform: uppercase;
  z-index: 2;
}

.gs-step-1 .or:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  height: 26px;
  width: 26px;
  margin: -14px 0 0 -13px;
  background: #343434;
  border: solid #FFFFFF 1px;
  content: ' ';
  transform: rotate(-45deg);
  transform-origin: 50% 50%;
  z-index: 1;
}

.gs-step-1 .measurement-helper {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 90%;
  max-width: 450px;
  transform: translateX(-50%);
}

.gs-step-1 .measurement-helper:before {
  display: block;
  height: 0;
  width: 100%;
  padding-bottom: 76.54%;
  background: url("../img/grip-selector/bg-size-measurement-aid.png") center center no-repeat;
  background-size: cover;
  content: ' ';
}

@media screen and (max-width: 639px) {
  .gs-step-1 .option-1 {
    padding-bottom: 55px;
  }
}

@media screen and (min-width: 640px) {
  .gs-step-1 .options {
    max-width: 600px;
  }
  .gs-step-1 .option {
    width: 50%;
  }
  .gs-step-1 .option-1 {
    padding-right: 30px;
  }
  .gs-step-1 .option-2 {
    padding-left: 30px;
  }
  .gs-step-1 .or {
    top: 1px;
  }
}

.gs-step-3 .options {
  max-width: 460px;
}

.gs-step-3 .option {
  padding: 0 5px 10px 5px;
}

.gs-step-3 .option.option-1, .gs-step-3 .option.option-2 {
  float: left;
  width: 50%;
}

.gs-step-3 .option.option-1:before, .gs-step-3 .option.option-2:before {
  display: block;
  height: 0;
  width: 100%;
  margin-bottom: 1px;
  padding-bottom: 57.27%;
  content: ' ';
}

.gs-step-3 .option.option-1:before {
  background: url("../img/grip-selector/bg-option-firmness-firm.jpg") center center no-repeat;
  background-size: cover;
}

.gs-step-3 .option.option-2:before {
  background: url("../img/grip-selector/bg-option-firmness-soft.jpg") center center no-repeat;
  background-size: cover;
}

.gs-step-3 .option.option-3 {
  width: 100%;
}

.gs-step-3 .video {
  margin-top: 20px;
}

@media screen and (max-width: 639px) {
  .gs-step-3 .option {
    padding: 0 0 10px 0;
  }
  .gs-step-3 .option.option-1, .gs-step-3 .option.option-2 {
    width: 100%;
  }
  .gs-step-3 .option.option-1:before, .gs-step-3 .option.option-2:before {
    display: none;
  }
}

.gs-step-4 .option.option-3 {
  float: none;
  margin: 0 auto;
  clear: left;
}

.gs-int-results {
  padding: 50px 0;
  background: url("../img/bg-grunge-diagonal.jpg") center center no-repeat;
  background-size: 100% 100%;
}

@media screen and (min-width: 960px) {
  .gs-int-results .page-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 0 60px 0 30px;
  }
}

@media screen and (min-width: 1280px) {
  .gs-int-results .page-wrapper {
    align-items: center;
  }
}

.gs-int-results-header {
  color: #b1000d;
  text-align: center;
  text-transform: uppercase;
}

.gs-int-results-header .title {
  font: normal 14px/1.2 'Overpass-Bold', sans-serif;
}

.gs-int-results-header .grip {
  font: normal 26px/1 'Overpass-Extra-Light', sans-serif;
}

.gs-int-results-header .instructions {
  position: relative;
  margin: 8px 0 0 0;
  padding: 12px 0 0 0;
  color: #131315;
  font: normal 16px/1.35 'Overpass-Bold', sans-serif;
}

.gs-int-results-header .instructions:after {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  height: 2px;
  width: 50px;
  background: #b1000d;
  content: '';
  transform: translate(-50%, 0);
}

@media screen and (max-width: 959px) {
  .gs-int-results-header {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 640px) {
  .gs-int-results-header .title {
    font-size: 16px;
  }
  .gs-int-results-header .grip {
    font-size: 36px;
  }
}

@media screen and (min-width: 960px) {
  .gs-int-results-header {
    flex: 1;
    text-align: left;
  }
  .gs-int-results-header .title {
    font-size: 20px;
  }
  .gs-int-results-header .grip {
    font-size: 45px;
  }
  .gs-int-results-header .instructions {
    margin: 10px 0 0 5px;
    padding: 5px 0 5px 15px;
  }
  .gs-int-results-header .instructions:after {
    top: 0;
    bottom: 0;
    left: 0;
    height: auto;
    width: 2px;
    transform: none;
  }
}

@media screen and (min-width: 1280px) {
  .gs-int-results-header {
    margin-top: -50px;
    padding-right: 220px;
  }
  .gs-int-results-header .grip {
    font-size: 55px;
  }
  .gs-int-results-header .instructions {
    margin: 20px 0 0 25px;
    font-size: 18px;
  }
}

.gs-int-results-options {
  display: flex;
  justify-content: space-between;
  max-width: 500px;
  margin: 0 auto;
}

.gs-int-results-options .grip {
  flex: 1;
}

.gs-int-results-options .grip:first-child {
  margin-right: 10px;
}

.gs-int-results-options .grip:last-child .grip-ribbon:before, .gs-int-results-options .grip:last-child .grip-ribbon:after {
  display: none;
}

.gs-int-results-options .grip-profile {
  position: relative;
  height: 720px;
}

.gs-int-results-options .grip-img-wrapper,
.gs-int-results-options .grip-img,
.gs-int-results-options .grip-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.gs-int-results-options .grip-img-wrapper {
  overflow: hidden;
}

.gs-int-results-options .grip-img {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: auto 850px;
  z-index: 2;
}

.gs-int-results-options .grip-bg {
  background: #FFFFFF;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
  transform: skewX(-4deg);
  transform-origin: bottom left;
  z-index: 1;
  overflow: hidden;
}

.gs-int-results-options .grip-ribbon {
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: 40px;
  height: 50px;
  background: #e2e2e3;
  overflow: hidden;
  transform: skewX(4deg);
}

.gs-int-results-options .grip-ribbon:before, .gs-int-results-options .grip-ribbon:after {
  position: absolute;
  display: block;
  content: '';
  background: #b1000d;
}

.gs-int-results-options .grip-ribbon:before {
  top: 0;
  left: 0;
  height: 100%;
  width: 130px;
  z-index: 2;
}

.gs-int-results-options .grip-ribbon:after {
  top: 50%;
  left: 100px;
  height: 50px;
  width: 50px;
  margin-top: -25px;
  border-radius: 4px;
  transform: rotate(45deg);
  transform-origin: center center;
  z-index: 1;
}

.gs-int-results-options .grip-promo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.gs-int-results-options .grip-promo .text {
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
}

.gs-int-results-options .grip-promo .img {
  position: absolute;
  left: 50%;
  bottom: 30px;
  margin-left: -5px;
  transform: translateX(-50%);
}

.gs-int-results-options .grip-promo .ribbon {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  width: 100%;
  background: #b1000d;
  content: '';
  transform: skewX(-4deg);
  z-index: 1;
}

.gs-int-results-options .grip-promo svg {
  position: absolute;
  left: 50%;
  display: block;
  width: auto;
  transform: translateX(-50%);
  z-index: 2;
}

.gs-int-results-options .grip-promo.align .img {
  height: 275px;
  width: 190px;
  background: url("../img/grip-selector/bg-promo-align-clubface.png") center center no-repeat;
  background-size: cover;
}

.gs-int-results-options .grip-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  width: 100%;
  padding: 8px;
  background-color: transparent !important;
  border-width: 2px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.gs-int-results-options .grip-btn:hover {
  background-color: #b1000d !important;
}

@media screen and (max-width: 959px) {
  .gs-int-results-options .grip:first-child .grip-img {
    height: 610px;
  }
  .gs-int-results-options .grip:first-child .grip-promo {
    padding: 49px 0 10px 0;
  }
  .gs-int-results-options .grip:first-child .grip-promo svg {
    top: 13px;
    height: 25px;
  }
  .gs-int-results-options .grip:first-child .grip-promo .img,
  .gs-int-results-options .grip:first-child .grip-promo .ribbon {
    display: none;
  }
  .gs-int-results-options .grip:first-child .grip-promo:after {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    height: 2px;
    width: 50px;
    background: #b1000d;
    content: '';
    transform: translateX(-50%);
  }
  .gs-int-results-options .grip-bg {
    display: none;
  }
}

@media screen and (min-width: 960px) {
  .gs-int-results-options {
    flex-basis: 500px;
  }
  .gs-int-results-options .grip:first-child {
    margin-right: 30px;
  }
  .gs-int-results-options .grip-profile {
    height: 490px;
  }
  .gs-int-results-options .grip-img {
    height: 110%;
    background-size: auto 610px;
    transform: rotate(-15deg) translate(-40px, 0);
    transform-origin: top center;
  }
  .gs-int-results-options .grip-promo {
    bottom: 40px;
    left: -200px;
    width: 220px;
  }
  .gs-int-results-options .grip-promo .text {
    display: none;
  }
  .gs-int-results-options .grip-promo svg {
    bottom: 0;
    height: 30px;
    margin: 0 0 10px -10px;
    fill: #FFFFFF;
  }
  .gs-int-results-options .grip-promo svg path, .gs-int-results-options .grip-promo svg polygon {
    fill: #FFFFFF !important;
  }
  .gs-int-results-options .grip-btn {
    margin-top: 25px;
  }
}

@media screen and (min-width: 1280px) {
  .gs-int-results-options .grip:first-child {
    margin-right: 50px;
  }
}

.gs-results {
  padding: 50px 0;
  background: url("../img/bg-grunge-diagonal.jpg") center center no-repeat;
  background-size: 100% 100%;
}

.gs-results .page-wrapper {
  max-width: 960px;
}

.gs-results .tab-triggers {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gs-results .tab-triggers .tab {
  float: left;
  padding: 0 12px;
  border: solid #B5B5B5;
  border-width: 1px 0;
  border-top-color: transparent;
  color: #9a9a9a;
  cursor: pointer;
  font: normal 16px/36px 'Overpass-Light', sans-serif;
  text-transform: uppercase;
}

.gs-results .tab-triggers .tab.active {
  border-top-color: #B5B5B5;
  border-bottom-color: transparent;
  border-width: 1px;
  color: #343434;
}

.gs-results .tab-triggers .tab:first-child {
  border-left-width: 0;
}

.gs-results .tab-triggers:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  height: 1px;
  background: #B5B5B5;
  content: ' ';
  z-index: -1;
}

.gs-results .tab-content .tab {
  padding: 20px 0;
}

.gs-results .tab-content .tab:not(.active) {
  display: none;
}

.gs-results .grip-color-swatches {
  margin-bottom: 30px;
  font-size: 0;
}

.gs-results .grip-color-swatch {
  position: relative;
  display: inline-block;
  height: 24px;
  width: 24px;
  border: solid #818181 1px;
  cursor: pointer;
  overflow: hidden;
}

.gs-results .grip-color-swatch i {
  position: absolute;
  bottom: -12px;
  right: -12px;
  display: block;
  height: 20px;
  width: 20px;
  content: ' ';
  transform: rotate(45deg);
}

.gs-results .grip-color-swatch.active {
  border-color: #262627;
  border-width: 2px;
}

.gs-results .grip-color-swatch:not(:last-child) {
  margin-right: 10px;
}

.gs-results-header {
  margin-bottom: 40px;
  padding: 30px;
  background: #FFFFFF;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  text-align: center;
  text-transform: uppercase;
}

.gs-results-header .heading {
  margin-bottom: 15px;
  color: #b1000d;
}

.gs-results-header .title {
  font: normal 14px/1.2 'Overpass-Bold', sans-serif;
}

.gs-results-header .grip {
  margin-bottom: 20px;
  font: normal 26px/1 'Overpass-Extra-Light', sans-serif;
}

.gs-results-header .specs-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gs-results-header .specs {
  display: inline-block;
  font-size: 14px;
  text-align: left;
}

@media screen and (max-width: 639px) {
  .gs-results-header .specs .label {
    font-family: 'Overpass-Bold', sans-serif;
  }
  .gs-results-header .specs .label:after {
    display: inline-block;
    margin-right: 10px;
    content: ':';
  }
  .gs-results-header .specs .value {
    font-family: 'Overpass-Light', sans-serif;
  }
}

@media screen and (min-width: 640px) {
  .gs-results-header {
    margin-bottom: 60px;
  }
  .gs-results-header .title {
    font-size: 16px;
  }
  .gs-results-header .grip {
    margin-bottom: 30px;
    font-size: 36px;
  }
  .gs-results-header .specs {
    display: flex;
    width: 100%;
    max-width: 750px;
    text-align: center;
  }
  .gs-results-header .specs .spec {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    padding: 0 10px;
  }
  .gs-results-header .specs .label {
    position: relative;
    display: block;
    flex: 1;
    padding-bottom: 25px;
    font-family: 'Overpass-Light', sans-serif;
  }
  .gs-results-header .specs .label:after {
    position: absolute;
    bottom: 13px;
    left: -10px;
    right: -10px;
    height: 1px;
    background: #B5B5B5;
    content: '';
  }
  .gs-results-header .specs .value {
    display: block;
    font-family: 'Overpass-Bold', sans-serif;
    white-space: nowrap;
  }
}

@media screen and (min-width: 960px) {
  .gs-results-header .title {
    font-size: 20px;
  }
  .gs-results-header .grip {
    margin-bottom: 50px;
    font-size: 55px;
  }
}

.gs-results-row1 .gs-results-col2 {
  position: relative;
  padding-bottom: 20px;
}

.gs-results-row1 .alt-grip-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit !important;
  font: normal 14px/1 'Overpass-Light', sans-serif;
}

.gs-results-row1 .alt-grip-btn svg {
  display: block;
  height: 25px;
  width: auto;
  margin-left: 8px;
}

.gs-results-row1 .alt-grip-btn:hover {
  background: #FFFFFF !important;
}

@media screen and (min-width: 640px) {
  .gs-results-row1 {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
  .gs-results-row1 .gs-results-col {
    flex: 1;
  }
  .gs-results-row1 .gs-results-col1 {
    margin-right: 15px;
  }
}

@media screen and (min-width: 960px) {
  .gs-results-row1 .gs-results-col1 {
    margin-right: 25px;
  }
}

.gs-results-grip-img {
  text-align: center;
}

.gs-results-grip-img .img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
}

.gs-results-grip-img[data-active-360-view="1"] .img-1 {
  visibility: visible;
}

.gs-results-grip-img[data-active-360-view="2"] .img-2 {
  visibility: visible;
}

.gs-results-grip-img[data-active-360-view="3"] .img-3 {
  visibility: visible;
}

.gs-results-grip-img[data-active-360-view="4"] .img-4 {
  visibility: visible;
}

.gs-results-grip-img[data-active-360-view="5"] .img-5 {
  visibility: visible;
}

.gs-results-grip-img[data-active-360-view="6"] .img-6 {
  visibility: visible;
}

.gs-results-grip-img[data-active-360-view="7"] .img-7 {
  visibility: visible;
}

.gs-results-grip-img[data-active-360-view="8"] .img-8 {
  visibility: visible;
}

.gs-results-grip-img .img-set {
  position: relative;
  height: 0;
  padding-bottom: 103%;
}

.gs-results-grip-img .img-set:not(.active) {
  display: none;
}

.gs-results-grip-img .img-set:after {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 30px;
  width: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
  content: ' ';
}

.gs-results-grip-img img {
  display: inline-block;
}

.gs-results-grip-img .ctrls {
  position: relative;
  width: 115px;
  margin: 15px auto 0 auto;
  text-align: center;
}

.gs-results-grip-img .ctrl {
  position: absolute;
  top: 50%;
  display: inline-block;
  cursor: pointer;
  transform: translateY(-50%);
}

.gs-results-grip-img .ctrl svg {
  display: block;
  height: 20px;
  width: 20px;
  fill: #B5B5B5;
}

.gs-results-grip-img .ctrl[data-dir="prev"] {
  left: 0;
}

.gs-results-grip-img .ctrl[data-dir="next"] {
  right: 3px;
}

.gs-results-grip-img .ctrl:hover svg {
  fill: #343434;
}

.gs-results-grip-img .label {
  display: inline-block;
  font: normal 16px/1 'Overpass-Bold', sans-serif;
}

@media screen and (max-width: 639px) {
  .gs-results-grip-img {
    margin-bottom: 60px;
  }
}

.gs-results-technology {
  font: normal 14px/1.5 'Overpass-Light', sans-serif;
}

.gs-results-technology .title {
  margin-bottom: 20px;
  font-size: 22px;
}

.gs-results-technology .attributes {
  font-size: 0;
}

.gs-results-technology .attributes li {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  overflow: hidden;
}

.gs-results-technology .attributes li:before, .gs-results-technology .attributes li:after {
  position: absolute;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%);
  transition: top 0.35s ease, opacity 0.35s ease;
}

.gs-results-technology .attributes li:before {
  top: -23px;
  padding: 5px 10px;
  background: #343434;
  border-radius: 3px;
  color: #FFFFFF;
  content: attr(aria-label);
  font: italic 13px/1 'Overpass-Light', sans-serif;
  white-space: nowrap;
}

.gs-results-technology .attributes li:after {
  top: 0;
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #343434 transparent transparent transparent;
  content: ' ';
}

.gs-results-technology .attributes li:hover {
  overflow: visible;
}

.gs-results-technology .attributes li:hover:before {
  top: -33px;
  opacity: 1;
}

.gs-results-technology .attributes li:hover:after {
  top: -10px;
  opacity: 1;
}

.gs-results-technology .attributes svg {
  display: block;
  height: 36px;
  width: 36px;
  fill: #646766;
}

.gs-results-technology .attributes svg .cls-1 {
  fill: #646766;
}

.gs-results-specs {
  font: normal 13px/1.5 'Overpass-Light', sans-serif;
}

.gs-results-specs td {
  vertical-align: top;
}

.gs-results-specs td.label {
  padding-right: 15px;
  width: 110px;
  font: normal 12px/1.6 'Overpass-Bold', sans-serif;
  text-transform: uppercase;
}

.gs-results-specs tr:not(:last-child) td {
  padding-bottom: 15px;
}

.gs-results-specs td.variations td {
  padding: 3px 12px;
  text-align: right;
}

.gs-results-specs td.variations thead td {
  padding-top: 0;
  border-bottom: solid #DDDDDD 1px;
}

.gs-results-row2 {
  padding-top: 60px;
}

@media screen and (min-width: 960px) {
  .gs-results-row2 {
    padding-top: 110px;
  }
}

.gs-results-ctas {
  max-width: 780px;
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}

.gs-results-ctas a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 31px;
  margin-bottom: 20px;
  color: #b1000d;
  font-size: 0.875rem;
  font-family: 'Overpass-Bold', sans-serif;
  text-transform: uppercase;
}

.gs-results-ctas a.hide {
  display: none;
}

.gs-results-ctas a:hover {
  text-decoration: underline;
}

.gs-results-ctas a svg {
  margin-right: 13px;
  fill: #b1000d;
}

.gs-results-ctas a.black {
  color: #323234;
}

.gs-results-ctas a.black svg {
  fill: #323234;
}

@media screen and (min-width: 480px) {
  .gs-results-ctas a {
    width: 50%;
  }
}

@media screen and (min-width: 782px) {
  .gs-results-ctas a {
    width: 33%;
    justify-content: center;
  }
}

.gs-results-alternatives {
  padding: 30px;
  background: rgba(194, 194, 194, 0.35);
  font: normal 14px/1 'Overpass-Light', sans-serif;
  overflow: hidden;
  text-align: center;
}

.gs-results-alternatives .title {
  margin-bottom: 25px;
  font-family: 'Overpass-Bold', sans-serif;
  text-transform: uppercase;
}

.gs-results-alternatives .alternatives li {
  float: left;
  width: 50%;
  padding: 0 10px;
}

@media screen and (max-width: 639px) {
  .gs-results-alternatives .alternatives li {
    float: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .gs-results-alternatives .alternatives li:not(:last-child) {
    margin-bottom: 30px;
  }
}

.gs-results-alternatives .alternatives a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.gs-results-alternatives .alternatives .img {
  position: relative;
  height: 0;
  margin-bottom: 15px;
  padding-bottom: 48%;
  background: #FFFFFF;
  border: solid #B5B5B5 1px;
  overflow: hidden;
}

.gs-results-alternatives .alternatives img {
  position: absolute;
  top: 50%;
  left: 20px;
  display: block;
  width: 100%;
  transform: rotate(-90deg) translateX(50%);
}

.gs-results-alternatives .alternatives .grip-title {
  margin-bottom: 10px;
  font-family: 'Overpass-Bold', sans-serif;
  text-transform: uppercase;
}

.gs-results-alternatives .alternatives .grip-meta {
  font-size: 12px;
}

@media screen and (max-width: 639px) {
  .gs-results-alternatives {
    max-width: 460px;
    margin: 0 auto 40px auto;
  }
}

.share-fit-results-container {
  overflow: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 650px;
  height: 100%;
  max-height: 350px;
  padding: 50px 20px;
  background: white;
  transition: all 0.3s;
  z-index: -1;
  opacity: 0;
  transform: translate(-50%, -25%);
}

@media screen and (min-width: 640px) {
  .share-fit-results-container {
    padding: 70px 55px;
  }
}

.share-fit-results-container--close {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background: white;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.share-fit-results-container--close:before, .share-fit-results-container--close:after {
  content: '';
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 7px);
  width: 14px;
  height: 2px;
  background-color: #060607;
  transform-origin: center;
  transform: rotate(45deg);
}

.share-fit-results-container--close:after {
  transform: rotate(-45deg);
}

.share-fit-results-container--title {
  margin-bottom: 23px;
  text-align: center;
  font: normal 20px/40px 'Overpass-Bold', sans-serif;
}

.share-fit-results-container .form-row {
  overflow: hidden;
  display: flex;
}

.share-fit-results-container .form-row .btn {
  width: 30%;
}

.share-fit-results-container--success {
  padding: 4px 0;
  text-align: center;
  color: #3b8c2b;
  font: normal 18px/32px 'Overpass-Bold', sans-serif;
  transition: all 0.3s;
  opacity: 0;
  transform: translate(0, -20%);
}

.share-fit-results-container--success.show {
  opacity: 1;
  transform: translate(0, 0);
}

.share-fit-results-container--success-icon {
  margin-bottom: 12px;
}

.share-fit-results-container--success-icon svg {
  fill: #3b8c2b;
}

.show-share-fit-results {
  overflow: hidden;
}

.show-share-fit-results .share-fit-results-container {
  opacity: 1;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.show-share-fit-results .bg-overlay {
  opacity: 0.5;
  z-index: 8888;
}

.retail-locator fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

.retail-locator .retail-results .listings li {
  padding: 20px 0;
}

.retail-locator .ol li:before,
.retail-locator .wp-page-content ol li:before {
  content: '';
}

.pg-retail-locator .retail-locator {
  position: relative;
  overflow: hidden;
}

.retail-locator-promo img {
  width: 100%;
}

.retail-locator-ctrls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(35, 31, 32, 0.8);
  color: white;
  transition: transform 0.3s ease;
  z-index: 3;
}

.pg-retail-locator.ctrls-collapsed .retail-locator-ctrls {
  transform: translateY(calc(-100% + 3px));
}

.retail-locator-ctrls .page-wrapper {
  position: relative;
  padding: 20px;
}

.retail-locator-ctrls .title {
  margin: 0 0 10px 0;
  color: inherit;
  font-size: 1.5rem;
}

.retail-locator-ctrls form {
  position: relative;
  max-width: none;
  overflow: hidden;
}

.retail-locator-ctrls label {
  display: block;
  margin-bottom: 4px;
  line-height: 1.1;
}

.retail-locator-ctrls label .line {
  display: block;
}

.retail-locator-ctrls input,
.retail-locator-ctrls select {
  width: 100%;
}

.retail-locator-ctrls .form-row2 {
  padding-right: 80px;
}

.retail-locator-ctrls .btn-submit {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 42px;
  width: 70px;
  padding: 0 20px 0 0;
  background: #c3001d;
  line-height: 42px;
}

.retail-locator-ctrls .btn-submit svg {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 16px;
  margin-left: 15px;
  fill: white;
  transform: translate(-50%, -50%);
}

.retail-locator-ctrls .btn-submit:hover {
  background: #b0001d;
  color: white;
}

.retail-locator-ctrls .trigger {
  position: absolute;
  top: 100%;
  right: 20px;
  height: 30px;
  padding: 0 15px 0 38px;
  background: rgba(35, 31, 32, 0.8);
  border-radius: 0 0 5px 5px;
  cursor: pointer;
  font: normal 15px/30px "Overpass-Bold", sans-serif;
}

.retail-locator-ctrls .trigger:before, .retail-locator-ctrls .trigger:after {
  position: absolute;
  top: 0;
  height: 5px;
  width: 5px;
  content: ' ';
}

.retail-locator-ctrls .trigger:before {
  left: -5px;
  background-image: radial-gradient(circle at 0 100%, rgba(35, 31, 32, 0) 5px, rgba(35, 31, 32, 0.8) 6px);
}

.retail-locator-ctrls .trigger:after {
  right: -5px;
  background-image: radial-gradient(circle at 100% 100%, rgba(35, 31, 32, 0) 5px, rgba(35, 31, 32, 0.8) 6px);
}

.retail-locator-ctrls .trigger svg {
  position: absolute;
  top: 50%;
  left: 13px;
  height: 18px;
  width: 18px;
  fill: white;
  transform: translateY(-50%);
}

.retail-locator-ctrls .trigger-add-update {
  position: absolute;
  top: 100%;
  right: 125px;
  display: inline-block;
  height: 30px;
  padding: 0 15px 0 38px;
  background: rgba(143, 143, 143, 0.8);
  border-radius: 0 0 5px 5px;
  color: inherit;
  cursor: pointer;
  font: normal 15px/30px "Overpass-Bold", sans-serif;
  z-index: -1;
}

.retail-locator-ctrls .trigger-add-update:before, .retail-locator-ctrls .trigger-add-update:after {
  position: absolute;
  top: 0;
  height: 5px;
  width: 5px;
  content: ' ';
}

.retail-locator-ctrls .trigger-add-update:before {
  left: -5px;
  background-image: radial-gradient(circle at 0 100%, rgba(143, 143, 143, 0) 5px, rgba(143, 143, 143, 0.8) 6px);
}

.retail-locator-ctrls .trigger-add-update:after {
  right: -5px;
  background-image: radial-gradient(circle at 100% 100%, rgba(143, 143, 143, 0) 5px, rgba(143, 143, 143, 0.8) 6px);
}

.retail-locator-ctrls .trigger-add-update svg {
  position: absolute;
  top: 50%;
  left: 13px;
  height: 18px;
  width: 18px;
  fill: white;
  transform: translateY(-50%);
}

@media screen and (max-width: 479px) {
  .retail-locator-ctrls .trigger-add-update {
    font-size: 12px;
    line-height: 1;
  }
  .retail-locator-ctrls .trigger-add-update span {
    display: inline-block;
    max-width: 100px;
    padding-top: 2px;
    text-align: right;
  }
}

@media screen and (max-width: 639px) {
  .retail-locator-ctrls .page-wrapper {
    max-width: 450px;
  }
  .retail-locator-ctrls .form-row1 {
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 640px) {
  .retail-locator-ctrls .form-row {
    float: left;
  }
  .retail-locator-ctrls .form-row1 {
    width: 53%;
    padding-right: 10px;
  }
  .retail-locator-ctrls .form-row2 {
    width: 47%;
    padding-top: 17px;
  }
}

@media screen and (min-width: 1000px) {
  .retail-locator-ctrls form {
    padding-left: 250px;
  }
  .retail-locator-ctrls label .line {
    display: inline-block;
  }
  .retail-locator-ctrls .title {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
  }
  .retail-locator-ctrls .form-row1 {
    width: 58%;
  }
  .retail-locator-ctrls .form-row2 {
    width: 42%;
    padding-top: 1px;
  }
}

.retail-locator-ctrls.promo-enforced .form-row1 {
  margin-bottom: 0;
  padding-right: 80px;
}

@media screen and (min-width: 640px) {
  .retail-locator-ctrls.promo-enforced .form-row1 {
    width: 100%;
  }
}

@media screen and (min-width: 1000px) {
  .retail-locator-ctrls.promo-enforced .form-row1 {
    width: 100%;
  }
}

.retail-locator-map-wrapper {
  position: relative;
  z-index: 1;
}

.retail-locator-map {
  position: relative;
  height: 85vh;
  z-index: 1;
}

.retail-locator-map .gm-style .gm-style-iw {
  color: #515151;
  font-size: 12px;
  line-height: 1.45;
}

.retail-locator-map .gm-style .gm-style-iw .title {
  margin: 5px 0 1px 0;
  color: #b0001d;
  font: normal 13px/1 "Overpass-Bold", sans-serif;
  font-style: italic;
  text-transform: uppercase;
}

.retail-locator-map .gm-style .gm-style-iw .distance {
  margin-bottom: 10px;
}

.retail-locator-map .gm-style .gm-style-iw a[href*="tel:"] {
  color: inherit;
  cursor: default;
  text-decoration: none;
}

.retail-locator-map .gm-style .gm-style-iw .links {
  margin-top: 10px;
}

.retail-locator-map .gm-style .gm-style-iw .link {
  display: inline-block;
  margin-right: 8px;
}

.retail-locator-map .gm-style .gm-style-iw .link a {
  display: inline-block;
  padding: 5px;
  border: solid #DDDDDD 2px;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.retail-locator-map .gm-style .gm-style-iw .link a:hover {
  border-color: #e30025;
  color: #b0001d;
}

.retail-locator-map .gm-style .gm-style-iw .link:last-child {
  margin-right: 0;
}

.retail-locator-preloader {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 40%;
  width: 40%;
  max-height: 130px;
  max-width: 130px;
  padding: 30px;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  z-index: 2;
}

.retail-locator-preloader svg {
  height: 100%;
  width: 100%;
}

.retail-locator-legend {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: none;
  padding: 11px 10px 11px 35px;
  background: rgba(255, 255, 255, 0.85);
  font: normal 10px/1 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
  z-index: 2;
}

.retail-locator-legend svg {
  position: absolute;
  top: 50%;
  left: 7px;
  height: auto;
  width: 21px;
  fill: #af1f24;
  transform: translateY(-50%);
}

@media screen and (min-width: 760px) {
  .retail-locator-legend {
    left: 260px;
  }
}

@media screen and (min-width: 1000px) {
  .retail-locator-legend {
    left: 310px;
  }
}

.retail-locator-results {
  position: relative;
  background: #FFFFFF;
  overflow: hidden;
  z-index: 2;
}

.retail-locator-results .no-results {
  padding: 30px;
  color: #b0001d;
  font: normal 14px/1.4 "Overpass-Bold", sans-serif;
  text-align: center;
}

.retail-locator-listing {
  position: relative;
  padding: 20px;
  border: solid #DDDDDD;
  border-width: 0 0 2px 0;
  color: #515151;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.retail-locator-listing .title {
  margin-bottom: 5px;
  color: #b0001d;
  font: normal 14px/1 "Overpass-Bold", sans-serif;
  font-style: italic;
  text-transform: uppercase;
}

.retail-locator-listing .link:not(:last-child):after {
  content: ' | ';
}

.retail-locator-listing a {
  color: inherit;
  text-decoration: underline;
}

.retail-locator-listing a:hover {
  text-decoration: none;
}

.retail-locator-listing a[href*="tel:"] {
  color: inherit;
  cursor: default;
  text-decoration: none;
}

.retail-locator-listing .icon-arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  display: none;
  width: 16px;
  fill: #FFFFFF;
  transform: translateY(-50%);
}

.retail-locator-listing .icon-map-marker-certified {
  position: absolute;
  top: 5px;
  left: 5px;
  height: auto;
  width: 30px;
  fill: #af1f24;
}

.retail-locator-listing.active {
  background: #b0001d;
  color: #FFFFFF;
}

.retail-locator-listing.active .title {
  color: inherit;
}

.retail-locator-listing.active .icon-map-marker-certified {
  fill: white;
}

@media screen and (min-width: 480px) {
  .retail-locator-listing {
    padding: 20px 55px;
  }
  .retail-locator-listing .icon-map-marker-certified {
    top: 10px;
    left: 10px;
  }
}

@media screen and (min-width: 760px) {
  .retail-locator-results {
    position: absolute;
    top: 157px;
    bottom: 0;
    left: -250px;
    width: 250px;
    overflow: auto;
    transition: top 0.3s ease, left 0.3s ease;
  }
  .pg-retail-locator.ctrls-collapsed .retail-locator-results {
    top: 3px;
  }
  .pg-retail-locator.results-enabled .retail-locator-results {
    left: 0;
  }
  .retail-locator-listing {
    padding: 25px 55px 25px 25px;
    text-align: left;
  }
  .retail-locator-listing .icon-map-marker-certified {
    left: auto;
    right: 12px;
  }
  .retail-locator-listing.active .icon-arrow {
    display: block;
  }
}

@media screen and (min-width: 1000px) {
  .retail-locator-results {
    top: 104px;
    left: -300px;
    width: 300px;
  }
  .pg-retail-locator.ctrls-collapsed .retail-locator-results {
    top: 3px;
  }
  .pg-retail-locator.results-enabled .retail-locator-results {
    left: 0;
  }
}

.pg-retail-updater > .page-wrapper {
  max-width: 720px;
}

.pg-retail-updater .success-msg {
  margin: 50px auto 50px auto;
  min-height: 300px;
  max-width: 720px;
  text-align: center;
}

.pg-retail-updater .success-msg .title {
  margin: 0;
  text-transform: uppercase;
}

.pg-retail-updater .error-msg {
  margin: 20px 0 50px 0;
  padding: 15px;
  background: #fae7e9;
  color: #970019;
  font: normal 16px/1.25 "Overpass-Light", sans-serif;
}

.pg-retail-updater .error-msg .title {
  font-family: "Overpass-Bold", sans-serif;
}

.pg-retail-updater .error-msg .ul {
  margin-top: 8px;
}

.pg-retail-updater .error-msg .ul li:before {
  content: '\2022';
}

.pg-retail-updater .page-heading {
  position: relative;
  padding-left: 32px;
}

.pg-retail-updater .page-heading svg {
  position: absolute;
  top: 3px;
  left: 0;
  display: block;
  height: 23px;
}

.pg-retail-updater .page-title {
  margin: 40px 0 0 0;
  color: #ca0021;
  font: normal 30px/1 "Overpass-Bold", sans-serif;
}

.pg-retail-updater .page-subtitle {
  font: normal 20px/1 "Overpass-Light", sans-serif;
}

.pg-retail-updater .intro {
  margin-top: 10px;
  color: #888;
  font: italic 13px/1.25 "Overpass-Light", sans-serif;
}

.pg-retail-updater .fieldset {
  position: relative;
  margin-top: 30px;
  margin-bottom: 50px;
  padding: 20px;
  border: solid #ebebeb 2px;
  border-radius: 4px;
}

.pg-retail-updater .fieldset .form-row:last-child {
  margin-bottom: 0;
}

.pg-retail-updater .fieldset-legend {
  position: absolute;
  top: -8px;
  left: 12px;
  padding: 0 8px;
  background: #ffffff;
  font: normal 16px/1 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-retail-updater .fieldset-notes {
  margin: -10px 0 20px 0;
  font: italic 13px/1.25 "Overpass-Light", sans-serif;
}

.pg-retail-updater label .instructions {
  margin: -1px 0 3px 0;
  color: #888888;
  font: normal 12px/1 "Overpass-Light", sans-serif;
  text-transform: none;
}

@media screen and (min-width: 640px) {
  .pg-retail-updater .fieldset {
    padding: 30px;
  }
  .pg-retail-updater .fieldset-notes {
    margin-top: -20px;
    margin-left: -10px;
  }
}

.pg-retail-updater .fieldset-map,
.pg-retail-updater .fieldset-contact-info,
.pg-retail-updater .fieldset-store-info {
  display: none;
}

.pg-retail-updater .fieldset-store-info .form-row-distributor-other {
  display: none;
}

.pg-retail-updater .fieldset-store-info .form-row-install-grips .option {
  margin-top: 5px;
  text-transform: none;
}

.pg-retail-updater .fieldset-action .btn-wrapper {
  max-width: 400px;
  margin: 0 auto;
  padding: 10px 0;
  text-align: center;
}

.pg-retail-updater .fieldset-action .btn {
  display: block;
  width: 100%;
  border-radius: 3px;
  cursor: pointer;
  font-size: 13px;
}

.pg-retail-updater .fieldset-action .btn.selected {
  position: relative;
  background-color: #ca0021;
  border-color: #ca0021;
}

.pg-retail-updater .fieldset-action .btn.selected:after {
  position: absolute;
  top: -5px;
  bottom: -5px;
  left: -5px;
  right: -5px;
  border: solid #e30025 2px;
  border-radius: 5px;
  content: '';
}

.pg-retail-updater .fieldset-action .separator {
  display: block;
  width: 100%;
  padding: 10px 0;
  font: normal 13px/1 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-retail-updater .fieldset-action .form-row-action {
  display: none;
}

.pg-retail-updater .map-ctrls {
  overflow: hidden;
}

.pg-retail-updater .map-ctrls input,
.pg-retail-updater .map-ctrls select {
  width: 100%;
}

.pg-retail-updater .map-ctrls .form-row {
  margin-bottom: 10px !important;
}

.pg-retail-updater .map-ctrls .form-row2 {
  position: relative;
  padding-right: 80px;
}

.pg-retail-updater .map-ctrls .form-row2 .btn-map-search {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 42px;
  width: 70px;
  padding: 0 20px 0 0;
  background: #c3001d;
  line-height: 42px;
}

.pg-retail-updater .map-ctrls .form-row2 .btn-map-search svg {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 16px;
  margin-left: 15px;
  fill: white;
  transform: translate(-50%, -50%);
}

.pg-retail-updater .map-ctrls .form-row2 .btn-map-search:hover {
  background: #b0001d;
  color: white;
}

@media screen and (min-width: 640px) {
  .pg-retail-updater .map-ctrls .form-row {
    float: left;
  }
  .pg-retail-updater .map-ctrls .form-row1 {
    width: 53%;
    padding-right: 10px;
  }
  .pg-retail-updater .map-ctrls .form-row2 {
    width: 47%;
    padding-top: 12px;
  }
}

.pg-retail-updater .map-wrapper {
  position: relative;
}

.pg-retail-updater .map {
  position: relative;
  height: 300px;
  width: 100%;
  z-index: 1;
}

.pg-retail-updater .map .gm-style .gm-style-iw {
  color: #515151;
  font-size: 12px;
  line-height: 1.25;
}

.pg-retail-updater .map .gm-style .gm-style-iw .title {
  margin: 5px 0 3px 0;
  color: #b0001d;
  font: normal 13px/1 "Overpass-Bold", sans-serif;
  font-style: italic;
  text-transform: uppercase;
}

.pg-retail-updater .map .gm-style .gm-style-iw a[href*="tel:"] {
  color: inherit;
  cursor: default;
  text-decoration: none;
}

.pg-retail-updater .map .gm-style .gm-style-iw .map-marker-selector {
  margin-top: 10px;
  display: inline-block;
  padding: 8px 12px;
  background: #b0001d;
  border-radius: 2px;
  color: #ffffff;
  cursor: pointer;
  font-family: "Overpass-Bold", sans-serif;
  text-transform: uppercase;
  transition: background 0.25s ease;
}

.pg-retail-updater .map .gm-style .gm-style-iw .map-marker-selector:hover {
  background: #e30025;
}

.pg-retail-updater .map-preloader {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 50px;
  width: 50px;
  padding: 10px;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  z-index: 2;
}

.pg-retail-updater .map-preloader svg {
  height: 100%;
  width: 100%;
}

.page-feautred-container {
  position: relative;
  min-height: 200px;
  width: 100%;
  margin-bottom: 18px;
  overflow: hidden;
  text-align: center;
  background: transparent center center no-repeat;
  background-size: cover;
}

.page-feautred-container:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.page-feautred-container .page-title {
  color: white;
  margin: 0;
  font-size: 2.5rem;
  text-transform: capitalize;
  line-height: 1;
  border: none;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

section .breadcrumbs {
  color: #262627;
  font-size: 0.875rem;
  line-height: 1.5rem;
  text-transform: uppercase;
}

section .breadcrumbs span {
  margin: 0 5px;
}

section .breadcrumbs a {
  color: #b5b5b5;
  text-decoration: none;
}

.wp-page-content h1 {
  font-size: 2rem;
  line-height: 2.625rem;
  font-weight: 700;
  margin: 0 0 0.8125rem;
  font-family: "Overpass-Bold", sans-serif;
}

.wp-page-content h2 {
  font-size: 1.5625rem;
  line-height: 2.125rem;
  font-weight: 700;
  margin: 0 0 0.5625rem;
  font-family: "Overpass-Light", sans-serif;
}

.wp-page-content h3 {
  color: #262627;
  font-size: 1.375rem;
  line-height: 1.875rem;
  font-family: "Overpass-Light", sans-serif;
  font-weight: 300;
  margin: 0 0 0.5625rem;
}

.wp-page-content h4 {
  color: #262627;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 900;
  font-family: "Overpass-Bold", sans-serif;
  text-transform: uppercase;
  margin: 0 0 0.5625rem;
}

.wp-page-content p, .wp-page-content li {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.wp-page-content img {
  margin: 0 auto 20px;
  display: block;
}

@media screen and (min-width: 640px) {
  .wp-page-content img.alignleft {
    float: left;
    margin: 0 20px 20px 0;
    max-width: 50%;
  }
  .wp-page-content img.alignright {
    float: right;
    margin: 0 0 20px 20px;
    max-width: 50%;
  }
}

.wp-page-content .strtolower {
  text-transform: lowercase;
}

.wp-page-content blockquote,
.wp-page-content .break-out-block {
  clear: both;
  position: relative;
  font-size: 1.5rem;
  font-family: "Overpass-Extra-Light", sans-serif;
  line-height: 2.1875rem;
  text-align: center;
  color: #444345;
  padding: 70px 0;
  margin: 0;
}

@media screen and (min-width: 1080px) {
  .wp-page-content blockquote,
  .wp-page-content .break-out-block {
    margin-left: -7% !important;
    padding-right: 20px !important;
  }
}

.wp-page-content blockquote:after,
.wp-page-content .break-out-block:after {
  content: '';
  position: absolute;
  bottom: 48px;
  left: 50%;
  height: 4px;
  width: 140px;
  transform: translate(-50%, 0);
  background-color: #b0001d;
}

.wp-page-content blockquote p,
.wp-page-content .break-out-block p {
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  margin: inherit;
  text-align: inherit;
}

.wp-page-content blockquote strong,
.wp-page-content .break-out-block strong {
  text-transform: uppercase;
}

.wp-page-content ul, .wp-page-content ol {
  margin-bottom: 1.5625rem;
}

.wp-page-content .break-out-block {
  width: 60%;
  text-align: left;
  float: left;
  margin-left: -2%;
  padding: 0 10% 15px 0;
  margin-bottom: 20px;
}

.wp-page-content .break-out-block:after {
  left: 0;
  bottom: 0;
  transform: translate(0, 0);
}

.wp-page-content .break-out-block ~ * {
  overflow: hidden;
}

.wp-page-content .column-row,
.wp-page-content .gallery {
  width: 100%;
  overflow: hidden;
  clear: both;
}

.wp-page-content .column-row:last-of-type,
.wp-page-content .gallery:last-of-type {
  margin-bottom: 2.1875rem;
}

.wp-page-content .column-row .column,
.wp-page-content .gallery .column {
  width: 100%;
}

@media screen and (min-width: 640px) {
  .wp-page-content .column-row.gallery-columns-2 .gallery-item,
  .wp-page-content .column-row.gallery-columns-2 .column, .wp-page-content .column-row.cols-2 .gallery-item,
  .wp-page-content .column-row.cols-2 .column,
  .wp-page-content .gallery.gallery-columns-2 .gallery-item,
  .wp-page-content .gallery.gallery-columns-2 .column,
  .wp-page-content .gallery.cols-2 .gallery-item,
  .wp-page-content .gallery.cols-2 .column {
    width: 48.93617%;
    margin-right: 2.12766%;
    float: left;
  }
  .wp-page-content .column-row.gallery-columns-2 .gallery-item:nth-of-type(2n),
  .wp-page-content .column-row.gallery-columns-2 .column:nth-of-type(2n), .wp-page-content .column-row.cols-2 .gallery-item:nth-of-type(2n),
  .wp-page-content .column-row.cols-2 .column:nth-of-type(2n),
  .wp-page-content .gallery.gallery-columns-2 .gallery-item:nth-of-type(2n),
  .wp-page-content .gallery.gallery-columns-2 .column:nth-of-type(2n),
  .wp-page-content .gallery.cols-2 .gallery-item:nth-of-type(2n),
  .wp-page-content .gallery.cols-2 .column:nth-of-type(2n) {
    margin-right: 0;
  }
  .wp-page-content .column-row.gallery-columns-3 .gallery-item,
  .wp-page-content .column-row.gallery-columns-3 .column, .wp-page-content .column-row.cols-3 .gallery-item,
  .wp-page-content .column-row.cols-3 .column,
  .wp-page-content .gallery.gallery-columns-3 .gallery-item,
  .wp-page-content .gallery.gallery-columns-3 .column,
  .wp-page-content .gallery.cols-3 .gallery-item,
  .wp-page-content .gallery.cols-3 .column {
    width: 31.91489%;
    margin-right: 2.12766%;
    float: left;
  }
  .wp-page-content .column-row.gallery-columns-3 .gallery-item:nth-of-type(3n),
  .wp-page-content .column-row.gallery-columns-3 .column:nth-of-type(3n), .wp-page-content .column-row.cols-3 .gallery-item:nth-of-type(3n),
  .wp-page-content .column-row.cols-3 .column:nth-of-type(3n),
  .wp-page-content .gallery.gallery-columns-3 .gallery-item:nth-of-type(3n),
  .wp-page-content .gallery.gallery-columns-3 .column:nth-of-type(3n),
  .wp-page-content .gallery.cols-3 .gallery-item:nth-of-type(3n),
  .wp-page-content .gallery.cols-3 .column:nth-of-type(3n) {
    margin-right: 0;
  }
  .wp-page-content .column-row.gallery-columns-4 .gallery-item,
  .wp-page-content .column-row.gallery-columns-4 .column, .wp-page-content .column-row.cols-4 .gallery-item,
  .wp-page-content .column-row.cols-4 .column,
  .wp-page-content .gallery.gallery-columns-4 .gallery-item,
  .wp-page-content .gallery.gallery-columns-4 .column,
  .wp-page-content .gallery.cols-4 .gallery-item,
  .wp-page-content .gallery.cols-4 .column {
    width: 23.40426%;
    margin-right: 2.12766%;
    float: left;
  }
  .wp-page-content .column-row.gallery-columns-4 .gallery-item:nth-of-type(4n),
  .wp-page-content .column-row.gallery-columns-4 .column:nth-of-type(4n), .wp-page-content .column-row.cols-4 .gallery-item:nth-of-type(4n),
  .wp-page-content .column-row.cols-4 .column:nth-of-type(4n),
  .wp-page-content .gallery.gallery-columns-4 .gallery-item:nth-of-type(4n),
  .wp-page-content .gallery.gallery-columns-4 .column:nth-of-type(4n),
  .wp-page-content .gallery.cols-4 .gallery-item:nth-of-type(4n),
  .wp-page-content .gallery.cols-4 .column:nth-of-type(4n) {
    margin-right: 0;
  }
}

.inline-photo-gallery-section {
  width: 100%;
  overflow: hidden;
  background-color: #262627;
  padding: 42px 0 75px;
  margin-bottom: 40px;
}

@media screen and (min-width: 960px) {
  .inline-photo-gallery-section {
    margin-bottom: 80px;
  }
}

.inline-photo-gallery-section .photo-gallery-container {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  .inline-photo-gallery-section .photo-gallery-container {
    max-width: 800px;
  }
}

@media screen and (min-width: 1280px) {
  .inline-photo-gallery-section .photo-gallery-container {
    max-width: 1180px;
  }
}

.inline-photo-gallery-section .photo-gallery-list,
.inline-photo-gallery-section .gallery-item {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
}

.inline-photo-gallery-section .photo-gallery-list:before,
.inline-photo-gallery-section .gallery-item:before {
  content: '';
}

.inline-photo-gallery-section .bx-wrapper .bx-pager-item .bx-pager-link {
  width: 20px;
  height: 5px;
  background-color: #6e6e6e;
  margin: 0 2px;
  border: none;
  border-radius: 0;
  transition: background-color 0.3s;
}

.inline-photo-gallery-section .bx-wrapper .bx-pager-item .bx-pager-link:hover, .inline-photo-gallery-section .bx-wrapper .bx-pager-item .bx-pager-link:focus, .inline-photo-gallery-section .bx-wrapper .bx-pager-item .bx-pager-link.active {
  background-color: #d7d7d7;
}

.page-id-18 .logo-container-wrapper {
  max-width: 220px;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (min-width: 480px) {
  .page-id-18 .logo-container-wrapper {
    max-width: 460px;
  }
}

@media screen and (min-width: 900px) {
  .page-id-18 .logo-container-wrapper {
    max-width: 860px;
  }
}

.page-id-18 .logo-container {
  position: relative;
  height: 0;
  overflow: hidden;
  margin-bottom: 45px;
  margin-left: auto;
  margin-right: auto;
}

.page-id-18 .logo-container img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.page-id-18 .logo-container-large {
  width: 220px;
  padding-top: 120px;
}

.page-id-18 .logo-container-small {
  width: 140px;
  padding-top: 50px;
}

@media screen and (min-width: 480px) {
  .page-id-18 .logo-container {
    float: left;
    margin-right: 20px;
    margin-bottom: 70px;
  }
  .page-id-18 .logo-container-large:nth-of-type(2n) {
    margin-right: 0;
  }
  .page-id-18 .logo-container-small:nth-of-type(3n) {
    margin-right: 0;
  }
}

@media screen and (min-width: 900px) {
  .page-id-18 .logo-container {
    margin-bottom: 70px;
  }
  .page-id-18 .logo-container-large {
    margin-right: 100px;
  }
  .page-id-18 .logo-container-large:nth-of-type(2n) {
    margin-right: 100px;
  }
  .page-id-18 .logo-container-large:nth-of-type(3n) {
    margin-right: 0;
  }
  .page-id-18 .logo-container-small {
    margin-right: 30px;
    margin-bottom: 80px;
  }
  .page-id-18 .logo-container-small:nth-of-type(3n) {
    margin-right: 30px;
  }
  .page-id-18 .logo-container.img-oem-logo-xxio, .page-id-18 .logo-container.img-oem-logo-odyssey {
    clear: left;
  }
}

.faq-category-filter {
  margin: 0 auto 40px;
  max-width: 300px;
}

.faq-category-filter .selector span {
  font-family: "Overpass-Bold", sans-serif;
  font-size: 0.875rem;
  padding-left: 15px;
  background: #FFFFFF;
  border: solid #262627 1px;
  text-align: center;
  text-transform: uppercase;
}

.faq-category-filter .selector span:after {
  height: 35px;
  top: -1px;
  right: 10px;
  margin-top: 0;
  background-size: 65%;
}

@media screen and (min-width: 640px) {
  .faq-category-filter {
    display: none;
  }
}

.faq-nav-container {
  width: 100%;
  overflow: hidden;
  font-size: 0;
  text-align: center;
  margin-bottom: 60px;
  display: none;
}

@media screen and (min-width: 640px) {
  .faq-nav-container {
    display: block;
  }
}

.faq-nav-container a {
  position: relative;
  display: inline-block;
  width: 100vw;
  height: 100vw;
  max-width: 280px;
  max-height: 280px;
  background: red center center no-repeat;
  background-size: contain;
  margin-bottom: 10px;
}

.faq-nav-container a[data-faq-category="regrip"] {
  background-image: url(../img/faq-page/bg-faq-nav-regip-benefit.jpg);
}

.faq-nav-container a[data-faq-category="fitting"] {
  background-image: url(../img/faq-page/bg-faq-nav-fitting.jpg);
}

.faq-nav-container a[data-faq-category="technology"] {
  background-image: url(../img/faq-page/bg-faq-nav-technology.jpg);
}

.faq-nav-container a[data-faq-category="installation"] {
  background-image: url(../img/faq-page/bg-faq-nav-installation.jpg);
}

.faq-nav-container a[data-faq-category="maintenance"] {
  background-image: url(../img/faq-page/bg-faq-nav-maintenance.jpg);
}

.faq-nav-container a[data-faq-category="other"] {
  background-image: url(../img/faq-page/bg-faq-nav-other.jpg);
}

.faq-nav-container a:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(38, 38, 39, 0.6);
  z-index: 1;
  transition: background 0.3s;
}

.faq-nav-container a.active:after, .faq-nav-container a:hover:after {
  background-color: rgba(113, 20, 17, 0.75);
}

@media screen and (min-width: 480px) {
  .faq-nav-container a {
    width: 40vw;
    height: 40vw;
    margin-right: 10px;
  }
  .faq-nav-container a:nth-of-type(2n) {
    margin-right: 0;
  }
}

@media screen and (min-width: 640px) {
  .faq-nav-container a {
    width: 30vw;
    height: 30vw;
  }
  .faq-nav-container a:nth-of-type(2n) {
    margin-right: 10px;
  }
  .faq-nav-container a:nth-of-type(3n) {
    margin-right: 0;
  }
}

@media screen and (min-width: 960px) {
  .faq-nav-container a {
    width: 15vw;
    height: 15vw;
  }
  .faq-nav-container a:nth-of-type(3n) {
    margin-right: 10px;
  }
  .faq-nav-container a:last-of-type {
    margin-right: 0;
  }
}

@media screen and (min-width: 1280px) {
  .faq-nav-container a {
    width: 201.5px;
    height: 201.5px;
  }
}

.faq-nav-container a .title {
  color: white;
  text-transform: uppercase;
  padding: 0 5px;
  font-size: 1.5rem;
  line-height: 2.25rem;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
}

@media screen and (min-width: 960px) {
  .faq-nav-container a .title {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}

@media screen and (min-width: 1280px) {
  .faq-nav-container a .title {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
}

.faq-video-container {
  margin-bottom: 70px;
  overflow: hidden;
  width: 100%;
}

@media screen and (min-width: 960px) {
  .faq-video-container .video-card {
    float: right;
    width: 32.34043%;
  }
  .faq-video-container .video-card:nth-of-type(1) {
    float: left;
    width: 66.70213%;
  }
}

.faq-video-container .video-product-content {
  position: relative;
  margin-bottom: 10px;
}

.faq-video-container .video-title {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 12px;
  color: white;
  font-size: 1.375rem;
  line-height: 1.5rem;
  z-index: 10;
  background: rgba(87, 88, 93, 0.6);
}

.faq-video-container .desktop-lightbox-trigger {
  display: none;
}

@media screen and (min-width: 960px) {
  .faq-video-container .desktop-lightbox-trigger {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    transition: all 0.3s;
    z-index: 10;
  }
  .faq-video-container .desktop-lightbox-trigger:hover {
    cursor: pointer;
    background: rgba(12, 44, 101, 0.6);
  }
}

.faq-video-container .bc-player-HyHmvnxc_default .vjs-big-play-button {
  width: 34px;
  height: 34px;
  left: 12px;
  top: 12px;
  margin: 0;
  background-color: transparent;
  border: 4px solid white;
  font-size: 1.625rem;
  line-height: 26px;
}

.faq-container {
  position: relative;
  overflow: hidden;
  padding: 26px 9.57447%;
  margin-bottom: 6px;
  border-bottom: 1px solid #ebebeb;
}

.faq-container:last-of-type {
  border-bottom: none;
}

@media screen and (min-width: 640px) {
  .faq-container {
    padding-left: 6.38298%;
  }
}

.faq-container .answer-container {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s;
}

.faq-container h3 {
  cursor: pointer;
}

.faq-container h3 i {
  position: relative;
  display: inline-block;
  height: 22px;
  width: 22px;
  vertical-align: middle;
  margin-left: 7px;
}

.faq-container h3 i svg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.faq-container .faq-toggle {
  position: absolute;
  cursor: pointer;
  background-color: #b0001d;
  width: 22px;
  height: 22px;
  text-align: center;
  top: 30px;
  left: 0;
}

.faq-container .faq-toggle:before, .faq-container .faq-toggle:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: white;
  width: 11px;
  height: 2px;
  transition: all 0.3s;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-container .faq-toggle:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.faq-container.active .answer-container {
  max-height: 1200px;
  opacity: 1;
}

.faq-container.active .faq-toggle:before, .faq-container.active .faq-toggle:after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-container.active .faq-toggle:after {
  opacity: 0;
}

.pg-mygripfit .campaign-header {
  max-width: 1600px;
  margin: 0 auto;
}

.pg-mygripfit .campaign-video {
  position: relative;
  overflow: hidden;
}

.pg-mygripfit .campaign-video:after {
  display: block;
  height: 0;
  padding-bottom: 56.25%;
  content: '';
}

.pg-mygripfit .video-js {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.pg-mygripfit .vjs-poster {
  background-size: cover;
}

.pg-mygripfit .vjs-big-play-button {
  height: 50px;
  width: 50px;
  margin: 0;
  opacity: 0.75;
  background: url("../img/svg-inline/icon-play-circle.svg") center center no-repeat;
  background-color: transparent !important;
  background-size: cover;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
}

.pg-mygripfit .vjs-big-play-button:before {
  display: none;
}

.pg-mygripfit .video-js:hover .vjs-big-play-button {
  opacity: 1;
}

.pg-mygripfit .campaign-details {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../img/mygripfit/bg-warehouse.jpg") center center no-repeat;
  background-size: cover;
  text-align: center;
}

.pg-mygripfit .campaign-details .inner {
  max-width: 650px;
  margin: 0 auto;
  padding: 30px;
}

.pg-mygripfit .campaign-details .title {
  margin-bottom: 20px;
  font: normal 38px/1 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-mygripfit .campaign-details .title img {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.pg-mygripfit .campaign-details .cta {
  margin-top: 25px;
}

.pg-mygripfit .campaign-details .btn {
  letter-spacing: 0.5px;
}

.pg-mygripfit .campaign-details strong {
  font-weight: normal;
  font-family: "Overpass-Bold", sans-serif;
}

@media screen and (min-width: 640px) {
  .pg-mygripfit .vjs-big-play-button {
    height: 70px;
    width: 70px;
  }
}

@media screen and (min-width: 960px) {
  .pg-mygripfit .campaign-header {
    display: flex;
    justify-content: space-between;
  }
  .pg-mygripfit .campaign-video {
    width: calc(75% - 3px);
  }
  .pg-mygripfit .campaign-details {
    width: calc(25% + 3px);
  }
}

@media screen and (min-width: 1280px) {
  .pg-mygripfit .campaign-details .inner {
    padding: 50px;
  }
}

.pg-mygripfit .grid {
  display: flex;
  flex-wrap: wrap;
  max-width: 400px;
  margin: 0 auto;
  padding: 5px;
}

.pg-mygripfit .grid-card {
  position: relative;
  width: 100%;
  display: none;
  padding: 5px;
}

.pg-mygripfit .grid-card .inner {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  display: block;
}

@media screen and (min-width: 640px) {
  .pg-mygripfit .grid {
    max-width: 800px;
  }
  .pg-mygripfit .grid-card {
    width: 50%;
  }
  .pg-mygripfit .grid-card-video {
    width: 100%;
  }
}

@media screen and (min-width: 960px) {
  .pg-mygripfit .grid {
    max-width: 1600px;
  }
  .pg-mygripfit .grid-card {
    width: 25%;
  }
  .pg-mygripfit .grid-card-video {
    width: 75%;
  }
}

.pg-mygripfit .card-profile {
  height: 100%;
  padding: 30px;
  background: rgba(0, 0, 0, 0.75);
  color: #FFFFFF;
  font: normal 13px/1.15 "Overpass-Light", sans-serif;
}

.pg-mygripfit .card-profile .label {
  font: normal 12px/1 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-mygripfit .card-profile .name {
  position: relative;
  padding-bottom: 12px;
  font: normal 30px/1 "Overpass-Extra-Light", sans-serif;
  text-transform: uppercase;
}

.pg-mygripfit .card-profile .name:after {
  position: absolute;
  bottom: 0;
  left: -30px;
  height: 5px;
  width: 120px;
  background: #FFFFFF;
  content: '';
}

.pg-mygripfit .card-profile .title {
  margin-top: 10px;
  font: normal 16px/1 "Overpass-Light", sans-serif;
}

.pg-mygripfit .card-profile .grip-model {
  padding: 0 15px;
}

.pg-mygripfit .card-profile .grip-model-name {
  margin-top: 1px;
  font: normal 24px/1 "Overpass-Extra-Light", sans-serif;
  text-transform: uppercase;
}

.pg-mygripfit .card-profile .grip-specs {
  margin-top: 30px;
  padding: 0 15px;
}

.pg-mygripfit .card-profile .grip-specs .spec:not(:last-child) {
  margin-bottom: 10px;
}

.pg-mygripfit .card-profile .grip-specs .label {
  margin: 0 -15px 5px -15px;
  border-bottom: solid #FFFFFF 1px;
}

.pg-mygripfit .card-profile .grip-specs .label-inner {
  position: relative;
  display: block;
  height: 22px;
  width: 125px;
  padding: 0 15px;
  background: #FFFFFF;
  color: #b0001d;
  line-height: 22px;
}

.pg-mygripfit .card-profile .grip-specs .label-inner:after {
  position: absolute;
  top: 0;
  left: 100%;
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 22px 0 0 22px;
  border-color: transparent transparent transparent #FFFFFF;
  content: '';
}

.pg-mygripfit .card-profile .scroll-outer {
  margin: 30px -30px 0 -30px;
  padding: 0 15px;
  overflow: hidden;
}

.pg-mygripfit .card-profile .scroll-inner {
  height: 100%;
}

.pg-mygripfit .card-profile .scrollbar-outer > .scroll-element {
  background: none;
}

.pg-mygripfit .card-profile .scrollbar-outer > .scroll-element .scroll-element_track {
  background: rgba(255, 255, 255, 0.25);
}

.pg-mygripfit .card-profile .scrollbar-outer > .scroll-element .scroll-bar {
  background: rgba(255, 255, 255, 0.5);
}

.pg-mygripfit .card-profile .scrollbar-outer > .scroll-element.scroll-y .scroll-element_outer {
  left: 6px;
  width: 6px;
  border-radius: 3px;
}

.pg-mygripfit .card-profile-trigger {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100px;
  width: 100px;
  color: #FFFFFF;
  font: normal 10px/1 "Overpass-Bold", sans-serif;
  text-align: center;
  text-transform: uppercase;
  z-index: 10;
}

.pg-mygripfit .card-profile-trigger:after {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 0 0 100px 100px;
  border-color: transparent transparent rgba(0, 0, 0, 0.75) transparent;
  content: '';
  transition: opacity 0.35s ease-in-out;
  z-index: 0;
}

.pg-mygripfit .card-profile-trigger .click-area {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 8px;
  cursor: pointer;
  z-index: 1;
}

.pg-mygripfit .card-profile-trigger .icon {
  position: relative;
  display: block;
  height: 24px;
  width: 24px;
  margin: 0 auto 7px auto;
  transform-origin: center center;
  transition: transform 0.35s ease-in-out;
}

.pg-mygripfit .card-profile-trigger .icon:before, .pg-mygripfit .card-profile-trigger .icon:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  background: #FFFFFF;
  content: '';
  transform: translate(-50%, -50%);
}

.pg-mygripfit .card-profile-trigger .icon:before {
  height: 100%;
  width: 2px;
}

.pg-mygripfit .card-profile-trigger .icon:after {
  height: 2px;
  width: 100%;
}

@media (min-width: 480px) and (max-width: 639px), (min-width: 750px) and (max-width: 959px), (min-width: 1280px) {
  .pg-mygripfit .card-profile {
    padding: 50px;
  }
  .pg-mygripfit .card-profile .name:after {
    left: -50px;
    width: 150px;
  }
  .pg-mygripfit .card-profile .scroll-outer {
    margin-left: -50px;
    margin-right: -50px;
    padding: 0 35px;
  }
}

.pg-mygripfit .grid-card-img .inner {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pg-mygripfit .grid-card-img .card-profile {
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
}

.pg-mygripfit .grid-card-img:after {
  display: block;
  height: 0;
  padding-bottom: 130%;
  content: '';
}

.pg-mygripfit .grid-card-img.active .card-profile {
  opacity: 1;
}

.pg-mygripfit .grid-card-img.active .card-profile-trigger:after {
  opacity: 0;
}

.pg-mygripfit .grid-card-img.active .card-profile-trigger .icon {
  transform: rotate(45deg);
}

.pg-mygripfit .grid-card-video .inner {
  display: flex;
  justify-content: space-between;
}

.pg-mygripfit .grid-card-video .card-profile {
  background: #efefef;
  color: #242323;
}

.pg-mygripfit .grid-card-video .card-profile .name:after {
  left: -115px;
  width: 205px;
  background: #b0001d;
}

.pg-mygripfit .grid-card-video .card-profile .title .hilite {
  color: #b0001d;
}

.pg-mygripfit .grid-card-video .card-profile .grip-model-name {
  color: #b0001d;
}

.pg-mygripfit .grid-card-video .card-profile .grip-specs .label {
  border-bottom: solid #221f1f 1px;
}

.pg-mygripfit .grid-card-video .card-profile .grip-specs .label-inner {
  background: #221f1f;
  color: #FFFFFF;
}

.pg-mygripfit .grid-card-video .card-profile .grip-specs .label-inner:after {
  border-color: transparent transparent transparent #221f1f;
}

.pg-mygripfit .grid-card-video .card-profile .scrollbar-outer > .scroll-element .scroll-element_track {
  background: rgba(0, 0, 0, 0.15);
}

.pg-mygripfit .grid-card-video .card-profile .scrollbar-outer > .scroll-element .scroll-bar {
  background: rgba(0, 0, 0, 0.5);
}

.pg-mygripfit .grid-card-video .vjs-poster {
  background-size: cover;
}

.pg-mygripfit .grid-card-video .vjs-big-play-button {
  height: 50px;
  width: 50px;
  margin: 0;
  opacity: 0.75;
  background: url("../img/svg-inline/icon-play-circle.svg") center center no-repeat;
  background-size: cover;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
}

.pg-mygripfit .grid-card-video .vjs-big-play-button:before {
  display: none;
}

.pg-mygripfit .grid-card-video .video-js:hover .vjs-big-play-button {
  opacity: 1;
}

@media screen and (max-width: 959px) {
  .pg-mygripfit .grid-card-video .inner {
    position: static;
    display: block;
  }
}

@media screen and (max-width: 639px) {
  .pg-mygripfit .grid-card-video .video-wrapper {
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
  }
  .pg-mygripfit .grid-card-video .video-js {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    width: 100%;
  }
  .pg-mygripfit .grid-card-video .card-profile .name:after {
    left: -30px;
    width: 120px;
  }
}

@media screen and (min-width: 480px) and (max-width: 639px) {
  .pg-mygripfit .grid-card-video .card-profile .name:after {
    left: -50px;
    width: 150px;
  }
}

@media screen and (min-width: 640px) and (max-width: 959px) {
  .pg-mygripfit .grid-card-video .inner {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
  }
  .pg-mygripfit .grid-card-video .video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
  }
  .pg-mygripfit .grid-card-video .video-js {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .pg-mygripfit .grid-card-video .video-details {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 50%;
  }
  .pg-mygripfit .grid-card-video .video-wrapper,
  .pg-mygripfit .grid-card-video .video-details,
  .pg-mygripfit .grid-card-video .card-profile .name:after {
    transition: left 0.3s ease-in-out, width 0.3s ease-in-out;
  }
  .pg-mygripfit .grid-card-video[data-state="playing"] .video-wrapper {
    width: 100%;
  }
  .pg-mygripfit .grid-card-video[data-state="playing"] .video-details {
    left: 100%;
  }
  .pg-mygripfit .grid-card-video[data-state="playing"] .card-profile .name:after {
    left: 0;
  }
}

@media screen and (min-width: 960px) {
  .pg-mygripfit .grid-card-video .video-wrapper {
    position: relative;
    width: calc(66.6666% - 3px);
    overflow: hidden;
    z-index: 1;
  }
  .pg-mygripfit .grid-card-video .video-poster,
  .pg-mygripfit .grid-card-video .video-js {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    width: 100%;
  }
  .pg-mygripfit .grid-card-video .video-details {
    position: relative;
    width: calc(33.3333% + 3px);
    margin-left: -10px;
    z-index: 2;
  }
}

.pg-mygripfit .grid-footer {
  margin: 0 auto;
  padding: 40px 30px 50px 30px;
  text-align: center;
}

.pg-mygripfit .grid-footer .btn {
  letter-spacing: 0.5px;
}

@media screen and (max-width: 639px) {
  .pg-mygripfit .grid-footer {
    max-width: 300px;
  }
  .pg-mygripfit .grid-footer .btn {
    width: 100%;
  }
  .pg-mygripfit .grid-footer .btn:first-child {
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 640px) {
  .pg-mygripfit .grid-footer .btn {
    padding-left: 0;
    padding-right: 0;
    width: 150px;
  }
  .pg-mygripfit .grid-footer .btn:first-child {
    margin-right: 5px;
  }
}

.pg-mygripfit .campaign-form {
  position: relative;
  height: 320px;
  margin-bottom: 3px;
  background: #d7d7d7;
  overflow: hidden;
  transition: height 0.6s ease 0.85s;
}

.pg-mygripfit .campaign-form .curtain-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: #FFFFFF;
}

.pg-mygripfit .campaign-form .curtain-wrapper .curtain {
  position: absolute;
  top: 0;
  right: -250px;
  height: 100%;
  width: 100%;
  pointer-events: none;
  transition: right 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 2;
}

.pg-mygripfit .campaign-form .curtain-wrapper .curtain:after {
  position: absolute;
  top: 0;
  right: -250px;
  right: 0;
  height: 100%;
  width: 125%;
  min-width: 960px;
  background: #b0001d;
  content: '';
  transform: skewX(-45deg);
  transform-origin: top left;
  z-index: -1;
}

.pg-mygripfit .campaign-form .curtain-wrapper .inner {
  height: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 30px 30px;
  transform: translateX(-250px);
}

.pg-mygripfit .campaign-form .curtain-wrapper .title {
  position: relative;
  width: 250px;
  margin-top: 0px;
  font: normal 50px/1 "Overpass-Extra-Light", sans-serif;
  text-transform: uppercase;
}

.pg-mygripfit .campaign-form .curtain-wrapper .title .arrow {
  position: absolute;
  bottom: -30px;
  left: -15px;
  display: block;
  height: 15px;
  width: 95px;
  background: #FFFFFF;
}

.pg-mygripfit .campaign-form .curtain-wrapper .title .arrow:after {
  position: absolute;
  top: 0;
  left: 100%;
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 7.5px 0 7.5px 7px;
  border-color: transparent transparent transparent #FFFFFF;
  content: '';
}

.pg-mygripfit .campaign-form .curtain-wrapper .trigger-open {
  position: absolute;
  right: 25px;
  top: 230px;
  width: 180px;
  padding: 15px 55px 15px 15px;
  cursor: pointer;
  font: normal 16px/1.2 "Overpass-Bold", sans-serif;
  text-align: right;
  text-transform: uppercase;
  transition: opacity 0.3s ease 1.65s;
  z-index: 3;
}

.pg-mygripfit .campaign-form .curtain-wrapper .trigger-open .icon {
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  height: 26px;
  width: 26px;
  font: normal 40px/1 "Overpass-Extra-Light", sans-serif;
  transform: translateY(-50%);
}

.pg-mygripfit .campaign-form .curtain-wrapper .trigger-open .icon:before, .pg-mygripfit .campaign-form .curtain-wrapper .trigger-open .icon:after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #FFFFFF;
  content: '';
  transform: translate(-50%, -50%);
}

.pg-mygripfit .campaign-form .curtain-wrapper .trigger-open .icon:before {
  height: 100%;
  width: 2px;
}

.pg-mygripfit .campaign-form .curtain-wrapper .trigger-open .icon:after {
  height: 2px;
  width: 100%;
}

.pg-mygripfit .campaign-form .curtain-wrapper .trigger-close {
  position: absolute;
  top: 9px;
  left: 9px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  font: normal 40px/1 "Overpass-Extra-Light", sans-serif;
  opacity: 0;
  text-align: center;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.pg-mygripfit .campaign-form .curtain-wrapper .trigger-close:after {
  content: '\2715';
}

.pg-mygripfit .campaign-form .body {
  position: relative;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.pg-mygripfit .campaign-form .body .inner {
  margin: 0 auto;
  padding: 60px 30px;
}

.pg-mygripfit .campaign-form .body .title {
  margin-bottom: 20px;
  font: normal 32px/1 "Overpass-Extra-Light", sans-serif;
  text-align: center;
}

.pg-mygripfit .campaign-form.revealed .curtain-wrapper .curtain {
  right: calc(100% - 100px);
}

.pg-mygripfit .campaign-form.revealed .curtain-wrapper .trigger-open {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.pg-mygripfit .campaign-form.revealed .curtain-wrapper .trigger-close {
  opacity: 1;
  transition: opacity 0.3s ease 1s;
}

.pg-mygripfit .campaign-form.revealed .body {
  opacity: 1;
  transition: opacity 1s ease 1.25s;
}

@media screen and (min-width: 640px) {
  .pg-mygripfit .campaign-form .curtain-wrapper .curtain {
    right: 0;
  }
  .pg-mygripfit .campaign-form .curtain-wrapper .inner {
    transform: translateX(0);
  }
  .pg-mygripfit .campaign-form .curtain-wrapper .title {
    width: 350px;
    margin-top: 40px;
    font-size: 55px;
  }
  .pg-mygripfit .campaign-form .curtain-wrapper .title .arrow {
    left: -25px;
  }
  .pg-mygripfit .campaign-form .curtain-wrapper .trigger-open {
    transform: translateX(-250px);
  }
  .pg-mygripfit .campaign-form .body .title {
    margin-bottom: 40px;
    font-size: 40px;
  }
}

@media screen and (min-width: 960px) {
  .pg-mygripfit .campaign-form .curtain-wrapper .inner {
    max-width: 800px;
  }
  .pg-mygripfit .campaign-form .curtain-wrapper .trigger-open {
    top: 220px;
    right: 35px;
    width: 215px;
    padding-right: 70px;
    font-family: "Overpass-Light", sans-serif;
    font-size: 21px;
  }
  .pg-mygripfit .campaign-form .curtain-wrapper .trigger-open .icon {
    height: 40px;
    width: 40px;
  }
}

.pg-mygripfit .campaign-form .steps {
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
}

.pg-mygripfit .campaign-form .step {
  margin-bottom: 30px;
  font: normal 15px/1.25 "Overpass-Light", sans-serif;
}

.pg-mygripfit .campaign-form .step svg {
  display: block;
  height: auto;
  width: 75px;
  margin: 0 auto 20px auto;
  fill: #b0001d;
}

.pg-mygripfit .campaign-form .step-name {
  margin-bottom: 5px;
  font: normal 16px/1 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

@media screen and (min-width: 640px) {
  .pg-mygripfit .campaign-form .steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 700px;
    margin-bottom: 40px;
  }
  .pg-mygripfit .campaign-form .step {
    flex: 1;
    margin-bottom: 0;
  }
  .pg-mygripfit .campaign-form .step:nth-child(2) {
    margin: 0 20px;
  }
}

.pg-mygripfit .campaign-form .gform_wrapper {
  max-width: 950px;
  margin: 0 auto 50px auto;
}

.pg-mygripfit .campaign-form .gform_wrapper form {
  overflow: visible;
}

.pg-mygripfit .campaign-form .gfield {
  position: relative;
  margin-top: 12px;
  padding-right: 0 !important;
}

.pg-mygripfit .campaign-form .gfield .ginput_container {
  margin-top: 0;
}

.pg-mygripfit .campaign-form .gfield .ginput_container span {
  margin-bottom: 0;
}

.pg-mygripfit .campaign-form .gfield label {
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 1px;
  right: 1px;
  display: flex;
  align-items: center;
  max-height: 42px;
  padding-left: 15px;
  font: normal 15px/1 "Overpass-Light", sans-serif;
  pointer-events: none;
  text-transform: uppercase;
  transition: bottom 0.3s ease, color 0.3s ease, font-size 0.3s ease;
  z-index: 20;
}

.pg-mygripfit .campaign-form .gfield .gfield_required {
  display: none;
}

.pg-mygripfit .campaign-form .gfield input[type="text"],
.pg-mygripfit .campaign-form .gfield .selector span,
.pg-mygripfit .campaign-form .gfield .uploader .filename,
.pg-mygripfit .campaign-form .gfield textarea {
  width: 100%;
  border-color: #d0d0d0;
  font-family: "Overpass-Light", sans-serif;
  font-size: 16px !important;
  font-weight: normal !important;
  line-height: 1 !important;
}

.pg-mygripfit .campaign-form .gfield input[type="text"] {
  padding: 15px 15px 2px !important;
}

.pg-mygripfit .campaign-form .gfield input[type="file"] {
  width: 100% !important;
}

.pg-mygripfit .campaign-form .gfield .selector span {
  padding-top: 20px;
  padding-bottom: 6px;
}

.pg-mygripfit .campaign-form .gfield .uploader .filename {
  padding: 20px 15px 6px 15px;
}

.pg-mygripfit .campaign-form .gfield .uploader .action {
  position: absolute;
  top: 1px;
  bottom: 1px;
  right: 1px;
  display: block;
  background: #b0001d;
  overflow: hidden;
  text-indent: -500px;
  width: 40px;
}

.pg-mygripfit .campaign-form .gfield .uploader .action:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  height: 20px;
  width: 20px;
  background: url("../img/svg-inline/icon-upload.svg") center center no-repeat;
  background-size: cover;
  content: '';
  transform: translate(-50%, -50%);
}

.pg-mygripfit .campaign-form .gfield textarea {
  display: block;
  height: 160px;
  padding: 20px 15px 15px 15px;
}

.pg-mygripfit .campaign-form .gfield.grip-details label:after {
  display: inline-block;
  margin-left: 5px;
  content: '(tape wraps, core size, etc.)';
  font-size: 12px;
  text-transform: none;
}

.pg-mygripfit .campaign-form .gfield.file-upload .screen-reader-text {
  display: none;
}

.pg-mygripfit .campaign-form .gfield.textarea label {
  background: #FFFFFF;
}

.pg-mygripfit .campaign-form .gfield.newsletter-consent .ginput_container_checkbox {
  margin-top: 0;
}

.pg-mygripfit .campaign-form .gfield.newsletter-consent .gfield_checkbox {
  margin: 0;
}

.pg-mygripfit .campaign-form .gfield.newsletter-consent .gfield_checkbox div.checker span {
  height: 18px !important;
  width: 18px !important;
  background: #FFFFFF;
  border-color: #999;
  cursor: pointer;
}

.pg-mygripfit .campaign-form .gfield.newsletter-consent .gfield_checkbox label {
  position: static;
  max-height: none;
  padding: 0;
  color: #262627 !important;
  font: normal 12px/1.2 "Overpass-Light", sans-serif !important;
  text-transform: none;
}

.pg-mygripfit .campaign-form .gfield.label-up label, .pg-mygripfit .campaign-form .gfield.file-upload label {
  bottom: calc(100% - 20px);
  font-size: 12px;
  color: #999;
}

.pg-mygripfit .campaign-form .gform_footer {
  position: relative;
  margin: 20px 0 0 0;
  padding: 0;
}

.pg-mygripfit .campaign-form .gform_button {
  display: block !important;
  width: 100% !important;
  max-width: 250px !important;
  margin: 0 auto !important;
  padding: 17px 24px;
  color: #FFFFFF;
  font-size: 15px;
  font-family: "Overpass-Bold", sans-serif;
  line-height: 1 !important;
  letter-spacing: 0.5px;
  background: none;
  border: solid #b0001d 1px;
  border-radius: 2px;
  color: #b0001d;
  outline: none;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.pg-mygripfit .campaign-form .gform_button:hover {
  color: white;
  background-color: #b0001d;
}

.pg-mygripfit .campaign-form .gform_ajax_spinner {
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  display: block;
  height: 40px;
  width: 40px;
  transform: translateX(-50%);
  z-index: 10;
}

.pg-mygripfit .campaign-form .gform_confirmation_message {
  margin: 50px 0;
  font-size: 30px;
  line-height: 1.25;
  text-align: center;
}

@media screen and (min-width: 640px) {
  .pg-mygripfit .campaign-form .gform_fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .pg-mygripfit .campaign-form .gfield {
    flex-basis: calc(50% - 10px);
    margin: 5px !important;
  }
  .pg-mygripfit .campaign-form .gfield textarea {
    height: 90px;
  }
}

@media screen and (min-width: 640px) and (max-width: 899px) {
  .pg-mygripfit .campaign-form .gfield.file-upload, .pg-mygripfit .campaign-form .gfield.textarea, .pg-mygripfit .campaign-form .gfield.newsletter-consent {
    flex-basis: calc(100% - 10px);
  }
}

@media screen and (min-width: 900px) {
  .pg-mygripfit .campaign-form .gfield {
    flex-basis: calc(33.3333% - 10px);
  }
  .pg-mygripfit .campaign-form #field_4_9,
  .pg-mygripfit .campaign-form #field_4_15 {
    flex-basis: calc(66.6666% - 10px);
  }
}

.pg-mygripfit .campaign-form .validation_error {
  margin-bottom: 10px;
  padding: 0;
  border: 0;
  color: #b0001d;
  font: normal 18px/1.25 "Overpass-Bold", sans-serif;
}

.pg-mygripfit .campaign-form .gfield_error {
  background: none !important;
  border: 0 !important;
  margin-bottom: 5px !important;
  padding: 0 !important;
}

.pg-mygripfit .campaign-form .gfield_error label {
  margin-top: 0 !important;
  color: #b0001d !important;
}

.pg-mygripfit .campaign-form .gfield_error .ginput_container {
  margin-top: 0 !important;
}

.pg-mygripfit .campaign-form .gfield_error input[type="text"],
.pg-mygripfit .campaign-form .gfield_error .selector span,
.pg-mygripfit .campaign-form .gfield_error .uploader .filename,
.pg-mygripfit .campaign-form .gfield_error textarea {
  margin-bottom: 0 !important;
  border-color: #b0001d !important;
}

.pg-mygripfit .campaign-form .gfield_error .validation_message {
  margin-top: 3px !important;
  padding: 0 !important;
  color: #b0001d !important;
  font: normal 12px/1 "Overpass-Light", sans-serif !important;
}

.pg-mygripfit .campaign-form .social-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pg-mygripfit .campaign-form .social-media-nav {
  display: flex;
  align-content: center;
  justify-content: center;
  margin: 0 0 15px -5px;
}

.pg-mygripfit .campaign-form .social-media-nav a {
  display: block;
  margin: 0 12px;
  text-align: center;
}

.pg-mygripfit .campaign-form .social-media-nav a:hover svg {
  fill: #655c5c;
}

.pg-mygripfit .campaign-form .social-media-nav svg {
  display: block;
  height: 40px;
  width: 40px;
  margin: 0 auto;
  fill: #221f1f;
  transition: fill 0.3s ease;
}

.pg-mygripfit .campaign-form .social-media-handle {
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.pg-mygripfit .campaign-form .social-media-handle .hashtag {
  font-size: 34px;
  font-family: "Overpass-Bold", sans-serif;
}

@media screen and (min-width: 640px) {
  .pg-mygripfit .campaign-form .social-media {
    flex-direction: row;
  }
  .pg-mygripfit .campaign-form .social-media-nav {
    margin: 0 40px 0 -25px;
  }
}

@media screen and (min-width: 960px) {
  .pg-mygripfit .campaign-form .social-media-nav svg {
    height: 50px;
    width: 50px;
  }
  .pg-mygripfit .campaign-form .social-media-handle {
    font-size: 20px;
  }
  .pg-mygripfit .campaign-form .social-media-handle .hashtag {
    font-size: 38px;
  }
}

.pg-mygripfit .campaign-footer {
  padding: 30px;
  background: url("../img/mygripfit/bg-warehouse.jpg") center center no-repeat;
  background-size: cover;
  text-align: center;
}

.pg-mygripfit .campaign-footer .title {
  margin-bottom: 20px;
  font: normal 34px/1 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.pg-mygripfit .campaign-footer .btn {
  letter-spacing: 0.5px;
}

.pg-mygripfit .campaign-footer .btn:not(:hover) {
  background: none;
}

@media screen and (min-width: 640px) {
  .pg-mygripfit .campaign-footer {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pg-mygripfit .campaign-footer .title {
    margin: 0 40px 0 0;
    font-size: 38px;
  }
}

.victoryclub-header {
  position: relative;
  z-index: 100;
  background: black url(../img/bg-header-victoryclub.jpg) center center repeat-x;
  background-size: auto 100%;
}

.victoryclub-header--container {
  max-width: 850px;
  margin: 0 auto;
  padding: 34px 25px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .victoryclub-header--container {
    padding-top: 102px;
    padding-bottom: 102px;
  }
}

.victoryclub-header--logo {
  display: block;
  max-width: 108px;
  margin: 0 auto 18px;
}

@media screen and (min-width: 960px) {
  .victoryclub-header--logo {
    max-width: 180px;
    margin-bottom: 40px;
  }
}

.victoryclub-header--logo img {
  width: 100%;
}

.victoryclub-header--copy {
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.875rem;
  margin-bottom: 28px;
  text-align: center;
}

@media screen and (min-width: 960px) {
  .victoryclub-header--copy {
    font-size: 1rem;
    line-height: 2.25rem;
  }
}

.victoryclub-grid {
  width: calc(100% - 40px);
  max-width: 480px;
  margin: 0 auto;
  padding: 20px 0;
  transition: all 0.3s;
}

@media screen and (min-width: 960px) {
  .victoryclub-grid {
    max-width: 1380px;
    display: flex;
    flex-flow: column wrap;
    align-content: space-between;
    /* The container needs a fixed height, and it
	   * needs to be taller than your tallest column. */
    height: 3000px;
    /* Force new columns */
  }
  .victoryclub-grid:before, .victoryclub-grid:after {
    content: "";
    flex-basis: 100%;
    width: 0;
    order: 2;
  }
}

.victoryclub-card {
  position: relative;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.victoryclub-card:nth-of-type(odd) {
  min-height: 444px;
}

.victoryclub-card:nth-of-type(odd) .victoryclub-card--asset {
  max-height: 444px;
}

@media screen and (min-width: 960px) {
  .victoryclub-card:nth-of-type(odd) {
    min-height: 623px;
  }
  .victoryclub-card:nth-of-type(odd) .victoryclub-card--asset {
    max-height: 623px;
  }
}

.victoryclub-card:nth-of-type(even) {
  min-height: 216px;
}

.victoryclub-card:nth-of-type(even) .victoryclub-card--asset {
  max-height: 216px;
}

@media screen and (min-width: 960px) {
  .victoryclub-card:nth-of-type(even) {
    min-height: 309px;
  }
  .victoryclub-card:nth-of-type(even) .victoryclub-card--asset {
    max-height: 309px;
  }
}

@media screen and (min-width: 960px) {
  .victoryclub-card {
    width: 32.4%;
    /* Re-order items into 3 rows */
  }
  .victoryclub-card:nth-child(3n+1) {
    order: 1;
  }
  .victoryclub-card:nth-child(3n+2) {
    order: 2;
  }
  .victoryclub-card:nth-child(3n) {
    order: 3;
  }
}

.victoryclub-card--trigger {
  cursor: pointer;
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 40px;
  height: 40px;
  transition: all 0.3s;
}

.victoryclub-card--trigger:before, .victoryclub-card--trigger:after {
  cursor: pointer;
  content: '';
  position: absolute;
  top: calc(50% - 2.5px);
  left: 0;
  right: 0;
  height: 5px;
  background-color: white;
  transform-origin: center;
}

.victoryclub-card--trigger:after {
  transform: rotate(90deg);
}

.active-card .victoryclub-card--trigger {
  transform: rotate(45deg);
}

.victoryclub-card--asset {
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 31px 36px;
  background: transparent center center no-repeat;
  background-size: cover;
}

.victoryclub-card--asset:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.victoryclub-card--asset-title {
  position: relative;
  color: white;
  font-family: "Overpass-Bold",sans-serif;
  font-size: 1.3125rem;
  line-height: 2.1875rem;
  text-transform: uppercase;
}

.victoryclub-card--asset-title:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 130px;
  height: 5px;
  background-color: #b0001d;
}

.victoryclub-card--content {
  position: relative;
  z-index: 1;
  background-color: #f0f0f0;
  padding: 0;
  transition: all 0.3s;
  transform: translate(0, -50%);
  opacity: 0;
}

@media screen and (min-width: 960px) {
  .victoryclub-card--content {
    padding: 30px 25px;
  }
}

.active-card .victoryclub-card--content {
  padding: 30px 25px;
  transform: translate(0, 0);
  opacity: 1;
}

.victoryclub-card--content-copy {
  font-size: 0.9375rem;
  line-height: 1.125rem;
  margin-bottom: 19px;
}

.victoryclub-card--content-title {
  font-family: "Overpass-Bold",sans-serif;
  font-size: 0.8125rem;
  line-height: 1.375rem;
  text-transform: uppercase;
}

.victoryclub-card--content-subtitle {
  border-top: 2px solid #b0001d;
  margin-bottom: 7px;
  color: #b0001d;
  font-size: 1.3125rem;
  line-height: 2rem;
  text-transform: uppercase;
}

.victoryclub-card--content-author {
  font-family: "Overpass-Bold",sans-serif;
  font-size: 1.125rem;
  line-height: 1.875rem;
}

@media screen and (min-width: 960px) {
  .victoryclub-share--column-container {
    max-width: 1280px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.victoryclub-share--column {
  max-width: 720px;
  margin: 0 auto 30px;
}

@media screen and (min-width: 960px) {
  .victoryclub-share--column {
    width: calc(50% - 25px);
    margin: 0;
  }
}

.victoryclub-share--column h6 {
  color: #b0001d;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.3125rem;
  line-height: 1.5rem;
}

.victoryclub-share .gform_wrapper {
  max-width: 950px;
  margin: 0 auto 50px auto;
}

.victoryclub-share .gform_wrapper form {
  overflow: visible;
}

.victoryclub-share .gform_wrapper .gform_heading {
  display: none;
}

.victoryclub-share .gform_wrapper .gform_page_footer {
  padding: 0;
  margin: 0;
  border: none;
}

.victoryclub-share .gform_wrapper .gf_page_steps {
  display: flex;
  color: #221f1f;
  font-size: 21px;
  font-weight: 100;
  border: none;
}

.victoryclub-share .gform_wrapper .gf_page_steps:before {
  content: 'Step';
  font-family: "Overpass-Light", sans-serif;
  color: #221f1f;
  font-size: 21px;
}

.victoryclub-share .gform_wrapper .gf_page_steps .gf_step {
  width: auto;
  font-weight: 100;
  color: #221f1f;
  font-size: 21px;
  margin: 0;
  opacity: 1;
}

.victoryclub-share .gform_wrapper .gf_page_steps .gf_step_first:after {
  content: '/';
  font-family: "Overpass-Light", sans-serif;
  color: #221f1f;
  font-size: 21px;
}

.victoryclub-share .gform_wrapper .gf_page_steps .gf_step_active {
  color: #b0001d;
}

.victoryclub-share .gform_wrapper .gf_page_steps .gf_step span.gf_step_number {
  margin-right: 0;
  margin-left: 4px;
  font-size: inherit;
  font-family: inherit;
}

.victoryclub-share .gfield {
  position: relative;
  margin-top: 12px;
  padding-right: 0 !important;
}

.victoryclub-share .gfield#field_5_28 {
  width: 100% !important;
}

.victoryclub-share .gfield .ginput_container {
  margin-top: 0 !important;
}

.victoryclub-share .gfield .ginput_container span {
  margin-bottom: 0;
}

.victoryclub-share .gfield label {
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 1px;
  right: 1px;
  display: flex !important;
  align-items: center;
  max-height: 42px;
  padding-left: 15px;
  font-size: 14px;
  font-weight: 400 !important;
  pointer-events: none;
  text-transform: uppercase;
  transition: bottom 0.3s ease, color 0.3s ease, font-size 0.3s ease;
  z-index: 20;
}

.victoryclub-share .gfield .gfield_required {
  display: none;
}

.victoryclub-share .gfield input[type="text"],
.victoryclub-share .gfield .selector span,
.victoryclub-share .gfield .uploader .filename,
.victoryclub-share .gfield textarea {
  width: 100%;
  border-color: #f0f0f0;
  background-color: #f0f0f0;
  font-family: "Overpass-Light", sans-serif;
  font-size: 16px !important;
  font-weight: normal !important;
  line-height: 1 !important;
}

.victoryclub-share .gfield input[type="text"] {
  padding: 15px 15px 2px !important;
}

.victoryclub-share .gfield input[type="file"] {
  width: 100% !important;
}

.victoryclub-share .gfield .selector span {
  padding-top: 20px;
  padding-bottom: 6px;
}

.victoryclub-share .gfield .uploader .filename {
  padding: 20px 15px 6px 15px;
}

.victoryclub-share .gfield .uploader .action {
  position: absolute;
  top: 1px;
  bottom: 1px;
  right: 1px;
  display: block;
  background: #b0001d;
  overflow: hidden;
  text-indent: -500px;
  width: 40px;
}

.victoryclub-share .gfield .uploader .action:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  height: 20px;
  width: 20px;
  background: url("../img/svg-inline/icon-upload.svg") center center no-repeat;
  background-size: cover;
  content: '';
  transform: translate(-50%, -50%);
}

.victoryclub-share .gfield textarea {
  display: block;
  height: 120px !important;
  padding: 20px 15px 15px 15px;
}

.victoryclub-share .gfield.grip-details label:after {
  display: inline-block;
  margin-left: 5px;
  content: '(tape wraps, core size, etc.)';
  font-size: 12px;
  text-transform: none;
}

.victoryclub-share .gfield.file-upload .screen-reader-text {
  display: none;
}

.victoryclub-share .gfield.newsletter-consent .ginput_container_checkbox {
  margin-top: 0;
}

.victoryclub-share .gfield.newsletter-consent .gfield_checkbox {
  margin: 0;
}

.victoryclub-share .gfield.newsletter-consent .gfield_checkbox div.checker span {
  height: 18px !important;
  width: 18px !important;
  background: #f0f0f0;
  border-color: #f0f0f0;
  cursor: pointer;
}

.victoryclub-share .gfield.newsletter-consent .gfield_checkbox label {
  position: static;
  max-height: none;
  padding: 0;
  color: #262627 !important;
  font: normal 14px/1.2 "Overpass-Light", sans-serif !important;
  text-transform: none;
}

.victoryclub-share .gfield.label-up label, .victoryclub-share .gfield.file-upload label {
  bottom: calc(100% - 20px);
  font-size: 12px;
  color: #221f1f;
}

.victoryclub-share .gform_footer {
  position: relative;
  margin: 20px 0 0 0;
  padding: 0;
}

.victoryclub-share .gform_previous_button {
  display: none !important;
}

.victoryclub-share .gform_next_button,
.victoryclub-share .gform_button {
  display: block !important;
  width: 100% !important;
  max-width: 250px !important;
  margin: 0 auto !important;
  padding: 17px 24px;
  color: #FFFFFF;
  font-size: 15px;
  font-family: "Overpass-Bold", sans-serif;
  line-height: 1 !important;
  letter-spacing: 0.5px;
  background: none;
  border: solid #b0001d 1px;
  border-radius: 2px;
  color: #b0001d;
  outline: none;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.victoryclub-share .gform_next_button:hover,
.victoryclub-share .gform_button:hover {
  color: white;
  background-color: #b0001d;
}

.victoryclub-share .gform_ajax_spinner {
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  display: block;
  height: 40px;
  width: 40px;
  transform: translateX(-50%);
  z-index: 10;
}

.victoryclub-share .gform_confirmation_message {
  margin: 50px 0;
  font-size: 30px;
  line-height: 1.25;
  text-align: center;
}

@media screen and (min-width: 640px) {
  .victoryclub-share .gform_fields {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .victoryclub-share .gfield {
    width: calc(50% - 10px) !important;
    margin: 0 0 13px !important;
  }
  .victoryclub-share .gfield textarea {
    height: 90px !important;
  }
  .victoryclub-share .gfield#field_5_27 {
    width: 100% !important;
  }
}

@media screen and (min-width: 640px) {
  .victoryclub-share .gfield.textarea, .victoryclub-share .gfield.newsletter-consent {
    width: 100% !important;
  }
}

.victoryclub-share .validation_error {
  margin-bottom: 10px;
  padding: 0;
  border: 0;
  color: #b0001d;
  font: normal 18px/1.25 "Overpass-Bold", sans-serif;
}

.victoryclub-share .gfield_error {
  background: none !important;
  border: 0 !important;
  margin-bottom: 5px !important;
  padding: 0 !important;
}

.victoryclub-share .gfield_error label {
  margin-top: 0 !important;
  color: #b0001d !important;
}

.victoryclub-share .gfield_error .ginput_container {
  margin-top: 0 !important;
}

.victoryclub-share .gfield_error input[type="text"],
.victoryclub-share .gfield_error .selector span,
.victoryclub-share .gfield_error .uploader .filename,
.victoryclub-share .gfield_error textarea {
  margin-bottom: 0 !important;
  border-color: #b0001d !important;
}

.victoryclub-share .gfield_error .validation_message {
  margin-top: 3px !important;
  padding: 0 !important;
  color: #b0001d !important;
  font: normal 12px/1 "Overpass-Light", sans-serif !important;
}

.social-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}

@media screen and (min-width: 640px) {
  .social-media {
    padding-bottom: 60px;
  }
}

@media screen and (min-width: 960px) {
  .social-media {
    padding-bottom: 90px;
  }
}

.social-media-nav {
  display: flex;
  align-content: center;
  justify-content: center;
  margin: 0 0 15px -5px;
}

.social-media-nav > a {
  display: block;
  margin: 0 12px;
  text-align: center;
}

.social-media-nav > a:hover svg {
  fill: #655c5c;
}

.social-media-nav svg {
  display: block;
  height: 40px;
  width: 40px;
  margin: 0 auto;
  fill: #221f1f;
  transition: fill 0.3s ease;
}

.social-media-handle {
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.social-media-handle .hashtag {
  font-size: 34px;
  font-family: "Overpass-Bold", sans-serif;
}

@media screen and (min-width: 640px) {
  .social-media {
    flex-direction: row;
  }
  .social-media-nav {
    margin: 0 40px 0 -25px;
  }
}

@media screen and (min-width: 960px) {
  .social-media-nav svg {
    height: 50px;
    width: 50px;
  }
  .social-media-handle {
    font-size: 20px;
  }
  .social-media-handle .hashtag {
    font-size: 38px;
  }
}

.newsletter-signup div.checker {
  float: none;
  padding-top: 6px;
}

.newsletter-signup div.checker span {
  width: 20px;
  height: 20px;
  background: white;
  border-color: #262627;
}

.newsletter-signup div.checker span.checked {
  background: white url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMjAuMjg1IDJsLTExLjI4NSAxMS41NjctNS4yODYtNS4wMTEtMy43MTQgMy43MTYgOSA4LjcyOCAxNS0xNS4yODV6Ii8+PC9zdmc+) center center no-repeat;
  background-size: auto 14px;
}

.newsletter-signup .checkbox-row {
  display: flex;
  flex-wrap: wrap;
}

.newsletter-signup .checkbox-row .error-message {
  width: 100%;
  text-transform: uppercase;
  font-size: 1.125rem;
  font-family: "Overpass-Bold",sans-serif;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  transition: all 0.3s;
}

.newsletter-signup .checkbox-row.error .error-message {
  max-height: 50px;
  padding: 10px 0;
}

.newsletter-signup .checkbox-row .checker {
  width: 30px;
}

.newsletter-signup .checkbox-row .label {
  flex: 1;
}

.newsletter-signup .checkbox-row .label a {
  text-decoration: underline;
  color: inherit;
}

.page-feautred-container.retail:after {
  background-color: rgba(0, 0, 0, 0.7);
}

.page-content-pos-displays .title {
  margin-bottom: 0;
}

.page-content-pos-displays .sub-title {
  margin-bottom: 30px;
}

.page-content-pos-displays .column-row {
  max-width: 940px;
  margin: 0 auto;
}

.page-retail-display {
  padding: 0;
}

.page-retail-display .retail-entry-date {
  background: #b0001d;
  color: white;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.375rem;
  line-height: 1.25;
  padding: 15px 0;
}

.page-retail-display .retail-entry-date a {
  font-family: "Overpass-Bold", sans-serif;
  position: relative;
  display: inline-block;
  color: white;
  text-decoration: none;
}

.page-retail-display .retail-entry-date a span {
  display: block;
  font-size: 1.1875rem;
  font-family: "Overpass-Light", sans-serif;
}

.page-retail-display .column {
  margin-bottom: 40px;
}

@media screen and (min-width: 640px) {
  .page-retail-display .column {
    margin: 0;
  }
}

.page-retail-display .column img {
  margin: 0 auto 30px;
  max-width: 480px;
  width: 100%;
}

.page-retail-display .column .btn {
  display: block;
}

.page-retail-display .wp-page-content {
  padding: 45px 0;
}

@media screen and (min-width: 960px) {
  .page-retail-display .wp-page-content {
    padding: 60px 0;
  }
}

.page-retail-display .page-content-winners {
  background-color: #ebebeb;
}

.page-retail-display .page-content-winners .title {
  margin-bottom: 0;
}

.page-retail-display .page-content-winners .sub-title {
  margin-bottom: 30px;
}

.page-retail-display .page-content-winners .contest-winner-list-container {
  position: relative;
  margin: 0 auto;
  max-width: 300px;
}

@media screen and (min-width: 640px) {
  .page-retail-display .page-content-winners .contest-winner-list-container {
    max-width: 620px;
  }
}

@media screen and (min-width: 960px) {
  .page-retail-display .page-content-winners .contest-winner-list-container {
    max-width: 940px;
  }
}

.page-retail-display .page-content-winners .contest-winner-list {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.page-retail-display .page-content-winners .contest-winner-list li {
  width: 100%;
  padding: 0;
}

.page-retail-display .page-content-winners .contest-winner-list li:before {
  content: '';
}

.page-retail-display .page-content-winners .contest-winner-list li .contest-winner-container {
  display: block;
  position: relative;
  height: 0;
  padding-top: 67.10526%;
  margin-bottom: 25px;
  overflow: hidden;
}

.page-retail-display .page-content-winners .contest-winner-list li img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page-retail-display .page-content-winners .contest-winner-list-controls a {
  position: absolute;
  top: 196px;
  width: 16px;
  height: 30px;
}

.page-retail-display .page-content-winners .contest-winner-list-controls a.list-controls-prev {
  left: -30px;
}

.page-retail-display .page-content-winners .contest-winner-list-controls a.list-controls-next {
  right: -30px;
}

.page-retail-display .page-content-winners .contest-winner-list-controls a svg {
  display: block;
  width: 16px;
  height: 30px;
  fill: #7c7c7c;
}

.page-retail-display .page-content-winners .bx-wrapper .bx-pager.bx-default-pager a {
  width: 20px;
  height: 5px;
  border: none;
  border-radius: 0;
  background: #d7d7d7;
  margin: 0 2px;
}

.page-retail-display .page-content-winners .bx-wrapper .bx-pager.bx-default-pager a.active {
  background-color: #6e6e6e;
}

.page-retail-display .page-content-prizes {
  background: transparent url(../img/retail-display/bg-page-content-prize.jpg) center center no-repeat;
  background-size: cover;
  color: white;
}

.page-retail-display .page-content-prizes .prize-column-title {
  font-family: "Overpass-Bold", sans-serif;
  text-transform: none;
  font-size: 2.125rem;
  line-height: 1.4;
  margin-bottom: 26px;
  text-align: center;
}

.page-retail-display .page-content-prizes .prize-column-title span {
  display: block;
  font-size: 1.375rem;
  font-family: "Overpass-Light", sans-serif;
  text-transform: none;
}

.page-retail-display .page-content-prizes .prize-column-title:first-of-type {
  position: relative;
  margin-bottom: 49px;
}

.page-retail-display .page-content-prizes .prize-column-title:first-of-type:after {
  content: '';
  position: absolute;
  left: calc(50% - 45px);
  bottom: -28px;
  height: 3px;
  width: 90px;
  background-color: white;
}

.page-retail-display .page-content-prizes .prize-column-details {
  margin: 0;
  padding: 6px 0;
  border: 1px solid white;
  border-width: 1px 0;
}

.page-retail-display .page-content-prizes .prize-column-details li {
  display: block;
  padding: 12px 0;
  font-size: 1.25rem;
  line-height: 1.5rem;
}

.page-retail-display .page-content-prizes .prize-column-details li:before {
  content: '';
}

.page-retail-display .page-content-more-details h1, .page-retail-display .page-content-more-details h3 {
  text-transform: none;
  margin-bottom: 4px;
}

.page-retail-display .page-content-more-details .more-details-link {
  text-align: center;
  font-size: 1.375rem;
  line-height: 60px;
  font-family: "Overpass-Bold", sans-serif;
  color: #b1000d;
  cursor: pointer;
}

.page-retail-display .page-content-more-details .more-details-link .plus-sign {
  display: inline-block;
  transition: all 0.3s;
}

.page-retail-display .page-content-more-details .more-details-link.open .plus-sign {
  transform: rotate(135deg);
}

.page-retail-display .page-content-more-details .more-details-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.page-retail-display .page-content-more-details .more-details-content.show {
  max-height: 1000px;
  padding-bottom: 30px;
}

.page-retail-display .page-content-more-details .retail-display-rules-link {
  text-align: center;
}

.page-retail-display .page-content-more-details .retail-display-rules-link a {
  position: relative;
  color: #262627;
  display: inline-block;
  font-size: 1.25rem;
}

.page-retail-display .page-content-more-details .retail-display-rules-link a:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #262627;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0px;
  transition: all 0.3s;
}

.page-retail-display .page-content-more-details .retail-display-rules-link a:hover {
  text-decoration: none;
}

.page-retail-display .page-content-more-details .retail-display-rules-link a:hover:after {
  left: 100%;
  opacity: 0;
}

.grip-tester-index .promo-header {
  text-align: center;
  margin-bottom: 60px;
}

.grip-tester-index .promo-header p {
  text-align: inherit;
}

.grip-tester-index .promo-header p:last-child {
  margin-bottom: 0;
}

.grip-tester-index .promo-header .subtitle {
  font: normal 14px/1 "Overpass-Bold", sans-serif;
  text-transform: uppercase;
}

.grip-tester-index .grip-gallery {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  text-align: center;
}

.grip-tester-index .grip-gallery a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.grip-tester-index .grip-gallery a:not(:last-child) {
  margin-bottom: 60px;
}

.grip-tester-index .grip-gallery a:hover img {
  transform: scale(1.03);
}

.grip-tester-index .grip-gallery img {
  display: block;
  width: 100%;
  max-width: auto;
  margin-bottom: 0;
  transition: transform 0.3s;
}

.grip-tester-index .grip-gallery .label {
  font: normal 16px/1 "Overpass-Bold", sans-serif;
}

.grip-tester .promo-wrapper {
  position: relative;
  padding: 50px 0;
  color: #343434;
  z-index: 200;
}

.grip-tester .promo-wrapper form {
  width: 100%;
  max-width: none;
}

.grip-tester .promo-wrapper .promo-header {
  text-align: center;
}

.grip-tester .promo-wrapper .promo-header .highlight {
  color: #b0001d;
}

.grip-tester .promo-wrapper .promo-header .title {
  margin-bottom: 20px;
  font: normal 2.125rem/1 "Overpass-Bold", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media screen and (min-width: 640px) {
  .grip-tester .promo-wrapper .promo-header .title {
    font-size: 2.8125rem;
  }
}

.grip-tester .promo-wrapper .promo-header .title .highlight {
  color: #b0001d;
}

.grip-tester .promo-wrapper .promo-header .subtitle {
  margin-bottom: 27px;
}

.grip-tester .promo-wrapper .promo-header .cta {
  margin-bottom: 40px;
  font: normal 20px/1 "Overpass-Light", sans-serif;
  text-transform: uppercase;
}

.grip-tester .promo-wrapper .promo-header .disclaimer {
  margin-top: 20px;
}

.grip-tester .promo-wrapper .promo-header img {
  display: inline-block;
}

.grip-tester .promo-wrapper .btn {
  position: relative;
}

.grip-tester .promo-wrapper .btn svg {
  position: absolute;
  top: 50%;
  right: 20px;
  height: 15px;
  width: 15px;
  fill: white;
  transform: translate(0, -50%);
  transition: all 0.3s;
}

.grip-tester .promo-wrapper .btn {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
  padding: 11px 45px 10px 24px;
  background: #b0001d;
  border: 2px solid #b0001d;
  color: white;
  cursor: pointer;
  font: normal 25px/1 "Overpass-Light", sans-serif;
  outline: none;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.25s ease;
}

.grip-tester .promo-form {
  overflow: hidden;
}

.grip-tester .promo-form form {
  margin: 0;
  padding: 0;
}

.grip-tester .promo-form input[type=number]::-webkit-inner-spin-button,
.grip-tester .promo-form input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.grip-tester .promo-form .input-text,
.grip-tester .promo-form input[type=text],
.grip-tester .promo-form input[type=password],
.grip-tester .promo-form input[type=email],
.grip-tester .promo-form input[type=number],
.grip-tester .promo-form input[type=tel],
.grip-tester .promo-form input[type=search],
.grip-tester .promo-form textarea {
  height: 52px;
  padding: 14px 12px;
  background-color: rgba(255, 255, 255, 0.8);
  border: solid #b0001d 4px;
  border-radius: 2px;
  font-size: 1rem;
  line-height: 1.25rem;
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
}

@media screen and (min-width: 640px) {
  .grip-tester .promo-form .input-text,
  .grip-tester .promo-form input[type=text],
  .grip-tester .promo-form input[type=password],
  .grip-tester .promo-form input[type=email],
  .grip-tester .promo-form input[type=number],
  .grip-tester .promo-form input[type=tel],
  .grip-tester .promo-form input[type=search],
  .grip-tester .promo-form textarea {
    padding: 10px 15px;
  }
}

.grip-tester .promo-form .input-text.required,
.grip-tester .promo-form input[type=text].required,
.grip-tester .promo-form input[type=password].required,
.grip-tester .promo-form input[type=email].required,
.grip-tester .promo-form input[type=number].required,
.grip-tester .promo-form input[type=tel].required,
.grip-tester .promo-form input[type=search].required,
.grip-tester .promo-form textarea.required {
  background: rgba(176, 0, 29, 0.15);
}

.grip-tester .promo-form textarea {
  height: auto;
  padding-top: 6px;
  padding-bottom: 6px;
  line-height: 1.25;
}

.grip-tester .promo-form .selector {
  position: relative;
  width: 100% !important;
  text-align: left !important;
  z-index: 10;
}

.grip-tester .promo-form .selector span {
  position: relative;
  display: block;
  padding: 14px 40px 14px 15px;
  background-color: #FFFFFF;
  border: solid #b0001d 2px;
  color: #343434;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: border-color 0.2s ease;
  white-space: nowrap;
}

.grip-tester .promo-form .selector span:after {
  position: absolute;
  top: 50%;
  right: 11px;
  display: block;
  height: 15px;
  width: 15px;
  margin: 0;
  background: url("../svg/icon-chevron-double-right.svg") center center no-repeat;
  background-size: cover;
  content: '';
  transform: translateY(-50%) rotate(90deg);
}

.grip-tester .promo-form .selector select {
  position: absolute;
  top: 0;
  left: 0;
  height: 52px;
  width: 100%;
  cursor: pointer;
  font: normal 16px/1 "Overpass-Light", sans-serif;
  opacity: 0;
  -webkit-appearance: menulist-button;
}

.grip-tester .promo-form .radio {
  position: relative;
  float: right;
  display: inline-block;
  height: 22px;
  width: 22px;
  margin-left: 20px;
  margin: 0;
}

.grip-tester .promo-form .radio span,
.grip-tester .promo-form .radio input {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.grip-tester .promo-form .radio span {
  display: inline-block;
  position: relative;
  text-align: center;
  border: solid #b0001d 3px;
  border-radius: 50%;
  background: #FFFFFF;
  transition: border-color 0.2s ease;
}

.grip-tester .promo-form .radio span.checked:after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  content: ' ';
  background: #242628;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.grip-tester .promo-form .radio input {
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  background: none;
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: 999;
}

.grip-tester .promo-form .form-row.golfpride-model-row {
  display: none;
}

.grip-tester .promo-form .form-row.required .selector span,
.grip-tester .promo-form .form-row.required .radio span {
  background: rgba(176, 0, 29, 0.15);
}

.grip-tester .promo-form input[name=breathing] {
  display: none;
}

.grip-tester .promo-wrapper .form-label-stacked li,
.grip-tester .promo-wrapper .form-label-stacked .field,
.grip-tester .promo-wrapper .form-label-stacked .form-row {
  margin-bottom: 14px;
}

.grip-tester .promo-wrapper .form-label-stacked label {
  display: block;
  margin-bottom: 2px;
  color: #858383;
  font-size: 1.25rem;
  line-height: 1.875rem;
  text-transform: uppercase;
  float: none;
  top: auto;
  transform: translate(0, 0);
  width: 100%;
  text-align: left;
  position: relative;
  padding: 0;
}

.grip-tester .promo-wrapper .form-label-stacked .input-text,
.grip-tester .promo-wrapper .form-label-stacked input[type=text],
.grip-tester .promo-wrapper .form-label-stacked input[type=password],
.grip-tester .promo-wrapper .form-label-stacked input[type=email],
.grip-tester .promo-wrapper .form-label-stacked input[type=number],
.grip-tester .promo-wrapper .form-label-stacked input[type=tel],
.grip-tester .promo-wrapper .form-label-stacked textarea,
.grip-tester .promo-wrapper .form-label-stacked select {
  width: 100%;
  border-width: 2px;
}

@media screen and (min-width: 960px) {
  .grip-tester .promo-wrapper .form-label-stacked label {
    font-size: 16px;
  }
}

.grip-tester .promo-wrapper .form-section {
  margin-top: 30px;
  overflow: hidden;
}

.grip-tester .promo-wrapper .form-label-stacked .form-col {
  margin-bottom: 30px;
}

.grip-tester .promo-wrapper .form-row {
  width: 100%;
  overflow: hidden;
}

.grip-tester .promo-wrapper .form-col {
  float: left;
  width: 100%;
  padding: 0 20px;
}

.grip-tester .promo-wrapper .form-col:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 640px) {
  .grip-tester .promo-wrapper .form-col.form-col-2 {
    width: 50%;
    margin-bottom: 0;
  }
  .grip-tester .promo-wrapper .form-col-submit {
    float: none;
    clear: both;
    margin: 10px auto 0 auto;
    padding-top: 20px;
  }
}

.grip-tester .promo-part.part1 .promo-form {
  margin: 30px auto 0;
}

.grip-tester .promo-part.part1 .promo-form .disclaimer {
  font-family: "Overpass-Light", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.5rem;
}

.grip-tester .promo-part.part1 .promo-form .rules-trigger {
  display: block;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease;
}

.grip-tester .promo-part.part1 .promo-form .rules-trigger:hover {
  color: #8d8d8d;
}

.grip-tester .promo-part.part1 .promo-form .btn {
  position: relative;
}

.grip-tester .promo-part.part1 .promo-form .btn .loader {
  position: absolute;
  top: 50%;
  bottom: 50%;
  left: 50%;
  right: 50%;
  background-color: rgba(176, 0, 29, 0.9);
  overflow: hidden;
  transition: all .5s ease;
  z-index: 10;
}

.grip-tester .promo-part.part1 .promo-form .btn .loader:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  height: 20px;
  width: 20px;
  margin: -10px 0 0 -10px;
  animation: rotate infinite .75s linear;
  border: solid #FFFFFF 2px;
  border-top-color: transparent;
  border-radius: 50%;
  content: ' ';
}

.grip-tester .promo-part.part1 .promo-form .btn .loader.loading {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

@media screen and (max-width: 639px) {
  .grip-tester .promo-part.part1 .promo-form {
    max-width: 480px;
  }
  .grip-tester .promo-part.part1 .promo-form .form-col {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 640px) {
  .grip-tester .promo-part.part1 .promo-form .form-col:last-child {
    padding-top: 32px;
  }
  .grip-tester .promo-part.part1 .promo-form .btn {
    width: 100%;
  }
}

.grip-tester .promo-part.part2 .promo-form {
  max-width: 480px;
  margin: 0 auto;
}

@media screen and (min-width: 640px) {
  .grip-tester .promo-part.part2 .promo-form {
    max-width: 640px;
  }
}

@media screen and (min-width: 960px) {
  .grip-tester .promo-part.part2 .promo-form {
    max-width: 960px;
  }
}

.grip-tester .promo-part.part2 .promo-form .title {
  margin-bottom: 15px;
  color: #858383;
  font-size: 2.1875rem;
  line-height: 1.2;
  font-family: "Overpass-Bold", sans-serif;
  color: #343434;
  text-transform: uppercase;
}

@media screen and (min-width: 960px) {
  .grip-tester .promo-part.part2 .promo-form .title {
    font-size: 32px;
  }
}

.grip-tester .promo-part.part2 .promo-form .btn {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  color: #FFFFFF;
}

.grip-tester .promo-part.part2 .promo-form .btn:after {
  background-image: url("../svg/icon-chevron-double-right.svg");
}

.grip-tester .promo-part.part2 .promo-form .btn .loader {
  position: absolute;
  top: 50%;
  bottom: 50%;
  left: 50%;
  right: 50%;
  background-color: rgba(36, 38, 40, 0.9);
  overflow: hidden;
  transition: all .5s ease;
  z-index: 10;
}

.grip-tester .promo-part.part2 .promo-form .btn .loader:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  height: 20px;
  width: 20px;
  margin: -10px 0 0 -10px;
  animation: rotate infinite .75s linear;
  border: solid #FFFFFF 2px;
  border-top-color: transparent;
  border-radius: 50%;
  content: ' ';
}

.grip-tester .promo-part.part2 .promo-form .btn .loader.loading {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.grip-tester .promo-part.part2 .form-section-1 .form-row {
  float: left;
  width: 100%;
}

.grip-tester .promo-part.part2 .form-section-2 {
  margin-left: auto;
  margin-right: auto;
}

.grip-tester .promo-part.part2 .form-section-2 label {
  color: #343434;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1.625rem;
  float: left;
  width: auto;
  margin-right: 10px;
}

.grip-tester .promo-part.part2 .form-section-2 .img {
  display: block;
  margin-bottom: 20px;
}

.grip-tester .promo-part.part2 .form-section-2 .input {
  float: right;
}

.grip-tester .promo-part.part2 .form-section-2 input[type="radio"] {
  width: auto;
  float: none;
}

@media screen and (min-width: 960px) {
  .grip-tester .promo-part.part2 .form-section-2 .flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .grip-tester .promo-part.part2 .form-section-2 .flex-container > * {
    width: 46%;
    margin: 0 2% 20px;
  }
}

.grip-tester .promo-part.part2 .form-section-2 .grip-size .form-row {
  float: left;
  width: auto;
  margin-right: 20px;
}

.grip-tester .promo-part.part2 .form-section-2 .grip-size.has-image .form-row {
  margin: 0;
}

.grip-tester .promo-part.part2 .form-section-2 .grip-size.has-image .input {
  position: relative;
  padding-left: 35px;
}

.grip-tester .promo-part.part2 .form-section-2 .grip-size.has-image .radio {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.grip-tester .promo-part.part2 .form-section-2 .grip-size.has-image label {
  margin: 0;
}

.grip-tester .promo-part.part2 .form-section-2 .grip-size.has-image img {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
}

@media screen and (max-width: 639px) {
  .grip-tester .promo-part.part2 .form-section-2 .grip-size.has-image .form-row:first-child {
    margin-bottom: 25px;
  }
}

@media screen and (min-width: 640px) {
  .grip-tester .promo-part.part2 .form-section-2 .grip-size.has-image .form-rows {
    display: flex;
    justify-content: space-between;
  }
  .grip-tester .promo-part.part2 .form-section-2 .grip-size.has-image .form-row {
    float: none;
  }
  .grip-tester .promo-part.part2 .form-section-2 .grip-size.has-image .form-row:first-child {
    padding-right: 20px;
  }
  .grip-tester .promo-part.part2 .form-section-2 .grip-size.has-image .form-row:last-child {
    padding-left: 20px;
  }
}

.grip-tester .promo-part.part2 .form-section-3 .row-grips-model {
  display: none;
}

.grip-tester .promo-part.part2 .newsletter-signup {
  float: none;
  max-width: 560px;
  margin: 0 auto;
  padding-top: 15px;
  padding-bottom: 15px;
  clear: both;
}

.grip-tester .promo-part.part2 .newsletter-signup label {
  padding-top: 5px;
  color: #343434;
  font-size: 16px;
  line-height: 1.5;
  text-transform: none;
}

@media screen and (max-width: 959px) {
  .grip-tester .promo-part.part2 .form-section-2 .details {
    display: none;
  }
}

@media screen and (min-width: 640px) {
  .grip-tester .promo-part.part2 .form-section-1 .form-row-city {
    width: 55%;
  }
  .grip-tester .promo-part.part2 .form-section-1 .form-row-state {
    width: 15%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .grip-tester .promo-part.part2 .form-section-1 .form-row-zip {
    width: 30%;
  }
}

@media screen and (min-width: 960px) {
  .grip-tester .promo-part.part2 .form-section-1 .form-row {
    padding-left: 0;
  }
  .grip-tester .promo-part.part2 .form-section-1 .form-row-name-full,
  .grip-tester .promo-part.part2 .form-section-1 .form-row-name-business,
  .grip-tester .promo-part.part2 .form-section-1 .form-row-title {
    width: 31.57895%;
    margin-right: 2.63158%;
  }
  .grip-tester .promo-part.part2 .form-section-1 .form-row-title {
    margin-right: 0;
  }
  .grip-tester .promo-part.part2 .form-section-1 .form-row-addy {
    width: 47.36842%;
    margin-right: 2.73684%;
  }
  .grip-tester .promo-part.part2 .form-section-1 .form-row-city {
    width: 20%;
    margin-right: 2.73684%;
  }
  .grip-tester .promo-part.part2 .form-section-1 .form-row-state {
    width: 10.52632%;
    margin-right: 2.73684%;
  }
  .grip-tester .promo-part.part2 .form-section-1 .form-row-zip {
    width: 13.68421%;
  }
}

.grip-tester .promo-rules-wrapper {
  display: none;
}

.grip-tester .fancybox-wrap .promo-rules-wrapper {
  display: block;
}

.show-video-overlay {
  overflow: hidden;
}

.video-play-button {
  position: relative;
  cursor: pointer;
  display: block;
  width: 40px;
  height: 40px;
  text-indent: -9999px;
  background-color: #af001d;
  border-radius: 50%;
  transition: all 0.3s;
}

.video-play-button:before, .video-play-button:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border: 0 solid transparent;
}

.video-play-button:before {
  border-bottom-width: 7px;
  border-top-width: 7px;
  border-left: 12px solid white;
  transform: translate(-40%, -50%);
}

.video-play-button:after {
  border-bottom-width: 3px;
  border-top-width: 3px;
  border-left: 5px solid #af001d;
  transform: translate(-50%, -50%);
}

.video-play-button:hover {
  background-color: white;
}

.video-play-button:hover:before {
  border-left-color: #af001d;
}

.video-play-button:hover:after {
  border-left-color: white;
}

@media screen and (min-width: 640px) {
  .video-play-button__large {
    width: 65px;
    height: 65px;
  }
  .video-play-button__large:before {
    border-bottom-width: 14px;
    border-top-width: 14px;
    border-left: 22px solid white;
    transform: translate(-40%, -50%);
  }
  .video-play-button__large:after {
    border-bottom-width: 7px;
    border-top-width: 7px;
    border-left: 10px solid #af001d;
    transform: translate(-50%, -50%);
  }
}

.video-overlay {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.9);
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 1000;
  overflow-y: scroll;
  padding: 90px 10px;
  color: white;
  transition: all 0.3s;
  opacity: 0;
  z-index: -1;
  transform: translate(0, 50%);
}

@media screen and (min-width: 640px) {
  .video-overlay {
    padding: 90px 70px;
  }
}

.show-video-overlay .video-overlay {
  opacity: 1;
  z-index: 1000;
  transform: translate(0, 0);
}

.video-overlay--close {
  cursor: default;
  position: absolute;
  top: 40px;
  right: 20px;
  width: 23px;
  height: 23px;
  text-indent: -9999px;
}

.video-overlay--close:before, .video-overlay--close:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: white;
  transform-origin: center;
}

.video-overlay--close:before {
  transform: rotate(45deg);
}

.video-overlay--close:after {
  transform: rotate(-45deg);
}

.video-overlay--video-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 21px;
  overflow: hidden;
}

.video-overlay--iframe-container {
  position: relative;
  padding-top: 56.25%;
}

.video-overlay--iframe-container iframe {
  border: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.video-overlay--control {
  position: absolute;
  text-indent: -9999px;
  width: 42px;
  height: 42px;
  top: calc(50% - 21px);
}

.video-overlay--control__prev {
  left: 0;
  background: url(../img/svg-inline/arrow-white.svg) center center no-repeat;
  background-size: auto 100%;
  transform: rotate(180deg);
}

@media screen and (min-width: 640px) {
  .video-overlay--control__prev {
    left: -48px;
  }
}

.video-overlay--control__next {
  right: 0;
  background: url(../img/svg-inline/arrow-white.svg) center center no-repeat;
  background-size: auto 100%;
}

@media screen and (min-width: 640px) {
  .video-overlay--control__next {
    right: -48px;
  }
}

.video-overlay--content {
  max-width: 1200px;
  margin: 0 auto;
}

.video-overlay--title {
  font-family: "Overpass-Bold", sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 14px;
  text-transform: uppercase;
}

@media screen and (max-width: 959px) {
  .video-overlay--title {
    max-width: 80%;
  }
}

@media screen and (min-width: 640px) {
  .video-overlay--title {
    font-size: 3.4375rem;
  }
}

.video-overlay--copy {
  max-width: 500px;
  margin-bottom: 55px;
}

.video-overlay--transcript-container {
  cursor: pointer;
}

.video-overlay--transcript-toggle {
  display: flex;
  align-items: center;
  position: relative;
  font-family: "Overpass-Bold", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.video-overlay--transcript-toggle i {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  margin-left: 18px;
  background: #af001d;
  border-radius: 50%;
  transform-origin: center;
  transition: all 0.3s;
}

.show-video-transcript .video-overlay--transcript-toggle i {
  transform: rotate(180deg);
}

.video-overlay--transcript-toggle i:before, .video-overlay--transcript-toggle i:after {
  content: '';
  position: absolute;
  top: calc(50% + 3px);
  left: calc(50% - 7px);
  width: 14px;
  height: 2.5px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

.video-overlay--transcript-toggle i:before {
  transform: rotate(-50deg) translateX(5.25px);
}

.video-overlay--transcript-toggle i:after {
  transform: rotate(50deg) translateX(-5.25px);
}

.video-overlay--transcript-toggle:hover i {
  background: white;
}

.video-overlay--transcript-toggle:hover i:before, .video-overlay--transcript-toggle:hover i:after {
  background: #af001d;
}

.video-overlay--transcript-content {
  max-height: 0;
  overflow: hidden;
}

.show-video-transcript .video-overlay--transcript-content {
  max-height: 3000px;
}

.video-featured-container {
  position: relative;
  background: transparent right center no-repeat;
  background-size: cover;
}

.video-featured-container:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(255, 255, 255, 0) 120%);
}

@media screen and (min-width: 640px) {
  .video-featured-container:before {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(255, 255, 255, 0) 130%);
  }
}

.video-featured-container--wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 20px;
  max-width: 1280px;
  height: 440px;
}

@media screen and (min-width: 640px) {
  .video-featured-container--wrapper {
    padding: 0 80px;
    height: 550px;
  }
}

@media screen and (min-width: 1280px) {
  .video-featured-container--wrapper {
    height: 70vw;
    max-height: 800px;
  }
}

.video-featured-container--title {
  color: white;
  text-transform: uppercase;
  font-family: "Overpass-Bold", sans-serif;
  font-size: 2.1875rem;
  line-height: 1;
  margin-bottom: 32px;
}

@media screen and (min-width: 640px) {
  .video-featured-container--title {
    margin-bottom: 26px;
    font-size: 3.4375rem;
  }
}

.video-featured-container--copy {
  max-width: 450px;
  color: white;
  line-height: 1.75rem;
  margin-bottom: 19px;
}

@media screen and (min-width: 640px) {
  .video-featured-container--copy {
    margin-bottom: 36px;
  }
}

.video-featured-container .video-play-button {
  margin-bottom: 25px;
}

@media screen and (min-width: 640px) {
  .video-featured-container .video-play-button {
    margin-bottom: 70px;
  }
}

@media screen and (min-width: 960px) {
  .video-featured-container .video-play-button {
    margin-bottom: 100px;
  }
}

.video-section {
  position: relative;
  z-index: 1;
  padding: 45px 0 60px;
  background-color: white;
  overflow: hidden;
}

@media screen and (min-width: 640px) {
  .video-section {
    padding: 80px 0 60px;
  }
}

.video-section .page-wrapper {
  position: relative;
}

@media screen and (min-width: 640px) {
  .video-section .page-wrapper {
    padding: 0 0 0 80px;
  }
}

.video-section--title {
  font-size: 2.5rem;
  line-height: 3rem;
  color: #2c2a25;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.video-section--title__red-section {
  color: white;
}

.video-section--carousel {
  display: flex;
  margin: 0 auto 30px;
}

[data-section-name="social_videos"] .video-section--carousel {
  align-items: center;
}

.video-section__gray-bg:before {
  content: '';
  position: absolute;
  background-color: #d7d7d7;
  top: 0;
  bottom: 0;
  left: -50%;
  width: 140%;
  max-width: 830px;
  transform: skewX(-28deg);
}

@media screen and (min-width: 640px) {
  .video-section__gray-bg:before {
    left: -180px;
  }
}

.video-section__red-bg {
  background-color: #af001d;
}

.video-section .bx-controls {
  display: block;
  padding-top: 35px;
  max-width: 450px;
  margin: 0 auto;
}

@media screen and (min-width: 640px) {
  .video-section .bx-controls {
    padding-top: 60px;
    max-width: none;
  }
}

.video-section .bx-controls .bx-pager {
  position: static;
  display: flex;
  padding: 0;
}

.video-section .bx-controls .bx-pager-item {
  display: block;
}

.video-section .bx-controls .bx-pager-item .bx-pager-link {
  background-color: white;
  border-color: #000000;
}

.video-section .bx-controls .bx-pager-item .bx-pager-link.active {
  background-color: #000000;
}

.video-section .bx-controls .bx-controls-direction {
  display: flex;
}

.video-section .bx-controls .bx-controls-direction a {
  position: static;
  width: 42px;
  height: 42px;
}

.video-section .bx-controls .bx-controls-direction a.disabled {
  display: block;
  opacity: 0.2;
}

.video-section .bx-controls .bx-controls-direction a.bx-prev {
  background: url(../img/svg-inline/arrow-black.svg) right center no-repeat;
  background-size: auto 100%;
  transform: rotate(180deg);
}

.video-section .bx-controls .bx-controls-direction a.bx-next {
  background: url(../img/svg-inline/arrow-black.svg) left center no-repeat;
  background-size: auto 100%;
}

.video-section__red-bg .bx-wrapper .bx-controls-direction a.bx-prev,
.video-section__red-bg .bx-wrapper .bx-controls-direction a.bx-next, .video-section__gray-bg .bx-wrapper .bx-controls-direction a.bx-prev,
.video-section__gray-bg .bx-wrapper .bx-controls-direction a.bx-next {
  background-image: url(../img/svg-inline/arrow-white.svg);
}

.video-section__red-bg .bx-wrapper .bx-controls .bx-pager-item .bx-pager-link, .video-section__gray-bg .bx-wrapper .bx-controls .bx-pager-item .bx-pager-link {
  border-color: white;
}

.video-section__red-bg .bx-wrapper .bx-controls .bx-pager-item .bx-pager-link.active, .video-section__gray-bg .bx-wrapper .bx-controls .bx-pager-item .bx-pager-link.active {
  border-color: black;
}

.video-card {
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 640px) {
  .video-card {
    margin-right: 30px;
    cursor: pointer;
  }
}

.video-card--asset {
  position: relative;
}

@media screen and (max-width: 639px) {
  .video-card--asset {
    max-width: 450px;
    margin: 0 auto 48px;
  }
}

.video-card--asset img {
  display: block;
}

.video-card--play-button {
  position: absolute;
  z-index: 10;
  left: 20px;
  top: -123px;
}

@media screen and (min-width: 480px) {
  .video-card--play-button {
    left: calc(50% - 205px);
  }
}

@media screen and (min-width: 640px) {
  .video-card--play-button {
    left: 38px;
    top: auto;
    bottom: 34px;
  }
}

.video-card--title {
  font-family: "Overpass-Bold", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5rem;
  text-transform: uppercase;
}

@media screen and (max-width: 639px) {
  .video-card--title {
    max-width: 450px;
    margin: 0 auto 11px;
  }
}

@media screen and (min-width: 640px) {
  .video-card--title {
    color: white;
    transition: all 0.3s;
    opacity: 0;
    transform: translate(0, -5%);
  }
}

.video-card--title__red-section {
  color: white;
}

.video-card--copy {
  max-width: 450px;
  max-height: 101.92px;
  overflow: hidden;
  margin: 0 auto;
}

@media screen and (min-width: 640px) {
  .video-card--copy {
    color: white;
    max-width: 340px;
    margin: 0;
    transition: all 0.3s;
    opacity: 0;
    transform: translate(0, -5%);
  }
}

.video-card--copy__red-section {
  color: white;
}

.video-card--content {
  position: relative;
}

@media screen and (min-width: 640px) {
  .video-card--content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 40px 0;
  }
  .video-card--content:before {
    content: '';
    position: absolute;
    background-color: rgba(176, 0, 29, 0.9);
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all 0.3s;
    opacity: 0;
    transform: translate(0, -5%);
  }
  .video-card--content:hover .video-card--title,
  .video-card--content:hover .video-card--copy {
    opacity: 1;
    transform: translate(0, 0);
  }
  .video-card--content:hover .video-play-button {
    background-color: white;
  }
  .video-card--content:hover .video-play-button:before {
    border-left-color: #af001d;
  }
  .video-card--content:hover .video-play-button:after {
    border-left-color: white;
  }
  .video-card--content:hover:before {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.page-id-7147 .page-feautred-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.page-id-7147 .page-feautred-container:after {
  display: none;
}

.page-id-7147 .page-feautred-container .promo-logo {
  display: block;
  height: 220px;
  width: 220px;
  margin: 0;
  background: url("../img/18-days/logo-18-days-of-golf-pride.png") center center no-repeat;
  background-size: cover;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.65);
  font-size: 0;
  overflow: hidden;
  text-indent: -500px;
}

@media screen and (max-width: 779px) {
  .page-id-7147 .wp-page-content .page-wrapper {
    max-width: 400px;
  }
}

.page-id-7147 .promo-area {
  position: relative;
  max-width: 1020px;
  min-height: 300px;
  background: white;
}

.page-id-7147 .promo-area.is-loading .promo-body {
  opacity: 0;
}

.page-id-7147 .promo-area.is-loading .promo-preloader {
  opacity: 1;
  z-index: 0;
}

.page-id-7147 .promo-body {
  opacity: 1;
  transition: opacity 0.5s ease;
}

@media screen and (min-width: 780px) and (max-width: 1099px) {
  .page-id-7147 .promo-body {
    display: flex;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

.page-id-7147 .promo-copy {
  position: relative;
  margin-bottom: 30px;
}

@media screen and (min-width: 780px) and (max-width: 1099px) {
  .page-id-7147 .promo-copy {
    flex: 1;
    padding-right: 15px;
  }
}

@media screen and (min-width: 1100px) {
  .page-id-7147 .promo-copy {
    display: flex;
    margin-bottom: 0;
  }
  .page-id-7147 .promo-copy .promo-copy-col:first-child {
    width: 192px;
  }
  .page-id-7147 .promo-copy .promo-copy-col:last-child {
    flex: 1;
  }
}

.page-id-7147 .promo-img img {
  width: 100%;
}

@media screen and (min-width: 1100px) {
  .page-id-7147 .promo-img {
    position: absolute;
    top: 100%;
    right: 0;
    width: calc(100% - 570px);
    padding-left: 30px;
  }
}

.page-id-7147 .promo-form-wrapper .form-row {
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  padding-right: 1px;
}

.page-id-7147 .promo-form-wrapper label:not(.label) {
  display: block;
  margin-bottom: 2px;
  padding-left: 5px;
  font-size: 0.8125rem;
  line-height: 1.25;
  text-align: left;
  text-transform: uppercase;
}

@media screen and (min-width: 1100px) {
  .page-id-7147 .promo-form-wrapper label:not(.label) {
    float: left;
    display: inline;
    width: 33%;
    padding-right: 10px;
    text-align: right;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
  }
  .page-id-7147 .promo-form-wrapper label:not(.label) ~ * {
    float: right;
    display: inline;
    width: 66%;
  }
}

.page-id-7147 .promo-form-wrapper .input-txt,
.page-id-7147 .promo-form-wrapper .faux-input-txt,
.page-id-7147 .promo-form-wrapper input[type=text],
.page-id-7147 .promo-form-wrapper input[type=password],
.page-id-7147 .promo-form-wrapper input[type=email],
.page-id-7147 .promo-form-wrapper input[type=number],
.page-id-7147 .promo-form-wrapper input[type=tel],
.page-id-7147 .promo-form-wrapper textarea {
  width: 100%;
}

@media screen and (min-width: 1100px) {
  .page-id-7147 .promo-form-wrapper .input-txt,
  .page-id-7147 .promo-form-wrapper .faux-input-txt,
  .page-id-7147 .promo-form-wrapper input[type=text],
  .page-id-7147 .promo-form-wrapper input[type=password],
  .page-id-7147 .promo-form-wrapper input[type=email],
  .page-id-7147 .promo-form-wrapper input[type=number],
  .page-id-7147 .promo-form-wrapper input[type=tel],
  .page-id-7147 .promo-form-wrapper textarea {
    float: right;
    display: inline;
    width: 66%;
  }
}

.page-id-7147 .promo-form-wrapper input[type=submit] {
  float: right;
}

.page-id-7147 .promo-form-wrapper .checkbox-row .checker {
  margin: 5px 0 0 0;
}

.page-id-7147 .promo-form-wrapper .checkbox-row .user-consent {
  display: block;
  padding: 3px 0 0 25px;
  font-size: 15px;
  line-height: 1.3;
}

.page-id-7147 .promo-form-wrapper .submit-row .promo-rules {
  float: left;
}

@media screen and (min-width: 780px) and (max-width: 1099px) {
  .page-id-7147 .promo-form-wrapper {
    flex: 1;
    padding-left: 15px;
  }
}

@media screen and (min-width: 1100px) {
  .page-id-7147 .promo-form-wrapper {
    max-width: 570px;
    margin-right: auto;
  }
}

.page-id-7147 .promo-preloader {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 80px;
  width: 80px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease, z-index 0s linear 0.5s;
  z-index: -1;
}

.page-id-7147 .promo-preloader svg {
  display: block;
  height: auto;
  width: 100%;
}

.page-id-7147 .promo-intro,
.page-id-7147 .promo-img,
.page-id-7147 .promo-rules,
.page-id-7147 .promo-errors,
.page-id-7147 .promo-form-wrapper {
  display: none;
}

.page-id-7495 .flex-wrapper__ty,
.page-id-9155 .flex-wrapper__ty {
  max-width: 540px;
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  .page-id-7495 .flex-wrapper,
  .page-id-9155 .flex-wrapper {
    max-width: 80rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }
}

@media screen and (min-width: 960px) {
  .page-id-7495 .first-major--content,
  .page-id-9155 .first-major--content {
    max-width: 510px;
    padding-bottom: 60px;
    width: calc(50% - 20px);
  }
}

.page-id-7495 .first-major--content__ty,
.page-id-9155 .first-major--content__ty {
  padding: 20px 0;
}

.page-id-7495 .first-major--image-slider-container,
.page-id-9155 .first-major--image-slider-container {
  margin: 40px auto 60px;
  max-width: 540px;
}

@media screen and (min-width: 960px) {
  .page-id-7495 .first-major--image-slider-container,
  .page-id-9155 .first-major--image-slider-container {
    margin: 0 0 60px;
    width: calc(50% - 20px);
  }
}

.page-id-7495 .first-major--image-slider-container__full-width,
.page-id-9155 .first-major--image-slider-container__full-width {
  width: 100%;
  margin-bottom: 20px;
}

@media screen and (min-width: 960px) {
  .page-id-7495 .first-major--form-container,
  .page-id-9155 .first-major--form-container {
    max-width: 1180px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .page-id-7495 .first-major--form-container .form-row,
  .page-id-9155 .first-major--form-container .form-row {
    padding: 0 10px;
  }
  .page-id-7495 .first-major--form-container .form-row:nth-of-type(1), .page-id-7495 .first-major--form-container .form-row:nth-of-type(2), .page-id-7495 .first-major--form-container .form-row:nth-of-type(3),
  .page-id-9155 .first-major--form-container .form-row:nth-of-type(1),
  .page-id-9155 .first-major--form-container .form-row:nth-of-type(2),
  .page-id-9155 .first-major--form-container .form-row:nth-of-type(3) {
    width: 33.3%;
  }
  .page-id-7495 .first-major--form-container .form-row:nth-of-type(4), .page-id-7495 .first-major--form-container .form-row:nth-of-type(5), .page-id-7495 .first-major--form-container .form-row:nth-of-type(6),
  .page-id-9155 .first-major--form-container .form-row:nth-of-type(4),
  .page-id-9155 .first-major--form-container .form-row:nth-of-type(5),
  .page-id-9155 .first-major--form-container .form-row:nth-of-type(6) {
    width: 16.667%;
  }
  .page-id-7495 .first-major--form-container .form-row:nth-of-type(7), .page-id-7495 .first-major--form-container .form-row:nth-of-type(8),
  .page-id-9155 .first-major--form-container .form-row:nth-of-type(7),
  .page-id-9155 .first-major--form-container .form-row:nth-of-type(8) {
    width: 25%;
  }
  .page-id-7495 .first-major--form-container .form-row:nth-of-type(9), .page-id-7495 .first-major--form-container .form-row:nth-of-type(10),
  .page-id-9155 .first-major--form-container .form-row:nth-of-type(9),
  .page-id-9155 .first-major--form-container .form-row:nth-of-type(10) {
    width: 50%;
  }
  .page-id-7495 .first-major--form-container .form-row:nth-of-type(11), .page-id-7495 .first-major--form-container .form-row:nth-of-type(12),
  .page-id-9155 .first-major--form-container .form-row:nth-of-type(11),
  .page-id-9155 .first-major--form-container .form-row:nth-of-type(12) {
    width: 50%;
  }
}

@media screen and (min-width: 960px) {
  .page-id-7495 .first-major--blank,
  .page-id-9155 .first-major--blank {
    width: 50%;
  }
}

.page-id-7495 .first-major--video,
.page-id-9155 .first-major--video {
  width: 100%;
  margin-bottom: 40px;
}

@media screen and (min-width: 960px) {
  .page-id-7495 .first-major--video,
  .page-id-9155 .first-major--video {
    width: 60%;
    max-width: 700px;
    padding-right: 30px;
  }
}

@media screen and (min-width: 960px) {
  .page-id-7495 .first-major--mygrip-fit,
  .page-id-9155 .first-major--mygrip-fit {
    flex: 1;
    max-width: 430px;
  }
}

.page-feautred-container--media-center:after {
  z-index: 1;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25) 80%, rgba(255, 255, 255, 0));
}

.page-feautred-container--media-center .content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 100px 0;
}

.page-feautred-container--media-center .title {
  color: white;
  text-transform: uppercase;
  font-size: 2.5rem;
  line-height: 1;
  text-align: left;
  margin-bottom: 20px;
}

.page-feautred-container--media-center p {
  color: white;
  font-size: 1.1875rem;
  line-height: 2.0625rem;
  margin-bottom: 30px;
}

.page-feautred-container--media-center .btn {
  display: block;
  max-width: 225px;
  padding: 14px 24px;
}

@media screen and (min-width: 960px) {
  .page-template-page-media-center-child .page-feautred-container .page-title {
    text-transform: uppercase;
    left: 50%;
    transform: translate(calc(-50vw + 20px), -50%);
    max-width: 300px;
  }
}

@media screen and (min-width: 1280px) {
  .page-template-page-media-center-child .page-feautred-container .page-title {
    transform: translate(-620px, -50%);
    max-width: 450px;
  }
}

@media screen and (min-width: 960px) {
  .page-wrapper-media-center {
    display: flex;
    justify-content: space-between;
  }
  .page-wrapper-media-center .media-center-sidebar {
    width: 220px;
  }
  .page-wrapper-media-center .media-center-content {
    flex: 1;
  }
}

@media screen and (min-width: 1080px) {
  .page-wrapper-media-center .media-center-sidebar {
    width: 320px;
  }
}

@media screen and (max-width: 639px) {
  .media-center-sidebar {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0;
  }
}

.media-center-sidebar a {
  position: relative;
  display: block;
  color: #262627;
  font-size: 1rem;
  line-height: 1.5625rem;
  text-transform: uppercase;
  padding: 10px;
}

@media screen and (max-width: 639px) {
  .media-center-sidebar a {
    font-size: 0.8125rem;
    padding: 10px 0;
    width: 50%;
  }
}

.media-center-sidebar a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 10px;
  height: 2px;
  background-color: #b0001d;
  width: 0;
  opacity: 0;
  transition: all 0.3s;
}

@media screen and (min-width: 640px) {
  .media-center-sidebar a:after {
    left: 10px;
  }
}

.media-center-sidebar a.active, .media-center-sidebar a:hover {
  text-decoration: none;
  color: #b0001d;
}

.media-center-sidebar a.active:after, .media-center-sidebar a:hover:after {
  width: 40px;
  opacity: 1;
}

.media-center-featured-block-container {
  max-width: 460px;
  margin: 0 auto;
}

@media screen and (min-width: 760px) {
  .media-center-featured-block-container {
    max-width: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.mc-featured-block {
  position: relative;
  margin-bottom: 34px;
}

@media screen and (min-width: 640px) {
  .mc-featured-block {
    width: 48.93617%;
  }
}

.mc-featured-block img {
  display: block;
  margin: 0;
}

.mc-featured-block .content {
  position: absolute;
  top: 36px;
  left: 32px;
}

.mc-featured-block .title {
  max-width: 240px;
  font-size: 1.375rem;
  line-height: 1.6875rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 9px;
}

.mc-featured-block .number {
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-transform: uppercase;
}

.mc-featured-block .link {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  padding: 0 35px;
  background-color: #b0001d;
  color: white;
  text-align: right;
  font-size: 1rem;
  line-height: 2.0625rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.mc-featured-block .link:hover {
  text-decoration: none;
  background-color: #7b0200;
}

.mc-product-row {
  border-bottom: 1px solid #ebebeb;
}

.mc-product-row-trigger {
  cursor: pointer;
  font-size: 1.375rem;
  line-height: 1;
  display: flex;
  padding: 28px 0;
}

.mc-product-row-trigger i {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  margin-right: 22px;
  background-color: #b0001d;
}

.mc-product-row-trigger i:before, .mc-product-row-trigger i:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background-color: white;
  transition: all 0.3s;
  transform-origin: center;
}

.mc-product-row-trigger i:before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.mc-product-row-trigger i:after {
  transform: translate(-50%, -50%) rotate(270deg);
}

.mc-product-row.active {
  padding-bottom: 0;
}

.mc-product-row.active i:before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.mc-product-row.active i:after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.mc-product-row-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transition: all .5s;
  padding: 0;
  max-height: 0;
  overflow: hidden;
}

@media screen and (min-width: 960px) {
  .mc-product-row-content {
    justify-content: flex-start;
  }
}

.mc-product-row.active .mc-product-row-content {
  padding: 35px 0 50px;
  max-height: 5000px;
  overflow: visible;
}

.mc-product-row-box {
  position: relative;
  width: 100%;
  max-width: 300px;
  border: 1px solid #d7d7d7;
  margin: 0 10px 20px;
}

@media screen and (min-width: 960px) {
  .mc-product-row-box {
    width: 31.91489%;
    margin: 0 0 20px;
  }
  .mc-product-row-box:nth-of-type(3n+3), .mc-product-row-box:nth-of-type(3n+2) {
    margin-left: 20px;
  }
}

.mc-product-row-box .box-image {
  background: transparent center center no-repeat;
  background-size: contain;
  padding-top: 58.22222%;
  height: 0;
}

.mc-product-row-box .title {
  font-size: 0.875rem;
  line-height: 1.5rem;
  padding: 10px 13px;
}

.mc-product-row-box-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(52, 52, 52, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s;
}

.mc-product-row-box-overlay:hover {
  opacity: 1;
}

.mc-product-row-box-overlay a {
  position: relative;
  display: block;
  width: 80%;
  max-width: 260px;
  padding: 0 15px;
  margin: 13px 0;
  border: 1px solid white;
  color: white;
  font-size: 1rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.mc-product-row-box-overlay a:after {
  content: '\00bb';
  position: absolute;
  top: 50%;
  right: 35px;
  font-size: inherit;
  color: inherit;
  transform: translateY(-50%);
}

.mc-product-row-box-overlay a:hover {
  text-decoration: none;
  color: #343434;
  background-color: white;
}

.promo-row-container .page-wrapper {
  max-width: 400px;
  margin: 0 auto;
}

@media screen and (min-width: 960px) {
  .promo-row-container .page-wrapper {
    max-width: 1460px;
    display: flex;
    justify-content: center;
  }
}

.promo-row-container .promo-row-block {
  position: relative;
  background: transparent center center no-repeat;
  background-size: cover;
  padding: 45px 30px 0;
  height: 320px;
  color: white;
}

@media screen and (min-width: 960px) {
  .promo-row-container .promo-row-block {
    padding: 45px 80px 0 40px;
    width: 33.33333%;
  }
}

.promo-row-container .promo-row-block .title {
  position: relative;
  font-size: 1.375rem;
  line-height: 2.125rem;
}

.promo-row-container .promo-row-block .title strong {
  font-family: "Overpass-Bold", sans-serif;
  display: block;
}

.promo-row-container .promo-row-block .link {
  position: absolute;
  right: 40px;
  bottom: 0;
  color: white;
  font-size: 1rem;
  line-height: 3.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.promo-row-container .promo-row-block:before {
  content: '';
  z-index: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.promo-row-container .promo-row-block--blue:before {
  background-color: rgba(32, 43, 93, 0.75);
}

.promo-row-container .promo-row-block--red:before {
  background-color: rgba(113, 20, 20, 0.75);
}

.promo-row-container .promo-row-block--grey {
  padding-right: 04px;
}

.promo-row-container .promo-row-block--grey:before {
  background-color: rgba(54, 51, 51, 0.7);
}

.hv2-page-wrap p {
  font-size: 1rem;
}

.hv2-page-wrap figure {
  margin: 0;
}

.hv2-page-wrap .btn:not(.btn-sm-underline) {
  border-radius: 0;
  font-family: "Helvetica Neue LT W05 75 Bold", sans-serif;
  padding-top: 20px;
}

@media screen and (min-width: 1280px) {
  .hv2-page-wrap .btn:not(.btn-sm-underline) {
    padding-left: 36px;
    padding-right: 36px;
  }
}

.hv2-page-wrap .btn.red {
  background-color: #BE0802;
  border: none;
}

.hv2-page-wrap .btn.red:hover, .hv2-page-wrap .btn.red:focus {
  background: #F3F0EC;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  color: #060808;
}

html:not(.no-js) .hv2-page-wrap img[data-src] {
  opacity: 0;
  transition: opacity 500ms ease;
}

html:not(.no-js) .hv2-page-wrap img[data-src].lazyloaded {
  opacity: 1;
}

@media screen and (min-width: 640px) {
  .hv2-flex-row {
    display: flex;
    align-items: center;
  }
}

.hv2-headline {
  font: 40px/1.1 "Helvetica Neue LT W05 45 Light", sans-serif;
  text-transform: none;
}

@media screen and (min-width: 640px) {
  .hv2-headline {
    font-size: 50px;
  }
}

@media screen and (min-width: 1280px) {
  .hv2-headline {
    font-size: 70px;
  }
}

.hv2-headline--smaller {
  font-size: 30px;
}

@media screen and (min-width: 640px) {
  .hv2-headline--smaller {
    font-size: 40px;
  }
}

@media screen and (min-width: 1280px) {
  .hv2-headline--smaller {
    font-size: 50px;
  }
}

.hv2-footer-disclaimer {
  background: #131315;
  color: #F3F0EC;
  padding-top: 18px;
}

.hv2-footer-disclaimer p {
  font-size: 12px;
  margin: 0;
  padding: 0;
}

.hv2-hero {
  background-color: #F3F0EC;
  font-family: "Helvetica Neue LT W05 45 Light", sans-serif;
  position: relative;
  margin-bottom: 60px;
}

@media screen and (min-width: 960px) {
  .hv2-hero {
    margin-bottom: 100px;
  }
}

.hv2-hero .hv2-flex-row {
  align-items: flex-end;
}

@media screen and (min-width: 960px) {
  .hv2-hero .hv2-flex-row {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 100px);
    max-height: 750px;
  }
}

.hv2-hero strong {
  font-family: "Helvetica Neue LT W05 75 Bold", sans-serif;
}

.hv2-hero .hv2-hero-disclaimer {
  padding: 20px 0;
  line-height: 1.1;
}

@media screen and (min-width: 960px) {
  .hv2-hero .hv2-hero-disclaimer {
    margin-top: 120px;
    padding: 0;
  }
}

.hv2-hero-media {
  position: relative;
  width: 70%;
  margin-left: auto !important;
  margin-bottom: 15px !important;
}

@media screen and (min-width: 960px) {
  .hv2-hero-media {
    width: 37%;
    margin-bottom: 0;
  }
}

.hv2-hero-media .popout {
  position: absolute;
  bottom: 30px;
  left: -37%;
  max-width: 165px;
}

@media screen and (min-width: 640px) {
  .hv2-hero-media .popout {
    max-width: none;
  }
}

@media screen and (min-width: 960px) {
  .hv2-hero-media .popout {
    bottom: 100px;
    left: -20%;
  }
}

@media screen and (min-width: 960px) {
  .hv2-hero-content {
    width: 50%;
  }
}

.hv2-hero-content p {
  margin-bottom: 35px;
}

.hv2-hero-media-img-mask {
  overflow: hidden;
  height: 320px;
}

@media screen and (min-width: 960px) {
  .hv2-hero-media-img-mask {
    height: 780px;
  }
}

.hv2-hero-media-img-mask img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.hv2-hero-title {
  font: 40px "Helvetica Neue LT W05 45 Light", sans-serif;
  margin-bottom: 18px;
  text-transform: none;
}

@media screen and (min-width: 640px) {
  .hv2-hero-title {
    font-size: 50px;
  }
}

@media screen and (min-width: 1280px) {
  .hv2-hero-title {
    font-size: 80px;
  }
}

.hv2-hero-title .emphasis {
  font: 47px/1 "Swiss721 BT W01 Black Outline", sans-serif;
  display: block;
  margin-top: 10px;
  text-transform: uppercase;
}

@media screen and (min-width: 640px) {
  .hv2-hero-title .emphasis {
    font-size: 57px;
  }
}

@media screen and (min-width: 1280px) {
  .hv2-hero-title .emphasis {
    font-size: 100px;
  }
}

.hv2-product-carousel {
  margin-bottom: 70px;
  font-family: "Helvetica Neue LT W05 45 Light", sans-serif;
  overflow: hidden;
}

@media screen and (min-width: 960px) {
  .hv2-product-carousel {
    margin-bottom: 100px;
  }
}

@media screen and (min-width: 960px) {
  .hv2-product-carousel .page-wrapper p {
    padding-right: 200px;
  }
}

@media screen and (min-width: 1280px) {
  .hv2-product-carousel .page-wrapper p {
    padding-right: 300px;
  }
}

.grips-carousel {
  width: calc(100% + 180px);
  max-width: 1800px;
}

@media screen and (min-width: 640px) {
  .grips-carousel {
    width: calc(100% + 90px);
  }
}

@media screen and (min-width: 1280px) {
  .grips-carousel {
    margin-left: calc((100vw - 80rem + (0.625rem * 2) - 30px)/2);
  }
}

@media screen and (min-width: 1280px) {
  .grips-carousel .slick-list {
    overflow: visible;
  }
}

.grips-carousel .slick-track {
  display: flex;
}

.grips-carousel.slick-initialized .slick-slide {
  display: flex;
  height: auto;
}

.grips-carousel-nav {
  padding: 0 .625rem;
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: right;
}

@media screen and (min-width: 960px) {
  .grips-carousel-nav {
    padding: 0 30px;
    margin-top: -20px;
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 1280px) {
  .grips-carousel-nav {
    margin-top: -50px;
  }
}

.grips-carousel-nav .slick-arrow {
  border: none;
  background: #F3F0EC;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #060808;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}

@media screen and (min-width: 960px) {
  .grips-carousel-nav .slick-arrow {
    width: 50px;
    height: 50px;
  }
}

.grips-carousel-nav .slick-arrow.slick-disabled {
  color: rgba(6, 8, 8, 0.2);
}

.hv2-product-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0 10px;
  color: #060808;
  text-decoration: none !important;
}

@media screen and (min-width: 1280px) {
  .hv2-product-card {
    padding: 0 15px;
  }
}

.hv2-product-card:hover .btn-sm-underline {
  color: white;
}

.hv2-product-card:hover .btn-sm-underline::after {
  height: 100%;
}

.hv2-product-card:hover img.default {
  opacity: 0;
}

.hv2-product-card figure.hv2-product-card-image {
  margin-bottom: 15px;
}

.hv2-product-card .logo {
  margin-bottom: 6px;
  max-width: 100px;
}

@media screen and (min-width: 960px) {
  .hv2-product-card .logo {
    max-width: 120px;
  }
}

.hv2-product-card .logo svg {
  width: 100%;
}

.hv2-product-card-body {
  flex: 1;
}

@media screen and (min-width: 960px) {
  .hv2-product-card-body {
    padding-right: 30px;
  }
}

.hv2-product-card-image {
  position: relative;
}

.hv2-product-card-image img.default {
  position: relative;
  z-index: 5;
  transition: opacity 500ms ease;
}

.hv2-product-card-image img.hover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hv2-explore {
  font-family: "Helvetica Neue LT W05 45 Light", sans-serif;
  padding: 20px 0 80px;
}

@media screen and (min-width: 640px) {
  .hv2-explore {
    padding: 50px 0;
    margin-bottom: 50px;
  }
}

.hv2-explore .hv2-flex-row {
  justify-content: center;
}

@media screen and (min-width: 640px) {
  .hv2-explore-media {
    width: 44%;
  }
}

.hv2-explore-media img {
  max-width: 100%;
  height: auto;
}

.hv2-explore-content {
  padding: 30px 15px 0;
}

@media screen and (min-width: 640px) {
  .hv2-explore-content {
    width: 50%;
    padding: 0 0 0 80px;
    max-width: 380px;
  }
}

.hv2-find-retailer {
  background-color: #060808;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: "Helvetica Neue LT W05 45 Light", sans-serif;
  padding: calc(30vw + 40px) 0 80px;
  margin-bottom: 70px;
  margin-top: -30vw;
}

@media screen and (min-width: 640px) {
  .hv2-find-retailer {
    padding: 110px 0;
    margin-bottom: 100px;
    padding-top: 400px;
    margin-top: -300px;
  }
}

.hv2-find-retailer .hv2-headline {
  color: white;
}

@media screen and (min-width: 640px) {
  .hv2-find-retailer .hv2-headline {
    margin: 0 25px 0 30px;
  }
}

.hv2-find-retailer form.find-retailer {
  max-width: none;
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (min-width: 640px) {
  .hv2-find-retailer form.find-retailer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }
}

.hv2-find-retailer form.find-retailer .form-row {
  display: flex;
  margin: 0;
}

.hv2-find-retailer form.find-retailer svg {
  width: 40px;
  height: 40px;
}

@media screen and (min-width: 640px) {
  .hv2-find-retailer form.find-retailer svg {
    width: 70px;
    height: 70px;
  }
}

.hv2-find-retailer form.find-retailer .input-txt {
  min-width: 230px;
  height: 55px;
}

.hv2-find-retailer form.find-retailer label {
  font: 16px/55px "Helvetica Neue LT W05 45 Light", sans-serif;
  text-transform: none;
  z-index: 1;
}

.hv2-find-retailer form.find-retailer .btn-submit {
  background: #BE0802;
  border: none;
  padding: 0 15px;
  margin-right: 15px;
  z-index: 10;
  position: relative;
  transition: padding 300ms ease, margin-right 300ms ease;
}

.hv2-find-retailer form.find-retailer .btn-submit:hover, .hv2-find-retailer form.find-retailer .btn-submit:focus {
  padding-left: 30px;
  margin-right: 0;
}

.hv2-find-retailer form.find-retailer .btn-submit svg {
  width: 26px;
  height: 26px;
  fill: white;
  vertical-align: middle;
}

.hv2-full-width-media {
  font-family: "Helvetica Neue LT W05 45 Light", sans-serif;
  text-align: center;
}

.hv2-full-width-media-media-slot {
  position: relative;
  cursor: pointer;
}

.hv2-full-width-media-media-slot .video-js {
  height: 0;
  padding-bottom: 62%;
  width: 100%;
}

@media screen and (min-width: 960px) {
  .hv2-full-width-media-media-slot .video-js {
    padding-bottom: 40%;
  }
}

.hv2-full-width-media-media-slot img,
.hv2-full-width-media-media-slot video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hv2-full-width-media-media-slot:hover .hv2-video-play-btn {
  border-color: rgba(255, 255, 255, 0.3);
  border-width: 3px;
}

.hv2-full-width-media-media-slot:hover .hv2-video-play-btn::after {
  transform: scale(1.2);
  opacity: 1;
}

.hv2-full-width-media-media-slot .vjs-big-play-button {
  display: none;
}

.hv2-full-width-media-media-slot .vjs-ended .vjs-poster {
  display: block;
}

.hv2-full-width-media-media-slot .vjs-ended .vjs-control-bar {
  display: none;
}

.hv2-video-play-btn {
  background: none;
  border: 5px solid;
  border-color: rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  color: white;
  font: 10px/1 "Helvetica Neue LT W05 75 Bold", sans-serif;
  position: absolute;
  width: 110px;
  height: 110px;
  left: 50%;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  transition: border-color 400ms ease;
  pointer-events: none;
}

.hv2-video-play-btn::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 40px solid white;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  margin-left: 10px;
}

@media screen and (min-width: 960px) {
  .hv2-video-play-btn::before {
    border-left-width: 60px;
    border-top-width: 32px;
    border-bottom-width: 32px;
  }
}

.hv2-video-play-btn::after {
  content: '';
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  border: 4px solid;
  border-color: rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: opacity 400ms ease, transform 400ms ease;
}

@media screen and (min-width: 960px) {
  .hv2-video-play-btn::after {
    border-width: 7px;
  }
}

@media screen and (min-width: 960px) {
  .hv2-video-play-btn.has-text {
    width: 200px;
    height: 200px;
    font-size: 16px;
  }
}

.hv2-video-play-btn.has-text::before {
  margin-bottom: 12px;
}

@media screen and (min-width: 960px) {
  .hv2-video-play-btn.has-text::before {
    margin-bottom: 18px;
  }
}

.vjs-has-started:not(.vjs-ended) + .hv2-video-play-btn {
  display: none;
}

.how-to-regrip-video .vjs-poster {
  background-image: url("../img/home-v2/how-to-regrip-video.jpg") !important;
  background-size: cover !important;
}

.two-yards-carry-video {
  text-align: center;
}

.two-yards-carry-video .vjs-poster {
  background-image: url("https://www.golfpride.com/wp-content/themes/golf-pride/library/img/home-v2/2-yards-carry-video.gif") !important;
  background-size: cover !important;
}

.two-yards-carry-video .hv2-video-play-btn {
  position: relative;
  top: auto;
  left: auto;
  margin: 0 auto;
  transform: none;
}

@media screen and (max-width: 959px) {
  .two-yards-carry-video .video-js {
    padding-bottom: 100%;
  }
}

.hv2-full-width-media-content {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  pointer-events: none;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 calc(20px + 0.625rem);
}

.hv2-full-width-media-content p {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
  line-height: 1.2;
}

@media screen and (min-width: 960px) {
  .hv2-full-width-media-content p {
    margin-bottom: 50px;
    font-size: 1.25rem;
  }
}

.hv2-full-width-media-content::after {
  content: '';
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hv2-full-width-media-content > * {
  z-index: 5;
}

.hv2-full-width-media-content h2 {
  color: white;
  text-transform: uppercase;
}

.vjs-has-started:not(.vjs-ended) + .hv2-full-width-media-content {
  display: none;
}

/*# sourceMappingURL=main.css.map */
