/*================ 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 ================*/
/*================ 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 ================*/
.placeholder-svg {
  display: block;
  fill: rgba(65, 65, 65, 0.35);
  background-color: rgba(65, 65, 65, 0.1);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(65, 65, 65, 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; }

/*============================================================================
  Form scaffolding
    - Selectors setup for you to style form elements how you want
    - Focus, error, and disabled states are set to be extended
==============================================================================*/
.template-form {
  padding: 8rem 0 10rem; }
  .template-form .page_content {
    text-align: center; }

.form-wrap {
  margin: 6rem auto; }

form {
  padding: 0 2rem;
  max-width: 60rem;
  margin: 0 auto; }
  form .input-wrap {
    display: block;
    margin: 1rem 0; }
  form label {
    display: block;
    font-size: 1.4rem; }
  form input,
  form textarea,
  form select {
    border: 1px solid #d5d5d5;
    border-radius: 0;
    max-width: 100%;
    width: 100%; }
    form input[disabled],
    form textarea[disabled],
    form select[disabled] {
      cursor: default;
      background-color: #000;
      border-color: #000; }
    form input:focus,
    form textarea:focus,
    form select:focus {
      outline: none; }
  form input,
  form textarea,
  form select {
    margin: 0;
    font-size: 1.6rem;
    padding: 1rem 1.5rem;
    color: #414141; }
  form textarea {
    min-height: 100px; }

/*================ Custom select style ================*/
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("./ico-select.svg");
  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: #000;
  background-color: #000;
  color: #000; }

.shopify-challenge__container {
  padding: 15rem 0; }

/*============================================================================
  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.3333333333%; }

.two-thirds {
  width: 66.6666666667%; }

/* 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.6666666667%; }

.two-sixths {
  width: 33.3333333333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.6666666667%; }

.five-sixths {
  width: 83.3333333333%; }

/* 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.3333333333%; }

.two-twelfths {
  width: 16.6666666667%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.3333333333%; }

.five-twelfths {
  width: 41.6666666667%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.3333333333%; }

.eight-twelfths {
  width: 66.6666666667%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.3333333333%; }

.eleven-twelfths {
  width: 91.6666666667%; }

.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.3333333333%; }
  .small--two-thirds {
    width: 66.6666666667%; }
  /* 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.6666666667%; }
  .small--two-sixths {
    width: 33.3333333333%; }
  .small--three-sixths {
    width: 50%; }
  .small--four-sixths {
    width: 66.6666666667%; }
  .small--five-sixths {
    width: 83.3333333333%; }
  /* 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.3333333333%; }
  .small--two-twelfths {
    width: 16.6666666667%; }
  .small--three-twelfths {
    width: 25%; }
  .small--four-twelfths {
    width: 33.3333333333%; }
  .small--five-twelfths {
    width: 41.6666666667%; }
  .small--six-twelfths {
    width: 50%; }
  .small--seven-twelfths {
    width: 58.3333333333%; }
  .small--eight-twelfths {
    width: 66.6666666667%; }
  .small--nine-twelfths {
    width: 75%; }
  .small--ten-twelfths {
    width: 83.3333333333%; }
  .small--eleven-twelfths {
    width: 91.6666666667%; }
  .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.3333333333%; }
  .medium-up--two-thirds {
    width: 66.6666666667%; }
  /* 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.6666666667%; }
  .medium-up--two-sixths {
    width: 33.3333333333%; }
  .medium-up--three-sixths {
    width: 50%; }
  .medium-up--four-sixths {
    width: 66.6666666667%; }
  .medium-up--five-sixths {
    width: 83.3333333333%; }
  /* 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.3333333333%; }
  .medium-up--two-twelfths {
    width: 16.6666666667%; }
  .medium-up--three-twelfths {
    width: 25%; }
  .medium-up--four-twelfths {
    width: 33.3333333333%; }
  .medium-up--five-twelfths {
    width: 41.6666666667%; }
  .medium-up--six-twelfths {
    width: 50%; }
  .medium-up--seven-twelfths {
    width: 58.3333333333%; }
  .medium-up--eight-twelfths {
    width: 66.6666666667%; }
  .medium-up--nine-twelfths {
    width: 75%; }
  .medium-up--ten-twelfths {
    width: 83.3333333333%; }
  .medium-up--eleven-twelfths {
    width: 91.6666666667%; }
  .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 ================*/
/*================ 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: #414141;
  background-color: #fff;
  padding: 15px;
  z-index: 10000;
  transition: none; }

/*================ Icons ================*/
.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle; }
  .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.2857142857px;
  height: 24px; }

.wrapper-bundles {
  display: block !important; }
  .wrapper-bundles .bold-bundles-widget {
    background: #fff; }
  .wrapper-bundles .bold-bundles-widget__footer {
    text-align: center !important; }
  .wrapper-bundles select {
    padding: 10px;
    border-radius: 0; }
  .wrapper-bundles button.btn {
    font-size: 1.4rem;
    border-radius: 0px;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    text-align: center;
    min-width: 18rem;
    text-decoration: none;
    display: inline-block;
    background: #1b75bc; }
    .wrapper-bundles button.btn span {
      text-decoration: none;
      color: #fff;
      border-bottom: none; }

.template-landing-page #video-modal .modal-body {
  max-height: 80vh;
  overflow: scroll;
  padding: 20px;
  background: #fff; }
  .template-landing-page #video-modal .modal-body .bold-bundle.multiple_bundles .bold-bundles-widget {
    display: none; }
    .template-landing-page #video-modal .modal-body .bold-bundle.multiple_bundles .bold-bundles-widget:first-of-type {
      display: block; }
  .template-landing-page #video-modal .modal-body .video-container {
    padding-bottom: 0; }

.template-landing-page .bold-bundle.full-page .bold-bundles-widget {
  width: calc(33% - 10px);
  vertical-align: top;
  display: inline-block;
  margin: 3px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  min-height: 950px; }
  .template-landing-page .bold-bundle.full-page .bold-bundles-widget:first-of-type {
    display: none; }
  @media only screen and (max-width: 949px) {
    .template-landing-page .bold-bundle.full-page .bold-bundles-widget {
      width: calc(50% - 10px); } }
  @media only screen and (max-width: 599px) {
    .template-landing-page .bold-bundle.full-page .bold-bundles-widget {
      width: calc(100%);
      margin: 0 20px;
      min-height: 0; } }
  .template-landing-page .bold-bundle.full-page .bold-bundles-widget .bold-bundles-widget__footer {
    text-align: center; }
    .template-landing-page .bold-bundle.full-page .bold-bundles-widget .bold-bundles-widget__footer button {
      border: none; }

.template-landing-page .bold-bundles-widget {
  border-color: #fff;
  margin-top: 0; }
  .template-landing-page .bold-bundles-widget select {
    padding: 10px;
    border-radius: 0; }
  .template-landing-page .bold-bundles-widget button.btn {
    font-size: 1.4rem;
    border-radius: 0px;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    text-align: center;
    min-width: 18rem;
    text-decoration: none;
    display: inline-block;
    background: #1b75bc; }
    .template-landing-page .bold-bundles-widget button.btn span {
      text-decoration: none;
      color: #fff;
      border-bottom: none; }

.template-landing-page .hero_wrapper {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative; }
  .template-landing-page .hero_wrapper .hero_overlay {
    position: absolute;
    width: 430px;
    background: #1b75bc;
    top: 0;
    right: 10%;
    padding: 9% 30px 30px; }
    @media screen and (max-width: 1200px) {
      .template-landing-page .hero_wrapper .hero_overlay {
        right: 0;
        top: 0;
        bottom: 2px;
        padding: 5% 30px; } }
    @media only screen and (max-width: 749px) {
      .template-landing-page .hero_wrapper .hero_overlay {
        position: relative;
        display: block;
        width: 100%;
        margin-top: -20px;
        margin-bottom: 20px; } }
    .template-landing-page .hero_wrapper .hero_overlay h2 {
      line-height: 1;
      color: #fff;
      border-top: 4px solid #fff;
      padding-top: 10px; }
    .template-landing-page .hero_wrapper .hero_overlay p {
      color: #fff;
      margin-top: 25px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.3); }
    .template-landing-page .hero_wrapper .hero_overlay a.button-primary {
      background: #fff;
      color: #1b75bc;
      font-weight: 800;
      letter-spacing: 1px;
      padding: 1.5rem 6rem;
      font-size: 1.5rem; }

.template-landing-page #bundle-voting,
.template-landing-page #bundle-details {
  padding: 50px 0; }
  .template-landing-page #bundle-voting .two_third,
  .template-landing-page #bundle-details .two_third {
    display: inline-block;
    width: 66%;
    padding: 0 20px;
    vertical-align: top;
    text-align: center; }
    @media only screen and (max-width: 599px) {
      .template-landing-page #bundle-voting .two_third,
      .template-landing-page #bundle-details .two_third {
        width: 100%;
        margin-bottom: 50px; } }
  .template-landing-page #bundle-voting .one_third,
  .template-landing-page #bundle-details .one_third {
    display: inline-block;
    width: 33%;
    padding: 0 20px;
    vertical-align: top;
    text-align: center; }
    @media only screen and (max-width: 599px) {
      .template-landing-page #bundle-voting .one_third,
      .template-landing-page #bundle-details .one_third {
        width: 100%;
        margin-bottom: 50px; } }
    .template-landing-page #bundle-voting .one_third h3,
    .template-landing-page #bundle-details .one_third h3 {
      font-size: 2rem;
      min-height: 45px; }
    .template-landing-page #bundle-voting .one_third h4,
    .template-landing-page #bundle-details .one_third h4 {
      margin-top: 0;
      text-align: left; }
    .template-landing-page #bundle-voting .one_third ul,
    .template-landing-page #bundle-details .one_third ul {
      text-align: left;
      margin: 0;
      padding-left: 25px; }
      .template-landing-page #bundle-voting .one_third ul li,
      .template-landing-page #bundle-details .one_third ul li {
        font-size: 1.2rem;
        padding: 5px 0; }
    .template-landing-page #bundle-voting .one_third h6,
    .template-landing-page #bundle-details .one_third h6 {
      font-weight: 400;
      font-size: 11px;
      line-height: 1.3;
      text-align: left;
      padding-top: 20px;
      border-top: 1px solid rgba(0, 0, 0, 0.2); }
    .template-landing-page #bundle-voting .one_third p,
    .template-landing-page #bundle-details .one_third p {
      border-top: 1px solid rgba(0, 0, 0, 0.1);
      padding-top: 20px;
      text-align: left;
      color: #1b75bc; }
    .template-landing-page #bundle-voting .one_third a.button,
    .template-landing-page #bundle-details .one_third a.button {
      margin: 5px auto;
      font-weight: 800;
      letter-spacing: 1px; }

/*================ General layout styles ================*/
body,
html {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  background-color: transparent; }
  @media screen and (max-width: 1050px) {
    body,
    html {
      overflow-x: hidden; } }

.page-width {
  *zoom: 1;
  max-width: 1180px;
  padding: 0 30px;
  margin: 0 auto; }
  .page-width::after {
    content: '';
    display: table;
    clear: both; }
  .page-width #page-header {
    margin: 8rem 0; }
    @media only screen and (max-width: 949px) {
      .page-width #page-header {
        margin: 10rem 0 5rem 0; } }

h1, h2, h3, h4, h5, h6, p, span, a, button, input, label {
  font-family: "Montserrat", Helvetica, Arial, sans-serif; }

section.white, article.white, div.white {
  background: #fff; }

section.black, article.black, div.black {
  background: #000; }

section.blue, article.blue, div.blue {
  background: #1b75bc; }

section.stripe, article.stripe, div.stripe {
  background: #8d8d8d;
  padding: 7.5rem 0; }
  section.stripe.light, article.stripe.light, div.stripe.light {
    background: #d5d5d5; }
  section.stripe.dark, article.stripe.dark, div.stripe.dark {
    background: #414141; }
  section.stripe.blue, article.stripe.blue, div.stripe.blue {
    background: #1b75bc; }

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

.owl-stage {
  align-items: center; }

.bold-bundle {
  display: block !important;
  max-width: 100%; }
  .bold-bundle .bold-bundle-loaded.multiple_bundles {
    max-width: 100%;
    overflow-x: scroll; }
    .bold-bundle .bold-bundle-loaded.multiple_bundles .bold-bundles-widget {
      display: block;
      width: 100%; }
  .bold-bundle .bold-bundles-widget-item__thumbnail-decorator {
    font-size: 4em;
    padding: 10px;
    height: auto; }
    .bold-bundle .bold-bundles-widget-item__thumbnail-decorator.product-quantity {
      width: 40px;
      height: 40px; }

/*================ General Section Styles ================*/
.content-block {
  padding: 7.5rem 0; }
  @media only screen and (max-width: 949px) {
    .content-block {
      padding: 5rem 0; }
      .content-block .content-block-image {
        text-align: center; }
        .content-block .content-block-image img {
          max-width: 80%;
          margin: 0 auto 1.5rem auto; } }
  .content-block .button-wrapper {
    margin-top: 3rem; }
  .content-block.no_padding {
    padding: 0; }
    @media only screen and (max-width: 949px) {
      .content-block.no_padding {
        padding: 5rem 0; } }

.content-block-left,
.content-block-right {
  display: grid;
  grid-template-columns: 50fr 50fr;
  align-items: center; }
  @media only screen and (max-width: 599px) {
    .content-block-left,
    .content-block-right {
      display: block; } }

.content-block-image,
.content-block-content {
  grid-row: 1 / 2; }
  @media only screen and (max-width: 949px) {
    .content-block-image .button,
    .content-block-content .button {
      display: block;
      margin: .5rem 0 !important; } }
  @media only screen and (max-width: 599px) {
    .content-block-image,
    .content-block-content {
      width: 100%; } }

.content-block-left .content-block-image {
  grid-column: 1 / 2; }
  @media only screen and (max-width: 599px) {
    .content-block-left .content-block-image {
      width: 100%; } }

.content-block-left .content-block-content {
  grid-column: 2 / 3;
  padding-left: 3rem;
  text-align: center; }
  @media only screen and (max-width: 599px) {
    .content-block-left .content-block-content {
      width: 100%;
      padding-left: 0; } }

.content-block-right .content-block-content {
  grid-column: 1 / 2;
  padding-right: 3rem; }
  @media only screen and (max-width: 599px) {
    .content-block-right .content-block-content {
      padding-right: 0; } }

.content-block-right .content-block-image {
  grid-column: 2 / 3; }

.content-block-callouts {
  display: grid;
  align-items: center;
  padding: 4rem 15%; }
  .content-block-callouts h3, .content-block-callouts h4 {
    text-align: center; }
  .content-block-callouts h3 {
    font-weight: 400;
    margin: 1.5rem 0 0 0; }
  .content-block-callouts h4 {
    font-size: 1.5rem;
    margin: .5rem 0 0 0; }
  .content-block-callouts svg {
    max-height: 45px;
    margin: 0 auto 5px; }

.callouts1 {
  grid-template-columns: 1fr; }

.callouts2 {
  grid-template-columns: 1fr 1fr; }

.callouts3 {
  grid-template-columns: 1fr 1fr 1fr; }

.callouts4 {
  grid-template-columns: 1fr 1fr 1fr 1fr; }
  @media only screen and (max-width: 599px) {
    .callouts4 {
      grid-template-columns: 1fr 1fr; }
      .callouts4 .feature-callout {
        margin-top: 1.5rem; } }

.callouts5 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr; }
  @media only screen and (max-width: 599px) {
    .callouts5 {
      grid-template-columns: 1fr 1fr; }
      .callouts5 .feature-callout {
        margin-top: 1.5rem; } }

.cta-stripe {
  text-align: center;
  padding: 3rem 0; }
  .cta-stripe p {
    margin: 1.5rem 0 0 0; }
  .cta-stripe h6 {
    margin: 1rem 0 0 0;
    font-weight: 500; }

.pxFormGenerator {
  max-width: 75rem; }

/*================ Global Template Element Styles ================*/
#shopify-section-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 50000; }

header {
  transition: transform .3s ease; }

main {
  padding-top: 5rem; }

.banner-notification {
  text-align: center;
  padding: 5px 0; }
  .banner-notification h5 {
    margin: 5px 0;
    font-weight: 600; }
    .banner-notification h5 a {
      text-decoration: none;
      background: #fff;
      color: #404040;
      padding: 5px 15px;
      line-height: 2;
      margin: 0 10px; }

.pre-header h5 {
  margin: .5rem 0; }
  .pre-header h5 a {
    color: #fff; }
  @media only screen and (max-width: 599px) {
    .pre-header h5 {
      font-size: 1.2rem; } }

.pre-header .pre-header--left {
  text-align: left;
  display: inline-block; }

.pre-header .pre-header--right {
  text-align: right;
  float: right; }

.pre-header #affirm-logo svg {
  width: 65px;
  margin-left: 3px; }

@media screen and (max-width: 815px) {
  .pre-header {
    padding: .5rem 0; }
    .pre-header .pre-header--left,
    .pre-header .pre-header--right {
      float: none;
      display: block;
      text-align: center; } }

header .main-nav {
  background: #000; }
  header .main-nav .page-width {
    display: grid;
    grid-template-columns: 30rem 1fr; }
    @media screen and (max-width: 1070px) {
      header .main-nav .page-width {
        grid-template-columns: 20% 80%; } }
  header .main-nav .mobile-toggle.open {
    display: none; }
    header .main-nav .mobile-toggle.open a svg {
      width: 3rem;
      margin: 1.5rem 0;
      border: none; }
      header .main-nav .mobile-toggle.open a svg #first, header .main-nav .mobile-toggle.open a svg #last {
        transition: all .3s ease; }
    header .main-nav .mobile-toggle.open a:hover svg #first {
      transform: translateY(80%); }
    header .main-nav .mobile-toggle.open a:hover svg #last {
      transform: translateY(-80%); }
    header .main-nav .mobile-toggle.open a.active svg #first {
      transform: translate(24%, 0) rotate(45deg);
      width: 80%; }
    header .main-nav .mobile-toggle.open a.active svg #middle {
      width: 0; }
    header .main-nav .mobile-toggle.open a.active svg #last {
      transform: translate(-25%, 25%) rotate(-45deg);
      width: 80%; }
    @media only screen and (max-width: 949px) {
      header .main-nav .mobile-toggle.open {
        display: block;
        grid-column: 1/2;
        text-align: left;
        align-items: center; } }
  header .main-nav h1, header .main-nav .h1 {
    margin: 0;
    grid-column: 1/2;
    font-size: .1rem; }
    header .main-nav h1 svg, header .main-nav .h1 svg {
      fill: #fff;
      width: 27rem;
      margin: 1.5rem 0; }
      @media screen and (max-width: 1070px) {
        header .main-nav h1 svg, header .main-nav .h1 svg {
          width: 100%; } }
      @media only screen and (max-width: 949px) {
        header .main-nav h1 svg, header .main-nav .h1 svg {
          width: 20rem; } }
    @media only screen and (max-width: 949px) {
      header .main-nav h1, header .main-nav .h1 {
        grid-column: 2/3;
        text-align: right; } }
  header .main-nav nav {
    grid-column: 2/3; }
    @media only screen and (max-width: 949px) {
      header .main-nav nav {
        position: fixed;
        left: 0;
        top: 8rem;
        height: 100vh;
        background: #000;
        width: 100%;
        transform: translateX(-110%);
        transition: transform .5s ease; }
        header .main-nav nav.visible {
          transform: translateX(0%); } }
    @media screen and (max-width: 815px) {
      header .main-nav nav {
        top: 11rem; } }
  header .main-nav ul.site-nav {
    margin: 0;
    text-align: right; }
    @media only screen and (max-width: 949px) {
      header .main-nav ul.site-nav {
        text-align: left;
        padding: 0 3rem; } }
    header .main-nav ul.site-nav li {
      display: inline; }
      @media only screen and (max-width: 949px) {
        header .main-nav ul.site-nav li {
          display: block; }
          header .main-nav ul.site-nav li a {
            padding: 0 2rem; } }
      header .main-nav ul.site-nav li:last-of-type a {
        margin-right: 0; }
      header .main-nav ul.site-nav li.site-nav__phat-golf svg {
        width: 100px; }
      header .main-nav ul.site-nav li.site-nav__cart svg {
        fill: #fff; }
      header .main-nav ul.site-nav li a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.5rem;
        text-transform: uppercase;
        margin-right: 1.5rem;
        display: inline-block;
        padding: 1.5rem 0; }
      header .main-nav ul.site-nav li.site-nav--active a {
        color: #1b75bc; }
      header .main-nav ul.site-nav li.site-nav--has-submenu svg {
        fill: #fff;
        width: 1rem; }
      header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu {
        display: none;
        position: absolute;
        z-index: 5000;
        left: 0;
        width: 100vw;
        background: #d5d5d5;
        margin: 0;
        text-align: center; }
        header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu li {
          display: inline-block; }
          header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu li a {
            padding: 7rem 2rem 1rem 2rem;
            line-height: 2;
            color: #000;
            background-position: top 2rem center !important;
            background-repeat: no-repeat !important; }
            header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu li a:hover {
              opacity: .7; }
            header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu li a.Artist {
              background: url("./menu-artist.svg");
              background-size: 7rem;
              background-position: top 3rem center !important; }
            header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu li a.Delivery {
              background: url("./menu-delivery-black.svg");
              background-size: 7rem;
              background-position: top 1.5rem center !important; }
            header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu li a.Scooters {
              background: url("./menu-phatty.svg");
              background-size: 5rem; }
            header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu li a.Sale {
              background: url("./menu-sale.svg");
              background-size: 5rem; }
            header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu li a.Apparel {
              background: url("./menu-apparel.svg");
              background-size: 5rem; }
            header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu li a.Accessories {
              background: url("./menu-accessories.svg");
              background-size: 3.6rem; }
            header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu li a.Parts {
              background: url("./menu-parts.svg");
              background-size: 6.5rem; }
            header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu li a.Products {
              background: url("./menu-all-products.svg");
              background-size: 5rem; }
            header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu li a.Fan {
              background: url("./menu-fanzone.png");
              background-size: 9rem;
              background-position: top center !important; }
            header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu li a.Specials {
              background: url("./menu-specials.svg");
              background-size: 5rem; }
            header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu li a.PHLEX {
              background: url("./menu-flex.png");
              background-size: 9rem;
              background-position: top center !important; }
            header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu li a.Bundles {
              background: url("./menu-bundles.svg");
              background-size: 8rem;
              background-position: top center !important; }
            header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu li a.Contact {
              background: url("./menu-contact.svg");
              background-size: 4.5rem; }
            header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu li a.Corporate {
              background: url("./menu-corporate.svg");
              background-size: 6.5rem; }
            header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu li a.Rentals {
              background: url("./menu-rentals.svg");
              background-size: 4.5rem; }
            header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu li a.Registration {
              background: url("./menu-registration.svg");
              background-size: 4rem; }
            header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu li a.Press {
              background: url("./menu-press.svg");
              background-size: 5rem; }
            header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu li a.Waiver {
              background: url("./menu-waiver.svg");
              background-size: 5rem; }
            header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu li a.Guide {
              background: url("./menu-guide.svg");
              background-size: 4.75rem; }
            header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu li a.Video {
              background: url("./menu-video.svg");
              background-size: 4.5rem; }
            header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu li a.Custom {
              background: url("./menu-custom.svg");
              background-size: 5rem; }
      @media only screen and (max-width: 949px) {
        header .main-nav ul.site-nav li.site-nav--has-submenu .site-nav__submenu {
          position: relative;
          width: auto;
          padding: 0; } }

#hero {
  padding: 18rem 10rem;
  text-align: right; }
  @media only screen and (max-width: 949px) {
    #hero {
      padding: 18rem 0;
      text-align: center; }
      #hero h2, #hero h1 {
        max-width: 100% !important;
        margin: 0 auto 2rem auto !important; } }
  #hero.left {
    text-align: left; }
    @media only screen and (max-width: 599px) {
      #hero.left {
        text-align: center; } }
    #hero.left h2, #hero.left h1 {
      margin: 0 auto 3rem 0; }
  #hero h2, #hero h1 {
    max-width: 28rem;
    margin: 0 0 3rem auto; }
    @media only screen and (max-width: 949px) {
      #hero h2, #hero h1 {
        max-width: 500rem !important; } }
  #hero a:first-of-type {
    margin-right: 1rem; }
    @media only screen and (max-width: 599px) {
      #hero a:first-of-type {
        margin-right: 0;
        margin-bottom: 1.5rem; } }

#hero-slider {
  border-bottom: 1px solid #e5e5e5; }
  #hero-slider .hero-slide {
    padding: 12rem 0 18rem 10rem; }
    @media only screen and (max-width: 949px) {
      #hero-slider .hero-slide {
        padding: 8rem 0 40rem 0;
        text-align: center; } }
    @media only screen and (max-width: 599px) {
      #hero-slider .hero-slide {
        background-position: bottom center; } }
    #hero-slider .hero-slide h2, #hero-slider .hero-slide h1 {
      max-width: 50rem;
      margin: 0 0 5rem 0; }
      @media only screen and (max-width: 949px) {
        #hero-slider .hero-slide h2, #hero-slider .hero-slide h1 {
          margin: 0 auto 4rem auto; } }
    #hero-slider .hero-slide a:first-of-type {
      margin-right: 1rem; }
      @media only screen and (max-width: 599px) {
        #hero-slider .hero-slide a:first-of-type {
          margin-right: 0;
          margin-bottom: 1.5rem; } }
  #hero-slider .owl-dots {
    margin: 0 0 -22px 0;
    transform: translateY(-150%); }
    #hero-slider .owl-dots button span {
      background: #fff; }
    #hero-slider .owl-dots .active {
      opacity: .5; }

#modes {
  text-align: center; }
  #modes .mode-icons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 75rem;
    margin: 3rem auto; }
    @media only screen and (max-width: 599px) {
      #modes .mode-icons {
        display: none; } }
  #modes .mode-icon {
    padding: 0 5rem; }
  #modes p {
    max-width: 70rem;
    margin: 0 auto 2rem auto; }

#reviews {
  padding: 17.5rem 0;
  text-align: center;
  background: transparent; }
  @media only screen and (max-width: 949px) {
    #reviews {
      padding: 7.5rem 0; } }
  @media only screen and (max-width: 599px) {
    #reviews {
      display: none; } }
  #reviews #off-road-video {
    position: absolute;
    right: 0;
    left: 0;
    transform: translateY(-38%);
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    max-width: 100%; }
    @media screen and (max-width: 1050px) {
      #reviews #off-road-video {
        width: 1050px;
        max-width: none; } }
  #reviews .wrap {
    width: 50%;
    transform: translateX(100%); }
    @media screen and (max-width: 1050px) {
      #reviews .wrap {
        transform: translateX(50%); } }
  #reviews h4 {
    margin: 1rem 0 2.5rem;
    font-weight: 500; }

#affirm {
  padding: 2rem 0 3rem; }
  #affirm .page-width {
    display: grid;
    grid-template-columns: 1fr 25rem;
    align-items: center;
    max-width: 110rem; }
    @media only screen and (max-width: 949px) {
      #affirm .page-width {
        display: block; } }
  #affirm .affirm-left {
    grid-column: 1/2; }
    @media only screen and (max-width: 949px) {
      #affirm .affirm-left {
        display: block;
        text-align: center; } }
    #affirm .affirm-left h2 {
      line-height: 1; }
    #affirm .affirm-left h4 {
      margin: 1rem 0 0 0; }
      #affirm .affirm-left h4 span {
        display: block; }
  #affirm .affirm-right {
    grid-column: 2/3; }
    @media only screen and (max-width: 949px) {
      #affirm .affirm-right {
        display: block;
        text-align: center; }
        #affirm .affirm-right svg {
          margin: 2rem auto 0 auto;
          max-width: 25rem; } }

#partners {
  padding: 7.5em 0;
  text-align: center;
  background: #fff; }
  #partners .partners-carousel {
    max-width: 85rem;
    margin: 0 auto;
    padding: 0 4rem; }
    @media only screen and (max-width: 599px) {
      #partners .partners-carousel {
        padding: 0; } }
    #partners .partners-carousel .owl-nav {
      max-width: 85rem;
      font-size: 5rem;
      position: absolute;
      width: 100%;
      top: 0;
      left: 0; }
      #partners .partners-carousel .owl-nav button:hover {
        background: transparent !important;
        color: #414141 !important;
        opacity: .5; }
      #partners .partners-carousel .owl-nav button.owl-prev {
        float: left; }
      #partners .partners-carousel .owl-nav button.owl-next {
        float: right; }

#pre-footer .page-width {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  align-items: self-end;
  max-width: 90rem; }
  @media only screen and (max-width: 599px) {
    #pre-footer .page-width {
      grid-template-columns: 1fr 1fr; }
      #pre-footer .page-width .pre-footer-block {
        margin-top: 2rem; }
        #pre-footer .page-width .pre-footer-block:nth-of-type(5) {
          display: none; } }
  #pre-footer .page-width .pre-footer-block {
    padding: 0 1.5rem;
    text-align: center; }
    #pre-footer .page-width .pre-footer-block svg {
      max-width: 15rem;
      max-height: 6rem; }
    #pre-footer .page-width .pre-footer-block h4 {
      font-weight: 400;
      font-size: 1.5rem;
      max-width: 10rem;
      margin: 2rem auto 0 auto; }

footer {
  background: #414141;
  padding: 5rem 0 0 0; }
  footer svg {
    fill: #fff; }
  footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0; }
    footer ul li {
      color: #fff; }
  footer a {
    color: #fff;
    text-decoration: none; }
    footer a:hover {
      opacity: .5; }
  footer h6 {
    margin: 2rem 0 0 0;
    padding: 3px 0; }
  footer .footer-logo .site-logo {
    display: inline-block; }
  footer .footer-logo svg {
    width: 30rem;
    height: auto; }
  footer .one_quarter {
    display: inline-block;
    width: 25%;
    vertical-align: top; }
    @media only screen and (max-width: 949px) {
      footer .one_quarter {
        width: 50%; } }
    @media only screen and (max-width: 599px) {
      footer .one_quarter {
        width: 100%; } }
    footer .one_quarter h6 {
      text-transform: uppercase;
      font-size: 1.2rem; }
    footer .one_quarter li {
      font-size: 1.2rem;
      padding: 3px 0; }
      footer .one_quarter li a {
        text-transform: uppercase; }
  footer .footer-contact {
    padding-left: 1.5rem; }
    footer .footer-contact svg {
      fill: #76acd7;
      transform: translateX(-1rem);
      max-width: 1.5rem; }
    footer .footer-contact li {
      padding: .5rem 0 .5rem 1rem;
      text-indent: -1.5rem;
      max-width: 20rem;
      line-height: 1; }
  footer #newsletter_signup {
    margin: 0;
    padding: 0; }
    footer #newsletter_signup fieldset {
      border: none;
      margin: 1rem 0 0 0;
      padding: 0; }
    footer #newsletter_signup input {
      display: inline-block;
      font-size: 1.5rem;
      padding: .5rem; }
      footer #newsletter_signup input#email {
        width: 60%;
        margin: 0; }
      footer #newsletter_signup input#submit {
        background: #1b75bc;
        color: #fff;
        font-weight: 400;
        margin: 0;
        border: none;
        text-transform: uppercase;
        padding: .6rem 0;
        width: 39%;
        transform: translateX(-5%); }
        footer #newsletter_signup input#submit:hover {
          opacity: .7; }
      @media screen and (max-width: 1000px) {
        footer #newsletter_signup input#submit, footer #newsletter_signup input#email {
          display: block;
          width: 100%;
          margin: 0 auto;
          transform: none; } }
    footer #newsletter_signup .error,
    footer #newsletter_signup .success {
      display: none;
      font-size: 1.2rem;
      font-weight: 700;
      text-transform: capitalize;
      padding: .5rem 0 0 0;
      margin: 0; }
      footer #newsletter_signup .error.visible,
      footer #newsletter_signup .success.visible {
        display: block; }
    footer #newsletter_signup .error {
      color: #ff6262; }
    footer #newsletter_signup .success {
      color: #1b75bc; }
  footer .social_icons {
    margin-top: 3rem; }
    footer .social_icons li {
      display: inline;
      margin: 0 .5rem; }
      footer .social_icons li a:hover {
        opacity: 1; }
        footer .social_icons li a:hover svg {
          fill: #76acd7; }
  footer .copyright {
    text-align: center;
    font-weight: 400;
    margin: 4rem 0 1.5rem 0; }

ul.cart_summary__methods {
  list-style-type: none;
  margin: 0;
  padding: 0; }
  ul.cart_summary__methods li {
    display: inline-block;
    margin: 0 .1rem; }

.fancybox-skin {
  background: #fff !important; }
  .fancybox-skin h4 {
    text-align: center; }
  .fancybox-skin .cart_added__row {
    font-size: 1.4rem;
    line-height: 1.4; }
    .fancybox-skin .cart_added__row #cart_added__quantity {
      font-weight: 600; }
    .fancybox-skin .cart_added__row img {
      max-height: 15rem !important;
      float: left;
      margin-right: 1.5rem; }

/*================ MailChimp Modal Styles ================*/
.mc-modal {
  z-index: 500001 !important; }

.mc-banner {
  z-index: 500001 !important;
  bottom: 0 !important;
  top: auto !important; }

/*================ Home Page Instagram Styles ================*/
.template-index .eapps-instagram-feed {
  border-top: 1px solid #f5f5f5;
  padding-top: 5rem; }

.template-index .eapps-instagram-feed-title {
  font-size: 5.6rem;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  padding-bottom: 4rem; }
  @media only screen and (max-width: 949px) {
    .template-index .eapps-instagram-feed-title {
      font-size: 3.8rem;
      padding-bottom: 3rem; } }
  .template-index .eapps-instagram-feed-title.page-heading {
    text-align: center; }

/*================ Links & Buttons ================*/
a:focus, a:active, button:focus, button:active, input:focus, input:active {
  outline: none; }

.button,
.btn-cart,
.bold_cart_edit_button,
.bold_option_edit_container button {
  font-size: 1.4rem;
  border-radius: 0px;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  text-align: center;
  min-width: 18rem;
  text-decoration: none;
  display: inline-block; }
  .button:hover, .button:focus,
  .btn-cart:hover,
  .btn-cart:focus,
  .bold_cart_edit_button:hover,
  .bold_cart_edit_button:focus,
  .bold_option_edit_container button:hover,
  .bold_option_edit_container button:focus {
    outline: none; }
  .button:first-of-type,
  .btn-cart:first-of-type,
  .bold_cart_edit_button:first-of-type,
  .bold_option_edit_container button:first-of-type {
    margin-right: 1rem; }
    @media only screen and (max-width: 599px) {
      .button:first-of-type,
      .btn-cart:first-of-type,
      .bold_cart_edit_button:first-of-type,
      .bold_option_edit_container button:first-of-type {
        margin-right: 0;
        margin-bottom: 1.5rem; } }

.button-primary,
.btn-cart {
  background: #1b75bc;
  color: #fff;
  font-weight: 400;
  border: none; }
  .button-primary:hover,
  .btn-cart:hover {
    background: #414141; }

.button-secondary {
  background: #1b75bc;
  color: #fff;
  font-weight: 700; }
  .button-secondary:hover {
    background: #8d8d8d; }

.button-tertiary {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 400; }
  .button-tertiary:hover {
    background: rgba(255, 255, 255, 0.3); }
  .button-tertiary.blue {
    background: #1b75bc;
    color: #fff;
    font-weight: 600;
    border: none; }

.button-text {
  font-size: 1.4rem;
  text-decoration: none;
  color: #414141;
  font-weight: 500;
  border-bottom: 2px solid #8d8d8d;
  margin: 0 1rem; }

.disabled {
  background: #8d8d8d; }
  .disabled:hover, .disabled:focus, .disabled:active {
    background: #8d8d8d; }

.spinner {
  margin: 100px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px; }

.spinner > div {
  background-color: #1b75bc;
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out; }

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s; }

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s; }

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s; }

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s; }

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4); }
  20% {
    -webkit-transform: scaleY(1); } }

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4); }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1); } }

/*! 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; }

/*============================================================================
  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; } }

/*================ 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; }

/*================ 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 ================*/
@media only screen and (max-width: 949px) {
  input,
  textarea,
  select {
    font-size: 16px; } }

button,
input[type="submit"],
label[for] {
  cursor: pointer; }

optgroup {
  font-weight: 700; }

option {
  color: #414141;
  background-color: #fff; }

[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; }

html,
body {
  font-size: 62.5%; }

h1.white, h2.white, h3.white, h4.white, h5.white, h6.white, p.white, span.white, input.white, label.white, a.white {
  color: #fff; }

h1.black, h2.black, h3.black, h4.black, h5.black, h6.black, p.black, span.black, input.black, label.black, a.black {
  color: #000; }

h1.blue, h2.blue, h3.blue, h4.blue, h5.blue, h6.blue, p.blue, span.blue, input.blue, label.blue, a.blue {
  color: #1b75bc; }

h1, h2 {
  font-size: 5.3rem;
  margin: 0; }
  @media only screen and (max-width: 949px) {
    h1, h2 {
      font-size: 3.8rem; } }
  h1.page-heading, h2.page-heading {
    text-align: center; }
  h1.subhead, h2.subhead {
    font-size: 2.2rem; }

h3 {
  text-transform: uppercase;
  font-size: 2.3rem; }
  @media only screen and (max-width: 949px) {
    h3 {
      font-size: 2rem; } }

h4 {
  text-transform: uppercase;
  font-size: 2rem; }

h5 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.5rem; }

h6 {
  font-size: 1rem; }

p {
  font-size: 1.6rem;
  line-height: 1.4; }
  p.form-success {
    text-align: center;
    font-style: italic; }

.success,
.error {
  text-align: center;
  display: none; }
  .success.visible,
  .error.visible {
    display: block; }

.strikethrough {
  text-decoration: line-through;
  opacity: .5; }

.template-about #about-intro p {
  max-width: 900px;
  margin: 100px auto 60px;
  font-size: 20px;
  line-height: 1.4;
  text-align: center; }

.template-about h2 {
  text-align: center; }

.template-about .phat-team-list {
  display: flex;
  align-items: stretch;
  flex-basis: 25%;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 40px auto; }
  .template-about .phat-team-list .phat-team-member {
    width: 23%;
    border: 1px solid #e9e9e9;
    margin: 1%;
    padding: 10px;
    text-align: center; }
    @media only screen and (max-width: 749px) {
      .template-about .phat-team-list .phat-team-member {
        width: 31%; } }
    @media only screen and (max-width: 599px) {
      .template-about .phat-team-list .phat-team-member {
        width: 100%;
        margin: 20px 0; } }
    .template-about .phat-team-list .phat-team-member img {
      max-width: 100%;
      margin: 0 auto 10px; }
      @media only screen and (max-width: 599px) {
        .template-about .phat-team-list .phat-team-member img {
          max-width: 200px; } }
    .template-about .phat-team-list .phat-team-member dt, .template-about .phat-team-list .phat-team-member dd {
      text-align: left;
      padding: 0;
      margin: 0; }
    .template-about .phat-team-list .phat-team-member dt {
      padding-bottom: 5px;
      font-size: 12px;
      font-weight: 600;
      color: #1b75bc; }
    .template-about .phat-team-list .phat-team-member dd {
      font-size: 15px;
      line-height: 1.3;
      margin-bottom: 10px;
      padding-bottom: 10px;
      border-bottom: 1px solid #e9e9e9; }
      .template-about .phat-team-list .phat-team-member dd:last-of-type {
        border-bottom: none; }
      .template-about .phat-team-list .phat-team-member dd.name {
        font-size: 22px;
        color: #1b75bc;
        font-weight: 700; }

.text-link {
  font-style: italic;
  color: #303030;
  padding: .3rem;
  display: inline-block; }
  .text-link#RecoverPassword {
    width: 100%;
    text-align: right;
    margin-top: 1rem; }

button.text-link {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  border: none;
  font-size: 1.2rem;
  background: #e5e5e5;
  padding: 1rem 2rem; }

.button-gray {
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  background: #e5e5e5;
  margin: .5rem 0;
  padding: .5rem 2rem;
  text-transform: none;
  min-width: 0; }
  .button-gray:hover {
    background: #c5c5c5; }

.template-login main,
.template-register main {
  padding: 20rem 0 12rem 0; }
  .template-login main form,
  .template-register main form {
    max-width: 35rem; }
  .template-login main h1, .template-login main h2, .template-login main p,
  .template-register main h1,
  .template-register main h2,
  .template-register main p {
    text-align: center;
    margin-bottom: 3rem;
    color: #202020; }

.account-content {
  display: grid;
  margin-bottom: 8rem;
  grid-template-columns: .5fr .5fr;
  grid-column-gap: 5rem; }
  .account-content h2 {
    font-size: 4.5rem;
    font-weight: 600;
    color: #1b75bc;
    border-bottom: .2rem solid #404040;
    padding-bottom: 1rem; }
  .account-content p {
    font-size: 1.4rem; }
  .account-content .address-new-toggle {
    margin-top: 4rem; }

.overlay-form {
  position: fixed;
  top: 0;
  width: 90%;
  max-width: 50rem;
  left: 50%;
  transform: translate(-50%, 5%);
  background: #fff;
  z-index: 10000000;
  padding: 3rem 2rem;
  box-shadow: 0 0 4rem rgba(0, 0, 0, 0.3);
  max-height: 95vh;
  overflow: scroll; }
  .overlay-form h4 {
    margin-top: 0; }
  .overlay-form label {
    font-size: 1.1rem;
    padding: .8rem 0 0 0; }

.template-article {
  padding-top: 0; }
  .template-article #page-header {
    text-align: center;
    background-size: cover !important;
    margin-bottom: 100px; }
    .template-article #page-header .overlay {
      background: rgba(0, 0, 0, 0.6);
      padding: 150px 10px; }
      @media only screen and (max-width: 749px) {
        .template-article #page-header .overlay {
          padding: 120px 10px 70px; } }
      .template-article #page-header .overlay h1 {
        width: 90%;
        max-width: 800px;
        margin: 0 auto;
        color: #fff; }
    .template-article #page-header time.article_date {
      color: #fff;
      font-size: 14px;
      padding-top: 19px;
      margin-top: 15px;
      display: block;
      position: relative; }
      .template-article #page-header time.article_date:before {
        content: "";
        padding: 0 20px;
        border-top: 4px solid #fff;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%); }
  .template-article .blog_article {
    max-width: 800px;
    margin: 0 auto; }
    .template-article .blog_article .rte blockquote {
      background: #f6f6f6;
      padding: 20px 40px;
      border-radius: 10px;
      margin: 20px 0; }
      .template-article .blog_article .rte blockquote p {
        font-size: 16px;
        margin: 0;
        padding: 0;
        border-bottom: 0; }
        .template-article .blog_article .rte blockquote p:first-of-type {
          font-size: 16px;
          margin: 0;
          padding: 0;
          border-bottom: 0; }
        .template-article .blog_article .rte blockquote p .quote-title {
          font-size: 22px;
          color: #414141; }
        .template-article .blog_article .rte blockquote p .quote-date {
          font-size: 12px;
          color: #8d8d8d;
          display: inline-block;
          padding-bottom: 15px;
          font-weight: 500; }
        .template-article .blog_article .rte blockquote p .quote-name {
          text-align: right;
          display: block;
          margin-top: 10px;
          font-style: italic; }
    .template-article .blog_article .rte p {
      line-height: 1.6;
      color: #202020;
      margin: 40px 0; }
      .template-article .blog_article .rte p:first-of-type {
        font-weight: 600;
        font-size: 24px;
        color: #1b75bc;
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
      .template-article .blog_article .rte p a {
        color: #1b75bc;
        text-decoration: none;
        padding: 0 10px 0 5px;
        margin: 0 5px 0 0;
        position: relative;
        box-sizing: border-box;
        font-weight: 600;
        background: rgba(27, 117, 188, 0);
        transition: all .2s ease; }
        .template-article .blog_article .rte p a:after {
          content: "";
          border-right: 5px solid #1b75bc;
          border-bottom: 5px solid #1b75bc;
          border-top: 5px solid transparent;
          border-left: 5px solid transparent;
          position: absolute;
          bottom: 0;
          right: 0; }
        .template-article .blog_article .rte p a:hover {
          color: #fff;
          text-decoration: none;
          background: #1b75bc; }

.template-blog-home {
  padding-top: 20px; }
  .template-blog-home a {
    text-decoration: none;
    color: #1b75bc; }
  .template-blog-home .featured_post {
    background-size: cover !important;
    width: 100%;
    max-width: 100%;
    padding: 0; }
    .template-blog-home .featured_post .overlay {
      background-color: rgba(0, 0, 0, 0.4);
      text-align: center; }
      .template-blog-home .featured_post .overlay h1 {
        color: #fff;
        padding: 150px 30px 30px;
        max-width: 1000px;
        margin: 0 auto; }
        @media only screen and (max-width: 749px) {
          .template-blog-home .featured_post .overlay h1 {
            padding-top: 100px; } }
      .template-blog-home .featured_post .overlay a {
        margin: 0 auto 120px;
        color: #fff; }
        @media only screen and (max-width: 749px) {
          .template-blog-home .featured_post .overlay a {
            margin-bottom: 50px; } }
  .template-blog-home article {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 30px 30px 20px 30px;
    border: 1px solid #c9c9c9; }
    @media only screen and (max-width: 949px) {
      .template-blog-home article {
        max-width: 90%; } }
    .template-blog-home article h2 {
      font-size: 34px;
      line-height: 1.1;
      margin-bottom: 10px; }
    .template-blog-home article .article_info {
      font-size: 12px;
      color: #606060; }
    .template-blog-home article p {
      font-size: 15px;
      line-height: 1.5; }
      .template-blog-home article p a:hover {
        text-decoration: underline; }
    .template-blog-home article.with_art {
      display: grid;
      grid-template-columns: 50% 50%; }
      @media only screen and (max-width: 749px) {
        .template-blog-home article.with_art {
          display: block; } }
      .template-blog-home article.with_art .art {
        grid-column-start: 1;
        grid-column-end: 2;
        margin-right: 40px; }
        @media only screen and (max-width: 749px) {
          .template-blog-home article.with_art .art {
            margin: 0 0 30px 0; }
            .template-blog-home article.with_art .art picture {
              max-height: 300px; } }
        .template-blog-home article.with_art .art picture,
        .template-blog-home article.with_art .art img {
          overflow: hidden;
          transition: all .4s ease;
          display: block; }
        .template-blog-home article.with_art .art img:hover {
          transform: scale(1.1); }
      .template-blog-home article.with_art .content {
        grid-column-start: 2;
        grid-column-end: 3; }

.template-cart {
  background: #f5f5f5; }
  .template-cart form {
    display: flex;
    align-content: flex-start;
    justify-content: space-between;
    align-items: flex-start;
    padding: 80px 0;
    max-width: 100%; }
    @media only screen and (max-width: 749px) {
      .template-cart form {
        display: block; } }
    .template-cart form .button {
      border: none; }
    .template-cart form .money {
      font-size: 1.6rem;
      font-weight: 500; }
    .template-cart form .button-secondary,
    .template-cart form .bold_cart_edit_button {
      background: #d5d5d5;
      color: #414141;
      font-weight: 600; }
    .template-cart form hr {
      border-top: 1px solid #d9d9d9;
      border-bottom: none;
      border-left: none;
      border-right: none; }
    .template-cart form .cart_contents {
      width: calc(100% - 300px);
      max-width: 650px;
      flex-grow: 0; }
      @media only screen and (max-width: 749px) {
        .template-cart form .cart_contents {
          width: 100%; } }
      .template-cart form .cart_contents .empty {
        text-align: center; }
      .template-cart form .cart_contents .cart_item {
        background: transparent;
        display: flex;
        align-content: flex-start;
        align-items: flex-start;
        justify-content: space-between;
        padding: 10px 0;
        position: relative; }
        .template-cart form .cart_contents .cart_item button.remove {
          position: absolute;
          top: 10px;
          right: 10px;
          background: transparent;
          border: none;
          font-size: 0;
          transform: rotate(45deg);
          padding: 10px; }
          .template-cart form .cart_contents .cart_item button.remove::before {
            content: " ";
            position: absolute;
            border-left: 2px solid #000;
            padding-top: 20px;
            transform: translateY(-9px); }
          .template-cart form .cart_contents .cart_item button.remove::after {
            content: " ";
            position: absolute;
            border-top: 2px solid #000;
            padding-right: 20px;
            transform: translateX(-9px); }
        .template-cart form .cart_contents .cart_item .cart_item_image_wrap {
          width: 150px; }
          .template-cart form .cart_contents .cart_item .cart_item_image_wrap img {
            border: 1px solid #e9e9e9; }
          @media only screen and (max-width: 599px) {
            .template-cart form .cart_contents .cart_item .cart_item_image_wrap {
              display: none; } }
        .template-cart form .cart_contents .cart_item .cart_item_content_wrap {
          width: calc(100% - 170px); }
          @media only screen and (max-width: 599px) {
            .template-cart form .cart_contents .cart_item .cart_item_content_wrap {
              width: 100%; } }
          .template-cart form .cart_contents .cart_item .cart_item_content_wrap h4 {
            font-size: 1.6rem;
            text-transform: none;
            font-weight: 500;
            margin: 0; }
            @media only screen and (max-width: 749px) {
              .template-cart form .cart_contents .cart_item .cart_item_content_wrap h4 {
                max-width: 250px; } }
            .template-cart form .cart_contents .cart_item .cart_item_content_wrap h4 a {
              color: #404040;
              text-decoration: none; }
          .template-cart form .cart_contents .cart_item .cart_item_content_wrap p {
            font-size: 1.3rem;
            margin: 0;
            padding: 3px 0; }
            .template-cart form .cart_contents .cart_item .cart_item_content_wrap p.bold_option {
              margin-bottom: 0; }
        .template-cart form .cart_contents .cart_item .cart_item_edit_wrap {
          display: flex;
          padding: 15px 0 0; }
          .template-cart form .cart_contents .cart_item .cart_item_edit_wrap .quantity_box {
            width: 200px; }
            .template-cart form .cart_contents .cart_item .cart_item_edit_wrap .quantity_box input, .template-cart form .cart_contents .cart_item .cart_item_edit_wrap .quantity_box button {
              display: inline-block;
              position: relative; }
            .template-cart form .cart_contents .cart_item .cart_item_edit_wrap .quantity_box button {
              background: transparent;
              border: none;
              font-size: 1.9rem;
              color: #1b75bc;
              font-weight: 900; }
            .template-cart form .cart_contents .cart_item .cart_item_edit_wrap .quantity_box input {
              background: transparent;
              border: none;
              width: 30px;
              padding: 0;
              text-align: center; }
          .template-cart form .cart_contents .cart_item .cart_item_edit_wrap .money {
            flex-grow: 1;
            text-align: right; }
    .template-cart form .cart_totals {
      width: 250px; }
      @media only screen and (max-width: 749px) {
        .template-cart form .cart_totals {
          width: 100%;
          margin-top: 40px; } }
      .template-cart form .cart_totals h3 {
        text-transform: none;
        font-weight: 500;
        font-size: 2rem;
        margin: 0;
        padding: 0 0 10px 0; }
      .template-cart form .cart_totals dl {
        display: flex;
        justify-content: space-between;
        align-content: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        padding-bottom: 15px;
        margin-bottom: 15px;
        border-bottom: 1px solid #e9e9e9; }
        .template-cart form .cart_totals dl dt,
        .template-cart form .cart_totals dl dd {
          width: 50%;
          flex-grow: 1;
          margin: auto;
          font-size: 1.3rem;
          line-height: 1.7;
          color: #808080; }
          .template-cart form .cart_totals dl dt:last-of-type,
          .template-cart form .cart_totals dl dd:last-of-type {
            font-weight: 600;
            font-size: 1.5rem;
            padding-top: 15px;
            color: #404040; }
        .template-cart form .cart_totals dl dd {
          text-align: right; }
    .template-cart form .cart_summary {
      background: #fff;
      border: 1px solid #e9e9e9;
      padding: 10px 15px;
      margin-bottom: 30px; }
      .template-cart form .cart_summary textarea {
        width: 100%; }
    .template-cart form .cart_payments .additional-checkout-button {
      width: 100% !important;
      margin: 5px 0; }
    .template-cart form .cart_payments ul.cart_summary__methods {
      text-align: center; }
    .template-cart form .cart_payments .checkbox-354 label {
      display: flex !important;
      align-content: flex-start;
      margin: 0 !important;
      padding: 20px 0 0; }
      .template-cart form .cart_payments .checkbox-354 label input {
        width: 25px; }
      .template-cart form .cart_payments .checkbox-354 label a {
        flex-grow: 1;
        font-size: 1.2rem;
        color: #404040; }
    .template-cart form .cart_payments button.button {
      width: 100%;
      font-weight: 900; }
    .template-cart form .cart_payments h4 {
      font-size: 1.8rem;
      margin: 20px 0 0 0;
      text-align: center; }

.template-list-collections,
.template-collection {
  background: #f5f5f5; }
  .template-list-collections .template-collections,
  .template-list-collections .template-collection,
  .template-collection .template-collections,
  .template-collection .template-collection {
    padding-bottom: 8rem; }
    .template-list-collections .template-collections h2,
    .template-list-collections .template-collections .page-subheading,
    .template-list-collections .template-collection h2,
    .template-list-collections .template-collection .page-subheading,
    .template-collection .template-collections h2,
    .template-collection .template-collections .page-subheading,
    .template-collection .template-collection h2,
    .template-collection .template-collection .page-subheading {
      text-align: center;
      max-width: 700px;
      margin: 20px auto;
      font-size: 18px;
      padding-top: 20px;
      position: relative;
      font-weight: 500;
      line-height: 1.4; }
      .template-list-collections .template-collections h2:before,
      .template-list-collections .template-collections .page-subheading:before,
      .template-list-collections .template-collection h2:before,
      .template-list-collections .template-collection .page-subheading:before,
      .template-collection .template-collections h2:before,
      .template-collection .template-collections .page-subheading:before,
      .template-collection .template-collection h2:before,
      .template-collection .template-collection .page-subheading:before {
        content: "";
        padding: 4px 40px;
        border-top: 4px solid #1b75bc;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%); }
      .template-list-collections .template-collections h2 p,
      .template-list-collections .template-collections .page-subheading p,
      .template-list-collections .template-collection h2 p,
      .template-list-collections .template-collection .page-subheading p,
      .template-collection .template-collections h2 p,
      .template-collection .template-collections .page-subheading p,
      .template-collection .template-collection h2 p,
      .template-collection .template-collection .page-subheading p {
        margin: 0;
        padding: 0; }
    .template-list-collections .template-collections .collections-wrapper,
    .template-list-collections .template-collections .products-wrapper,
    .template-list-collections .template-collection .collections-wrapper,
    .template-list-collections .template-collection .products-wrapper,
    .template-collection .template-collections .collections-wrapper,
    .template-collection .template-collections .products-wrapper,
    .template-collection .template-collection .collections-wrapper,
    .template-collection .template-collection .products-wrapper {
      display: grid;
      grid-template-columns: .25fr .25fr .25fr .25fr;
      grid-column-gap: 2.5rem; }
      @media only screen and (max-width: 949px) {
        .template-list-collections .template-collections .collections-wrapper,
        .template-list-collections .template-collections .products-wrapper,
        .template-list-collections .template-collection .collections-wrapper,
        .template-list-collections .template-collection .products-wrapper,
        .template-collection .template-collections .collections-wrapper,
        .template-collection .template-collections .products-wrapper,
        .template-collection .template-collection .collections-wrapper,
        .template-collection .template-collection .products-wrapper {
          grid-template-columns: .333fr .333fr .333fr; } }
      @media only screen and (max-width: 599px) {
        .template-list-collections .template-collections .collections-wrapper,
        .template-list-collections .template-collections .products-wrapper,
        .template-list-collections .template-collection .collections-wrapper,
        .template-list-collections .template-collection .products-wrapper,
        .template-collection .template-collections .collections-wrapper,
        .template-collection .template-collections .products-wrapper,
        .template-collection .template-collection .collections-wrapper,
        .template-collection .template-collection .products-wrapper {
          grid-template-columns: .5fr .5fr; } }
      .template-list-collections .template-collections .collections-wrapper .collection-item,
      .template-list-collections .template-collections .collections-wrapper .product-item,
      .template-list-collections .template-collections .products-wrapper .collection-item,
      .template-list-collections .template-collections .products-wrapper .product-item,
      .template-list-collections .template-collection .collections-wrapper .collection-item,
      .template-list-collections .template-collection .collections-wrapper .product-item,
      .template-list-collections .template-collection .products-wrapper .collection-item,
      .template-list-collections .template-collection .products-wrapper .product-item,
      .template-collection .template-collections .collections-wrapper .collection-item,
      .template-collection .template-collections .collections-wrapper .product-item,
      .template-collection .template-collections .products-wrapper .collection-item,
      .template-collection .template-collections .products-wrapper .product-item,
      .template-collection .template-collection .collections-wrapper .collection-item,
      .template-collection .template-collection .collections-wrapper .product-item,
      .template-collection .template-collection .products-wrapper .collection-item,
      .template-collection .template-collection .products-wrapper .product-item {
        margin-bottom: 2.5rem;
        background: #ffffff; }
        .template-list-collections .template-collections .collections-wrapper .collection-item a,
        .template-list-collections .template-collections .collections-wrapper .product-item a,
        .template-list-collections .template-collections .products-wrapper .collection-item a,
        .template-list-collections .template-collections .products-wrapper .product-item a,
        .template-list-collections .template-collection .collections-wrapper .collection-item a,
        .template-list-collections .template-collection .collections-wrapper .product-item a,
        .template-list-collections .template-collection .products-wrapper .collection-item a,
        .template-list-collections .template-collection .products-wrapper .product-item a,
        .template-collection .template-collections .collections-wrapper .collection-item a,
        .template-collection .template-collections .collections-wrapper .product-item a,
        .template-collection .template-collections .products-wrapper .collection-item a,
        .template-collection .template-collections .products-wrapper .product-item a,
        .template-collection .template-collection .collections-wrapper .collection-item a,
        .template-collection .template-collection .collections-wrapper .product-item a,
        .template-collection .template-collection .products-wrapper .collection-item a,
        .template-collection .template-collection .products-wrapper .product-item a {
          text-decoration: none; }
          .template-list-collections .template-collections .collections-wrapper .collection-item a .hover-swap img,
          .template-list-collections .template-collections .collections-wrapper .product-item a .hover-swap img,
          .template-list-collections .template-collections .products-wrapper .collection-item a .hover-swap img,
          .template-list-collections .template-collections .products-wrapper .product-item a .hover-swap img,
          .template-list-collections .template-collection .collections-wrapper .collection-item a .hover-swap img,
          .template-list-collections .template-collection .collections-wrapper .product-item a .hover-swap img,
          .template-list-collections .template-collection .products-wrapper .collection-item a .hover-swap img,
          .template-list-collections .template-collection .products-wrapper .product-item a .hover-swap img,
          .template-collection .template-collections .collections-wrapper .collection-item a .hover-swap img,
          .template-collection .template-collections .collections-wrapper .product-item a .hover-swap img,
          .template-collection .template-collections .products-wrapper .collection-item a .hover-swap img,
          .template-collection .template-collections .products-wrapper .product-item a .hover-swap img,
          .template-collection .template-collection .collections-wrapper .collection-item a .hover-swap img,
          .template-collection .template-collection .collections-wrapper .product-item a .hover-swap img,
          .template-collection .template-collection .products-wrapper .collection-item a .hover-swap img,
          .template-collection .template-collection .products-wrapper .product-item a .hover-swap img {
            transition: opacity .3s ease;
            background: #fff; }
            .template-list-collections .template-collections .collections-wrapper .collection-item a .hover-swap img:hover,
            .template-list-collections .template-collections .collections-wrapper .product-item a .hover-swap img:hover,
            .template-list-collections .template-collections .products-wrapper .collection-item a .hover-swap img:hover,
            .template-list-collections .template-collections .products-wrapper .product-item a .hover-swap img:hover,
            .template-list-collections .template-collection .collections-wrapper .collection-item a .hover-swap img:hover,
            .template-list-collections .template-collection .collections-wrapper .product-item a .hover-swap img:hover,
            .template-list-collections .template-collection .products-wrapper .collection-item a .hover-swap img:hover,
            .template-list-collections .template-collection .products-wrapper .product-item a .hover-swap img:hover,
            .template-collection .template-collections .collections-wrapper .collection-item a .hover-swap img:hover,
            .template-collection .template-collections .collections-wrapper .product-item a .hover-swap img:hover,
            .template-collection .template-collections .products-wrapper .collection-item a .hover-swap img:hover,
            .template-collection .template-collections .products-wrapper .product-item a .hover-swap img:hover,
            .template-collection .template-collection .collections-wrapper .collection-item a .hover-swap img:hover,
            .template-collection .template-collection .collections-wrapper .product-item a .hover-swap img:hover,
            .template-collection .template-collection .products-wrapper .collection-item a .hover-swap img:hover,
            .template-collection .template-collection .products-wrapper .product-item a .hover-swap img:hover {
              opacity: 0; }
          .template-list-collections .template-collections .collections-wrapper .collection-item a .text-wrap,
          .template-list-collections .template-collections .collections-wrapper .product-item a .text-wrap,
          .template-list-collections .template-collections .products-wrapper .collection-item a .text-wrap,
          .template-list-collections .template-collections .products-wrapper .product-item a .text-wrap,
          .template-list-collections .template-collection .collections-wrapper .collection-item a .text-wrap,
          .template-list-collections .template-collection .collections-wrapper .product-item a .text-wrap,
          .template-list-collections .template-collection .products-wrapper .collection-item a .text-wrap,
          .template-list-collections .template-collection .products-wrapper .product-item a .text-wrap,
          .template-collection .template-collections .collections-wrapper .collection-item a .text-wrap,
          .template-collection .template-collections .collections-wrapper .product-item a .text-wrap,
          .template-collection .template-collections .products-wrapper .collection-item a .text-wrap,
          .template-collection .template-collections .products-wrapper .product-item a .text-wrap,
          .template-collection .template-collection .collections-wrapper .collection-item a .text-wrap,
          .template-collection .template-collection .collections-wrapper .product-item a .text-wrap,
          .template-collection .template-collection .products-wrapper .collection-item a .text-wrap,
          .template-collection .template-collection .products-wrapper .product-item a .text-wrap {
            padding: 2rem; }
            .template-list-collections .template-collections .collections-wrapper .collection-item a .text-wrap h3,
            .template-list-collections .template-collections .collections-wrapper .product-item a .text-wrap h3,
            .template-list-collections .template-collections .products-wrapper .collection-item a .text-wrap h3,
            .template-list-collections .template-collections .products-wrapper .product-item a .text-wrap h3,
            .template-list-collections .template-collection .collections-wrapper .collection-item a .text-wrap h3,
            .template-list-collections .template-collection .collections-wrapper .product-item a .text-wrap h3,
            .template-list-collections .template-collection .products-wrapper .collection-item a .text-wrap h3,
            .template-list-collections .template-collection .products-wrapper .product-item a .text-wrap h3,
            .template-collection .template-collections .collections-wrapper .collection-item a .text-wrap h3,
            .template-collection .template-collections .collections-wrapper .product-item a .text-wrap h3,
            .template-collection .template-collections .products-wrapper .collection-item a .text-wrap h3,
            .template-collection .template-collections .products-wrapper .product-item a .text-wrap h3,
            .template-collection .template-collection .collections-wrapper .collection-item a .text-wrap h3,
            .template-collection .template-collection .collections-wrapper .product-item a .text-wrap h3,
            .template-collection .template-collection .products-wrapper .collection-item a .text-wrap h3,
            .template-collection .template-collection .products-wrapper .product-item a .text-wrap h3 {
              font-size: 1.4rem;
              margin: 0;
              padding: 0;
              color: #000; }
            .template-list-collections .template-collections .collections-wrapper .collection-item a .text-wrap h4,
            .template-list-collections .template-collections .collections-wrapper .product-item a .text-wrap h4,
            .template-list-collections .template-collections .products-wrapper .collection-item a .text-wrap h4,
            .template-list-collections .template-collections .products-wrapper .product-item a .text-wrap h4,
            .template-list-collections .template-collection .collections-wrapper .collection-item a .text-wrap h4,
            .template-list-collections .template-collection .collections-wrapper .product-item a .text-wrap h4,
            .template-list-collections .template-collection .products-wrapper .collection-item a .text-wrap h4,
            .template-list-collections .template-collection .products-wrapper .product-item a .text-wrap h4,
            .template-collection .template-collections .collections-wrapper .collection-item a .text-wrap h4,
            .template-collection .template-collections .collections-wrapper .product-item a .text-wrap h4,
            .template-collection .template-collections .products-wrapper .collection-item a .text-wrap h4,
            .template-collection .template-collections .products-wrapper .product-item a .text-wrap h4,
            .template-collection .template-collection .collections-wrapper .collection-item a .text-wrap h4,
            .template-collection .template-collection .collections-wrapper .product-item a .text-wrap h4,
            .template-collection .template-collection .products-wrapper .collection-item a .text-wrap h4,
            .template-collection .template-collection .products-wrapper .product-item a .text-wrap h4 {
              margin: 0;
              padding: 1rem 0;
              font-weight: 400;
              text-transform: capitalize; }

.pagination {
  text-align: center;
  margin-bottom: 6rem; }
  .pagination .page {
    padding: 0 .5rem; }
  .pagination .page,
  .pagination a {
    font-weight: 800;
    color: #82abd3;
    text-decoration: none;
    font-size: 2.5rem;
    vertical-align: bottom;
    line-height: 1.7; }
    .pagination .page:hover, .pagination .page:active,
    .pagination a:hover,
    .pagination a:active {
      color: #6c8fb0; }
  .pagination .next a,
  .pagination .prev a {
    font-size: 0px; }
    .pagination .next a:after,
    .pagination .prev a:after {
      content: " ";
      padding: 1.8rem 2rem;
      margin: 0 2rem;
      display: inline-block; }
  .pagination .next a:after {
    background: transparent url("./ico-pagination.svg") center center no-repeat;
    background-size: 3rem; }
  .pagination .prev a:after {
    background: transparent url("./ico-pagination.svg") center center no-repeat;
    transform: rotate(180deg);
    background-size: 3rem; }

.fanzone-header {
  padding: 275px 0;
  background: transparent url("./fanzone.jpg") bottom center no-repeat;
  background-size: cover; }
  @media only screen and (max-width: 949px) {
    .fanzone-header {
      padding: 30vw 0;
      background-image: url("./fanzone-tab.jpg"); } }
  @media only screen and (max-width: 599px) {
    .fanzone-header {
      margin-top: 50px;
      padding: 33vw 0;
      background-image: url("./fanzone-mobile.jpg"); } }

.artist-header {
  max-width: 1400px;
  width: 90%;
  margin: 100px auto 0;
  align-items: center; }
  .artist-header--video {
    display: block;
    width: 100%;
    max-width: 960px;
    margin: 0 auto; }
  .artist-header--logo {
    display: block;
    width: 75%;
    max-width: 340px;
    margin: 48px auto 28px; }

.template-collection .template-artist .page-subheading {
  max-width: 950px !important; }
  .template-collection .template-artist .page-subheading p {
    margin-bottom: 1.5rem !important; }

@media only screen and (max-width: 749px) {
  .template-collection .template-artist .products-wrapper {
    grid-template-columns: .5fr .5fr; } }

.template-collection .template-artist .products-wrapper .product-item:first-of-type {
  grid-column-start: 2;
  -moz-grid-column-start: 2;
  -webkit-grid-column-start: 2; }
  @media only screen and (max-width: 749px) {
    .template-collection .template-artist .products-wrapper .product-item:first-of-type {
      grid-column-start: 1; } }

@media only screen and (max-width: 949px) {
  .page-width.template-fanzone #page-header {
    margin: 5rem 0; } }

.template-compare .page-width {
  max-width: 100rem; }

.template-compare #comparison-table {
  padding-bottom: 6rem; }
  .template-compare #comparison-table .compare-mobile {
    display: none; }
  @media only screen and (max-width: 749px) {
    .template-compare #comparison-table .compare-desktop {
      display: none; }
    .template-compare #comparison-table .compare-mobile {
      display: block; } }

.template-compare #side-by-side {
  padding: 8rem 0 4rem; }
  .template-compare #side-by-side #compare-models .product-model .image-wrapper {
    min-height: 32rem; }
  .template-compare #side-by-side #compare-models .product-model h4 {
    margin: 0; }
  .template-compare #side-by-side #compare-models .product-model h6 {
    margin: 0;
    text-transform: uppercase;
    padding: .5rem 0;
    line-height: 1.3;
    max-width: 25rem; }
    .template-compare #side-by-side #compare-models .product-model h6.super {
      text-align: right;
      margin: 1rem 0;
      max-width: 100%; }
  .template-compare #side-by-side #compare-models .owl-nav {
    font-size: 5rem;
    position: absolute;
    width: 110%;
    transform: translateX(-4%);
    top: 15%;
    left: 0; }
    .template-compare #side-by-side #compare-models .owl-nav button:hover {
      background: transparent !important;
      color: #414141 !important;
      opacity: .5; }
    .template-compare #side-by-side #compare-models .owl-nav button.owl-prev {
      float: left; }
    .template-compare #side-by-side #compare-models .owl-nav button.owl-next {
      float: right; }
  .template-compare #side-by-side #compare-models .owl-dots {
    text-align: center;
    margin-top: 2rem; }
    .template-compare #side-by-side #compare-models .owl-dots .owl-dot.active span:after {
      background: #1b75bc; }
    .template-compare #side-by-side #compare-models .owl-dots .owl-dot span:after {
      content: " ";
      background: #414141;
      padding: 0 .5rem;
      border-radius: 100px;
      margin: 0 .3rem; }
  .template-compare #side-by-side #compare-cta {
    text-align: center;
    margin-top: 4rem; }

.template-compare #product-specs h2 {
  color: #414141; }

.template-compare #product-specs .tabs-container .tabs-buttons {
  list-style-type: none;
  padding: 0;
  margin: 3rem 0 0 0; }
  .template-compare #product-specs .tabs-container .tabs-buttons li {
    display: inline;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 2rem; }
    .template-compare #product-specs .tabs-container .tabs-buttons li:after {
      content: " /";
      color: #414141; }
    .template-compare #product-specs .tabs-container .tabs-buttons li a {
      color: #414141; }
      .template-compare #product-specs .tabs-container .tabs-buttons li a:hover {
        cursor: pointer;
        color: #1b75bc; }
      .template-compare #product-specs .tabs-container .tabs-buttons li a.active {
        color: #1b75bc; }

.template-compare #product-specs .tabs-container .tab-content {
  display: none; }
  .template-compare #product-specs .tabs-container .tab-content.active {
    display: grid;
    grid-template-columns: 40rem 1fr; }
    @media only screen and (max-width: 949px) {
      .template-compare #product-specs .tabs-container .tab-content.active {
        grid-template-columns: 30rem 1fr; } }
    @media only screen and (max-width: 599px) {
      .template-compare #product-specs .tabs-container .tab-content.active {
        display: block; } }
  .template-compare #product-specs .tabs-container .tab-content .tab-content-left {
    grid-column: 1/2;
    padding: 1rem 0; }
    @media only screen and (max-width: 599px) {
      .template-compare #product-specs .tabs-container .tab-content .tab-content-left {
        width: 100%; } }
    .template-compare #product-specs .tabs-container .tab-content .tab-content-left p {
      line-height: 2.5; }
  .template-compare #product-specs .tabs-container .tab-content .tab-content-right {
    grid-column: 2/3; }
    @media only screen and (max-width: 599px) {
      .template-compare #product-specs .tabs-container .tab-content .tab-content-right {
        width: 100%; } }

.template-compare #more-info {
  padding: 8rem 0;
  text-align: center;
  border-bottom: 1px solid #e5e5e5; }
  .template-compare #more-info h6 {
    font-weight: 400; }
  .template-compare #more-info .battery {
    display: inline-block;
    width: 35rem;
    text-align: left;
    margin-top: 4rem; }
    .template-compare #more-info .battery svg {
      float: left;
      max-height: 4.6rem;
      width: 9rem;
      margin-right: 1rem;
      margin-bottom: 4rem; }
    .template-compare #more-info .battery h4, .template-compare #more-info .battery p {
      margin: 0;
      padding: 0; }

.template-compare #reviews {
  padding-top: 10rem; }

.template-compare #product-pics {
  margin-bottom: .4rem; }
  .template-compare #product-pics .grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: .4rem; }

.template-corporate {
  padding: 1rem 0 0; }
  .template-corporate .banner-content {
    padding: 6rem 0 0; }
    @media only screen and (max-width: 949px) {
      .template-corporate .banner-content {
        padding: 70vw 0 0;
        text-align: center; }
        .template-corporate .banner-content h1, .template-corporate .banner-content p {
          margin: 1.5rem auto; } }
    @media only screen and (max-width: 599px) {
      .template-corporate .banner-content {
        background-position: top left !important;
        background-size: 50rem !important;
        padding: 100vw 0 0; } }
    .template-corporate .banner-content h1 {
      max-width: 50rem;
      color: #404040; }
    .template-corporate .banner-content p {
      max-width: 32rem;
      color: #414141; }
    .template-corporate .banner-content ul.corporate-list {
      list-style-type: none;
      padding: 0;
      margin: 0 0 5rem 0; }
      .template-corporate .banner-content ul.corporate-list li {
        text-transform: uppercase;
        font-weight: 600;
        font-size: 1.2rem;
        padding: .4rem 0;
        color: #1b75bc; }
        .template-corporate .banner-content ul.corporate-list li:before {
          content: "-";
          padding-right: .5rem; }

#corporate-form {
  margin-top: 6rem;
  background: #1b75bc;
  padding: 5rem 0 8rem;
  color: #fff; }
  #corporate-form p {
    text-align: center;
    max-width: 30rem;
    margin: 0 auto 6rem auto; }
    #corporate-form p:after {
      content: "";
      padding: 0 20px;
      border-bottom: 2px solid #fff;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      margin-top: 5rem;
      opacity: .6; }
  #corporate-form form input,
  #corporate-form form textarea {
    border: none; }
  #corporate-form form input[type=submit] {
    background: #fff;
    color: #1b75bc;
    font-weight: 600; }
    #corporate-form form input[type=submit]:hover {
      opacity: .7; }

#error-page {
  text-align: center;
  padding: 8rem 0 10rem; }
  #error-page h1.page_heading {
    font-size: 5.6rem; }
    #error-page h1.page_heading span {
      color: #1b75bc; }
  #error-page img {
    max-width: 50rem;
    width: 90%;
    margin: 0 auto; }
  #error-page h3 {
    max-width: 70rem;
    margin: 2rem auto; }

.template-image-gallery {
  padding: 8rem 0; }
  .template-image-gallery h1 {
    text-align: left; }
    .template-image-gallery h1 span {
      text-transform: uppercase;
      font-size: 2rem; }
  .template-image-gallery .gallery-carousel {
    margin: 6rem 0; }
  .template-image-gallery #image {
    padding: 0 0 8rem; }
    .template-image-gallery #image .category_wrapper h2 {
      font-size: 34px;
      text-transform: uppercase;
      font-weight: 300;
      padding: 5rem 1rem 1rem 1rem; }
    .template-image-gallery #image .category_wrapper .video_wrapper {
      display: inline-block;
      width: 33%;
      vertical-align: top;
      padding: 0 1rem; }
      @media only screen and (max-width: 949px) {
        .template-image-gallery #image .category_wrapper .video_wrapper {
          width: 50%; } }
      .template-image-gallery #image .category_wrapper .video_wrapper h4 {
        margin: 1rem 0 3rem 0;
        font-size: 1.6rem;
        font-weight: 600; }

#gallery-social-post {
  background: #1b75bc;
  text-align: center;
  padding: 3rem 0 3.5rem; }
  #gallery-social-post h2, #gallery-social-post p {
    color: #fff; }

.template-getting-started #page-header {
  margin-bottom: 36px; }

.template-getting-started .page_subhead {
  max-width: 800px;
  margin: 0 auto; }
  .template-getting-started .page_subhead h3 {
    text-transform: none;
    font-weight: 400;
    text-align: center;
    line-height: 1.3;
    padding-bottom: 40px; }
    .template-getting-started .page_subhead h3 a {
      color: #1b75bc; }

.template-getting-started .page_navigation {
  text-align: center; }

.template-getting-started .assembly_links {
  list-style-type: none;
  padding: 0;
  margin: 0; }
  .template-getting-started .assembly_links li {
    display: inline-block;
    padding: 0 10px;
    margin: 0;
    border-right: 3px solid #1b75bc; }
    .template-getting-started .assembly_links li:last-of-type {
      border-right: none; }
    .template-getting-started .assembly_links li a {
      text-transform: uppercase;
      font-size: 2rem;
      color: #1b75bc;
      padding: 0 5px;
      line-height: 1.2; }

.template-getting-started .assembly_block {
  margin-top: 70px; }
  .template-getting-started .assembly_block h2 {
    font-weight: 300;
    font-size: 4.5rem; }

.template-getting-started .video_wrapper {
  margin: 30px 0; }

.template-getting-started .content_wrapper {
  margin: 10px 0; }
  .template-getting-started .content_wrapper ol,
  .template-getting-started .content_wrapper ul {
    font-size: 1.5rem;
    line-height: 1.4; }
  .template-getting-started .content_wrapper .content_columns {
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 749px) {
      .template-getting-started .content_wrapper .content_columns {
        display: block; } }
    .template-getting-started .content_wrapper .content_columns .column_right,
    .template-getting-started .content_wrapper .content_columns .column_left {
      width: 46%; }
      @media only screen and (max-width: 749px) {
        .template-getting-started .content_wrapper .content_columns .column_right,
        .template-getting-started .content_wrapper .content_columns .column_left {
          width: 100%; } }
    .template-getting-started .content_wrapper .content_columns .checklist {
      background: #e9e9e9;
      padding: 20px 30px;
      list-style-type: none;
      margin: 0;
      border: 1px solid #d9d9d9; }
      .template-getting-started .content_wrapper .content_columns .checklist li {
        padding: 10px 0;
        border-bottom: 1px solid #d9d9d9; }
        .template-getting-started .content_wrapper .content_columns .checklist li:last-of-type {
          border-bottom: none; }
    .template-getting-started .content_wrapper .content_columns .steps {
      padding: 0 15px; }
      .template-getting-started .content_wrapper .content_columns .steps li {
        padding: 15px 5px;
        border-bottom: 1px solid #d9d9d9; }
        .template-getting-started .content_wrapper .content_columns .steps li:last-of-type {
          border-bottom: none; }

/*================ 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; } }

#global_newsletter {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50000; }
  #global_newsletter.visible {
    display: block; }

.newsletter_modal__background {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5); }

.newsletter_modal__wrapper {
  position: fixed;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
  width: 525px;
  background-color: #fff;
  background-image: url("./newsletter-signup-bkg.jpg");
  background-size: cover;
  padding: 40px;
  text-align: center; }
  @media only screen and (max-width: 749px) {
    .newsletter_modal__wrapper {
      width: 85%; } }

.newsletter_modal__body-header h2 {
  font-size: 38px; }

.newsletter_modal__body-header p {
  margin: 40px auto;
  max-width: 375px;
  border: 1px solid #000;
  padding: 15px;
  background: rgba(255, 255, 255, 0.8); }

.newsletter_modal__body-form {
  padding: 0; }
  .newsletter_modal__body-form-fields {
    padding: 0;
    border: none; }
    .newsletter_modal__body-form-fields input[type="email"] {
      width: 70%;
      border: none; }
      @media only screen and (max-width: 749px) {
        .newsletter_modal__body-form-fields input[type="email"] {
          width: 58%; } }
    .newsletter_modal__body-form-fields input[type="submit"] {
      width: 25%;
      border: none;
      color: #fff;
      background: #1b75bc;
      transform: translateX(-5px); }
      @media only screen and (max-width: 749px) {
        .newsletter_modal__body-form-fields input[type="submit"] {
          width: 34%;
          min-width: 100px; } }

.newsletter_modal__close {
  position: absolute;
  right: -25px;
  top: -20px;
  padding: 10px;
  background: transparent;
  border: none;
  font-size: 0;
  transform: rotate(45deg); }
  .newsletter_modal__close::before {
    content: "";
    padding: 10px;
    border-top: 2px solid #fff; }
  .newsletter_modal__close::after {
    content: "";
    padding: 10px;
    border-left: 2px solid #fff;
    position: absolute;
    transform: translate(-11px, -21px); }

.template-phleet {
  margin-top: 80px; }
  .template-phleet .main_content {
    margin: 40px auto;
    display: flex;
    align-content: flex-start; }
    @media only screen and (max-width: 599px) {
      .template-phleet .main_content {
        display: block; } }
    .template-phleet .main_content .left_content {
      max-width: 60%; }
      @media only screen and (max-width: 599px) {
        .template-phleet .main_content .left_content {
          max-width: 100%; } }
      .template-phleet .main_content .left_content h1 {
        font-weight: 400;
        font-size: 45px; }
      .template-phleet .main_content .left_content h5 {
        text-transform: none;
        font-weight: 700; }
    .template-phleet .main_content .right_content {
      max-width: 40%;
      padding-left: 20px;
      flex-grow: 1; }
      @media only screen and (max-width: 599px) {
        .template-phleet .main_content .right_content {
          max-width: 100%; } }
  .template-phleet a.button-primary {
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    margin: 10px auto; }
  .template-phleet .phlex-specs {
    margin-top: 40px;
    padding-top: 10px;
    border-top: 1px solid #979797; }
    .template-phleet .phlex-specs h3 {
      text-align: center; }
    .template-phleet .phlex-specs .phlex-specs-wrapper {
      display: flex;
      align-content: center;
      justify-content: center;
      align-items: center;
      margin-bottom: 100px; }
      @media only screen and (max-width: 599px) {
        .template-phleet .phlex-specs .phlex-specs-wrapper {
          display: block; } }
      .template-phleet .phlex-specs .phlex-specs-wrapper .phlex-specs-list {
        max-width: 300px;
        width: 33%;
        text-align: center;
        list-style: none; }
        @media only screen and (max-width: 599px) {
          .template-phleet .phlex-specs .phlex-specs-wrapper .phlex-specs-list {
            width: 100%;
            margin: 0 auto; } }
        .template-phleet .phlex-specs .phlex-specs-wrapper .phlex-specs-list:nth-of-type(2) {
          border-left: 1px solid;
          border-right: 1px solid; }
          @media only screen and (max-width: 599px) {
            .template-phleet .phlex-specs .phlex-specs-wrapper .phlex-specs-list:nth-of-type(2) {
              border: none; } }
        .template-phleet .phlex-specs .phlex-specs-wrapper .phlex-specs-list li {
          padding: 15px;
          font-size: 16px;
          line-height: 1.4; }
  .template-phleet .phlex-fine-print h6 {
    text-align: center;
    font-weight: 400;
    color: #979797; }

.template-phlex-lander {
  margin-top: 80px; }
  .template-phlex-lander .main_content {
    margin: 40px auto;
    display: flex;
    align-content: flex-start; }
    @media only screen and (max-width: 599px) {
      .template-phlex-lander .main_content {
        display: block; } }
    .template-phlex-lander .main_content .left_content {
      max-width: 60%; }
      @media only screen and (max-width: 599px) {
        .template-phlex-lander .main_content .left_content {
          max-width: 100%; } }
      .template-phlex-lander .main_content .left_content h1 {
        font-weight: 400;
        font-size: 45px; }
      .template-phlex-lander .main_content .left_content h5 {
        text-transform: none;
        font-weight: 700; }
    .template-phlex-lander .main_content .right_content {
      max-width: 40%;
      padding-left: 20px;
      flex-grow: 1; }
      @media only screen and (max-width: 599px) {
        .template-phlex-lander .main_content .right_content {
          max-width: 100%; } }
  .template-phlex-lander a.button-primary {
    left: 50%;
    position: relative;
    transform: translateX(-50%); }
  .template-phlex-lander .phlex-specs {
    margin-top: 40px;
    padding-top: 10px;
    border-top: 1px solid #979797; }
    .template-phlex-lander .phlex-specs h3 {
      text-align: center; }
    .template-phlex-lander .phlex-specs .phlex-specs-wrapper {
      display: flex;
      align-content: center;
      justify-content: center;
      align-items: center;
      margin-bottom: 100px; }
      @media only screen and (max-width: 599px) {
        .template-phlex-lander .phlex-specs .phlex-specs-wrapper {
          display: block; } }
      .template-phlex-lander .phlex-specs .phlex-specs-wrapper .phlex-specs-list {
        max-width: 300px;
        width: 33%;
        text-align: center;
        list-style: none; }
        @media only screen and (max-width: 599px) {
          .template-phlex-lander .phlex-specs .phlex-specs-wrapper .phlex-specs-list {
            width: 100%;
            margin: 0 auto; } }
        .template-phlex-lander .phlex-specs .phlex-specs-wrapper .phlex-specs-list:nth-of-type(2) {
          border-left: 1px solid;
          border-right: 1px solid; }
          @media only screen and (max-width: 599px) {
            .template-phlex-lander .phlex-specs .phlex-specs-wrapper .phlex-specs-list:nth-of-type(2) {
              border: none; } }
        .template-phlex-lander .phlex-specs .phlex-specs-wrapper .phlex-specs-list li {
          padding: 15px;
          font-size: 16px;
          line-height: 1.4; }
  .template-phlex-lander .phlex-fine-print h6 {
    text-align: center;
    font-weight: 400;
    color: #979797; }

@media only screen and (max-width: 599px) {
  .template-press #hero {
    background-position: top right !important; } }

#press-cta-banner {
  padding: 2.5rem 0 3rem 0;
  text-align: center;
  color: #fff; }

.product-scope {
  padding-top: 240px;
  background: top center url("./affirm-desktop.jpg") no-repeat;
  background-size: 100%;
  margin: 10rem auto 10rem auto; }
  @media only screen and (max-width: 949px) {
    .product-scope {
      padding-top: 170px; } }
  @media only screen and (max-width: 599px) {
    .product-scope {
      padding-top: 120px;
      background-image: url("./affirm-mobile.jpg"); } }
  .product-scope .product-carousel .owl-nav {
    max-width: 85rem;
    font-size: 5rem;
    position: absolute;
    width: 100%;
    top: 12rem;
    left: 0; }
    .product-scope .product-carousel .owl-nav button:hover {
      background: transparent !important;
      color: #414141 !important;
      opacity: .5; }
    .product-scope .product-carousel .owl-nav button.owl-prev {
      float: left;
      text-shadow: 0 0 15px #fff; }
    .product-scope .product-carousel .owl-nav button.owl-next {
      float: right;
      text-shadow: 0 0 15px #fff; }
  .product-scope .product_wrap {
    display: grid;
    grid-template-columns: 30% 1fr 25%;
    grid-column-gap: 5em; }
    @media only screen and (max-width: 949px) {
      .product-scope .product_wrap {
        display: block; } }
    .product-scope .product_wrap .product_left {
      grid-column: 1/2; }
      @media only screen and (max-width: 949px) {
        .product-scope .product_wrap .product_left {
          display: inline-block;
          width: 50%; } }
      @media only screen and (max-width: 599px) {
        .product-scope .product_wrap .product_left {
          display: block;
          width: 100%; } }
      .product-scope .product_wrap .product_left .owl-thumbs {
        min-height: 25rem; }
        .product-scope .product_wrap .product_left .owl-thumbs .owl-thumb-item {
          border: none;
          width: 20%; }
      .product-scope .product_wrap .product_left img.owl-picture {
        max-height: 32rem;
        width: auto;
        margin: 0 auto; }
    .product-scope .product_wrap .product_center {
      grid-column: 2/3; }
      @media only screen and (max-width: 949px) {
        .product-scope .product_wrap .product_center {
          display: inline-block;
          width: 50%; } }
      @media only screen and (max-width: 599px) {
        .product-scope .product_wrap .product_center {
          margin-top: 3rem;
          display: block;
          width: 100%; } }
      .product-scope .product_wrap .product_center .rte {
        font-size: 14px;
        line-height: 1.4; }
      .product-scope .product_wrap .product_center h1 {
        font-size: 4.2rem;
        line-height: 1;
        margin: 0 0 3rem 0; }
      .product-scope .product_wrap .product_center h3 {
        color: #414141;
        font-size: 1.9rem;
        line-height: 1.2;
        text-transform: capitalize;
        font-weight: 300;
        padding-bottom: 1rem;
        margin: 5rem 0 3rem;
        border-bottom: 2px solid #1b75bc; }
      .product-scope .product_wrap .product_center p {
        font-size: 1.4rem; }
      .product-scope .product_wrap .product_center ul, .product-scope .product_wrap .product_center ol {
        margin: 1rem 0 1rem 3rem;
        padding: 0;
        font-size: 1.4rem; }
      .product-scope .product_wrap .product_center li {
        margin-bottom: 1rem; }
    .product-scope .product_wrap .product_right {
      grid-column: 3/4; }
      @media only screen and (max-width: 949px) {
        .product-scope .product_wrap .product_right {
          position: absolute;
          width: 45%;
          top: 35rem;
          right: 3rem; } }
      @media only screen and (max-width: 599px) {
        .product-scope .product_wrap .product_right {
          position: relative;
          display: block;
          width: 100%;
          top: auto;
          right: auto; } }
      .product-scope .product_wrap .product_right #product-actions {
        background: #f5f5f5;
        border: 1px solid #e5e5e5;
        padding: 2em;
        margin-bottom: 2em; }
        .product-scope .product_wrap .product_right #product-actions select,
        .product-scope .product_wrap .product_right #product-actions input {
          background-color: #fff;
          margin-top: 0; }
        .product-scope .product_wrap .product_right #product-actions button {
          width: 100%;
          margin-top: 1.5rem;
          margin-bottom: 1.5rem; }
        .product-scope .product_wrap .product_right #product-actions label {
          font-size: 14px;
          margin: 1em 0 5px 0;
          line-height: 1; }
        .product-scope .product_wrap .product_right #product-actions .product_details__item {
          font-size: 1.3rem; }
        .product-scope .product_wrap .product_right #product-actions #product_price p,
        .product-scope .product_wrap .product_right #product-actions #product_price p .money {
          font-weight: 900;
          line-height: 1;
          margin: 0;
          padding: 1.5rem 0 0 0;
          color: #303030;
          font-size: 2.3rem;
          border-top: 1px solid #e5e5e5; }
          .product-scope .product_wrap .product_right #product-actions #product_price p:first-of-type,
          .product-scope .product_wrap .product_right #product-actions #product_price p .money:first-of-type {
            border-top: none; }
          .product-scope .product_wrap .product_right #product-actions #product_price p span,
          .product-scope .product_wrap .product_right #product-actions #product_price p .money span {
            font-size: 1.5rem;
            font-weight: 600; }
          .product-scope .product_wrap .product_right #product-actions #product_price p .compare-at-price,
          .product-scope .product_wrap .product_right #product-actions #product_price p .money .compare-at-price {
            display: block;
            font-size: 15px;
            font-weight: 600;
            margin-top: 10px; }
            .product-scope .product_wrap .product_right #product-actions #product_price p .compare-at-price .strikethrough,
            .product-scope .product_wrap .product_right #product-actions #product_price p .money .compare-at-price .strikethrough {
              text-decoration: line-through;
              color: #1b75bc; }
      .product-scope .product_wrap .product_right .hidden {
        display: none; }
  .product-scope .yotpo-main-widget {
    padding-top: 5rem; }
    @media only screen and (max-width: 599px) {
      .product-scope .yotpo-main-widget {
        padding-top: 3rem; } }
  .product-scope #product-actions .product_info__left {
    margin-bottom: 10px; }
  .product-scope #product-actions .bold_option_set {
    margin: 0 0 20px 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #e0e0e0; }
    .product-scope #product-actions .bold_option_set .bold_option_title {
      display: inline-block;
      font-size: 14px;
      margin-bottom: 10px; }
    .product-scope #product-actions .bold_option_set .bold_tooltip small,
    .product-scope #product-actions .bold_option_set .bold_option_swatch_title {
      font-size: 13px;
      transition: none; }
    .product-scope #product-actions .bold_option_set .bold_option_value_price {
      margin-top: 5px; }
    .product-scope #product-actions .bold_option_set .bold_tooltip {
      background-size: 12px 12px; }
      .product-scope #product-actions .bold_option_set .bold_tooltip small {
        text-align: left;
        width: 170px;
        line-height: 1.2; }
    .product-scope #product-actions .bold_option_set .bold_option_swatch {
      margin: 10px 2px 0; }
      .product-scope #product-actions .bold_option_set .bold_option_swatch .bold_option_value_swatch {
        margin: 0 auto; }
      .product-scope #product-actions .bold_option_set .bold_option_swatch .bold_option_value_element {
        width: 100%;
        background: #fff; }
      .product-scope #product-actions .bold_option_set .bold_option_swatch:first-of-type .bold_option_value {
        width: 31%;
        margin-right: 2.5%;
        margin-bottom: 2.5%; }
        .product-scope #product-actions .bold_option_set .bold_option_swatch:first-of-type .bold_option_value:nth-child(3n) {
          margin-right: 0; }
        .product-scope #product-actions .bold_option_set .bold_option_swatch:first-of-type .bold_option_value:nth-child(7), .product-scope #product-actions .bold_option_set .bold_option_swatch:first-of-type .bold_option_value:nth-child(8), .product-scope #product-actions .bold_option_set .bold_option_swatch:first-of-type .bold_option_value:nth-child(9) {
          margin-bottom: 0; }
      .product-scope #product-actions .bold_option_set .bold_option_swatch:nth-of-type(2) .bold_option_value {
        width: 22%;
        margin-right: 2.5%;
        margin-bottom: 2.5%; }
        .product-scope #product-actions .bold_option_set .bold_option_swatch:nth-of-type(2) .bold_option_value .bold_option_value_swatch {
          height: 20px;
          width: 100%; }
      .product-scope #product-actions .bold_option_set .bold_option_swatch:nth-of-type(2) .bold_option_value:nth-child(4n) {
        margin-right: 0; }
    .product-scope #product-actions .bold_option_set .bold_option_dropdown .bold_option_element {
      margin-left: 0; }
  .product-scope #cross-sells li {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    width: 18%;
    margin-right: 2%;
    text-align: left; }
    .product-scope #cross-sells li:last-of-type {
      margin-right: 0; }
  .product-scope #cross-sells .xsell-quickview__overlay-btn {
    background: #1b75bc; }
  .product-scope #cross-sells .image img {
    background: #fff;
    border: 1px solid #e5e5e5; }
  .product-scope #cross-sells .producttitle {
    min-height: 0; }
    .product-scope #cross-sells .producttitle a {
      color: #1b75bc; }
  .product-scope #cross-sells .money a {
    font-size: 20px;
    font-weight: 800;
    color: #414141; }
  @media only screen and (max-width: 949px) {
    .product-scope #cross-sells li {
      width: 47%;
      min-height: 150px;
      float: left;
      margin-bottom: 2%; }
      .product-scope #cross-sells li .image {
        width: 100px;
        height: auto;
        float: left; }
      .product-scope #cross-sells li .producttitle {
        width: calc(100% - 110px);
        text-align: left; }
      .product-scope #cross-sells li .money {
        width: calc(100% - 110px);
        float: left; }
        .product-scope #cross-sells li .money a {
          text-align: left; } }
  @media only screen and (max-width: 599px) {
    .product-scope #cross-sells li {
      width: 100%;
      margin-right: 0;
      min-height: auto; } }

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

#phat-scooters-black-friday-weekend-cyber-deals-2019 main {
  padding: 0; }
  #phat-scooters-black-friday-weekend-cyber-deals-2019 main .hero {
    position: relative;
    max-height: 550px;
    overflow: hidden; }
    @media only screen and (max-width: 749px) {
      #phat-scooters-black-friday-weekend-cyber-deals-2019 main .hero {
        max-height: unset; } }
    #phat-scooters-black-friday-weekend-cyber-deals-2019 main .hero__image img {
      min-width: 100%; }
    #phat-scooters-black-friday-weekend-cyber-deals-2019 main .hero__content {
      position: absolute;
      top: 50%;
      bottom: 0;
      transform: translateY(-50%);
      left: 50px; }
      @media only screen and (max-width: 749px) {
        #phat-scooters-black-friday-weekend-cyber-deals-2019 main .hero__content {
          position: relative;
          transform: initial;
          left: 0;
          text-align: center;
          padding: 3rem 1.5rem; } }
      #phat-scooters-black-friday-weekend-cyber-deals-2019 main .hero__content-heading {
        text-transform: uppercase;
        font-weight: 200;
        font-size: 6.5rem;
        color: #292929; }
        @media only screen and (max-width: 949px) {
          #phat-scooters-black-friday-weekend-cyber-deals-2019 main .hero__content-heading {
            font-size: 5.5rem; } }
        @media only screen and (max-width: 749px) {
          #phat-scooters-black-friday-weekend-cyber-deals-2019 main .hero__content-heading {
            font-size: 4.5rem; } }
      #phat-scooters-black-friday-weekend-cyber-deals-2019 main .hero__content-subheading {
        font-weight: 600;
        text-transform: uppercase;
        font-size: 1.5rem;
        letter-spacing: 3px;
        margin-bottom: 4rem;
        margin-right: 10%;
        border: 2px solid #1b75bc;
        color: #1b75bc;
        padding: .5rem 2rem;
        display: inline-block; }
        @media only screen and (max-width: 749px) {
          #phat-scooters-black-friday-weekend-cyber-deals-2019 main .hero__content-subheading {
            margin: 0 10% 2rem; } }
      #phat-scooters-black-friday-weekend-cyber-deals-2019 main .hero__content-link {
        display: inline-block;
        margin: 1rem 50% 0 0;
        width: 220px; }
        @media only screen and (max-width: 749px) {
          #phat-scooters-black-friday-weekend-cyber-deals-2019 main .hero__content-link {
            display: block;
            margin: 1rem auto 0; } }
  #phat-scooters-black-friday-weekend-cyber-deals-2019 main .body {
    background: #f0f0f0;
    padding: 6rem 0; }
    #phat-scooters-black-friday-weekend-cyber-deals-2019 main .body-heading {
      text-align: center;
      font-weight: 600;
      font-size: 3.5rem;
      letter-spacing: 2px;
      margin: 0;
      color: #1b75bc; }
    #phat-scooters-black-friday-weekend-cyber-deals-2019 main .body-subheading {
      text-align: center;
      font-size: 2rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 4px;
      margin: 1rem 0;
      color: #292929; }
    #phat-scooters-black-friday-weekend-cyber-deals-2019 main .body__content {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      width: 90%;
      max-width: 800px;
      margin: 3rem auto 0; }
      #phat-scooters-black-friday-weekend-cyber-deals-2019 main .body__content__card {
        flex-basis: calc(50% - 2rem);
        background: #fff;
        padding: 4rem;
        margin: 2rem 0; }
        @media only screen and (max-width: 749px) {
          #phat-scooters-black-friday-weekend-cyber-deals-2019 main .body__content__card {
            flex-basis: 100%; } }
        #phat-scooters-black-friday-weekend-cyber-deals-2019 main .body__content__card-text {
          color: #292929; }
        #phat-scooters-black-friday-weekend-cyber-deals-2019 main .body__content__card-button {
          margin-top: 1rem; }
        #phat-scooters-black-friday-weekend-cyber-deals-2019 main .body__content__card-heading {
          margin-top: 0;
          position: relative;
          max-width: 250px;
          color: #292929; }
          #phat-scooters-black-friday-weekend-cyber-deals-2019 main .body__content__card-heading::after {
            content: "";
            border-bottom: 3px solid #1b75bc;
            position: absolute;
            left: 0;
            bottom: 0;
            width: 125px;
            transform: translateY(0.5rem); }
      #phat-scooters-black-friday-weekend-cyber-deals-2019 main .body__content_legal-copy {
        text-transform: none;
        font-size: 13px;
        line-height: 1.4;
        color: #292929; }
        @media only screen and (max-width: 749px) {
          #phat-scooters-black-friday-weekend-cyber-deals-2019 main .body__content_legal-copy {
            text-align: center; } }

#store-locator-phat-scooters #page-header {
  display: block;
  text-align: center;
  margin-top: 6rem;
  float: none;
  width: 100%;
  max-width: 100%; }

#store-locator-phat-scooters #page-header h1 {
  font-size: 5.6rem;
  margin: 0;
  text-align: center;
  color: #202020; }

.pac-container {
  z-index: 10000000 !important; }

.scasl-location-mobile-wrap {
  clear: left;
  float: left;
  width: 100%;
  display: none; }

.scasl-location-mobile {
  height: 50px !important;
  cursor: pointer !important; }

#scasl-app-container {
  margin-left: 10px;
  margin-right: 10px;
  z-index: 100 !important;
  position: relative; }

#bh-sl-map div {
  box-sizing: initial !important; }

#scasl-window-container div, #scasl-window-container div span {
  word-break: normal !important; }

#scasl-description p {
  word-break: break-all !important; }

.bh-sl-container {
  padding: 0 !important; }

#bh-sl-map-container {
  margin-bottom: 27px !important; }

#scasl-tab-radius {
  border: 1px solid #ccc;
  padding: 20px; }

#scasl-tab-radius h3 {
  text-transform: uppercase;
  margin-top: 0;
  padding-bottom: 10px;
  font-weight: normal;
  border-bottom: 1px solid #ccc; }

.scasl-distance, .scasl-distance label {
  width: 100% !important;
  max-width: 100%; }

.scasl-distance {
  display: inline-block;
  margin: 0; }

.scasl-distance .form-input {
  margin-bottom: 10px; }

.scasl-container .form-input input, .scasl-container .form-input select {
  height: 35px;
  background-color: #fff; }

.scasl-tag {
  margin: 0 !important; }

.scasl-tag > label {
  font-weight: bold; }

.scasl-tag-list {
  width: 100%; }

.scasl-tag-list, .scasl-tag-list li {
  margin: 0 20px 0 0 !important; }

.scasl-tag-list li {
  padding: 0;
  clear: none !important;
  width: auto !important; }

.scasl-tag-list li label {
  font-weight: normal; }

.scasl-tag-list li label input {
  margin-top: 2px; }

.scasl-search-btn {
  padding-top: 15px;
  width: 100%;
  float: left;
  margin: 10px 0 0;
  border-top: 1px solid #ccc; }

.bh-sl-loc-list, .bh-sl-map {
  border: 1px solid #ccc; }

.bh-sl-loc-list ul li {
  margin: 0 !important; }

.scasl-location-list {
  width: 30% !important; }

.scasl-map {
  float: right !important;
  width: 69% !important; }

.scasl-search-btn button, #scapl-geocode-btn {
  background: #30ABD9;
  height: 34px;
  width: 20%; }

#scapl-geocode-btn {
  float: right; }

.scasl-list-image, .scasl-info-image {
  float: right; }

.scasl-list-image {
  /* width: 22%;*/
  margin: 10px 10px 0 0; }

.scasl-info-image {
  /* width: 28%; */
  margin: 5px 0 0 5px; }

.scasl-list-image img, .scasl-info-image img {
  /*width: 100%;*/
  width: 50px;
  height: auto; }

.scasl-info-location, .scasl-location-list {
  float: left; }

.scasl-tags {
  background: url("//secomapp.com/storelocator/assets/cdn/img/tag.png") no-repeat scroll 0 1px transparent;
  padding: 2px 10px 0 16px;
  float: left;
  background-position-y: 4px; }

.bh-sl-container .form-input, .bh-sl-container .form-input input, .bh-sl-container .form-input select {
  width: 100% !important;
  opacity: 1 !important; }

#bh-sl-user-location input {
  max-width: none !important; }

.bh-sl-container .form-input input, .bh-sl-container .form-input select {
  margin: 0 !important; }

.bh-sl-container button {
  margin-top: 0 !important; }

#bh-sl-address {
  float: left;
  clear: both;
  width: 78% !important; }

.scasl-field {
  display: none;
  clear: both; }

#scasl-store_image {
  clear: none !important; }

/* Screens */
@media screen and (max-width: 600px) {
  .scasl-location-list, .scasl-map {
    width: 100% !important; }
  .scasl-location-list {
    height: 300px !important; }
  .scasl-map {
    margin-top: 10px; } }

@media screen and (max-width: 768px) {
  .scasl-search-btn button, #scapl-geocode-btn {
    width: auto !important; }
  #scapl-geocode-btn {
    float: left;
    margin-top: 10px !important; }
  #bh-sl-address {
    width: 100% !important; } }

#scasl-title {
  font-weight: bold !important; }

.calendly-inline-widget {
  margin: 100px 0; }
  .calendly-inline-widget .spinner {
    width: 100px;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    z-index: -1;
    position: absolute; }

#test-ride-cta {
  margin: 80px auto; }
  #test-ride-cta .content {
    text-align: center;
    margin: 40px auto; }
    #test-ride-cta .content p {
      max-width: 800px;
      margin: 25px auto;
      line-height: 1.65; }
    #test-ride-cta .content h4 {
      text-transform: none;
      max-width: 750px;
      margin: 30px auto; }

.template-video-gallery {
  padding: 8rem 0; }
  .template-video-gallery h1 {
    text-align: left; }
  .template-video-gallery #video-gallery {
    padding: 0 0 8rem; }
    .template-video-gallery #video-gallery .category_wrapper h2 {
      font-size: 34px;
      text-transform: uppercase;
      font-weight: 300;
      padding: 5rem 1rem 1rem 1rem; }
    .template-video-gallery #video-gallery .category_wrapper .video_wrapper {
      display: inline-block;
      width: 33%;
      vertical-align: top;
      padding: 0 1rem; }
      @media only screen and (max-width: 949px) {
        .template-video-gallery #video-gallery .category_wrapper .video_wrapper {
          width: 50%; } }
      .template-video-gallery #video-gallery .category_wrapper .video_wrapper h4 {
        margin: 1rem 0 3rem 0;
        font-size: 1.6rem;
        font-weight: 600; }

#video-modal {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 50000; }
  #video-modal.active {
    display: block; }
  #video-modal .modal-body {
    width: 90%;
    max-width: 800px;
    margin: 10vh  auto 0 auto; }
  #video-modal .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto; }
    #video-modal .video-container iframe,
    #video-modal .video-container object,
    #video-modal .video-container embed {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  #video-modal a.close {
    font-size: 0;
    position: absolute;
    right: 5rem;
    top: 5rem;
    transform: rotate(45deg);
    transition: all .4s ease;
    padding: 2rem; }
    #video-modal a.close:hover {
      transform: rotate(135deg); }
    #video-modal a.close::after {
      content: " ";
      background: #fff;
      padding: 2px 15px;
      position: absolute;
      transform: translate(-1.7rem, -0.2rem); }
    #video-modal a.close::before {
      content: " ";
      background: #fff;
      padding: 15px 2px; }

#video-contact-us {
  background: #000;
  text-align: center;
  padding: 3rem 0 3.5rem; }
  #video-contact-us h2, #video-contact-us p {
    color: #fff; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }

.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

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

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

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

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

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

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

.fancybox-inner {
  overflow: hidden; }

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

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

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

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

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAYAAAAehFoBAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAMhJREFUeNrs2TEKwkAUhOEXBSurQM5jo2AbyG2EgIfyCkKqXEDiGYI2QkBn5aXYYBqb7MAM/Ft/LNutWbwtqtEVDei9UIMbajf93A51CyLn6twWrUwQOq0csTl6EICDMV/jOKG9pb+Nv21rCW53rM1wvFzPsD5zOc1WRjaBBRZYYIEFFlhggQUWWGCBBRZYYIEFFvh/cE/kfQbwnQh8C+ALEfhrLYznU6YY5RUBuJpe98HS/Vg8zr2R8E16Rk0C0MYt0dftR4ABAFfva4h/thfHAAAAAElFTkSuQmCC") 0 0;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060; }

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

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

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

.fancybox-prev {
  left: 0; }

.fancybox-next {
  right: 0; }

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

.fancybox-prev span {
  left: 5px; }

.fancybox-next span {
  right: 5px; }

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

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

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

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

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

.fancybox-overlay {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: rgba(0, 0, 0, 0.7); }

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

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

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

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

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

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

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

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

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

/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }
