@charset "UTF-8";
/*============================================================================
  [replace with theme name] | Built with Slate
    - You cannot use native CSS/Sass @imports in this file without a build script
==============================================================================*/
/*================ UTILS ================*/
/*================ Mixins ================*/
/*============================================================================
  Prefix mixin for generating vendor prefixes.
  Based on https://github.com/thoughtbot/bourbon/blob/v4-stable/app/assets/stylesheets/addons/_prefixer.scss

  Usage:
    // Input:
    .element {
      @include prefix(transform, scale(1), ms webkit spec);
    }

    // Output:
    .element {
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
    }
==============================================================================*/
/*================ Media Query Mixin ================*/
/*================ Responsive Show/Hide Helper ================*/
/*================ Responsive Text Alignment Helper ================*/
/*================ SETTINGS ================*/
/*================ Color Variables ================*/
/*================ Typography Variables ================*/
/*============================================================================
  Grid Breakpoints and Class Names
    - Do not change the variable names
==============================================================================*/
/*============================================================================
  Generate breakpoint-specific column widths and push classes
    - Default column widths: $breakpoint-has-widths: ($small, $medium-up);
    - Default is no push classes
    - Will not work if `styles/global/grid.scss` is removed
==============================================================================*/
/*================ Sizing Variables ================*/
/*================ Z-Index ================*/
/*================ SVG ================*/
/*================ COMMON ================*/
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

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

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

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

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

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

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

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

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

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

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

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

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

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

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

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

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

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

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

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

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

/*================ Slate specific reset ================*/
*,
*::before,
*::after {
  box-sizing: border-box; }

body,
input,
textarea,
button,
select {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

a:focus {
  color: inherit; }

img {
  max-width: 100%; }

/*================ Form element helpers ================*/
form {
  margin: 0; }

@media only screen and (max-width: 989px) {
  input,
  textarea,
  select {
    font-size: 16px; } }
button,
input[type="submit"],
label[for] {
  cursor: pointer; }

optgroup {
  font-weight: 700; }

option {
  color: black;
  background-color: white; }

[tabindex='-1']:focus {
  outline: none; }

/*============================================================================
  Fast Tap
  enables no-delay taps (FastClick-esque) on supporting browsers
==============================================================================*/
a,
button,
[role="button"],
input,
label,
select,
textarea {
  touch-action: manipulation; }

/*================ Helper Classes ================*/
.clearfix {
  *zoom: 1; }
  .clearfix::after {
    content: '';
    display: table;
    clear: both; }

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

.js-focus-hidden:focus {
  outline: none; }

.label-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }
  .no-placeholder .label-hidden {
    position: inherit !important;
    overflow: auto;
    clip: auto;
    width: auto;
    height: auto;
    margin: 0; }

.visually-shown {
  position: inherit !important;
  overflow: auto;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0; }

.no-js:not(html) {
  display: none; }
  .no-js .no-js:not(html) {
    display: block; }

.no-js .js {
  display: none; }

.supports-no-cookies:not(html) {
  display: none; }
  html.supports-no-cookies .supports-no-cookies:not(html) {
    display: block; }

html.supports-no-cookies .supports-cookies {
  display: none; }

/*============================================================================
  Skip to content button
    - Overrides .visually-hidden when focused
==============================================================================*/
.skip-link:focus {
  position: absolute !important;
  overflow: auto;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  color: black;
  background-color: white;
  padding: 15px;
  z-index: 10000;
  transition: none; }

/*============================================================================
  Grid
    - Based on CSS Wizardry grid
==============================================================================*/
.grid {
  *zoom: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -30px; }
  .grid::after {
    content: '';
    display: table;
    clear: both; }

.grid__item {
  float: left;
  padding-left: 30px;
  width: 100%; }
  .grid__item[class*='--push'] {
    position: relative; }

/*============================================================================
  Reversed grids allow you to structure your source in the opposite
  order to how your rendered layout will appear.
==============================================================================*/
.grid--rev {
  direction: rtl;
  text-align: left; }
  .grid--rev > .grid__item {
    direction: ltr;
    text-align: left;
    float: right; }

/*============================================================================
  Grid Columns
    - Create width classes, prepended by the breakpoint name.
==============================================================================*/
/*================ Grid push classes ================*/
/*================ Clearfix helper on uniform grids ================*/
/*================ Build Base Grid Classes ================*/
/** Whole */
.one-whole {
  width: 100%; }

/* Halves */
.one-half {
  width: 50%; }

/* Thirds */
.one-third {
  width: 33.33333%; }

.two-thirds {
  width: 66.66667%; }

/* Quarters */
.one-quarter {
  width: 25%; }

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

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

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

/* Sixths */
.one-sixth {
  width: 16.66667%; }

.two-sixths {
  width: 33.33333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.66667%; }

.five-sixths {
  width: 83.33333%; }

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

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

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

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

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

.two-twelfths {
  width: 16.66667%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.33333%; }

.five-twelfths {
  width: 41.66667%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.33333%; }

.eight-twelfths {
  width: 66.66667%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.33333%; }

.eleven-twelfths {
  width: 91.66667%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

/*================ Build Responsive Grid Classes ================*/
@media only screen and (max-width: 749px) {
  /** Whole */
  .small--one-whole {
    width: 100%; }

  /* Halves */
  .small--one-half {
    width: 50%; }

  /* Thirds */
  .small--one-third {
    width: 33.33333%; }

  .small--two-thirds {
    width: 66.66667%; }

  /* Quarters */
  .small--one-quarter {
    width: 25%; }

  .small--two-quarters {
    width: 50%; }

  .small--three-quarters {
    width: 75%; }

  /* Fifths */
  .small--one-fifth {
    width: 20%; }

  .small--two-fifths {
    width: 40%; }

  .small--three-fifths {
    width: 60%; }

  .small--four-fifths {
    width: 80%; }

  /* Sixths */
  .small--one-sixth {
    width: 16.66667%; }

  .small--two-sixths {
    width: 33.33333%; }

  .small--three-sixths {
    width: 50%; }

  .small--four-sixths {
    width: 66.66667%; }

  .small--five-sixths {
    width: 83.33333%; }

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

  .small--two-eighths {
    width: 25%; }

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

  .small--four-eighths {
    width: 50%; }

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

  .small--six-eighths {
    width: 75%; }

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

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

  .small--two-tenths {
    width: 20%; }

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

  .small--four-tenths {
    width: 40%; }

  .small--five-tenths {
    width: 50%; }

  .small--six-tenths {
    width: 60%; }

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

  .small--eight-tenths {
    width: 80%; }

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

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

  .small--two-twelfths {
    width: 16.66667%; }

  .small--three-twelfths {
    width: 25%; }

  .small--four-twelfths {
    width: 33.33333%; }

  .small--five-twelfths {
    width: 41.66667%; }

  .small--six-twelfths {
    width: 50%; }

  .small--seven-twelfths {
    width: 58.33333%; }

  .small--eight-twelfths {
    width: 66.66667%; }

  .small--nine-twelfths {
    width: 75%; }

  .small--ten-twelfths {
    width: 83.33333%; }

  .small--eleven-twelfths {
    width: 91.66667%; }

  .grid--uniform .small--one-half:nth-child(2n+1),
  .grid--uniform .small--one-third:nth-child(3n+1),
  .grid--uniform .small--one-quarter:nth-child(4n+1),
  .grid--uniform .small--one-fifth:nth-child(5n+1),
  .grid--uniform .small--one-sixth:nth-child(6n+1),
  .grid--uniform .small--two-sixths:nth-child(3n+1),
  .grid--uniform .small--three-sixths:nth-child(2n+1),
  .grid--uniform .small--one-eighth:nth-child(8n+1),
  .grid--uniform .small--two-eighths:nth-child(4n+1),
  .grid--uniform .small--four-eighths:nth-child(2n+1),
  .grid--uniform .small--five-tenths:nth-child(2n+1),
  .grid--uniform .small--one-twelfth:nth-child(12n+1),
  .grid--uniform .small--two-twelfths:nth-child(6n+1),
  .grid--uniform .small--three-twelfths:nth-child(4n+1),
  .grid--uniform .small--four-twelfths:nth-child(3n+1),
  .grid--uniform .small--six-twelfths:nth-child(2n+1) {
    clear: both; }

  .small--show {
    display: block !important; }

  .small--hide {
    display: none !important; }

  .small--text-left {
    text-align: left !important; }

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

  .small--text-center {
    text-align: center !important; } }
@media only screen and (min-width: 750px) {
  /** Whole */
  .medium-up--one-whole {
    width: 100%; }

  /* Halves */
  .medium-up--one-half {
    width: 50%; }

  /* Thirds */
  .medium-up--one-third {
    width: 33.33333%; }

  .medium-up--two-thirds {
    width: 66.66667%; }

  /* Quarters */
  .medium-up--one-quarter {
    width: 25%; }

  .medium-up--two-quarters {
    width: 50%; }

  .medium-up--three-quarters {
    width: 75%; }

  /* Fifths */
  .medium-up--one-fifth {
    width: 20%; }

  .medium-up--two-fifths {
    width: 40%; }

  .medium-up--three-fifths {
    width: 60%; }

  .medium-up--four-fifths {
    width: 80%; }

  /* Sixths */
  .medium-up--one-sixth {
    width: 16.66667%; }

  .medium-up--two-sixths {
    width: 33.33333%; }

  .medium-up--three-sixths {
    width: 50%; }

  .medium-up--four-sixths {
    width: 66.66667%; }

  .medium-up--five-sixths {
    width: 83.33333%; }

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

  .medium-up--two-eighths {
    width: 25%; }

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

  .medium-up--four-eighths {
    width: 50%; }

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

  .medium-up--six-eighths {
    width: 75%; }

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

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

  .medium-up--two-tenths {
    width: 20%; }

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

  .medium-up--four-tenths {
    width: 40%; }

  .medium-up--five-tenths {
    width: 50%; }

  .medium-up--six-tenths {
    width: 60%; }

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

  .medium-up--eight-tenths {
    width: 80%; }

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

  /* Twelfths */
  .medium-up--one-twelfth {
    width: 8.33333%; }

  .medium-up--two-twelfths {
    width: 16.66667%; }

  .medium-up--three-twelfths {
    width: 25%; }

  .medium-up--four-twelfths {
    width: 33.33333%; }

  .medium-up--five-twelfths {
    width: 41.66667%; }

  .medium-up--six-twelfths {
    width: 50%; }

  .medium-up--seven-twelfths {
    width: 58.33333%; }

  .medium-up--eight-twelfths {
    width: 66.66667%; }

  .medium-up--nine-twelfths {
    width: 75%; }

  .medium-up--ten-twelfths {
    width: 83.33333%; }

  .medium-up--eleven-twelfths {
    width: 91.66667%; }

  .grid--uniform .medium-up--one-half:nth-child(2n+1),
  .grid--uniform .medium-up--one-third:nth-child(3n+1),
  .grid--uniform .medium-up--one-quarter:nth-child(4n+1),
  .grid--uniform .medium-up--one-fifth:nth-child(5n+1),
  .grid--uniform .medium-up--one-sixth:nth-child(6n+1),
  .grid--uniform .medium-up--two-sixths:nth-child(3n+1),
  .grid--uniform .medium-up--three-sixths:nth-child(2n+1),
  .grid--uniform .medium-up--one-eighth:nth-child(8n+1),
  .grid--uniform .medium-up--two-eighths:nth-child(4n+1),
  .grid--uniform .medium-up--four-eighths:nth-child(2n+1),
  .grid--uniform .medium-up--five-tenths:nth-child(2n+1),
  .grid--uniform .medium-up--one-twelfth:nth-child(12n+1),
  .grid--uniform .medium-up--two-twelfths:nth-child(6n+1),
  .grid--uniform .medium-up--three-twelfths:nth-child(4n+1),
  .grid--uniform .medium-up--four-twelfths:nth-child(3n+1),
  .grid--uniform .medium-up--six-twelfths:nth-child(2n+1) {
    clear: both; }

  .medium-up--show {
    display: block !important; }

  .medium-up--hide {
    display: none !important; }

  .medium-up--text-left {
    text-align: left !important; }

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

  .medium-up--text-center {
    text-align: center !important; } }
/*================ Build Grid Push Classes ================*/
@font-face {
  font-family: 'AgencyFB-Bold';
  src: url("AgencyFB-Bold.eot");
  /* IE9 Compat Modes */
  src: url("AgencyFB-Bold.woff") format("woff"), url("AgencyFB-Bold.ttf") format("truetype");
  /* Safari, Android, iOS */ }

@font-face {
  font-family: 'AgencyFBBlack';
  src: url("AgencyFBBlack.eot");
  /* IE9 Compat Modes */
  src: url("AgencyFBBlack.woff") format("woff"), url("AgencyFBBlack.ttf") format("truetype");
  /* Safari, Android, iOS */ }

@font-face {
  font-family: 'Eksell';
  src: url("Eksell.eot");
  /* IE9 Compat Modes */
  src: url("Eksell.woff") format("woff"), url("Eksell.ttf") format("truetype");
  /* Safari, Android, iOS */ }

@font-face {
  font-family: 'Montserrat';
  src: url("Montserrat.eot");
  /* IE9 Compat Modes */
  src: url("Montserrat.woff") format("woff"), url("Montserrat.ttf") format("truetype");
  /* Safari, Android, iOS */ }

/*================ General layout styles ================*/
body,
html {
  background-color: white; }

a {
  text-decoration: none !important;
  cursor: pointer !important; }

.page-width {
  *zoom: 1;
  max-width: 1180px;
  padding: 0 30px;
  margin: 0 auto; }
  .page-width::after {
    content: '';
    display: table;
    clear: both; }

span.BOLD-mc-picker-mnt {
  display: none !important; }

header.header {
  background-color: black;
  height: 40px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100; }
  header.header svg.cart {
    width: 20px;
    position: absolute;
    top: 12px;
    right: 150px;
    color: white; }
  header.header svg.user {
    font-size: 19px;
    position: absolute;
    top: 11px;
    right: 192px;
    color: white; }
  header.header img.mb-logo {
    position: absolute;
    right: 231px;
    top: 11px;
    width: 22px; }
  header.header span.nav-flag {
    font-size: 34px;
    vertical-align: middle;
    cursor: pointer;
    position: absolute;
    top: -5px;
    right: 222px; }
    header.header span.nav-flag svg {
      font-size: 14px;
      vertical-align: sub;
      margin-bottom: 10px;
      margin-right: 15px;
      color: white; }
    header.header span.nav-flag img {
      width: 30px; }
  header.header div.flag-dropdown {
    display: none;
    background-color: black;
    padding: 15px;
    top: 40px;
    right: 230px;
    text-align: left;
    min-width: 180px;
    box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.1); }
    header.header div.flag-dropdown img {
      width: 30px;
      margin-right: 5px;
      vertical-align: baseline; }
    header.header div.flag-dropdown div {
      padding: 5px 0;
      font-size: 18px;
      letter-spacing: .5px;
      vertical-align: middle;
      font-family: 'AgencyFBBlack', sans-serif; }
      header.header div.flag-dropdown div a {
        color: white;
        display: inline;
        margin: 0; }
      header.header div.flag-dropdown div.us {
        font-weight: bold; }
        header.header div.flag-dropdown div.us::after {
          content: "✓";
          float: right;
          font-family: monospace;
          color: white; }
  header.header ul.hidden.dealers {
    margin-left: 13px; }
  header.header ul.hidden.support {
    margin-left: 12px; }
  header.header ul.hidden.moving-people {
    margin-left: 35px; }
  header.header ul.hidden.one {
    margin-left: 2px; }
  header.header ul.hidden.two {
    margin-left: 22px; }

section:not(.reviews) div {
  font-family: "AgencyFBBlack", sans-serif; }

header.mobile {
  background-color: black;
  height: 64px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  display: none; }
  header.mobile svg.cart {
    font-size: 28px;
    position: absolute;
    top: 17px;
    right: 73px;
    color: white; }
  header.mobile svg.user {
    font-size: 30px;
    position: absolute;
    top: 16px;
    right: 126px;
    color: white; }
  header.mobile img.flag {
    width: 45px;
    margin-top: -12px;
    margin-right: 10px; }

img.logo {
  margin: 1.5em .8em 1em 1.2em;
  position: absolute;
  z-index: 3;
  width: 115px; }

div.nav-box {
  background-color: black;
  left: -32px;
  top: 40px;
  height: 19px;
  width: 180px;
  position: absolute;
  transform: skew(-30deg);
  -webkit-transform: skew(-30deg);
  -moz-transform: skew(-30deg);
  -o-transform: skew(-30deg);
  z-index: 2; }

div.nav-box2 {
  background-color: #c7d051;
  left: 144px;
  top: 40px;
  height: 19px;
  width: 16px;
  position: absolute;
  transform: skew(-30deg);
  -webkit-transform: skew(-30deg);
  -moz-transform: skew(-30deg);
  -o-transform: skew(-30deg); }

div.nav-box-xs {
  background-color: #c7d051;
  left: -32px;
  top: 64px;
  height: 8px;
  width: 160px;
  position: absolute;
  transform: skew(-30deg);
  -webkit-transform: skew(-30deg);
  -moz-transform: skew(-30deg);
  -o-transform: skew(-30deg);
  z-index: 10; }

svg.phone-icon {
  fill: #c7d051;
  position: absolute;
  top: 11px;
  right: 112px;
  width: 18px; }

p.phone-number {
  color: white;
  font-family: "AgencyFBBlack", sans-serif;
  font-size: 13px;
  position: absolute;
  top: 11px;
  right: 20px;
  letter-spacing: .5px; }

a.bikes {
  position: relative; }

div.triangle {
  display: block;
  margin: 0 auto;
  width: 18px;
  height: 9px;
  border-top: solid 9px red;
  border-left: solid 9px transparent;
  border-right: solid 9px transparent;
  margin-left: -10px;
  margin-top: -10px;
  z-index: 1000; }

.promo_banner {
  background-color: #FDCB2E;
  color: #1b1b1b;
  font-family: 'Montserrat';
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  margin: 0 auto;
  padding: .5em 0;
  text-align: center;
  -webkit-box-shadow: 0 0 7px #3d3d3d;
  -moz-box-shadow: 0 0 7px #3d3d3d;
  box-shadow: 0 0 7px #3d3d3d;
  text-shadow: 0.5px 1px 1.5px rgba(0, 0, 0, 0.3);
  -webkit-text-shadow: 0.5px 1px 1.5px rgba(0, 0, 0, 0.3);
  -moz-text-shadow: 0.5px 1px 1.5px rgba(0, 0, 0, 0.3);
  width: 100%; }

section.insta-feed h2.title {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  letter-spacing: 2px; }
section.insta-feed h3.subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 1px; }
section.insta-feed div, section.insta-feed span, section.insta-feed a, section.insta-feed p, section.insta-feed h1, section.insta-feed h2, section.insta-feed h3, section.insta-feed h4, section.insta-feed h5, section.insta-feed h6 {
  font-family: "Montserrat", sans-serif !important; }
section.insta-feed div.eapps-instagram-feed-posts-grid-load-more {
  background-color: #c7d150 !important;
  text-transform: uppercase;
  border-radius: 50px;
  line-height: 2.5;
  background-color: #c7d150;
  color: white;
  padding: 2px 56px;
  border-radius: 30px;
  display: inline-block;
  height: auto;
  width: auto;
  font-size: 16px;
  font-family: "AgencyFBBlack",sans-serif !important;
  letter-spacing: .5px; }
  section.insta-feed div.eapps-instagram-feed-posts-grid-load-more div {
    font-family: "AgencyFBBlack",sans-serif !important; }

div.eapps-widget div, div.eapps-widget span, div.eapps-widget a, div.eapps-widget p, div.eapps-widget h1, div.eapps-widget h2, div.eapps-widget h3, div.eapps-widget h4, div.eapps-widget h5, div.eapps-widget h6 {
  font-family: "Montserrat", sans-serif !important; }

section.ebr-home {
  background-color: #FAFAFA;
  padding: 6vw;
  padding-bottom: 5vw; }
  @media (max-width: 991px) {
    section.ebr-home {
      padding: 30px 10px; } }
  section.ebr-home div.acclaim-wrapper {
    height: 100%; }
    @media (min-width: 992px) {
      section.ebr-home div.acclaim-wrapper {
        padding: 5%; } }
    section.ebr-home div.acclaim-wrapper img.ebr-home {
      padding: 0 3vw; }
    section.ebr-home div.acclaim-wrapper div.text-container {
      left: 0;
      right: 0;
      margin: 0 auto;
      color: #C7D150;
      line-height: .7;
      font-size: 1.9vw; }
      @media (max-width: 991px) {
        section.ebr-home div.acclaim-wrapper div.text-container {
          font-size: 4.4vw; } }
  @media (min-width: 992px) {
    section.ebr-home div.description-wrapper {
      padding: 6%; } }
  @media (max-width: 991px) {
    section.ebr-home div.description-wrapper {
      margin-top: 40px; } }
  section.ebr-home div.description-wrapper div.description {
    font-size: 24px;
    font-family: 'Montserrat'; }
    @media (min-width: 991px) and (max-width: 1300px) {
      section.ebr-home div.description-wrapper div.description {
        font-size: 20px; } }
    @media (max-width: 991px) {
      section.ebr-home div.description-wrapper div.description {
        font-size: 18px;
        margin: 0 8vw;
        margin-bottom: 20px; } }
  section.ebr-home div.description-wrapper div.text-wrapper {
    margin-top: 5px; }
    section.ebr-home div.description-wrapper div.text-wrapper div.avatar {
      margin-left: 30px;
      float: right; }
      @media (max-width: 991px) {
        section.ebr-home div.description-wrapper div.text-wrapper div.avatar {
          float: left;
          margin-left: 2vw; } }
      @media (max-width: 991px) and (min-width: 500px) {
        section.ebr-home div.description-wrapper div.text-wrapper div.avatar {
          margin-left: 12vw; } }
      section.ebr-home div.description-wrapper div.text-wrapper div.avatar img {
        width: 140px;
        margin-top: 10px; }
        @media (min-width: 991px) and (max-width: 1300px) {
          section.ebr-home div.description-wrapper div.text-wrapper div.avatar img {
            width: 130px; } }
        @media (max-width: 991px) {
          section.ebr-home div.description-wrapper div.text-wrapper div.avatar img {
            width: 80px; } }
    section.ebr-home div.description-wrapper div.text-wrapper div.review-title {
      float: right; }
      @media (max-width: 991px) {
        section.ebr-home div.description-wrapper div.text-wrapper div.review-title {
          margin-right: 4vw;
          margin-top: 15px; } }
      @media (max-width: 991px) and (min-width: 500px) {
        section.ebr-home div.description-wrapper div.text-wrapper div.review-title {
          margin-right: 12vw; } }
      section.ebr-home div.description-wrapper div.text-wrapper div.review-title img.icon-grey {
        width: 220px; }
        @media (min-width: 991px) and (max-width: 1300px) {
          section.ebr-home div.description-wrapper div.text-wrapper div.review-title img.icon-grey {
            width: 200px; } }
        @media (max-width: 991px) {
          section.ebr-home div.description-wrapper div.text-wrapper div.review-title img.icon-grey {
            width: 120px; } }
      section.ebr-home div.description-wrapper div.text-wrapper div.review-title div.title {
        top: 0;
        right: 0;
        font-size: 34px;
        line-height: 1.5;
        height: 100%;
        white-space: nowrap; }
        @media (min-width: 992px) and (max-width: 1300px) {
          section.ebr-home div.description-wrapper div.text-wrapper div.review-title div.title {
            font-size: 30px; } }
        @media (max-width: 991px) {
          section.ebr-home div.description-wrapper div.text-wrapper div.review-title div.title {
            font-size: 5.5vw; } }

section.home {
  padding-bottom: 30px; }
  section.home div.header-img {
    height: 180px;
    margin-top: 40px;
    padding-top: 35px; }
  section.home div.bike-description-home {
    font-size: 40px;
    margin-bottom: 15px;
    margin-top: -10px;
    font-family: "Montserrat", sans-serif; }
  section.home div.chart-nav {
    background: #ebebeb9e;
    border-radius: 100px;
    width: 630px;
    height: 44px;
    margin: 60px auto 0;
    display: block; }
    section.home div.chart-nav span.option {
      display: inline-block;
      height: 100%;
      width: calc(100% / 5);
      float: left;
      text-align: center;
      line-height: 3;
      letter-spacing: 0.1em;
      font-weight: 500;
      font-size: 16px;
      cursor: pointer; }
      section.home div.chart-nav span.option.selected {
        border-radius: 100px;
        background-color: #c7d150;
        color: white; }
  section.home div.bike-block.bike-mountain, section.home div.bike-block.bike-fat, section.home div.bike-block.bike-folding, section.home div.bike-block.bike-cruiser {
    display: none; }
  @media (max-width: 991px) {
    section.home div.bike-block {
      display: none !important; } }
  section.home select.chart-picker {
    width: 100%;
    max-width: 350px;
    height: 44px;
    margin: 60px auto 10px;
    display: block;
    border-radius: 50px;
    line-height: 1.3;
    letter-spacing: 0.1em;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: #2A2A5F;
    background-color: #ebebeb9e;
    padding: 13px 25px;
    font-family: Montserrat,sans-serif;
    border: none;
    font-weight: bold; }
    section.home select.chart-picker:active, section.home select.chart-picker:focus {
      box-shadow: none;
      outline: none; }
  section.home div.carousel {
    margin-bottom: 20px;
    min-height: 460px; }
    section.home div.carousel.carousel-mountain, section.home div.carousel.carousel-fat, section.home div.carousel.carousel-cruiser, section.home div.carousel.carousel-folding {
      display: none; }
    section.home div.carousel div.carousel-cell {
      width: 100%;
      padding: 0 15px; }
      section.home div.carousel div.carousel-cell a {
        margin-bottom: 20px; }
    section.home div.carousel .flickity-prev-next-button.previous {
      left: -10px; }
    section.home div.carousel .flickity-prev-next-button.next {
      right: -10px; }
    section.home div.carousel .flickity-prev-next-button:active, section.home div.carousel .flickity-prev-next-button:focus {
      box-shadow: none;
      outline: none; }
    section.home div.carousel div.icon-description {
      font-size: 8px; }
  section.home div.bike-name-home {
    font-size: 50px;
    margin-top: -35px;
    margin-bottom: 10px; }
  section.home div.bike-name-home.shred {
    margin-top: -29px; }
  section.home a.view-bike.home-bikes {
    background-color: #c7d150;
    padding: 9px 45px;
    border-radius: 30px;
    display: inline-block;
    height: auto;
    width: auto;
    font-size: 14px; }
  section.home a.view-bike.home-bikes:hover {
    background-color: black; }
  section.home div.home-about {
    margin-top: 120px;
    padding: 200px 25%; }
    section.home div.home-about div.about-text {
      line-height: 2; }

section.home-review {
  padding: 50px 0; }
  section.home-review div, section.home-review span, section.home-review p, section.home-review a, section.home-review button {
    font-family: "Montserrat", sans-serif; }
  section.home-review div.stamped-reviews-message-block {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 11;
    -webkit-box-orient: vertical; }
  section.home-review a.cta {
    background-color: #c7d150;
    color: white;
    padding: 9px 45px;
    border-radius: 30px;
    display: inline-block;
    height: auto;
    width: auto;
    font-size: 16px;
    line-height: 22px;
    font-family: "AgencyFBBlack",sans-serif;
    letter-spacing: .5px; }
    section.home-review a.cta:hover {
      background-color: black; }

section.home-value-prop {
  background-color: #000000; }
  section.home-value-prop .flex-container-prop {
    display: flex;
    align-items: center; }
  section.home-value-prop img {
    object-fit: cover;
    height: 100%; }
  section.home-value-prop div.text-container {
    margin-left: 12vw;
    padding: 20px; }
    @media (max-width: 991px) {
      section.home-value-prop div.text-container {
        margin: 0;
        padding: 100px 38px; } }
    section.home-value-prop div.text-container h2.title {
      font-size: 40px;
      letter-spacing: 1px;
      margin-bottom: 40px; }
      @media (max-width: 991px) {
        section.home-value-prop div.text-container h2.title {
          font-size: 32px;
          margin-bottom: 20px; } }
    section.home-value-prop div.text-container div.description {
      font-family: Montserrat;
      line-height: 1.4;
      font-size: 20px;
      margin-right: 7vw; }
      @media (min-width: 991px) and (max-width: 1300px) {
        section.home-value-prop div.text-container div.description {
          font-size: 18px; } }
      @media (max-width: 991px) {
        section.home-value-prop div.text-container div.description {
          font-size: 17px; } }
  section.home-value-prop.prop-2 {
    background-color: white; }
    @media (min-width: 992px) {
      section.home-value-prop.prop-2 div.text-container {
        margin-left: 6vw; } }
    section.home-value-prop.prop-2 div.text-container h2.title {
      color: #C7D150; }
    section.home-value-prop.prop-2 div.text-container div.description {
      margin: 0; }

section.home.lower {
  padding-bottom: 0; }

footer {
  background-color: #1b1b1b;
  left: 0;
  bottom: 0;
  padding-top: 60px;
  padding-bottom: 60px;
  height: auto !important; }
  footer div.currency-icons {
    margin-top: 40px; }
    footer div.currency-icons img, footer div.currency-icons svg {
      display: inline-block; }
    footer div.currency-icons img {
      width: 40px;
      margin: 10px;
      vertical-align: sub;
      filter: invert(62%); }
    footer div.currency-icons svg {
      margin: 10px;
      font-size: 40px; }
    footer div.currency-icons svg.btc {
      color: #F8A035; }
    footer div.currency-icons svg.bch {
      color: #4CCA47;
      transform: rotate(-35deg); }
    footer div.currency-icons svg.eth {
      color: white; }
  footer div.faq-icons a, footer div.faq-icons i {
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 20px; }
  footer div.faq-icons svg.mail, footer div.faq-icons svg.phone {
    font-size: 20px;
    vertical-align: middle; }

div.footer-links {
  font-family: 'AgencyFBBlack', sans-serif;
  letter-spacing: .5px;
  margin: 0 auto; }

div.footer-section {
  display: inline-block;
  width: 160px;
  margin-top: 2em;
  vertical-align: top; }

a.footer-link {
  color: #505050;
  display: inline-block;
  font-size: 12px;
  line-height: 2.8; }

a.footer-link:hover {
  color: lightgrey; }

h3.footer-header {
  color: white;
  font-size: 16px;
  letter-spacing: 1px; }

div.social-icons {
  color: white;
  font-size: 27px; }

svg.social-icons {
  margin: 0 .7em;
  color: white;
  font-size: 36px;
  margin-top: .8em; }

svg.social-icons.phone {
  width: 0.85em; }

svg.social-icons.mail {
  font-size: 32px; }

div.nav-links {
  /*Hide dropdown links until they are needed*/
  /*Make dropdown links vertical*/
  /*Prevent text wrapping*/
  /*Display the dropdown on hover*/ }
  div.nav-links ul#menu {
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center; }
  div.nav-links ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    position: absolute;
    letter-spacing: .5px;
    padding-top: 2px;
    margin-left: 2px;
    margin-top: 16px;
    /*Create a horizontal list with spacing*/
    /*Hover state for top level links*/
    /*Style for dropdown links*/ }
    div.nav-links ul ul.bikes div.bike {
      display: none; }
    div.nav-links ul li {
      display: inline-block;
      margin-right: 30px;
      height: 60px;
      line-height: 40px;
      font-family: 'AgencyFBBlack', sans-serif;
      color: #fff; }
    div.nav-links ul li a {
      color: #fff;
      display: block;
      text-decoration: none; }
    div.nav-links ul li:hover, div.nav-links ul li:hover a {
      color: #b8b8b8; }
    div.nav-links ul li ul li {
      background: #1b1b1b;
      color: white;
      height: 80px;
      line-height: 70px;
      margin-top: -20px;
      margin-left: -75px; }
    div.nav-links ul li ul.bikes li.bike {
      background: #313131; }
  div.nav-links li ul {
    display: none; }
  div.nav-links li ul li {
    display: block;
    float: none;
    min-width: 180px; }
  div.nav-links li ul li a {
    padding: 0 20px;
    width: auto; }
  div.nav-links ul li a:hover + .hidden, div.nav-links .hidden:hover {
    display: block; }
  div.nav-links li.drop-link {
    font-size: 14px; }

header.mobile svg.mobile-nav-bars {
  color: white;
  position: absolute;
  top: 17px;
  right: 20px;
  font-size: 30px; }
header.mobile img.mobile-nav-close {
  display: none;
  color: white;
  position: absolute;
  top: 18px;
  right: 20px;
  width: 28px; }
header.mobile div.navlist-xs {
  background-color: black;
  position: absolute;
  top: 63px;
  width: 100%;
  height: 100vh;
  max-height: calc(100vh - 63px);
  overflow: scroll;
  z-index: 4;
  opacity: 0;
  font-size: 30px;
  padding-top: 60px;
  visibility: hidden;
  transition: visibility 0s, opacity 0.25s linear;
  font-family: "AgencyFBBlack",sans-serif; }
  header.mobile div.navlist-xs ul {
    list-style: none; }
    header.mobile div.navlist-xs ul li {
      padding: 10px 0; }

section.wrong {
  padding-top: 80px;
  padding-left: 80px; }

button:focus {
  outline: 0; }

a:focus {
  outline: 0; }

input:focus {
  outline: 0; }

main#MainContent {
  min-height: 197px; }

/*Responsive Styles*/
@media screen and (max-width: 767px) {
  img.logo {
    margin: 1.4em 1em 1em 1em;
    width: 9em; }

  section.home div.bike-name-home {
    font-size: 32px;
    margin-top: 0px; }
  section.home div.bike-description-home {
    margin-top: -5px;
    font-size: 21px; }
  section.home div.accessory-home a.img-anchor-home {
    padding: 0; }
  section.home div.accessory-home {
    padding: 20px; }
  section.home div.header-img h1.home-header {
    font-size: 32px; }
  section.home div.home-about {
    padding: 120px 50px !important;
    text-align: center;
    margin-top: 60px;
    padding: 20px; }
    section.home div.home-about div.about-text {
      line-height: 2; }

  footer {
    padding-top: 0;
    padding-bottom: 50px; }
    footer div.currency-icons {
      margin-top: 0px; } }
/*Responsive Styles*/
@media screen and (min-width: 400px) and (max-width: 575px) {
  img.icon-footer {
    width: 20%;
    margin: 50px; }

  div.social-icons {
    padding-top: 2em; }

  footer {
    height: 18em; } }
@media only screen and (min-width: 1900px) and (max-width: 2200px) {
  section.home div.bike-name-home {
    font-size: 44px; }
  section.home a.view-bike.home-bikes {
    padding: 14px 52px;
    font-size: 18px;
    padding-top: 18px; } }
@media only screen and (min-width: 2201px) {
  section.home div.header-img {
    height: 220px; }
  section.home div.home-about {
    margin-top: 120px;
    padding: 200px 18%; }
    section.home div.home-about h2.about-header {
      font-size: 55px; }
    section.home div.home-about div.about-text {
      line-height: 2;
      font-size: 30px; }

  header.header {
    height: 100px; }
    header.header img.logo {
      margin: 1.8em 0.8em 1em 1.8em;
      width: 280px; }
    header.header div.nav-links {
      font-size: 32px; }
      header.header div.nav-links ul#menu {
        font-size: 30px;
        padding-top: 14px; }
        header.header div.nav-links ul#menu li {
          margin-right: 50px;
          margin-top: 19px; }
          header.header div.nav-links ul#menu li a {
            height: 70px; }
      header.header div.nav-links ul.hidden {
        margin-top: -4px !important; }
    header.header svg.user {
      font-size: 55px;
      top: 26px;
      right: 425px; }
    header.header svg.cart {
      font-size: 50px;
      top: 26px;
      right: 340px;
      width: auto; }
    header.header a svg.phone-icon {
      width: 1.1em;
      top: 25px;
      right: 253px;
      font-size: 50px; }
    header.header a p.phone-number {
      right: 4.5em;
      width: 3em;
      font-size: 32px;
      top: 28px; }
    header.header div.nav-box {
      top: 100px;
      width: 22.3em; }
    header.header div.nav-box2 {
      top: 100px;
      left: 20.35em; }

  footer {
    padding: 130px 0; }
    footer a.footer-link {
      margin-top: 25px;
      font-size: 24px;
      line-height: 1.5; }
    footer h3.footer-header {
      font-size: 32px; }
    footer div.social-icons div.faq-icons a {
      font-size: 35px; }
      footer div.social-icons div.faq-icons a svg {
        font-size: 25px; }
    footer div.social-icons a svg.social-icons {
      font-size: 43px;
      margin-top: 50px; }
    footer div.footer-section {
      width: 400px; }

  section.review {
    padding: 100px 0 200px 0 !important; } }
@media only screen and (min-width: 2800px) {
  header.header div.nav-links ul.hidden {
    margin-left: 15px;
    margin-top: 6px; }
    header.header div.nav-links ul.hidden li.drop-link {
      font-size: 21px; }
  header.header div.nav-links ul.hidden.dealers {
    margin-left: 32px; }
  header.header div.nav-links ul.hidden.support {
    margin-left: 38px; }

  section.home div.header-img {
    height: 320px; }
    section.home div.header-img h1.home-header {
      font-size: 70px;
      line-height: 1.1; } }
@media only screen and (min-width: 2400px) and (max-width: 2701px) {
  header.header div.nav-links ul.hidden li.drop-link {
    font-size: 20px !important; }
  header.header div.nav-links ul.hidden.navlist {
    margin-left: 20px; }
  header.header div.nav-links ul.hidden.dealers {
    margin-left: 37px; }
  header.header div.nav-links ul.hidden.support {
    margin-left: 39px; }

  div.buy-container div.price-box div.price {
    font-size: 134px;
    line-height: 100px;
    padding-bottom: 2px; }
  div.buy-container div.price-box div.price-area {
    padding-left: 265px;
    font-size: 18px;
    padding-top: 94px; }
  div.buy-container div.price-box div.dollar-sign {
    font-size: 28px;
    padding-left: 3px; }
  div.buy-container div.free {
    font-size: 18px; }
  div.buy-container div.shipping {
    font-size: 32px; } }
@media only screen and (min-width: 767px) and (max-width: 1280px) {
  section.home div.bike-description-home {
    font-size: 23px; } }
@media only screen and (min-width: 760px) and (max-width: 880px) {
  section.home div.bike-description-home {
    font-size: 19px !important; } }
@media only screen and (min-width: 3500px) {
  header.header img.logo {
    margin: 1.8em 0.8em 1em 2.8em;
    width: 280px; }

  section.home div.accessory-home img {
    max-width: none;
    width: 70%; }
  section.home div.accessory-home div.bike-name-home {
    font-size: 85px; }
  section.home div.accessory-home div.bike-description-home {
    font-size: 60px; }
  section.home div.accessory-home a.view-bike {
    padding: 30px 67px;
    border-radius: 49px;
    font-size: 28px; } }
@media only screen and (min-width: 5000px) {
  section.home div.bike-name-home {
    font-size: 100px !important; }
  section.home div.bike-description-home {
    font-size: 75px !important; }
  section.home a.view-bike {
    padding: 30px 67px !important;
    border-radius: 49px !important;
    font-size: 40px !important; }

  header.header div.nav-box {
    width: 15.5em;
    height: 50px; }

  header.header div.nav-box2 {
    height: 50px;
    width: 50px;
    left: 14em; }

  header.header img.logo {
    margin: 1.9em 0.8em 1em 2.5em; }

  header svg.phone-icon {
    right: 280px; }
  header svg.cart {
    right: 365px; }
  header svg.user {
    right: 450px; } }
@media only screen and (min-width: 6500px) {
  header.header img.logo {
    margin: 1.5em 0.8em 1em 3.5em; } }
section.faq-hero {
  margin-top: 40px; }
  @media (max-width: 767px) {
    section.faq-hero {
      margin-top: 64px; } }
  section.faq-hero h2.faq-header {
    color: white;
    bottom: 5px;
    left: 40px;
    font-size: 4.5vw; }
    section.faq-hero h2.faq-header span.green {
      color: #CFDE3D; }
    @media (max-width: 991px) {
      section.faq-hero h2.faq-header {
        bottom: 0px;
        left: 15px;
        font-size: 7.5vw;
        line-height: 1; } }

section.faq-page.search {
  padding: 100px 10vw; }
  section.faq-page.search h4.title {
    font-family: "Montserrat", sans-serif;
    font-size: 24px; }
section.faq-page section.faq {
  margin-top: 120px; }
  section.faq-page section.faq div.accessory img {
    height: 18vw; }
    @media (max-width: 991px) {
      section.faq-page section.faq div.accessory img {
        height: 250px; } }
section.faq-page section.payment {
  background-color: #efefef; }
section.faq-page h2.faq-header {
  color: black;
  padding-left: 20.85%;
  margin-bottom: 20px; }
section.faq-page div.faq-contact {
  padding-left: 20.85%;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 20px;
  font-size: 20px; }
section.faq-page div.faq-icons {
  margin-bottom: 50px;
  padding-left: 20.85%; }
  section.faq-page div.faq-icons a, section.faq-page div.faq-icons i {
    color: black;
    font-family: "Montserrat", sans-serif;
    font-size: 20px; }
  section.faq-page div.faq-icons svg.mail, section.faq-page div.faq-icons svg.phone {
    font-size: 24px;
    vertical-align: top; }
section.faq-page div.faq-navbar {
  background-color: #e7e7e7;
  width: 100%;
  padding: 0px 0.85% 0px 12%; }
  @media (min-width: 768px) and (max-width: 1500px) {
    section.faq-page div.faq-navbar {
      padding-left: 4%; } }
section.faq-page div.faq-body {
  padding: 0 20.85%;
  padding-bottom: 50px; }
section.faq-page div.dropdown-xs {
  display: none;
  background-color: white; }
section.faq-page a.faq-nav, section.faq-page div.faq-nav {
  color: black;
  padding: 6px 10px;
  font-size: 40px;
  outline: none;
  display: inline-block;
  line-height: 1;
  min-width: 190px;
  text-align: center; }
  section.faq-page a.faq-nav.sale, section.faq-page div.faq-nav.sale {
    color: red; }
  @media (max-width: 1500px) {
    section.faq-page a.faq-nav, section.faq-page div.faq-nav {
      font-size: 26px;
      min-width: 140px;
      padding: 8px 10px 6px; } }
  section.faq-page a.faq-nav.selected, section.faq-page div.faq-nav.selected {
    background-color: black;
    color: white;
    outline: none; }
  section.faq-page a.faq-nav:focus, section.faq-page div.faq-nav:focus {
    background-color: grey;
    color: white;
    outline: none; }
section.faq-page div.year-container {
  height: 30px;
  width: 190px;
  position: absolute;
  left: 0;
  bottom: -38px;
  text-align: center; }
  @media (max-width: 1500px) {
    section.faq-page div.year-container {
      width: 140px; } }
  section.faq-page div.year-container.rook {
    width: 193px; }
    @media (max-width: 1500px) {
      section.faq-page div.year-container.rook {
        width: 140px; } }
  section.faq-page div.year-container a {
    color: black; }
  section.faq-page div.year-container div.year {
    color: black;
    display: inline-block;
    font-size: 14px;
    height: 87%;
    line-height: 2.4;
    width: 100%; }
    section.faq-page div.year-container div.year.selected {
      background-color: black;
      color: white; }
  section.faq-page div.year-container.selected {
    border: 1px solid black; }
section.faq-page a.faq-link {
  color: #c4d22e;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 15px; }
@media (max-width: 991px) {
  section.faq-page div.form {
    width: 100%; } }
section.faq-page div.form label {
  font-size: 40px;
  line-height: 1;
  background-color: black;
  color: white;
  padding: 6px 10px;
  min-width: 190px;
  text-align: center;
  cursor: auto; }
  @media (max-width: 1500px) {
    section.faq-page div.form label {
      font-size: 30px; } }
  @media (max-width: 991px) {
    section.faq-page div.form label {
      width: 100%;
      font-size: 18px;
      padding-top: 14px; } }
section.faq-page div.form input {
  width: 19vw;
  border: 1px solid black;
  border-radius: 5px;
  background-color: #E9E9E9;
  height: 40px;
  vertical-align: bottom;
  margin-bottom: 5px;
  margin-left: 5px;
  padding-left: 10px; }
  @media (max-width: 1500px) {
    section.faq-page div.form input {
      height: 31px;
      width: 13vw; } }
  @media (max-width: 991px) {
    section.faq-page div.form input {
      width: 97%;
      margin: 5px auto;
      display: block !important;
      border-radius: 20px; } }
section.faq-page h3.section-header {
  font-size: 21px;
  padding-top: 80px; }
section.faq-page h4.question {
  font-size: 16px;
  text-transform: uppercase;
  padding-top: 50px; }
section.faq-page div.answer {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 13px;
  padding-top: 20px;
  padding-right: 30px;
  line-height: 28px; }
section.faq-page.parts section.faq {
  margin: 0; }
section.faq-page.parts div.faq-navbar {
  padding: 0; }
section.faq-page.parts div.col-sidebar {
  width: 300px; }
section.faq-page.parts div.col-products {
  width: calc(100% - 300px); }
section.faq-page.parts div.filter-wrapper {
  border-right: 1px solid grey;
  height: 100%;
  padding: 40px; }
  section.faq-page.parts div.filter-wrapper h2.title {
    font-size: 22px;
    color: black;
    margin-bottom: 20px; }
  section.faq-page.parts div.filter-wrapper div.filter-group div.filter-title {
    font-family: Montserrat,sans-serif;
    font-weight: bold;
    color: black;
    font-size: 15px; }
  section.faq-page.parts div.filter-wrapper div.filter-group ul {
    padding-left: 25px;
    list-style: none; }
  section.faq-page.parts div.filter-wrapper div.filter-group li.filter {
    font-family: Montserrat,sans-serif;
    color: black;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.7; }
    section.faq-page.parts div.filter-wrapper div.filter-group li.filter:before {
      content: "• ";
      margin-left: -15px;
      margin-right: 5px;
      color: black;
      font-size: 36px;
      line-height: 15px;
      vertical-align: middle; }
    section.faq-page.parts div.filter-wrapper div.filter-group li.filter.selected {
      font-weight: bold; }
      section.faq-page.parts div.filter-wrapper div.filter-group li.filter.selected:before {
        color: #cadb36; }

div.parts-body {
  padding: 0 2.85%;
  padding-bottom: 50px;
  padding-top: 48px; }
  div.parts-body div.part-price {
    margin-top: 20px;
    font-size: 26px; }
    @media (max-width: 991px) {
      div.parts-body div.part-price {
        margin-bottom: 30px; } }
  div.parts-body span.page.current {
    color: black; }
  div.parts-body span.page, div.parts-body span.next, div.parts-body span.prev {
    margin-top: 50px; }
    div.parts-body span.page a, div.parts-body span.next a, div.parts-body span.prev a {
      color: grey; }

div.pagination-container {
  width: 100%;
  margin-top: 30px;
  font-size: 28px; }
  div.pagination-container span {
    color: black; }
    div.pagination-container span a {
      font-size: 18px;
      color: black; }

/* Smartphones (portrait and landscape) ----------- */
@media screen and (min-width: 300px) and (max-width: 991px) {
  section.faq-page div.faq-contact, section.faq-page div.faq-icons {
    padding-left: 5%; }
  section.faq-page h2.faq-header {
    padding-left: 0;
    text-align: center;
    margin-bottom: 20px; }
  section.faq-page div.faq-navbar {
    padding: 0; }
  section.faq-page div.faq-body {
    padding: 0 20px;
    text-align: center; }
  section.faq-page h3.section-header {
    padding-top: 40px; }
  section.faq-page h4.question {
    font-size: 13px;
    line-height: 22px; }
  section.faq-page div.answer {
    padding: 20px 22px;
    font-size: 11px;
    line-height: 23px; }
  section.faq-page a.faq-nav, section.faq-page div.faq-nav {
    display: block;
    text-align: center;
    font-size: 18px;
    padding-top: 14px; }
  section.faq-page div#payment, section.faq-page div#assembly, section.faq-page div#warranty {
    display: none; }
  section.faq-page section.payment {
    background-color: white; }

  div.pagination-container {
    width: 100%;
    margin-top: 50px; } }
@media only screen and (min-width: 2800px) {
  section.faq-page {
    padding-top: 120px; }
    section.faq-page section.faq h2 {
      font-size: 37px; }
    section.faq-page section.faq div.faq-contact {
      font-size: 24px; }
    section.faq-page div.faq-navbar a.faq-nav, section.faq-page div.faq-navbar div.faq-nav {
      font-size: 22px; }
    section.faq-page div.faq-body div.section h3 {
      font-size: 32px; }
    section.faq-page div.faq-body div.section h4 {
      font-size: 24px; }
    section.faq-page div.faq-body div.section div.answer {
      font-size: 20px;
      line-height: 2; }

  div.accessory div.accessory-name {
    width: 430px;
    font-size: 25px;
    padding: 18px 0; }
  div.accessory div.parts-body div.part-price {
    margin-top: 10px;
    font-size: 32px; } }
@media only screen and (min-width: 768px) and (max-width: 1350px) {
  section.faq div.parts-body {
    padding: 7%; } }
section.about-top {
  margin-top: 40px; }
  section.about-top img {
    width: 100%; }
  section.about-top div.about-bg {
    margin-top: -8%;
    width: 100%; }
  section.about-top div.text-box {
    padding: 10% 25% 8.17% 25%; }

div.about-text {
  color: #7d7d7d;
  font-family: "Montserrat", sans-serif;
  font-size: 13.1px;
  line-height: 22px;
  font-weight: 600; }

div.about-text-xs {
  color: #7d7d7d;
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  line-height: 18px;
  font-weight: 600;
  padding: 0 48px; }

div.row-xs, div.row-xs-2 {
  width: 100%; }

h1.boar-title {
  font-size: 70px;
  font-weight: 500; }

section.about-boar {
  padding-top: 50px;
  padding-bottom: 100px; }
  section.about-boar div.boar-quote {
    font-family: "Eksell", serif;
    margin-top: 45%;
    font-size: 1.2em; }
  section.about-boar img.boar-sketch-2 {
    width: 32%;
    margin-left: -30px; }
  section.about-boar img.boar-render {
    margin-top: 64px;
    width: 55%; }

a.shop-now {
  background-color: #c7d150;
  padding: 13px 40px;
  border-radius: 30px;
  display: inline-block;
  height: auto;
  width: auto;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 400;
  margin-top: 35px; }

section.about-rook {
  padding-top: 140px;
  padding-bottom: 100px;
  background-color: #fafafa; }

div.rook-quote {
  font-family: "Eksell", serif;
  font-size: 19px;
  padding: 0 131px; }

section.about-shred {
  padding-top: 80px;
  padding-bottom: 110px; }

/* Smartphones (portrait and landscape) ----------- */
@media screen and (min-width: 300px) and (max-width: 767px) {
  section.about-top {
    margin-top: 64px; }
    section.about-top div.about-bg {
      margin-top: -60px;
      padding-top: 85px;
      padding-bottom: 92px; }

  h1.boar-title {
    font-size: 35px;
    font-weight: 500;
    margin-top: 31px; }

  div.row-xs {
    padding: 0 49px;
    text-align: center; }

  div.row-xs-2 {
    padding: 0 39px;
    text-align: center; }

  div.row-xs-3 {
    padding: 0 28px;
    text-align: center; }

  a.shop-now {
    margin-top: 20px; }

  a.shop-now-xs {
    padding: 17px 43px; }

  section.about-boar {
    padding-bottom: 70px; }
    section.about-boar img.boar-sketch-1 {
      width: 82%;
      margin: 0 auto; }
    section.about-boar img.boar-render {
      width: 95%;
      margin: 0 auto;
      margin-top: 40px; }

  section.about-rook {
    padding-top: 40px;
    padding-bottom: 60px; }

  section.about-shred {
    padding-top: 40px;
    padding-bottom: 30px; }
    section.about-shred div.row-shred-xs {
      margin-top: 20px; }

  div.rook-quote {
    padding: 0 4px; } }
@media only screen and (min-width: 1800px) and (max-width: 4000px) {
  section.about-top div.about-bg {
    padding-bottom: 50px; }

  section.about-boar div.boar-quote {
    margin-top: 190px;
    font-size: 20px; } }
@media only screen and (min-width: 2800px) {
  section.about-top div.about-text {
    font-size: 30.1px;
    line-height: 2; }
  section.about-top h2.about-header {
    font-size: 80px; }

  section.about-boar h1.boar-title, section.about-rook h1.boar-title, section.about-shred h1.boar-title {
    font-size: 90px; }
  section.about-boar a.shop-now, section.about-rook a.shop-now, section.about-shred a.shop-now {
    border-radius: 48px;
    font-size: 28px; }
  section.about-boar img.about-boar, section.about-rook img.about-boar, section.about-shred img.about-boar {
    width: 1900px; }
  section.about-boar img.boar-img, section.about-rook img.boar-img, section.about-shred img.boar-img {
    width: 1900px; }
  section.about-boar div.rook-quote, section.about-rook div.rook-quote, section.about-shred div.rook-quote {
    font-size: 34px; }
  section.about-boar div.about-text, section.about-rook div.about-text, section.about-shred div.about-text {
    font-size: 30.1px;
    line-height: 2; }
  section.about-boar div.boar-quote, section.about-rook div.boar-quote, section.about-shred div.boar-quote {
    margin-top: 350px;
    font-size: 41px; } }
@media only screen and (min-width: 920px) and (max-width: 1190px) {
  section.about-boar div.boar-quote {
    font-size: 1em; } }
@media only screen and (min-width: 767px) and (max-width: 919px) {
  section.about-boar div.boar-quote {
    font-size: .9em; } }
@media only screen and (min-width: 2300px) {
  section.about-top {
    margin-top: 80px; }
    section.about-top h2.about-header {
      font-size: 40px; }
    section.about-top div.about-text {
      font-size: 18.1px;
      line-height: 1.5; } }
section.cart {
  margin: 132px;
  margin-left: 16%; }
  section.cart a {
    color: #c7d150; }
  section.cart p, section.cart label {
    font-family: "Montserrat", sans-serif; }
  section.cart label {
    font-size: 14px; }
  section.cart p.subtotal {
    font-family: "AgencyFBBlack", sans-serif;
    font-size: 20px;
    letter-spacing: .5px; }
  section.cart p.shipping {
    font-size: 12px; }
  section.cart table {
    font-family: "Montserrat", sans-serif;
    font-size: 19px;
    border-top: none;
    border-bottom: none;
    width: 92%; }
    section.cart table tr {
      border-bottom: 1px solid #d0d0d0;
      border-collapse: collapse; }
    section.cart table tr.head {
      border-bottom: none;
      border-top: none; }
    section.cart table td, section.cart table th {
      border-left: none;
      border-right: none;
      padding: 10px;
      width: 23.7%;
      height: 120px; }
    section.cart table td.content {
      padding: 10px; }
    section.cart table td.remove {
      border: 1px solid white;
      padding-left: 10px; }
  section.cart a.remove {
    font-size: 20px;
    font-weight: 600; }
  section.cart div.cart-note {
    margin-top: 20px; }
    section.cart div.cart-note textarea {
      border: 0.5px solid #b6b6b6;
      width: 400px;
      height: 124px;
      border-radius: 3px;
      font-size: 14px;
      display: block; }
  section.cart div.sub-total {
    margin-top: 20px;
    margin-right: 124px; }
  section.cart input.checkout {
    background-color: #c7d150;
    padding: 9px 45px;
    border-radius: 30px;
    display: inline-block;
    height: auto;
    width: auto;
    color: white;
    font-family: "AgencyFBBlack", sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px; }
  section.cart input.update.checkout {
    background-color: grey; }
  section.cart input.checkout :hover {
    opacity: .9; }
  section.cart h1.cart-title {
    margin-right: 7%; }

@media only screen and (min-width: 300px) and (max-width: 767px) {
  section.cart {
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 40px; }
    section.cart div.sub-total {
      width: 100%;
      margin-top: 20px; }
      section.cart div.sub-total p.subtotal {
        font-size: 26px; }
      section.cart div.sub-total p.subprice {
        font-size: 18px; }
      section.cart div.sub-total input.checkout {
        width: 263px;
        height: 50px;
        font-size: 16px; }
      section.cart div.sub-total input.checkout.update {
        margin-top: 10px;
        margin-bottom: 10px; }

  h1.cart-title {
    margin-top: 20px;
    margin-bottom: 30px;
    width: 100%; }

  div.cart-container {
    border-bottom: 1px solid #c3c3c3; }

  div.item-container {
    border-top: 1px solid #c3c3c3;
    padding-top: 26px;
    padding-bottom: 12px; }
    div.item-container a.item-image img {
      margin-bottom: 15px; }
    div.item-container p.variant-title {
      margin-left: 10px; }
    div.item-container div.price-xs {
      font-family: "Montserrat", sans-serif; }
    div.item-container a.item-title {
      font-family: "Montserrat", sans-serif; }
    div.item-container a.remove {
      font-family: "Montserrat", sans-serif;
      font-size: 14px; }

  p {
    margin-bottom: 11px; } }
@media only screen and (min-width: 768px) and (max-width: 900px) {
  section.cart {
    margin-left: 9%; }
    section.cart div.sub-total {
      margin-right: 5px; } }
@media only screen and (min-width: 1900px) {
  section.cart {
    padding-bottom: 80px; }
    section.cart h1.cart-title {
      margin-right: 11%; }

  section.login, section.cart {
    padding-bottom: 400px; }

  section.dealer-locator {
    padding-bottom: 60px !important; }

  section.dealer-signup {
    padding-bottom: 200px !important; }

  section.accessory {
    padding-bottom: 80px !important; } }
section.login {
  margin-top: 80px;
  margin-bottom: 36px; }
  section.login a {
    color: #c7d150;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 13px; }
  section.login p {
    font-family: "Montserrat", sans-serif; }
  section.login div.form {
    width: 400px;
    margin: 0 auto; }
  section.login div.login {
    width: 300px;
    margin: 0 auto; }
  section.login h1.login-title {
    text-transform: uppercase;
    margin: 0; }
  section.login input.login-submit {
    background-color: #c7d150;
    padding: 11px 45px;
    border-radius: 30px;
    width: 300px;
    color: white;
    font-family: "AgencyFBBlack", sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px; }
  section.login input.login-submit.register {
    margin-bottom: 5px; }
  section.login input.login-submit.activate {
    margin-bottom: 10px; }
  section.login input.login-submit.decline {
    background-color: grey; }
  section.login a.login-link.create {
    margin: 0;
    background-color: grey;
    padding: 9px 97px;
    border-radius: 30px;
    color: white;
    font-family: "AgencyFBBlack", sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    width: 100%; }
  section.login input.login {
    border-radius: 30px;
    margin: 10px 0; }
  section.login input.email {
    border-radius: 30px;
    width: 300px;
    display: block;
    margin: 0 auto; }
  section.login input.login-submit.password {
    margin: 10px 0; }
  section.login input.login.password {
    width: 300px;
    display: block;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px; }
  section.login a.login-link {
    margin: 20px 28px;
    font-size: 11px; }
  section.login a.login-link.left {
    margin-left: 0; }
  section.login a.login-link.right {
    margin-right: 0; }
  section.login div.lower-links {
    margin-top: 30px; }
  section.login div.regist-errors {
    font-family: "AgencyFBBlack", sans-serif; }
  section.login button.cancel {
    background-color: grey;
    padding: 9px 45px;
    border-radius: 30px;
    height: 40px;
    width: 300px;
    color: white;
    font-family: "AgencyFBBlack", sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px; }

div.errors {
  font-family: "Montserrat", sans-serif;
  color: red;
  margin-top: 10px; }
  div.errors ul {
    padding-left: 0;
    list-style: none; }

@media only screen and (min-width: 300px) and (max-width: 767px) {
  section.login {
    margin-top: 120px;
    margin-bottom: 60px; }
    section.login h1.login-title {
      margin: 20px 0; }
    section.login div.form {
      width: 375px;
      margin: 0 auto; } }
section.blog {
  padding-top: 120px; }
  section.blog h1.title {
    font-size: 55px;
    margin-bottom: 10px; }
  section.blog div.blog-post {
    border-bottom: 1px solid #c5c5c5;
    width: 60%;
    padding: 40px 0 20px 0;
    margin: 0 auto; }
    section.blog div.blog-post div.blog-image {
      width: 70%;
      height: 400px;
      overflow: hidden;
      margin: 0 auto; }
    section.blog div.blog-post h2.blog-title {
      letter-spacing: .5px; }
      section.blog div.blog-post h2.blog-title a {
        color: black; }
    section.blog div.blog-post p.date {
      font-family: "Montserrat", sans-serif; }
    section.blog div.blog-post p.content, section.blog div.blog-post p.more, section.blog div.blog-post p.written, section.blog div.blog-post p.author, section.blog div.blog-post p {
      font-family: "Montserrat", sans-serif;
      padding: 0 70px;
      font-size: 15px;
      line-height: 25px; }
      section.blog div.blog-post p.content a, section.blog div.blog-post p.more a, section.blog div.blog-post p.written a, section.blog div.blog-post p.author a, section.blog div.blog-post p a {
        color: grey;
        font-weight: 600; }
    section.blog div.blog-post div.wpb_wrapper {
      font-family: "Montserrat", sans-serif !important; }
      section.blog div.blog-post div.wpb_wrapper p {
        font-family: "Montserrat", sans-serif !important; }
    section.blog div.blog-post p.author {
      font-size: 16px;
      font-weight: 600; }
  section.blog div.paginate {
    width: 155px;
    margin: 0 auto;
    padding: 22px; }
    section.blog div.paginate span {
      padding: 0 5px; }
      section.blog div.paginate span a {
        color: grey; }

section.article {
  padding-top: 80px; }
  section.article div.post-image {
    width: 46%;
    height: 500px;
    overflow: hidden;
    margin: 0 auto; }
  section.article div.content {
    font-family: "Montserrat", sans-serif;
    padding: 0 18%;
    font-size: 15px;
    line-height: 25px;
    margin-top: 40px; }
    section.article div.content * {
      font-family: 'Montserrat' !important; }
    section.article div.content p, section.article div.content td {
      font-size: 16px; }
    section.article div.content img {
      max-width: 500px;
      margin: 0 auto;
      display: block;
      width: 100%; }
  section.article p.date {
    font-family: "Montserrat", sans-serif; }
  section.article p.written, section.article p.author {
    font-family: "Montserrat", sans-serif;
    padding: 0 70px;
    font-size: 15px;
    line-height: 25px; }
    section.article p.written a, section.article p.author a {
      color: grey;
      font-weight: 600; }
  section.article p.author {
    font-size: 16px;
    font-weight: 600; }
  section.article div.social-sharing {
    font-family: "Montserrat", sans-serif;
    margin: 0 auto;
    width: 265px;
    margin-top: 20px;
    margin-bottom: 30px; }
    section.article div.social-sharing a {
      padding: 0 5px;
      color: grey; }

@media only screen and (min-width: 300px) and (max-width: 767px) {
  section.blog h1.title {
    font-size: 40px;
    margin-bottom: 0; }
  section.blog div.blog-post {
    width: 100%; }
    section.blog div.blog-post div.blog-image {
      width: 100%; }
    section.blog div.blog-post p.content, section.blog div.blog-post p.more {
      padding: 0 30px; }

  section.article div.post-image {
    width: 100%;
    margin-top: 30px; }
  section.article div.content {
    padding: 0 10%; } }
@media only screen and (min-width: 1700px) {
  section.blog div.blog-post div.blog-image {
    width: 59%; }

  section.article div.post-image {
    width: 35%; } }
@media only screen and (min-width: 2800px) {
  section.blog {
    padding-top: 140px; }
    section.blog div.blog-post h2.blog-title {
      font-size: 40px; }
    section.blog div.blog-post div.blog-image {
      width: 40%; }
    section.blog div.blog-post p.content {
      font-size: 19px;
      line-height: 33px; }
    section.blog div.blog-post p.written, section.blog div.blog-post p.author {
      font-size: 20px; }

  section.article {
    padding-top: 140px; }
    section.article div.post-image {
      width: 24%; } }
section.account {
  margin-top: 80px;
  margin-bottom: 36px; }
  section.account a {
    color: #c7d150;
    font-family: "Montserrat", sans-serif;
    font-weight: 600; }
  section.account p, section.account label {
    font-family: "Montserrat", sans-serif; }
  section.account table {
    font-family: "Montserrat", sans-serif;
    margin-left: 27.5%; }
  section.account div.details {
    font-family: "Montserrat", sans-serif; }
  section.account button.edit, section.account input.button, section.account a.logout {
    background-color: #c7d150;
    padding: 11px 45px;
    border-radius: 30px;
    width: 200px;
    color: white;
    font-family: "AgencyFBBlack", sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px; }
  section.account a.logout {
    font-weight: 400; }
  section.account button.edit.delete {
    background-color: grey; }
  section.account div.form {
    width: 400px;
    margin: 0 auto; }

@media only screen and (min-width: 300px) and (max-width: 767px) {
  section.account {
    margin-top: 100px; }
    section.account table {
      margin-left: 0; }
    section.account div.form {
      width: 90%; } }
section.dealer-signup {
  padding-top: 40px;
  padding-bottom: 40px; }
  section.dealer-signup h2.title {
    margin-top: 40px; }
  section.dealer-signup input.dealer, section.dealer-signup input.submit {
    margin: 15px 0;
    border-radius: 0;
    font-family: "AgencyFBBlack", sans-serif;
    font-size: 17px;
    color: black;
    padding: 12px;
    border: 1px solid black;
    letter-spacing: .5px; }
  section.dealer-signup input::placeholder {
    color: black; }
  section.dealer-signup label {
    font-size: 12px; }
  section.dealer-signup ol {
    padding-left: 17px;
    margin-top: 75px; }
  section.dealer-signup iframe.video {
    width: 100%;
    height: 27vw;
    margin-top: 50px; }
    @media (max-width: 767px) {
      section.dealer-signup iframe.video {
        height: 52vw; } }
  section.dealer-signup select, section.dealer-signup select:focus {
    background-color: black;
    padding: 15px;
    font-family: "AgencyFBBlack", sans-serif;
    border-radius: 0;
    border: none;
    height: auto !important;
    outline: none;
    position: relative; }
  section.dealer-signup svg.arrow {
    color: white;
    position: absolute;
    top: 44px;
    right: 36px;
    font-size: 13px; }
  section.dealer-signup input.submit {
    border: none;
    background-color: #c7d150;
    width: 100%;
    padding: 19px; }
  section.dealer-signup h4.message {
    font-family: "Montserrat", sans-serif; }
  section.dealer-signup div.error {
    color: red;
    display: none; }
  section.dealer-signup a {
    color: #c7d150; }
  section.dealer-signup div#phone-error {
    font-size: 22px; }

div.pac-container.pac-logo div.pac-item {
  font-family: Helvetica; }

div.adp table {
  font-size: 20px !important; }

section.dealer-locator {
  padding: 50px;
  padding-top: 100px;
  padding-bottom: 25px; }
  section.dealer-locator div {
    font-family: Helvetica; }
  section.dealer-locator label {
    font-family: "AgencyFBBlack", sans-serif; }
  section.dealer-locator iframe.video {
    width: 100%;
    height: 25vw; }
    @media (min-width: 768px) {
      section.dealer-locator iframe.video.bottom {
        margin-top: 40px; } }
    @media (max-width: 767px) {
      section.dealer-locator iframe.video {
        height: 51vw;
        margin-bottom: 20px; } }
  section.dealer-locator div#map {
    width: 100%;
    height: 500px; }
  section.dealer-locator input#address, section.dealer-locator select#distance, section.dealer-locator select#category {
    border: 1px solid black;
    border-radius: 0;
    font-family: "AgencyFBBlack", sans-serif;
    color: black;
    padding: 10px 14px;
    height: 45px; }
  section.dealer-locator div#directions-container {
    display: none; }
    section.dealer-locator div#directions-container img#close-directions {
      cursor: pointer;
      width: 20px; }
    section.dealer-locator div#directions-container div#directions {
      height: 464px;
      overflow: scroll; }
  section.dealer-locator div.category {
    padding-right: 0; }
  section.dealer-locator button.submit {
    border: none;
    background-color: #c7d150;
    width: 100%;
    padding: 14px;
    margin-top: 31px;
    font-family: "AgencyFBBlack", sans-serif;
    letter-spacing: .8px; }
  section.dealer-locator div.dealer-container {
    cursor: pointer;
    padding: 10px; }
    section.dealer-locator div.dealer-container h4 {
      font-family: "AgencyFBBlack", sans-serif; }
    section.dealer-locator div.dealer-container div {
      font-size: 15px; }
    section.dealer-locator div.dealer-container div.num-box {
      background-color: black;
      padding: 3px 8px;
      font-weight: 600;
      margin-left: 17px;
      padding-right: 24px;
      padding-left: 8px; }
    section.dealer-locator div.dealer-container h4.dealer-title {
      font-size: 19px;
      margin-left: 24px;
      margin-top: 6px; }
    section.dealer-locator div.dealer-container div.location {
      margin-left: 42px; }
    section.dealer-locator div.dealer-container svg {
      font-size: 10px; }
    section.dealer-locator div.dealer-container div.website a, section.dealer-locator div.dealer-container div.directions a {
      color: black; }
    section.dealer-locator div.dealer-container div.website a:hover, section.dealer-locator div.dealer-container div.directions a:hover {
      font-weight: 600; }
  section.dealer-locator div.dealer-container-2 {
    background-color: #e4e4e4; }
  section.dealer-locator div.all-dealers-container {
    height: 500px;
    overflow: scroll; }

@media only screen and (min-width: 300px) and (max-width: 767px) {
  section.dealer-signup {
    padding-top: 60px; }
    section.dealer-signup svg.arrow {
      right: 30px; }
    section.dealer-signup select#business-type, section.dealer-signup select#years {
      margin-bottom: 15px; }
    section.dealer-signup label {
      font-size: 14px; }

  section.dealer-locator {
    padding: 0;
    padding-top: 100px;
    padding-bottom: 25px; }
    section.dealer-locator div#map {
      width: 96%;
      height: 500px;
      margin-bottom: 20px; }
    section.dealer-locator div.category {
      padding-right: 15px; }
    section.dealer-locator h1.dealer-title {
      text-align: center; }
    section.dealer-locator button.submit {
      margin-left: 15px;
      width: 92%; }
    section.dealer-locator input#address {
      margin-bottom: 20px; } }
@media only screen and (max-width: 1400px) {
  h4.dealer-title {
    margin-left: 30px !important; } }
@media only screen and (min-width: 2400px) {
  section.dealer-locator, section.dealer-signup {
    padding-top: 140px !important; } }
@media only screen and (min-width: 2800px) {
  section.dealer-locator, section.dealer-signup {
    padding-top: 130px; }
    section.dealer-locator div#map, section.dealer-locator div.all-dealers-container, section.dealer-signup div#map, section.dealer-signup div.all-dealers-container {
      height: 1000px; } }
section.accessory {
  padding-top: 100px;
  padding-bottom: 60px; }
  section.accessory button.add {
    background-color: #c7d150;
    padding: 9px 45px;
    border-radius: 30px;
    display: inline-block;
    height: auto;
    width: auto;
    font-family: "AgencyFBBlack", sans-serif;
    border: none;
    min-width: 300px; }
  section.accessory div.description {
    font-family: "Montserrat", sans-serif; }
  section.accessory h1.title {
    margin-top: 20px; }
  section.accessory label {
    min-width: 50px; }
  section.accessory ul {
    margin-left: 0;
    padding-left: 15px; }
  section.accessory select, section.accessory #Quantity {
    padding: 2px 10px;
    min-width: 120px;
    border: 1px solid black;
    border-radius: 15px;
    margin-left: 10px; }
  section.accessory #Quantity {
    width: 120px; }

@media screen and (min-width: 300px) and (max-width: 767px) {
  section.accessory {
    text-align: center; }
    section.accessory h1.title {
      margin-top: 20px; } }
section.buy-now {
  border-bottom: solid black 2px;
  padding-bottom: 86px; }
  @media (max-width: 991px) {
    section.buy-now {
      padding-bottom: 0; } }

div.buy-container {
  margin-top: 132px; }

div.buy-container.boar-shred {
  margin-top: 90px; }

div.price-box {
  position: relative;
  min-width: 282px; }
  div.price-box div.dollar-sign {
    font-size: 25px; }
  div.price-box div.price {
    font-size: 122px;
    line-height: 56px;
    padding-top: 39px;
    padding-right: 3px;
    padding-bottom: 16px;
    padding-left: 2px; }
  div.price-box div.price-area {
    font-size: 14px;
    padding-top: 65px;
    padding-left: 220px;
    margin-top: 14px; }
  div.price-box div.price-area-colt {
    padding-left: 200px; }

div.stripe-title-bg-xs {
  width: 132px; }

div.stripe-title-bg-xs.stripe-title-bg-xs-colt {
  width: 118px; }

div.free {
  font-size: 13px; }

div.shipping {
  font-size: 24px; }

img.boar-buy {
  margin-top: -72px;
  margin-left: 85px;
  width: 84%; }

img.boar-buy.boar {
  margin-top: -100px; }

img.shred-buy {
  margin-top: -72px;
  margin-left: 125px;
  height: 34vw; }

img.shred-buy.shred {
  margin-top: -110px; }
  @media (min-width: 768px) and (max-width: 1000px) {
    img.shred-buy.shred {
      margin-top: -60px; } }

img.warranty {
  width: 32px;
  margin-left: -26px;
  margin-top: 10px; }

img.warranty:hover {
  -webkit-filter: grayscale(1) brightness(0%);
  filter: grayscale(1) brightness(0%); }

div.warranty {
  width: 208px;
  margin-left: -70px;
  margin-top: 0px; }

div.warranty-text {
  font-size: 13px;
  width: 180px; }

div.strip-price-bg-2 {
  position: relative; }

div.stripe-title-bg-xs-shred {
  width: 156px; }

div.stripe-title-bg-xs-quad {
  width: 135px; }

div.stripe-title-rook.stripe-title-bg {
  height: 90px; }

div.setup {
  font-size: 13px;
  position: absolute;
  top: 0px;
  left: -60px; }

div.title {
  font-size: 97px;
  line-height: 119px;
  padding-left: 5px; }

div.title.title-shred {
  font-size: 80px;
  line-height: 92px;
  padding-left: 7px; }

div.setup-column {
  width: 220px; }

div.color-bar {
  height: 18px;
  width: 101%;
  margin-top: 3em; }

div.color-container {
  width: 101%;
  border: 2px solid black;
  cursor: pointer; }

div.color-text {
  color: white;
  font-size: 11px;
  padding-top: 3px; }

img.color-image, div.color-container div.swatch, div.xs-setup-container div.swatch {
  margin-top: 8px;
  width: 55px;
  border-radius: 37px; }
  @media (max-width: 767px) {
    img.color-image, div.color-container div.swatch, div.xs-setup-container div.swatch {
      width: 60px; } }

img.color-image-single {
  margin-top: 8px;
  width: 60px;
  border-radius: 30px; }

div.color-container.twist div.col-4 {
  border: 1px solid black; }

div.color-container div.swatch, div.xs-setup-container div.swatch {
  height: 55px;
  margin: 8px auto 0; }
  @media (max-width: 767px) {
    div.color-container div.swatch, div.xs-setup-container div.swatch {
      height: 60px; } }
  div.color-container div.swatch.black, div.xs-setup-container div.swatch.black {
    background-color: #151515; }
  div.color-container div.swatch.pink, div.xs-setup-container div.swatch.pink {
    background-color: #da679e; }
  div.color-container div.swatch.grey, div.xs-setup-container div.swatch.grey {
    background-color: #b2babd; }
  div.color-container div.swatch.white, div.xs-setup-container div.swatch.white {
    background-color: white;
    border: 1px solid black; }

div.color-description-1 {
  font-size: 13px; }

div.color-description-2 {
  font-size: 13px; }

div.selected-color {
  background-color: black;
  color: white; }

div.size-bar {
  height: 18px;
  width: 101%;
  margin-top: 46px; }

#shopify-section-product-colt-1 div.size-bar {
  margin-top: 28px; }

div.size-bar-lower {
  width: 101% !important; }

div.size-container {
  width: 101%;
  border: 2px solid black;
  cursor: pointer;
  height: 115px; }

div.battery-container {
  height: 135px;
  width: 101%;
  border: 2px solid black;
  cursor: pointer; }
  div.battery-container.three {
    height: 185px; }
    div.battery-container.three .col-4 {
      padding: 10px; }

div.size-container-inner-left {
  border-right: 2px solid black; }

div.size-container-inner-left, div.size-container-inner-right {
  height: 100%;
  width: 50%;
  padding: 10px 0; }

div.size-text {
  color: white;
  font-size: 11px;
  padding-top: 3px; }

svg.battery {
  font-size: 25px; }

svg.battery-xs {
  font-size: 45px;
  margin-top: 20px;
  color: #C5C5C5; }

div.size-small, div.size-large {
  font-size: 27px;
  letter-spacing: .5px; }

div.battery-small, div.battery-large {
  font-size: 22px;
  letter-spacing: .5px; }

img.icon-small {
  width: 35%; }

img.icon-large {
  width: 40%; }

div.size-small-description, div.size-large-description {
  font-size: 14px;
  margin-top: 3px;
  letter-spacing: .5px; }
  div.size-small-description small, div.size-large-description small {
    font-size: 9.5px;
    line-height: 1.2;
    display: inline-block;
    margin-top: 5px; }

div.size-small-description-2, div.size-large-description-2 {
  font-size: 9px;
  letter-spacing: .5px; }

div.sizing {
  background-color: black;
  width: 101%; }
  div.sizing a {
    width: 100%;
    height: 100%;
    color: white;
    font-size: 13px;
    line-height: 46px;
    letter-spacing: .5px; }

button.purchase {
  font-family: "AgencyFBBlack", sans-serif;
  margin-top: 44px;
  width: 49%;
  padding: 21px;
  background-color: #c4d22e;
  border: none;
  color: black;
  font-size: 14px;
  letter-spacing: .5px; }

button.skip {
  background-color: #a7a7a7; }

a.purchase {
  font-family: "AgencyFBBlack", sans-serif;
  margin-top: 44px;
  width: 101%;
  padding: 25px;
  background-color: #c4d22e;
  border: none;
  color: black;
  font-size: 16px;
  letter-spacing: .5px; }

a.purchase:hover {
  background-color: black;
  color: white; }

img.checkout-img {
  width: 100px; }

a.color-submit {
  width: 97%;
  padding: 21px;
  background-color: #c4d22e;
  border: none;
  color: black;
  font-size: 9px; }

a.warranty-link {
  color: black; }

h3.warranty-header {
  margin-top: 100px; }

.accessory-checkbox {
  display: none; }

.accessory-check {
  display: inline-block;
  border-radius: 50%;
  border: 5px solid rgba(0, 0, 0, 0.1);
  background: white;
  vertical-align: middle;
  margin-right: 10px;
  width: 2em;
  height: 2em;
  cursor: pointer;
  transition: border .3s ease;
  padding-top: 3px; }
  .accessory-check svg.icon {
    opacity: 0.2;
    color: transparent;
    transition: opacity .3s .1s ease;
    -webkit-text-stroke: 3px rgba(0, 0, 0, 0.5); }
  .accessory-check:hover {
    border: 5px solid rgba(0, 0, 0, 0.2); }

.accessory-checkbox:checked + .accessory-text .accessory-check {
  animation: check 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards; }
  .accessory-checkbox:checked + .accessory-text .accessory-check .icon {
    opacity: 1;
    transform: scale(0);
    color: white;
    -webkit-text-stroke: 0;
    animation: icon 0.3s cubic-bezier(1, 0.008, 0.565, 1.65) 0.1s 1 forwards;
    fill: black; }

@keyframes icon {
  from {
    opacity: 0;
    transform: scale(0.3); }

  to {
    opacity: 1;
    transform: scale(1); } }

@keyframes check {
  0% {
    width: 1.5em;
    height: 1.5em;
    border-width: 5px; }

  10% {
    width: 1.5em;
    height: 1.5em;
    opacity: 0.1;
    background: rgba(0, 0, 0, 0.2);
    border-width: 15px; }

  12% {
    width: 1.5em;
    height: 1.5em;
    opacity: 0.4;
    background: rgba(0, 0, 0, 0.1);
    border-width: 0; }

  50% {
    width: 2em;
    height: 2em;
    background: #C4D13F;
    border: 0;
    opacity: 0.6; }

  100% {
    width: 2em;
    height: 2em;
    background: #C4D13F;
    border: 0;
    opacity: 1; } }

div.modal-size {
  max-width: 835px;
  min-height: 500px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  padding: 5% 7%;
  position: relative;
  overflow: visible; }

p.modal-description {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 31px;
  padding-top: 15px;
  color: grey; }

h4.modal-size-guide {
  font-size: 16px;
  padding-top: 2em;
  padding-bottom: 1em; }

table {
  border-collapse: collapse;
  border: 1px solid white; }

table td, table th {
  border: 1px solid lightgrey;
  padding: 10px 30px;
  font-size: 11px; }

table tr:first-child th {
  border-top: 0; }

table tr:last-child td {
  border-bottom: 0; }

table tr td:first-child,
table tr th:first-child {
  border-left: 0; }

table tr td:last-child,
table tr th:last-child {
  border-right: 0; }

p.modal-small {
  padding-top: 3em;
  font-size: 12px;
  font-weight: 300; }

a.close {
  background-color: #c4d22e;
  height: 2em;
  width: 2em;
  z-index: 100;
  padding: 11px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  position: absolute;
  top: -22px;
  right: -22px;
  opacity: 1; }

a.close:hover {
  opacity: 1; }

a.warranty {
  margin-top: -70px; }

img.close-x {
  width: .65em; }

a.size-chart, a.color-chart {
  color: black; }

a.size-chart, a.color-chart :hover {
  color: black; }

div.selected-size {
  background-color: black;
  color: white; }

div.middle {
  margin-left: -8px;
  width: 100%; }
  div.middle input[type="radio"] {
    display: none; }
    div.middle input[type="radio"]:checked + .box {
      border: 5px solid #C4D13F; }
      div.middle input[type="radio"]:checked + .box span:before {
        transform: translateY(0px);
        opacity: 0; }
  div.middle div.left-box-color.left-box {
    background-color: black; }
    div.middle div.left-box-color.left-box span {
      color: white; }
  div.middle div.box.pink {
    background-color: #da679e; }
  div.middle div.box.grey {
    background-color: #b2babd; }
  div.middle div.box.white {
    background-color: white;
    border: 1px solid black; }
  div.middle div.right-box span, div.middle div.left-box span {
    color: black; }
  div.middle div.left-box.box.size, div.middle div.right-box.box.size {
    padding-top: 17px; }
  div.middle .box {
    border: 2px solid lightgrey;
    width: 249px;
    height: 130px;
    background-color: #fff;
    transition: all 300ms ease;
    will-change: transition;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    position: relative; }
    div.middle .box:active {
      transform: translateY(10px); }
    div.middle .box span {
      transform: translate(0, 60px);
      left: 0;
      right: 0;
      transition: all 300ms ease;
      font-size: 24px;
      user-select: none;
      color: #007e90; }
      div.middle .box span:before {
        font-size: 19px;
        display: block;
        transform: translateY(-80px);
        opacity: 0;
        transition: all 300ms ease-in-out;
        font-weight: normal;
        color: white; }
  div.middle .left-box span:before {
    content: '\f121'; }
  div.middle .right-box span:before {
    content: '\f0f4'; }

table.sizing, p.modal-small {
  font-family: "Montserrat", sans-serif; }

/* Smartphones (portrait and landscape) ----------- */
@media screen and (min-width: 300px) and (max-width: 767px) {
  div.setup-xs {
    font-size: 12px; }

  div.title.title-responsive {
    font-size: 60px;
    line-height: 50px;
    padding-top: 10px;
    padding-left: 4px; }

  div.stripe-price-bg {
    width: 131px; }

  div.shipping-responsive {
    font-size: 19px;
    margin-bottom: -12px; }

  div.setup.setup-responsive {
    top: 132px;
    left: 15px; }

  div.price.price-responsive {
    font-size: 53px; }

  div.dollar-sign {
    position: relative;
    top: -30px; }

  img.boar-buy.boar-buy-responsive {
    width: auto;
    height: 53vw;
    margin: 0 auto;
    display: block; }

  div.setup-header {
    background-color: black;
    font-size: 9px;
    margin-top: 40px;
    padding: 5px 0;
    font-weight: 600; }

  div.xs-setup-container {
    border: .5px solid black;
    height: 100px; }

  div.xs-setup-container {
    height: 100px; }

  div.size-circle {
    width: 65px;
    height: 65px;
    background-color: #c4d22e;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    margin: 0 auto;
    margin-top: 17px; }

  svg.plus-xs {
    margin-top: 22px;
    font-size: 22px; }

  img.color-image {
    width: 60px;
    border-radius: 30px; }

  div.color-description-1 {
    margin: 0;
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: .5px; }

  img.icon-small {
    width: 70px; }

  div.sizing {
    width: 98%;
    height: 50%;
    margin: 1px auto;
    background-color: #f2f2f2; }

  a#size-chart-link {
    color: black;
    font-size: 12px; }

  div#purchase-modal-xs {
    padding-top: 100px; }
    div#purchase-modal-xs img.checkout-img {
      width: 60px; }

  button.purchase {
    width: 100%;
    height: 100%;
    padding: 38px;
    letter-spacing: 1px; }

  a.purchase {
    font-family: "AgencyFBBlack", sans-serif;
    width: 100%;
    padding: 26px;
    background-color: #c4d22e;
    border: none;
    color: black;
    font-size: 14px;
    letter-spacing: .5px;
    line-height: 44px;
    margin-top: 0; }

  table td, table th {
    padding: 10px 21px; }

  div.modal-size {
    padding: 5%;
    padding-top: 75px;
    padding-bottom: 35px;
    margin-top: 70px; }

  div.middle .box {
    margin-left: 16px;
    padding-top: 16px; }

  a.color-submit {
    padding: 21px 112px;
    margin-top: 15px; }

  div.price-area {
    font-size: 13px;
    padding-left: 0;
    margin-top: -18px; }

  div.title-xs {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: .5px;
    padding-top: 3px; }

  p.modal-description {
    font-size: 11px; }

  img.icon-xs {
    margin-top: 22px; } }
@media only screen and (max-width: 580px) {
  div.warranty-text {
    font-size: 11px; }

  img.warranty {
    margin-left: 0px !important; } }
@media only screen and (min-width: 381px) and (max-width: 415px) {
  div.motor-container {
    height: 130em;
    width: 100%; } }
@media only screen and (min-width: 768px) and (max-width: 900px) {
  img.boar-buy.boar-buy-responsive {
    margin-left: 50px;
    width: 95%; }

  div.setup-column {
    margin-left: 15px; }

  div.color-bar, div.color-container, div.size-bar, div.size-container, div.sizing, a.purchase {
    width: 122%; }

  img.warranty {
    width: 40px; }

  a.warranty {
    margin-top: 30px; } }
@media only screen and (min-width: 770px) and (max-width: 1280px) {
  img.boar-buy {
    width: 88%; }

  div.stealth-bike.stealth-bike-responsive {
    width: 90.25%; }

  div.bike-description.bike-description-responsive {
    padding-top: 240px;
    padding-right: 75px; }

  div.price-box div.price {
    font-size: 110px;
    line-height: 48px;
    padding-top: 35px; }
  div.price-box div.price-area {
    padding-top: 52px;
    padding-left: 167px; } }
@media only screen and (min-width: 1281px) and (max-width: 1367px) {
  div.stealth-bike.stealth-bike-responsive {
    width: 90.68%; }

  img.title-img {
    max-width: none; }

  div.color-bar, div.color-container, div.size-bar, div.size-container, div.sizing, a.purchase, div.battery-container, img.title-img, div.size-bar-lower {
    width: 110% !important; }

  div.bike-description.bike-description-responsive {
    padding-top: 245px;
    padding-right: 112px; } }
@media only screen and (min-width: 1281px) and (max-width: 1350px) {
  img.boar-buy {
    width: 90%; } }
@media only screen and (min-width: 1000px) and (max-width: 1280px) {
  div.color-bar, div.color-container, div.size-bar, div.size-container, div.sizing, a.purchase, div.battery-container, img.title-img, div.size-bar-lower {
    width: 120% !important; }

  img.title-img {
    max-width: none; }

  div.desc {
    width: 30% !important; } }
@media only screen and (min-width: 1800px) and (max-width: 4000px) {
  div.price-box, div.setup-sm {
    margin-top: 2em; }

  img.boar-buy {
    width: 86%;
    margin-top: -90px; }

  img.shred-buy {
    height: 36vw; }

  div.setup {
    font-size: 17px;
    top: 30px;
    left: -80px; }

  img.title-img {
    max-width: none;
    width: 100%; }

  div.dollar-sign {
    font-size: 27px; }

  div.price {
    font-size: 80px;
    line-height: 75px; }

  div.price-area {
    font-size: 16px; }

  div.color-bar {
    height: 27px;
    margin-top: 4em; }

  div.color-text, div.size-text {
    font-size: 12px;
    padding-top: 5px; }

  div.size-container {
    height: 135px; }

  div.size-bar {
    height: 29px;
    margin-top: 2em; }

  div.sizing a {
    line-height: 60px; }

  img.icon-small {
    width: 40%; }

  img.icon-large {
    width: 44%; }

  button.purchase {
    margin-top: 50px;
    padding: 30px;
    font-size: 12px; }

  img.warranty {
    width: 40px; }

  div.warranty-text {
    font-size: 13px; } }
@media (min-width: 576px) {
  .container {
    max-width: none !important; } }
@media only screen and (min-width: 2800px) {
  section.buy-now {
    padding-top: 60px; }
    section.buy-now div.buy-container div.buy-container.boar-shred {
      margin-top: 132px; }
    section.buy-now div.buy-container div.price-box div.dollar-sign {
      font-size: 38px; }
    section.buy-now div.buy-container div.price-box div.price {
      font-size: 147px;
      line-height: 58px;
      padding-top: 50px;
      padding-bottom: 25px; }
    section.buy-now div.buy-container div.price-box div.price-area {
      font-size: 30px;
      padding-top: 90px;
      padding-left: 325px; }
    section.buy-now div.buy-container div.price-box div.price-area.price-area-colt {
      padding-left: 295px; }
    section.buy-now div.buy-container div.price-box div.free {
      font-size: 30px; }
    section.buy-now div.buy-container div.price-box div.shipping {
      font-size: 45px; }
    section.buy-now div.buy-container img.title-img {
      max-width: none;
      width: 100%; }
    section.buy-now div.buy-container img.boar-buy.boar {
      margin-top: -80px; }
    section.buy-now div.buy-container div.warranty {
      width: 300px;
      margin-left: -101px; }
    section.buy-now div.buy-container div.warranty-text {
      font-size: 25px;
      width: 300px; }
    section.buy-now div.buy-container div.setup {
      font-size: 30px;
      top: 35px;
      left: -147px; }
    section.buy-now div.buy-container div.color-container, section.buy-now div.buy-container div.battery-container, section.buy-now div.buy-container a.purchase {
      height: 200px; }
    section.buy-now div.buy-container div.size-container {
      height: 220px; }
    section.buy-now div.buy-container div.color-container, section.buy-now div.buy-container div.sizing, section.buy-now div.buy-container div.battery-container {
      margin-bottom: 50px !important; }
    section.buy-now div.buy-container div.color-bar, section.buy-now div.buy-container div.size-bar {
      height: 45px !important; }
    section.buy-now div.buy-container div.color-bar {
      height: 41px !important; }
    section.buy-now div.buy-container div.color-text, section.buy-now div.buy-container div.size-text {
      font-size: 27px; }
    section.buy-now div.buy-container img.color-image-single, section.buy-now div.buy-container img.color-image {
      width: 124px;
      border-radius: 70px;
      margin-top: 15px; }
    section.buy-now div.buy-container div.color-description-2, section.buy-now div.buy-container div.color-description-1 {
      font-size: 30px; }
    section.buy-now div.buy-container a.purchase {
      font-size: 40px !important;
      padding: 72px !important; }
    section.buy-now div.buy-container div.size-large-description, section.buy-now div.buy-container div.size-small-description, section.buy-now div.buy-container div.size-large-description-2, section.buy-now div.buy-container div.size-small-description-2 {
      font-size: 20px !important; }
    section.buy-now div.buy-container div.size-large, section.buy-now div.buy-container div.size-small {
      font-size: 59px !important; }
    section.buy-now div.buy-container svg.battery {
      font-size: 60px; }
    section.buy-now div.buy-container div.sizing a#size-chart-link {
      font-size: 22px;
      line-height: 80px; }
    section.buy-now div.buy-container div.modal.modal-size {
      max-width: 1800px; } }
@media only screen and (min-width: 768px) and (max-width: 1020px) {
  div.color-bar, div.color-container, div.size-bar, div.size-container, div.sizing, a.purchase, div.battery-container, img.title-img, div.size-bar-lower {
    width: 145% !important;
    max-width: none !important; }

  div.size-small-description, div.size-large-description {
    font-size: 13px; }

  img.boar-buy {
    margin-top: 0; } }
@media only screen and (min-width: 768px) and (max-width: 1190px) {
  div.color-description-2.color-boar {
    font-size: 9.5px; }

  div.size-small-description, div.size-large-description {
    font-size: 12px; }

  div#battery-text-left, div#battery-text-right {
    font-size: 17px; } }
@media only screen and (max-device-width: 812px) {
  div.warranty {
    width: 156px; }

  div.warranty-text {
    font-size: 10px;
    margin-left: 0px; }

  img.warranty {
    margin-left: 0px; } }
@media only screen and (min-width: 4000px) {
  section.buy-now {
    padding-top: 160px; }
    section.buy-now img.boar-buy {
      margin-top: -172px; }
    section.buy-now div.buy-container div.setup {
      top: -3px; }
    section.buy-now div.buy-container div.color-bar {
      margin-top: 190px; }
    section.buy-now div.buy-container div.size-bar {
      margin-top: 120px; } }
@media only screen and (min-width: 550px) and (max-width: 767px) {
  div.warranty-container {
    margin-left: 10% !important; } }
@media only screen and (min-width: 2400px) {
  section.buy-now div.buy-container.boar-shred {
    margin-top: 140px; }

  section.blog, section.article {
    padding-top: 140px; } }
@media (max-width: 991px) {
  #esc-oos-form-app {
    padding: 0 10px; } }
#esc-oos-form-app span, #esc-oos-form-app div, #esc-oos-form-app p {
  font-family: "Montserrat", sans-serif; }
#esc-oos-form-app input#phone {
  margin-top: 4px !important; }
#esc-oos-form-app input {
  padding-left: 5px; }
#esc-oos-form-app #esc-out-of-stock-subtitle {
  font-size: 13px;
  padding: 0 5px; }
#esc-oos-form-app .esc-out-of-stock-title {
  font-size: 17px !important; }
#esc-oos-form-app #esc-out-of-stock-inputs {
  padding: 10px 5px; }
#esc-oos-form-app button {
  background-color: #c7d150 !important;
  font-family: AgencyFBBlack,sans-serif;
  color: white;
  text-transform: uppercase; }
  #esc-oos-form-app button:hover {
    background-color: black !important; }

section.buy-now #esc-oos-form-app div.esc-out-of-stock-subtitle {
  display: none; }

section.motor {
  border-bottom: solid #000000 2px; }

div.motor-container {
  height: 830px; }

div.text-container {
  margin-left: 180px; }

h1 {
  font-size: 40px;
  line-height: 37px;
  margin: 0 0 0.67em;
  font-weight: 500; }

div.motor-description {
  font-size: 17px;
  line-height: 26px;
  font-family: "Montserrat",sans-serif !important;
  color: #7d7d7d;
  width: 69%; }

div.motor-icon {
  width: 30px; }

div.motor-icon.motor-icon-colt {
  margin-top: 55px; }

div.range {
  height: 24px; }

div.speed {
  height: 25px; }

div.weight {
  height: 32px; }

div.icon-description {
  font-size: 14px;
  vertical-align: super; }
  div.icon-description p {
    margin: 0; }

div.specs {
  margin-top: 60px; }

div.specs.specs-colt {
  margin-top: 150px; }

div.stealth-bike.shred-bike {
  height: 120%;
  width: 81.5%;
  margin-left: 143px;
  margin-top: 52px; }

a.tech-specs {
  background-color: #c4d22e;
  color: white;
  font-size: 13px;
  padding: 20px 30px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  letter-spacing: .5px; }

div.featured-container {
  margin-right: 125px;
  margin-top: -20px; }

div.featured {
  color: #c7c7c7;
  font-size: 10px;
  vertical-align: super;
  font-family: "Montserrat", sans-serif;
  font-weight: 600; }

div.featured-icon {
  height: 20px;
  width: 70px; }

@media only screen and (min-width: 300px) and (max-width: 767px) {
  div.text-container {
    margin: 0; }

  h1.motor-header {
    letter-spacing: 1px;
    font-weight: 500; }

  div.motor-description {
    font-weight: 300;
    font-size: 12px;
    color: #979797;
    padding: 0 27px;
    line-height: 26px;
    width: 85%;
    margin: 0 auto; }

  div.motor-icon {
    height: 30px;
    margin: 0 auto; }

  div.speed {
    width: 37px; }

  div.weight {
    width: 33px;
    height: 35px; } }
@media only screen and (min-width: 435px) and (max-width: 766px) {
  img.stealth-bike {
    margin-left: 0px !important; } }
@media only screen and (min-width: 768px) and (max-width: 900px) {
  div.motor-container {
    height: 716px; } }
@media only screen and (min-width: 1800px) and (max-width: 3000px) {
  div.motor-container {
    height: 1085px; }
    div.motor-container div.text-container {
      margin-left: 250px; }
    div.motor-container h1.motor-header {
      line-height: 1;
      font-size: 48px; }
    div.motor-container div.motor-description {
      font-size: 15px;
      line-height: 2; }
    div.motor-container div.motor-icon {
      width: 45px; }
    div.motor-container div.range {
      height: 36px; }
    div.motor-container div.speed {
      height: 37px; }
    div.motor-container div.weight {
      height: 48px; }
    div.motor-container a.tech-specs {
      font-size: 13px;
      padding: 26px 45px;
      border-radius: 45px;
      -webkit-border-radius: 45px;
      -moz-border-radius: 45px; } }
@media only screen and (min-width: 2700px) {
  div.motor-container {
    height: 1750px; }

  div.text-container {
    margin-left: 150px; }
    div.text-container h1.motor-header {
      font-size: 88px;
      line-height: 84px;
      margin-top: 450px; }
    div.text-container div.motor-description {
      font-size: 36px;
      line-height: 2; }
    div.text-container div.icon-description {
      font-size: 30px;
      padding-left: 30px; }
    div.text-container div.motor-icon {
      width: 78px; }
    div.text-container div.range, div.text-container div.speed {
      height: 65px; }
    div.text-container div.weight {
      height: 84px; }
    div.text-container div.specs {
      margin-top: 180px; }
      div.text-container div.specs a {
        font-size: 28px;
        border-radius: 80px;
        -webkit-border-radius: 80px;
        -moz-border-radius: 80px;
        padding: 40px 80px; }
    div.text-container div.featured-container {
      margin-right: 324px; }
      div.text-container div.featured-container div.featured {
        font-size: 22px; }
      div.text-container div.featured-container div.featured-icon {
        height: 50px;
        width: 176px; } }
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  section.motor div.motor-container {
    height: 700px; }
    section.motor div.motor-container div.motor-description {
      font-size: 14px;
      width: 80%; }
  section.motor div.specs.specs-colt, section.motor div.specs {
    margin-top: 60px; }
  section.motor div.specs {
    margin-top: 40px; }
  section.motor div.featured-container {
    margin-right: 31px; } }
@media only screen and (min-width: 768px) and (max-width: 1000px) {
  section.motor div.motor-container {
    height: 650px; }
    section.motor div.motor-container div.text-container {
      margin-left: 150px; }
      section.motor div.motor-container div.text-container div.motor-description {
        width: 95%;
        font-size: 12px; }
  section.motor div.motor-icon.motor-icon-colt {
    margin-top: 20px; } }
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  section.motor div.text-container {
    font-size: .3em !important; } }
section.stealth-design {
  padding-bottom: 133px;
  position: relative; }

section.stealth-design.colt {
  padding-bottom: 96px; }

section.stealth-design.shred {
  padding-bottom: 20px; }

html, body {
  overflow-x: hidden;
  width: 100%; }

div.stealth-text-container {
  margin-top: 80px; }

h1.stealth-header {
  color: white;
  letter-spacing: 1px;
  font-weight: 400; }

h1.stealth-header.stealth-header-colt-xs {
  margin-top: 70px; }

h1.stealth-header.stealth-header-rook-xs {
  margin-top: 40px; }

div.stealth-description {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.3;
  color: white; }

img.kryptek-logo {
  width: 120px; }

img.stealth-bike {
  width: 100%;
  margin-top: 20px;
  position: relative; }

img.stealth-bike.boar {
  margin-top: 50px; }

img.stealth-bike.colt {
  margin-top: 200px; }

div.kryptek {
  position: absolute;
  top: 40%;
  right: 17%;
  font-size: 10px; }

div.view-specs {
  margin-top: 70px; }

a.view-tech-specs {
  background-color: #c4d22e;
  color: white;
  font-size: 13px;
  padding: 20px 30px;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  letter-spacing: .5px; }

a.tech-specs:hover {
  background-color: black;
  color: white; }

a.view-tech-specs:hover {
  background-color: white;
  color: black; }

div.bike-description {
  color: white;
  font-size: 10px;
  padding-top: 252px;
  padding-right: 132px; }

div.stealth-bike {
  height: 113%;
  width: 91.5%;
  margin-left: 74px; }

div.stealth-bike.colt-bike {
  height: 85%;
  width: 87.5%;
  margin-left: 101px;
  margin-top: 115px; }

div.stealth-bike.rook-bike {
  height: 120%;
  width: 87.5%;
  margin-left: 101px;
  margin-top: -32px; }

img.stealth-bike.colt-bike.colt-bike-xs {
  margin-top: -17px; }

img.stealth-bike.rook-bike.rook-bike-xs {
  margin-top: -113px; }

img.stealth-bike.shred-bike.shred-bike-xs {
  margin-top: -70px; }

@media only screen and (min-width: 374px) and (max-width: 767px) {
  section.stealth-design {
    padding-bottom: 100px; }

  img.stealth-bike {
    margin-left: 8px;
    margin-top: -28px;
    width: 102%;
    max-width: none; }

  img.kryptek-logo {
    width: 90px;
    margin-top: -20px; }

  div.stealth-text-container {
    margin-top: 30px; }

  h1.stealth-header {
    line-height: 36px;
    max-width: 55%;
    margin: 0 auto; }

  div.stealth-description {
    font-size: 12px;
    padding: 0 12px;
    line-height: 26px; }

  div.range {
    width: 37px; } }
@media only screen and (min-width: 300px) and (max-width: 376px) and (max-height: 767px) {
  div.feature-title-container.feature-title-xs {
    padding-top: 100px; } }
@media only screen and (min-width: 359px) and (max-width: 361px) and (max-height: 651px) {
  img.stealth-bike.colt-bike.colt-bike-xs {
    margin-left: 15px; }

  div.motor-icon.range {
    width: 38px; }

  img.stealth-bike.stealth-bike-responsive {
    margin-left: 15px; }

  div.stealth-text-container {
    margin-top: 20px; }

  div.bike-spec.bike-spec-responsive, div.bike-spec.bike-spec-responsive.bike-spec-boar {
    height: 54%; }

  div.bike-spec.bike-spec-responsive.bike-spec-shred {
    height: 53%; } }
@media only screen and (min-width: 768px) and (max-width: 900px) {
  div.stealth-bike.stealth-bike-responsive.colt-bike, div.stealth-bike.stealth-bike-responsive.rook-bike {
    margin-left: 85px; }

  div.stealth-bike.stealth-bike-responsive {
    margin-left: 63px; }

  div.stealth-bike.stealth-bike-responsive.shred-bike {
    margin-left: 118px; }

  div.bike-description {
    padding-top: 244px;
    padding-right: 38px; }

  div.battery-container {
    width: 122%; } }
@media only screen and (min-width: 1023px) and (max-width: 1025px) {
  div.stealth-bike.stealth-bike-responsive.colt-bike, div.stealth-bike.stealth-bike-responsive.rook-bike {
    margin-left: 86px; }

  div.stealth-bike.stealth-bike-responsive.shred-bike {
    margin-left: 119px; }

  div.stealth-bike.stealth-bike-responsive {
    margin-left: 72px; }

  div.circle-4.circle-4-shred.circle-absolute {
    top: 8%; } }
@media only screen and (min-width: 1510px) and (max-width: 1799px) {
  section.stealth-design div.stealth-bike.stealth-bike-responsive.colt-bike {
    height: 95%;
    width: 81.5%;
    margin-left: 176px;
    margin-top: 115px; } }
@media only screen and (min-width: 1800px) and (max-width: 3000px) {
  section.stealth-design.colt {
    padding-bottom: 277px; }

  section.stealth-design.shred {
    padding-bottom: 337px; }

  section.stealth-design {
    padding-bottom: 164px; }
    section.stealth-design h1.stealth-header {
      font-size: 48px;
      line-height: 42px; }
    section.stealth-design div.stealth-description {
      font-size: 17px;
      line-height: 35px; }
    section.stealth-design img.kryptek-logo {
      width: 171px; }
    section.stealth-design img.stealth-bike {
      margin-left: 21.5%; }
    section.stealth-design a.view-tech-specs {
      font-size: 13px;
      padding: 26px 45px;
      border-radius: 45px;
      -webkit-border-radius: 45px;
      -moz-border-radius: 45px; }
    section.stealth-design div.bike-description {
      font-size: 10px;
      padding-top: 350px;
      padding-right: 170px; }
    section.stealth-design div.stealth-bike {
      height: 142%;
      width: 94%;
      margin-left: 71px; }
    section.stealth-design div.stealth-bike.colt-bike {
      height: 114%;
      width: 74%;
      margin-left: 256px;
      margin-top: 140px; } }
@media only screen and (min-width: 2700px) {
  section.stealth-design.colt {
    padding-bottom: 155px; }

  section.stealth-design {
    margin-top: -110px;
    padding-top: 200px;
    padding-bottom: 604px; }
    section.stealth-design div.stealth-text-container {
      margin-top: 320px; }
    section.stealth-design div.stealth-bike {
      height: 149%;
      width: 85%;
      margin-left: 295px;
      margin-top: -200px; }
    section.stealth-design div.motor-icon {
      width: 78px; }
    section.stealth-design div.range, section.stealth-design div.speed {
      height: 63px; }
    section.stealth-design div.weight {
      height: 85px; }
    section.stealth-design div.icon-description {
      font-size: 30px; }
    section.stealth-design img.stealth-bike.colt, section.stealth-design img.stealth-bike.rook {
      margin-left: 21%; }
    section.stealth-design div.bike-description {
      color: white;
      font-size: 24px;
      padding-top: 658px;
      padding-right: 324px; }
    section.stealth-design h1.stealth-header {
      font-size: 88px;
      line-height: 80px; }
    section.stealth-design div.stealth-description {
      font-size: 36px;
      line-height: 70px; }
    section.stealth-design img.kryptek-logo {
      width: auto; }
    section.stealth-design div.view-specs {
      margin-top: 180px; }
      section.stealth-design div.view-specs a {
        font-size: 28px;
        border-radius: 80px;
        -webkit-border-radius: 80px;
        -moz-border-radius: 80px;
        padding: 40px 80px; } }
/*Responsive Styles*/
@media screen and (min-width: 1600px) and (max-width: 1800px) {
  section.stealth-design.colt {
    padding-bottom: 160px; }

  section.stealth-design {
    padding-bottom: 154px; }

  section.stealth-design.shred {
    padding-bottom: 266px; } }
@media only screen and (min-width: 768px) and (max-width: 1050px) {
  div.stealth-bike, div.stealth-bike.colt-bike {
    margin-left: 76px; }

  div.stealth-text-container {
    width: 118%; }
    div.stealth-text-container div.stealth-description {
      font-size: 15px; }

  div.feature-description {
    font-size: 9px !important; }

  div.kryptek {
    top: 42%;
    right: 16%;
    font-size: 8px; } }
section.features {
  padding-bottom: 75px;
  background-color: #f1f1f1; }

section.features.features-colt {
  padding-bottom: 100px; }

div.feature-title-container {
  padding-top: 130px;
  letter-spacing: 1px; }

div.feature-description {
  font-family: "Montserrat", sans-serif;
  font-size: 11.6px;
  font-weight: 300;
  line-height: 16px;
  padding-top: 37px; }

div.row-feature-images {
  padding: 20px 190px 10px 190px; }

div.row-feature-images-colt {
  padding: 20px 5% 10px 5%; }

div.image-col {
  width: 85%; }
  div.image-col img {
    width: 100%; }

div.description-col {
  padding-right: 190px;
  font-size: 7px;
  color: #7d7d7d; }

div.desc {
  font-family: "Montserrat", sans-serif;
  background-color: #f1f1f1;
  margin: 0 auto;
  text-align: center;
  width: 26%;
  margin-top: -7px;
  font-size: 9px; }

div.outline {
  border-bottom: .6px solid #7d7d7d;
  border-left: .6px solid #7d7d7d;
  border-right: .6px solid #7d7d7d;
  margin: 0 auto;
  height: 10px;
  width: 50%; }

@media only screen and (min-width: 300px) and (max-width: 767px) {
  div.feature-title-container {
    padding-top: 30px; }

  div.feature-description {
    font-size: 12px;
    color: #8c8c8c;
    line-height: 20px;
    margin-bottom: 15px; }

  div.image-title {
    font-size: 10px; }

  div.description-col {
    margin-top: -20px; }

  div.outline {
    width: 51%; }

  div.desc {
    width: 29%;
    font-size: 8px; } }
@media only screen and (min-width: 768px) and (max-width: 900px) {
  div.row-feature-images {
    padding: 20px 140px 10px 140px; }

  div.description-col {
    padding-right: 140px; }

  div.feature-title-container {
    padding-top: 88px; } }
@media only screen and (min-width: 1800px) and (max-width: 3000px) {
  h1.feature-title {
    font-size: 48px;
    line-height: 42px; }

  div.feature-description {
    font-size: 13.6px;
    line-height: 25px;
    padding-top: 33px; }

  div.image-title {
    font-size: 14px; }

  div.desc {
    font-size: 11px;
    margin-top: -9px; }

  h1.specs-title {
    font-size: 48px;
    line-height: 42px; }

  div.spec.spec-responsive {
    font-size: 12px;
    line-height: 38px; }

  div.spec.selected {
    font-size: 12px; }

  div.bike-spec.bike-spec-responsive {
    width: 82%;
    height: 103.5%; }

  div.modal-spec table {
    font-size: 15px !important; }

  div.circle-text.circle-text-resp {
    font-size: 13px;
    margin-left: -26px; }

  span.selector-dot {
    padding: 1.1px 8px; }

  section.features div.image-col img {
    width: 666px; } }
@media only screen and (min-width: 2800px) {
  section.features {
    padding-bottom: 140px; }
    section.features div.feature-title-container h1.feature-title {
      font-size: 88px;
      line-height: 76px;
      padding-top: 67px; }
    section.features div.feature-title-container div.feature-description {
      font-size: 27.6px;
      line-height: 40px;
      padding-top: 135px; }
    section.features div.image-col img {
      width: 865px; }
    section.features div.image-title {
      font-size: 38px; }
    section.features div.desc {
      margin-top: -22px;
      font-size: 30px; }
    section.features div.row-feature-images-colt div.image-col img {
      width: 1100px; } }
section.key-specs {
  padding-bottom: 72px;
  background-color: #ffffff; }

h1.spec-title {
  font-weight: 500; }

div.spec-row {
  padding-top: 20px; }

div.spec-text {
  padding-left: 140px; }

h1.specs-title {
  letter-spacing: 1px; }

div.spec {
  font-size: 12px;
  line-height: 30px;
  letter-spacing: .5px;
  display: inline-block; }

div.circle {
  width: 65px;
  height: 65px;
  background-color: #c4d22e;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  margin-top: 135px; }

div.circle:hover {
  background-color: black; }
  div.circle:hover img.settings {
    filter: invert(100%); }

img.settings {
  margin: 0 auto;
  width: 20px;
  padding-top: 22.5px; }

div.circle-text {
  font-size: 13px;
  margin-left: -20px; }

div.bike-spec {
  height: 603px;
  position: relative; }

div.circle-absolute {
  position: absolute; }

div.circle-1 {
  top: 2%;
  left: 56%; }
  div.circle-1.circle-1-quad {
    top: 54%;
    left: 24%; }
  div.circle-1.circle-1-boar-x {
    top: 4%;
    left: 54%; }
  div.circle-1.circle-1-werk {
    top: 59%;
    left: 29%; }
    @media (max-width: 991px) {
      div.circle-1.circle-1-werk {
        top: 67; } }
  div.circle-1.circle-1-twist {
    top: 66%;
    left: 23%; }
    @media (max-width: 991px) {
      div.circle-1.circle-1-twist {
        top: 63%; } }
  div.circle-1.circle-1-colt {
    top: 3%;
    left: 59%; }
  div.circle-1.circle-1-shred {
    top: 65%;
    left: 20%; }

div.circle-2 {
  top: 70%;
  left: 54%; }
  div.circle-2.circle-2-quad {
    top: 76%;
    left: 58%; }
  div.circle-2.circle-2-boar-x {
    top: 81%;
    left: 54%; }
  div.circle-2.circle-2-werk {
    top: 79%;
    left: 61%; }
    @media (max-width: 767px) {
      div.circle-2.circle-2-werk {
        top: 45%; } }
  div.circle-2.circle-2-colt {
    top: 81%;
    left: 59%; }
  div.circle-2.circle-2-colt-xs {
    top: 60%;
    left: 5%; }
  div.circle-2.circle-2-shred {
    top: 73%;
    left: 55%; }
    @media (max-width: 767px) {
      div.circle-2.circle-2-shred {
        left: 53%;
        top: 35%; } }

div.circle-3 {
  top: 59%;
  left: 79%; }
  div.circle-3.circle-3-quad {
    top: 59%;
    left: 74%; }
  div.circle-3.circle-3-boar-x {
    top: 59%;
    left: 74%; }
  div.circle-3.circle-3-werk {
    top: 69%;
    left: 73%; }
  div.circle-3.circle-3-colt {
    top: 69%;
    left: 70%; }
  div.circle-3.circle-3-shred {
    top: 69%;
    left: 71%; }

div.circle-4 {
  top: 61%;
  left: 16%; }
  div.circle-4.circle-4-quad {
    top: 5% !important;
    left: 58% !important; }
  div.circle-4.circle-4-werk {
    top: 4% !important;
    left: 58% !important; }
  div.circle-4.circle-4-colt {
    top: 25%;
    left: 22%; }
  div.circle-4.circle-4-colt-xs {
    top: 15%;
    left: 23%; }
  div.circle-4.circle-4-shred {
    top: 0%;
    left: 58%; }
  div.circle-4.circle-4-boar-x {
    top: 53%;
    left: 19%; }

div.circle-5 {
  top: 58%;
  left: 69%; }
  div.circle-5.circle-5-boar {
    top: 65%;
    left: 21%; }
  div.circle-5.circle-5-boar-x {
    top: 57%;
    left: 16%; }
  div.circle-5.circle-3-colt {
    top: 40%;
    left: 64%; }
  div.circle-5.circle-5-quad {
    top: 57%;
    left: 21%; }
  div.circle-5.circle-5-werk {
    top: 65%;
    left: 21%; }
  div.circle-5.circle-5-twist {
    top: 64%;
    left: 19%; }
  div.circle-5.circle-3-colt-xs {
    top: 39%;
    left: 58%; }

div.circle-5.circle-3-shred {
  top: 59%;
  left: 12%; }

div.circle-6 {
  top: 64%;
  left: 8%; }
  div.circle-6.circle-6-shred {
    top: 5%;
    left: 62%; }
  div.circle-6.circle-6-boar-x {
    top: 58%;
    left: 55%; }
  div.circle-6.circle-6-quad {
    top: 8%;
    left: 62%; }
  div.circle-6.circle-6-werk {
    top: 7%;
    left: 63%; }
  div.circle-6.circle-6-colt {
    top: 75%;
    left: 20%; }
  div.circle-6.circle-6-colt-xs {
    top: 76%;
    left: 22%; }
  div.circle-6.circle-6-twist {
    top: 41%;
    left: 64%; }
  div.circle-6.circle-6-rook {
    top: 66%;
    left: 18%; }

div.circle-7.circle-7-shred {
  left: 60%;
  top: 35%; }
  @media (max-width: 767px) {
    div.circle-7.circle-7-shred {
      top: 73%;
      left: 55%; } }
div.circle-7.circle-7-rook {
  left: 66%;
  top: 7%; }
div.circle-7.circle-7-boar {
  top: 19%;
  left: 24%; }
div.circle-7.circle-7-boar-x {
  top: 20%;
  left: 31%; }
div.circle-7.circle-7-quad {
  top: 38%;
  left: 62%; }
div.circle-7.circle-7-werk {
  top: 37%;
  left: 62%; }
  @media (max-width: 767px) {
    div.circle-7.circle-7-werk {
      top: 52%;
      left: 81%; } }

div.circle-8.circle-8-shred {
  left: 24%;
  top: 18%; }
div.circle-8.circle-8-boar {
  top: 30%;
  left: 80%; }
div.circle-8.circle-8-boar-x {
  top: 30%;
  left: 80%; }
div.circle-8.circle-8-quad {
  left: 28%;
  top: 18%; }
div.circle-8.circle-8-werk {
  left: 32%;
  top: 23%; }
div.circle-8.circle-8-twist {
  left: 27%;
  top: 26%; }
div.circle-8.circle-8-colt {
  left: 15%;
  top: 64%; }
div.circle-8.circle-8-colt {
  left: 15%;
  top: 64%; }

div.circle-9.circle-9-boar {
  top: 23%;
  left: 9%; }
div.circle-9.circle-9-boar-x {
  top: 7%;
  left: 62%; }
div.circle-9.circle-9-werk {
  top: 36%;
  left: 21%; }
div.circle-9.circle-9-twist {
  top: 29%;
  left: 59%; }
div.circle-9.circle-9-colt {
  left: 10%;
  top: 38%; }

div.circle-10-twist {
  top: 69%;
  left: 42%; }
  @media (max-width: 991px) {
    div.circle-10-twist {
      top: 62%;
      left: 42%; } }

div.circle-10-werk {
  top: 26%;
  left: 67%; }

div.circle-plus {
  width: 30px;
  height: 30px;
  background-color: #c4d22e;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  padding-top: 4px; }

svg.plus {
  margin: 0 auto;
  padding-top: 7px; }

div.circle-black {
  width: 40px;
  height: 40px;
  background-color: black;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  padding-top: 9px;
  margin-left: -5px;
  margin-top: -5px; }

svg.minus {
  color: white;
  margin: 0 auto;
  padding-top: 8px; }

a.close-modal {
  display: none !important; }

div.selected {
  color: black; }

span.selector-dot {
  background-color: #c4d22e;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  padding: 0px 7px;
  margin-left: -22px;
  opacity: 0; }

div.modal-spec {
  max-width: 1400px;
  min-height: 650px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  position: relative;
  overflow: visible;
  margin-top: 30px; }
  div.modal-spec .modal-spec-header {
    width: 100%;
    height: 50px;
    background-color: black;
    padding: 1.1% 25%; }
  div.modal-spec .modal-spec-body {
    padding: 50px; }
    div.modal-spec .modal-spec-body h4 {
      font-size: 14px;
      font-weight: 500; }
    div.modal-spec .modal-spec-body p {
      font-family: "Montserrat", sans-serif;
      font-size: 12px;
      font-weight: 400; }
  div.modal-spec .spec-footer {
    background-color: black;
    padding-bottom: 20px; }
  div.modal-spec span.specs {
    color: white; }
  div.modal-spec span.specs-yellow {
    color: #c4d22e; }
  div.modal-spec table {
    border: 1px inset black;
    outline: 0;
    font-size: 11px;
    color: #8b8b8b;
    vertical-align: baseline;
    background: transparent; }
    div.modal-spec table th, div.modal-spec table tr, div.modal-spec table td {
      border: 1px solid black;
      padding: 6px 20px;
      font-size: 11.6px;
      font-family: "Montserrat", sans-serif; }
    div.modal-spec table th.spec-header {
      font-weight: 600;
      color: white;
      font-family: "AgencyFBBlack", sans-serif; }
    div.modal-spec table td.first {
      font-weight: 600;
      color: #c4d22e;
      font-family: "AgencyFBBlack", sans-serif; }

@media only screen and (min-width: 300px) and (max-width: 767px) {
  section.key-specs div.spec-row div.circle-3 {
    top: 56%;
    left: 62%; }
  section.key-specs div.spec-row div.circle-4 {
    top: 50%;
    left: 12%; }
  section.key-specs div.spec-row div.circle-5.circle-5-boar {
    top: 61%; }
  section.key-specs div.spec-row div.circle-4.circle-4-shred {
    top: 6%;
    left: 50%; }
  section.key-specs div.spec-row div.circle-4.circle-4-colt {
    top: 22%;
    left: 27%; }
  section.key-specs div.spec-row div.circle-3.circle-3-colt {
    top: 63%;
    left: 70%; }
  section.key-specs div.spec-row div.circle-6.circle-6-colt-xs {
    left: 23%;
    top: 64%; }
  section.key-specs div.spec-row div.circle-2.circle-2-colt-xs {
    top: 71%;
    left: 55%; }
  section.key-specs div.spec-row div.circle-7.circle-7-colt-xs {
    top: 31%;
    left: 61%; }

  h1.specs-header {
    font-weight: 300; }

  div.spec-row {
    padding-top: 70px; }

  div.bike-spec {
    width: 96%;
    height: 56%;
    position: relative;
    margin-left: 10px; }

  div.view-specs-xs {
    background-color: black;
    margin-top: 20px;
    padding: 20px;
    width: 90%;
    margin: 0 auto; }

  a.tech-specs-xs {
    color: white;
    font-size: 12px; }

  svg.plus {
    padding: 3px; }

  svg.minus {
    padding: 3px; }

  img.settings {
    width: 20px; }

  div#tech-specs-xs.modal-spec {
    margin-top: 70px; }

  div.modal-spec {
    overflow: hidden; }

  img.close-x {
    width: .5em; }

  div.modal-spec-header.spec-header-xs {
    background-color: white;
    padding: 0;
    text-align: center;
    padding-top: 100px; }
    div.modal-spec-header.spec-header-xs span {
      color: black;
      font-size: 18px; }

  div.modal-spec .modal-spec-body h4 {
    font-size: 14px;
    font-weight: 300; }
  div.modal-spec .modal-spec-body p {
    font-family: "Montserrat", sans-serif; }

  td.reg {
    font-family: "Montserrat", sans-serif; }

  a.close {
    top: 33px;
    left: 0;
    right: 0;
    margin: 0 auto; }

  th.spec-header, td.first {
    font-weight: 300 !important;
    font-size: 11px !important; }

  td.second.second-responsive {
    padding: 6px 1px; }

  div.modal-spec table th, div.modal-spec table tr, div.modal-spec table td {
    padding: 6px 24px; } }
@media only screen and (min-width: 381px) and (max-width: 415px) {
  div.bike-spec {
    height: 66%; }

  a.close {
    right: 146px; } }
@media only screen and (min-width: 374px) and (max-width: 376px) and (max-height: 668px) {
  section.key-specs div.spec-row {
    padding-top: 65px; }
  section.key-specs h1.specs-header {
    margin-bottom: 1em; }
  section.key-specs div.bike-spec {
    height: 55%; }
  section.key-specs div.bike-spec.bike-spec-responsive.bike-spec-shred {
    height: 53%; }
  section.key-specs div.bike-spec.bike-spec-responsive.bike-spec-boar {
    height: 54%; } }
@media only screen and (min-width: 435px) and (max-width: 766px) {
  div.bike-spec {
    height: 111%; } }
@media only screen and (min-width: 768px) and (max-width: 900px) {
  div.spec-row div.bike-spec {
    width: 86%;
    height: 88%;
    margin-top: 62px;
    margin-left: 30px; }
  div.spec-row div.circle {
    margin-top: 90px; }
  div.spec-row div.circle-text {
    margin-left: -2px; } }
@media only screen and (min-width: 768px) and (max-width: 1400px) {
  div.circle {
    margin-top: 50px !important; } }
@media only screen and (min-width: 1800px) and (max-width: 3000px) {
  div.circle-2 {
    left: 7%; } }
@media only screen and (min-width: 2400px) {
  div#tech-specs.modal-spec {
    margin-top: 130px !important; }
    div#tech-specs.modal-spec div.modal-spec-header {
      height: 56px; }
      div#tech-specs.modal-spec div.modal-spec-header span {
        font-size: 22px; }
    div#tech-specs.modal-spec div.modal-spec-body h4 {
      font-size: 24px; }
    div#tech-specs.modal-spec div.modal-spec-body p {
      font-size: 16px; }
    div#tech-specs.modal-spec div.spec-footer span.specs, div#tech-specs.modal-spec div.spec-footer span.specs-yellow {
      font-size: 25px; }

  section.key-specs {
    padding-bottom: 165px; }
    section.key-specs div.spec-row {
      padding-top: 250px; }
    section.key-specs div.spec-text h1.specs-title {
      font-size: 88px;
      line-height: 75px; }
    section.key-specs div.spec-text div.spec {
      font-size: 24px;
      line-height: 60px; }
      section.key-specs div.spec-text div.spec span {
        padding: 0.1px 12px; }
    section.key-specs div.circle-plus {
      width: 80px;
      height: 80px;
      border-radius: 50px;
      -webkit-border-radius: 50px;
      -moz-border-radius: 50px;
      padding-top: 28px; }
      section.key-specs div.circle-plus svg.plus {
        padding-top: 0;
        font-size: 24px; }
    section.key-specs div.circle-black {
      margin-left: 10px;
      margin-top: 10px;
      width: 60px;
      height: 60px;
      background-color: black;
      border-radius: 30px;
      -webkit-border-radius: 30px;
      -moz-border-radius: 30px;
      padding-top: 14px; }
      section.key-specs div.circle-black svg.minus {
        font-size: 22px; }
    section.key-specs div.circle-1 {
      left: 63%;
      top: 9%; }
    section.key-specs div.circle-2 {
      left: 15%;
      top: 81%; }
    section.key-specs div.circle-3 {
      left: 74%; }
    section.key-specs div.circle-6 {
      left: 29%;
      top: 73%; }
    section.key-specs div.circle-6.circle-6-shred {
      left: 70%;
      top: 38%; }
    section.key-specs div.circle-1.circle-1-shred {
      left: 43%;
      top: 53%; }
    section.key-specs div.circle-6.circle-6-boar {
      left: 15%; }
    section.key-specs div.circle-5.circle-3-colt {
      left: 70%; }
    section.key-specs div.circle-4.circle-4-colt {
      left: 32%;
      top: 20%; }
    section.key-specs div.circle-5.circle-3-shred {
      top: 63%;
      left: 24%; }
    section.key-specs div.circle-4.circle-4-shred {
      top: 13%; }
    section.key-specs div.circle {
      width: 150px;
      height: 150px;
      border-radius: 90px;
      -webkit-border-radius: 90px; }
      section.key-specs div.circle img.settings {
        width: 40px;
        padding-top: 57.5px; }
    section.key-specs div.circle-text {
      font-size: 28px;
      margin-left: -34px; } }
@media only screen and (min-width: 861px) and (max-width: 1430px) {
  div.spec-row div.spec-text {
    padding-left: 10%; } }
@media only screen and (min-width: 767px) and (max-width: 860px) {
  div.spec-row div.spec-text {
    padding-left: 3%; } }
@media only screen and (min-width: 768px) and (max-width: 1220px) {
  div.bike-spec div.circle-1.circle-colt, div.bike-spec div.circle-1 {
    top: 15%; }
  div.bike-spec div.circle-4.circl-4-colt {
    top: 26%; }
  div.bike-spec div.circle-2.circle-2-colt {
    top: 72%; }
  div.bike-spec div.circle-6.circle-6-boar {
    top: 71%; }

  div.spec-row div.circle-text {
    margin-left: -22px; }

  div.specs {
    margin-top: 50px; } }
section.review {
  padding-bottom: 100px;
  padding-top: 50px;
  background-color: #f1f1f1; }

@media (minw-width: 768px) {
  section.review.quad {
    margin-top: 12vw; } }
img.ebr-logo {
  margin: 0 auto;
  width: 60px; }

div.video {
  padding-top: 120px; }

h4.video-header {
  font-size: 22px; }

iframe.video-player {
  margin: 0 auto;
  height: 350px;
  width: 50%; }

div.video-desc {
  font-family: "Eksell", serif;
  font-size: 19px; }

@media only screen and (min-width: 300px) and (max-width: 767px) {
  section.review {
    padding-bottom: 70px; }

  iframe.video-player {
    height: 225px;
    width: 100%;
    margin-top: 25px; }

  div.video {
    padding-top: 90px; }

  h4.video-header {
    padding: 10px 35px;
    font-size: 25px; }

  div.ebr-desc {
    padding: 14px;
    margin-top: 30px;
    font-family: "Eksell", serif;
    font-size: 17px; } }
@media only screen and (min-width: 435px) and (max-width: 766px) {
  iframe.video-player {
    height: 400px;
    margin-top: 0px; } }
@media only screen and (min-width: 768px) and (max-width: 900px) {
  iframe.video-player {
    width: 71%; }

  div.video {
    padding-top: 100px; } }
@media only screen and (min-width: 1800px) and (max-width: 3000px) {
  section.review img.ebr-logo {
    width: 110px; }
  section.review h4.video-header {
    font-size: 27px; }
  section.review iframe.video-player {
    height: 550px;
    width: 60%; }
  section.review div.video-desc {
    font-size: 22px;
    margin-top: 25px; } }
@media only screen and (min-width: 2800px) {
  section.review div.video {
    padding-top: 200px;
    padding-bottom: 200px; }
  section.review img.ebr-logo {
    width: 130px; }
  section.review h4.video-header {
    font-size: 54px; }
  section.review iframe.video-player {
    height: 850px; }
  section.review div.video-desc {
    font-size: 44px; } }
section.video {
  background-color: white; }
  section.video img {
    width: 100%; }

@media (max-width: 991px) {
  section.video.about {
    margin-top: 45px; } }
section.video.about iframe {
  height: 56vw; }

iframe.video-player-2 {
  width: 100%;
  height: 678px; }
  iframe.video-player-2.boar-new {
    height: 56vw; }

@media only screen and (min-width: 300px) and (max-width: 767px) {
  iframe.video-player-2 {
    height: 450px; } }
@media only screen and (min-width: 3800px) {
  section.video iframe.video-player-2 {
    height: 1278px; } }
section.accessories, section.assembly-bottom {
  padding-bottom: 50px;
  background-color: white; }
  section.accessories img.bottom, section.assembly-bottom img.bottom {
    margin: 0 auto;
    height: 54%; }
  section.accessories div.small, section.assembly-bottom div.small {
    font-family: "Montserrat", sans-serif; }
  section.accessories iframe.assembly, section.assembly-bottom iframe.assembly {
    margin: 0 auto;
    width: 78%;
    height: 265px; }

section.accessories {
  padding: 80px 0; }

section.assembly-bottom {
  background-color: #f1f1f1; }
  section.assembly-bottom iframe.assembly {
    width: 80%;
    height: 265px; }
  section.assembly-bottom iframe.assembly.assembly-boar {
    width: 60%; }
    @media (max-width: 767px) {
      section.assembly-bottom iframe.assembly.assembly-boar {
        width: 100%; } }

h4.accessories-header {
  font-size: 24px;
  padding-top: 60px;
  padding-bottom: 20px; }

div.accessory img {
  margin: 0 auto;
  height: 17em;
  margin-top: 3vw; }
div.accessory a {
  font-size: 11px;
  line-height: 22px;
  text-transform: uppercase; }
  div.accessory a div.accessory-name {
    background-color: black;
    margin: 0 auto;
    max-width: 450px;
    font-size: 24px;
    padding: 10px 2vw;
    line-height: 1.2; }
    @media only screen and (min-width: 768px) and (max-width: 1350px) {
      div.accessory a div.accessory-name {
        font-size: 20px; } }

div.accessory-home {
  padding: 10px 100px; }
  div.accessory-home img {
    margin: 0 auto; }
  div.accessory-home a.view-bike {
    font-size: 11px;
    line-height: 22px;
    width: 100%;
    padding: 5px; }
    div.accessory-home a.view-bike div.accessory-name {
      background-color: black;
      margin: 0 auto;
      width: 180px;
      font-size: 13px;
      padding-top: 4px; }
  div.accessory-home a.img-anchor-home {
    margin-top: 20px;
    padding: 30px; }

img.accessory-xs {
  height: 11.5em !important; }

@media only screen and (min-width: 300px) and (max-width: 767px) {
  section.accessories {
    padding-bottom: 30px; }
    section.accessories iframe.assembly {
      width: 100%; }

  h4.accessories-header {
    padding-top: 80px; }

  div.accessory-name {
    width: 75% !important;
    font-size: 18px !important;
    padding-top: 8px !important;
    margin-top: 3px !important; }

  div.accessory {
    padding: 0 10px; }

  div.social-icons {
    font-size: 25px;
    padding-top: 2em; }

  div.contact-icons img.icon-footer {
    width: 3.4em;
    margin: 42px;
    fill: #bfcd2d; }

  div.accessory a {
    line-height: 26px; } }
@media only screen and (min-width: 374px) and (max-width: 376px) and (max-height: 668px) {
  section.accessories {
    padding-bottom: 30px; }

  h4.accessories-header {
    padding-top: 70px; } }
@media only screen and (min-width: 435px) and (max-width: 766px) {
  footer {
    height: 20em; }
    footer div.social-icons {
      margin-top: 0;
      padding-top: 30px; } }
@media only screen and (min-width: 435px) and (max-width: 575px) {
  footer {
    height: 16em; } }
@media only screen and (min-width: 768px) and (max-width: 900px) {
  section.accessories {
    padding-bottom: 60px;
    background-color: white; } }
@media only screen and (min-width: 1800px) and (max-width: 4000px) {
  section.accessories div.accessory img {
    height: 17em; }
  section.accessories h4.accessories-header {
    font-size: 32px; }
  section.accessories div.accessory a div.accessory-name {
    width: 245px; }
  section.accessories div.accessory a {
    font-size: 16px; } }
@media only screen and (min-width: 2800px) {
  section.accessories {
    padding: 100px 0; }
    section.accessories h4.accessories-header {
      font-size: 64px; }
    section.accessories div.accessory img {
      height: 28em; }
    section.accessories div.accessory a div.accessory-name {
      width: 570px;
      height: 62px;
      font-size: 34px;
      padding-top: 22px; }
    section.accessories img.bottom {
      height: 30em; }
    section.accessories div.small {
      font-size: 30px; }
    section.accessories iframe.assembly {
      height: 450px; }

  section.assembly-bottom h4.accessories-header {
    font-size: 64px; }
  section.assembly-bottom img.bottom {
    margin: 0 auto;
    height: 24em; }
  section.assembly-bottom div.small {
    font-size: 30px; }
  section.assembly-bottom iframe.assembly {
    height: 465px; } }
@media only screen and (min-width: 768px) and (max-width: 1220px) {
  section.accessories {
    padding-top: 20px; }
    section.accessories img.bottom {
      width: 140px; }
    section.accessories h4.accessories-header {
      font-size: 22px; }

  div.accessory img {
    height: 20em; } }
@media only screen and (min-width: 1221px) and (max-width: 1799px) {
  div.accessory img {
    height: 23em; } }
@media (min-width: 992px) {
  section.buy-now.twist {
    padding-bottom: 180px; } }
section.buy-now div.thumbnail-wrapper {
  margin: 30px 0; }
  @media (min-width: 768px) and (max-width: 1000px) {
    section.buy-now div.thumbnail-wrapper {
      padding-left: 100px; } }
  section.buy-now div.thumbnail-wrapper div.img-wrapper {
    display: inline-block; }
    section.buy-now div.thumbnail-wrapper div.img-wrapper.white, section.buy-now div.thumbnail-wrapper div.img-wrapper.sand, section.buy-now div.thumbnail-wrapper div.img-wrapper.pink, section.buy-now div.thumbnail-wrapper div.img-wrapper.twist-grey {
      display: none; }
    section.buy-now div.thumbnail-wrapper div.img-wrapper img.thumbnail {
      height: 5.5vw;
      max-height: 100px;
      min-height: 60px;
      margin: 1vw;
      padding-bottom: 10px;
      cursor: pointer;
      vertical-align: bottom; }
      @media (max-width: 767px) {
        section.buy-now div.thumbnail-wrapper div.img-wrapper img.thumbnail {
          min-height: 15vw; } }
      section.buy-now div.thumbnail-wrapper div.img-wrapper img.thumbnail.selected {
        box-shadow: 0 5px 0px -2px #e2e2e2; }
section.buy-now a.warranty {
  margin-top: -250px; }
section.buy-now div.ebr-wrapper {
  margin-top: 40px; }
  @media (min-width: 1500px) {
    section.buy-now div.ebr-wrapper.boar {
      margin-top: 120px; } }
  @media (min-width: 1500px) {
    section.buy-now div.ebr-wrapper.boar {
      margin-top: 150px; } }
  section.buy-now div.ebr-wrapper img.ebr-callout {
    max-width: 160px; }
    @media (max-width: 767px) {
      section.buy-now div.ebr-wrapper img.ebr-callout {
        max-width: 100px;
        margin-bottom: 20px; } }
  section.buy-now div.ebr-wrapper div.ebr-text-wrapper {
    margin-left: 30px;
    max-width: 635px;
    vertical-align: middle;
    text-align: left; }
    @media (max-width: 767px) {
      section.buy-now div.ebr-wrapper div.ebr-text-wrapper {
        display: block !important;
        max-width: 84%; } }
    section.buy-now div.ebr-wrapper div.ebr-text-wrapper h3.title {
      font-family: 'Montserrat';
      font-size: 20px;
      margin-bottom: 20px;
      font-weight: bold; }
    section.buy-now div.ebr-wrapper div.ebr-text-wrapper div.description {
      font-family: 'Montserrat';
      font-size: 12px; }
section.buy-now div.size-small-description-2, section.buy-now div.size-large-description-2 {
  font-size: 11px; }

#geoip-banner {
  display: none !important; }

.flex-container {
  display: flex;
  justify-content: space-around;
  align-items: center; }

section.shred-9 {
  padding: 100px 5vw 120px; }
  @media (max-width: 767px) {
    section.shred-9 {
      padding: 20px; } }
  section.shred-9 h2.title {
    font-family: 'AgencyFB-Bold';
    font-size: 40px;
    color: #CADB36;
    /* or whatever color you prefer */ }
    @media (min-width: 768px) {
      section.shred-9 h2.title {
        margin: 0 25px 10px; } }
    @media (max-width: 767px) {
      section.shred-9 h2.title {
        text-align: center; } }
  section.shred-9.colt h2.title {
    color: #a4a4a4; }
  section.shred-9 div.subtitle {
    font-family: 'AgencyFB-Bold';
    font-size: 24px;
    color: #b3b3b3;
    letter-spacing: .5px;
    margin-bottom: 20px; }
    @media (min-width: 768px) {
      section.shred-9 div.subtitle {
        margin-left: 25px; } }
    @media (max-width: 767px) {
      section.shred-9 div.subtitle {
        text-align: center; } }
  section.shred-9 div.description {
    font-size: 17px;
    line-height: 1.3;
    font-family: "Montserrat", sans-serif;
    max-width: 675px;
    margin-left: 40px; }
    section.shred-9 div.description p:before {
      content: "• ";
      margin-left: -20px;
      margin-right: 10px;
      color: #CADB36;
      font-size: 26px;
      vertical-align: middle;
      position: relative;
      top: 2px; }
    section.shred-9 div.description.lower {
      margin: 0 auto; }
      section.shred-9 div.description.lower p:before {
        content: ""; }
  section.shred-9 img.handlebars {
    margin-top: 75px;
    padding: 0 10vw; }
    @media (max-width: 767px) {
      section.shred-9 img.handlebars {
        margin-top: 30px;
        padding: 0 10px; } }

img.torque-sensor {
  width: 90%;
  display: block;
  max-width: 460px; }
  @media (max-width: 767px) {
    img.torque-sensor {
      margin-bottom: 40px; } }

@media (min-width: 768px) {
  section.stealth-design.update {
    margin-top: 0;
    padding-bottom: 0; } }
@media (max-width: 767px) {
  section.stealth-design.update {
    margin-top: 70px; } }
section.stealth-design.update img.stealth-bike {
  width: 100%;
  max-width: none; }
section.stealth-design.update img.stealth-bike.quad {
  width: 90%;
  float: right; }
section.stealth-design.update div.text-container {
  top: 0;
  margin-left: 0;
  width: 100%;
  padding-top: 3vw; }
@media (min-width: 768px) {
  section.stealth-design.update div.stealth-text-container {
    padding-left: 4vw; } }
@media (min-width: 768px) {
  section.stealth-design.update div.stealth-text-container h1 {
    color: black;
    margin-top: -3vw; } }
section.stealth-design.update div.stealth-text-container div.stealth-description {
  margin-top: 80px;
  font-family: 'Montserrat'; }
  @media (min-width: 768px) {
    section.stealth-design.update div.stealth-text-container div.stealth-description {
      color: black; } }
section.stealth-design.update div.stealth-text-container p {
  margin-bottom: 5px; }
section.stealth-design.update div.stealth-text-container div.view-specs {
  margin-top: 3vw; }
  section.stealth-design.update div.stealth-text-container div.view-specs a.view-tech-specs {
    background-color: black; }
    section.stealth-design.update div.stealth-text-container div.view-specs a.view-tech-specs:hover {
      background-color: white;
      color: black; }
section.stealth-design.update.update-2 div.text-container {
  padding-top: 5vw; }
@media (min-width: 768px) and (max-width: 1500px) {
  section.stealth-design.update.update-2 h1.stealth-header {
    font-size: 30px; } }
@media (min-width: 768px) and (max-width: 1500px) {
  section.stealth-design.update.update-2 div.stealth-description {
    font-size: 16px;
    line-height: 1.1; } }

section.buy-now.update {
  border-bottom: none; }

section.stealth-design.boar div.stealth-description {
  max-width: 500px;
  margin: 0 auto;
  margin-right: 0;
  font-family: 'Montserrat';
  font-size: 17px;
  line-height: 1.5; }

section.motor.update {
  border-bottom: none; }
  @media (max-width: 767px) {
    section.motor.update div.motor-container {
      padding-top: 40px;
      height: 1020px; } }
  @media (max-width: 767px) {
    section.motor.update.rook-colt div.motor-container {
      height: 1080px; } }
  section.motor.update div.content-wrapper {
    top: 0;
    padding-top: 5vw; }
  @media (max-width: 767px) {
    section.motor.update div.text-wrapper {
      padding: 0; } }
  section.motor.update div.text-wrapper h1.motor-header {
    color: #CADB36;
    font-size: 36px;
    margin-bottom: 2vw; }
    @media (max-width: 767px) {
      section.motor.update div.text-wrapper h1.motor-header {
        margin: 0 auto 30px;
        max-width: 60%; } }
  section.motor.update div.text-wrapper div.motor-description {
    width: 100%;
    margin-left: 15px;
    font-size: .9vw; }
    @media (min-width: 768px) and (max-width: 1350px) {
      section.motor.update div.text-wrapper div.motor-description {
        font-size: 1.1vw; } }
    @media (max-width: 767px) {
      section.motor.update div.text-wrapper div.motor-description {
        font-size: 14px; } }
    section.motor.update div.text-wrapper div.motor-description p:before {
      content: "• ";
      margin-left: -20px;
      margin-right: 10px;
      color: #CADB36;
      position: relative;
      top: 2px; }
    @media (min-width: 2000px) {
      section.motor.update div.text-wrapper div.motor-description {
        font-size: 18px;
        line-height: 1.4; } }
  section.motor.update div.img-wrapper {
    padding: 2vw 4vw; }
    section.motor.update div.img-wrapper img {
      margin: 20px auto;
      display: block;
      width: auto;
      height: 16vw; }
      @media (max-width: 767px) {
        section.motor.update div.img-wrapper img {
          width: 50%; } }

div.spec-container {
  border: 5px solid #d4e358;
  border-radius: 22px;
  padding: 0px 15px;
  display: inline-block; }
  div.spec-container.last-2 {
    border-color: #707070;
    width: 44px;
    height: 44px;
    padding: 1px;
    border-radius: 18px; }
  div.spec-container.last img {
    height: 32px; }
  @media (max-width: 767px) {
    div.spec-container {
      border: 4px solid #d4e358;
      border-radius: 18px;
      padding: 2px 12px;
      margin-top: 20px; } }
  @media (max-width: 767px) {
    div.spec-container img {
      width: 15px;
      height: auto; } }

div.spec-wrapper {
  padding: 80px 11vw 0px; }
  div.spec-wrapper.spec-wrapper-2 {
    padding: 0 0 0 2vw !important; }
  div.spec-wrapper img {
    height: 35px; }
    div.spec-wrapper img.last {
      height: 42px; }
    div.spec-wrapper img.lastt {
      height: 38px; }
  div.spec-wrapper div.icon-description {
    margin-top: 20px; }
  div.spec-wrapper a.tech-specs {
    margin-top: 40px;
    display: inline-block;
    padding: 15px 30px; }

img.shred-wheel {
  max-width: 240px;
  margin: 0 auto;
  display: block; }

a.cta {
  background-color: #212529;
  padding: 9px 45px;
  border-radius: 30px;
  display: inline-block;
  height: auto;
  width: auto;
  font-size: 14px;
  color: white;
  margin-top: 20px; }
  a.cta:hover {
    background-color: black; }

div.video-wrapper {
  position: relative; }
  div.video-wrapper img.w-100 {
    height: auto; }
  div.video-wrapper img.play {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: calc(50% - 27px);
    width: 55px;
    height: auto;
    cursor: pointer !important; }
  div.video-wrapper iframe.product-top {
    width: 100%; }

div.modal-video {
  bottom: auto;
  top: 9vw;
  margin: 0 auto;
  overflow: visible;
  max-width: none;
  width: 71%; }
  div.modal-video iframe {
    width: 100%;
    height: 39vw; }
  div.modal-video a.close {
    height: 40px;
    width: 40px;
    padding: 8px; }

div.bike-col {
  padding-top: 120px; }
  @media (min-width: 1200px) and (max-width: 1399px) {
    div.bike-col {
      -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 64% !important;
      flex: 0 0 64% !important;
      max-width: 64% !important; } }
  @media (min-width: 1400px) {
    div.bike-col {
      -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 66.666667% !important;
      flex: 0 0 66.666667% !important;
      max-width: 66.666667% !important; } }

section.features.shred-update {
  padding: 60px 11.5vw;
  background-color: transparent; }
  @media (max-width: 767px) {
    section.features.shred-update {
      padding: 60px 3vw; } }
  section.features.shred-update h1.feature-title {
    color: #CADB36; }
    @media (max-width: 767px) {
      section.features.shred-update h1.feature-title {
        text-align: center; } }
  section.features.shred-update div.feature-description {
    padding-top: 0;
    font-size: 18px;
    margin-bottom: 60px; }
    @media (max-width: 767px) {
      section.features.shred-update div.feature-description {
        text-align: center; } }
  section.features.shred-update div.row.row-feature-images-shred {
    padding: 0; }
    section.features.shred-update div.row.row-feature-images-shred div.image-col.col-left {
      padding-right: 1.75vw !important; }
    section.features.shred-update div.row.row-feature-images-shred div.image-col.col-right {
      padding-left: 1.75vw !important; }
    @media (max-width: 767px) {
      section.features.shred-update div.row.row-feature-images-shred div.image-col.col-left {
        padding-right: 2.1vw !important; }
      section.features.shred-update div.row.row-feature-images-shred div.image-col.col-right {
        padding-left: 2.1vw !important; } }
    section.features.shred-update div.row.row-feature-images-shred div.image-col div.img-wrapper {
      margin-bottom: 1.75vw; }
      section.features.shred-update div.row.row-feature-images-shred div.image-col div.img-wrapper div.image-title {
        background-color: #000000b5;
        color: white;
        letter-spacing: .5px;
        font-size: 14px;
        padding: 10px 1vw;
        position: absolute;
        width: 100%;
        bottom: 0; }
        @media (max-width: 767px) {
          section.features.shred-update div.row.row-feature-images-shred div.image-col div.img-wrapper div.image-title {
            font-size: 11px; } }

section.key-specs {
  padding: 20px; }
  section.key-specs h1.specs-title {
    color: #CADB36; }
  section.key-specs div.spec {
    line-height: 1.3;
    margin-bottom: 10px;
    font-size: 15px;
    color: #7d7d7d; }
    section.key-specs div.spec:hover {
      color: black; }
  section.key-specs div.circle {
    width: 40px;
    height: 40px;
    margin-top: 20px !important;
    vertical-align: middle; }
    section.key-specs div.circle img.settings {
      padding-top: 12.5px;
      width: 16px; }
  section.key-specs div.circle-text {
    color: black;
    vertical-align: middle;
    margin-left: 10px;
    margin-top: 20px;
    letter-spacing: .5px; }

section.review.shred-update {
  background-color: transparent; }
  section.review.shred-update.shred iframe.video-player {
    width: 85%;
    height: 24vw; }
    @media (max-width: 767px) {
      section.review.shred-update.shred iframe.video-player {
        height: 40vw; } }
  section.review.shred-update h4.video-header {
    background: #C9DA2A;
    clip-path: polygon(3% 0, 93% 15%, 100% 90%, 0% 100%);
    font-size: 14px;
    width: 360px;
    padding-bottom: 10px;
    padding-right: 5px;
    margin: 30px auto 20px; }
    @media (max-width: 767px) {
      section.review.shred-update h4.video-header {
        padding: 10px;
        font-size: 13px;
        padding-right: 17px;
        width: 100%; } }
  section.review.shred-update div.video {
    padding-top: 0; }
  section.review.shred-update div.ebr-desc {
    max-width: 630px;
    text-align: center;
    margin: 0 auto;
    font-size: 19px; }

section.reviews {
  background-color: #f1f0f0; }
  section.reviews a.read-more {
    font-weight: 600 !important; }
  section.reviews a.try {
    font-size: 13px;
    width: 260px;
    margin: 45px auto 0px;
    height: 80px;
    border-radius: 50px;
    background-color: black;
    color: white;
    line-height: 5.5;
    letter-spacing: 1px; }
  section.reviews a.try:hover {
    filter: invert(100%); }
  section.reviews h1.title {
    font-size: 51px;
    margin-top: 0;
    margin-bottom: 40px; }
  section.reviews div, section.reviews a, section.reviews span, section.reviews p, section.reviews li, section.reviews h3 {
    font-weight: 300 !important; }
  section.reviews strong {
    font-family: "AgencyFBBlack", sans-serif; }
  section.reviews div, section.reviews strong.author {
    font-family: 'Montserrat'; }
  section.reviews div.stamped-reviews-product-title {
    font-size: 15px !important;
    line-height: 1.5 !important;
    text-transform: uppercase; }
  section.reviews div.stamped-reviews-message, section.reviews p.stamped-review-content-body {
    margin-top: 20px;
    font-family: "Montserrat",sans-serif;
    font-size: 14px;
    line-height: 1.4; }

section.reviews.product {
  padding: 30px 0; }

section.reviews.product.customer {
  background-color: white; }

@media (min-width: 1250px) {
  section.buy-now div.ebr-wrapper {
    margin-top: 5vw !important; } }
.stamped-ugc-modal .stamped-ugc-modal-user, .stamped-ugc-modal .stamped-ugc-modal-caption-title {
  font-weight: 100; }
.stamped-ugc-modal .stamped-ugc-modal-caption-body {
  font-family: "Montserrat",sans-serif; }
.stamped-ugc-modal .stamped-ugc-modal-tags-product-title {
  color: black; }

section.feedback {
  padding: 100px 0; }
  @media (max-width: 991px) {
    section.feedback {
      padding: 78px 0; } }
  section.feedback iframe {
    width: 100%; }

div {
  font-family: "AgencyFBBlack",sans-serif; }

section.accessory {
  padding-left: 15px;
  padding-right: 15px; }
  section.accessory div.carousel button.flickity-button {
    display: none; }
  section.accessory div.carousel-main div.carousel-cell {
    width: 100%; }
  section.accessory div.carousel-nav {
    margin-top: 20px; }
    @media (min-width: 992px) {
      section.accessory div.carousel-nav {
        width: 50vw;
        transform: rotate(90deg) translate(30px, -100%);
        transform-origin: left top; } }
    section.accessory div.carousel-nav div.carousel-cell {
      width: 100px;
      height: 100px;
      border: 1px solid #ededed;
      padding: 10px;
      margin-right: 15px;
      border-radius: 5px; }
      @media (min-width: 992px) {
        section.accessory div.carousel-nav div.carousel-cell {
          transform: rotate(-90deg); } }
      section.accessory div.carousel-nav div.carousel-cell.is-nav-selected {
        border-color: #000; }

section.contact-template {
  padding: 80px 20px; }
  section.contact-template form {
    max-width: 400px;
    margin: 0 auto; }
  section.contact-template h1 {
    text-align: center; }
  section.contact-template input, section.contact-template textarea {
    width: 100%;
    display: block;
    border: 1px solid black;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 5px; }
  section.contact-template input.btn {
    background-color: #c7d150;
    color: #fff;
    padding: 9px 45px;
    border-radius: 30px;
    display: inline-block;
    height: auto;
    font-size: 16px;
    line-height: 22px;
    font-family: AgencyFBBlack,sans-serif;
    letter-spacing: .5px;
    border: none;
    width: 100%;
    margin-top: 20px; }

section.moving-people {
  padding: 100px 0 0; }
  section.moving-people div.description {
    color: white;
    font-size: 26px;
    font-family: Montserrat;
    line-height: 1.6; }
    @media (max-width: 991px) {
      section.moving-people div.description {
        font-size: 20px; } }
  section.moving-people h2.title {
    font-size: 50px; }
  section.moving-people h3.subtitle {
    font-family: Montserrat;
    font-weight: bold;
    font-size: 24px;
    margin-top: 10px; }
  section.moving-people video, section.moving-people iframe {
    width: 100%;
    height: 56vw; }
  section.moving-people .image-container {
    margin-top: 80px; }
  section.moving-people div.col-6 img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  @media (min-width: 992px) {
    section.moving-people div.col-6 {
      padding-bottom: 30px; }
      section.moving-people div.col-6.left {
        padding-left: 0; }
      section.moving-people div.col-6.right {
        padding-right: 0; } }
  @media (max-width: 991px) {
    section.moving-people div.col-6 {
      padding-bottom: 30px; }
      section.moving-people div.col-6.left-xs {
        padding-right: 0; }
      section.moving-people div.col-6.right-xs {
        padding-left: 0; } }
  section.moving-people div.background-wrapper {
    position: relative;
    margin-top: 40px; }
    section.moving-people div.background-wrapper img.background {
      width: 100%; }
    section.moving-people div.background-wrapper div.text-container {
      margin: 0;
      padding: 90px 45px;
      text-align: left; }
      @media (max-width: 991px) {
        section.moving-people div.background-wrapper div.text-container {
          padding: 50px 20px; } }
      section.moving-people div.background-wrapper div.text-container.empty {
        padding: 60px; }
        @media (max-width: 991px) {
          section.moving-people div.background-wrapper div.text-container.empty {
            padding: 20px; } }
      @media (min-width: 992px) {
        section.moving-people div.background-wrapper div.text-container.image {
          padding-right: 0;
          min-height: 525px; } }
      @media (min-width: 992px) {
        section.moving-people div.background-wrapper div.text-container.image div.description {
          display: inline-block;
          width: calc(100% - 500px); } }
      @media (min-width: 992px) {
        section.moving-people div.background-wrapper div.text-container.image img {
          display: inline-block;
          width: 440px; } }
    section.moving-people div.background-wrapper.white {
      margin-top: -3vw; }
    @media (max-width: 991px) {
      section.moving-people div.background-wrapper.green div.text-container {
        padding-left: 0;
        padding-right: 0; } }
    section.moving-people div.background-wrapper.green div.description {
      color: black; }
      @media (max-width: 991px) {
        section.moving-people div.background-wrapper.green div.description {
          padding-left: 20px;
          padding-right: 20px; } }
      section.moving-people div.background-wrapper.green div.description a {
        font-size: 20px;
        margin-right: 50px;
        color: black; }
        section.moving-people div.background-wrapper.green div.description a img.angel {
          width: 30px;
          vertical-align: middle;
          margin-right: 5px;
          float: none; }
    @media (max-width: 991px) {
      section.moving-people div.background-wrapper.green a.cta {
        display: inline-block;
        margin-left: 20px;
        margin-bottom: 30px; } }
  section.moving-people.product {
    position: relative; }
    @media (min-width: 1800px) {
      section.moving-people.product {
        margin-top: 80px; } }
    @media (max-width: 991px) {
      section.moving-people.product .float-right {
        float: none !important; }
      section.moving-people.product a.cta {
        margin-left: 0; } }
    @media (min-width: 992px) {
      section.moving-people.product a.cta {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 120px;
        margin: 0 auto;
        max-width: 200px;
        text-align: center; }
      section.moving-people.product .background-wrapper {
        padding-top: 60px;
        padding-bottom: 100px; }
        section.moving-people.product .background-wrapper:not(.green) {
          padding-bottom: 30px; } }
  @media (min-width: 992px) {
    section.moving-people.homepage .background-wrapper.green {
      padding-top: 60px;
      padding-bottom: 60px; } }
  section.moving-people.homepage img {
    height: auto !important; }
  section.moving-people.homepage p.copy {
    font-family: Montserrat,sans-serif;
    font-size: 16px;
    margin-top: 20px; }
  @media (min-width: 992px) {
    section.moving-people.homepage .col-lg-3 {
      padding-bottom: 60px; }
    section.moving-people.homepage a.cta {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      margin: 0 auto;
      max-width: 200px; } }

section.motor.update h3.title {
  color: #a4a4a4; }
  @media (max-width: 1200px) {
    section.motor.update h3.title {
      font-size: 22px; } }
  @media (max-width: 950px) {
    section.motor.update h3.title {
      font-size: 20px; } }
section.motor.update div.text-wrapper h1.motor-header {
  white-space: nowrap; }
  @media (min-width: 768px) and (max-width: 1750px) {
    section.motor.update div.text-wrapper h1.motor-header {
      font-size: 30px; } }
  @media (min-width: 768px) and (max-width: 1000px) {
    section.motor.update div.text-wrapper h1.motor-header {
      font-size: 22px; } }
  @media (min-width: 768px) and (max-width: 1350px) {
    section.motor.update div.text-wrapper h1.motor-header {
      font-size: 25px;
      margin-top: -50px; } }
  @media (max-width: 767px) {
    section.motor.update div.text-wrapper h1.motor-header {
      white-space: normal; } }
section.motor.update div.text-wrapper div.motor-description {
  line-height: 1.5; }
  @media (min-width: 768px) and (max-width: 1000px) {
    section.motor.update div.text-wrapper div.motor-description {
      line-height: 1.4; } }
@media (min-width: 768px) and (max-width: 1350px) {
  section.motor.update div.img-wrapper img {
    height: 14vw; } }
section.motor.update div.updates {
  padding: 60px 20px 80px; }
  section.motor.update div.updates h2.title {
    text-align: center;
    font-size: 60px;
    margin: 0 0 40px;
    color: #7d7d7d; }
  section.motor.update div.updates div.title {
    font-size: 32px;
    color: #CADC36;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase; }
  section.motor.update div.updates div.icon-description {
    font-family: Montserrat,sans-serif;
    margin: 20px auto 0;
    font-size: 16px;
    max-width: 327px; }

#mc_embed_signup {
  background-color: transparent !important;
  max-width: 700px;
  margin: 0 auto; }
  @media (max-width: 767px) {
    #mc_embed_signup {
      padding: 40px 20px 20px !important; } }
  #mc_embed_signup label {
    color: white;
    font-size: 20px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400 !important; }
  #mc_embed_signup input.email {
    border-radius: 0 !important;
    font-family: AgencyFBBlack,sans-serif !important;
    font-size: 17px !important;
    padding: 12px !important;
    height: 57.5px !important;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: none; }
  #mc_embed_signup input[type="submit"] {
    font-size: 17px;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    font-family: AgencyFBBlack,sans-serif !important;
    border-radius: 0 !important;
    letter-spacing: .03em;
    color: black;
    background-color: #c7d150 !important;
    height: 32px;
    line-height: 32px;
    text-transform: uppercase;
    height: 57.5px;
    padding: 0 18px;
    width: 150px; }
    @media (max-width: 767px) {
      #mc_embed_signup input[type="submit"] {
        width: 100%; } }

@media (max-width: 991px) {
  section.highlight-hero {
    margin-top: 64px; } }
section.highlight-hero h1.title {
  bottom: -15px;
  left: 60px;
  color: white;
  font-size: 70px;
  line-height: 0;
  letter-spacing: 1px; }
  @media (max-width: 1300px) {
    section.highlight-hero h1.title {
      font-size: 5vw;
      bottom: -8px; } }
  @media (max-width: 767px) {
    section.highlight-hero h1.title {
      font-size: 20px;
      bottom: 2px;
      left: 10px; } }
  section.highlight-hero h1.title .green {
    color: #C9D94D; }

section.highlight-body {
  background-color: #FAFAFA;
  padding: 20px 40px; }
  @media (max-width: 1300px) {
    section.highlight-body {
      padding: 10px 15px; } }
  section.highlight-body h3.subtitle {
    font-size: 26px;
    font-family: "Montserrat",sans-serif;
    padding: 40px 20px 0; }
  section.highlight-body div.title-container {
    margin: 4.5vw 0 2vw; }
    @media (max-width: 767px) {
      section.highlight-body div.title-container {
        margin: 25px 0 10px; } }
    section.highlight-body div.title-container img.icon-grey {
      width: 140px; }
      @media (max-width: 1300px) {
        section.highlight-body div.title-container img.icon-grey {
          width: 100px; } }
    section.highlight-body div.title-container h2.title {
      top: 22px;
      left: 52px;
      font-family: 'AgencyFBBlack';
      font-size: 60px;
      letter-spacing: 1px; }
      @media (max-width: 1300px) {
        section.highlight-body div.title-container h2.title {
          font-size: 40px;
          top: 15px;
          left: 45px; } }
      @media (max-width: 767px) {
        section.highlight-body div.title-container h2.title {
          font-size: 34px; } }
  section.highlight-body div.product-block {
    background-color: #FFFFFF;
    box-shadow: 1px 4px 11px rgba(0, 0, 0, 0.2);
    padding: 3.4vw 2.3vw 4.5vw;
    margin-bottom: 40px; }
    @media (max-width: 767px) {
      section.highlight-body div.product-block {
        margin: 30px 0 40px; } }
    section.highlight-body div.product-block div.text-container {
      padding-left: 3.4vw;
      padding-right: 1.1vw;
      margin-left: 0;
      width: 100%; }
      @media (max-width: 1300px) {
        section.highlight-body div.product-block div.text-container {
          padding-right: 0; } }
      @media (max-width: 767px) {
        section.highlight-body div.product-block div.text-container {
          margin-top: 30px;
          text-align: center; } }
      section.highlight-body div.product-block div.text-container h3.title {
        font-size: 50px;
        line-height: 1;
        margin: 0; }
        @media (max-width: 1300px) {
          section.highlight-body div.product-block div.text-container h3.title {
            font-size: 40px; } }
        @media (max-width: 767px) {
          section.highlight-body div.product-block div.text-container h3.title {
            font-size: 46px; } }
      section.highlight-body div.product-block div.text-container div.subtitle {
        font-size: 32px;
        font-family: "Montserrat",sans-serif;
        margin-bottom: 20px; }
        @media (max-width: 1300px) {
          section.highlight-body div.product-block div.text-container div.subtitle {
            font-size: 26px;
            margin-bottom: 10px; } }
        @media (max-width: 767px) {
          section.highlight-body div.product-block div.text-container div.subtitle {
            margin-top: 5px;
            font-size: 24px; } }
      section.highlight-body div.product-block div.text-container div.description {
        font-family: "Montserrat",sans-serif;
        font-size: 17px;
        line-height: 1.2; }
        @media (max-width: 1600px) {
          section.highlight-body div.product-block div.text-container div.description {
            font-size: 14px; } }
        @media (max-width: 767px) {
          section.highlight-body div.product-block div.text-container div.description {
            text-align: left; } }
        section.highlight-body div.product-block div.text-container div.description p {
          margin-bottom: 0; }
        section.highlight-body div.product-block div.text-container div.description p:before {
          content: "• ";
          margin-left: -15px;
          margin-right: 5px;
          color: black; }
        section.highlight-body div.product-block div.text-container div.description ul {
          margin-top: 20px;
          margin-left: 10px;
          padding: 0;
          list-style-type: none; }
          @media (max-width: 767px) {
            section.highlight-body div.product-block div.text-container div.description ul {
              margin-top: 10px; } }
          section.highlight-body div.product-block div.text-container div.description ul li:before {
            content: '-';
            margin-left: -11px;
            padding-right: 4px; }
      section.highlight-body div.product-block div.text-container div.purchase-container {
        margin-top: 60px; }
        @media (max-width: 1600px) {
          section.highlight-body div.product-block div.text-container div.purchase-container {
            margin-top: 30px; } }
        @media (max-width: 767px) {
          section.highlight-body div.product-block div.text-container div.purchase-container {
            text-align: left; } }
        section.highlight-body div.product-block div.text-container div.purchase-container span.price {
          font-size: 38px; }
          @media (max-width: 1600px) {
            section.highlight-body div.product-block div.text-container div.purchase-container span.price {
              font-size: 30px; } }
        section.highlight-body div.product-block div.text-container div.purchase-container span.currency {
          font-family: "Montserrat",sans-serif;
          font-size: 14px;
          display: inline-block;
          margin-left: 10px; }
          @media (max-width: 1600px) {
            section.highlight-body div.product-block div.text-container div.purchase-container span.currency {
              font-size: 13px;
              margin-left: 5px; } }
      section.highlight-body div.product-block div.text-container a.buy-button {
        background-color: #C9D94D;
        border-radius: 100px;
        width: 200px;
        height: 45px;
        display: inline-block;
        font-size: 18px;
        letter-spacing: 1px;
        line-height: 2.6; }
        @media (max-width: 1600px) {
          section.highlight-body div.product-block div.text-container a.buy-button {
            width: 140px;
            height: 40px;
            font-size: 16px;
            margin-right: 10px; } }
        section.highlight-body div.product-block div.text-container a.buy-button:hover {
          background-color: black; }

/*================ Icons ================*/
.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  fill: currentColor; }
  .no-svg .icon {
    display: none; }

.icon--wide {
  width: 40px; }

svg.icon:not(.icon--full-color) circle,
svg.icon:not(.icon--full-color) ellipse,
svg.icon:not(.icon--full-color) g,
svg.icon:not(.icon--full-color) line,
svg.icon:not(.icon--full-color) path,
svg.icon:not(.icon--full-color) polygon,
svg.icon:not(.icon--full-color) polyline,
svg.icon:not(.icon--full-color) rect,
symbol.icon:not(.icon--full-color) circle,
symbol.icon:not(.icon--full-color) ellipse,
symbol.icon:not(.icon--full-color) g,
symbol.icon:not(.icon--full-color) line,
symbol.icon:not(.icon--full-color) path,
symbol.icon:not(.icon--full-color) polygon,
symbol.icon:not(.icon--full-color) polyline,
symbol.icon:not(.icon--full-color) rect {
  fill: inherit;
  stroke: inherit; }

/*============================================================================
  A generic way to visually hide content while
  remaining accessible to screen readers (h5bp.com)
==============================================================================*/
.icon-fallback-text {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }
  .no-svg .icon-fallback-text {
    position: static !important;
    overflow: auto;
    clip: auto;
    width: auto;
    height: auto;
    margin: 0; }

/*================ Payment Icons ================*/
.payment-icons {
  -moz-user-select: "none";
  -ms-user-select: "none";
  -webkit-user-select: "none";
  user-select: "none";
  cursor: default; }

/*================ Shopify icon on password page ================*/
.icon-shopify-logo {
  width: 82.28571px;
  height: 24px; }

/*================ Rich Text Editor ================*/
.rte img {
  height: auto; }
.rte table {
  table-layout: fixed; }
.rte ul,
.rte ol {
  margin: 0 0 15px 30px; }
.rte ul {
  list-style: disc outside; }
  .rte ul ul {
    list-style: circle outside; }
    .rte ul ul ul {
      list-style: square outside; }

.text-center.rte ul,
.text-center.rte ol,
.text-center .rte ul,
.text-center .rte ol {
  margin-left: 0;
  list-style-position: inside; }

.rte-table {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

.rte__video-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  height: auto; }
  .rte__video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.rte__table-wrapper {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

/*============================================================================
  Responsive tables, defined with .responsive-table on table element.
==============================================================================*/
@media only screen and (max-width: 749px) {
  .responsive-table {
    width: 100%; }
    .responsive-table thead {
      display: none; }
    .responsive-table tr {
      display: block; }
    .responsive-table tr,
    .responsive-table td {
      float: left;
      clear: both;
      width: 100%; }
    .responsive-table th,
    .responsive-table td {
      display: block;
      text-align: right;
      padding: 15px;
      margin: 0; }
    .responsive-table td::before {
      content: attr(data-label);
      float: left;
      text-align: center;
      padding-right: 10px; }

  .responsive-table-row + .responsive-table-row,
  tfoot > .responsive-table-row:first-child {
    position: relative;
    margin-top: 10px;
    padding-top: 15px; }
    .responsive-table-row + .responsive-table-row::after,
    tfoot > .responsive-table-row:first-child::after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 15px;
      right: 15px;
      border-bottom: 1px solid #f6f6f6; } }
/*================ Links & Buttons ================*/
.btn {
  -moz-user-select: "none";
  -ms-user-select: "none";
  -webkit-user-select: "none";
  user-select: "none";
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: auto;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  border: 0; }

/*============================================================================
  Form scaffolding
    - Selectors setup for you to style form elements how you want
    - Focus, error, and disabled states are set to be extended
==============================================================================*/
input,
textarea,
select {
  border: 1px solid #f6f6f6;
  border-radius: 0;
  max-width: 100%; }
  input[disabled],
  textarea[disabled],
  select[disabled] {
    cursor: default;
    background-color: black;
    border-color: black; }

textarea {
  min-height: 100px; }

/*================ Custom select style ================*/
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url(//cdn.shopify.com/s/files/1/0320/7259/7643/t/15/assets/ico-select.svg?v=53569193904132550091681143664);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: transparent;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  /*================ Hide the svg arrow in IE9 ================*/ }
  .ie9 select {
    padding-right: 10px;
    background-image: none; }

select::-ms-expand {
  display: none; }

/*================ Error styles ================*/
input.input-error,
select.input-error,
textarea.input-error {
  border-color: black;
  background-color: black;
  color: black; }

.placeholder-svg {
  display: block;
  fill: rgba(0, 0, 0, 0.35);
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2); }

.placeholder-svg--small {
  width: 480px; }

.placeholder-noblocks {
  padding: 40px;
  text-align: center; }

.placeholder-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }
  .placeholder-background .icon {
    border: 0; }

/*================ MODULES ================*/
/*================ Site Header ================*/
.site-logo {
  display: block; }
  .site-logo img {
    display: block;
    width: 100%; }

/*================ Giftcard Template ================*/
.giftcard-qr img {
  display: block;
  margin: 0 auto; }

.apple-wallet-image {
  display: block;
  margin: 0 auto; }

/*================ Print Giftcard Styles ================*/
@media print {
  @page {
    margin: 0.5cm; }

  p {
    orphans: 3;
    widows: 3; }

  html,
  body {
    background-color: #fff;
    color: #000; }

  .print-giftcard,
  .apple-wallet {
    display: none; } }
section.motor.update.update-2 img {
  height: 22vw;
  margin-bottom: 20px; }
  @media (max-width: 991px) {
    section.motor.update.update-2 img {
      height: 40vw; } }

.ly-switcher-wrapper {
  bottom: auto !important;
  top: 10px !important;
  right: 265px !important; }
