/*============================================================================
  Debut | Built with Shopify Slate

  Some things to know about this file:
    - Sass is compiled on Shopify's server so you don't need to convert it to CSS yourself
    - The output CSS is compressed and comments are removed
    - You cannot use native CSS/Sass @imports in this file without a build script
==============================================================================*/
/*================ SASS HELPERS ================*/
/*============================================================================
  Convert pixels to ems
  eg. for a relational value of 12px write em(12) when the parent is 16px
  if the parent is another value say 24px write em(12, 24)
  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_px-to-em.scss
==============================================================================*/
/*============================================================================
  Strips the unit from a number.
  @param {Number (With Unit)} $value
  @example scss - Usage
    $dimension: strip-units(10em);
  @example css - CSS Output
    $dimension: 10;
  @return {Number (Unitless)}
  based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_strip-units.scss
==============================================================================*/
/*================ #Mixins ================*/
/*============================================================================
  Prefix mixin for generating vendor prefixes.
  Based on https://github.com/thoughtbot/bourbon/blob/master/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 ================*/
/*============================================================================
  Flexbox prefix mixins from Bourbon
    https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_flex-box.scss
==============================================================================*/
/*================ VARIABLES ================*/
/*============================================================================
  Grid Breakpoints and Class Names
    - Do not change the variable names
==============================================================================*/
/*============================================================================
  Generate breakpoint-specific column widths and push classes
    - Default column widths: $grid-breakpoint-has-widths: ($small, $medium-up);
    - Default is no push classes
==============================================================================*/
/*================ Color Variables ================*/
/*================ Sizing Variables ================*/
/*================ Z-Index ================*/
/*================ SVG ================*/
/*================ Drawers ================*/
/*================ Hero ================*/
/*================ Hero Slider ================*/
/*================ Typography ================*/
/*================ Gift Cards ================*/
/*================ Z-index ================*/
/*================ VENDOR ================*/
/*============================================================================
  Slick Slider 1.6.0

  - If upgrading Slick's styles, use the following variables/functions
    instead of the slick defaults (from slick-theme.scss)
  - This file includes default slick.scss styles (at Slick Slider SCSS)
    and slick-theme.scss (at Slick Slider Theme). Upgrade each area individually.
  - Remove `outline: none` from `.slick-dots li button`
==============================================================================*/
/*================ Slick Slider SCSS ================*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  /* Internet Explorer 10 */
  display: -ms-flexbox;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  /* Firefox */
  display: -moz-box;
  -moz-box-pack: center;
  -moz-box-align: center;
  /* Safari, Opera, and Chrome */
  display: -webkit-box;
  -webkit-box-pack: center;
  -webkit-box-align: center;
  /* W3C */
  display: box;
  box-pack: center;
  box-align: center; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/*================ Slick Slider Theme ================*/
.slick-loading .slick-list {
  background: white url(//cdn.shopify.com/s/files/1/0121/0014/1114/t/193/assets/ajax-loader.gif?v=4135686330247201572) center center no-repeat; }

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 40px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: #aaa;
  top: 50%;
  z-index: 1;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    background: transparent;
    color: black; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick-icons, sans-serif";
    font-size: 40px;
    line-height: 1;
    color: #aaa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: 20px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "<"; }
    [dir="rtl"] .slick-prev:before {
      content: ">"; }

.slick-next {
  right: 20px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: ">"; }
    [dir="rtl"] .slick-next:before {
      content: "<"; }

.slick-prev:hover {
  width: 60px;
  height: 60px;
  padding: 0 20px;
  background: white;
  left: 0;
  opacity: .5; }

.slick-next:hover {
  width: 60px;
  height: 60px;
  padding: 0 20px;
  background: white;
  right: 0;
  opacity: .5; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover:before, .slick-dots li button:focus:before {
        opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "\2022";
        width: 20px;
        height: 20px;
        font-family: "slick-icons, sans-serif";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: white;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: white;
      opacity: 0.75; }

/*================ GLOBAL ================*/
/*============================================================================
  #Normalize
  Based on normalize.css v3.0.2 | MIT License | git.io/normalize
==============================================================================*/
*,
*::before,
*::after {
  box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  width: 100%;
  min-width: 300px; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

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

a {
  background-color: transparent; }

a,
a:link,
a:hover,
a:active {
  text-decoration: none; }

b,
strong {
  font-weight: 700; }

em {
  font-style: italic; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  max-width: 100%;
  border: 0; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

input[type="search"], input[type="number"], input[type="email"], input[type="password"] {
  -webkit-appearance: none;
  -moz-appearance: none; }

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

textarea {
  overflow: auto;
  -webkit-appearance: none;
  -moz-appearance: none; }

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

/*============================================================================
  #Grid
==============================================================================*/
/*============================================================================
  Grid Setup
    1. Allow the grid system to be used on lists.
    2. Remove any margins and paddings that might affect the grid system.
    3. Apply a negative `margin-left` to negate the columns' gutters.
==============================================================================*/
.grid {
  *zoom: 1;
  list-style: none;
  margin: 0;
  padding: 0; }
  .grid::after {
    content: '';
    display: table;
    clear: both; }
  @media only screen and (max-width: 768px) {
    .grid {
      margin-left: -22px; } }

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

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

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

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

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

.two-thirds {
  width: 66.66667%; }

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

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

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

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

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

.two-sixths {
  width: 33.33333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.66667%; }

.five-sixths {
  width: 83.33333%; }

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

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

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

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

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

.two-twelfths {
  width: 16.66667%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.33333%; }

.five-twelfths {
  width: 41.66667%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.33333%; }

.eight-twelfths {
  width: 66.66667%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.33333%; }

.eleven-twelfths {
  width: 91.66667%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium-up--text-center {
    text-align: center !important; } }
/*================ Build Grid Push Classes ================*/
@media only screen and (max-width: 768px) {
  /* Halves */
  .small--push-one-half {
    left: 50%; }

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

  .small--push-two-thirds {
    left: 66.66667%; }

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

  .small--push-two-quarters {
    left: 50%; }

  .small--push-three-quarters {
    left: 75%; }

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

  .small--push-two-fifths {
    left: 40%; }

  .small--push-three-fifths {
    left: 60%; }

  .small--push-four-fifths {
    left: 80%; }

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

  .small--push-two-sixths {
    left: 33.33333%; }

  .small--push-three-sixths {
    left: 50%; }

  .small--push-four-sixths {
    left: 66.66667%; }

  .small--push-five-sixths {
    left: 83.33333%; }

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

  .small--push-two-eighths {
    left: 25%; }

  .small--push-three-eighths {
    left: 37.5%; }

  .small--push-four-eighths {
    left: 50%; }

  .small--push-five-eighths {
    left: 62.5%; }

  .small--push-six-eighths {
    left: 75%; }

  .small--push-seven-eighths {
    left: 87.5%; }

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

  .small--push-two-tenths {
    left: 20%; }

  .small--push-three-tenths {
    left: 30%; }

  .small--push-four-tenths {
    left: 40%; }

  .small--push-five-tenths {
    left: 50%; }

  .small--push-six-tenths {
    left: 60%; }

  .small--push-seven-tenths {
    left: 70%; }

  .small--push-eight-tenths {
    left: 80%; }

  .small--push-nine-tenths {
    left: 90%; }

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

  .small--push-two-twelfths {
    left: 16.66667%; }

  .small--push-three-twelfths {
    left: 25%; }

  .small--push-four-twelfths {
    left: 33.33333%; }

  .small--push-five-twelfths {
    left: 41.66667%; }

  .small--push-six-twelfths {
    left: 50%; }

  .small--push-seven-twelfths {
    left: 58.33333%; }

  .small--push-eight-twelfths {
    left: 66.66667%; }

  .small--push-nine-twelfths {
    left: 75%; }

  .small--push-ten-twelfths {
    left: 83.33333%; }

  .small--push-eleven-twelfths {
    left: 91.66667%; } }
@media only screen and (min-width: 769px) {
  /* Halves */
  .medium-up--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium-up--push-eleven-twelfths {
    left: 91.66667%; } }
/*================ #Helper Classes ================*/
.clearfix {
  *zoom: 1; }
  .clearfix::after {
    content: '';
    display: table;
    clear: both; }

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

.visibility-hidden {
  visibility: hidden; }

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

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

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

.hide {
  display: none !important; }

.invisible {
  visibility: hidden;
  opacity: 0; }

/*============================================================================
  Skip to content button
    - Overrides .visually-hidden when focused
==============================================================================*/
.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  color: #3d4246;
  background-color: white;
  padding: 10px;
  opacity: 1;
  z-index: 10000;
  transition: none; }

/*=============== Lazy loading ===================*/
.box {
  background: no-repeat;
  background-color: #f7f7f7;
  background-size: contain; }

.ratio-container {
  position: relative; }

.ratio-container:after {
  content: '';
  display: block;
  height: 0;
  width: 100%;
  /* 16:9 = 56.25% = calc(9 / 16 * 100%) */
  padding-bottom: 50%;
  content: ""; }

.ratio-container > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.lazyload,
.lazyloading {
  opacity: 0; }

.lazyloaded {
  opacity: 1;
  transition: opacity .3s; }

/*================ #Basic Styles ================*/
body,
html {
  background-color: white; }

.page-width {
  *zoom: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px; }
  .page-width::after {
    content: '';
    display: table;
    clear: both; }
  @media all and (max-width: 768px) {
    .page-width {
      margin: 0 20px; } }

.page-width-full {
  width: 100%;
  margin: -26px 0 0 0; }

#MainContent,
.main-content {
  display: block;
  box-sizing: border-box;
  padding-top: 0; }

.section-header {
  margin-bottom: 35px; }
  @media only screen and (min-width: 769px) {
    .section-header {
      margin-bottom: 55px; } }

/*================ Typography ================*/
blockquote {
  font-size: 1.125em;
  font-style: normal;
  text-align: center;
  padding: 0 30px;
  margin: 0; }
  .rte blockquote {
    border-color: #e8e9eb;
    border-width: 1px 0;
    border-style: solid;
    padding: 30px 0;
    margin-bottom: 27.5px; }
  blockquote p + cite {
    margin-top: 27.5px; }
  blockquote cite {
    display: block;
    font-size: 0.85em;
    font-weight: 400; }
    blockquote cite::before {
      content: '\2014 \0020'; }

code,
pre {
  font-family: Consolas, monospace;
  font-size: 1em; }

pre {
  overflow: auto; }

body,
input,
textarea,
button,
select {
  font-size: 16px;
  font-family: Proxima-Nova, sans-serif;
  color: #3d4246;
  line-height: 1.5; }

@media only screen and (max-width: 989px) {
  input,
  textarea,
  select,
  button {
    font-size: 16px; } }
/*================ RTE headings ================*/
.rte {
  color: #788188;
  margin-bottom: 35px; }
  .rte:last-child {
    margin-bottom: 0; }
  .rte h1,
  .rte h2,
  .rte h3,
  .rte h4,
  .rte h5,
  .rte h6 {
    margin-top: 55px;
    margin-bottom: 27.5px; }
    .rte h1:first-child,
    .rte h2:first-child,
    .rte h3:first-child,
    .rte h4:first-child,
    .rte h5:first-child,
    .rte h6:first-child {
      margin-top: 0; }
  .rte li {
    margin-bottom: 4px;
    list-style: inherit; }
    .rte li:last-child {
      margin-bottom: 0; }

.rte-setting {
  margin-bottom: 19.44444px; }
  .rte-setting:last-child {
    margin-bottom: 0; }

/*================ Paragraph styles ================*/
p {
  color: #788188;
  margin: 0 0 19.44444px; }
  @media only screen and (max-width: 768px) {
    p {
      font-size: 0.9375em; } }
  p:last-child {
    margin-bottom: 0; }

/*================ Lists ================*/
li {
  list-style: none; }

/*================ Misc styles ================*/
.fine-print {
  font-size: 0.875em;
  font-style: italic; }

.txt--minor {
  font-size: 80%; }

.txt--emphasis {
  font-style: italic; }

.address {
  margin-bottom: 55px; }

/*================ Hero and slideshow headers ================*/
.mega-title,
.mega-subtitle {
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.1); }

.mega-title {
  margin-bottom: 8px; }

.mega-title--large {
  font-size: 2.125em; }
  @media only screen and (min-width: 769px) {
    .mega-title--large {
      font-size: 4.0625em; } }

@media only screen and (min-width: 769px) {
  .mega-subtitle {
    font-size: 1.25em;
    margin: 0 auto;
    max-width: 75%; } }
.mega-subtitle p {
  color: inherit; }

.mega-subtitle--large {
  font-size: 1.125em;
  font-weight: 400; }
  @media only screen and (min-width: 769px) {
    .mega-subtitle--large {
      font-size: 1.5em; } }

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

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)
==============================================================================*/
.no-svg .icon__fallback-text {
  position: static !important;
  overflow: inherit;
  clip: none;
  height: auto;
  width: auto;
  margin: 0; }

/*================ Payment Icons ================*/
.payment-icons {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: default; }
  .payment-icons .icon {
    width: 30px;
    height: 30px; }
  .payment-icons .icon-shopify_pay {
    width: 75px;
    height: auto; }
  .payment-icons .icon-klarna {
    width: 48px;
    height: auto; }

.custom-payment-icons .payment-icon.diners_club,
.custom-payment-icons .payment-icon.jcb,
.custom-payment-icons .payment-icon.venmo,
.custom-payment-icons .payment-icon.maestro,
.custom-payment-icons .payment-icon.shopify_pay {
  display: none; }
.custom-payment-icons ul li {
  padding: 0; }
.custom-payment-icons svg.icon {
  width: auto;
  height: 26px; }
.custom-payment-icons .visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap; }

/*================ Social Icons ================*/
.social-icons .icon {
  width: 23px;
  height: 23px; }
  @media only screen and (min-width: 769px) {
    .social-icons .icon {
      width: 25px;
      height: 25px; } }
  .social-icons .icon.icon--wide {
    width: 40px; }

/*================ #Lists ================*/
ul,
ol {
  margin: 0;
  padding: 0; }

ol {
  list-style: decimal; }

.list--inline {
  padding: 0;
  margin: 0; }
  .list--inline > li {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }

/*================ #Rich Text Editor ================*/
.rte img {
  height: auto; }
.rte table {
  table-layout: fixed; }
.rte ul,
.rte ol {
  margin: 0 0 17.5px 35px; }
  .rte ul.list--inline,
  .rte ol.list--inline {
    margin-left: 0; }
.rte ul {
  list-style: disc outside; }
  .rte ul ul {
    list-style: circle outside; }
    .rte ul ul ul {
      list-style: square outside; }
.rte strong {
  color: black; }
.rte a:not(.btn) {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px; }

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

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

/*================ #Links and Buttons ================*/
a {
  color: #3d4246;
  /*text-decoration: none;*/
  text-decoration: underline;
  text-decoration-color: transparent; }
  a:hover, a:focus {
    opacity: 0.6; }
  a.default-link {
    color: #00b5e2; }
  a.classic-link {
    text-decoration: underline; }

a[href^="tel"] {
  color: inherit; }

/*================ Buttons ================*/
.btn, .shopify-payment-button .shopify-payment-button__button--unbranded {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: auto;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 10px 15px;
  background-color: #00b8e4;
  color: white;
  font-family: Proxima-Nova, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: normal;
  font-size: 14px; }
  @media only screen and (min-width: 769px) {
    .btn, .shopify-payment-button .shopify-payment-button__button--unbranded {
      padding: 10px 18px; } }
  .btn:hover, .shopify-payment-button .shopify-payment-button__button--unbranded:hover, .btn:focus, .shopify-payment-button .shopify-payment-button__button--unbranded:focus {
    opacity: 0.6; }
  .btn .icon-arrow-right, .shopify-payment-button .shopify-payment-button__button--unbranded .icon-arrow-right,
  .btn .icon-arrow-left,
  .shopify-payment-button .shopify-payment-button__button--unbranded .icon-arrow-left {
    height: 9px; }
  .btn[disabled], .shopify-payment-button [disabled].shopify-payment-button__button--unbranded {
    cursor: default;
    background-color: #cccccc;
    color: white;
    width: 100% !important;
    border: 0;
    border-radius: 0; }

.btn--secondary {
  background-color: #3a3a3a;
  color: white;
  border-color: #e8e9eb; }

.btn--secondary-accent {
  background-color: white;
  color: #00b8e4;
  border-color: #00b8e4; }

.btn--small {
  font-family: Proxima-Nova, sans-serif;
  padding: 8px 10px;
  font-size: 0.75em;
  line-height: 1; }

.btn--large {
  font-family: Proxima-Nova, sans-serif;
  padding: 16px 60px;
  font-size: 1.125em; }

.btn--gray {
  background-color: #f1f1f1;
  color: white;
  border-color: #f1f1f1; }

.product-form__cart-submit, .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .shopify-payment-button__button--unbranded {
  background: #84bd00; }

/*================ Button variations ================*/
@media only screen and (max-width: 768px) {
  .btn--small-wide {
    padding-left: 50px;
    padding-right: 50px; } }
.btn--link {
  background-color: transparent;
  border: 0;
  margin: 0;
  color: #3d4246;
  text-align: left; }
  .btn--link:hover, .btn--link:focus {
    opacity: 0.6; }
  .btn--link .icon {
    vertical-align: middle; }

.btn--narrow {
  padding-left: 15px;
  padding-right: 15px; }

.btn--disabled {
  background: #edecec; }
  .btn--disabled:hover, .btn--disabled:focus {
    opacity: 0.5; }

.btn--has-icon-after .icon {
  margin-left: 10px; }

.btn--has-icon-before .icon {
  margin-right: 10px; }

/*================ Force an input/button to look like a text link ================*/
.text-link {
  display: inline;
  border: 0 none;
  background: none;
  padding: 0;
  margin: 0; }

/*================ Return to collection/blog links ================*/
.return-link-wrapper {
  margin: 82.5px 0; }
  @media only screen and (max-width: 768px) {
    .return-link-wrapper {
      margin-bottom: -56px; }
      .return-link-wrapper .btn, .return-link-wrapper .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .return-link-wrapper .shopify-payment-button__button--unbranded {
        display: block; } }

/*================ #Tables ================*/
table {
  margin-bottom: 27.5px; }

th {
  font-family: Proxima-Nova, sans-serif;
  font-weight: 700; }

th,
td {
  text-align: left;
  border: 1px solid #e8e9eb;
  padding: 10px 14px; }

/*============================================================================
  Responsive tables, defined with .responsive-table on table element.
==============================================================================*/
@media only screen and (max-width: 768px) {
  .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: 27.5px;
    border: 0;
    margin: 0; }
  .responsive-table td::before {
    content: attr(data-label);
    float: left;
    text-align: center;
    font-size: 12px;
    padding-right: 10px; }

  .responsive-table__row + .responsive-table__row,
  tfoot > .responsive-table__row:first-child {
    position: relative;
    margin-top: 10px;
    padding-top: 55px; }
    .responsive-table__row + .responsive-table__row::after,
    tfoot > .responsive-table__row:first-child::after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 27.5px;
      right: 27.5px;
      border-bottom: 1px solid #e8e9eb; } }
/*================ #Images and Iframes ================*/
svg:not(:root) {
  overflow: hidden; }

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

/*================ Forms ================*/
form {
  margin: 0; }

fieldset {
  border: 1px solid #e8e9eb;
  margin: 0 0 55px;
  padding: 27.5px; }

legend {
  border: 0;
  padding: 0; }

button {
  cursor: pointer; }

input[type="submit"] {
  cursor: pointer; }

label {
  display: block;
  margin-bottom: 5px; }
  @media only screen and (max-width: 768px) {
    label {
      font-size: 0.875em; } }
  [type="radio"] + label, [type="checkbox"] + label {
    display: inline-block;
    margin-bottom: 0; }
  label[for] {
    cursor: pointer; }

input,
textarea,
select {
  border: 1px solid #e8e9eb;
  background-color: white;
  color: black;
  max-width: 100%;
  line-height: 1.2;
  border-radius: 2px; }
  input:focus,
  textarea:focus,
  select:focus {
    border-color: #cdcfd3; }
  input[disabled],
  textarea[disabled],
  select[disabled] {
    cursor: default;
    background-color: #f4f4f4;
    border-color: #f4f4f4; }
  input.input--error::-webkit-input-placeholder,
  textarea.input--error::-webkit-input-placeholder,
  select.input--error::-webkit-input-placeholder {
    color: #d20000;
    opacity: 0.5; }
  input.input--error::-moz-placeholder,
  textarea.input--error::-moz-placeholder,
  select.input--error::-moz-placeholder {
    color: #d20000;
    opacity: 0.5; }
  input.input--error:-ms-input-placeholder,
  textarea.input--error:-ms-input-placeholder,
  select.input--error:-ms-input-placeholder {
    color: #d20000;
    opacity: 0.5; }
  input.input--error::-ms-input-placeholder,
  textarea.input--error::-ms-input-placeholder,
  select.input--error::-ms-input-placeholder {
    color: #d20000;
    opacity: 1; }
  input.hidden-placeholder::-webkit-input-placeholder,
  textarea.hidden-placeholder::-webkit-input-placeholder,
  select.hidden-placeholder::-webkit-input-placeholder {
    color: transparent; }
  input.hidden-placeholder::-moz-placeholder,
  textarea.hidden-placeholder::-moz-placeholder,
  select.hidden-placeholder::-moz-placeholder {
    color: transparent; }
  input.hidden-placeholder:-ms-input-placeholder,
  textarea.hidden-placeholder:-ms-input-placeholder,
  select.hidden-placeholder:-ms-input-placeholder {
    color: transparent; }
  input.hidden-placeholder::-ms-input-placeholder,
  textarea.hidden-placeholder::-ms-input-placeholder,
  select.hidden-placeholder::-ms-input-placeholder {
    opacity: 1; }
  .product-form input, .product-form
  textarea, .product-form
  select {
    min-height: 44px; }

textarea {
  min-height: 100px; }

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url(//cdn.shopify.com/s/files/1/0121/0014/1114/t/193/assets/ico-select.svg?v=15556381834474199855);
  background-repeat: no-repeat;
  background-position: right 10px center;
  line-height: 1.2;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: '';
  cursor: pointer;
  padding-top: 10px;
  padding-left: 15px;
  padding-bottom: 10px;
  /*================ Hide the svg arrow in IE9 and below ================*/ }
  @media only screen and (min-width: 769px) {
    select {
      padding-top: 10px;
      padding-left: 18px;
      padding-bottom: 10px; } }
  .ie9 select {
    padding-right: 10px;
    background-image: none; }

optgroup {
  font-weight: 700; }

option {
  color: #3d4246;
  background-color: white; }

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

/*================ Form labels ================*/
.label--hidden {
  display: inline-block;
  position: relative;
  width: auto;
  height: auto;
  line-height: 30px;
  margin-right: 10px !important;
  float: none;
  overflow: none; }

::-webkit-input-placeholder {
  color: black;
  opacity: 0.6; }

::-moz-placeholder {
  color: black;
  opacity: 0.6; }

:-ms-input-placeholder {
  color: black;
  opacity: 0.6; }

::-ms-input-placeholder {
  color: black;
  opacity: 1; }

/*================ Labels ================*/
.label--error {
  color: #d20000; }

input,
textarea {
  padding: 10px 15px; }
  @media only screen and (min-width: 769px) {
    input,
    textarea {
      padding: 10px 18px; } }

/*================ Vertical forms ================*/
.form-vertical input,
.form-vertical select,
.form-vertical textarea {
  display: block;
  width: 100%;
  margin-bottom: 19.44444px; }
.form-vertical [type="radio"],
.form-vertical [type="checkbox"] {
  display: inline-block;
  width: auto;
  margin-right: 5px; }
.form-vertical [type="submit"],
.form-vertical .btn,
.form-vertical .shopify-payment-button .shopify-payment-button__button--unbranded,
.shopify-payment-button .form-vertical .shopify-payment-button__button--unbranded {
  display: inline-block;
  width: auto; }

/*================ Form feedback messages ================*/
.note,
.form--success,
.errors {
  padding: 10px;
  margin: 0 0 27.5px; }
  @media only screen and (min-width: 769px) {
    .note,
    .form--success,
    .errors {
      padding: 10px; } }

.note {
  border: 1px solid #e8e9eb; }

.form--success {
  border: 1px solid #19a340;
  background-color: #f8fff9;
  color: #19a340; }

.errors {
  border: 1px solid #d20000;
  background-color: #fff8f8;
  color: #d20000; }
  .errors ul {
    list-style: none;
    padding: 0;
    margin: 0; }
  .errors a {
    color: #d20000;
    text-decoration: underline; }

/*================ Input Groups ================*/
.input-group {
  position: relative;
  display: table;
  width: 100%;
  border-collapse: separate; }
  .form-vertical .input-group {
    margin-bottom: 55px; }

.input-group__field,
.input-group__btn {
  display: table-cell;
  vertical-align: middle;
  margin: 0; }

.input-group__field,
.input-group__btn .btn,
.input-group__btn .shopify-payment-button .shopify-payment-button__button--unbranded,
.shopify-payment-button .input-group__btn .shopify-payment-button__button--unbranded {
  height: 42px;
  padding-top: 0;
  padding-bottom: 0; }
  @media only screen and (min-width: 769px) {
    .input-group__field,
    .input-group__btn .btn,
    .input-group__btn .shopify-payment-button .shopify-payment-button__button--unbranded,
    .shopify-payment-button .input-group__btn .shopify-payment-button__button--unbranded {
      height: 46px; } }

.input-group__field {
  width: 100%;
  border-right: 0;
  border-radius: 2px 0 0 2px; }
  .form-vertical .input-group__field {
    margin: 0; }

.input-group__btn {
  white-space: nowrap;
  width: 1%; }
  .input-group__btn .btn, .input-group__btn .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .input-group__btn .shopify-payment-button__button--unbranded {
    border-radius: 0 2px 2px 0;
    white-space: nowrap; }

/*================ #Site Nav and Dropdowns ================*/
.site-header__logo img {
  display: block; }

.site-nav {
  position: static;
  padding: 0;
  text-align: left;
  margin: 25px 0; }
  .site-nav a {
    padding: 3px 15px;
    color: #000 !important;
    text-decoration: none; }

.site-nav--centered {
  padding-bottom: 22px; }

/*================ Site Nav Links ================*/
.site-nav__link {
  display: block;
  white-space: nowrap; }
  .site-nav--centered .site-nav__link {
    padding-top: 0; }
  .site-nav__link .icon-chevron-down {
    width: 8px;
    height: 8px;
    margin-left: 2px; }
  .site-nav__link.site-nav--active-dropdown {
    border: 1px solid #e8e9eb;
    border-bottom: 1px solid transparent;
    z-index: 2; }

/*================ Dropdowns ================*/
.site-nav--has-dropdown {
  position: relative; }

.site-nav--has-dropdown:hover .site-nav__dropdown,
.site-nav--has-dropdown:focus .site-nav__dropdown {
  display: block; }

.site-nav--has-dropdown .site-nav__link--main:hover {
  cursor: default; }

.site-nav--has-centered-dropdown {
  position: static; }

.site-nav__dropdown {
  display: none;
  position: absolute;
  left: 0;
  padding: 11px 30px 11px 0;
  margin: 0;
  z-index: 7;
  text-align: left;
  border: 1px solid #e8e9eb;
  background: white;
  left: -1px;
  top: 59px; }
  .site-nav__dropdown .site-nav__link {
    padding: 4px 15px; }
  .site-nav--active-dropdown .site-nav__dropdown {
    display: block; }
  .site-nav__dropdown li {
    display: block; }

.site-nav__dropdown--centered {
  width: 100%;
  border: 0;
  background: none;
  padding: 0;
  text-align: center; }

/*================ Child list ================*/
.site-nav__childlist {
  display: inline-block;
  border: 1px solid #e8e9eb;
  background: black;
  padding: 11px 17px;
  text-align: left; }

.site-nav__childlist-grid {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: auto;
  margin-bottom: -15px; }

.site-nav__childlist-item {
  -webkit-flex: 0 1 auto;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  margin-bottom: 15px; }
  .site-nav__childlist-item .site-nav__child-link.site-nav__child-link--parent {
    font-weight: 700; }
  .site-nav__childlist-item .site-nav__child-link {
    font-weight: normal; }

.site-nav__child-link--parent {
  font-weight: 700;
  margin: 4px 0; }

/*
.page-width {
  padding-left: $gutter-site;
  padding-right: $gutter-site;

  @include media-query($small) {
    padding-left: $gutter-site-mobile;
    padding-right: $gutter-site-mobile;
  }
}
*/
.page-container {
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
  display: inline-block;
  width: 100%;
  position: relative;
  /* overflow: hidden; */ }
  @media only screen and (min-width: 769px) {
    .page-container {
      -ms-transform: translate3d(0, 0, 0);
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0); } }

hr {
  margin: 55px 0;
  border: 0;
  border-bottom: 1px solid #e8e9eb; }

.hr--small {
  padding: 10px 0;
  margin: 0; }

.hr--invisible {
  border-bottom: 0; }

.border-bottom {
  border-bottom: 1px solid #e8e9eb; }

.border-top {
  border-top: 1px solid #e8e9eb; }

.empty-page-content {
  padding: 0 0 40px 0; }

.grid--table {
  display: table;
  table-layout: fixed;
  width: 100%; }
  .grid--table > .grid__item {
    float: none;
    display: table-cell;
    vertical-align: middle; }

.grid--no-gutters {
  margin-left: 0; }
  .grid--no-gutters .grid__item {
    padding-left: 0; }

.grid--half-gutters {
  margin-left: -15px; }
  .grid--half-gutters > .grid__item {
    padding-left: 15px; }

.grid--double-gutters {
  margin-left: -60px; }
  .grid--double-gutters > .grid__item {
    padding-left: 60px; }

.grid--flush-bottom {
  margin-bottom: -55px;
  overflow: auto; }
  .grid--flush-bottom > .grid__item {
    margin-bottom: 55px; }

/*============================================================================
  Animation Classes and Keyframes
==============================================================================*/
.is-transitioning {
  display: block !important;
  visibility: hidden !important; }

@media (max-width: 980px) {
  .is-transitioning.js-menu--is-open {
    visibility: visible !important; } }
@-webkit-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-moz-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.drawer {
  display: none;
  position: absolute;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  z-index: 9;
  background-color: white;
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1); }
  .drawer input[type="text"],
  .drawer textarea {
    background-color: white;
    color: #3d4246; }

.js-drawer-open {
  overflow: hidden; }

.drawer--top {
  width: 100%; }
  .js-drawer-open-top .drawer--top {
    -ms-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    display: block; }

.drawer-page-content::after {
  visibility: hidden;
  opacity: 0;
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 8;
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1); }
  .js-drawer-open .drawer-page-content::after {
    visibility: visible;
    opacity: 1; }

.drawer__title,
.drawer__close {
  display: table-cell;
  vertical-align: middle; }

.drawer__close-button {
  background: none;
  border: 0 none;
  position: relative;
  right: -15px;
  height: 100%;
  width: 60px;
  padding: 0 20px;
  color: inherit;
  font-size: 1.125em; }
  .drawer__close-button:active, .drawer__close-button:focus {
    background-color: rgba(0, 0, 0, 0.6); }

.grid--view-items {
  overflow: auto;
  margin-bottom: -35px; }

.grid-view-item {
  margin: 0 auto 35px; }
  .custom__item .grid-view-item {
    margin-bottom: 0; }

.grid-view-item__title {
  margin-top: 10px;
  margin-bottom: 0;
  color: #3d4246; }

.grid-view-item__meta {
  margin-top: 8px; }

@media only screen and (max-width: 768px) {
  .grid-view-item__title,
  .grid-view-item__meta {
    font-size: 0.9375em; } }
.product-price__price {
  display: inline-block;
  color: black; }

.product-price__sale {
  padding-right: 0; }

.grid-view-item__link {
  display: block;
  position: relative; }

.grid-view-item__vendor {
  margin-top: 4px;
  color: #788188;
  font-size: 0.875em;
  text-transform: uppercase; }
  @media only screen and (max-width: 768px) {
    .grid-view-item__vendor {
      font-size: 0.8125em; } }

.grid-view-item__image-wrapper {
  margin: 0 auto 35px;
  position: relative;
  width: 100%; }

.grid-view-item__image {
  display: block;
  margin: 0 auto;
  max-width: 100%; }
  .grid-view-item__image-wrapper .grid-view-item__image {
    position: absolute;
    top: 0; }
  .grid-view-item--sold-out .grid-view-item__image {
    opacity: 1; }
  .grid-view-item__image.lazyload {
    opacity: 0; }
  .ie9 .grid-view-item__image {
    opacity: 1; }

.list-view-item {
  display: table;
  table-layout: fixed;
  margin-bottom: 22px;
  width: 100%; }
  .list-view-item:last-child {
    margin-bottom: 0; }
  @media only screen and (min-width: 769px) {
    .list-view-item {
      border-bottom: 1px solid #e8e9eb;
      padding-bottom: 22px; }
      .list-view-item:last-child {
        padding-bottom: 0;
        border-bottom: 0; } }

.list-view-item__image {
  max-height: 95px; }

.list-view-item__image-column {
  display: table-cell;
  vertical-align: middle;
  width: 130px; }
  @media only screen and (max-width: 768px) {
    .list-view-item__image-column {
      width: 85px; } }

.list-view-item__image-wrapper {
  position: relative;
  margin-right: 35px; }
  @media only screen and (max-width: 768px) {
    .list-view-item__image-wrapper {
      margin-right: 17.5px; } }

.list-view-item__title-column {
  display: table-cell;
  vertical-align: middle; }

.list-view-item__title {
  color: #3d4246;
  font-size: 1.125em;
  min-width: 100px; }
  @media only screen and (max-width: 768px) {
    .list-view-item__title {
      font-size: 0.9375em; } }

.list-view-item__sold-out {
  font-size: 0.9375em; }

.list-view-item__on-sale {
  color: #7796a8;
  font-size: 0.9375em; }
  @media only screen and (max-width: 768px) {
    .list-view-item__on-sale {
      display: none; } }

.list-view-item__vendor-column {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  width: 20%; }

.list-view-item__vendor {
  font-size: 0.9375em;
  font-style: italic; }
  @media only screen and (max-width: 768px) {
    .list-view-item__vendor {
      font-size: 0.875em; } }

.list-view-item__price-column {
  display: table-cell;
  text-align: right;
  vertical-align: middle;
  width: 20%;
  font-size: 1.0625em; }
  @media only screen and (max-width: 768px) {
    .list-view-item__price-column {
      font-size: 0.9375em; } }
  .list-view-item__price-column .product-price__sale {
    display: block; }
  .list-view-item__price-column .product-price__sale-label,
  .list-view-item__price-column .product-price__sold-out {
    display: none; }

.list-view-item__price {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.list-view-item__price--reg {
  color: #7796a8; }
  @media only screen and (max-width: 768px) {
    .list-view-item__price--reg {
      display: block; } }

@media only screen and (max-width: 768px) {
  .list-view-item__price--sale {
    display: block; } }

/*============================================================================
  Slick slider overrides
==============================================================================*/
.slick-dotted.slick-slider {
  margin-bottom: 0; }

/*================ Slick dots and prev/next pagination ================*/
.slick-slider .slick-dots {
  margin: 0;
  width: auto; }
  .slick-slider .slick-dots li {
    margin: 0;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    margin-left: 6px; }
    .slick-slider .slick-dots li:first-of-type {
      margin-left: 0; }
    @media only screen and (min-width: 769px) {
      .slick-slider .slick-dots li {
        width: 12px;
        height: 12px;
        margin-left: 8px; } }
    .slick-slider .slick-dots li button {
      position: relative;
      padding: 0;
      width: 10px;
      height: 10px; }
      @media only screen and (min-width: 769px) {
        .slick-slider .slick-dots li button {
          width: 12px;
          height: 12px; } }
    .slick-slider .slick-dots li button::before {
      text-indent: -9999px;
      background-color: transparent;
      border-radius: 100%;
      background-color: currentColor;
      width: 10px;
      height: 10px;
      opacity: 0.4;
      transition: all 0.2s; }
      @media only screen and (min-width: 769px) {
        .slick-slider .slick-dots li button::before {
          width: 12px;
          height: 12px; } }
    .slick-slider .slick-dots li.slick-active button::before {
      opacity: 1; }
    .slick-slider .slick-dots li button:active::before {
      opacity: 0.7; }

/*================ Index sections ================*/
.index-section {
  padding-top: 16px;
  padding-bottom: 16px; }
  .index-section:first-child {
    padding-top: 0;
    border-top: 0; }
  .index-section:last-child {
    padding-bottom: 0; }

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

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

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

.image-bar__content .placeholder-svg {
  position: absolute;
  top: 0;
  left: 0; }

/*================ TEMPLATES ================*/
/*============= Templates | Password =============*/
.template-password {
  height: 100vh; }

.password-page {
  display: table;
  height: 100%;
  width: 100%;
  color: #788188;
  background-color: white;
  background-size: cover; }
  .ie9 .password-page {
    height: auto; }
  .password-page .errors,
  .password-page .form--success {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto; }

.password-header {
  height: 85px;
  display: table-row; }

.password-header__inner {
  display: table-cell;
  vertical-align: middle; }

.password-login {
  padding: 0 30px;
  text-align: right; }

.password-logo .logo {
  color: #3d4246;
  font-weight: 700;
  max-width: 100%; }

.password-main {
  display: table-row;
  width: 100%;
  height: 100%;
  margin: 0 auto; }

.password-main__inner {
  display: table-cell;
  vertical-align: middle;
  padding: 27.5px 55px; }

.password-message {
  max-width: 500px;
  margin: 82.5px auto 27.5px; }

.password__input-group {
  max-width: 340px;
  margin: 0 auto 55px; }

.password__title {
  margin-bottom: 82.5px; }

.password__form-heading {
  margin-bottom: 55px; }

.password-powered-by {
  margin-top: 82.5px; }

.product-single {
  overflow-anchor: none; }

.product-single__title {
  margin-bottom: 0; }

.product-single__price {
  color: #788188;
  font-size: 1.25em;
  font-weight: 400; }
  @media only screen and (max-width: 768px) {
    .product-single__price {
      display: block;
      font-size: 1.125em; } }

.product-single__vendor {
  color: #788188;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 5px 0 10px; }

/*================ Add to cart form ================*/
.product-form {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end;
  width: auto;
  width: 100% !important; }

.product-form__item {
  -webkit-flex: 1 1 200px;
  -moz-flex: 1 1 200px;
  -ms-flex: 1 1 200px;
  flex: 1 1 200px;
  margin-bottom: 10px; }
  .product-form__item label {
    display: block; }
    .product-form--hide-variant-labels .product-form__item label {
      position: absolute !important;
      overflow: hidden;
      clip: rect(0 0 0 0);
      height: 1px;
      width: 1px;
      margin: -1px;
      padding: 0;
      border: 0; }

.product-form__item--submit {
  -webkit-flex: 1 1 300px;
  -moz-flex: 1 1 300px;
  -ms-flex: 1 1 300px;
  flex: 1 1 300px; }

.product-form__item--payment-button {
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%; }
  @media only screen and (min-width: 990px) {
    .product-single--small-image .product-form__item--payment-button, .product-single--full-image .product-form__item--payment-button {
      display: inline-flex;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -moz-align-items: flex-start;
      -ms-align-items: flex-start;
      -o-align-items: flex-start;
      align-items: flex-start; } }
  .product-form__item--payment-button.product-form__item--no-variants {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: stretch;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    -o-align-items: stretch;
    align-items: stretch; }

.product-form__variants {
  display: none; }
  .no-js .product-form__variants {
    display: block; }

.product-form__item--quantity {
  -webkit-flex: 0 0 100px;
  -moz-flex: 0 0 100px;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px; }

.product-form__input {
  display: block;
  width: 100%; }

.product-form__cart-submit, .shopify-payment-button .shopify-payment-button__button--unbranded {
  display: block;
  width: 100%;
  line-height: 1.4;
  padding-left: 5px;
  padding-right: 5px;
  white-space: normal;
  margin-top: 0px;
  min-height: 44px; }
  .product-single--small-image .product-form__cart-submit, .product-single--small-image .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .product-single--small-image .shopify-payment-button__button--unbranded, .product-single--full-image .product-form__cart-submit, .product-single--full-image .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .product-single--full-image .shopify-payment-button__button--unbranded {
    -webkit-flex: 50%;
    -moz-flex: 50%;
    -ms-flex: 50%;
    flex: 50%;
    margin-right: 10px; }
  .product-form__item--payment-button .product-form__cart-submit, .product-form__item--payment-button .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .product-form__item--payment-button .shopify-payment-button__button--unbranded {
    margin-top: 10px; }

.product-single--small-image .shopify-payment-button, .product-single--full-image .shopify-payment-button {
  -webkit-flex: 50%;
  -moz-flex: 50%;
  -ms-flex: 50%;
  flex: 50%; }
.shopify-payment-button .shopify-payment-button__button {
  margin-top: 10px; }
  .product-single--small-image .shopify-payment-button .shopify-payment-button__button, .product-single--full-image .shopify-payment-button .shopify-payment-button__button {
    margin-top: 10px; }
  @media only screen and (min-width: 769px) {
    .shopify-payment-button .shopify-payment-button__button {
      margin-top: 20px; } }
.shopify-payment-button .shopify-payment-button__button--unbranded {
  margin-bottom: 10px; }
  .shopify-payment-button .shopify-payment-button__button--unbranded:hover {
    background-color: #00b8e4 !important; }
.shopify-payment-button .shopify-payment-button__button--branded {
  border-radius: 2px;
  overflow: hidden; }
.shopify-payment-button .shopify-payment-button__more-options {
  margin: 16px 0 10px;
  font-size: 0.875em;
  text-decoration: underline; }
  .shopify-payment-button .shopify-payment-button__more-options:hover, .shopify-payment-button .shopify-payment-button__more-options:focus {
    opacity: 0.6; }

@media only screen and (min-width: 769px) {
  .product-form__cart-submit--small {
    max-width: 300px; } }
.product-single__description {
  margin-top: 30px; }

/*================ Product Images ================*/
.product-single__thumbnail {
  display: block;
  margin: -1px 0 8px;
  border: 1px solid transparent; }
  .product-single__thumbnail.active-thumb {
    border-color: #3d4246; }

.product-single__thumbnail-image {
  max-width: 60px;
  max-height: 60px;
  display: block; }

.pdp-thumbnail-single-wrap-inner img {
  margin-left: auto;
  margin-right: auto; }

.product-featured-img {
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 0;
  width: 100%; }
  .no-js .product-featured-img {
    position: relative; }

.zoomImg {
  background-color: white; }

@media only screen and (min-width: 769px) {
  .product-single__thumbnails {
    margin-top: 30px; } }
@media only screen and (max-width: 768px) {
  .product-single__photos {
    margin-bottom: 30px; }

  .product-single__photo--has-thumbnails {
    margin-bottom: 30px; } }
.product-single__photos--full {
  margin-bottom: 30px; }

.product-single__photo-wrapper {
  margin: 0 auto;
  width: 100%; }

.product-single__photo {
  margin: 0 auto;
  min-height: 1px;
  width: 100%;
  height: 100%;
  position: relative; }

@media only screen and (max-width: 768px) {
  .thumbnails-slider--active .product-single__thumbnails {
    display: none; }
    .thumbnails-slider--active .product-single__thumbnails.slick-initialized, .ie9 .thumbnails-slider--active .product-single__thumbnails {
      display: block;
      margin: 0 auto;
      max-width: 75%; }

  .product-single__photos {
    position: relative; }

  .thumbnails-wrapper {
    position: relative;
    top: 30px;
    text-align: center;
    margin-bottom: 30px; }

  .thumbnails-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); }

  .thumbnails-slider__prev {
    left: -20px; }

  .thumbnails-slider__next {
    right: -20px; }

  .product-single__thumbnails-item {
    display: inline-block;
    padding-bottom: 10px;
    width: 72px;
    float: none;
    vertical-align: middle; }
    .slick-slider .product-single__thumbnails-item {
      float: left; }
    .thumbnails-slider--active .product-single__thumbnails-item {
      padding: 5px 0; }

  .product-single__thumbnail {
    margin: 0 auto;
    width: 60px; } }
/*================ Template | Collections ================*/
.collection-hero {
  position: relative;
  overflow: hidden;
  background: #00b5e2;
  margin: 0; }

.collection-description {
  margin-bottom: 22px;
  margin-top: 22px; }
  @media only screen and (min-width: 769px) {
    .collection-description {
      margin-bottom: 35px;
      margin-top: 35px; } }

.collection-hero__image {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 160px;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 1; }

.collection-hero__title-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #3d4246;
  opacity: 0.25; }

.collection-hero__title {
  position: absolute;
  color: white;
  width: 100%;
  text-align: center;
  left: 0;
  right: 0;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }
  @media only screen and (min-width: 769px) {
    .collection-hero__title {
      font-size: 2em; } }

@media screen and (max-width: 768px) {
  .collection-hero__image:after {
    content: " ";
    z-index: 1;
    display: block;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5); } }
.template-blog .social-sharing {
  margin-bottom: 17.5px; }

.blog--list-view .pagination {
  padding-top: 0; }

/*================ Cart page ================*/
.cart th,
.cart td {
  border: 0; }
.cart td {
  padding: 22px 0; }
.cart th {
  font-weight: 400;
  padding: 27.5px 0; }
.cart .cart__meta {
  padding-right: 15px; }

.cart__meta-text {
  padding: 5px 0;
  font-size: 0.875em;
  font-style: italic; }

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

.cart__qty-input {
  text-align: center;
  width: 60px;
  padding-left: 5px;
  padding-right: 5px; }
  @media only screen and (max-width: 768px) {
    .cart__qty-input {
      padding-top: 2px;
      padding-bottom: 2px; } }

.cart__edit {
  margin-top: 10px; }

.cart__edit--active .cart__edit-text--cancel {
  display: none; }

.cart__edit-text--edit {
  display: none; }
  .cart__edit--active .cart__edit-text--edit {
    display: block; }

.cart__edit-text--cancel,
.cart__edit-text--edit {
  pointer-events: none; }

.cart__row p {
  margin-bottom: 0; }
  .cart__row p + p {
    margin-top: 10px; }

.cart__subtotal-title {
  font-size: 1.125em; }

.cart__subtotal {
  padding-left: 27.5px; }
  @media only screen and (min-width: 769px) {
    .cart__subtotal {
      padding-left: 55px;
      min-width: 150px;
      display: inline-block; } }

.cart__savings {
  padding-top: 18px; }

.cart__savings-amount {
  padding-left: 27.5px; }
  @media only screen and (min-width: 769px) {
    .cart__savings-amount {
      padding-left: 55px;
      min-width: 150px;
      display: inline-block; } }

.cart__footer {
  padding-top: 35px; }

.cart__update--large {
  margin-right: 10px; }

.cart__continue--large {
  margin-right: 10px;
  line-height: 1.2; }

.cart__shipping {
  font-style: italic;
  font-size: 0.875em;
  padding: 18px 0 20px; }

.cart-note__label,
.cart-note__input {
  display: block; }
  @media only screen and (max-width: 768px) {
    .cart-note__label,
    .cart-note__input {
      margin: 0 auto; } }

.cart-note__label {
  margin-bottom: 15px; }

.cart-note__input {
  min-height: 50px;
  width: 100%; }
  @media only screen and (max-width: 768px) {
    .cart-note__input {
      margin-bottom: 40px; } }

.cart__image {
  max-height: 95px; }

.cart__image-wrapper a {
  display: block;
  padding-right: 17.5px; }
  @media only screen and (min-width: 769px) {
    .cart__image-wrapper a {
      padding-right: 35px; } }

@media only screen and (min-width: 769px) {
  .cart__image-wrapper {
    width: 130px; }

  .cart__meta {
    max-width: 300px; }

  .cart__remove {
    margin-top: 4px; }

  .cart__qty {
    text-align: center; } }
@media only screen and (max-width: 768px) {
  .cart table {
    display: block;
    width: 100%; }
  .cart thead {
    display: none; }
  .cart tr,
  .cart tbody {
    width: 100%; }
  .cart tbody {
    display: block; }
  .cart .cart__update-wrapper {
    display: none;
    padding-top: 0;
    padding-bottom: 22px; }

  .cart__update--show td {
    padding-bottom: 10px; }
  .cart__update--show .cart__update-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }

  .cart-flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center; }

  .cart-flex-item {
    display: block;
    min-width: 0;
    -webkit-flex: 1 1 100%;
    -moz-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%; }

  .cart__meta {
    -webkit-flex: 1 1 0%;
    -moz-flex: 1 1 0%;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%; }

  .cart__image-wrapper {
    -webkit-flex: 0 0 85px;
    -moz-flex: 0 0 85px;
    -ms-flex: 0 0 85px;
    flex: 0 0 85px; }

  .cart__price-wrapper {
    -webkit-flex: 0 1 24%;
    -moz-flex: 0 1 24%;
    -ms-flex: 0 1 24%;
    flex: 0 1 24%;
    text-align: right; }

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

  .cart-message {
    padding-top: 20px; }

  .cart__qty {
    padding: 0 10px; }

  .cart__qty-label {
    position: inherit !important;
    overflow: auto;
    clip: auto;
    width: auto;
    height: auto;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    font-size: 0.8125em;
    margin-right: 5px; } }
.cart--no-cookies .cart__continue-btn {
  display: none; }

.cart--no-cookies .cart--empty-message {
  display: none; }

.cookie-message {
  display: none;
  padding-bottom: 25px; }
  .cart--no-cookies .cookie-message {
    display: block; }

.additional-checkout-buttons {
  margin-top: 22px; }
  .additional-checkout-buttons input[type="image"] {
    padding: 0;
    border: 0;
    background: transparent; }

/*================ MODULES ================*/
.site-header {
  background-color: white;
  position: relative;
  padding: 0 55px; }
  @media only screen and (max-width: 768px) {
    .site-header {
      border-bottom: 1px solid #e8e9eb;
      padding: 0; } }
  @media only screen and (min-width: 769px) {
    .site-header.logo--center {
      padding-top: 30px; } }

.announcement-bar {
  text-align: center;
  position: relative;
  z-index: 10; }

.announcement-bar--link {
  display: block; }

.announcement-bar__message {
  display: block;
  font-size: 1em;
  font-weight: 400;
  padding: 10px 22px; }
  @media only screen and (min-width: 769px) {
    .announcement-bar__message {
      padding: 10px 55px; } }

.site-header__logo {
  margin: 0; }
  .logo-align--center .site-header__logo {
    text-align: center;
    margin: 0 auto; }
    @media only screen and (max-width: 768px) {
      .logo-align--center .site-header__logo {
        text-align: left;
        margin: 15px 0; } }

.site-header__logo-link {
  display: inline-block;
  word-break: break-word; }

.site-header__logo-image {
  display: block; }
  @media only screen and (min-width: 769px) {
    .site-header__logo-image {
      margin: 0 auto; } }

.site-header__logo-image img {
  width: 100%; }

.site-header__logo-image--centered img {
  margin: 0 auto; }

@media only screen and (min-width: 769px) {
  .logo-align--center .site-header__logo-link {
    margin: 0 auto; } }
@media only screen and (max-width: 768px) {
  .site-header__icons .btn--link,
  .site-header__icons .site-header__cart {
    font-size: 1em; } }
.site-header__icons {
  position: relative;
  white-space: nowrap; }

.site-header__icons-wrapper {
  position: relative;
  margin-right: -10px; }

.site-header__cart,
.site-header__search,
.site-header__account {
  position: relative; }

.site-header__search {
  padding-right: 45px; }
  .site-header__icons--plus .site-header__search {
    padding-right: 90px; }

@media only screen and (min-width: 769px) {
  .site-header__cart,
  .site-header__account {
    position: absolute;
    top: 50%;
    right: 0;
    padding: 8px 0;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }

  .site-header__account {
    right: 50px; } }
.site-header__cart-title,
.site-header__search-title {
  display: inline-block;
  vertical-align: middle;
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0; }

.site-header__cart-title {
  margin-right: 3px; }

.site-header__cart-count {
  position: absolute;
  width: 25px;
  height: 25px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  background: #84bd00;
  color: white;
  padding: 2px 2px;
  border-radius: 12px;
  border: 2px solid white;
  z-index: 8999;
  top: 6px;
  left: 25px; }

@media only screen and (max-width: 768px) {
  .site-header__cart-count {
    top: 6px;
    left: 49px; }
    .site-header__cart-count span {
      display: inline-block;
      margin-top: 1px; } }
.site-header__menu {
  display: none; }

.site-header .icon-search,
.site-header .icon-hamburger,
.site-header .icon-close,
.site-header .icon-cart {
  height: 30px; }
  @media only screen and (min-width: 769px) {
    .site-header .icon-search,
    .site-header .icon-hamburger,
    .site-header .icon-close,
    .site-header .icon-cart {
      margin-right: 3px; } }

@media only screen and (max-width: 768px) {
  .site-header__icons {
    padding-right: 22px; }

  .site-header__menu,
  .site-header__search-toggle,
  .site-header__cart,
  .site-header__account {
    display: inline-block;
    vertical-align: middle;
    padding: 18px 8px;
    margin: 0; }
    .site-header__icons--plus .site-header__menu, .site-header__icons--plus
    .site-header__search-toggle, .site-header__icons--plus
    .site-header__cart, .site-header__icons--plus
    .site-header__account {
      padding: 18px 6px; }

  .site-header__logo {
    text-align: left; }
    .site-header__logo img {
      margin: 0; } }
.article--listing {
  padding-top: 25px;
  margin-bottom: 25px; }

.article__title {
  margin-bottom: 11px; }

.article__author {
  margin-right: 10px; }

.article__author,
.article__date {
  display: inline-block;
  margin-bottom: 22px; }
  .template-article .article__author, .template-article
  .article__date {
    margin-bottom: 0; }

.article__tags {
  margin-bottom: 27.5px; }

.article__tags--list {
  font-style: italic; }

/*============================================================================
  Blog article grid
==============================================================================*/
.grid--blog {
  margin-bottom: -55px;
  overflow: auto; }

.article__grid-tag {
  margin-right: 10px; }

.article__grid-meta {
  margin-bottom: 55px; }

@media only screen and (max-width: 768px) {
  .article__grid-meta--has-image {
    float: left;
    padding-left: 22px; } }
.article__grid-excerpt {
  margin-bottom: 17.5px; }

.article__grid-image-wrapper {
  margin: 0 auto;
  width: 100%; }

.article__grid-image-container {
  display: block;
  clear: both;
  position: relative;
  margin: 0 auto 27.5px 0;
  min-height: 1px;
  width: 100%;
  height: 100%; }
  @media only screen and (max-width: 768px) {
    .article__grid-image-container {
      float: left;
      margin: 0 0 55px 0; } }
  .article__grid-image-container img {
    display: block; }

.article__grid-image {
  margin: 0 auto;
  width: 100%; }
  .js .article__grid-image {
    position: absolute;
    top: 0; }

.article__list-image-container {
  display: block;
  clear: both;
  position: relative;
  min-height: 1px;
  width: 100%;
  height: 100%; }

.article__list-image-wrapper {
  width: 100%;
  margin-bottom: 20px; }

.article__list-image-container {
  display: block;
  clear: both;
  position: relative;
  min-height: 1px;
  width: 100%;
  height: 100%; }

.article__list-image-wrapper {
  width: 100%;
  margin-bottom: 20px; }

.article__list-image {
  margin: 0 auto;
  width: 100%;
  position: absolute;
  top: 0; }

.sidebar {
  margin-top: 40px; }

.sidebar__list {
  list-style: none;
  margin-bottom: 55px; }
  .sidebar__list li {
    margin-bottom: 10px; }

.pagination {
  text-align: center;
  list-style: none;
  font-size: 0.9375em;
  padding-top: 55px; }
  .pagination li {
    display: inline-block; }
  .pagination .icon {
    display: block;
    height: 20px;
    vertical-align: middle; }

.pagination__text {
  padding: 0 27.5px; }

.comment {
  margin-bottom: 30px; }
  .comment:last-child {
    margin-bottom: 0; }

.comment__content {
  margin-bottom: 5px; }

.comment__meta-item {
  margin-right: 10px;
  font-size: 0.875em; }
  .comment__meta-item:first-child::before {
    content: '\2014 \0020'; }

.btn--share {
  margin-right: 5px;
  margin-bottom: 10px; }
  .btn--share .icon {
    vertical-align: middle;
    width: 16px;
    height: 16px;
    margin-right: 4px; }
  .btn--share .icon-facebook {
    fill: #3b5998; }
  .btn--share .icon-twitter {
    fill: #00aced; }
  .btn--share .icon-pinterest {
    fill: #cb2027; }

.share-title {
  display: inline-block;
  vertical-align: middle; }

#nav-search-wrap {
  margin-top: -5px; }

.search-bar.drawer.drawer--top {
  z-index: 55555; }

@media screen and (min-width: 981px) {
  .search-bar.drawer {
    display: none; } }
.search-bar__form {
  display: table;
  width: 100%;
  position: relative;
  height: 40px;
  border: 1px solid transparent; }

@media only screen and (max-width: 768px) {
  .search-bar__form {
    width: 100%; } }
.search-bar__submit .icon {
  position: relative;
  top: -1px;
  height: 30px; }

.search-bar__submit,
.search-header__submit {
  display: inline-block;
  vertical-align: middle;
  z-index: 1;
  width: 20px;
  height: 36px;
  padding: 0;
  position: absolute;
  right: 0;
  background: white; }

.search-header__input,
.search-bar__input {
  background-color: transparent;
  color: #3d4246;
  padding-left: 0px;
  width: 100%;
  height: 36px;
  font-family: "proxima-nova", sans-serif;
  font-size: 13px;
  float: left;
  padding-right: 30px;
  border-top: 0;
  border-right: 0;
  border-left: 0; }
  .search-header__input::-webkit-input-placeholder,
  .search-bar__input::-webkit-input-placeholder {
    color: #3d4246;
    opacity: 0.6; }
  .search-header__input::-moz-placeholder,
  .search-bar__input::-moz-placeholder {
    color: #3d4246;
    opacity: 0.6; }
  .search-header__input:-ms-input-placeholder,
  .search-bar__input:-ms-input-placeholder {
    color: #3d4246;
    opacity: 1; }
  .search-header__input::-ms-input-placeholder,
  .search-bar__input::-ms-input-placeholder {
    color: #3d4246;
    opacity: 1; }

.search__submit .icon-search {
  width: 20px;
  height: 20px;
  margin: 0; }

.icon.icon-search {
  float: right;
  margin-bottom: -5px; }

@media screen and (max-width: 980px) {
  .icon.icon-search {
    margin-bottom: -3px; }

  .icon.icon-close {
    margin-bottom: 4px; }

  .search-bar__form input {
    font-size: 16px; } }
.search-header__input {
  padding: 14px 0 6px 0; }

#nav-search-wrap input,
#nav-search-wrap input:focus,
#nav-search-wrap textarea,
#nav-search-wrap textarea:focus,
#nav-search-wrap select,
#nav-search-wrap select:focus {
  border: none; }

@media screen and (min-width: 981px) {
  #nav-search-wrap,
  #nav-search-wrap input,
  #nav-search-wrap input:focus,
  #nav-search-wrap textarea,
  #nav-search-wrap textarea:focus,
  #nav-search-wrap select,
  #nav-search-wrap select:focus {
    width: 100%;
    height: 38px;
    margin-top: -2px;
    border-bottom: 1px solid black; } }
@media screen and (max-width: 980px) {
  .btn--link.site-header__search-toggle.js-drawer-open-top.medium-up--hide {
    margin-top: -4px; } }
/*============================================================================
  The search submit button has pointer-events: none which also
  effects the :hover style. This forces the style to be applied.
==============================================================================*/
.search-header__input:hover + .btn--link {
  opacity: 0.6; }

/*================ Mobile Search Bar ================*/
.search-bar {
  border-bottom: 1px solid #e8e9eb;
  padding: 0 27.5px; }

.search-bar__table {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%; }

.search-bar__table-cell {
  display: table-cell;
  vertical-align: middle; }

.search-bar__form-wrapper {
  width: 90%; }

/*================ Header Search ================*/
.search-header {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 30px;
  vertical-align: middle; }
  .search-header.search--focus {
    max-width: 250px; }

.search-header__input {
  cursor: pointer; }

.search--focus .search-header__input {
  outline: none;
  cursor: auto; }
.search--focus .search-header__submit {
  padding-left: 10px;
  pointer-events: auto; }

.search-header__submit {
  pointer-events: none; }

.search-header,
.search-header__submit {
  transition: all 0.35s cubic-bezier(0.29, 0.63, 0.44, 1); }

.no-svg .site-header__search {
  display: inline-block; }
.no-svg .search-header {
  max-width: none; }
.no-svg .search__input {
  width: auto;
  padding-left: 60px; }

/*================ Mobile Site Nav ================*/
.mobile-nav {
  display: block;
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1); }
  .sub-nav--is-open .mobile-nav {
    -ms-transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  .third-nav--is-open .mobile-nav {
    -ms-transform: translate3d(-200%, 0, 0);
    -webkit-transform: translate3d(-200%, 0, 0);
    transform: translate3d(-200%, 0, 0); }

.mobile-nav__link,
.mobile-nav__sublist-link {
  display: block;
  width: 100%;
  padding: 15px 30px;
  font-size: 16px; }

.mobile-nav__link {
  position: relative; }

.mobile-nav__sublist-link:not(.mobile-nav__sublist-header) {
  padding-left: 70px;
  padding-right: 30px; }

.mobile-nav__item {
  display: block;
  width: 100%; }
  .mobile-nav__item .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 12px;
    width: 10px;
    margin: -6px 0 0 -5px; }

.mobile-nav__return {
  border-right: 1px solid #e8e9eb; }

.mobile-nav__return-btn {
  position: relative;
  padding: 24px 0;
  width: 55px; }

.mobile-nav__icon {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding-left: 22px;
  padding-right: 22px;
  pointer-events: none;
  overflow: hidden; }

.mobile-nav__table {
  display: table;
  width: 100%;
  margin-left: 20px;
  margin-top: 20px; }

.mobile-nav__table-cell {
  display: table-cell;
  vertical-align: middle;
  width: 1%;
  text-align: left;
  white-space: normal; }

.mobile-nav__toggle-button {
  padding: 20px 15px; }

.mobile-nav__dropdown {
  position: absolute;
  background-color: white;
  z-index: 8;
  width: 100%;
  top: 0;
  right: -100%;
  display: none; }
  .is-active + .mobile-nav__dropdown {
    display: block;
    opacity: 1; }
  .mobile-nav__dropdown.is-closing {
    transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
    opacity: 0.99; }
  .mobile-nav__dropdown .mobile-nav__sublist-header {
    font-family: Proxima-Nova, sans-serif;
    font-weight: 400;
    display: table-cell;
    vertical-align: middle;
    padding-left: 15px; }

/*================ Mobile nav wrapper ================*/
.mobile-nav-wrapper {
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  position: absolute;
  top: 26px;
  background-color: white;
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
  display: none;
  overflow: hidden;
  width: 100%; }
  .mobile-nav-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid #e8e9eb; }
  .mobile-nav-wrapper.js-menu--is-open {
    display: block; }

.mobile-nav--open .icon-close {
  display: none; }

.mobile-nav--close .icon-hamburger {
  display: none; }

/*================ Modals ================*/
.modal {
  -ms-transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  background-color: white;
  bottom: 0;
  color: #3d4246;
  display: none;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0; }

.modal--is-active {
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
  display: block;
  opacity: 1;
  overflow: hidden; }

.modal__inner {
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  height: 100%; }

.modal__centered {
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: relative;
  top: 50%; }
  .no-csstransforms .modal__centered {
    top: 20%; }

.modal__close {
  border: 0;
  padding: 55px;
  position: fixed;
  top: 0;
  right: 0; }
  .modal__close .icon {
    font-size: 1.25em; }

/*============================================================================
  Hero slider

  Extends default slick slider styles.
  Extra specificity in selectors is used to override defaults.
==============================================================================*/
.slideshow-wrapper {
  position: relative; }

.slideshow {
  overflow: hidden;
  height: 325px;
  margin-bottom: 0; }
  .slideshow.slideshow--medium {
    height: 500px; }
  .slideshow.slideshow--large {
    height: 575px; }
  @media only screen and (min-width: 769px) {
    .slideshow {
      height: 475px; }
      .slideshow.slideshow--medium {
        height: 650px; }
      .slideshow.slideshow--large {
        height: 775px; } }
  .slideshow .slideshow__slide,
  .slideshow .slick-list,
  .slideshow .slick-track {
    height: 100%; }
  .slideshow .slick-prev,
  .slideshow .slick-next {
    top: 0;
    height: 100%;
    margin-top: 0;
    width: 40px; }
  .slideshow .slick-prev {
    left: 0; }
  .slideshow .slick-next {
    right: 0; }
  .slideshow .slick-dots {
    bottom: 22px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%); }
    .slideshow .slick-dots li button::before {
      color: white; }

.video-is-playing .slick-dots {
  display: none !important; }

.slideshow__pause:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  color: white;
  background-color: #00b8e4;
  padding: 27.5px;
  z-index: 10000;
  transition: none; }
  .video-is-playing .slideshow__pause:focus {
    display: none; }

.slideshow__pause-stop {
  display: block; }
  .is-paused .slideshow__pause-stop {
    display: none; }

.slideshow__pause-play {
  display: none; }
  .is-paused .slideshow__pause-play {
    display: block; }

/*================ General slide styles ================*/
.slideshow__slide {
  position: relative;
  overflow: hidden; }

.slideshow__link {
  width: 100%;
  height: 550px;
  display: table; }
  .slideshow__link:active, .slideshow__link:focus {
    opacity: 1; }

.slideshow__overlay::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #3d4246;
  opacity: 0.25;
  z-index: 3; }

/*================ Slide images ================*/
.slideshow__image {
  transition: opacity 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  z-index: 1; }
  .slick-initialized .slideshow__image, .no-js .slideshow__image {
    opacity: 1; }
  .slideshow__slide--background-video .slideshow__image {
    opacity: 0; }
  .no-autoplay .slideshow__image {
    opacity: 1; }

.ie9 .slideshow__slide {
  z-index: 1 !important; }
.ie9 .slick-dots {
  z-index: 2; }

/*================ Slide text ================*/
.slideshow__text-wrap {
  height: 100%; }
  .slideshow__link .slideshow__text-wrap {
    cursor: inherit; }
  .slideshow__slide--has-background-video .slideshow__text-wrap {
    padding-top: 165px; }
  .video-is-playing .slideshow__text-wrap {
    display: none; }
  .slideshow__slide.video-is-paused .slideshow__text-wrap {
    display: none; }

.slideshow__text-content {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  -ms-transform: translateY(-40%);
  -webkit-transform: translateY(-40%);
  transform: translateY(-40%);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  transition-delay: 0.3s;
  z-index: 3; }
  .slick-active .slideshow__text-content, .no-js .slideshow__text-content {
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1; }
  .slideshow__text-content::after {
    content: '';
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    margin-left: -20px;
    margin-top: -20px;
    border-radius: 50%;
    border: 3px solid white;
    border-top-color: transparent;
    -moz-animation: spin 0.65s infinite linear;
    -o-animation: spin 0.65s infinite linear;
    -webkit-animation: spin 0.65s infinite linear;
    animation: spin 0.65s infinite linear;
    opacity: 1;
    transition: all 1s cubic-bezier(0.29, 0.63, 0.44, 1);
    bottom: -55px;
    left: 50%; }
  .slick-initialized .slideshow__text-content::after, .no-js .slideshow__text-content::after {
    opacity: 0;
    visibility: hidden;
    content: none; }

.slideshow__title {
  color: white; }

.slideshow__subtitle {
  display: block;
  color: white; }

/*================ Video styles ================*/
.slideshow__slide--has-background-video::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2; }

.slideshow__video {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2; }

.slideshow__video--background {
  position: relative;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in; }
  .autoplay .slideshow__video--background.video-is-loaded {
    display: block;
    visibility: visible;
    opacity: 1; }

.slideshow__slide--background-video::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2; }

.slideshow__video--chrome {
  display: none;
  opacity: 0;
  visibility: none;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in; }
  .ie9 .slideshow__video--chrome {
    display: block; }
  .slideshow__slide.video-is-playing .slideshow__video--chrome, .slideshow__slide.video-is-paused .slideshow__video--chrome {
    display: block;
    visibility: visible;
    opacity: 1; }

/*================ Video control buttons ================*/
.slideshow__video-control {
  display: none;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  padding: 5px;
  z-index: 4;
  transition: all 0.1s ease-out; }
  .slideshow__video-control:hover, .slideshow__video-control:focus {
    opacity: 0.7; }

.video-loader {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  margin-left: -20px;
  margin-top: -20px;
  border-radius: 50%;
  border: 3px solid white;
  border-top-color: transparent;
  -moz-animation: spin 0.65s infinite linear;
  -o-animation: spin 0.65s infinite linear;
  -webkit-animation: spin 0.65s infinite linear;
  animation: spin 0.65s infinite linear;
  transition: all 0.1s ease-out 0.5s;
  z-index: 4;
  top: 50%;
  left: 50%; }
  .ie9 .video-loader, .video-is-loaded .video-loader, .video-is-playing .video-loader, .video-is-paused .video-loader, .autoplay .video-loader, .no-autoplay .video-loader {
    content: none;
    display: none; }
  .video-is-loading .video-loader, .autoplay .video-is-loading .video-loader, .no-autoplay .video-is-loading .video-loader {
    display: block;
    visibility: visible;
    opacity: 1; }

.slideshow__video-control--play-wrapper {
  height: 30px; }
  @media only screen and (min-width: 769px) {
    .slideshow__video-control--play-wrapper {
      height: 45px; } }

@media only screen and (min-width: 769px) {
  .slideshow__video-control--play-wrapper--push {
    margin-top: 30px; } }
.slideshow__video-control--play {
  opacity: 0;
  color: white;
  position: relative;
  margin: 0 auto; }
  .slideshow__video-control--play .slideshow__video--background {
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
  .video-is-loaded .slideshow__video-control--play {
    display: block;
    visibility: visible;
    opacity: 1; }
  .video-is-loading .slideshow__video-control--play, .video-is-playing .slideshow__video-control--play, .slideshow__slide.video-is-paused .slideshow__video-control--play {
    display: none;
    visibility: hidden;
    opacity: 0; }
  .slideshow__video-control--play .icon {
    width: 42px;
    height: 100%; }
    @media only screen and (min-width: 769px) {
      .slideshow__video-control--play .icon {
        width: 65px; } }

.slideshow__video-control--close {
  top: 10px;
  right: 10px;
  background-color: white;
  color: black; }
  .video-is-playing .slideshow__video-control--close, .slideshow__slide.video-is-paused .slideshow__video-control--close {
    display: block;
    visibility: visible;
    opacity: 1; }
  .slideshow__video-control--close .icon {
    display: block;
    width: 20px;
    height: 20px; }

.product-price__price {
  font-weight: 400; }

.product-price__sale,
.product__price--sale {
  color: black;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700; }

#ComparePrice-product-template {
  color: #6d6d6d;
  text-decoration: line-through;
  margin-right: 5px;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px; }

.product-price__sale-label {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.9375em; }

.product-price__sold-out {
  font-weight: 400;
  white-space: nowrap; }

/*================ Module | Filters and Sort toolbar and selection ================*/
.filters-toolbar-wrapper {
  border-bottom: 1px solid transparent;
  padding-top: 22px;
  margin-top: 22px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  max-width: 1160px;
  margin: 0 auto; }
  @media (max-width: 968px) {
    .filters-toolbar-wrapper {
      border-bottom: 1px solid #e8e9eb; } }
  @media only screen and (min-width: 769px) {
    .filters-toolbar-wrapper {
      margin-bottom: 55px; } }

.filters-toolbar {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center; }

.no-flexbox .filters-toolbar__item {
  text-align: left !important; }

.filters-toolbar__item.filter-by {
  width: 91px; }

.filters-toolbar__item--count {
  width: calc(100% - 177px);
  -webkit-flex: 0 1 auto;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  text-align: center;
  line-height: 16px;
  padding: 10px;
  font-size: smaller; }

.no-flexbox .filters-toolbar select {
  width: 100% !important; }

.filters-toolbar__input {
  -ms-transition: all ease-out 0.15s;
  -webkit-transition: all ease-out 0.15s;
  transition: all ease-out 0.15s;
  background-color: white;
  border: 1px solid #d5d5d5;
  font-family: "proxima-nova", sans-serif;
  color: #222 !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  opacity: 1;
  float: right;
  font-size: 14px;
  line-height: 28px;
  padding: 5px 30px 4px 5px; }

.filters-toolbar__input--sort,
.filters-toolbar__input--filter {
  border: 1px solid #222;
  margin: 0;
  padding: 4px 26px 4px 10px; }

.filters-toolbar__input--sort {
  margin-right: 0; }
  .no-flexbox .filters-toolbar__input--sort {
    margin: 0; }

.filters-toolbar__input--filter {
  margin-left: 0; }
  .no-flexbox .filters-toolbar__input--filter {
    margin: 0; }

.filters-toolbar__product-count {
  font-size: 0.9375em;
  font-style: italic;
  line-height: 55px;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
  @media only screen and (max-width: 768px) {
    .filters-toolbar__product-count {
      font-size: 0.875em;
      line-height: 46px; } }

@media only screen and (min-width: 769px) {
  .site-footer__linklist--center {
    margin-top: 35px;
    padding-right: 0; } }
.site-footer__linklist,
.site-footer__newsletter {
  margin-top: 35px; }
  @media only screen and (min-width: 769px) {
    .site-footer__linklist,
    .site-footer__newsletter {
      margin-top: 55px; } }

.site-footer__linklist-item {
  display: inline-block;
  padding: 5px 10px; }
  @media only screen and (min-width: 769px) {
    .site-footer__linklist-item {
      display: block;
      padding: 0 20px 6px 0; }
      .site-footer__linklist--center .site-footer__linklist-item {
        display: inline-block;
        padding: 3px 10px; } }

.site-footer__newsletter {
  margin: 35px auto 0;
  max-width: 320px; }
  @media only screen and (min-width: 769px) {
    .site-footer__newsletter {
      margin: 55px 0 0;
      max-width: none; } }

.site-footer__social-icons,
.site-footer__copyright {
  margin-top: 35px; }
  @media only screen and (min-width: 769px) {
    .site-footer__social-icons,
    .site-footer__copyright {
      margin-top: 55px; } }

.social-icons__link {
  display: block;
  padding: 0 3px; }
  .social-icons__link:first-child {
    margin-left: 0; }

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

.site-footer__copyright-content {
  font-size: 0.8125em;
  padding-right: 20px; }
  .site-footer__copyright--right .site-footer__copyright-content {
    padding: 0 0 0 20px; }
    .site-footer__copyright--right .site-footer__copyright-content:first-child {
      padding-left: 0; }
    @media only screen and (min-width: 769px) {
      .site-footer__copyright--right .site-footer__copyright-content {
        padding: 0 0 0 30px; } }

.site-footer__copyright-content--powered-by {
  padding-right: 0; }

.site-footer__payment-icons {
  margin-top: 22px; }
  @media only screen and (min-width: 769px) {
    .site-footer__payment-icons {
      margin-top: 22px; }
      .site-footer__copyright--right .site-footer__payment-icons {
        padding-left: 30px; } }
  .site-footer__payment-icons .payment-icon {
    margin-right: 5px; }
    .site-footer__payment-icons .payment-icon:last-child {
      margin-right: 0; }

.site-footer__copyright--bottom {
  margin-top: 35px; }

@media only screen and (min-width: 769px) {
  .site-footer__payment-icons--right {
    float: right;
    margin-top: 0; } }
.feature-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center; }
  @media only screen and (max-width: 768px) {
    .feature-row {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      display: block; } }

.feature-row__item {
  -webkit-flex: 0 1 50%;
  -moz-flex: 0 1 50%;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%; }
  @media only screen and (max-width: 768px) {
    .feature-row__item {
      -webkit-flex: 1 1 auto;
      -moz-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto;
      max-width: 100%; } }

.feature-row__image-wrapper {
  margin: 0 auto 19.44444px;
  position: relative;
  width: 100%; }

.feature-row__image {
  display: block;
  margin: 0 auto; }
  .feature-row__image-wrapper .feature-row__image {
    width: 100%;
    position: absolute;
    top: 0; }
  @media only screen and (max-width: 768px) {
    .feature-row__image {
      order: 1; } }

.feature-row__text {
  padding-top: 35px;
  padding-bottom: 35px; }
  @media only screen and (max-width: 768px) {
    .feature-row__text {
      order: 2;
      padding-bottom: 0; } }

@media only screen and (min-width: 769px) {
  .feature-row__text--left {
    padding-left: 35px; }

  .feature-row__text--right {
    padding-right: 35px; } }
@media only screen and (min-width: 769px) {
  .featured-row__subtext {
    font-size: 1.125em; } }
.hero {
  position: relative;
  height: 475px;
  display: table;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%; }

.hero--x-small {
  height: 94px; }

.hero--small {
  height: 225px; }

.hero--medium {
  height: 357px; }

.hero--large {
  height: 488px; }

.hero--x-large {
  height: 582px; }

@media only screen and (min-width: 769px) {
  .hero--x-small {
    height: 125px; }

  .hero--small {
    height: 300px; }

  .hero--medium {
    height: 475px; }

  .hero--large {
    height: 650px; }

  .hero--x-large {
    height: 775px; } }
.hero__overlay::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #3d4246;
  opacity: 0.25;
  z-index: 1; }

.hero__inner {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  padding: 55px 0;
  color: white;
  z-index: 2; }

.hero__btn {
  background-color: white;
  color: black;
  margin-top: 27.5px; }

/*================ Quote slider ================*/
.quote-icon {
  display: block;
  margin: 0 auto 20px; }

.quotes-slider__text {
  font-size: 1.10938em;
  font-weight: 400;
  font-style: normal;
  padding: 0 15px; }
  .quotes-slider__text cite {
    font-size: 0.8em;
    font-style: normal; }
  .quotes-slider__text p {
    margin-bottom: 30px; }
    .quotes-slider__text p + cite {
      margin-top: 0; }

.slick-dotted.quotes-slider.slick-initialized {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab; }

.quotes-wrapper .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 55px; }
  .quotes-wrapper .slick-dots li button::before {
    color: #3d4246;
    opacity: 0.2; }

.quotes-wrapper .slick-slide[tabindex="0"] {
  outline: none; }

.logo-bar {
  text-align: center;
  margin-bottom: -35px; }

@media only screen and (min-width: 769px) {
  .logo-bar--large {
    margin-bottom: -55px; } }
.logo-bar__item {
  display: inline-block;
  vertical-align: middle;
  max-width: 160px;
  margin: 0 27.5px 35px; }

@media only screen and (min-width: 769px) {
  .logo-bar__item--large {
    margin-bottom: 55px; } }
.logo-bar__image {
  display: block;
  margin: 0 auto; }

.logo-bar__link {
  display: block; }

.map-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }
  @media only screen and (min-width: 769px) {
    .map-section {
      min-height: 500px; } }

.map-section--load-error {
  height: auto; }

.map-section__wrapper {
  height: 100%;
  flex-shrink: 0;
  flex-grow: 1;
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.map-section__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 2; }

.map-section__error {
  position: relative;
  z-index: 3; }
  @media only screen and (min-width: 769px) {
    .map-section__error {
      position: absolute;
      margin: 0 2rem;
      top: 50%;
      -ms-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); } }

.map-section__content-wrapper {
  position: relative;
  text-align: center;
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%;
  flex-grow: 0; }
  @media only screen and (min-width: 769px) and (max-width: 989px) {
    .map-section__content-wrapper {
      -ms-flex-preferred-size: 50%;
      -webkit-flex-basis: 50%;
      -moz-flex-basis: 50%;
      flex-basis: 50%; } }
  @media only screen and (min-width: 990px) {
    .map-section__content-wrapper {
      -ms-flex-preferred-size: 33%;
      -webkit-flex-basis: 33%;
      -moz-flex-basis: 33%;
      flex-basis: 33%; } }

.map-section__content {
  position: relative;
  display: inline-block;
  background-color: rgba(120, 129, 136, 0.05);
  padding: 35px;
  width: 100%;
  text-align: center;
  z-index: 3;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: center;
  -ms-align-content: center;
  align-content: center; }
  .map-section__content > * {
    width: 100%; }
  @media only screen and (min-width: 769px) {
    .map-section__content {
      background-color: white;
      margin: 55px 0;
      min-height: 300px; }
      .ie9 .map-section__content {
        top: 10%; } }
  .map-section--load-error .map-section__content {
    position: static;
    transform: translateY(0); }

.map-section__link {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  max-width: none;
  width: 100%;
  height: 100%;
  z-index: 2;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); }

.map-section__container {
  max-width: none;
  width: 100%;
  height: 55vh;
  left: 0; }
  @media only screen and (min-width: 769px) {
    .map-section__container {
      position: absolute;
      height: 100%;
      top: 0;
      width: 130%; } }

.map_section__directions-btn [class^="icon"] {
  height: 1em; }
.map_section__directions-btn * {
  vertical-align: middle; }

.map-section__background-wrapper {
  overflow: hidden;
  position: relative;
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%; }
  @media only screen and (min-width: 769px) {
    .map-section__background-wrapper {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%; } }
  .ie9 .map-section__background-wrapper {
    width: 100%;
    height: 500px; }
  .map-section--onboarding .map-section__background-wrapper {
    min-height: 55vh; }

.map-section__image {
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background-size: cover;
  background-position: center; }
  @media only screen and (min-width: 769px) {
    .map-section__image {
      position: absolute; } }
  .map-section--display-map .map-section__image {
    display: none !important; }
  .map-section--load-error .map-section__image {
    display: block !important; }

.gm-style-cc,
.gm-style-cc + div {
  visibility: hidden; }

.image-bar {
  overflow: hidden; }
  @media only screen and (max-width: 768px) {
    .image-bar {
      max-width: 400px;
      margin: 0 auto; } }

.image-bar__item {
  display: block;
  color: white;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover; }

.image-bar__link:focus .image-bar__content {
  border-color: #3d4246; }

.image-bar__content, .image-bar__item {
  position: relative;
  width: 100%; }
  .image-bar--x-small .image-bar__content, .image-bar--x-small .image-bar__item {
    height: 94px; }
  .image-bar--small .image-bar__content, .image-bar--small .image-bar__item {
    height: 225px; }
  .image-bar--medium .image-bar__content, .image-bar--medium .image-bar__item {
    height: 357px; }
  .image-bar--large .image-bar__content, .image-bar--large .image-bar__item {
    height: 488px; }
  .image-bar--x-large .image-bar__content, .image-bar--x-large .image-bar__item {
    height: 582px; }
  @media only screen and (min-width: 769px) {
    .image-bar--x-small .image-bar__content, .image-bar--x-small .image-bar__item {
      height: 125px; }
    .image-bar--small .image-bar__content, .image-bar--small .image-bar__item {
      height: 300px; }
    .image-bar--medium .image-bar__content, .image-bar--medium .image-bar__item {
      height: 475px; }
    .image-bar--large .image-bar__content, .image-bar--large .image-bar__item {
      height: 650px; }
    .image-bar--x-large .image-bar__content, .image-bar--x-large .image-bar__item {
      height: 775px; } }

.image-bar__overlay::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #3d4246;
  opacity: 0.25; }

.image-bar__caption {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: 0.1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  width: 100%;
  text-align: center; }

.collection-grid {
  margin-bottom: -22px;
  overflow: auto; }

.collection-grid-item {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  margin-bottom: 22px; }
  @media only screen and (min-width: 769px) {
    .collection-grid-item {
      margin-bottom: 30px; } }

.collection-grid-item__title {
  color: white;
  position: absolute;
  text-align: center;
  width: 100%;
  top: 50%;
  padding: 0 5px;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: 0.1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.1); }
  @media only screen and (min-width: 769px) {
    .collection-grid-item__title {
      padding: 0 15px; } }

.collection-grid-item__link {
  border: 2px solid transparent;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0; }
  .collection-grid-item__link:focus {
    border-color: #3d4246; }

.collection-grid-item__overlay {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top; }

.collection-grid-item__title-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #3d4246;
  opacity: 0.25; }

.custom-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: auto;
  margin-bottom: -30px; }

.custom__item {
  -webkit-flex: 0 0 auto;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-bottom: 30px;
  padding-left: 30px;
  max-width: 100%; }
  @media only screen and (max-width: 768px) {
    .custom__item {
      -webkit-flex: 0 0 auto;
      -moz-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      padding-left: 22px;
      margin-bottom: 22px; }
      .custom__item.small--one-half {
        -webkit-flex: 1 0 50%;
        -moz-flex: 1 0 50%;
        -ms-flex: 1 0 50%;
        flex: 1 0 50%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto; } }
  .custom__item .collection-grid-item {
    margin-bottom: 0; }

.custom__item--image {
  margin: 0 auto;
  padding-left: 0; }

.custom__item-inner {
  position: relative;
  display: block;
  text-align: left;
  max-width: 100%; }

.custom__item-inner--video,
.custom__item-inner--collection,
.custom__item-inner--html {
  display: block; }

.custom__item-inner--image {
  position: relative;
  margin: 0 auto; }

.custom__image {
  width: 100%;
  display: block;
  position: absolute;
  top: 0; }

/*================ Flex item alignment ================*/
.align--top-middle {
  text-align: center; }

.align--top-right {
  text-align: right; }

.align--middle-left {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center; }

.align--center {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  text-align: center; }

.align--middle-right {
  -ms-flex-item-align: center;
  -webkit-align-self: center;
  align-self: center;
  text-align: right; }

.align--bottom-left {
  -ms-flex-item-align: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end; }

.align--bottom-middle {
  -ms-flex-item-align: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  text-align: center; }

.align--bottom-right {
  -ms-flex-item-align: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  text-align: right; }

.newsletter-section {
  padding-top: 55px; }

.index-section--newsletter-background {
  background-color: rgba(120, 129, 136, 0.05); }

.rich-text__heading--large {
  font-size: 1.4em; }

.rich-text__heading--small {
  font-size: 0.88em; }

.rich-text__text--large {
  font-size: 1.125em; }

.rich-text__text--small {
  font-size: 0.875em; }

#pdp-image-gallery {
  width: 50%;
  float: left;
  padding: 0 32px 0 0;
  box-sizing: border-box;
  margin-bottom: 64px; }
  @media (max-width: 990px) {
    #pdp-image-gallery {
      margin-top: 20px; } }

.pdp-image-single {
  position: relative;
  width: 100%; }

.pdp-image-single-outer-push {
  padding-top: 100%; }

.pdp-image-single-inner-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font: 0/0 a; }

.pdp-image-single-inner-wrap .pdp-image-single-inner-push {
  display: inline-block;
  vertical-align: middle;
  height: 100%; }

.pdp-image-single-inner-wrap img {
  vertical-align: middle;
  display: inline-block;
  max-height: 100%;
  max-width: 100%; }

#pdp-thumbnails-wrapper {
  text-align: center;
  margin-top: 32px; }

.pdp-thumbnail-single {
  display: inline-block;
  margin: 0 4px 8px 4px; }

.pdp-thumbnail-single img {
  color: transparent; }

.pdp-thumbnail-single .active-thumb {
  border: 1px solid #cecece; }

.pdp-thumbnail-single-wrap-outer {
  display: table;
  width: 60px;
  height: 60px; }

.pdp-thumbnail-single-wrap-inner {
  display: table-cell;
  vertical-align: middle; }

.pdp-thumbnail-single-wrap-inner a {
  margin: 0;
  width: 60px;
  height: 60px;
  display: table-cell;
  vertical-align: middle; }

#pdp-essentials {
  width: 50%;
  float: left;
  background: #f1f1f1;
  padding: 32px;
  box-sizing: border-box;
  margin-bottom: 64px; }

#pdp-title h1 {
  color: black;
  font-family: "proxima-nova", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 28px;
  margin-top: 0;
  margin-bottom: 0; }

#pdp-tagline {
  font-family: "proxima-nova", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #3a3a3a;
  margin-bottom: 12px; }

.pdp-clear-wrap {
  width: 100%;
  float: left; }

#pdp-product-sku {
  margin-bottom: 12px;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  color: black; }

#pdp-product-sku-label {
  font-weight: 800;
  float: left;
  margin-right: 8px; }

#pdp-product-sku-value {
  font-weight: 300;
  float: left;
  color: #3a3a3a; }

.pdp-feature-divider {
  border-top: 1px solid #cecece;
  padding-top: 20px;
  margin-top: 20px; }

#pdp-short-description {
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: black; }

#prod-desc,
#pdp-short-description p {
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: black; }

#pdp-features {
  width: 100%;
  float: left; }

#pdp-features-heading {
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  color: black;
  float: left;
  font-weight: 800;
  width: 100%;
  margin-bottom: 4px; }

#pdp-feature-list {
  float: left;
  margin-bottom: -8px; }

#pdp-feature-list ul {
  padding: 0;
  margin: 0 0 5px 0; }

#pdp-feature-list li {
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  list-style: disc outside;
  margin: 0 0 8px 12px;
  color: black;
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

#pdp-feature-list li:nth-child(n+4) {
  display: none; }

#pdp-feature-list.open li:nth-child(n+4) {
  display: list-item;
  animation-name: fade-in;
  animation-duration: 1s; }

@keyframes fade-in {
  0% {
    opacity: 0; }

  100% {
    opacity: 1; } }

#pdp-feature-more,
#pdp-feature-less {
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #00b5e2;
  cursor: pointer;
  margin-top: -2px;
  margin-bottom: 8px;
  display: block; }

#pdp-feature-more:hover,
#pdp-feature-less:hover {
  color: #0084bf; }

#pdp-feature-more,
#pdp-feature-less {
  display: none; }

#pdp-prices {
  min-width: 140px;
  max-width: 150px; }

#prices span {
  color: black;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700; }

.product-price__price {
  color: black;
  font-family: "proxima-nova", sans-serif;
  font-size: 26px;
  font-weight: 700; }

.product-single__price {
  float: left;
  width: 100% !important;
  margin-bottom: 0;
  padding-bottom: 0; }

#pdp-price-difference {
  width: 100%;
  font-family: "proxima-nova", sans-serif;
  color: #ba0c2f;
  font-size: 14px;
  font-weight: 400;
  float: left;
  margin: -5px 0 0 0; }

#variant_title {
  font-size: 20px !important; }

#pdp-low-stock-notification,
#pdp-before-buy-button,
#pdp-tag-specific-message {
  width: 100%;
  margin-top: 18px;
  margin-bottom: 18px; }

#pdp-low-stock-notification,
#pdp-low-stock-notification p,
#pdp-tag-specific-message,
#pdp-tag-specific-message p {
  font-size: 14px;
  font-family: "proxima-nova", sans-serif;
  font-weight: 700;
  color: #ba0c2f; }

#pdp-before-buy-button,
#pdp-before-buy-button p {
  font-size: 16px;
  font-family: "proxima-nova", sans-serif;
  font-weight: 700;
  color: black; }

#pdp-after-buy-button {
  width: 100%;
  float: left;
  margin: 14px 0 0 0; }

#pdp-free-shipping {
  float: left;
  width: auto;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0;
  color: #3a3a3a; }

#pdp-free-shipping strong {
  color: black; }

#pdp-share-icons {
  float: right;
  width: auto;
  margin-top: 1px; }

#pdp-share-icons a {
  margin-left: 15px; }

#pdp-share-icons img {
  max-width: 20px;
  max-height: 20px; }

@media screen and (max-width: 1150px) {
  #pdp-free-shipping,
  #pdp-share-icons {
    width: 100%;
    text-align: center; }

  #pdp-share-icons {
    /* margin-top: 16px; */ } }
#pdp-after-buy-button-promo {
  width: 100%;
  float: left;
  background: #f1f1f1;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  border: 2px dashed #cecece; }

#pdp-after-cart-promo .product-label.mothers-day {
  font-size: 14px;
  color: #3a3a3a;
  font-weight: 700;
  line-height: 17px;
  padding-top: 0; }

#pdp-long-description {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  box-sizing: border-box;
  float: left; }

#pdp-long-description p {
  color: #3a3a3a;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  text-align: center; }

#pdp-long-description a {
  color: #00b5e2;
  font-weight: 700; }

.pdp-content-heading {
  font-family: "proxima-nova", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: black;
  margin-bottom: 8px; }

.pdp-content-heading-wide {
  font-family: "proxima-nova", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: black;
  line-height: 28px;
  text-align: center; }

.pdp-content-heading-wide span {
  background: white;
  padding: 0 20px;
  text-align: center; }

.pdp-content-heading-wide + * {
  border-top: solid 1px #cecece;
  padding-top: 28px;
  margin-top: -14px; }

#collection.page-width {
  margin-bottom: 30px; }

.pdp-premium-content-new {
  padding-top: 30px;
  margin-bottom: 40px; }

.pdp-premium-content {
  color: #3a3a3a;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  max-width: 1160px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: table;
  table-layout: fixed;
  vertical-align: middle; }

.pdp-premium-content img {
  max-width: 100%; }

.pdp-premium-content-image {
  width: 50%;
  display: table-cell;
  vertical-align: middle; }

.pdp-premium-content-text {
  color: #3a3a3a;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  width: 50%;
  height: 100%;
  display: table-cell;
  vertical-align: middle; }

.pdp-premium-content-text ol li {
  list-style: none;
  list-style-type: upper-alpha;
  margin-left: 20px;
  text-align: left; }

.pdp-premium-content-text ul li {
  list-style-type: disc;
  margin: 15px 0 15px 15px; }

.pdp-premium-content h3 {
  font-family: "proxima-nova", sans-serif;
  font-size: 26px;
  line-height: 28px;
  font-weight: 700;
  margin: 0 0 2px 0;
  color: black;
  text-align: left; }

.pdp-premium-content-text p {
  color: #3a3a3a;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  margin-bottom: 3px; }

.pdp-premium-padding-left {
  padding-left: 32px; }

.pdp-premium-padding-right {
  padding-right: 32px; }

.pdp-premium-content-image.odd {
  padding-left: 32px; }

.pdp-premium-content-text.odd {
  padding-right: 32px; }

#pdp-specifications {
  width: 100%;
  float: left; }

#pdp-specifications-list {
  width: 100%;
  float: left; }

#pdp-specs-ul {
  margin: 22px 0 32px 0;
  width: 100%;
  float: left; }

.pdp-spec-li {
  width: 100%;
  float: left;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  margin-bottom: 6px; }

.pdp-spec-li label {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0; }

.pdp-spec-label {
  width: 50%;
  float: left;
  text-align: right;
  padding-right: 12px;
  font-weight: 700;
  color: black; }

.pdp-spec-value {
  width: 50%;
  max-width: 320px;
  float: left;
  padding-left: 12px;
  color: #3a3a3a;
  font-weight: 300; }

.isp_related_title {
  display: none !important; }

.isp_related_product_name {
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  color: black; }

.isp_related_product_name a {
  color: black !important; }

.isp_related_product_price {
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #3a3a3a;
  direction: rtl; }

.main-content .product-single .isp_product_price.money:not(:last-child) {
  color: #ba0c2f;
  font-weight: 600; }

#cross-sell {
  margin-bottom: 15px; }

#cross-sell .collection-header,
#cross-sell .collection-header .section-header,
#cross-sell .collection-header .page-width {
  margin: 0; }

#cross-sell .collection-header .section-header h1 {
  font-family: "proxima-nova", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: black;
  line-height: 28px;
  text-align: center;
  background: white;
  padding: 0 20px;
  text-align: center;
  display: inline; }

#cross-sell .collection-header + * {
  border-top: solid 1px #cecece;
  padding-top: 28px;
  margin-top: -14px; }

#cross-sell .grid-view-item__title {
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  color: black; }

#cross-sell .medium-up--one-quarter {
  width: 208px;
  margin: 4px; }

#cross-sell .grid-view-item {
  text-align: center;
  margin: 0 auto; }

#cross-sell .grid-view-item__image-wrapper {
  margin: 0;
  width: 160px; }

#cross-sell .grid-view-item__meta {
  text-align: center;
  margin: 0; }

#cross-sell .product-price__price {
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #3a3a3a; }

.cross-sell {
  text-align: center;
  margin-bottom: 40px; }

.cross-sell .grid-view-item__image-wrapper {
  width: auto !important;
  max-width: 142px;
  max-height: 142px; }

@media all and (max-width: 768px) {
  #cross-sell .grid__item {
    padding-left: 0; } }
.breadcrumb {
  font-family: "proxima-nova", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #3a3a3a;
  max-width: 1160px;
  margin: 27px auto 27px auto; }
  @media (max-width: 1200px) {
    .breadcrumb {
      margin-left: 20px;
      margin-right: 20px; } }

.breadcrumb a {
  color: #3a3a3a;
  font-weight: 600; }

.breadcrumb span {
  margin: 0; }

.breadcrumb .spacer {
  margin: 0 8px; }

.article__list-image-wrapper {
  max-width: 900px;
  max-height: 600px;
  width: 275px;
  float: left;
  margin-right: 20px; }

#category-banner-text-wrap-wrap {
  width: 100%;
  max-width: 1200px;
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2; }

#category-banner-text-wrap {
  display: table;
  width: 100%;
  height: 160px; }

#category-banner-text {
  width: 100%;
  height: 160px;
  display: table-cell;
  vertical-align: middle; }

#category-banner-title,
#category-banner-description {
  width: 45%;
  max-width: 480px;
  color: white; }

#category-banner-title h1 {
  color: white;
  max-width: 480px;
  margin: 0 auto;
  margin-bottom: 0px;
  font-family: "proxima-nova", sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 30px;
  margin-bottom: 10px;
  text-transform: uppercase; }

#category-banner-description p,
#category-banner-description span {
  color: white;
  width: 100%;
  margin: 20px auto 0;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px; }

.plp-product-title-sku-wrap {
  width: 100%;
  height: 130px;
  display: inline-block; }

.plp-product-title {
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  color: black;
  margin-top: 20px;
  text-overflow: ellipsis;
  overflow: hidden; }

.plp-product-sku {
  width: 100%;
  font-family: "proxima-nova", sans-serif;
  font-size: 13px;
  font-weight: 300;
  text-align: center;
  color: black;
  margin: 0 auto; }

.plp-product-price {
  text-align: center;
  font-family: "proxima-nova", sans-serif;
  margin-top: 12px; }

.plp-product-price .product-price__price {
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 600; }

.plp-product-price .product-price__sale,
.plp-product-price .product-price__sold-out {
  color: #ba0c2f;
  font-weight: 600; }

.product-price__sale-label {
  display: none; }

#new-tags {
  width: 100%;
  float: left; }

.product-label.new {
  color: #fe9700 !important;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  margin-top: -25px;
  font-weight: 600;
  text-transform: uppercase; }

.product-label.mothers-day {
  color: #fe9700;
  font-weight: 600;
  display: table-cell;
  vertical-align: middle;
  font-size: 12px;
  line-height: normal;
  padding-top: 10px;
  text-align: center; }

#pdp-back-in-stock {
  display: table;
  width: 100%;
  padding: 0 0 15px;
  float: left;
  margin-bottom: 15px;
  height: 100%;
  border-bottom: 1px solid #cecece; }

#pdp-back-in-stock-wrapper {
  display: table;
  width: 100%; }

#pdp-back-in-stock-text {
  font-family: "proxima-nova", sans-serif;
  font-size: 13px;
  color: black;
  float: left;
  width: auto;
  text-align: left;
  padding-bottom: 0;
  display: table-cell;
  vertical-align: middle; }

#pdp-back-in-stock-text strong {
  font-size: 14px;
  color: #fe9700;
  font-weight: 700; }

#pdp-back-in-stock-button {
  display: table-cell;
  vertical-align: middle;
  text-align: right; }

#pdp-back-in-stock-button a {
  width: auto !important;
  height: 30px;
  line-height: 30px;
  background: #00b5e2;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: white;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  padding: 0 20px;
  border: 5px !important;
  -moz-border-radius: 5px !important;
  -webkit-border-radius: 5px !important;
  border-radius: 5px !important;
  -khtml-border-radius: 5px !important; }

.site-header {
  height: 60px; }

.site-nav {
  height: 60px;
  width: 100%;
  margin: 0 0 0 25px;
  line-height: 60px; }

.site-nav a {
  padding-top: 0;
  padding-bottom: 0;
  font-family: "proxima-nova", sans-serif;
  font-size: 15px; }

.nav-wrap .nav-links {
  padding-left: 10px; }

.list--inline > li {
  vertical-align: baseline; }

.site-nav__link--main {
  float: left !important;
  padding: 0 .8em;
  font-family: "proxima-nova", sans-serif;
  font-weight: normal;
  line-height: normal;
  color: black;
  letter-spacing: 0;
  font-weight: 700;
  letter-spacing: -.5px;
  height: 60px;
  line-height: 60px; }

.site-nav__link--main:hover {
  color: black;
  border-bottom: 3px solid #0082bf;
  opacity: 1; }

.icon-chevron-down {
  display: none; }

.site-nav__childlist {
  width: 100% !important;
  color: black;
  border: 0;
  padding: 20px;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  position: absolute !important; }

.site-nav__childlist-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; }

.site-nav__child-link--parent {
  color: white !important;
  pointer-events: none;
  cursor: default; }

.site-nav__childlist-item a {
  display: block;
  padding: 3px 0;
  color: #999;
  text-decoration: none;
  font-size: 13px;
  font-family: "proxima-nova", sans-serif;
  line-height: 17px;
  letter-spacing: .5px;
  max-width: 200px; }

.nav-dropdown-heading {
  color: #fff;
  font-weight: 600;
  margin-top: 32px; }

a.nav-dropdown-heading:hover {
  cursor: pointer;
  color: #fff;
  opacity: 1; }

@media only screen and (min-width: 981px) {
  .site-header {
    padding: 0; }

  .nav-wrap {
    max-width: 1200px;
    height: 60px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box; }

  .nav-logo {
    max-width: 137px; }

  .nav-links {
    width: 100%; }

  .nav-icons {
    width: 200px; }

  .site-header__icons-wrapper {
    margin-right: 0px; } }
@media screen and (max-width: 1000px) and (min-width: 981px) {
  .nav-links a {
    font-size: 1.4vw;
    padding-left: 1.6vw;
    padding-right: 1.6vw; }

  .nav-logo {
    width: 12vw; }

  .nav-logo img {
    width: 12vw !important;
    display: block;
    vertical-align: middle;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    padding: 0 !important;
    margin-right: 15px; } }
/* .sticky-header {
  .nav-logo {
    img {
      @media screen and (max-width:1000px) {
      	margin: 18px 0px !important;
	    width: 140px !important;   
      }
    }
  }
} */
.site-header__logo-image {
  z-index: 1;
  display: table-cell;
  vertical-align: middle;
  height: 60px; }

@media screen and (min-width: 980px) {
  .nav-wrap .medium-up--one-sixth,
  .nav-wrap .medium-up--one-sixth img,
  .nav-logo,
  .nav-logo img {
    width: 137px; } }
.webyzeTooltip {
  display: none !important; }

#pdp-colors div::before {
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: black;
  margin-left: -5px !important; }

.swatchProductColor.currentSwatch {
  border-left: 0 !important;
  border-right: 0 !important;
  border-top: 0 !important;
  border-bottom: 2px solid black !important;
  padding-bottom: 5px !important;
  margin: 7px 12px 14px -3px !important;
  background: white !important; }

.swatchProductColor {
  border-radius: 0 !important;
  border: 0 !important;
  box-shadow: 0 0 0 0 !important;
  -moz-box-shadow: 0 0 0 0 !important;
  -webkit-box-shadow: 0 0 0 0 !important;
  margin: 0 12px 14px -3px !important; }

div[id^='webyze-product-colors'], div[class*='webyze-product-colors'] {
  margin-bottom: -3px; }

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

input[type=number] {
  -moz-appearance: textfield; }

#pdp-quantity-wrap {
  width: 100%;
  float: left;
  position: relative;
  margin-top: 18px; }

#pdp-quantity-wrap label {
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  color: black;
  font-weight: 800;
  width: 100%;
  margin-bottom: 2px; }

.quantity-wrap {
  width: 90px;
  margin: 0; }

.quantity-wrap input {
  width: calc(100% - 20px);
  height: 44px;
  float: left;
  display: block;
  padding: 0 18px 0 0;
  margin: 0 10px 0 0;
  background: white;
  color: black;
  font-size: 18px;
  text-align: center;
  border: 0; }

.quantity-wrap input:focus {
  outline: 0; }

.quantity-nav {
  float: left;
  position: relative;
  height: 44px;
  margin-right: 10px;
  background: white; }

.quantity-button {
  position: relative;
  cursor: pointer;
  border-left: 1px solid #eee;
  width: 30px;
  background: white;
  text-align: center;
  color: black;
  font-size: 20px;
  font-family: "Trebuchet MS", Helvetica, sans-serif !important;
  line-height: 20px;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none; }

.quantity-button.quantity-up {
  position: absolute;
  height: 50%;
  top: 0;
  border-bottom: 1px solid #eee; }

.quantity-button.quantity-down {
  position: absolute;
  bottom: 0;
  height: 50%; }

#AddToCart-product-template {
  width: calc(100% - 90px); }

#pdp-disclaimer-wrap {
  width: 100%; }

#pdp-disclaimer {
  max-width: 1200px;
  text-align: left;
  margin: 40px auto 50px auto;
  padding: 0 20px;
  box-sizing: border-box; }

#pdp-disclaimer,
#pdp-disclaimer p {
  font-family: "proxima-nova",sans-serif !important;
  font-size: 16px  !important;
  font-weight: 100  !important;
  line-height: 1  !important;
  margin-bottom: 30px  !important;
  color: #3a3a3a  !important; }

.template-product #pdp-disclaimer {
  padding: 0; }

#shopify-section-collection-template #pdp-disclaimer {
  margin-top: 0; }

@media all and (max-width: 768px) {
  #category-banner-text-wrap {
    text-align: center; }

  #category-banner-title,
  #category-banner-description {
    margin: 0 auto; }

  .pdp-download-wrap {
    margin: 0; }

  .pdp-download-text {
    line-height: 22px;
    padding: 10px 0; }

  .pdp-download-text,
  .pdp-download-button {
    width: 100%; }

  .pdp-download-button {
    width: 122px;
    height: 30px;
    float: none;
    margin: 0 auto 12px auto; }

  .pdp-download-button button {
    float: none; } }
#header-wrap {
  float: left;
  width: 100%; }

.section-header.text-left {
  margin-bottom: 0; }

.section-header.text-left h1 {
  font-family: "proxima-nova", sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: black; }

.grid__item.grid__item--collection-template-bc-original.small--one-half.medium-up--one-quarter {
  padding: 20px;
  box-sizing: border-box; }

.hide-pipe {
  display: inline-block; }

.footer-copyright-text {
  display: inline-block; }

.global-button {
  width: auto !important;
  height: 40px;
  line-height: 40px;
  background: #00b5e2;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  color: white !important;
  display: inline-block;
  font-weight: 600;
  text-align: center;
  margin: 0 auto 0 auto;
  padding: 0 30px;
  -webkit-appearance: none; }

.global-button a {
  text-decoration: none;
  display: block;
  color: white !important; }

.global-button:hover {
  opacity: .8 !important; }

a.global-button:hover,
.global-button a:hover {
  color: white !important;
  opacity: .8 !important; }

.global-button.sold-out-button {
  background: #cccccc; }

.global-link {
  color: #00b5e2;
  font-weight: 700; }

#announcement-bar-wrap {
  min-height: 40px;
  width: 100%;
  background-color: #4e008e;
  font-size: 11px;
  font-family: "proxima-nova", sans-serif;
  padding: 10px 20px;
  text-align: center;
  display: block;
  margin: 0 !important;
  float: left; }

#announcement-bar {
  max-width: 1160px;
  margin: 0 auto; }

#announcement-bar,
#announcement-bar p,
#announcement-bar a {
  color: #bcbcbc; }

#announcement-bar strong {
  color: white; }

#announcement-bar-promo {
  height: 20px;
  overflow: hidden; }

#announcement-bar-promo-dropdown {
  width: 100%;
  background: black;
  float: left; }

#announcement-bar-promo-dropdown-text {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative; }

#announcement-bar-promo-dropdown-text h4 {
  font-family: "proxima-nova", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: white;
  margin: 0;
  padding-right: 40px; }

#announcement-bar-promo-dropdown-text p {
  font-family: "proxima-nova", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #cccccc;
  margin: 0;
  padding-right: 40px; }

#announcement-bar-promo a:hover,
#announcement-bar-promo-dropdown-x-out:hover {
  opacity: .8;
  cursor: pointer; }

#announcement-bar-promo-dropdown-x-out {
  color: #5b5b5b;
  font-size: 22px;
  line-height: 22px;
  font-weight: 200;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px; }

.announcement-bar-text {
  font-size: 12px; }

#announcement-bar-links div:first-child {
  margin-left: 0 !important; }

#announcement-bar-cart {
  display: inline-block;
  margin-left: 52px; }

#announcement-bar-links {
  align-self: center; }
  #announcement-bar-links #announcement-bar-sms,
  #announcement-bar-links #announcement-bar-support,
  #announcement-bar-links #announcement-bar-login {
    margin-left: 32px; }
    #announcement-bar-links #announcement-bar-sms a,
    #announcement-bar-links #announcement-bar-support a,
    #announcement-bar-links #announcement-bar-login a {
      color: white; }
  @media screen and (max-width: 990px) {
    #announcement-bar-links {
      align-self: flex-end; } }

@media screen and (max-width: 990px) {
  #announcement-bar-wrap {
    padding: 0; }

  #announcement-bar-promo {
    padding: 20px; }

  #announcement-bar-links {
    padding: 10px 20px; }

  #announcement-bar-promo {
    background: black;
    text-align: center; } }
.pdp-premium-video-wrap video {
  max-width: 100%; }

.responsive-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  float: left; }

.dummy {
  padding-top: 100%;
  /* forces 1:1 aspect ratio */ }

.img-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  /* align horizontal */
  align-items: center;
  /* align vertical */ }

/*** PAGE TEMPLATES ***/
#page-cta-bar-wrap {
  width: 100%;
  min-height: 60px;
  background: #f1f1f1;
  display: inline-block;
  z-index: 99999;
  -webkit-box-shadow: 0 6px 6px -6px #666;
  -moz-box-shadow: 0 6px 6px -6px #666;
  box-shadow: 0 6px 6px -6px #666;
  position: absolute; }

#page-cta-bar {
  max-width: 1200px;
  margin: 0 auto; }

#page-cta-bar-text {
  font-size: 22px;
  line-height: 60px;
  font-family: "proxima-nova", sans-serif;
  font-weight: 800;
  float: left;
  display: table;
  height: 60px;
  overflow: hidden;
  margin-left: 20px;
  font-weight: 200; }

#page-cta-bar-text p {
  color: black; }

#page-cta-bar-text strong {
  font-weight: 500; }

#page-cta-bar-button {
  width: auto !important;
  height: 30px !important;
  background: #84bd00;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  color: white;
  text-decoration: none;
  display: inline-block;
  float: right;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  margin: 15px 20px 0;
  padding: 0 20px;
  border: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -khtml-border-radius: 5px; }

#page-cta-bar-button a {
  color: white; }

#page-top-3 {
  width: 100%;
  max-width: 1160px;
  margin: 90px auto 0 auto; }

#page-top-3-left {
  width: 30%;
  float: left; }

#page-top-3-center {
  width: 30%;
  float: left;
  margin: 0 5%; }

#page-top-3-right {
  width: 30%;
  float: left; }

#page-top-3 h3 {
  font-family: "proxima-nova", sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  color: black;
  margin: 50px 0 30px;
  margin-bottom: 30px; }

#page-top-3 p {
  font-family: "proxima-nova", sans-serif;
  font-size: 13px;
  line-height: 22px;
  margin-bottom: 12px;
  color: black; }

#page-top-3 a {
  color: #00b5e2;
  font-weight: 600; }

#page-cta-bar-contact {
  float: right;
  padding-right: 20px; }

.cta-bar-contact-wrap {
  float: left; }

.cta-bar-image {
  margin: 20px 10px 0 30px;
  float: left; }

.cta-bar-image.cta-phone {
  width: 16px;
  height: 20px; }

.cta-bar-image.cta-email {
  width: 24px;
  height: 20px; }

.cta-bar-text {
  float: left;
  font-size: 14px;
  color: black;
  float: left;
  line-height: 60px; }

.cta-bar-text a {
  color: black; }

/*** LITY MODAL ***/
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }

.lity.lity-opened {
  opacity: 1; }

.lity.lity-closed {
  opacity: 0; }

.lity * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important; }

.lity-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em; }

.lity-loader {
  z-index: 9991;
  color: white;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }

.lity-loading .lity-loader {
  opacity: 1; }

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: calc(100% - 40px);
  max-height: 100%;
  /*width: 340px;*/
  outline: none !important;
  margin: 20px; }

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  padding: 20px;
  background: white;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -khtml-border-radius: 5px; }

.lity-loading .lity-content, .lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8); }

.lity-content:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); }

.lity-content .page {
  min-height: auto; }

.lity-close {
  z-index: 9994;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  margin: -1px -1px 0 0;
  color: black;
  font-style: normal;
  font-size: 25px;
  font-family: Arial, Baskerville, monospace;
  line-height: 25px;
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none; }

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

.lity-close:hover, .lity-close:focus, .lity-close:active, .lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #cccccc;
  font-style: normal;
  font-size: 25px;
  font-family: Arial, Baskerville, monospace;
  line-height: 25px;
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none; }

.lity-close:active {
  top: 1px; }

.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0; }

.lity-iframe .lity-container {
  width: 100%;
  max-width: 964px; }

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch; }

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black; }

.lity-hide {
  display: none; }

.vid-modal {
  max-width: 600px;
  max-height: 338px;
  width: calc(90vw - 60px);
  height: calc(50.85vw - 40px);
  margin: 0 auto; }

.vid-modal iframe {
  width: 100%;
  height: 100%; }

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0; }

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

#inline button {
  background: none;
  border: none;
  float: right;
  padding: 15px 0 0 0; }

.vid-thumb-wrap {
  position: relative; }

.vid-thumb-main {
  margin: 18px auto 5px auto;
  overflow: hidden;
  border: 0px;
  max-width: 800px;
  position: relative; }

.vid-thumb {
  margin: 18px auto 0 auto;
  overflow: hidden;
  border: 0px;
  max-width: 226px;
  position: relative;
  display: inline-block; }

.vid-thumb-main img,
.vid-thumb img {
  margin: 0;
  width: 100%; }

.vid-thumb-main object {
  width: 100%; }

.backup-image-wrap {
  margin: -10% -0px -11% 0px; }

.vid-thumb-player {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  background: url("https://cdn.shopify.com/s/files/1/0018/6449/9255/files/play-button.png") no-repeat center center;
  background-size: 75px;
  margin: 0 auto; }

.vid-thumb-player:hover {
  background: url("https://cdn.shopify.com/s/files/1/0018/6449/9255/files/play-button-hover.png?5048330428431006200") no-repeat center center;
  background-size: 75px;
  cursor: pointer; }

#pdp-video-wrap {
  margin-bottom: 50px;
  font-size: 12px; }

#pdp-video-main {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center; }

#pdp-video-thumbs {
  width: 100%;
  text-align: center; }

#pdp-video-title {
  font-family: "proxima-nova", sans-serif;
  font-weight: 300; }

.pdp-video-small {
  display: inline-block;
  margin: 0 10px;
  max-width: 226px;
  vertical-align: top; }

@media all and (max-width: 480px) {
  .vid-thumb-main,
  .vid-thumb {
    max-width: 100%;
    margin: 10px 0; }

  .pdp-video-small {
    margin: 0;
    max-width: 100%; } }
@media all and (max-width: 980px) {
  .site-header__logo-image img {
    width: 137px; }

  .search--focus {
    display: none; } }
@media all and (max-width: 768px) {
  #PageContainer .grid {
    margin-left: 0; }

  #pdp-image-gallery {
    width: 100%;
    padding-right: 0;
    margin-bottom: 16px; }

  #pdp-image-gallery button {
    display: none; }

  #pdp-essentials {
    width: 100%;
    padding: 20px; }

  .pdp-premium-content-new {
    width: 100%;
    float: left;
    margin-bottom: 0; }

  .pdp-premium-content-image {
    width: 100%;
    float: left; }

  .pdp-premium-content-text {
    width: 100%;
    float: right;
    margin: 16px 0 64px 0; }

  .pdp-premium-content,
  .pdp-premium-content h3 {
    text-align: center; }

  .pdp-premium-content.odd {
    display: flex;
    flex-direction: column-reverse; }

  _:-ms-fullscreen, :root .pdp-premium-content-image.odd {
    display: inline-flex; }

  .pdp-premium-content-image.odd,
  .pdp-premium-content-text.odd,
  .pdp-premium-padding-left,
  .pdp-premium-padding-right {
    padding: 0; } }
.vid-container {
  margin: 18px auto 5px auto;
  overflow: hidden;
  border: 0px;
  max-width: 800px; }

.vid-modal.vid-modal-disabled {
  max-width: 800px;
  max-height: unset;
  height: unset; }

/*** PAGES ***/
#pgs-hero,
.pgs-hero {
  position: relative;
  overflow: hidden; }

#pgs-hero__image,
.pgs-hero__image {
  padding-bottom: 30%;
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 160px;
  max-width: 100%;
  margin: 0px auto;
  opacity: 1; }

@media (max-width: 562px) {
  #pgs-hero__image,
  .pgs-hero__image {
    min-height: auto;
    height: 100%;
    padding-bottom: 100%; } }
@media (max-width: 767px) {
  #pgs-hero__image,
  .pgs-hero__image {
    min-height: auto;
    height: 100%;
    padding-bottom: 100%; }

  #pgs-hero__image.pgs-collection,
  .pgs-hero__image.pgs-collection {
    padding-bottom: 50%; } }
#pgs-banner-text-wrap-wrap,
.pgs-banner-text-wrap-wrap {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2; }

#pgs-banner-text-wrap,
.pgs-banner-text-wrap {
  display: table;
  width: 100%;
  height: 100%; }

#pgs-banner-text,
.pgs-banner-text {
  width: 100%;
  height: 160px;
  display: table-cell;
  vertical-align: middle;
  padding-left: 8%; }

#pgs-banner-text-link,
.pgs-banner-text-link {
  width: 45%;
  max-width: 480px; }

#pgs-banner-title,
.pgs-banner-title,
#pgs-banner-description,
.pgs-banner-description {
  width: 100%;
  max-width: 480px;
  color: white; }

#pgs-banner-title h1,
.pgs-banner-title h1 {
  color: white;
  max-width: 480px;
  margin: 0 auto;
  margin-bottom: 0px;
  font-family: "proxima-nova", sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 35px;
  margin-bottom: 10px;
  text-transform: uppercase; }

#pgs-banner-title h1 a,
.pgs-banner-title h1 a {
  color: white; }

#pgs-banner-description,
.pgs-banner-description {
  color: white;
  font-family: "proxima-nova", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 25px; }

#pgs-banner-description p,
#pgs-banner-description span,
.pgs-banner-description p,
.pgs-banner-description span {
  color: white;
  width: 100%;
  margin: 20px auto 0;
  font-family: "proxima-nova", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 25px; }

#pgs-banner-description a,
.pgs-banner-description a {
  color: white; }

#pgs-wrap {
  margin-top: 26px; }

#pgs-wrap h1 {
  font-family: "proxima-nova", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 34px;
  color: black;
  margin-bottom: 18px; }

#pgs-wrap h2,
#pgs-wrap h3 {
  font-family: "proxima-nova", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 26px;
  color: black;
  margin-bottom: 32px;
  margin-top: 32px; }

#pgs-wrap p,
#pgs-wrap ul {
  color: #3a3a3a;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px; }

#pgs-wrap ul {
  margin-bottom: 20px; }

#pgs-wrap a {
  font-family: "proxima-nova", sans-serif;
  font-weight: 700;
  color: #00b5e2;
  text-decoration: none;
  border-bottom: 0;
  padding-bottom: 0; }

#pgs-wrap a:hover {
  color: #0082bf; }

#pgs-wrap hr {
  margin: 24px 0; }

.template-page .page-container .section-header h2 {
  display: none; }

.template-page .page-container .grid__item {
  padding-left: 0; }

.template-page .page-container .page-width {
  margin-bottom: 48px; }

a.cta-button {
  width: auto !important;
  height: 30px !important;
  background: #00b5e2;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  color: white !important;
  text-decoration: none;
  display: inline-block;
  float: left;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  margin: 15px 15px 0 auto;
  padding: 0 20px; }

#pgs-3-block-wrap {
  width: 100%;
  float: left;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 40px;
  margin: 22px 0 48px 0; }

#pgs-3-block-left,
#pgs-3-block-center,
#pgs-3-block-right {
  width: 33%;
  float: left; }

#pgs-3-block-left {
  padding-right: 20px; }

#pgs-3-block-center {
  padding: 0 20px; }

#pgs-3-block-right {
  padding-left: 20px; }

#pgs-3-block-wrap h3 {
  font-family: "proxima-nova", sans-serif;
  font-size: 24px;
  line-height: 26px;
  font-weight: 700;
  margin: 0 0 4px 0;
  margin-top: 0px;
  color: black;
  text-align: left; }

#pgs-3-block-wrap p {
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  color: #3a3a3a; }

@media all and (max-width: 768px) {
  #pgs-hero__image:after,
  .pgs-hero__image:after {
    content: " ";
    z-index: 1;
    display: block;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5); }

  #pgs-banner-text-wrap,
  .pgs-banner-text-wrap {
    text-align: center; }

  #pgs-banner-text,
  .pgs-banner-text {
    padding-left: 0; }

  #pgs-banner-text-link,
  .pgs-banner-text-link {
    width: 100%;
    margin: 0 auto; }

  #pgs-banner-title,
  #pgs-banner-description,
  .pgs-banner-title,
  .pgs-banner-description {
    margin: 0 auto; }

  #pgs-banner-title h1,
  .pgs-banner-title h1 {
    font-size: 26px;
    line-height: 32px;
    color: #fff !important; }

  #pgs-banner-description,
  #pgs-banner-description p,
  #pgs-banner-description span,
  .pgs-banner-description,
  .pgs-banner-description p,
  .pgs-banner-description span {
    font-size: 13px;
    line-height: 16px;
    color: #fff !important; }

  #pgs-banner-text-wrap #pgs-banner-text #pgs-banner-title h1 span,
  #pgs-banner-text-wrap #pgs-banner-text #pgs-banner-description span,
  .pgs-banner-text-wrap #pgs-banner-text #pgs-banner-title h1 span,
  .pgs-banner-text-wrap #pgs-banner-text #pgs-banner-description span {
    color: #fff !important; }

  #pgs-3-block-wrap {
    padding-bottom: 16px; }

  #pgs-3-block-left,
  #pgs-3-block-center,
  #pgs-3-block-right {
    width: 100%;
    padding: 0;
    margin-bottom: 24px; } }
@media all and (min-width: 769px) and (max-width: 1160px) {
  #pgs-banner-title h1,
  .pgs-banner-title h1 {
    font-size: 3.4vw;
    line-height: 1.2em; }

  #pgs-banner-description, #pgs-banner-description p, #pgs-banner-description span,
  .pgs-banner-description, .pgs-banner-description p, .pgs-banner-description span {
    font-size: 1.7vw;
    line-height: 1.2em; } }
@media screen and (min-width: 469px) and (max-width: 768px) {
  #pgs-banner-title, #pgs-banner-description,
  .pgs-banner-title, .pgs-banner-description {
    width: 80%; } }
@media screen and (max-width: 468px) {
  #pgs-banner-title, #pgs-banner-description,
  .pgs-banner-title, .pgs-banner-description {
    width: 100%; } }
.pgs-bg-color {
  margin-left: -20px;
  margin-right: -20px; }

/*** PAGES - LEGAL ***/
.legal-block-row {
  width: 100%;
  float: left;
  margin-bottom: 16px; }

.legal-block {
  width: 50%;
  float: left; }

#pgs-wrap .legal-block h2 {
  padding: 0;
  margin: 40px 0 5px 0; }

.legal-block:nth-child(odd) {
  padding-right: 40px; }

.legal-block:nth-child(even) {
  padding-left: 40px; }

@media screen and (max-width: 768px) {
  .legal-block-row {
    margin-bottom: 0; }

  .legal-block {
    width: 100%; }

  #pgs-wrap .legal-block h2 {
    padding: 0;
    margin: 40px 0 5px 0; }

  .legal-block:nth-child(odd) {
    padding-right: 0; }

  .legal-block:nth-child(even) {
    padding-left: 0; } }
/*** SHEERID ***/
#sheerid-overlay {
  z-index: 9999998 !important; }

#sheerid-lightbox-wrap {
  position: fixed !important;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 9999999 !important;
  min-height: 325px;
  top: 0 !important;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto; }
  @media (max-height: 800px) {
    #sheerid-lightbox-wrap {
      height: auto !important; } }

#sheerid-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  display: table;
  width: 100%; }

#sheerid-content {
  width: 66%;
  display: table-cell;
  vertical-align: middle; }

#sheerid-content h2 {
  font-family: "proxima-nova", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 40px;
  color: black;
  margin: 50px 0 30px;
  text-transform: none;
  letter-spacing: -.5px; }

#sheerid-content.pdp-premium-content h2 {
  font-family: proxima-nova, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 26px;
  color: black;
  margin-bottom: 32px;
  margin-top: 32px; }

#sheerid-content p {
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  margin-bottom: 30px;
  color: #3a3a3a; }

#sheerid-content.pdp-premium-content p {
  color: #3a3a3a;
  font-family: proxima-nova, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  margin-top: 0px;
  margin-bottom: 10px; }

#sheerid-content ul {
  margin-bottom: 25px; }

#sheerid-content a.cta-button {
  background: #84bd00;
  height: 50px !important;
  font-size: 15px;
  line-height: 50px !important;
  padding: 0 40px !important;
  margin: 0 auto; }

#sheerid-image {
  width: 34%;
  box-sizing: border-box;
  padding: 0 20px;
  text-align: center;
  display: table-cell;
  vertical-align: middle; }

#sheerid-image img {
  width: 100%;
  margin: 0 auto; }

#sheerid-content #pdp-disclaimer {
  padding: 0; }

/*** EPP LAYOUT ***/
#page-epp #sheerid-content h2 {
  margin: 25px 0 30px; }

#page-epp .pdp-content-heading-wide {
  width: 100%;
  display: block;
  margin-top: 50px; }

#page-epp .pdp-content-heading-wide span {
  background: #fff;
  display: inline-block;
  position: relative; }

#page-epp #page-epp-images {
  width: 100%;
  padding: 25px 0 50px 0;
  display: inline-block; }

#page-epp .page-epp-image-block {
  width: 31%;
  float: left; }

#page-epp .page-epp-image-block:nth-child(2) {
  margin-left: 3.5%;
  margin-right: 3.5%; }

#page-epp .page-epp-image img {
  width: 100%; }

#page-epp .page-epp-image-text h3 {
  margin: 0;
  text-align: center; }

#page-epp #pdp-disclaimer {
  padding: 0; }

@media screen and (max-width: 768px) {
  #sheerid-content {
    width: 100%; }

  #sheerid-image {
    display: none; }

  #sheerid-image-mobile {
    width: 100%;
    float: left;
    margin-top: 20px;
    margin-bottom: -40px;
    text-align: center; }

  #sheerid-image-mobile img {
    max-width: 150px;
    margin: 0 auto; }

  #sheerid-content a.cta-button {
    float: none; }

  #sheerid-button {
    width: 100%;
    display: inline-block;
    text-align: center; } }
@media screen and (min-width: 769px) {
  #sheerid-image-mobile {
    display: none; } }
@media screen and (max-width: 468px) {
  #page-epp .page-epp-image-block {
    width: 100%;
    margin-bottom: 30px; }

  #page-epp .page-epp-image-block:nth-child(2) {
    margin-left: 0;
    margin-right: 0; } }
/*** MCE FORM ***/
.mc-field-group input {
  border: 1px solid #cecece !important; }

#mc_embed_signup div.mce_inline_error,
.mc_embed_signup div.mce_inline_error {
  display: none !important; }

#mce-FNAME,
.mce-FNAME {
  width: 49%;
  height: 30px;
  float: left;
  margin: 5px 1% 0 0;
  color: #484848;
  font-size: 14px; }

#mce-LNAME,
.mce-LNAME {
  width: 50%;
  height: 30px;
  float: left;
  margin: 5px 0 0 0;
  color: #484848;
  font-size: 14px; }

#mce-EMAIL,
.mce-EMAIL,
#mce-MMERGE3,
.mce-MMERGE3 {
  width: 100%;
  height: 30px;
  margin: 5px 0 0 0;
  color: #484848;
  font-size: 14px;
  border: 1px solid #cccccc;
  padding-left: 8px;
  padding-top: 0;
  padding-bottom: 0; }

.mc-field-group.input-group {
  margin-top: 30px; }

.mc-field-group.input-group ul {
  padding: 0;
  margin: 0; }

.mc-field-group.input-group li {
  list-style-type: none; }

.mc-field-group.input-group input {
  margin-left: 0; }

.mc-field-group.input-group label {
  margin-left: 5px; }

#mc-embedded-subscribe-form input[type="text"],
#mc-embedded-subscribe-form input[type="password"],
#mc-embedded-subscribe-form textarea, #mc-embedded-subscribe-form select {
  height: 30px;
  /*safari padding fix*/
  padding: 0 8px; }

#mc_embed_signup {
  clear: left;
  /*background: #fff;font: 14px Helvetica, Arial, sans-serif;*/
  width: 100%; }

/*** WHICH IPAD ***/
.ipad-model-chart {
  width: 100%;
  max-width: 650px;
  margin: 20px auto 0 auto;
  padding: 10px;
  background: white; }

.chart-row-wrap {
  float: left;
  width: 100%;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  line-height: 26px;
  color: black; }

.chart-row-wrap.odd,
.chart-row-wrap.even {
  padding: 5px 10px;
  float: left;
  width: 100%; }

.chart-row-wrap.odd {
  background: #f1f1f1; }

.chart-row-wrap.even {
  background: white; }

.chart-row-left {
  float: left;
  width: 35%;
  text-align: left;
  font-weight: 700; }

.chart-row-middle {
  float: left;
  width: 40%;
  text-align: left;
  padding: 0 10px; }

.chart-row-right {
  float: left;
  width: 25%;
  text-align: center; }

.chart-row-right a {
  text-decoration: none; }

@media screen and (max-width: 560px) {
  .chart-row-left {
    float: left;
    width: 50%;
    text-align: left; }

  .chart-row-middle {
    float: left;
    width: 50%;
    text-align: right;
    padding: 0; }

  .chart-row-right {
    float: left;
    width: 100%;
    text-align: left; } }
.landing-page-row-single,
.landing-page-row-double,
.landing-page-row-triple {
  width: 100%;
  padding: 100px 0;
  margin: 0 auto;
  display: inline-block; }

.landing-page-row-double-half-image {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  display: inline-block; }

.landing-page-row-wrap {
  max-width: 1200px;
  margin: 0 auto; }

.landing-page-row-single {
  background: #dddddd;
  float: left;
  overflow: auto; }

.landing-page-row-single-bg {
  background: #dddddd;
  float: left;
  overflow: auto; }

.landing-page-row-double {
  background: #edecec;
  float: left;
  overflow: auto; }

.landing-page-row-triple {
  background: #eeeeee;
  float: left;
  overflow: auto; }

/*** SINGLE ROW ***/
.landing-page-row-single .landing-page-row-box {
  width: 100%; }

.landing-page-row-single .landing-box-text,
.landing-page-row-single-bg .landing-box-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center; }

.landing-page-row-single .landing-box-text p,
.landing-page-row-single-bg .landing-box-text p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center; }

.landing-page-row-single img {
  max-width: 650px;
  width: 100%; }

/*** DOUBLE ROW ***/
.landing-page-row-double .landing-page-row-box {
  width: 50%; }

.landing-page-row-double .landing-box-text {
  max-width: 450px;
  margin: 0 auto;
  text-align: center; }

.landing-page-row-double img {
  max-width: 325px;
  width: 100%; }

/*** DOUBLE ROW HALF IMAGE ***/
.landing-page-row-double-half-image .landing-page-row-box {
  width: 50%; }

.landing-page-row-double-half-image .landing-box-text {
  max-width: 450px;
  margin: 0 auto; }

.landing-page-row-double-half-image img {
  max-width: 600px;
  width: 100%; }

/*** TRIPLE ROW ***/
.landing-page-row-triple .landing-page-row-box {
  width: 33%; }

.landing-page-row-triple .landing-box-text {
  max-width: 300px;
  margin: 0 auto; }

.landing-page-row-triple img,
.landing-page-row-triple video {
  max-width: 217px;
  width: 100%; }

/*** BOXES ***/
.landing-page-row-box {
  float: left; }

.landing-box-image img,
.landing-box-image video {
  margin-bottom: 50px; }

.landing-box-image {
  text-align: center; }

.landing-box-image a img:hover {
  opacity: .8; }

.landing-page-row-double-half-image .landing-box-image img {
  margin-bottom: 0; }

.landing-box-text,
.landing-page-form-text {
  padding: 0 20px; }

.landing-box-text h4 {
  font-family: "proxima-nova", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 34px;
  margin: 0;
  text-align: center;
  color: black; }

.landing-box-text p {
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin: 15px 0 0 0;
  text-align: center; }

.landing-box-text li {
  margin-bottom: 2px; }

.landing-video-wrapper {
  max-width: 660px;
  margin: 0 auto 50px auto; }

.landing-video {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0; }

.landing-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.landing-page-row-single-bg {
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center; }

.landing-page-full-banner {
  display: table;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center; }

.landing-page-full-banner .landing-box-text {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  color: white; }

@media screen and (max-width: 768px) {
  .landing-page-row-single .landing-page-row-box,
  .landing-page-row-double .landing-page-row-box,
  .landing-page-row-double-half-image .landing-page-row-box,
  .landing-page-row-triple .landing-page-row-box {
    width: 100%;
    padding: 0 5%; }

  .landing-page-row-single img {
    margin-top: 50px;
    width: 100%;
    max-width: 80%; }

  .landing-page-row-double img,
  .landing-page-row-triple img,
  .landing-page-row-triple video {
    margin-top: 50px;
    width: 100%;
    max-width: 40%; }

  .landing-page-row-single,
  .landing-page-row-double,
  .landing-page-row-triple {
    padding: 50px 0; }

  .landing-page-row-double-half-image .landing-page-row-box {
    padding: 20px; }

  .landing-page-row-double-half-image .landing-box-text {
    padding: 30px 0; }

  .landing-page-form-wrap {
    margin-top: -28px !important; }

  .landing-page-form {
    padding-top: 50px !important; }

  .landing-page-row-single .landing-box-text,
  .landing-page-row-single-bg .landing-box-text,
  .landing-page-row-double .landing-box-text,
  .landing-page-row-double-half-image .landing-box-text,
  .landing-page-row-triple .landing-box-text {
    width: 100%;
    max-width: 800px;
    margin: 0 auto; }

  .landing-page-row-single-bg .landing-box-text h4,
  .landing-page-row-single-bg .landing-box-text p {
    padding: 0 20px !important; }

  .landing-page-row-double-half-image .landing-box-text {
    width: 100%; }

  .landing-page-row-double-half-image .landing-box-image {
    width: 100%; }

  .landing-page-row-double-half-image .landing-page-row-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    /* optional */
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start; }

  .right-aligner {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2; }

  .left-aligner {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1; }

  .odd, .even {
    padding-top: 7px !important;
    padding-bottom: 7px !important; }

  .pdp-bottom-specs-wrap .spec-name,
  .pdp-bottom-specs-wrap .spec-value {
    width: 100%;
    line-height: 18px; } }
@media screen and (min-width: 769px) {
  .landing-page-row-double-half-image .landing-page-row-wrap {
    width: 100%;
    display: table;
    height: 100%; }

  .landing-page-row-double-half-image .landing-page-row-box {
    display: table;
    height: 100%;
    width: 100%; }

  .landing-page-row-double-half-image .landing-box-text {
    vertical-align: middle;
    display: table-cell;
    height: 100%;
    width: 50%; }

  .landing-page-row-double-half-image .landing-box-image {
    vertical-align: middle;
    display: table-cell;
    height: 100%; }

  .landing-page-row-double-half-image,
  .landing-page-row-double-half-image img {
    float: left; }

  .landing-page-row-double-half-image .landing-page-row-box {
    width: 100% !important;
    display: inline-block;
    clear: both; } }
/***** PDP PREMIUM CONTENT *****/
#pdp-premium-content {
  width: 100%;
  padding: 20px 0 0 0;
  float: left;
  /* margin-bottom: -50px; */ }

.pdp-premium-content-odd,
.pdp-premium-content-even {
  width: 100%;
  margin: 0;
  float: left; }

.pdp-premium-content-odd .pdp-premium-content-image,
.pdp-premium-content-odd .pdp-premium-content-info {
  float: right; }

.pdp-premium-content-even .pdp-premium-content-image,
.pdp-premium-content-even .pdp-premium-content-info {
  float: left; }

.pdp-premium-content-odd .pdp-premium-content-image {
  width: 48%;
  height: 100%;
  margin-left: 2%; }

.pdp-premium-content-odd .pdp-premium-content-info {
  width: 48%;
  height: 100%;
  margin-right: 2%; }

.pdp-premium-content-even .pdp-premium-content-image {
  width: 48%;
  height: 100%;
  margin-right: 2%; }

.pdp-premium-content-even .pdp-premium-content-info {
  width: 48%;
  height: 100%;
  margin-left: 2%; }

.pdp-premium-content-image img {
  width: 100%; }

.pdp-premium-content-heading h3 {
  font-family: "proxima-nova", sans-serif;
  font-size: 24px;
  line-height: 28px;
  font-weight: 800;
  margin: 10px 0;
  color: #000000;
  text-align: left; }

.pdp-premium-content-text p,
.topic-page .pdp-premium-content-text p {
  color: #3a3a3a;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  margin-top: 0;
  margin-bottom: 10px; }

#pdp-premium-content-wrap {
  padding: 0;
  max-width: 1160px;
  margin: 20px auto; }

#tgs-footer-above #pdp-premium-content {
  margin-top: -30px;
  padding: 0 20px;
  box-sizing: border-box; }

#plp-premium-content #plp-premium-content-heading {
  margin-bottom: 20px; }
#plp-premium-content *:not(#plp-premium-content-heading) {
  padding-left: 20px;
  padding-right: 20px; }
  #plp-premium-content *:not(#plp-premium-content-heading) > * {
    padding-left: 0;
    padding-right: 0; }
#plp-premium-content h1, #plp-premium-content h2, #plp-premium-content h3, #plp-premium-content h4, #plp-premium-content h5, #plp-premium-content h6 {
  margin-bottom: 0; }
#plp-premium-content ul {
  margin-left: 40px; }
  #plp-premium-content ul li {
    list-style: initial;
    font-weight: 300; }

#plp-premium-content-wrap,
.plp-premium-content-wrap {
  padding: 20px 0; }
  #plp-premium-content-wrap .plp-premium-content-top,
  .plp-premium-content-wrap .plp-premium-content-top {
    margin-bottom: 20px; }

#plp-premium-content,
.plp-premium-content {
  max-width: 1160px;
  margin: 0 auto;
  box-sizing: border-box;
  border: 1px solid #cecece;
  padding-bottom: 18px;
  margin-bottom: 30px; }
  #plp-premium-content ul, #plp-premium-content p,
  .plp-premium-content ul,
  .plp-premium-content p {
    margin-top: 1rem;
    margin-bottom: 1rem; }
  #plp-premium-content p,
  .plp-premium-content p {
    color: #3a3a3a;
    font-family: "proxima-nova", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    padding: 0 20px 0 20px; }

#plp-premium-content-heading h2,
.plp-premium-content-heading h2 {
  width: 100%;
  min-height: 50px;
  background: #3a3a3a;
  color: white;
  font-size: 16px;
  font-family: "proxima-nova", sans-serif;
  font-weight: 700;
  line-height: 22px;
  padding: 17px 20px;
  margin-top: 0; }

#plp-premium-content strong,
.plp-premium-content strong {
  font-size: 16px;
  font-family: "proxima-nova", sans-serif;
  font-weight: 700;
  color: black; }

.pdp-premium-content-new .pdp-premium-content a,
#plp-premium-content-wrap #plp-premium-content a {
  color: #00b5e2;
  font-weight: 700; }

#plp-premium-content-wrap .content-list,
.plp-premium-content-wrap .content-list {
  margin: 10px 0 0 60px; }

#plp-premium-content-wrap .content-list li,
.plp-premium-content-wrap .content-list li {
  list-style: disc;
  color: #3a3a3a;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px; }

.plp-related-links a {
  font-size: 16px;
  font-weight: 700;
  margin-right: 30px;
  display: inline-block;
  line-height: 28px; }

#shopify-section-collection-template .pdp-premium-content-new {
  margin: 48px 0 18px 0; }

/*** CATEGORY FILTERS ***/
#plp-breadcrumb {
  height: 40px;
  line-height: 40px;
  background: #f1f1f1;
  margin: -2px -20px 30px -20px;
  padding: 0 20px; }
  @media (max-width: 980px) {
    #plp-breadcrumb {
      display: none; } }

#plp-breadcrumb .breadcrumb {
  margin: 0 auto; }

#plp-above-products {
  font-family: "proxima-nova", sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px; }

#plp-above-products select {
  color: #3a3a3a;
  background: url("https://cdn.shopify.com/s/files/1/0121/0014/1114/files/down-arrow.png") no-repeat;
  background-position: right 10px center; }

#plp-above-products-count {
  width: 50%;
  float: left;
  padding-top: 3px;
  padding-bottom: 3px; }

#plp-above-products-sort {
  width: 50%;
  float: left; }

#plp-sidebar-wrap {
  width: 20%;
  float: left; }

#plp-sidebar-ad {
  float: left;
  margin-top: 10px;
  margin-bottom: 35px;
  max-width: 100%; }

#plp-sidebar-ad img {
  max-width: 100%; }

@media screen and (max-width: 768px) {
  #plp-sidebar-wrap {
    width: 100%;
    float: left; }

  #plp-sidebar-ad {
    display: none; } }
#plp-top-promo {
  width: 100%;
  padding: 0 15px;
  margin: 12px 0 0 0;
  float: left;
  display: table;
  background: #3a3a3a;
  position: relative; }

.plp-top-promo-content-group,
#plp-top-promo-button {
  position: relative;
  top: 50%;
  transform: translateY(-50%); }

.plp-top-promo-content-group {
  float: left; }

#plp-top-promo-button {
  float: right; }

@media (max-width: 992px) {
  #plp-top-promo {
    background-size: contain !important; } }
@media (max-width: 768px) {
  #plp-top-promo {
    display: none; } }
#plp-top-promo-text {
  display: table-cell;
  vertical-align: middle; }

#plp-top-promo-heading {
  font-family: "proxima-nova", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  /*    line-height: 24px; */
  padding-right: 16px; }

#plp-top-promo-content {
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: white;
  line-height: 18px;
  padding-right: 16px; }

#plp-top-promo-button {
  width: 132px;
  display: table-cell;
  vertical-align: middle;
  text-align: center; }

.plp-product-box {
  margin-top: 30px;
  padding: 15px;
  box-sizing: border-box;
  border-bottom: 1px solid #cecece; }

.plp-product-box a:hover,
.plp-product-box a:focus {
  opacity: 1; }

.plp-learn-more {
  text-align: center;
  margin-top: 16px;
  position: relative; }

.plp-learn-more .product-price__sold-out {
  width: 140px !important;
  max-width: 140px;
  height: 40px;
  line-height: 40px;
  background: #cccccc;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  color: white !important;
  display: inline-block;
  font-weight: 600;
  text-align: center;
  margin: 0 auto 0 auto;
  padding: 0 30px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-right: 5px solid white;
  border-left: 5px solid white; }

#collection .pagination,
#prs-content #plp-pagination {
  width: 100%;
  float: left;
  text-align: center;
  margin: 40px 0 40px 0;
  padding-top: 25px;
  font-size: 14px;
  font-weight: 400; }

#blog-content #plp-pagination {
  width: 100%;
  float: left;
  text-align: center;
  margin: 0 0 40px 0;
  padding-top: 0;
  font-size: 14px;
  font-weight: 400; }

#collection .pagination span,
#prs-content #plp-pagination span,
#blog-content #plp-pagination span {
  padding: 0 15px; }

#collection .pagination .page,
#prs-content #plp-pagination .page,
#blog-content #plp-pagination .page {
  display: inline-block;
  line-height: 30px; }

#collection .pagination .page.current,
#prs-content #plp-pagination .page.current,
#blog-content #plp-pagination .page.current {
  background: #3a3a3a;
  color: white;
  width: 30px;
  height: 30px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  -khtml-border-radius: 15px;
  padding: 0; }

#collection .pagination .page a,
#collection .pagination .next a,
#collection .pagination .deco,
#prs-content #plp-pagination .page a,
#prs-content #plp-pagination .next a,
#prs-content #plp-pagination .deco,
#blog-content #plp-pagination .page a,
#blog-content #plp-pagination .next a,
#blog-content #plp-pagination .deco {
  color: #3a3a3a; }

#collection .pagination-previous,
#collection .pagination-next,
#prs-content #plp-pagination .prev,
#prs-content #plp-pagination .next,
#blog-content #plp-pagination .prev,
#blog-content #plp-pagination .next {
  display: inline-block; }

#blog-video-wrap iframe {
  width: 100% !important; }

#blog-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; }

.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0; }

@media (min-width: 800px) {
  .custom-blog-copys .blog-custom-image img {
    padding: 0 20px; }

  .custom-blog-copys .custom-blog-pages {
    display: flex;
    justify-content: start;
    align-items: center;
    margin: 40px 0px; }

  .custom-blog-copys .custom-blog-pages div {
    width: 100%; }

  .custom-blog-copys .custom-blog-pages div.blog-custom-image {
    width: 50%; } }
.custom-blog-content .floated-content.left {
  float: left;
  margin-right: 20px; }

.custom-blog-content .floated-content.right {
  float: right;
  margin-left: 20px; }

@media (max-width: 600px) {
  .custom-blog-content .floated-content.left {
    float: none;
    margin-right: 0;
    margin-left: 0;
    text-align: center; }

  .custom-blog-content .floated-content.right {
    float: none;
    margin-right: 0;
    margin-left: 0;
    text-align: center; } }
/*** PLP IMAGES ***/
.plp-image-wrap-outter {
  position: relative;
  width: 100%;
  overflow: hidden; }

.plp-image-wrap-outter:before {
  content: "";
  display: block;
  padding-top: 100%; }

.plp-image-wrap-middle {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  color: white; }

.plp-image-wrap-inner {
  display: table;
  width: 100%;
  height: 100%;
  vertical-align: middle; }

.plp-image-wrap {
  height: 100%;
  display: table-cell;
  text-align: center;
  vertical-align: middle; }

.plp-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%; }

.plp-image-wrap .hidden {
  visibility: visible !important;
  opacity: 0;
  z-index: -1;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out; }

.plp-image-wrap .plp-image-push-wrap {
  opacity: 0; }

.plp-image-wrap:hover .hidden {
  z-index: 1;
  opacity: 1;
  display: inline-block;
  background: white;
  max-width: 100%;
  max-height: 100%; }

.plp-image-wrap:hover .plp-image-push-wrap {
  opacity: 1; }

.plp-image-wrap:hover .hidden img {
  opacity: 1; }

.plp-image-push-wrap {
  position: absolute;
  height: 100%;
  top: 0;
  bottom: 0;
  vertical-align: middle;
  display: table;
  background: white; }

.plp-image-push {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%; }

/*** PRESS ROOM ***/
#prs-wrap {
  max-width: 1160px;
  margin: 32px auto 0 auto; }

#prs-nav {
  max-width: 1160px;
  margin: 0 auto; }

#prs-nav a {
  font-family: "proxima-nova", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #aaa;
  margin: 0 30px 0 0; }

#prs-nav #prs-nav-selected {
  color: black;
  border-bottom: 3px solid #00b5e2; }

#prs-content, #prs-sidebar {
  margin: 0 0 30px; }

#prs-content {
  width: 70%;
  padding-right: 30px;
  float: left;
  border-right: 1px solid #cccccc; }

#prs-content p {
  color: #3a3a3a;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px; }

#prs-single-content,
#prs-single-content p {
  color: #3a3a3a;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px; }

#prs-single-content a {
  font-weight: 600;
  color: #00b5e2; }

.prs-content-post-heading h2,
.prs-content-post-heading a {
  font-family: "proxima-nova", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
  color: #000 !important; }

.prs-content-post-date {
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #3a3a3a; }

#prs-content ul {
  margin: 0 0 20px 0;
  padding-left: 40px; }

#prs-content li {
  list-style-type: disc;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  color: black; }

#prs-single-heading h1 {
  font-family: "proxima-nova", sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 28px;
  color: black;
  margin: 0 0 24px 0; }

#prs-single-image-caption {
  font-family: "proxima-nova", sans-serif;
  font-size: 13px;
  line-height: 16px;
  text-align: center;
  font-style: italic;
  color: #3a3a3a;
  margin-bottom: 30px; }

#prs-sidebar {
  width: 30%;
  padding-left: 30px;
  float: left; }

#prs-sidebar-contacts,
#prs-sidebar-about,
#prs-sidebar-press {
  margin-bottom: 20px;
  float: left; }

#prs-sidebar-contacts h2,
#prs-sidebar-about h2,
#prs-sidebar-press h2 {
  font-family: "proxima-nova", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
  margin: 1px 0 15px 0;
  color: black; }

.prs-sidebar-contact {
  width: 100%;
  float: left;
  margin: 0 0 30px 0; }

.prs-sidebar-contact-img {
  float: left;
  margin-right: 15px; }

.prs-sidebar-contact-name {
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: black; }

.prs-sidebar-contact-title {
  font-family: "proxima-nova", sans-serif;
  font-size: 13px;
  line-height: 15px; }

.prs-sidebar-contact-phone {
  font-family: "proxima-nova", sans-serif;
  font-size: 13px;
  color: black;
  margin-top: 15px; }

.prs-sidebar-contact-email {
  font-family: "proxima-nova", sans-serif;
  font-size: 13px;
  color: #00b8e4;
  font-weight: 600; }

#prs-sidebar-about,
#prs-sidebar-press {
  font-family: "proxima-nova", sans-serif;
  font-size: 13px;
  line-height: 22px;
  color: black;
  padding-bottom: 35px !important; }

@media screen and (max-width: 1000px) and (min-width: 769px) {
  .prs-sidebar-contact-img,
  .prs-sidebar-contact-name,
  .prs-sidebar-contact-title,
  .prs-sidebar-contact-phone,
  .prs-sidebar-contact-email {
    width: 100%;
    float: left; } }
@media screen and (max-width: 768px) {
  #prs-content {
    width: 100%;
    padding: 0 0 20px 0;
    border-right: 0;
    border-bottom: 1px solid #cccccc; }

  #prs-sidebar {
    width: 100%;
    padding: 20px 0 0; }

  #prs-sidebar-contacts,
  #prs-sidebar-about,
  #prs-sidebar-press {
    width: 100%;
    float: left;
    padding: 0; } }
/*** FOOTER ***/
.site-footer {
  position: relative; }

#tgs-footer-wrap {
  float: left;
  width: 100%; }

#tgs-footer-signup-wrap {
  width: 100%;
  background: #f1f1f1;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  /*  margin-top: 20px; */
  padding: 22px 0 30px 0;
  text-align: center;
  float: left; }

#tgs-footer-signup {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; }

#tgs-footer-signup-text {
  font-size: 18px;
  font-family: "proxima-nova", sans-serif;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box; }

#tgs-footer-signup-text h3 {
  font-family: "proxima-nova", sans-serif;
  font-size: 22px;
  margin: 0 0 5px 0; }

#tgs-footer-signup-text p {
  color: #3a3a3a;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  margin: -5px 0 7px 0; }

#tgs-footer-signup-text .global-button {
  color: white;
  margin-left: 10px; }

#tgs-footer-signup-form {
  float: left;
  width: 50%; }

#tgs-footer-signup-form fieldset {
  border: 0; }

#tgs-signup-input-wrap input {
  width: 236px;
  height: 30px;
  float: left;
  padding: 0 10px;
  margin-right: 12px;
  border: 1px solid #cccccc; }

.tgs-signup-submit {
  width: 96px;
  height: 30px;
  background: #00b5e2;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  color: white;
  text-decoration: none;
  display: block;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  float: left; }

.tgs-signup-submit:hover {
  opacity: .8; }

#tgs-footer-links-wrap {
  width: 100%;
  float: left;
  margin-top: 50px; }

#tgs-footer-links {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  font-family: "proxima-nova", sans-serif; }

.tgs-footer-block {
  width: 20%;
  float: left;
  padding: 30px 0;
  box-sizing: border-box; }

.tgs-footer-block-social-wrap {
  width: 100%;
  float: left;
  text-align: center;
  margin: 30px 0; }

.tgs-footer-block-social {
  margin: 0 auto; }

.tgs-footer-block h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 2px 0;
  font-family: "proxima-nova", sans-serif; }

.tgs-footer-block a {
  font-size: 12px;
  line-height: 20px;
  color: #3a3a3a;
  font-family: "proxima-nova", sans-serif;
  font-weight: 300;
  text-decoration: none; }

.tgs-footer-block a:hover {
  color: #0082bf; }

#tgs-footer .parent li {
  width: 20%;
  float: left;
  text-align: left; }

#tgs-footer .parent li a {
  font-size: 18px;
  font-weight: 600;
  margin: 2px 0;
  font-family: "proxima-nova", sans-serif; }

#tgs-footer .parent li ul li {
  width: 100%; }

#tgs-footer .parent .child a {
  font-size: 12px;
  line-height: 24px;
  color: #3a3a3a;
  font-family: "proxima-nova", sans-serif;
  font-weight: 300;
  text-decoration: none;
  width: 100%;
  display: inline-block; }

#tgs-footer-lower-wrap {
  float: left;
  text-align: center;
  width: 100%;
  color: white;
  background: #4e008e;
  padding-top: 20px;
  padding-bottom: 20px; }

#tgs-footer-lower {
  max-width: 1200px;
  min-height: 36px;
  margin: 0px auto 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
  width: 100%;
  float: none; }

#tgs-footer-lower a {
  color: #75779f; }

#tgs-footer-region {
  font-family: "proxima-nova", sans-serif;
  font-size: 11px;
  line-height: 26px;
  color: #75779f;
  float: left; }

#tgs-footer-region-flag {
  margin: 8px 10px 0 0;
  float: left; }

#tgs-footer-region-flag img {
  width: 22px;
  height: 21px; }

.tgs-footer-region-text {
  float: left;
  line-height: 40px;
  margin-right: 10px; }

#tgs-footer-social {
  float: none;
  display: inline-block;
  margin: 8px auto 0 auto; }

.tgs-footer-block-social-icons a:hover {
  opacity: .8; }

#tgs-footer-copyright {
  font-family: "proxima-nova", sans-serif;
  font-size: 11px;
  line-height: 40px;
  color: #75779f;
  float: right;
  text-align: right; }

#tgs-footer-signup .mc_embed_signup input.email {
  width: 350px !important; }

#tgs-footer-signup .mc_embed_signup div.clear {
  display: inline-block; }

@media screen and (max-width: 768px) {
  #tgs-footer-links .tgs-link-child {
    display: none; }

  #tgs-footer-links .parent {
    background: #4e008e;
    width: 100%;
    display: inline-block;
    color: white; }

  #tgs-footer-links .tgs-expand {
    width: 100% !important;
    border-bottom: 1px solid #cccccc;
    line-height: 35px;
    padding-left: 20px; }

  #tgs-footer-links .tgs-expand:before {
    content: '\002b';
    position: absolute;
    width: 20px;
    right: 40px;
    text-align: center; }

  #tgs-footer-links .tgs-link-child:before {
    content: '\002d';
    position: absolute;
    width: 20px;
    right: 40px;
    margin-top: -35px;
    text-align: center;
    background: #4e008e; }

  #tgs-footer-links .tgs-link-child li {
    width: 100% !important;
    padding: 0 0 0 20px;
    border-top: 1px solid #cccccc;
    background: #f1f1f1;
    line-height: 35px; }

  #tgs-footer-links .tgs-link-child {
    display: none; }

  #tgs-footer-links ul,
  #tgs-footer-links li {
    padding-top: 0;
    padding-bottom: 0; }

  #tgs-footer-region {
    width: 100%;
    text-align: center;
    float: none;
    margin: 0 auto;
    display: table;
    vertical-align: middle; }

  .tgs-footer-region-text,
  #tgs-footer-region-flag {
    float: none;
    display: inline-block;
    vertical-align: middle; }

  #tgs-footer-copyright {
    width: 100%;
    float: none;
    text-align: center; }

  .footer-copyright-text {
    display: inline-block; } }
@media screen and (min-width: 769px) {
  .tgs-link-child {
    display: block; } }
@media screen and (max-width: 468px) {
  .footer-copyright-text {
    width: 100%; } }
/*** HOME PAGE ***/
.template-index .tgs-main-banner-inner-wrap,
.template-index .tgs-main-banner-inside-wrap {
  max-width: 100%;
  padding: 0; }

.template-index .tgs-main-banner-outter-wrap .slick-track #pgs-hero,
.template-index .tgs-main-banner-outter-wrap .slick-track .pgs-hero {
  margin: 0; }

.template-index .tgs-main-banner-outter-wrap .slick-track #pgs-hero__image,
.template-index .tgs-main-banner-outter-wrap .slick-track .pgs-hero__image {
  padding-bottom: 40%; }

.tgs-main-banner-outter-wrap {
  width: 100%;
  margin: 0;
  background: white; }

.tgs-main-banner-inner-wrap,
.tgs-main-banner-inside-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; }

.tgs-main-banner {
  width: 100%;
  height: 550px;
  display: table;
  vertical-align: middle;
  direction: rtl;
  text-align: left; }

/* Make sure content goes from Left to Right
I was seeing the periods go to the left of the end of a sentence. */
.tgs-main-banner-text-wrap {
  direction: ltr; }

.tgs-main-banner-image-wrap {
  padding: 20px 40px; }

.tgs-main-banner-image-wrap,
.tgs-main-banner-text-wrap {
  width: 50%;
  display: table-cell;
  vertical-align: middle;
  padding: 20px;
  direction: rtl; }
  @media (max-width: 768px) {
    .tgs-main-banner-image-wrap,
    .tgs-main-banner-text-wrap {
      padding: 20px 0 0 0; }
      .tgs-main-banner-image-wrap .page-width,
      .tgs-main-banner-text-wrap .page-width {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0; } }

.tgs-main-banner-image-wrap img {
  width: 100%;
  max-width: 400px;
  max-height: 400px;
  margin: 0 auto; }

.tgs-main-banner-image {
  max-width: 400px;
  max-height: 400px; }

.tgs-main-banner-text {
  width: 100%;
  max-width: 560px;
  float: right;
  padding-left: 8%; }

.tgs-main-banner-heading h2,
.tgs-main-image-heading h2 {
  font-family: "proxima-nova", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 38px;
  margin: 0 0 5px 0;
  padding: 0;
  direction: ltr; }

.tgs-main-banner-subtext p {
  font-family: "proxima-nova", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  margin: 0;
  direction: ltr; }

.tgs-main-image-subtext p {
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  margin: 0;
  direction: ltr; }

.tgs-main-banner-button,
.tgs-main-image-button,
.tgs-main-double-image-button {
  margin-top: 1em; }

.tgs-main-banner-heading h2,
.tgs-main-banner-heading a,
.tgs-main-banner-subtext p {
  color: black; }

.tgs-main-image-heading h2,
.tgs-main-image-subtext p {
  color: white; }

.tgs-main-collection {
  padding-top: 5px;
  padding-bottom: 25px; }

.tgs-main-collection .plp-image-wrap-outter {
  padding: 20px;
  max-width: 250px;
  max-height: 250px;
  margin: 0 auto; }

.tgs-main-collection .plp-learn-more {
  display: none; }

.tgs-main-collection .hr--invisible {
  margin: 40px 0 0 0; }

.tgs-main-collection .global-button {
  margin-bottom: 16px; }

.tgs-main-image-subtext {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px; }

.slick-slide {
  display: table !important; }

.slick-dots {
  bottom: 5px !important;
  right: 0 !important;
  left: 0 !important; }

.slick-dots li button::before {
  color: #aaa !important;
  opacity: 1 !important; }

.slick-dots li.slick-active button::before {
  color: black !important;
  opacity: 1 !important; }

.slick-slide.slick-current #pgs-hero,
.slick-slide.slick-current .pgs-hero {
  display: block !important; }

@media screen and (max-width: 768px) {
  .template-index .tgs-main-banner-outter-wrap .slick-track #pgs-hero__image,
  .template-index .tgs-main-banner-outter-wrap .slick-track .pgs-hero__image {
    padding-bottom: 60%; } }
@media screen and (max-width: 562px) {
  .template-index .tgs-main-banner-outter-wrap .slick-track #pgs-hero__image,
  .template-index .tgs-main-banner-outter-wrap .slick-track .pgs-hero__image {
    padding-bottom: 120%; } }

@media screen and (max-width: 768px) {
  .tgs-main-banner {
    direction: ltr; }

  .tgs-main-banner.align-top {
    text-align: center; }

  .tgs-main-banner-image-wrap,
  .tgs-main-banner-text-wrap {
    width: 100%;
    float: left;
    text-align: center; }

  .tgs-main-banner-text-wrap {
    padding-top: 0; }

  .tgs-main-banner-text {
    max-width: 100%;
    padding-left: 0; }

  .tgs-main-banner-image-wrap img {
    max-width: 250px;
    max-height: 250px; }

  .tgs-main-banner-image-wrap.align-top img {
    max-width: 500px;
    max-height: 250px; } }
@media screen and (min-width: 769px) {
  .tgs-main-banner.align-top {
    text-align: center; }

  .tgs-main-banner-image-wrap.align-top,
  .tgs-main-banner-text-wrap.align-top {
    width: 100%;
    display: inline;
    vertical-align: middle; }

  .tgs-main-banner-image-wrap.align-top {
    padding-bottom: 0; }

  .tgs-main-banner-text-wrap.align-top {
    padding-top: 0; }

  .tgs-main-banner-image-wrap.align-top .tgs-main-banner-image {
    max-width: 520px;
    max-height: 260px; }

  .tgs-main-banner-text-wrap.align-top .tgs-main-banner-text {
    width: 100%;
    max-width: 560px;
    float: none;
    margin: 0 auto;
    padding-left: 0;
    text-align: center; } }
/*** HOME - ADVANTAGE ***/
.tgs-main-advantage {
  background: #000;
  padding: 36px 20px 20px 20px;
  width: 100%;
  margin: 0; }
  @media (max-width: 768px) {
    .tgs-main-advantage .page-width {
      padding-left: 0;
      padding-right: 0;
      margin-left: 0;
      margin-right: 0; } }

.tgs-main-advantage-image {
  width: 100%;
  height: 100%;
  max-width: 250px;
  max-height: 125px;
  margin: 0 auto; }

.tgs-main-advantage .pdp-content-heading-wide {
  color: white; }

.tgs-main-advantage .pdp-content-heading-wide span {
  background: black; }

.tgs-main-advantage .pdp-content-heading-wide + * {
  border-top: 1px solid #333; }

.tgs-main-advantage-block {
  padding: 30px; }
  @media (max-width: 768px) {
    .tgs-main-advantage-block {
      padding: 0 0 30px 0;
      border-bottom: 1px solid #55575b; }
      .tgs-main-advantage-block:last-child {
        border-bottom: 1px solid transparent; } }

.tgs-main-advantage-heading h3 {
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white; }

.tgs-main-advantage-subtext p {
  font-family: "proxima-nova", sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: white; }

/*** HOME - PRODUCT SLIDESHOW ***/
.tgs-product-slideshow {
  background: white;
  padding: 36px 20px 20px 20px;
  width: 100%;
  margin: 0; }
  @media (max-width: 768px) {
    .tgs-product-slideshow.static-slideshow {
      padding-bottom: 0 !important; } }

.tgs-product-slideshow .pdp-content-heading-wide span {
  background: white; }

.tgs-product-slideshow .tgs-main-banner {
  height: auto; }

.tgs-product-slideshow .tgs-main-banner-sku {
  font-family: "proxima-nova", sans-serif;
  font-size: 18px;
  font-weight: 300; }

.tgs-product-slideshow .tgs-main-banner-review-snippet {
  direction: ltr;
  margin: 7px 0 7px 0; }

.tgs-product-slideshow .tgs-main-banner-price {
  direction: ltr !important; }

.tgs-product-slideshow .tgs-main-banner-price .product-price__sale {
  color: #ba0c2f; }

.tgs-product-slideshow .slick-dots {
  bottom: -35px !important; }

.tgs-product-slideshow .text-center .global-button {
  margin-bottom: 30px; }

.tgs-product-slideshow.static-slideshow {
  padding-bottom: 40px; }

/*** HOME - BLOG ***/
.tgs-main-blog-single {
  margin-top: 4px;
  padding-bottom: 35px; }
  .tgs-main-blog-single .grid .grid__item {
    margin-top: 20px; }

.tgs-main-blog-wrap {
  width: 100%;
  height: 100%;
  display: table;
  vertical-align: middle; }

.tgs-main-blog-image {
  width: 50%;
  display: table-cell;
  vertical-align: middle;
  padding-right: 20px; }

.tgs-main-blog-image a {
  display: inline-block; }

.tgs-main-blog-content {
  width: 50%;
  display: table-cell;
  vertical-align: middle;
  padding-left: 20px; }

.tgs-main-blog-heading h2 {
  font-family: "proxima-nova", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 28px;
  color: black;
  margin: 0; }

.tgs-main-blog-excerpt {
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #3a3a3a;
  margin: 5px 0 0 0; }

.tgs-main-blog-excerpt .global-link .right-arrow {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #00b5e2;
  display: inline-block;
  margin: 2px 0 0px 2px; }

.tgs-main-blog-button {
  margin: 20px 0 7px 0;
  text-align: center; }

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .tgs-main-blog-heading h2 {
    font-size: 2.6vw;
    line-height: 1.1em; }

  .tgs-main-blog-excerpt {
    font-size: 1.6vw;
    line-height: 1.3em; } }
@media screen and (max-width: 768px) {
  .tgs-main-blog-image {
    width: 100%;
    display: inline-block;
    padding-right: 0px; }

  .tgs-main-blog-image img {
    width: 100%; }

  .tgs-main-blog-content {
    width: 100%;
    display: inline-block;
    padding-left: 0px;
    text-align: center; }

  .tgs-main-blog-heading h2 {
    font-size: 22px;
    line-height: 24px;
    margin-top: 8px; }

  .tgs-main-blog-excerpt {
    font-size: 13px;
    line-height: 16px; }

  .tgs-main-blog-button {
    text-align: center; } }
/*** HOME - DOUBLE IMAGE ***/
@media (max-width: 768px) {
  .tgs-main-double-image .page-width {
    padding: 0;
    margin: 10px 20px; } }

.tgs-main-double-image-block {
  position: relative; }

.tgs-main-double-image-block:nth-of-type(odd) {
  padding-right: 10px; }

.tgs-main-double-image-block:nth-of-type(even) {
  padding-left: 10px; }

.tgs-main-double-image-heading h3 {
  font-family: "proxima-nova", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 38px;
  color: white;
  margin: 0 0 5px 0;
  padding: 0; }

.tgs-main-double-image-subtext p {
  font-family: "proxima-nova", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: white;
  margin: 0; }

@media screen and (max-width: 768px) {
  .tgs-main-double-image-block {
    margin-bottom: 18px; }

  .tgs-main-double-image-block:nth-of-type(odd) {
    padding: 0; }

  .tgs-main-double-image-block:nth-of-type(even) {
    padding: 0; }

  .tgs-main-double-image-text.top-center,
  .tgs-main-double-image-text.bottom-right {
    width: 100%; } }
@media all and (max-width: 768px) {
  .tgs-main-banner {
    height: auto; }

  .tgs-main-banner-heading h2,
  .tgs-main-double-image-heading h3,
  .tgs-main-image-heading h2 {
    font-size: 26px;
    line-height: 32px; }

  .tgs-main-banner-subtext,
  .tgs-main-banner-subtext p,
  .tgs-main-banner-subtext span,
  .tgs-main-double-image-subtext,
  .tgs-main-double-image-subtext p,
  .tgs-main-double-image-subtext span,
  .tgs-main-image-subtext,
  .tgs-main-image-subtext p,
  .tgs-main-image-subtext span {
    font-size: 13px;
    line-height: 16px; } }
@media all and (min-width: 769px) and (max-width: 1160px) {
  .tgs-main-banner-heading h2,
  .tgs-main-double-image-heading h3,
  .tgs-main-image-heading h2 {
    font-size: 3.4vw;
    line-height: 1.2em; }

  .tgs-main-banner-subtext,
  .tgs-main-banner-subtext p,
  .tgs-main-banner-subtext span,
  .tgs-main-double-image-subtext,
  .tgs-main-double-image-subtext p,
  .tgs-main-double-image-subtext span,
  .tgs-main-image-subtext,
  .tgs-main-image-subtext p,
  .tgs-main-image-subtext span {
    font-size: 1.7vw;
    line-height: 1.2em; } }
/*** NAV ***/
@media screen and (max-width: 768px) {
  .site-header__icons {
    padding-right: 20px; }

  .globomenu-target-with-image > .globomenu-image {
    max-width: 200px !important; }

  .globomenu-submenu.globomenu-grid-row.globomenu-submenu-drop.globomenu-submenu-type-mega.globomenu-submenu-align-full_width {
    padding: 0 !important; }

  .btn--link.site-header__menu.js-mobile-nav-toggle.mobile-nav--open,
  .btn--link.site-header__menu.js-mobile-nav-toggle.mobile-nav--close {
    margin-right: 0 !important;
    padding-right: 0 !important; }

  .globomenu .globomenu-target .globomenu-retractor.fa.fa-times::before {
    line-height: 32px !important; }

  .globomenu-item-header .globomenu-retractor.fa.fa-times {
    color: black !important; }

  .globomenu-item.globomenu-item-level-0.globomenu-item-has-children.globomenu-has-submenu-drop.globomenu-has-submenu-mega,
  .globomenu-item.globomenu-item-level-0.globomenu-item-normal {
    border-bottom: 1px solid #e8e9eb; } }
/*** LANDING PAGE ***/
.landing-page-nav,
.landing-page-nav-new {
  width: calc(100% + 40px);
  min-height: 60px;
  background: #f1f1f1;
  display: inline-block;
  z-index: 99999;
  -webkit-box-shadow: 0 6px 6px -6px #666666;
  -moz-box-shadow: 0 6px 6px -6px #666666;
  box-shadow: 0 6px 6px -6px #666666;
  margin: 0 -20px 0 -20px;
  padding: 0; }

.landing-page-nav-inside-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; }

.landing-page-nav-text {
  font-size: 22px;
  line-height: 26px;
  font-family: "proxima-nova", sans-serif;
  float: left;
  display: table;
  height: 60px;
  overflow: hidden; }

.landing-page-nav-text p {
  color: black; }

.landing-page-nav-text h4 {
  font-weight: 300;
  vertical-align: middle;
  display: table-cell;
  vertical-align: middle; }

.landing-page-nav-text strong {
  font-weight: 700; }

.landing-page-nav-button {
  width: auto !important;
  height: 40px;
  line-height: 40px;
  background: #00b5e2;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  color: white;
  display: inline-block;
  font-weight: 600;
  text-align: center;
  margin: 10px auto 0 auto;
  padding: 0 30px;
  float: right; }

a.landing-page-nav-button {
  width: 100%;
  text-decoration: none;
  display: block;
  color: white !important; }

a.landing-page-nav-button:hover,
.landing-page-nav-button a:hover {
  color: white;
  opacity: .8; }

.landing-page-nav-button-explore a {
  width: auto !important;
  height: 30px !important;
  background: #00b5e2;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  color: white;
  text-decoration: none;
  display: inline-block;
  float: right;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  margin: 15px auto 0 auto;
  padding: 0 20px;
  border: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -khtml-border-radius: 5px; }

.landing-page-nav-button a:hover,
.landing-page-nav-button-explore a:hover {
  opacity: .8;
  color: white; }

.landing-page-nav-cta {
  float: right; }

.landing-page-nav-cta-image {
  margin: 20px 10px 0 30px;
  float: left; }

.landing-page-nav-cta-text {
  font-size: 14px;
  color: black;
  float: left;
  line-height: 60px; }

.landing-page-nav-cta-text a {
  font-weight: 400;
  color: black;
  text-decoration: none; }

.landing-page-nav-cta-text a:hover {
  color: black; }

.landing-page-nav-cta-wrap {
  float: left; }

.landing-page-nav.original {
  display: none; }

.landing-page-nav.cloned {
  margin-top: -60px !important;
  position: sticky !important;
  width: calc(100% + 40px) !important; }

@media screen and (max-width: 768px) {
  .landing-page-nav-inside-wrap {
    text-align: center; }

  .landing-page-nav-text {
    display: none; }

  .landing-page-nav-button,
  .landing-page-nav-button-explore {
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-top: 10px;
    float: none; }

  a.landing-page-nav-button {
    display: inline-block; }

  .landing-page-nav-button a,
  .landing-page-nav-button-explore a {
    margin: 0 auto 15px auto;
    float: none; }

  .landing-page-nav-text h4 {
    display: none; }

  .landing-page-nav-cta {
    float: none; }

  .landing-page-nav-cta-wrap-wrap {
    display: table;
    margin: 0 auto; }

  .landing-page-nav.original {
    display: block !important; }

  .landing-page-nav.cloned {
    display: none !important;
    margin-top: -22px !important; } }
@media screen and (max-width: 468px) {
  .landing-page-nav-cta-wrap-wrap {
    padding: 10px 0; }

  .landing-page-nav-cta-wrap {
    float: none;
    display: table;
    margin: 0 auto; }

  .landing-page-nav-cta-text {
    line-height: 30px; }

  .landing-page-nav-cta-image {
    margin: 5px 10px 0 0px; } }
/*** SEARCH RESULTS ***/
#isp_left_container_facets .isp_search_res_facets_container .isp_single_facet_wrapper .isp_facet_title {
  background: #3a3a3a;
  color: white;
  padding: 7px 10px;
  margin-bottom: 15px !important; }

.isp_single_facet_wrapper .isp_facet_title .isp_facet_title_name {
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  font-family: "proxima-nova", sans-serif !important; }

div#isp_left_container_facets {
  border-right: 0 !important; }

#isp_left_container_facets .isp_search_res_facets_container .isp_single_facet_wrapper {
  margin-top: 0 !important;
  box-sizing: border-box;
  border: 1px solid #cecece !important;
  margin-right: 0 !important; }

#isp_left_container_facets .isp_custom_price_container, #isp_left_container_facets .isp_search_res_facets_container .isp_facet_value,
#isp_left_container_facets .isp_search_res_facets_container .isp_facet_show_hide_values {
  padding-left: 15px !important;
  padding-right: 15px !important; }

#isp_left_container_facets .isp_search_res_facets_container .isp_facet_value a {
  font-size: 14px;
  line-height: 22px !important;
  font-family: "proxima-nova", sans-serif !important;
  color: black; }

span.isp_results_tab {
  margin-right: 10px !important;
  background: #f1f1f1 !important;
  border: 1px solid #f1f1f1 !important;
  font-family: "proxima-nova", sans-serif !important;
  font-size: 16px !important; }

span.isp_results_tab_selected {
  border-bottom-color: #fff !important;
  background: white !important; }

div.isp_center_container ul#isp_search_results_container li.isp_grid_product, ul#isp_quick_view_content_lookalike li.isp_grid_product {
  width: 31.7%; }

div.isp_center_container ul#isp_search_results_container li.isp_grid_product, ul#isp_quick_view_content_lookalike li.isp_grid_product {
  border: 0 !important;
  -webkit-box-shadow: 0 0 0 0 !important;
  -moz-box-shadow: 0 0 0 0 !important;
  -ms-box-shadow: 0 0 0 0 !important;
  box-shadow: 0 0 0 0 !important;
  background: white !important; }

li.isp_grid_product div.isp_product_info {
  text-align: center !important; }

li.isp_grid_product div.isp_product_info .isp_product_title {
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  color: #000;
  margin-top: 20px;
  text-overflow: ellipsis;
  overflow: hidden; }

li.isp_grid_product div.isp_product_info .isp_product_sku {
  width: 100%;
  font-family: "proxima-nova", sans-serif;
  font-size: 13px;
  font-weight: 300;
  text-align: center;
  color: black;
  margin: 0 auto; }

#isp_left_container_facets .isp_facet_value {
  padding-bottom: 0 !important; }

#isp_left_container_facets .isp_facet_value a .isp_facet_value_name,
#isp_left_container_facets .isp_facet_value a .isp_facet_value_name_not_selected,
#isp_left_container_facets .isp_facet_value a .isp_facet_value_name_selected,
#isp_left_container_facets .isp_facet_value a .isp_facet_value_counter {
  font-family: "proxima-nova", sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #3d4246 !important;
  line-height: 22px !important;
  text-transform: none !important;
  letter-spacing: 0 !important; }

#isp_left_container .isp_facet_value a div.isp_facet_check_box_icon {
  width: 10px !important;
  height: 10px !important;
  background-color: white !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2) !important; }

.isp_facet_check_box_icon.isp_facet_check_box_icon_not_checked {
  background-image: none !important; }

#isp_left_container .isp_facet_value a div.isp_facet_check_box_icon.isp_facet_check_box_icon_checked {
  background-image: url("https://cdn.shopify.com/s/files/1/0121/0014/1114/files/filter-checked.png?7826526391275387883") !important; }

li.isp_grid_product form.isp_add_to_cart_form {
  opacity: 1 !important;
  margin-bottom: 70px !important; }

li.isp_grid_product input.isp_add_to_cart_btn[type="submit"] {
  background: #84bd00 !important;
  height: 40px !important;
  border: 0 !important;
  font-family: "proxima-nova", sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  width: auto !important;
  max-width: 100% !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  padding: 0 30px !important; }

.isp_add_to_cart_btn:hover {
  opacity: .8 !important;
  color: white !important; }

.isp_pagination {
  font-size: 14px !important;
  font-weight: 400 !important; }

.isp_pagination .page-item .page-link {
  display: inline-block !important;
  line-height: 30px !important;
  font-weight: 400 !important;
  color: #3a3a3a !important;
  padding: 0 15px !important;
  border: 0 !important; }

.isp_pagination .page-item.active .page-link {
  background: #3a3a3a !important;
  color: white !important;
  width: 30px !important;
  height: 30px !important;
  font-weight: 400 !important;
  -moz-border-radius: 15px !important;
  -webkit-border-radius: 15px !important;
  border-radius: 15px !important;
  -khtml-border-radius: 15px !important;
  padding: 0 !important; }

.isp_pagination .page-item .page-link:hover {
  background: white !important; }

#isp_search_results_banner {
  text-align: center; }

#isp_search_results_banner img {
  max-width: 728px;
  margin: 0 auto; }

li.isp_grid_product form.isp_add_to_cart_form {
  display: block !important; }

div.isp_quick_view_content_left div.isp_sold_out_banner_container {
  width: 130px !important;
  height: 30px !important;
  position: absolute !important;
  top: 529px !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 auto !important; }

.isp_quick_view_content_left div.isp_sold_out_banner,
li.isp_grid_product div.isp_sold_out_banner {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  bottom: 50px !important;
  right: 0 !important;
  text-align: center !important;
  margin: 0 auto !important;
  width: 100% !important; }

.isp_sold_out_banner_content:before,
.isp_sold_out_banner_content:after {
  display: none !important; }

div.isp_quick_view_content_left div.isp_sold_out_banner_content,
li.isp_grid_product div.isp_sold_out_banner_content {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #fff !important;
  text-shadow: none !important;
  text-overflow: none  !important;
  text-transform: none !important;
  background: #ccc !important;
  height: 40px !important;
  line-height: 40px !important;
  width: auto !important;
  max-width: 130px !important;
  margin: 0 auto !important;
  position: absolute !important;
  bottom: 0 !important;
  padding: 0 30px !important;
  right: 0 !important;
  left: 0 !important; }

#isp_center_container .isp_center_container_header a.isp_refine_nevigation,
.isp_sorting_and_result_view_wrapper #isp_search_res_sorting_menu > li > a {
  padding: 4px 10px 2px 5px !important;
  text-decoration: none;
  outline: 0;
  border: 1px solid #eaeaea !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  color: #ababab !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  background-image: none !important; }

#isp_center_container .isp_center_container_header a.isp_refine_nevigation,
a#isp_refine_nevigation.isp_refine_nevigation {
  padding: 5px 10px 5px 5px !important;
  height: 33px !important;
  max-height: 33px !important;
  text-decoration: none;
  outline: 0;
  margin: 4px 0 0 0;
  border: 1px solid #eaeaea !important;
  display: inline-block !important; }

#isp_center_container .isp_center_container_header #isp_refine_nevigation span {
  font-size: 12px !important;
  color: #ababab !important;
  font-weight: 400 !important; }

#isp_center_container .isp_center_container_header #isp_refine_nevigation img {
  margin-top: -2px !important; }

.isp_sorting_and_result_view_wrapper #isp_search_res_sorting_menu > li > a > .caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 12px !important;
  vertical-align: middle;
  border-top: 6px solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  font-weight: 700;
  box-sizing: border-box;
  margin-left: 0;
  padding: 0;
  position: initial;
  color: black !important;
  right: 0 !important; }

.isp_facet_prev_category a {
  font-size: 14px;
  font-weight: 400;
  margin-left: 15px; }

span.isp_facet_narrowed_by_category {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  margin-left: 15px; }

.isp_facet_price .isp_custom_price_container {
  display: none !important; }

#isp_search_result_page_container .isp_center_container ul#isp_search_results_container li.isp_grid_product,
#isp_search_result_page_container .isp_center_container ul#isp_quick_view_content_lookalike li.isp_grid_product {
  height: 580px !important;
  border-bottom: 1px solid #cecece !important;
  padding-top: 60px !important; }
#isp_search_result_page_container .isp_product_info a.isp_product_image_href .isp_product_title {
  min-height: 2.6em;
  max-height: 2.6em; }
#isp_search_result_page_container .isp_product_price_wrapper {
  display: inline-block;
  padding-bottom: 0; }
  #isp_search_result_page_container .isp_product_price_wrapper .isp_product_price,
  #isp_search_result_page_container .isp_product_price_wrapper .isp_compare_at_price {
    color: black !important;
    font-family: "proxima-nova", sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    opacity: 1 !important;
    margin: 0 !important;
    display: inline-block !important; }
  #isp_search_result_page_container .isp_product_price_wrapper .isp_product_price.isp_compare_at_price_exist {
    color: #ba0c2f !important;
    font-family: "proxima-nova", sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    display: inline-block !important; }
#isp_search_result_page_container .isp_product_review .spr-icon:before {
  width: 14px;
  line-height: 13px;
  font-size: 18px; }
#isp_search_result_page_container .isp_product_review .isp_product_reviews_count {
  margin-left: 5px;
  color: black;
  font-size: 14px; }
#isp_search_result_page_container .isp_sold_out_banner_container {
  bottom: 0 !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important; }
  #isp_search_result_page_container .isp_sold_out_banner_container .isp_sold_out_banner {
    position: absolute !important;
    bottom: 50px !important;
    margin: 0 auto 20px auto !important; }

@media screen and (min-width: 750px) {
  #isp_search_result_page_container div.isp_left_container {
    width: 20% !important; }

  #isp_search_result_page_container div.isp_center_container_position {
    margin-left: 20% !important;
    padding-left: 32px !important; }

  #isp_search_box_container {
    margin-right: 20% !important;
    padding-right: 32px !important; }

  #isp_center_container .isp_center_container_header a.isp_refine_nevigation,
  a#isp_refine_nevigation.isp_refine_nevigation {
    display: none !important; } }
@media screen and (min-width: 980px) {
  div.isp_center_container ul#isp_search_results_container li.isp_grid_product, ul#isp_quick_view_content_lookalike li.isp_grid_product {
    width: 33.33333% !important;
    margin: 0 !important; } }
@media screen and (min-width: 760px) and (max-width: 979px) {
  div.isp_center_container ul#isp_search_results_container li.isp_grid_product, ul#isp_quick_view_content_lookalike li.isp_grid_product {
    width: 50% !important;
    margin: 0 !important; } }
@media screen and (min-width: 560px) and (max-width: 759px) {
  div.isp_center_container ul#isp_search_results_container li.isp_grid_product, ul#isp_quick_view_content_lookalike li.isp_grid_product {
    width: 50% !important;
    margin: 0 !important; } }
@media screen and (max-width: 559px) {
  div.isp_center_container ul#isp_search_results_container li.isp_grid_product, ul#isp_quick_view_content_lookalike li.isp_grid_product {
    width: 50% !important;
    margin: 0 !important; } }
/*** SUPPORT ***/
#support-wrap {
  max-width: 1160px;
  margin: 0 auto;
  font-family: "proxima-nova", sans-serif; }

#support-wrap h3 {
  font-size: 22px;
  color: black;
  margin: 5px 0; }

#support-wrap h4 {
  font-size: 16px;
  color: black;
  margin: 20px 0 5px 0; }

#support-wrap ul {
  margin-bottom: 0; }

#support-wrap li {
  font-size: 13px;
  line-height: 17px; }

#support-wrap li a {
  color: #00b5e2;
  font-weight: 700; }

#support-wrap img {
  max-width: 100%; }

#support-top-section,
#support-bottom-section {
  width: 100%;
  text-align: center;
  display: table;
  vertical-align: middle; }

#support-top-section {
  border-bottom: 1px solid #e8e9eb; }

#support-bottom-section {
  margin-bottom: 24px; }

.support-box-1-4 {
  width: 25%;
  display: table-cell;
  box-sizing: border-box;
  vertical-align: middle;
  padding: 20px; }

.support-box-2-4 {
  width: 50%;
  text-align: center;
  display: table-cell;
  padding: 20px;
  vertical-align: middle; }

.support-box-1-2 {
  width: 50%;
  float: left; }

#support-bottom-section .support-box-1-4 {
  text-align: left;
  vertical-align: top; }

#support-bottom-section .support-box-1-4.vertical-middle {
  vertical-align: middle; }

@media screen and (max-width: 768px) {
  #support-wrap .vertical-align {
    margin-top: 20px; }

  #support-top-section {
    padding-top: 20px; }

  .support-box-1-4 {
    width: 50%;
    float: left; }

  .support-box-2-4.icons {
    width: 100%; }

  .support-box-2-4.contact {
    padding-top: 20px;
    display: table-header-group; }

  .support-box-1-2 p {
    width: 100%; } }
/*** SHOPPING CART ***/
#shopify-section-cart-template {
  padding-top: 5px; }

.template-cart,
.template-customers\/account,
.template-customers\/order,
.template-customers\/addresses {
  font-family: "proxima-nova", sans-serif; }

.template-cart h1,
.template-customers\/account h1,
.template-customers\/order h1,
.template-customers\/addresses h1 {
  font-family: "proxima-nova", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 34px;
  color: black;
  margin-bottom: 18px;
  text-align: left; }

.template-cart p,
.template-customers\/account p,
.template-customers\/order p,
.template-customers\/addresses p {
  font-family: "proxima-nova", sans-serif;
  color: black; }

.template-cart a,
.template-customers\/login a,
.template-customers\/account a,
.template-customers\/order a,
.template-customers\/addresses a {
  font-family: "proxima-nova", sans-serif;
  font-weight: 700;
  color: #00b5e2; }

.template-customers\/addresses h1 {
  text-align: center; }

.template-customers\/order .section-header.text-center a {
  font-family: "proxima-nova", sans-serif;
  font-weight: 700;
  color: #00b5e2; }

.template-cart .btn, .template-cart .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .template-cart .shopify-payment-button__button--unbranded,
.template-customers\/account .btn,
.template-customers\/account .shopify-payment-button .shopify-payment-button__button--unbranded,
.shopify-payment-button .template-customers\/account .shopify-payment-button__button--unbranded,
.template-customers\/order .btn,
.template-customers\/order .shopify-payment-button .shopify-payment-button__button--unbranded,
.shopify-payment-button .template-customers\/order .shopify-payment-button__button--unbranded,
.template-customers\/addresses .btn,
.template-customers\/addresses .shopify-payment-button .shopify-payment-button__button--unbranded,
.shopify-payment-button .template-customers\/addresses .shopify-payment-button__button--unbranded {
  width: auto;
  height: 40px;
  color: white;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-transform: none;
  line-height: 40px;
  display: inline-block;
  padding: 0 30px;
  border: 0;
  border-radius: 0; }

.template-customers\/account .medium-up--one-third .btn, .template-customers\/account .medium-up--one-third .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .template-customers\/account .medium-up--one-third .shopify-payment-button__button--unbranded {
  background: transparent !important;
  color: #00b5e2;
  font-size: 14px;
  letter-spacing: 0;
  padding: 0;
  margin-bottom: 20px; }

.template-cart .btn--small,
.template-customers\/account .btn--small,
.template-customers\/order .btn--small,
.template-customers\/addresses .btn--small {
  height: 25px;
  font-size: 12px;
  line-height: 25px;
  margin: 0;
  padding: 0 10px; }

.template-cart .btn--small {
  background: #aaa; }

.template-cart .checkout-button {
  background: #84bd00; }

.template-cart .cart__footer {
  padding-bottom: 40px; }

.template-cart .list-view-item__title a {
  color: #000;
  font-weight: 500; }

.template-customers\/account .main-content,
.template-customers\/order .main-content {
  padding-top: 5px;
  padding-bottom: 48px; }

.template-customers\/addresses .main-content {
  padding-top: 5px; }

#customer_logout_link {
  float: left; }

p.shipping-savings-message {
  margin-bottom: 21px;
  float: right;
  color: #ba0c2f;
  font-weight: 400; }

.shipping-savings-message strong {
  font-weight: 700; }

p.shipping-savings-message-success {
  margin-bottom: 21px;
  float: right;
  color: #84bd00;
  font-weight: 400; }

.shipping-savings-message-success strong {
  font-weight: 700; }

@media screen and (min-width: 769px) {
  .template-customers\/account .medium-up--two-thirds,
  .template-customers\/order .medium-up--two-thirds {
    width: calc(66.66667% - 48px);
    margin-right: 48px; } }
@media screen and (max-width: 768px) {
  .template-customers\/account .responsive-table th, .responsive-table td {
    display: block;
    text-align: right;
    padding: 3px 0px;
    border: 0;
    margin: 0; }

  .shipping-savings-message {
    text-align: center;
    width: 100%; } }
/*** GDPR ***/
#sec-banner-div {
  border-top: 1px solid #75779f !important; }

#_ua_bannerAcceptButton {
  background: #00b5e2 !important;
  font-family: "proxima-nova", sans-serif !important;
  font-weight: 600 !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 5px 30px !important;
  margin-left: 20px !important;
  font-size: 14px !important; }

.upsell-gdpr-banner-message {
  font-family: "proxima-nova", sans-serif !important;
  font-size: 14px !important; }

.upsell-gdpr-banner-message svg {
  margin-bottom: -3px !important; }

div#_ua_bannerPrivacyContainer {
  width: 100% !important;
  max-width: 1160px;
  margin: 0 auto;
  font-size: 14px;
  padding-bottom: 40px; }

div#_ua_bannerPrivacyContainer h2 {
  font-family: "proxima-nova", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 34px;
  color: black;
  margin-bottom: 18px; }

div#_ua_bannerPrivacyContainer p {
  color: black !important;
  font-family: "proxima-nova", sans-serif; }

div#_ua_bannerPrivacyContainer a {
  color: #00b5e2;
  font-weight: 700;
  cursor: pointer; }

div#_ua_bannerPrivacyContainer button {
  width: auto !important;
  height: 40px;
  line-height: 40px;
  background: #00b5e2;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  color: white !important;
  display: inline-block;
  font-weight: 600;
  text-align: center;
  margin: 0 auto 0 auto;
  padding: 0 30px;
  border: 0; }

div#_ua_bannerPrivacyContainer button:hover {
  opacity: .8 !important; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }

  to {
    opacity: 1; } }

@-moz-keyframes fadeIn {
  from {
    opacity: 0; }

  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }

  to {
    opacity: 1; } }

.tgs-main-banner-inner-wrap {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1;
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: .25s;
  -moz-animation-duration: .25s;
  animation-duration: .25s;
  -webkit-animation-delay: .5s;
  -moz-animation-delay: .5s;
  animation-delay: .5s; }

#announcement-bar-cart {
  position: relative; }

.pdp-thumbnail-single img {
  color: transparent; }

/*** NEW NAV ICONS ***/
#nav-search-wrap {
  margin: 0 !important;
  padding: 0 !important; }

#nav-search-wrap button {
  padding: 0;
  margin: 0; }

#nav-search-wrap button img {
  width: 24px;
  height: 26px;
  float: left; }

#nav-cart {
  width: 45px;
  height: 60px;
  position: absolute;
  right: 7px;
  top: 0; }

.nav-cart-icon {
  width: 32px;
  height: 26px;
  margin-top: 17px;
  float: right; }

.nav-cart-icon img {
  width: 32px;
  height: 26px; }

#nav-cart-count {
  position: absolute;
  width: 25px;
  height: 25px;
  font-size: 11px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
  background: #6abe2a;
  color: #fff;
  margin-left: 28px;
  margin-top: 5px;
  padding: 0 2px;
  border-radius: 12px;
  border: 2px solid #fff;
  z-index: 8; }

.nav-cart-icon:hover {
  opacity: .8; }

#nav-cart a:hover {
  opacity: 1 !important; }

#nav-mobile-hamburger button img {
  width: 27px;
  height: 18px;
  float: left; }

#nav-cart-empty {
  width: 220px;
  background: black;
  color: white;
  white-space: pre-line;
  position: absolute;
  top: 60px;
  right: 0;
  padding: 20px;
  text-align: center;
  font-size: 16px;
  line-height: 20px; }

@media screen and (min-width: 981px) {
  .nav-icons {
    width: 250px !important; }

  #nav-search-wrap {
    width: calc(100% - 50px);
    border: 0;
    margin-top: 1px !important; }

  #nav-search-wrap input {
    border-bottom: 1px solid #000; }

  #nav-search-wrap .search-bar__submit, .search-header__submit {
    position: relative;
    width: 24px;
    height: 35px;
    right: 25px; }

  #nav-search-wrap .search-header__input,
  #nav-search-wrap .search-bar__input {
    padding: 12px 35px 8px 0; }

  #nav-search-wrap input {
    border-bottom: 1px solid #000; } }
@media screen and (max-width: 980px) {
  .nav-icons {
    float: right !important;
    text-align: right !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
    width: auto;
    right: 20px; }

  #nav-search-wrap,
  #nav-cart,
  #nav-mobile-hamburger {
    position: static !important;
    display: inline-block;
    float: left;
    height: 60px;
    margin: 0 !important;
    padding: 0 !important; }

  #nav-search-wrap button {
    height: 60px; }

  #nav-mobile-hamburger button {
    padding: 0;
    height: 60px;
    margin-left: 20px; }

  #nav-mobile-hamburger .mobile-nav--close .responsive-nav-open {
    display: none; }

  #nav-mobile-hamburger .mobile-nav--open .responsive-nav-x-out {
    display: none; }

  #nav-mobile-hamburger .icon-close {
    width: 27px; } }
/*** STICKY FOOTER ***/
html {
  scroll-behavior: smooth; }

html,
body {
  height: 100%; }

body {
  display: table;
  table-layout: fixed;
  width: 100%; }

#shopify-section-header,
#PageContainer,
#shopify-section-footer {
  display: table-row;
  height: 1px; }

#PageContainer {
  height: 100%; }

.grid__item #privScreenIFrame {
  min-height: 600px !important; }

.slide-ltr {
  transform: translateX(-1250px);
  animation: come-in 1.8s ease forwards; }

.slide-rtl {
  transform: translateX(1250px);
  animation: come-in 1.8s ease forwards; }

.slide-ttb {
  transform: translateY(-1250px);
  animation: come-in 1.8s ease forwards; }

.slide-btt {
  transform: translateY(1250px);
  animation: come-in 1.8s ease forwards; }

.fade-in-animate {
  -webkit-animation: 2s ease 0s normal forwards 1 fadein;
  /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: 2s ease 0s normal forwards 1 fadein;
  /* Firefox < 16 */
  -ms-animation: 2s ease 0s normal forwards 1 fadein;
  /* Internet Explorer */
  -o-animation: 2s ease 0s normal forwards 1 fadein;
  /* Opera < 12.1 */
  animation: 2s ease 0s normal forwards 1 fadein;
  opacity: 1; }

@keyframes fadein {
  0% {
    opacity: 0; }

  20% {
    opacity: 0; }

  100% {
    opacity: 1; } }

/* Firefox < 16 */
@-moz-keyframes fadein {
  0% {
    opacity: 0; }

  20% {
    opacity: 0; }

  100% {
    opacity: 1; } }

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  0% {
    opacity: 0; }

  20% {
    opacity: 0; }

  100% {
    opacity: 1; } }

/* Internet Explorer */
@-ms-keyframes fadein {
  0% {
    opacity: 0; }

  20% {
    opacity: 0; }

  100% {
    opacity: 1; } }

/*
.slide-ltr:nth-child(odd),
.slide-rtl:nth-child(odd) {
  animation-duration: 2s;
}
*/
.already-visible {
  transform: translateY(0);
  animation: none; }

@keyframes come-in {
  to {
    transform: translateY(0); } }

@media screen and (max-width: 768px) {
  .slide-ltr {
    transform: translateX(-750px);
    animation: come-in 1.2s ease forwards; }

  .slide-rtl {
    transform: translateX(750px);
    animation: come-in 1.2s ease forwards; }

  .slide-ttb {
    transform: translateY(-750px);
    animation: come-in 1.2s ease forwards; }

  .slide-btt {
    transform: translateY(750px);
    animation: come-in 1.2s ease forwards; } }
/*** DISCOVER TARGUS BLOG ***/
#blog-single-heading h1 {
  font-family: "proxima-nova", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 32px;
  color: black;
  margin: 0 0 24px 0; }

#blog-content-post-date {
  font-size: 14px;
  font-family: "proxima-nova", sans-serif;
  color: #3a3a3a;
  font-weight: 400;
  margin-bottom: 40px; }

#blog-content-post-date a {
  text-decoration: underline; }

#prs-wrap #blog-content #prs-single-image {
  margin-bottom: 20px; }

#blog-after-content {
  width: 100%;
  float: left;
  border-top: 1px solid #cecece;
  border-bottom: 1px solid #cecece;
  margin-top: 40px;
  margin-bottom: 48px;
  padding: 10px 0; }

#blog-post-previous,
#blog-post-next {
  font-size: 14px;
  margin-top: 3px; }

#blog-post-previous a,
#blog-post-next a {
  color: #3a3a3a;
  font-weight: 400;
  text-decoration: underline; }

#blog-post-previous {
  width: calc(50% - 100px);
  float: left;
  margin: 0;
  padding: 0; }

#blog-post-next {
  width: calc(50% - 100px);
  float: left;
  margin: 0;
  padding: 0; }

#blog-post-share {
  width: 200px;
  float: left;
  text-align: center; }

#blog-post-share #pdp-share-icons {
  margin-top: 0;
  float: none;
  text-align: center; }

#blog-post-share #pdp-share-icons a {
  margin-left: 7px;
  margin-right: 7px; }

#blog-after-content #blog-post-share img {
  margin-top: 4px; }

#blog-post-tags {
  width: 100%;
  float: left;
  text-align: center;
  margin-top: 16px;
  color: #cecece; }

#blog-post-tags a {
  color: #00b8e4;
  margin: 0 8px;
  font-weight: 600;
  white-space: nowrap; }

.blog-home-image {
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: center; }

#blog-content {
  margin-bottom: 0; }

#blog-content #prs-nav {
  text-align: center;
  margin-bottom: 40px; }

#blog-content #prs-nav a {
  margin: 0 5px;
  padding-left: 10px;
  padding-right: 10px;
  white-space: nowrap; }

#blog-content #prs-nav a:hover {
  border-bottom: 3px solid #00b5e2;
  color: black;
  opacity: 1; }

.tgs-blog-home #blog-content li {
  margin-left: 0; }

#prs-wrap .pdp-premium-content-new {
  border-top: 1px solid #cecece;
  padding-top: 48px; }

#prs-wrap.tgs-blog-post .pdp-premium-content-new {
  border-top: 0;
  padding-top: 0; }

#blog-content .grid {
  width: 100%;
  margin: 0;
  display: flex;
  flex-wrap: wrap; }

#blog-content .grid__item {
  width: 33.33333%;
  padding: 0 20px 48px 20px; }

#blog-content .prs-content-post-date {
  margin-top: 24px; }

#blog-content .blog-home-image {
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  position: relative; }

#blog-content .article__grid-excerpt {
  color: #3a3a3a;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  word-wrap: break-word; }

#blog-content .article__grid-meta {
  margin-bottom: 0px; }

#blog-content ul {
  margin-bottom: 15px; }

#blog-content li {
  list-style: disc;
  margin-left: 15px; }

#prs-wrap.tgs-blog-post .pdp-premium-content-new {
  border-top: 0; }

@media screen and (min-width: 469px) and (max-width: 768px) {
  #blog-content .grid__item {
    width: 50%; }

  #blog-content .article__grid-meta--has-image {
    padding-left: 0; } }
@media screen and (max-width: 468px) {
  #blog-content .grid__item {
    width: 100%; }

  #blog-content .article__grid-meta--has-image {
    padding-left: 0; }

  #pgs-banner-title,
  #pgs-banner-description {
    width: 80%; }

  #blog-content .blog-home-image {
    padding-bottom: 50%; }

  #blog-post-previous,
  #blog-post-next {
    width: auto;
    position: absolute; }

  #blog-post-previous {
    float: left; }

  #blog-post-next {
    float: right;
    right: 20px; }

  #blog-post-share {
    width: 100%;
    position: relative;
    top: 30px; }

  #blog-post-tags {
    margin-top: 40px; } }
/*** EASY LOCKDOWN ***/
#easylockdown-wrapper, #easylockdown-password-note {
  width: 100%; }

#easylockdown-wrapper #pgs-header {
  margin-top: -30px;
  text-align: left; }

#easylockdown-wrapper p.lockdown-content {
  font-weight: 600;
  color: #000;
  font-size: 20px;
  font-family: "proxima-nova";
  margin: 40px 0 10px 0; }

#easylockdown-wrapper .easylockdown-form-holder {
  margin-bottom: 20px; }

#easylockdown-wrapper #easylockdown-password-form-button {
  background: #00b5e2 !important;
  border-radius: 0 !important;
  height: 40px !important;
  line-height: 40px !important;
  font-family: "proxima-nova", sans-serif !important;
  font-size: 14px !important;
  color: white !important;
  font-weight: 600 !important;
  padding: 0 30px !important; }

.easylockdown-form-holder input,
.easylockdown-form-holder textarea,
.easylockdown-form-holder select {
  height: 40px;
  line-height: 18px; }

.easylockdown-form-holder #easylockdown-password {
  margin-right: -2px; }

.easylockdown-form-holder #easylockdown-password-form-button {
  margin-left: -2px; }

/*** BACK IN STOCK ***/
.back-in-stock-subscription {
  display: table;
  font-family: "proxima-nova", sans-serif; }

.back-in-stock-subscription {
  width: 100%;
  padding: 0 0 15px 0;
  float: left;
  margin-bottom: 30px;
  height: 100%;
  border-bottom: 1px solid #cccccc; }

.back-in-stock-subscription-text {
  width: auto;
  text-align: left;
  padding-bottom: 0;
  display: table-cell;
  vertical-align: middle; }

.back-in-stock-subscription-text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px; }

.back-in-stock-subscription-text p strong {
  color: #fe9700;
  font-weight: 700; }

.back-in-stock-subscription-button {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  width: 120px; }

#BIS_trigger {
  min-height: 44px !important;
  border-radius: 0px !important;
  font-family: "proxima-nova", sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important; }

#BIS_frame {
  z-index: 10000000000 !important; }

#pdp-no-stock-notification,
#pdp-b2b-form-notification {
  width: 100%;
  display: table;
  vertical-align: middle;
  margin-top: 10px; }

#pdp-no-stock-text,
#pdp-b2b-form-text {
  display: table-cell;
  vertical-align: middle;
  padding-right: 10px; }

#pdp-no-stock-heading,
#pdp-b2b-form-heading {
  color: #ba0c2f;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px; }

#pdp-no-stock-message,
#pdp-b2b-form-message {
  font-size: 14px;
  font-weight: 300;
  line-height: 18px; }

#pdp-no-stock-button,
#pdp-b2b-form-button {
  min-width: 110px;
  display: table-cell;
  vertical-align: middle;
  text-align: right; }

/*** CONFIGURATORS ***/
#config-wrap {
  height: 100%;
  min-height: 100%;
  margin-bottom: -51px; }

#config-nav {
  width: 100%;
  height: 60px;
  text-align: center; }

#config-nav img {
  width: 137px;
  height: 26px;
  margin-top: 17px; }

#config-header {
  padding: 0 20px; }

#config-content,
#config-faq {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px 0 20px;
  clear: both; }

#config-content h2 {
  color: black;
  font-family: "proxima-nova", sans-serif;
  font-size: 26px;
  line-height: 28px;
  font-weight: 700;
  margin: 0 0 2px 0; }

#config-content p {
  color: #3a3a3a;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px; }

#config-regions {
  width: calc(100% + 2%);
  float: left;
  margin-left: -1%;
  margin-right: -1%;
  padding-bottom: 30px; }

.config-region {
  width: 18%;
  float: left;
  text-align: center;
  margin: 1%; }

.config-region-image {
  border: 1px solid #cecece; }

.config-region-text {
  color: black;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  margin-top: 5px; }

#config-options {
  width: calc(100% + 2%);
  float: left;
  margin-left: -1%;
  margin-right: -1%; }

.config-option {
  width: 31.3333%;
  float: left;
  text-align: center;
  margin: 1%; }

.config-option-text {
  color: black;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  margin: 10px 0; }

.config-option-text a {
  color: black !important; }

#config-content-view-all {
  width: 100%;
  max-width: 1160px;
  text-align: center;
  margin: 0 auto;
  padding: 30px 20px 0 20px;
  clear: both; }

#config-content-view-all .global-button {
  height: auto;
  min-height: 40px;
  line-height: 18px;
  padding: 11px 30px; }

#config-faq {
  width: 100%;
  padding-bottom: 33px;
  clear: both; }

#config-faq h2 {
  margin-bottom: 3px;
  float: left; }

#config-faq a {
  color: #00b5e2;
  font-weight: 700; }

.config-faq-question,
.config-faq-answer {
  width: 100%;
  float: left;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  line-height: 24px; }

.config-faq-question {
  color: black;
  font-weight: 700; }

.config-faq-answer {
  color: #3a3a3a;
  font-weight: 300;
  margin-bottom: 20px; }

#config-push,
#config-footer {
  height: 50px; }

#config-footer {
  text-align: center;
  line-height: 50px;
  padding: 0 20px;
  clear: both; }

#config-disclaimer {
  font-size: 12px;
  color: #3a3a3a;
  max-width: 1160px;
  padding: 0 20px;
  margin: 0 auto;
  border-top: 1px solid #cecece; }

@media screen and (min-width: 469px) and (max-width: 768px) {
  #config-regions {
    width: calc(100% + 4%);
    margin-left: -2%;
    margin-right: -2%; }

  .config-region {
    width: 46%;
    margin: 2% 2% 10px 2%; }

  .config-option {
    width: 98%;
    margin-bottom: 33px; }

  #config-content-view-all {
    padding: 7px 20px 0 20px; } }
@media screen and (max-width: 468px) {
  .config-region {
    width: 98%;
    margin-bottom: 10px; }

  .config-option {
    width: 98%;
    margin-bottom: 33px; }

  #config-content-view-all {
    padding: 7px 20px 0 20px; } }
#pgs-wrap #config-content,
#pgs-wrap #config-faq {
  padding-left: 0;
  padding-right: 0; }

#pgs-wrap #config-faq {
  padding-bottom: 0; }

#pgs-wrap #config-push {
  height: 0; }

.lightbox-modal {
  max-width: 80vw;
  max-height: 80vh;
  min-width: calc(50vw - 60px);
  min-height: calc(50vh - 40px);
  margin: 0 auto; }

.lightbox-modal iframe {
  width: 100%;
  height: 100%;
  min-width: 70vw;
  min-height: 70vh;
  overflow: auto; }

#config-content-3m {
  width: 100%;
  text-align: center;
  display: inline-block;
  margin-top: 15px; }

#prv-replacement {
  width: 100%;
  text-align: center;
  border: 1px solid #cecece;
  display: inline-block;
  margin-top: 25px;
  padding-bottom: 0px; }

.prv-brand-select {
  margin-bottom: 30px; }

#prv-replacement h2 {
  margin-top: 30px;
  margin-bottom: 25px; }

#prv-replacement h3 {
  color: #000;
  margin: 0 0 25px 0;
  padding: 0;
  text-decoration: underline; }

#prv-replacement .prv-sku-item h3,
#prv-replacement .prv-sku-item h3 a {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  margin: 0;
  padding: 0;
  text-decoration: none; }

#prv-replacement .prv-sku-item h4 {
  color: #000;
  font-size: 13px;
  font-weight: 300;
  margin: 0;
  padding: 0; }

#prv-replacement .prv-sku-item h5 {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  padding: 0; }

#prv-replacement .prv-sku-item .prv-more-info {
  margin: 3px 0 30px 0;
  padding: 0; }

@media screen and (max-width: 768px) {
  #config-content-3m {
    margin-bottom: 23px; } }
/*** FOOTER EMAIL FORM ***/
#mc_embed_signup {
  background: transparent !important; }

#mc_embed_signup input.email,
.mc_embed_signup input.email {
  font-family: "proxima-nova", sans-serif !important;
  font-size: 14px !important;
  border: 1px solid #cecece !important;
  border-radius: 0 !important;
  height: 40px !important;
  padding: 0 10px !important;
  margin-right: -5px !important; }

#mc_embed_signup .global-button,
.mc_embed_signup .global-button {
  margin-left: -0px !important;
  border-top: 1px solid #00b5e2;
  border-bottom: 1px solid #00b5e2;
  -webkit-appearance: none; }

@media screen and (max-width: 768px) {
  #mc_embed_signup input.email,
  .mc_embed_signup input.email {
    width: auto !important; }

  #mc_embed_signup .clear,
  .mc_embed_signup .clear {
    display: inline-block !important;
    width: auto !important; }

  #mc_embed_signup .button,
  .mc_embed_signup .button {
    width: auto !important; } }
/*** MODAL EMAIL FORM ***/
.mc-modal,
.mc-layout__modalContent {
  -ms-overflow-style: none; }

@media screen and (max-width: 768px) {
  .mc-banner {
    top: auto !important;
    bottom: 50px !important;
    max-width: calc(100% - 60px);
    margin: 0 30px; } }
/*** BLOG SUBSCRIBE FORM ***/
#blog-subscribe {
  width: 100%;
  background: #f1f1f1;
  margin-top: 30px;
  padding: 4px 20px 7px 20px; }

#blog-subscribe #mc_embed_signup .global-button,
#blog-subscribe .mc_embed_signup .global-button {
  -webkit-appearance: none; }

#blog-subscribe #mc_embed_signup_scroll h2,
#blog-subscribe .mc_embed_signup_scroll h2 {
  font-family: "proxima-nova", sans-serif !important;
  font-size: 22px !important; }

#blog-subscribe .input-group strong {
  font-family: "proxima-nova", sans-serif !important;
  font-size: 16px !important;
  display: block;
  margin-top: -5px; }

#blog-subscribe .input-group li {
  margin: 20px 7px 0 7px;
  display: inline-block; }

#blog-subscribe .input-group input,
#blog-subscribe .input-group label {
  font-family: "proxima-nova", sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  float: left; }

#blog-subscribe .input-group input {
  width: 15px;
  height: 15px;
  margin-top: -2px;
  padding: 0; }

#blog-subscribe #mc_embed_signup div.response,
#blog-subscribe .mc_embed_signup div.response {
  width: 100% !important; }

#blog-subscribe #mc_embed_signup div#mce-responses,
#blog-subscribe .mc_embed_signup div#mce-responses {
  width: calc(100% + 40px) !important;
  margin: 0 -20px !important;
  background: #f1f1f1; }

#blog-subscribe #mc_embed_signup div.response,
.blog-subscribe .mc_embed_signup div.response {
  margin: 0 !important;
  padding: 8px 0 30px 0 !important; }

#blog-subscribe #mc_embed_signup #mce-success-response,
#blog-subscribe .mc_embed_signup #mce-success-response {
  color: #84bd00 !important;
  font-family: "proxima-nova", sans-serif !important;
  font-size: 16px !important; }

#blog-subscribe .mc-field-group.input-group ul {
  padding: 0;
  margin: 0; }

@media screen and (max-width: 468px) {
  #blog-subscribe .input-group li {
    width: 50%;
    float: left;
    margin-left: 0;
    margin-right: 0; } }
/*** PDP IMAGE GALLERY ***/
.MagicToolboxSelectorsContainer {
  margin-top: 35px; }

.MagicToolboxSelectorsContainer a {
  margin: 0 4px 12px 4px !important; }

.MagicToolboxSelectorsContainer a > img {
  width: 60px;
  height: 60px; }

.MagicToolboxSlides-arrow {
  display: none; }

a[data-zoom-id] img, .mz-thumb img {
  box-shadow: 0 0 0 0 !important; }

.mz-expand-thumbnails {
  height: 65px !important;
  padding: 0 !important;
  margin-bottom: 10px !important; }

.mz-expand-thumbnails .magic-thumbs .magic-thumb {
  padding: 0 !important;
  margin: 0 5px; }

.mz-expand-thumbnails .magic-thumb > img {
  box-shadow: 0 0 0 0 !important;
  border: 0;
  height: 60px !important; }

.magic-thumbs ul {
  margin-top: 0px !important; }

.magic-thumbs ul li {
  height: auto !important;
  background: #fff; }

.active-magic-selector img,
.mz-expand-thumbnails .magic-thumb-selected img {
  border: 1px solid #cecece !important;
  filter: brightness(100%) !important;
  -webkit-filter: brightness(100%) !important; }

.mz-expand .mz-expand-stage.with-thumbs .mz-image-stage {
  padding-top: 50px; }

.mz-expand .mz-zoom-window {
  top: 0 !important;
  left: 0 !important; }

.mz-expand-stage {
  background: #fff; }

.mz-zoom-window img {
  padding-bottom: 20px; }

.white-bg {
  background: #fff !important;
  z-index: 2342354845 !important; }

.mz-expanded-view-open #blk-overlay {
  background: rgba(0, 0, 0, 0.8);
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1 !important; }

.mz-expand {
  margin: auto;
  max-width: 100vw;
  max-height: 100vh;
  border-top: 5vh solid transparent;
  border-bottom: 5vh solid transparent;
  border-left: 5vw solid transparent;
  border-right: 5vw solid transparent;
  background: transparent !important; }

.mz-figure.white-bg.mz-hover-zoom.mz-ready.mz-no-zoom {
  background: transparent !important; }

.active-magic-slide {
  position: relative;
  width: 100%;
  padding-bottom: 100%; }

.mz-hover-zoom.mz-no-zoom {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.mz-hover-zoom.mz-no-zoom img {
  position: absolute !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto !important; }

.mz-loading {
  display: none !important; }

@media screen and (max-width: 768px) {
  #pdp-image-gallery img:hover,
  #pdp-image-gallery a:hover {
    opacity: 1 !important; } }
.MagicToolboxSlide.active-magic-slide {
  z-index: 1 !important; }

/*** ANNOUNCEMENT BAR HOLIDAYS ***/
/***

#announcement-bar-wrap {
  background: #000;
}
  
#announcement-bar, #announcement-bar p, #announcement-bar a {
    color: #fff;
}

***/
.promo-icon-wrap {
  float: left;
  position: absolute;
  margin-top: -2px;
  width: 42px;
  height: 22px; }

#promo-icon {
  float: left;
  position: absolute;
  margin-top: -2px;
  width: 42px;
  height: 22px; }

#announcement-bar-promo-inside-wrap {
  min-width: 300px; }

@media screen and (max-width: 980px) {
  #announcement-bar-promo-inside-wrap,
  #announcement-bar-promo-inside-wrap-mobile {
    margin: 0 auto; } }
/*** BOLD RECOMMEND ***/
.bold-recommend__wrap {
  max-width: 1160px !important;
  font-family: "proxima-nova", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: black;
  line-height: 28px;
  text-align: center;
  padding: 0 35px; }

.bold-recommend__wrap h2 {
  background: white;
  padding: 0 20px;
  text-align: center;
  font-size: 26px; }

.bold-recommend__wrap + * {
  border-top: solid 1px #cecece !important;
  padding-top: 28px !important;
  margin-top: -14px !important; }

.bold-recommend__img {
  max-width: 160px;
  padding-bottom: 60% !important;
  margin: 0 auto; }

.bold-recommend__wrap .bold-recommend__product h4 {
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 1 !important;
  margin: 5px 0 -2px 0 !important; }

.bold-recommend__wrap h5 {
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #3a3a3a;
  direction: rtl;
  opacity: 1 !important; }

.bold-recommend__grid {
  margin-left: 0 !important; }

/*** HOME TEXT WITH BG COLOR ***/
.tgs-main-text-block {
  width: 100%;
  margin: 32px 0 20px 0;
  text-align: center;
  background: orange;
  padding: 20px;
  float: left; }

.tgs-main-text-block .hero__inner {
  margin: 0 auto;
  display: inline-block; }

.tgs-main-text-block .hero__inner {
  padding: 30px 0; }
  .tgs-main-text-block .hero__inner .tgs-main-image-subtext {
    max-width: 960px; }
    .tgs-main-text-block .hero__inner .tgs-main-image-subtext:last-child {
      padding-bottom: 0;
      margin-bottom: 0; }

.tgs-main-image-subtext {
  color: #3a3a3a;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px; }

#shopify-section-1545344303574 {
  /*    border-top: 1px solid #cecece;
      margin-top: 8px; */
  padding-top: 24px; }

#shopify-section-1545344478254 {
  padding-bottom: 31px; }

/*** HOME PREMIUM FEATURES ***/
.custom-content {
  display: table;
  vertical-align: middle;
  padding-top: 16px;
  padding-bottom: 16px; }

.custom-content-image,
.custom-content-text {
  display: table-cell;
  vertical-align: middle;
  width: 50%; }

.custom-content-text:nth-child(odd),
.custom-content-image:nth-child(odd) {
  padding-right: 20px; }

.custom-content-text:nth-child(even),
.custom-content-image:nth-child(even) {
  padding-left: 20px; }

.custom-content h4 {
  color: black;
  font-family: "proxima-nova", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 28px;
  margin: 0 0 2px 0;
  text-align: left; }

.custom-content p {
  color: #3a3a3a;
  font-family: "proxima-nova", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  margin-top: 0;
  margin-bottom: 0; }

.custom-content a {
  color: #00b5e2;
  font-weight: 700; }

.custom-content img {
  width: 100% !important; }

@media screen and (max-width: 768px) {
  .custom-content-image {
    display: table-header-group;
    vertical-align: middle;
    width: 100%;
    padding: 0; }

  .custom-content-image img {
    margin-bottom: 7px; }

  .custom-content-text {
    display: table-footer-group;
    vertical-align: middle;
    width: 100%;
    padding: 0;
    text-align: center; }

  .custom-content h4 {
    text-align: center; }

  .custom-content p {
    font-size: 13px;
    line-height: 16px; } }
@media screen and (min-width: 769px) and (max-width: 1160px) {
  .custom-content p,
  .tgs-main-banner-subtext span,
  .tgs-main-banner-subtext p {
    font-size: 1.7vw;
    line-height: 1.2em; } }
/*** LOYALTY LION ***/
.lion-action-button,
.form-vertical .btn,
.form-vertical .shopify-payment-button .shopify-payment-button__button--unbranded,
.shopify-payment-button .form-vertical .shopify-payment-button__button--unbranded {
  border-radius: 0 !important;
  height: 40px !important;
  line-height: 40px !important;
  background: #00b5e2 !important;
  font-family: "proxima-nova", sans-serif !important;
  font-size: 14px !important;
  color: white !important;
  display: inline-block !important;
  font-weight: 600 !important;
  text-align: center !important;
  margin: 0 auto 0 auto !important;
  padding: 0 30px !important;
  text-transform: none !important; }

.lion-action-button:hover,
.form-vertical .btn:hover,
.form-vertical .shopify-payment-button .shopify-payment-button__button--unbranded:hover,
.shopify-payment-button .form-vertical .shopify-payment-button__button--unbranded:hover {
  opacity: .8 !important; }

.form-vertical .btn, .form-vertical .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .form-vertical .shopify-payment-button__button--unbranded {
  margin-bottom: 40px !important; }

.lion-loyalty-widget__body,
.lion-loyalty-widget__title,
.lion-loyalty-panel-sidebar {
  background: #84bd00 !important; }

.lion-loyalty-widget__title {
  font-family: "proxima-nova", sans-serif !important;
  font-size: 16px !important; }

.lion-loyalty-widget__body {
  border-left: 1px solid #5cae1e !important;
  border-top: 1px solid #5cae1e !important;
  border-right: 1px solid #5cae1e !important; }

.lion-loyalty-splash__title {
  font-family: "proxima-nova", sans-serif !important;
  padding: 14px !important; }

#loyaltylion .lion-loyalty-splash__heading {
  background-color: #4e008e;
  border-bottom: 1px solid #4e008e; }

#loyalty-logo {
  max-width: 650px;
  margin: 45px auto; }

#loyalty-banner img {
  display: block; }

#loyalty-intro-text {
  text-align: center;
  padding: 40px 20px;
  background: #f1f1f1; }

#loyalty-intro-text h2 {
  max-width: 800px;
  color: black;
  font-size: 26px;
  font-family: "proxima-nova", sans-serif;
  font-weight: 600;
  line-height: 30px;
  margin: 0 auto 20px auto; }

#loyalty-intro-text p {
  color: black;
  font-family: "proxima-nova", sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin: 10px auto 0 auto; }

#loyalty-icons {
  text-align: center;
  padding: 40px 0 20px 0;
  border-bottom: 1px solid #cecece; }

.loyalty-icon {
  width: 180px;
  text-align: center;
  display: inline-block;
  margin: 0 40px 20px 40px; }

.loyalty-icon-image {
  width: 180px;
  height: 144px; }

.loyalty-icon-text {
  color: black;
  font-size: 20px;
  line-height: 24px;
  margin-top: 10px; }

#loyalty-share {
  width: 100%;
  text-align: center;
  padding: 40px 20px;
  border-bottom: 1px solid #cecece; }

#loyalty-share h3 {
  color: black;
  font-size: 26px;
  font-family: "proxima-nova", sans-serif;
  font-weight: 600;
  line-height: 30px;
  margin: 0 auto;
  text-transform: uppercase; }

#loyalty-share p {
  color: black;
  font-family: "proxima-nova", sans-serif;
  font-size: 20px;
  font-weight: 500; }

.loyalty-share-icon {
  width: 78px;
  height: 78px;
  margin: 0 15px;
  display: inline-block; }

#loyalty-login {
  width: 100%;
  text-align: center;
  padding: 40px 20px 20px 20px; }

#loyalty-login p {
  color: black;
  font-family: "proxima-nova", sans-serif;
  font-size: 20px;
  font-weight: 500; }

#loyalty-login .global-button {
  padding: 0; }

#loyalty-login a.global-button {
  padding: 0 30px; }

#loyalty-login-button {
  display: inline-block;
  margin: 0 10px 20px 10px; }

#loyalty-join-button {
  display: inline-block;
  margin: 0 10px 20px 10px; }

.loyalty-view-rewards-text {
  background: #00b5e2;
  color: #fff;
  padding: 9px 15px;
  border: 1px solid #00b5e2;
  display: inline; }

.loyalty-view-rewards-points {
  padding: 9px 15px;
  border: 1px solid #00b5e2;
  display: inline;
  font-weight: 400; }

.template-cart #loyaltylion,
.template-customers\/account #loyaltylion,
.template-customers\/order #loyaltylion,
.template-customers\/addresses #loyaltylion {
  display: none; }

/*** REMOVE AFTER GWP PROMO ***/
#pdp-before-buy-button, #pdp-before-buy-button p {
  color: #ba0c2f; }

#shopify-section-article-template #prs-wrap {
  margin: 0px auto 0 auto; }

#shopify-section-article-template #prs-wrap #plp-breadcrumb {
  line-height: unset;
  margin: 0px 0px 30px 0px;
  padding: 10px 20px;
  height: auto;
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  left: 50%; }

/*** SITEMAP ***/
.sitemap-list-wrap {
  width: 33.3333%;
  float: left;
  padding-right: 20px; }

.sitemap-list-wrap h2 {
  padding-right: 20px;
  margin-bottom: 10px !important; }

.sitemap-list-wrap ul {
  margin-left: 0;
  padding-left: 0;
  list-style: disc inside none; }

@media screen and (max-width: 768px) {
  .sitemap-list-wrap {
    width: 100%;
    float: left;
    padding-right: 0; } }
ul.content-list {
  margin-left: 4%; }

.content-list li {
  list-style: disc;
  color: #788188;
  font-size: 16px;
  font-weight: 300; }

#pdp-price-wrap {
  width: 100%;
  display: table;
  vertical-align: middle; }

#pdp-prices {
  display: table-cell;
  vertical-align: middle; }

#pdp-free-shipping {
  display: table-cell;
  vertical-align: middle;
  float: none;
  text-align: right; }

#pdp-after-buy-button {
  width: 100%;
  display: table;
  vertical-align: middle; }

#pdp-share-icons {
  width: auto !important;
  vertical-align: middle;
  text-align: right; }

#pdp-share-icons a,
#pdp-share-icons img {
  vertical-align: middle; }

/*** PRODUCT COMPARE ***/
#SP_CmpHtml {
  max-width: 1160px;
  margin: 0 auto; }

.container-fulid {
  padding: 0; }

#SP_CmpHtml .sa_cmp_title {
  font-family: "proxima-nova", sans-serif !important;
  font-size: 32px !important;
  font-weight: 800 !important;
  line-height: 34px !important;
  color: black !important;
  margin-top: 26px !important;
  margin-bottom: 18px !important; }

.sp_compare_tbl .sp_close {
  line-height: 21px !important;
  font-size: 12px !important; }

#sa_ca_wrapper .ca_bottom .ca_flap {
  border-radius: 0 !important; }

#sa_ca_wrapper .ca_bottom .ca_flap span {
  font-family: "proxima-nova", sans-serif !important; }

#sa_ca_wrapper .sa_ca_idelete {
  line-height: 14px !important; }

#sa_ca_wrapper .sa_ca_icontainer .sa_ca_summary > a {
  font-family: "proxima-nova", sans-serif !important;
  font-size: 12px !important;
  color: black !important; }

#sa_ca_wrapper .sa_ca_icontainer .sa_ca_summary .sa_ca_ptitle {
  font-family: "proxima-nova" !important;
  font-weight: 700 !important; }

#sa_ca_wrapper .sa_ca_icontainer .sa_ca_summary .money {
  font-family: "proxima-nova", sans-serif !important;
  font-weight: 400 !important;
  color: #3a3a3a !important; }

#sa_ca_wrapper .compare-controls .btn, #sa_ca_wrapper .compare-controls .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #sa_ca_wrapper .compare-controls .shopify-payment-button__button--unbranded {
  font-family: "proxima-nova", sans-serif !important;
  letter-spacing: 0 !important;
  border-radius: 0 !important;
  box-shadow: 0 0 0 0 !important;
  text-transform: none !important; }

#sa_ca_wrapper .compare-controls .ca_Rmvall {
  font-family: "proxima-nova", sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: none !important; }

.page-container .sp_compare_tbl ul.sp_product_heading > li {
  background: #4e008e !important;
  color: white !important; }

.sp_compare_tbl ul.sp_product_con li {
  list-style: disc outside !important;
  margin-left: 10px !important; }

#sp_product .sp_add_to_cart input {
  border-radius: 0;
  background: #84bd00; }

#sp_product .sp_add_to_cart input:hover {
  opacity: .8; }

#sp_product .sp_add_to_cart .sa_cmp_soldout {
  background: #cccccc !important;
  opacity: 1 !important; }

#pdp-compare {
  vertical-align: middle;
  height: 30px !important;
  text-align: right;
  display: inline-block;
  width: auto !important; }

#pdp-compare input {
  background: #3a3a3a !important;
  font-family: "proxima-nova", sans-serif !important;
  font-size: 12px;
  font-weight: 600;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  margin: 0;
  -webkit-appearance: none !important; }

.isp_grid_product .plp-compare {
  position: absolute;
  bottom: 25px; }

.plp-product-box .plp-compare {
  margin-top: 15px;
  margin-bottom: -15px; }

.plp-compare {
  width: 100%;
  margin: 0 auto;
  text-align: center; }

.plp-compare input {
  margin-right: 5px; }

.plp-compare span {
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-left: 5px;
  padding-right: 5px; }

.sp_product_heading .sp_laptopcompartment,
.sp_product_heading .sp_protectionlevel,
.sp_product_heading .sp_taacompliant,
.sp_product_heading .sp_tabletcompartment,
.sp_product_heading .sp_upc,
.sp_product_heading .sp_workswith {
  visibility: hidden; }

.sp_product_heading .sp_laptopcompartment:after,
.sp_product_heading .sp_protectionlevel:after,
.sp_product_heading .sp_taacompliant:after,
.sp_product_heading .sp_tabletcompartment:after,
.sp_product_heading .sp_upc:after,
.sp_product_heading .sp_workswith:after {
  visibility: visible;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #4e008e;
  padding: 8px; }

.sp_product_heading .sp_laptopcompartment:after {
  content: 'Laptop Compartment'; }

.sp_product_heading .sp_protectionlevel:after {
  content: 'Protection Level'; }

.sp_product_heading .sp_taacompliant:after {
  content: 'TAA Compliant'; }

.sp_product_heading .sp_tabletcompartment:after {
  content: 'Tablet Compartment'; }

.sp_product_heading .sp_upc:after {
  content: 'UPC'; }

.sp_product_heading .sp_workswith:after {
  content: 'Works With'; }

@media screen and (min-width: 769px) and (max-width: 960px) {
  #pdp-prices,
  #pdp-free-shipping {
    width: 100%;
    display: inline-block;
    text-align: left; } }
@media screen and (max-width: 468px) {
  #pdp-prices,
  #pdp-free-shipping {
    min-width: 100%;
    display: inline-block;
    text-align: center; }

  #pdp-compare {
    width: 100% !important;
    text-align: center;
    margin-bottom: 20px; }

  #pdp-share-icons {
    text-align: center;
    float: none; } }
@media screen and (max-width: 767px) {
  #SP_CmpHtml .sp_compare_tbl .sa_prev {
    font-size: 24px !important;
    background: white !important;
    color: black !important;
    font-family: "slick-icons, sans-serif" !important;
    -webkit-appearance: none !important; }

  #SP_CmpHtml .sp_compare_tbl .sa_next {
    font-size: 24px !important;
    background: white !important;
    color: black !important;
    margin-left: 10px !important;
    font-family: "slick-icons, sans-serif" !important;
    -webkit-appearance: none !important; }

  .sa_prev:disabled, .sa_next:disabled {
    opacity: 0.1 !important; }

  .sp_product_heading .sp_laptopcompartment:after,
  .sp_product_heading .sp_protectionlevel:after,
  .sp_product_heading .sp_taacompliant:after,
  .sp_product_heading .sp_tabletcompartment:after,
  .sp_product_heading .sp_workswith:after {
    padding: 5px; } }
@media screen and (min-width: 1193px) {
  .sp_compare_tbl .sp_product_heading {
    width: 15% !important; }

  .sp_compare_tbl .sp_product {
    width: 85% !important; }

  .sp_product_heading .sp_laptopcompartment:after,
  .sp_product_heading .sp_protectionlevel:after,
  .sp_product_heading .sp_taacompliant:after,
  .sp_product_heading .sp_tabletcompartment:after,
  .sp_product_heading .sp_workswith:after {
    padding: 12px; } }
/*** CART DROPDOWN ***/
#cart-dropdown {
  width: 150%;
  position: absolute;
  z-index: 9999;
  background: white;
  text-align: left;
  margin-top: 9px;
  border: 1px solid #e8e9eb;
  white-space: normal;
  right: 0; }

#cart-dropdown-heading {
  width: 100%;
  float: left;
  padding: 5px 10px;
  background: #4e008e;
  color: white; }

#cart-dropdown-x-out:hover {
  opacity: .7;
  cursor: pointer; }

.cart-dropdown-product {
  width: calc(100% - 20px);
  background: white;
  text-align: left;
  display: table;
  vertical-align: middle;
  margin: 0 10px;
  padding-top: 5px; }

.cart-dropdown-product-wrap {
  width: 100%;
  border-bottom: 1px solid #e8e9eb;
  padding-top: 5px;
  padding-bottom: 5px;
  display: table; }

.cart-dropdown-product-wrap a {
  color: black; }

.cart-dropdown-remove {
  display: table-cell;
  vertical-align: middle;
  width: 15px; }

.cart-dropdown-image {
  display: table-cell;
  vertical-align: middle;
  width: 50px; }

.cart-dropdown-image img {
  width: 50px;
  height: 50px;
  vertical-align: middle; }

.cart-dropdown-title-price {
  display: table-cell;
  vertical-align: middle;
  padding-right: 10px;
  padding-left: 10px; }

.cart-dropdown-title {
  width: 100%;
  float: left;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px; }

.cart-dropdown-price {
  width: 100%;
  float: left;
  font-size: 13px;
  font-weight: 400; }

.cart-dropdown-quantity {
  display: table-cell;
  vertical-align: middle;
  width: 30px;
  text-align: center; }

.cart-dropdown-quantity input {
  width: 30px;
  height: 30px;
  font-size: 12px; }

.cart-dropdown-arrow-up {
  border-color: transparent transparent #3a3a3a;
  border-style: solid;
  border-width: 6px;
  height: 0px;
  width: 0px;
  display: inline-block; }

.cart-dropdown-arrow-down {
  border-color: #3a3a3a transparent transparent;
  border-style: solid;
  border-width: 6px;
  height: 0px;
  width: 0px;
  margin-top: 7px;
  display: inline-block; }

.cart-dropdown-qty-value {
  border: 1px solid #e2e2e2;
  padding: 2px 0;
  font-size: 14px; }

#cart-dropdown-total {
  width: 100%;
  float: left;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  padding: 10px 10px 0 10px; }

#cart-dropdown-shipping-message {
  width: 100%;
  float: left;
  padding: 5px 10px;
  font-size: 12px;
  text-align: center;
  font-style: italic; }

#cart-dropdown-buttons {
  width: 100%;
  float: left;
  text-align: center;
  padding: 10px 20px 20px 20px; }

#cart-dropdown-view-cart {
  width: calc(50% - 10px);
  height: 40px;
  line-height: 40px;
  background: #3a3a3a;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  color: white;
  display: inline-block;
  font-weight: 600;
  text-align: center;
  margin: 0 auto 0 auto;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  float: left;
  margin-right: 10px; }

#cart-dropdown-checkout {
  width: calc(50% - 10px);
  height: 40px;
  line-height: 40px;
  background: #84bd00;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  color: white;
  display: inline-block;
  font-weight: 600;
  text-align: center;
  margin: 0 auto 0 auto;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  float: none;
  margin-left: 10px; }

#cart-dropdown-view-cart a {
  color: white;
  width: 100%;
  display: inline-block; }

#cart-dropdown-checkout input {
  font-size: 14px;
  line-height: 40px;
  padding: 0;
  margin: 0;
  border: 0;
  background: #84bd00;
  color: white;
  width: 100%;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none; }

#cart-dropdown-view-cart:hover,
#cart-dropdown-view-cart a:hover,
#cart-dropdown-checkout:hover,
#cart-dropdown-checkout input:hover {
  color: white;
  opacity: .8; }

#message input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

#cart-button-wrap {
  width: 100%;
  display: table;
  margin-top: 15px;
  margin-bottom: 10px; }

#pdp-quantity-wrap {
  width: auto;
  float: none;
  display: table-cell;
  vertical-align: middle; }

#cart-button {
  width: 100%;
  display: table-cell; }

#cart-button a[disabled] {
  width: 100% !important;
  pointer-events: none; }

#cart-button .btn:focus, #cart-button .shopify-payment-button .shopify-payment-button__button--unbranded:focus, .shopify-payment-button #cart-button .shopify-payment-button__button--unbranded:focus,
#cart-button .product-form__cart-submit:focus,
#cart-button .shopify-payment-button .shopify-payment-button__button--unbranded:focus,
.shopify-payment-button #cart-button .shopify-payment-button__button--unbranded:focus {
  opacity: 1; }

#cart-button .btn:hover, #cart-button .shopify-payment-button .shopify-payment-button__button--unbranded:hover, .shopify-payment-button #cart-button .shopify-payment-button__button--unbranded:hover,
#cart-button .product-form__cart-submit:hover,
#cart-button .shopify-payment-button .shopify-payment-button__button--unbranded:hover,
.shopify-payment-button #cart-button .shopify-payment-button__button--unbranded:hover {
  opacity: .7; }

.lity {
  z-index: 999999999; }

@media screen and (min-width: 469px) {
  .lity #message {
    min-width: 300px;
    max-width: 500px; } }
@media screen and (max-width: 980px) {
  #cart-dropdown {
    width: calc(100vw - 40px);
    max-width: 400px;
    top: 47px;
    margin-top: 12px;
    z-index: 999999; } }
/*** ISTORE ***/
#istore-collection #pgs-banner-title h1,
#istore-collection #pgs-banner-description,
#istore-collection #pgs-banner-description p {
  color: #3a3a3a; }

#istore-collection #pgs-banner-description img {
  width: 25vw;
  max-width: 300px; }

#istore-collection #plp-premium-content-heading,
#istore-collection #plp-premium-content-heading h2,
#istore-collection #collection .pagination .page.current,
#istore-collection #prs-content #plp-pagination .page.current,
#istore-collection #blog-content #plp-pagination .page.current {
  background: #3a3a3a; }

@media screen and (max-width: 768px) {
  #istore-collection #pgs-hero__image::after {
    background: transparent; }

  #istore-collection #pgs-banner-description img {
    width: 50vw;
    max-width: 200px; } }
/*** PDP REVIEWS ***/
#pdp-review-snippet {
  margin-bottom: 10px; }

#pdp-review-snippet .spr-badge {
  float: left; }

#pdp-review-snippet .spr-badge-caption {
  font-size: 14px; }

#pdp-review-snippet #pdp-reviews-read-write {
  display: block;
  clear: both; }

#pdp-review-snippet #pdp-reviews-read-write a {
  color: #00b5e2;
  font-weight: 700;
  font-size: 14px; }

.spr-header-title {
  display: none; }

.spr-summary-actions-newreview {
  color: #00b5e2;
  font-weight: 700; }

.spr-icon.spr-icon-star::before {
  color: #ffcd00; }

.spr-icon.spr-icon-star-half-alt::before {
  content: '\e802';
  color: #ffcd00; }

.spr-icon.spr-icon-star-empty::before {
  content: '\e800';
  color: #cccccc;
  opacity: 1; }

#pdp-reviews {
  margin-bottom: 50px; }

#pdp-reviews .spr-summary-caption {
  display: inline-block;
  margin-bottom: 10px; }

#pdp-reviews .spr-summary-actions-newreview {
  width: auto !important;
  height: 40px;
  line-height: 40px;
  background: #00b5e2;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  color: white !important;
  display: inline-block;
  font-weight: 600;
  text-align: center;
  margin: 0 auto 0 auto;
  padding: 0 30px; }

#pdp-reviews .spr-form-message-error {
  background: #ba0c2f; }

#pdp-reviews .spr-form-input-error,
#pdp-reviews input[type="text"].spr-form-input-error,
#pdp-reviews input[type="email"].spr-form-input-error {
  border-color: #ba0c2f; }

#pdp-reviews .spr-form-message-success {
  padding: 0;
  margin: 0;
  color: #84bd00;
  font-weight: 700; }

#pdp-reviews .pdp-no-reviews {
  font-size: 18px;
  margin-top: 3px;
  display: inline-block; }

#pdp-reviews .spr-pagination-page {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  padding: 0 15px;
  margin-top: 10px; }

#pdp-reviews .spr-pagination-page a {
  color: #3a3a3a; }

#pdp-reviews .spr-pagination-page.is-active {
  background: #3a3a3a;
  color: white;
  width: 30px;
  height: 30px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  -khtml-border-radius: 15px;
  padding: 0;
  display: inline-block;
  line-height: 30px; }

#pdp-reviews .spr-pagination-prev,
#pdp-reviews .spr-pagination-next {
  text-indent: -9999px;
  line-height: 0;
  position: relative; }

#pdp-reviews .spr-pagination-prev a::after {
  content: "<";
  text-indent: 0;
  display: block;
  line-height: initial;
  font-size: 14px;
  padding-right: 10px; }

#pdp-reviews .spr-pagination-next a::after {
  content: ">";
  text-indent: 0;
  display: block;
  line-height: initial;
  font-size: 14px;
  padding-left: 10px; }

#pdp-reviews .btn, #pdp-reviews .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button #pdp-reviews .shopify-payment-button__button--unbranded {
  width: auto !important;
  height: 40px;
  line-height: 40px;
  background: #00b5e2;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  color: white !important;
  display: inline-block;
  font-weight: 600;
  text-align: center;
  margin: 0 auto 0 auto;
  padding: 0 30px;
  -webkit-appearance: none;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 0; }

/*** PLP REVIEWS ***/
.plp-review-snippet {
  width: 100%;
  text-align: center;
  display: inline-block;
  margin: 8px 0 0 0; }

.plp-review-snippet .spr-badge {
  width: 100%; }

.plp-review-snippet .spr-badge-caption {
  font-size: 14px; }

/*** 404 PAGE ***/
#page-404 {
  padding: 10px 0 40px 0; }

#page-404 #page-404-intro a {
  color: #00b5e2;
  font-weight: 700; }

#page-404 #page-404-images {
  width: 100%; }

#page-404 .page-404-image-block {
  width: 31%;
  float: left; }

#page-404 .page-404-image-block:nth-child(2) {
  margin-left: 3.5%;
  margin-right: 3.5%; }

#page-404 .page-404-image img {
  width: 100%; }

#page-404 .page-404-image-text h3 {
  margin: 0; }

#page-404 .search--focus {
  width: 100%;
  max-width: 500px;
  margin: 30px auto 40px auto; }

#page-404 .search--focus input {
  width: calc(100% - 28px);
  height: 40px;
  border-bottom: 1px solid black; }

#page-404 .search--focus button {
  width: 28px;
  height: 40px;
  text-align: center;
  padding: 0;
  margin: 0;
  right: 0;
  border-bottom: 1px solid black; }

#page-404 .search--focus button img {
  width: 24px;
  height: 26px;
  margin: 8px auto 0 auto; }

@media screen and (max-width: 768px) {
  #page-404 .search--focus {
    display: inline-block; }

  #page-404 .search--focus input,
  #page-404 .search--focus button {
    position: relative; } }
@media screen and (max-width: 468px) {
  #page-404 .page-404-image-block {
    width: 100%;
    margin-bottom: 30px; }

  #page-404 .page-404-image-block:nth-child(2) {
    margin-left: 0;
    margin-right: 0; } }
/*** SENA HEADER ***/
#announcement-bar-sena {
  text-align: left;
  margin-left: -8px; }

#announcement-bar-sena .linked-site {
  display: inline-block;
  float: left; }

#announcement-bar-sena .linked-site-divider {
  background: #a780c7;
  width: 1px;
  height: 18px;
  margin: 0 3px;
  display: inline-block;
  float: left; }

#announcement-bar-sena img {
  max-width: 100%;
  max-height: 18px; }
  @media (max-width: 768px) {
    #announcement-bar-sena img {
      max-height: 15px; } }

#announcement-bar-promo {
  text-align: center; }

#announcement-bar-text {
  text-align: left;
  margin: 0 auto; }

#announcement-bar-text #promo-icon {
  display: inline-block; }

#announcement-bar-text p {
  display: inline-block;
  padding-left: 52px;
  padding-right: 52px; }

.nav-wrap .site-nav {
  margin-left: -25px; }

.site-header__logo-image {
  display: block; }

.nav-logo {
  width: 100% !important;
  max-width: 100%;
  text-align: center !important;
  margin: 0 auto !important;
  float: none;
  display: inline-block;
  padding-bottom: 20px; }

.nav-logo img {
  margin: 25px auto 0 auto;
  float: none;
  display: inline-block;
  width: 180px !important;
  max-width: 180px !important; }

#announcement-bar-sena a {
  padding: 0 9px;
  margin: 0;
  display: inline-block;
  height: 18px; }

#announcement-bar-sena .linked-site:first-child a {
  padding-left: 0; }

#announcement-bar-sena .linked-site:last-child a {
  padding-right: 0; }

.border-bottom {
  border-top: 1px solid #e8e9eb; }

#announcement-bar-promo-mobile,
#announcement-bar-promo-dropdown {
  display: none; }
  @media screen and (max-width: 980px) {
    #announcement-bar-promo-mobile,
    #announcement-bar-promo-dropdown {
      display: block; } }

@media screen and (max-width: 980px) {
  #announcement-bar-promo-mobile {
    width: 100%;
    background: black;
    padding: 10px;
    float: left;
    display: block; }

  #announcement-bar-promo {
    display: none; }

  #announcement-bar-sena {
    width: auto;
    float: left;
    padding-left: 20px;
    margin-top: 9px; }

  #announcement-bar-links {
    width: auto;
    float: right; }

  #announcement-bar-support {
    margin-left: 0; }

  .border-bottom {
    border-top: 0; }

  .nav-logo {
    width: 50%;
    max-width: 50%;
    height: 60px;
    float: left;
    display: inline-block;
    border-bottom: 1px solid #e8e9eb; }

  .nav-logo .site-header__logo-image img {
    width: 100%;
    max-width: 137px !important;
    margin-top: 18px; }

  #header-wrap {
    width: 50%;
    float: left; } }
@media (max-width: 562px) {
  #announcement-bar-sena {
    display: none; } }
@media screen and (max-width: 468px) {
  /*   #announcement-bar-sena {
  	width: 100%;
  	height: auto;
  
      background: #333;
      margin: 0 auto;
      text-align: center;
      padding: 9px 0;
    } */
  #announcement-bar-sena a {
    display: block; }

  #announcement-bar-sena .linked-site,
  #announcement-bar-sena .linked-site-divider {
    float: none; }

  #announcement-bar-sena .linked-site-divider {
    background: #828282; }

  #announcement-bar-links {
    width: 100%; } }
/*** NEW NAV ***/
#new-nav {
  width: 100%;
  float: left;
  background: #f1f1f1; }

.site-nav__childlist-item a {
  max-width: 100%; }

.site-nav__childlist-item img {
  max-width: 180px; }

.nav-featured-img-wrap {
  max-width: 220px; }
  .nav-featured-img-wrap li:last-child a {
    font-weight: bold; }

.nav-featured-img-wrap a {
  white-space: normal; }

.site-nav__link.no-hover {
  color: #fff;
  opacity: 1;
  cursor: default; }

.mobile-nav__item .mobile-nav__table {
  background: #cccccc; }

.mobile-nav__table-cell.mobile-nav__return .btn--link {
  color: black; }

.mobile-nav__item .mobile-nav__table a {
  color: black; }

.new-mobile-nav__item .mobile-nav__table {
  background: #f1f1f1; }

.new-mobile-nav__item .mobile-nav__table a {
  color: black;
  font-weight: 800;
  padding-top: 20px; }

.mobile-nav__dropdown .mobile-nav__sublist-header {
  padding-left: 20px; }

.mobile-nav__dropdown .mobile-nav__link, .mobile-nav__sublist-link {
  padding: 5px 0; }

.mobile-nav__sublist-link:not(.mobile-nav__sublist-header) {
  padding-left: 20px; }

.mobile-nav-wrapper.js-menu--is-open.sub-nav--is-open {
  background: #f1f1f1; }

.mobile-nav__dropdown {
  background: #f1f1f1; }

.mobile-nav__dropdown a {
  font-size: 13px;
  color: #3a3a3a; }

.mobile-nav__dropdown .border-bottom {
  border-bottom: 0; }

.mobile-nav__link, .mobile-nav__sublist-link {
  font-size: 14px;
  padding-left: 20px;
  padding-right: 20px; }

.mobile-nav__icon {
  padding-left: 24px;
  padding-right: 24px; }

.site-nav__childlist {
  background: #f1f1f1;
  border-bottom: 1px solid #ccc; }

.site-nav__childlist a {
  color: #3a3a3a; }

.mobile-nav__return {
  border-right: 1px solid #ccc; }

.mobile-nav__item .mobile-nav__table {
  background: #f1f1f1;
  border-bottom: 1px solid #ccc; }

.new-mobile-nav__item .mobile-nav__table {
  border-bottom: 1px solid #f1f1f1; }

.site-nav.list--inline {
  display: block; }

.mobile-nav__dropdown {
  padding-bottom: 15px; }

@media screen and (max-width: 980px) {
  .mobile-nav .featured-img-hidden,
  .mobile-nav-blank-row {
    display: none; }

  .mobile-nav-spacer {
    padding: 7px 0 8px 0; }

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

  .site-header {
    padding: 0; }

  .site-header__menu {
    display: block; }

  .logo-align--left {
    padding-left: 20px; }

  .logo-align--left img {
    float: left; } }
@media screen and (min-width: 981px) {
  .site-header__logo-image {
    display: inline-block; }

  .medium-upp-hide {
    display: none !important; } }
#pgs-banner-title h1, .pgs-banner-title h2 {
  font-weight: 900;
  font-size: 40px;
  line-height: 42px;
  text-transform: uppercase;
  max-width: 480px;
  margin: 0 auto 10px;
  font-family: "proxima-nova",sans-serif; }

/*** FATHERS DAY LANDING PAGE ***/
#pgs-wrap.page-fathers-day {
  margin-top: 0;
  padding-top: 0; }

.page-fathers-day {
  width: 100%;
  margin: 0 auto; }

#page-fathers-day .index-section,
#page-fathers-day #pgs-hero {
  padding-bottom: 0;
  margin-bottom: 0; }

#page-fathers-day h2,
#page-fathers-day .pdp-content-heading-wide {
  font-size: 24px !important;
  font-weight: 700 !important; }

#page-fathers-day #pgs-banner-title h1,
#page-fathers-day #pgs-banner-description p {
  color: black; }

.page-fathers-day-row, .page-fathers-day-row-block {
  width: 100%;
  margin: 0 auto; }

.page-fathers-day-row-block:nth-child(odd) {
  direction: rtl;
  background: #fff;
  width: 100%;
  margin: 0; }

.page-fathers-day-row-block:nth-child(even) {
  background: #f1f1f1;
  width: 100%;
  margin: 0; }

.page-fathers-day-row-wrap {
  width: 100%;
  max-width: 1160px;
  display: table;
  vertical-align: middle;
  table-layout: fixed;
  margin: 0 auto; }

.page-fathers-video {
  max-width: 800px;
  margin: 0 auto 40px auto; }

.page-fathers-day #shopify-section-page-fathers-slide1,
.page-fathers-day #shopify-section-page-fathers-slide2,
.page-fathers-day #shopify-section-page-fathers-slide3,
.page-fathers-day #shopify-section-page-fathers-slide4 {
  width: 50%;
  display: table-cell;
  vertical-align: middle;
  padding: 0;
  margin: 0;
  direction: ltr; }

.page-fathers-day #shopify-section-page-fathers-text1,
.page-fathers-day #shopify-section-page-fathers-text2,
.page-fathers-day #shopify-section-page-fathers-text3,
.page-fathers-day #shopify-section-page-fathers-text4 {
  width: 50%;
  display: table-cell;
  vertical-align: middle;
  padding: 0;
  margin: 0;
  direction: ltr; }

.page-fathers-day .tgs-main-banner-image-wrap {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  padding: 20px 40px 0 40px;
  text-align: center; }

.page-fathers-day .tgs-main-banner-text-wrap {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  padding: 0 40px;
  text-align: center; }

#pgs-wrap.page-fathers-day .tgs-main-banner-heading a {
  color: black; }

.page-fathers-day .tgs-main-banner-outter-wrap,
.page-fathers-day .tgs-product-slideshow,
.page-fathers-day .tgs-product-slideshow.static-slideshow,
.page-fathers-day .tgs-main-banner-text {
  width: 100%;
  margin: 0;
  padding: 0;
  background: inherit; }

.page-fathers-day .tgs-main-banner-image-wrap img {
  max-width: 50%; }

.page-fathers-day .slick-list {
  padding: 0 20px;
  box-sizing: border-box; }

.page-fathers-day .slick-prev {
  left: 40px; }

.page-fathers-day .slick-prev:hover {
  left: 20px;
  cursor: pointer; }

.page-fathers-day .slick-next {
  right: 40px; }

.page-fathers-day .slick-next:hover {
  right: 20px;
  cursor: pointer; }

#pgs-wrap .page-fathers-day-text-block h2 {
  margin-bottom: 7px;
  text-align: left;
  padding-left: 20px; }

.page-fathers-day-text-block ul {
  padding: 0 20px 0 0; }

.page-fathers-day li {
  text-align: left; }

.page-fathers-day-text-block .text-left {
  margin: 0 0 32px 20px; }

.page-fathers-day .tgs-main-advantage .pdp-content-heading-wide span {
  background: white;
  color: black; }

.page-fathers-day .tgs-main-advantage {
  width: 100%;
  background: #fff;
  padding: 40px 0;
  margin: 0 auto; }

.page-fathers-day .tgs-main-advantage-block {
  padding: 0 10px !important; }

.page-fathers-day .tgs-main-advantage-image {
  width: 100%;
  height: 100%;
  max-width: 370px;
  max-height: 347px;
  margin: 0 auto; }

#page-fathers-day .tgs-main-advantage-heading h3 {
  color: black;
  font-size: 16px;
  font-weight: 700;
  margin: 0; }

@media screen and (max-width: 768px) {
  #page-fathers-day #pgs-banner-title h1,
  #page-fathers-day #pgs-banner-description p {
    color: white; }

  .page-fathers-day-row-block:nth-child(even) {
    direction: ltr; }

  .page-fathers-day #shopify-section-page-fathers-slide1,
  .page-fathers-day #shopify-section-page-fathers-slide2,
  .page-fathers-day #shopify-section-page-fathers-slide3,
  .page-fathers-day #shopify-section-page-fathers-slide4 {
    width: 100%;
    display: inline-block;
    background: white; }

  .page-fathers-day #shopify-section-page-fathers-text1,
  .page-fathers-day #shopify-section-page-fathers-text2,
  .page-fathers-day #shopify-section-page-fathers-text3,
  .page-fathers-day #shopify-section-page-fathers-text4 {
    width: 100%;
    display: inline-block;
    background: #f1f1f1; }

  .page-fathers-day .tgs-main-advantage-block {
    padding: 0 0 20px 0 !important; }

  .page-fathers-day .tgs-main-advantage-image {
    max-width: 100%;
    padding: 0; }

  #page-fathers-day #pgs-hero__image,
  #page-fathers-day .pgs-hero__image {
    height: 260px; } }
/*** SIGNUP FORM ***/
#pgs-signup-form {
  width: 100%;
  background: #fff;
  padding: 40px; }

#pgs-signup-form h3,
#pgs-signup-form p {
  max-width: 800px;
  margin: 0 auto;
  text-align: center; }

#pgs-signup-form h3 {
  font-family: "proxima-nova", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 34px;
  margin: 0 auto 5px auto;
  max-width: 800px;
  text-align: center; }

#pgs-signup-form p {
  margin-bottom: 20px; }

#pgs-signup-form #mc_embed_signup label,
#pgs-signup-form .mc_embed_signup label {
  text-align: left; }

#pgs-signup-form #mc_embed_signup_scroll,
#pgs-signup-form .mc_embed_signup_scroll {
  max-width: 420px;
  margin: 0 auto; }

#pgs-signup-form #mc_embed_signup_scroll .asterisk,
#pgs-signup-form .mc_embed_signup_scroll .asterisk {
  color: #d61e3d; }

#pgs-signup-form .indicates-required {
  color: #3a3a3a !important;
  margin: 5px auto 20px auto !important;
  float: none;
  text-align: center; }

#pgs-signup-form .mc-field-group {
  width: 100%;
  margin-bottom: 10px;
  float: left; }

#pgs-signup-form .mc-field-group label {
  display: block;
  font-family: "proxima-nova", sans-serif !important;
  font-size: 16px;
  color: #3a3a3a !important;
  padding: 0 !important;
  margin: 0 0 3px 0 !important;
  font-weight: 600 !important; }

#pgs-signup-form .mc-field-group input,
#pgs-signup-form .mc-field-group select {
  width: 100% !important;
  height: 30px !important;
  font-family: "proxima-nova", sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important; }

#pgs-signup-form .mc-field-group select {
  border: 1px solid #cecece !important; }

#pgs-signup-form .mc-field-group.input-group input {
  float: left;
  width: 20px !important;
  height: 20px !important;
  margin-right: 5px; }

#pgs-signup-form #mce-FNAME,
#pgs-signup-form #mce-LNAME,
#pgs-signup-form #mce-TITLE,
#pgs-signup-form #mce-EMAIL,
#pgs-signup-form #mce-PHONE,
#pgs-signup-form #mce-SCHOOL,
#pgs-signup-form #mce-MMERGE3 {
  margin: 0 !important;
  padding: 0 0 0 10px !important; }

#pgs-signup-form #mc_embed_signup input.email,
#pgs-signup-form .mc_embed_signup input.email {
  width: 100% !important;
  height: 30px !important;
  margin-right: 0 !important; }

#pgs-signup-form .clear {
  margin: 0 auto !important;
  text-align: center !important;
  width: 100% !important; }

#pgs-signup-form #mc-embedded-subscribe {
  border: 0 !important;
  border-radius: 0 !important; }

#pgs-signup-form #mc_embed_signup div#mce-responses,
#pgs-signup-form .mc_embed_signup div#mce-responses {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 0 20px 0 !important; }

#pgs-signup-form #mc_embed_signup div.response,
#pgs-signup-form .mc_embed_signup div.response {
  width: 100%;
  margin: 0 !important;
  padding: 20px !important;
  color: #000 !important;
  font-family: "proxima-nova", sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-align: center; }

#pgs-signup-form .global-button {
  padding: 0; }

#pgs-signup-form input.global-button {
  padding: 0 30px; }

.custom-payment-icons {
  margin: 30px 0;
  text-align: center; }
  .custom-payment-icons ul li {
    display: inline-block;
    padding: 5px; }
    .custom-payment-icons ul li img {
      vertical-align: middle; }

#tgs-footer-links .tgs-footer-block-social-wrap {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 20px; }
  @media all and (max-width: 768px) {
    #tgs-footer-links .tgs-footer-block-social-wrap {
      margin-top: 0; } }
  #tgs-footer-links .tgs-footer-block-social-wrap .custom-img-logo {
    float: left;
    text-align: left; }
  #tgs-footer-links .tgs-footer-block-social-wrap .tgs-footer-block-social {
    float: right;
    text-align: right; }
  #tgs-footer-links .tgs-footer-block-social-wrap .custom-img-logo,
  #tgs-footer-links .tgs-footer-block-social-wrap .tgs-footer-block-social {
    width: 50%; }
    @media all and (max-width: 768px) {
      #tgs-footer-links .tgs-footer-block-social-wrap .custom-img-logo,
      #tgs-footer-links .tgs-footer-block-social-wrap .tgs-footer-block-social {
        width: 100%;
        text-align: center;
        padding: 10px; } }

.sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2222222;
  background-color: #fff; }
  .sticky-header .nav-logo {
    background-color: #fff;
    padding-bottom: 0; }
    .sticky-header .nav-logo img {
      margin: 13px 0px; }
  .sticky-header .custom-header-under {
    padding-bottom: 0;
    position: relative;
    max-width: 1160px;
    margin: 0 auto; }
  .sticky-header #header-wrap {
    float: right;
    width: 80%; }
    .sticky-header #header-wrap .site-header {
      border-top: 0px;
      border-bottom: 0px;
      position: unset; }
  .sticky-header #announcement-bar-wrap {
    display: none; }

@media (max-width: 767px) {
  #SearchDrawer {
    position: fixed;
    top: 0% !important; } }
@media (max-width: 980px) {
  .custom-header.sticky-header .mobile-nav-wrapper {
    top: 60px !important;
    transform: translate(0%) !important; }
  .custom-header.sticky-header .custom-header-under {
    position: unset; }
  .custom-header.sticky-header .nav-logo {
    border-bottom: 0px; }

  .custom-header-under .custom-header-under {
    position: relative !important; }

  .mobile-nav-wrapper {
    transform: translateY(42.5%) !important; }

  .is-active + .mobile-nav__dropdown {
    height: 100%;
    overflow-y: scroll; } }
@media (max-width: 460px) {
  .custom-header-under .mobile-nav-wrapper {
    transform: translateY(170px) !important; } }
@media (max-width: 800px) {
  .sticky-header .site-header__icons--plus #nav-search-wrap img {
    width: 20px;
    height: 20px; }
  .sticky-header .site-header__icons--plus #nav-cart .nav-cart-icon {
    width: 32px;
    height: 26px; }
    .sticky-header .site-header__icons--plus #nav-cart .nav-cart-icon img {
      width: 25px;
      height: 25px; } }
@media screen and (min-width: 980px) {
  .sticky-header .logo-align--left {
    display: none; } }
.sticky-header .logo-align--left .site-header__logo {
  margin-left: 20px; }
  @media screen and (max-width: 980px) {
    .sticky-header .logo-align--left .site-header__logo {
      margin-left: 0px; }
      .sticky-header .logo-align--left .site-header__logo img {
        margin: 20px 0px; } }
.sticky-header #header-wrap {
  width: 100%; }
  @media screen and (max-width: 980px) {
    .sticky-header #header-wrap {
      width: 50%; } }

#tgs-footer-links .tgs-footer-block-social-wrap .custom-img-logo {
  float: left;
  text-align: left; }
#tgs-footer-links .tgs-footer-block-social-wrap .tgs-footer-block-social {
  float: right;
  text-align: right; }
#tgs-footer-links .tgs-footer-block-social-wrap .custom-img-logo,
#tgs-footer-links .tgs-footer-block-social-wrap .tgs-footer-block-social {
  width: 50%; }
  @media (max-width: 600px) {
    #tgs-footer-links .tgs-footer-block-social-wrap .custom-img-logo,
    #tgs-footer-links .tgs-footer-block-social-wrap .tgs-footer-block-social {
      width: 100%;
      text-align: center; } }
@media (max-width: 600px) {
  #tgs-footer-links .tgs-footer-block-social-wrap .custom-img-logo {
    display: none; } }

.custom-payment-icons {
  margin: 30px 0;
  text-align: center; }
  .custom-payment-icons ul li {
    display: inline-block;
    padding: 5px; }
    .custom-payment-icons ul li img {
      vertical-align: middle; }

#tgs-footer-links-wrap {
  margin-bottom: 25px; }
  #tgs-footer-links-wrap .parent > .tgs-expand {
    width: calc(100%/var(--footer-column-count)); }
    @media (max-width: 767px) {
      #tgs-footer-links-wrap .parent > .tgs-expand {
        width: 100%;
        padding-left: 20px; }
        #tgs-footer-links-wrap .parent > .tgs-expand .child.tgs-link-child {
          margin-left: -20px; } }

@media (max-width: 767px) {
  .ui-autocomplete-input.has-sticky-header:focus {
    position: absolute; } }

@media (max-width: 767px) {
  #SearchDrawer {
    position: fixed;
    top: -60px !important;
    z-index: 2222223; }

  .ui-autocomplete {
    position: fixed !important;
    top: 50px !important;
    left: 5% !important;
    width: 90% !important; } }
.ui-autocomplete {
  top: 157px; }
  .ui-autocomplete.has-sticky-header {
    position: fixed;
    top: 50px !important; }

@media only screen and (min-width: 769px) {
  .custom-content .medium-up--one-half {
    width: auto; } }
@media only screen and (max-width: 768px) {
  #shopify-section-1569251966424 .custom__item.small--one-half {
    max-width: unset;
    padding-left: 0;
    width: auto; } }
#backtoTop {
  opacity: 0;
  cursor: pointer;
  position: fixed;
  transition: opacity .25s ease-in-out;
  bottom: 78px;
  right: 15px;
  z-index: 10; }
  #backtoTop span {
    background-color: #00b5e2;
    width: 30px;
    display: inline-block;
    height: 30px;
    position: relative; }
    #backtoTop span:before {
      content: "";
      width: 15px;
      height: 15px;
      display: inline-block;
      background: url(../assets/arrow.png);
      background-repeat: no-repeat;
      background-position: center top;
      background-size: cover;
      transform: translateY(-50%) translateX(-50%);
      top: 50%;
      left: 50%;
      position: absolute; }
  #backtoTop.visible {
    opacity: 1;
    transition: opacity .25s ease-in-out; }
  #backtoTop:hover span {
    opacity: .8; }

.cart-item__original-price {
  opacity: 0.6; }

.cart-item__discount {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  color: #4f028d; }
