.form-container {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
  min-height: inherit; }

/*============================================================================
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 ================*/
/*================ 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;
  display: block; }
  .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/2293/0089/t/17/assets/ajax-loader.gif?v=4135686330247201572) center center no-repeat; }

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -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: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick-icons, sans-serif";
    font-size: 20px;
    line-height: 1;
    color: black;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "\2190"; }
    [dir="rtl"] .slick-prev:before {
      content: "\2192"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "\2192"; }
    [dir="rtl"] .slick-next:before {
      content: "\2190"; }

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

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

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;
  margin-left: -30px; }
  .grid::after {
    content: '';
    display: table;
    clear: both; }
  @media only screen and (max-width: 767px) {
    .grid {
      margin-left: -22px; } }

.grid__item {
  float: left;
  padding-left: 30px;
  width: 100%; }
  @media only screen and (max-width: 767px) {
    .grid__item {
      padding-left: 22px; } }
  .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: 767px) {
  /* 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: 768px) and (max-width: 990px) {
  /* Whole */
  .medium--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium-down--text-center {
    text-align: center !important; } }
@media only screen and (min-width: 768px) {
  /* 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; } }
@media only screen and (min-width: 991px) and (max-width: 1399px) {
  /* Whole */
  .large--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .large--text-center {
    text-align: center !important; } }
@media only screen and (max-width: 1399px) {
  /* Whole */
  .large-down--one-whole {
    width: 100%; }

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

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

  .large-down--two-thirds {
    width: 66.66667%; }

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

  .large-down--two-quarters {
    width: 50%; }

  .large-down--three-quarters {
    width: 75%; }

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

  .large-down--two-fifths {
    width: 40%; }

  .large-down--three-fifths {
    width: 60%; }

  .large-down--four-fifths {
    width: 80%; }

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

  .large-down--two-sixths {
    width: 33.33333%; }

  .large-down--three-sixths {
    width: 50%; }

  .large-down--four-sixths {
    width: 66.66667%; }

  .large-down--five-sixths {
    width: 83.33333%; }

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

  .large-down--two-eighths {
    width: 25%; }

  .large-down--three-eighths {
    width: 37.5%; }

  .large-down--four-eighths {
    width: 50%; }

  .large-down--five-eighths {
    width: 62.5%; }

  .large-down--six-eighths {
    width: 75%; }

  .large-down--seven-eighths {
    width: 87.5%; }

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

  .large-down--two-tenths {
    width: 20%; }

  .large-down--three-tenths {
    width: 30%; }

  .large-down--four-tenths {
    width: 40%; }

  .large-down--five-tenths {
    width: 50%; }

  .large-down--six-tenths {
    width: 60%; }

  .large-down--seven-tenths {
    width: 70%; }

  .large-down--eight-tenths {
    width: 80%; }

  .large-down--nine-tenths {
    width: 90%; }

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

  .large-down--two-twelfths {
    width: 16.66667%; }

  .large-down--three-twelfths {
    width: 25%; }

  .large-down--four-twelfths {
    width: 33.33333%; }

  .large-down--five-twelfths {
    width: 41.66667%; }

  .large-down--six-twelfths {
    width: 50%; }

  .large-down--seven-twelfths {
    width: 58.33333%; }

  .large-down--eight-twelfths {
    width: 66.66667%; }

  .large-down--nine-twelfths {
    width: 75%; }

  .large-down--ten-twelfths {
    width: 83.33333%; }

  .large-down--eleven-twelfths {
    width: 91.66667%; }

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

  .large-down--show {
    display: block !important; }

  .large-down--hide {
    display: none !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .widescreen--text-center {
    text-align: center !important; } }
/*================ Build Grid Push Classes ================*/
@media only screen and (max-width: 767px) {
  /* 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: 768px) and (max-width: 990px) {
  /* Halves */
  .medium--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium-down--push-eleven-twelfths {
    left: 91.66667%; } }
@media only screen and (min-width: 768px) {
  /* 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%; } }
@media only screen and (min-width: 991px) and (max-width: 1399px) {
  /* Halves */
  .large--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .large--push-eleven-twelfths {
    left: 91.66667%; } }
@media only screen and (max-width: 1399px) {
  /* Halves */
  .large-down--push-one-half {
    left: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .widescreen--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; }

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

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

.page-width {
  *zoom: 1;
  max-width: 1130px;
  margin: 0 auto; }
  .page-width::after {
    content: '';
    display: table;
    clear: both; }
  @media only screen and (max-width: 1199px) {
    .page-width {
      width: 95%; } }
  @media only screen and (max-width: 767px) {
    .page-width {
      width: auto;
      padding-left: 15px;
      padding-right: 15px; } }

.main-content {
  display: block;
  padding-top: 0; }
  @media only screen and (min-width: 768px) {
    .main-content {
      padding-top: 0; } }

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

/*================ 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: 7.5px; }
  blockquote p + cite {
    margin-top: 7.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: "Roboto Condensed", "HelveticaNeue", "Helvetica Neue", sans-serif;
  color: #3d4246;
  line-height: 1.5; }

@media only screen and (max-width: 990px) {
  input,
  textarea,
  select,
  button {
    font-size: 16px; } }
/*================ Headings ================*/
h1, .h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0 0 17.5px;
  font-family: "Roboto Condensed";
  font-weight: 600;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-wrap: break-word; }
  h1 a, .h1 a,
  h2 a,
  .h2 a,
  h3 a,
  .h3 a,
  h4 a,
  .h4 a,
  h5 a,
  .h5 a,
  h6 a,
  .h6 a {
    color: inherit;
    text-decoration: none;
    font-weight: inherit; }

h1, .h1 {
  font-size: 2.1875em;
  text-transform: none;
  letter-spacing: 0; }
  @media only screen and (max-width: 767px) {
    h1, .h1 {
      font-size: 2em; } }

h2, .h2 {
  font-size: 1.25em;
  text-transform: uppercase;
  letter-spacing: 0.1em; }
  @media only screen and (max-width: 767px) {
    h2, .h2 {
      font-size: 1.125em; } }

h3, .h3 {
  font-size: 1.625em;
  text-transform: none;
  letter-spacing: 0; }
  @media only screen and (max-width: 767px) {
    h3, .h3 {
      font-size: 1.25em; } }

h4, .h4 {
  font-size: 1.0625em; }
  @media only screen and (max-width: 767px) {
    h4, .h4 {
      font-size: 0.9375em; } }

h5, .h5 {
  font-size: 0.9375em; }
  @media only screen and (max-width: 767px) {
    h5, .h5 {
      font-size: 0.8125em; } }

h6, .h6 {
  font-size: 0.875em; }
  @media only screen and (max-width: 767px) {
    h6, .h6 {
      font-size: 0.75em; } }

/*================ RTE headings ================*/
.rte {
  color: #2b2b2c;
  margin-bottom: 35px; }
  .rte:last-child {
    margin-bottom: 0; }
  .rte h1, .rte .h1,
  .rte h2,
  .rte .h2,
  .rte h3,
  .rte .h3,
  .rte h4,
  .rte .h4,
  .rte h5,
  .rte .h5,
  .rte h6,
  .rte .h6 {
    margin-top: 15px;
    margin-bottom: 7.5px; }
    .rte h1:first-child, .rte .h1:first-child,
    .rte h2:first-child,
    .rte .h2:first-child,
    .rte h3:first-child,
    .rte .h3:first-child,
    .rte h4:first-child,
    .rte .h4:first-child,
    .rte h5:first-child,
    .rte .h5:first-child,
    .rte h6: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: #2b2b2c;
  margin: 0 0 19.44444px;
  font-family: "ProximaNovaRegular";
  font-weight: normal; }
  @media only screen and (max-width: 767px) {
    p {
      font-size: 0.9375em; } }
  p:last-child {
    margin-bottom: 0; }

/*================ Lists ================*/
.foot-up ul,
#filter-wrapper ul {
  padding: 0; }
.foot-up li,
#filter-wrapper 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: 15px; }

/*================ 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: 768px) {
    .mega-title--large {
      font-size: 4.0625em; } }

@media only screen and (min-width: 768px) {
  .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: 600; }
  @media only screen and (min-width: 768px) {
    .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; }

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

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

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;
  padding: 0; }
  .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 a {
  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; }

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

/*================ #Links and Buttons ================*/
a {
  color: #3d4246;
  text-decoration: none; }
  a:hover, a:focus {
    opacity: 1;
    color: #0068b8; }
  a.classic-link {
    text-decoration: underline; }

/*================ Buttons ================*/
.btn {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: auto;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 8px 15px;
  background-color: black;
  color: white;
  font-family: "Work Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: normal;
  font-size: 14px;
  transition: all 0.2s ease 0s; }
  @media only screen and (min-width: 768px) {
    .btn {
      padding: 10px 18px; } }
  .btn:hover, .btn:focus {
    opacity: 1;
    color: #fff; }
  .btn .icon-arrow-right,
  .btn .icon-arrow-left {
    height: 9px; }
  .btn[disabled] {
    cursor: default;
    opacity: 0.5;
    background-color: black;
    color: white; }

.rte a.btn {
  padding-bottom: 10px; }

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

.btn--small {
  font-family: "Roboto Condensed", "HelveticaNeue", "Helvetica Neue", sans-serif;
  padding: 0px 10px;
  font-size: 0.75em;
  line-height: 30px;
  height: 30px;
  border: 0; }

/*================ Button variations ================*/
@media only screen and (max-width: 767px) {
  .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 {
  opacity: 0.5;
  cursor: default; }
  .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: 22.5px 0; }
  @media only screen and (max-width: 767px) {
    .return-link-wrapper {
      margin-bottom: -16px; }
      .return-link-wrapper .btn {
        display: block; } }

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

th {
  font-family: "Work Sans", "HelveticaNeue", "Helvetica Neue", 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: 767px) {
  .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: 7.5px;
    border: 0;
    margin: 0; }
  .responsive-table td::before {
    content: attr(data-label);
    float: left;
    text-align: center;
    font-size: 12px;
    padding-right: 10px;
    padding-top: 4px; }

  .responsive-table__row + .responsive-table__row,
  tfoot > .responsive-table__row:first-child {
    position: relative;
    margin-top: 10px;
    padding-top: 15px; }
    .responsive-table__row + .responsive-table__row::after,
    tfoot > .responsive-table__row:first-child::after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 7.5px;
      right: 7.5px;
      border-bottom: 1px solid #e8e9eb; } }
/*-------------------------
5. MAGNIFIC POPUP (third party app)
*-----------------------*/
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99995;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99996;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 99997; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 99998; }

.mfp-preloader a {
  color: #CCC; }

.mfp-preloader a:hover {
  color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

.mfp-preloader {
  width: 62px;
  height: 62px;
  background: url(//cdn.shopify.com/s/files/1/2293/0089/t/17/assets/ajax-loader.gif?v=4135686330247201572) no-repeat center center #222222;
  background-size: 32px 32px;
  margin: 0 auto;
  font-size: 0; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 99999;
  -webkit-box-shadow: none;
  box-shadow: none; }

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 38px;
  font-family: Arial, Baskerville, monospace; }

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  font-family: 'FontAwesome';
  font-size: 48px;
  color: #ccc; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  content: "\f104"; }

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-b {
  content: "\f105"; }

.mfp-arrow-right {
  right: 0; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444; }

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
  * Remove all paddings around the image on small screen
  */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }

  .mfp-img-mobile img.mfp-img {
    padding: 0; }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
.mfp-ie7 .mfp-img {
  padding: 0; }

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }

.mfp-ie7 .mfp-container {
  padding: 0; }

.mfp-ie7 .mfp-content {
  padding-top: 44px; }

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }

/*================ #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 15px;
  padding: 7.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: 767px) {
    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: 0; }
  input:focus,
  textarea:focus,
  select:focus {
    border-color: #0068b8; }
  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; }

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/2293/0089/t/17/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: 8px;
  padding-left: 15px;
  padding-bottom: 8px;
  /*================ Hide the svg arrow in IE9 and below ================*/ }
  @media only screen and (min-width: 768px) {
    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 {
  position: absolute;
  height: 0;
  width: 0;
  margin-bottom: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); }
  .ie9 .label--hidden {
    position: static;
    height: auto;
    width: auto;
    margin-bottom: 2px;
    overflow: visible;
    clip: initial; }

::-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: 8px 15px; }
  @media only screen and (min-width: 768px) {
    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 {
  display: inline-block;
  width: auto; }

/*================ Form feedback messages ================*/
.note,
.form--success,
.errors {
  padding: 8px;
  margin: 0 0 7.5px; }
  @media only screen and (min-width: 768px) {
    .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: 15px; }

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

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

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

.input-group__btn {
  white-space: nowrap;
  width: 1%; }
  .input-group__btn .btn {
    border-radius: 0 0 0 0;
    white-space: nowrap; }

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

.site-nav {
  position: relative;
  padding: 0;
  text-align: center;
  margin: 0px 0; }
  .site-nav a {
    padding: 36px 10px; }
  .site-nav li {
    display: inline-block; }

.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--active-dropdown .site-nav__link .icon-chevron-down {
      transform: rotateZ(-180deg); }
  .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-centered-dropdown {
  position: static; }

.site-nav__dropdown {
  display: none;
  position: absolute;
  left: 0;
  padding: 11px 17px;
  margin: 0;
  z-index: 7;
  text-align: left;
  border: 1px solid #e8e9eb;
  background: white;
  left: -1px;
  top: 100%; }
  .site-nav__dropdown .site-nav__link {
    padding: 4px 30px 4px 0; }
  .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: white;
  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: -35px; }

.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: 35px; }

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

.page-width {
  padding-left: 15px;
  padding-right: 15px; }
  @media only screen and (max-width: 767px) {
    .page-width {
      padding-left: 22px;
      padding-right: 22px; } }

.page-container {
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
  position: relative;
  overflow: hidden; }
  @media only screen and (min-width: 768px) {
    .page-container {
      -ms-transform: translate3d(0, 0, 0);
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0); } }

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

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

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

.mobile-nav__item,
.border-bottom {
  border-bottom: 1px solid #e8e9eb;
  *zoom: 1; }
  .mobile-nav__item::after,
  .border-bottom::after {
    content: '';
    display: table;
    clear: both; }

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

.empty-page-content {
  padding: 125px 15px; }
  @media only screen and (max-width: 767px) {
    .empty-page-content {
      padding-left: 22px;
      padding-right: 22px; } }

.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: -15px;
  overflow: auto; }
  .grid--flush-bottom > .grid__item {
    margin-bottom: 15px; }

/*============================================================================
Animation Classes and Keyframes
==============================================================================*/
.is-transitioning {
  display: block !important;
  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: 100;
  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 {
  margin-bottom: 0; }

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

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

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

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

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

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

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

.grid-view-item__image {
  display: block;
  margin: 10px auto 15px; }
  .grid-view-item--sold-out .grid-view-item__image {
    opacity: 0.5; }

.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: 768px) {
    .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-column {
  display: table-cell;
  vertical-align: middle;
  width: 130px; }
  @media only screen and (max-width: 767px) {
    .list-view-item__image-column {
      width: 85px; } }

.list-view-item__image-wrapper {
  position: relative;
  margin-right: 35px; }
  @media only screen and (max-width: 767px) {
    .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: 767px) {
    .list-view-item__title {
      font-size: 0.9375em; } }

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

.list-view-item__on-sale {
  color: black;
  font-size: 0.9375em; }
  @media only screen and (max-width: 767px) {
    .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: 767px) {
    .list-view-item__vendor {
      font-size: 0.875em; } }

.list-view-item__form-column {
  width: 209px;
  display: table-cell;
  vertical-align: middle; }

.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: 767px) {
    .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: black; }
  @media only screen and (max-width: 767px) {
    .list-view-item__price--reg {
      display: block; } }

@media only screen and (max-width: 767px) {
  .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: 768px) {
      .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: 768px) {
        .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: 768px) {
        .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: 17.5px;
  padding-bottom: 17.5px; }
  @media only screen and (min-width: 768px) {
    .index-section {
      padding-top: 15px;
      padding-bottom: 15px; } }
  .index-section:first-child {
    padding-top: 0;
    border-top: 0; }
  .index-section:last-child {
    padding-bottom: 0; }

.index-section--flush + .index-section--flush {
  margin-top: -70px; }
  @media only screen and (min-width: 768px) {
    .index-section--flush + .index-section--flush {
      margin-top: -30px; } }

.index-section--flush:last-child {
  margin-bottom: -35px; }
  @media only screen and (min-width: 768px) {
    .index-section--flush:last-child {
      margin-bottom: -15px; } }

@media only screen and (max-width: 767px) {
  .index-section--featured-product:first-child {
    margin-top: -12px; } }
.placeholder-svg {
  display: block;
  fill: rgba(43, 43, 44, 0.35);
  background-color: rgba(43, 43, 44, 0.1);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(43, 43, 44, 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: #2b2b2c;
  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: 7.5px 15px; }

.password-message {
  max-width: 500px;
  margin: 22.5px auto 7.5px; }

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

.password__title {
  margin-bottom: 22.5px; }

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

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

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

.product-single__price {
  color: #2b2b2c;
  font-size: 1.25em;
  font-weight: 600;
  margin-bottom: 30px; }
  @media only screen and (max-width: 767px) {
    .product-single__price {
      display: block;
      font-size: 1.125em; } }

.product-single__vendor {
  color: #2b2b2c;
  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: 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;
  width: auto;
  margin: 0 -5px -10px; }
  .product-form .product-form__item.product-form__item--submit {
    float: left; }
  .product-form .product-form__item {
    padding: 0 5px; }
    .product-form .product-form__item select {
      background-image: url(//cdn.shopify.com/s/files/1/2293/0089/t/17/assets/dropdownArrow.png?v=7269800208316267134); }
      @media only screen and (max-width: 1199px) {
        .product-form .product-form__item select {
          padding-left: 5px; } }
  .product-form .product-form__input {
    margin-bottom: 30px; }

.product-form.variants-form {
  max-width: 68%; }

.product-form__item {
  -webkit-flex: 0 0 33.33%;
  -moz-flex: 0 0 33.33%;
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
  margin-bottom: 10px;
  padding: 0 5px; }
  .product-form__item.optionLabel {
    -webkit-flex: 1 1 33.33%;
    -moz-flex: 1 1 33.33%;
    -ms-flex: 1 1 33.33%;
    flex: 1 1 33.33%;
    width: 33.33%;
    padding-top: 10px; }
  .product-form__item.selector-wrapper {
    -webkit-flex: 1 1 66.66%;
    -moz-flex: 1 1 66.66%;
    -ms-flex: 1 1 66.66%;
    flex: 1 1 66.66%;
    width: 66.66%; }
  .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__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__item--submit {
  -ms-flex-preferred-size: 200px;
  -webkit-flex-basis: 200px;
  -moz-flex-basis: 200px;
  flex-basis: 200px; }

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

.product-form__cart-submit {
  display: block;
  width: 100%;
  line-height: normal;
  padding-left: 15px;
  padding-right: 15px;
  white-space: normal;
  background-color: #076fba;
  height: 43px; }
  .product-form__cart-submit:hover {
    background-color: #2bb673; }
  .product-form__cart-submit span:before {
    font-family: 'icomoon';
    content: '\f07a';
    margin-right: 5px; }
  @media only screen and (max-width: 990px) {
    .product-form__cart-submit {
      padding-left: 5px;
      padding-right: 5px; } }
  @media only screen and (max-width: 767px) {
    .product-form__cart-submit {
      height: 42px; } }

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

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

.product-single__thumbnail-image {
  display: block; }

.product-featured-img {
  display: block;
  margin: 0 auto; }

.zoomImg {
  background-color: white; }

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

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

.product-single__photo {
  min-height: 1px;
  display: block;
  height: 400px; }
  @media only screen and (max-width: 767px) {
    .product-single__photo {
      height: 250px; } }
  .product-single__photo .product-featured-img {
    max-height: 100%;
    max-width: 100%;
    display: block;
    margin: auto; }

@media only screen and (max-width: 767px) {
  .template-product .main-content {
    padding-top: 22px; }

  .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;
    text-align: center; }

  .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: auto; } }
/*================ Template | Collections ================*/
.collection-hero {
  position: relative;
  overflow: hidden;
  margin-top: -15px;
  margin-bottom: 22px; }
  @media only screen and (min-width: 768px) {
    .collection-hero {
      margin-bottom: 35px; } }

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

.collection-hero__image {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  opacity: 1; }
  @media only screen and (max-width: 767px) {
    .collection-hero__image {
      height: 180px; } }

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

.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: 768px) {
    .collection-hero__title {
      font-size: 2em; } }

.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: 7.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: 767px) {
    .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: 7.5px; }
  @media only screen and (min-width: 768px) {
    .cart__subtotal {
      padding-left: 15px;
      min-width: 150px;
      display: inline-block; } }

.cart__savings {
  padding-top: 18px; }

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

.cart__footer {
  padding-top: 35px; }

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

.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: 767px) {
    .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: 767px) {
    .cart-note__input {
      margin-bottom: 40px; } }

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

@media only screen and (min-width: 768px) {
  .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: 767px) {
  .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; } }
.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 15px;
  transition: all 0.3s linear; }
  @media only screen and (max-width: 767px) {
    .site-header {
      padding: 0; } }
  @media only screen and (min-width: 768px) {
    .site-header.logo--center {
      padding-top: 30px; } }

.site-header__logo {
  margin: 7px 0 15px; }
  .logo-align--center .site-header__logo {
    text-align: center;
    margin: 0 auto; }
    @media only screen and (max-width: 767px) {
      .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: 768px) {
    .site-header__logo-image {
      margin: 0 auto; } }

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

@media only screen and (min-width: 768px) {
  .logo-align--center .site-header__logo-link {
    margin: 0 auto; } }
@media only screen and (max-width: 767px) {
  .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; }

/*
@include media-query($medium-up) {
.site-header__cart,
.site-header__account {
position: absolute;
top: 50%;
right: 0;
padding: 8px 0;
@include 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 {
display: block;
position: absolute;
top: -1px;
font-weight: bold;
background-color: $color-btn-primary;
color: $color-btn-primary-text;
border-radius: 9px;
min-width: 16px;
height: 16px;

span {
font-family: $font-stack-cart-notification;
display: block;
padding: 2px 5px;
font-size: 11px;
line-height: 1;
}

@include media-query($medium-up) {
.logo--center & {
right: -2px;
}

.logo--left & {
left: 12px;
top: 4px;
}
}
}
*/
@media only screen and (max-width: 767px) {
  .site-header__cart-count {
    top: 14px;
    left: 22px;
    border-radius: 11px;
    min-width: 19px;
    height: 19px; }
    .site-header__cart-count span {
      padding: 4px 6px;
      font-size: 12px; } }
.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: 768px) {
    .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: 991px) {
  .site-header__search.small--hide {
    display: none; }

  .btn--link.site-header__search-toggle.medium-up--hide {
    display: inline-block !important; }

  .site-header__logo {
    padding-left: 22px; }

  .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; } }
.notification-bar {
  text-align: center;
  position: relative;
  z-index: 99; }
  @media only screen and (max-width: 990px) {
    .notification-bar {
      background-color: #000 !important; }
      .notification-bar .notification-bar__message {
        color: #fff !important; } }
  .notification-bar .currency-picker__wrapper {
    display: inline-block;
    margin: auto; }
    .notification-bar .currency-picker__wrapper select {
      background-color: transparent;
      border: 0 none;
      margin-right: 5px;
      padding-bottom: 0;
      padding-left: 5px;
      padding-top: 0;
      color: #444444;
      font-family: "Roboto Condensed";
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0; }

.notification-bar__message {
  display: block;
  font-size: 1em;
  font-weight: 600;
  padding: 10px 0;
  margin: auto -30px; }
  @media only screen and (min-width: 768px) {
    .notification-bar__message {
      padding: 10px 0;
      margin: auto -30px; } }

.article--listing {
  padding-top: 15px;
  margin-bottom: 15px; }

.article__title {
  margin-bottom: 11px;
  font-size: 20px;
  color: #33383a;
  line-height: 25px;
  text-transform: initial;
  font-weight: normal; }

.list--inline.article__meta-buttons li.btnLink {
  display: inline-block;
  vertical-align: top; }
  .list--inline.article__meta-buttons li.btnLink p {
    display: inline; }
  .list--inline.article__meta-buttons li.btnLink + li:before {
    color: #807f83;
    content: "|";
    display: inline-block;
    vertical-align: top; }
  .list--inline.article__meta-buttons li.btnLink a {
    color: #0068b8; }

.article--listing .article__date {
  color: #807f83; }

p,
.article--content {
  color: #2b2b2c;
  font-family: "ProximaNovaRegular";
  font-size: 17px;
  font-weight: normal !important;
  line-height: 1.42857 !important;
  font-size: 13px; }

.product__description ol li,
.product__description ul li,
.product__description p {
  color: #2b2b2c;
  font-family: "ProximaNovaRegular";
  font-weight: normal !important;
  line-height: normal !important;
  font-size: 13px; }

.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: 7.5px; }

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

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

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

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

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

.article__grid-image {
  display: block;
  clear: both;
  margin-bottom: 7.5px; }
  @media only screen and (max-width: 767px) {
    .article__grid-image {
      float: left;
      width: 40%;
      margin-bottom: 15px; } }
  .article__grid-image img {
    display: block; }

.article__list-image {
  margin: 0 auto; }

.sidebar {
  margin-top: 40px; }

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

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

.pagination__text {
  padding: 0 7.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; }

.search-bar__form {
  display: table;
  width: 100%;
  position: relative;
  height: 40px;
  border: 1px solid transparent; }

@media only screen and (max-width: 767px) {
  .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;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 0 0 5px;
  height: 100%;
  z-index: 1; }

.search-header__input,
.search-bar__input {
  background-color: transparent;
  border-radius: 0;
  color: #3d4246;
  border-color: transparent;
  padding-left: 35px;
  width: 100%; }
  .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: 0; }
  .search-header__input::-ms-input-placeholder,
  .search-bar__input::-ms-input-placeholder {
    color: #3d4246;
    opacity: 1; }

.search-bar__input {
  border: 1px solid transparent; }
  .search-bar__input:focus {
    border-color: transparent; }

/*============================================================================
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 7.5px;
  z-index: 999; }

.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;
  border-color: #e8e9eb;
  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 {
  clear: both;
  display: block;
  margin: auto;
  padding: 0;
  -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.accountsLink li.mobile-nav__item a,
.mobile-nav__link,
.mobile-nav__sublist-link {
  display: block;
  text-transform: uppercase;
  width: 100%;
  padding: 15px;
  font-size: 16px; }

.mobile-nav__link {
  position: relative;
  text-transform: uppercase; }

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

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

.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 {
  height: 100%;
  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: "Work Sans", "HelveticaNeue", "Helvetica Neue", sans-serif;
    font-weight: 600;
    display: table-cell;
    vertical-align: middle; }

/*================ Mobile nav wrapper ================*/
.mobile-nav-wrapper {
  -ms-transform: translate3d(-100%, 0, 0);
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  position: fixed;
  background-color: white;
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
  display: block;
  overflow: hidden;
  width: 320px;
  z-index: 110;
  /*
  &:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid $color-border;
}
  */ }
  .mobile-nav-wrapper.js-menu--is-open {
    display: block;
    -ms-transform: translate3d(0%, 0, 0);
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
    bottom: 0;
    overflow-y: auto;
    top: 0; }

.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: 15px;
  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;
  margin-bottom: 0;
  height: auto;
  /*
  height: $slideshow-height-small - 150;
  min-height:510px;

  &.slideshow--medium {
  height: $slideshow-height-medium ;
}

  &.slideshow--large {
  height: $slideshow-height-large ;
}

  @include media-query($medium-up) {
  height: $slideshow-height-small;

  &.slideshow--medium {
  height: $slideshow-height-medium;
}

  &.slideshow--large {
  height: $slideshow-height-large;
}
}
  */ }
  .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: black;
  padding: 7.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 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }
  .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: 1;
  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;
  display: none;
  /*   img{display:none;} */ }
  .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: 45px; }
  .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: -15px;
    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: 768px) {
    .slideshow__video-control--play-wrapper {
      height: auto; } }

@media only screen and (min-width: 768px) {
  .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: 768px) {
      .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: 600; }
  .grid-view-item.product-price--sold-out .product-price__price {
    text-decoration: line-through; }

.product-price__sale--single {
  padding-right: 10px; }

.product-price__sale,
.product__price--sale {
  color: black; }

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

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

/*================ Module | Filters and Sort toolbar and selection ================*/
.filters-toolbar-wrapper {
  border-bottom: 1px solid #e8e9eb;
  border-top: 1px solid #e8e9eb;
  margin-bottom: 22px; }
  @media only screen and (min-width: 768px) {
    .filters-toolbar-wrapper {
      margin-bottom: 15px; } }

.filters-toolbar {
  -moz-box-align: center;
  -moz-box-pack: justify;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

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

.filters-toolbar__item--count {
  min-width: 0;
  -webkit-flex: 0 1 auto;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  text-align: center; }

.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: 0 solid transparent;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  height: 55px;
  opacity: 1; }
  @media only screen and (max-width: 767px) {
    .filters-toolbar__input {
      height: 46px; } }
  .filters-toolbar__input.hidden {
    opacity: 0; }
  .filters-toolbar__input option {
    text-overflow: ellipsis;
    overflow: hidden; }

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

.filters-toolbar__input--filter {
  margin-left: -15px; }
  .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: 767px) {
    .filters-toolbar__product-count {
      font-size: 0.875em;
      line-height: 46px; } }

.site-footer {
  margin: 15px 0 0; }
  @media only screen and (max-width: 767px) {
    .site-footer {
      text-align: center; } }

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

.site-footer__linklist-item {
  display: inline-block;
  padding: 5px 10px;
  width: 25%;
  float: left; }
  @media only screen and (min-width: 768px) {
    .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 {
  *zoom: 1;
  margin: 35px auto 0;
  max-width: 320px; }
  .site-footer__newsletter::after {
    content: '';
    display: table;
    clear: both; }
  @media only screen and (min-width: 768px) {
    .site-footer__newsletter {
      margin: 15px 0 0;
      max-width: none; }
      .site-footer__newsletter i {
        display: none; } }
  .site-footer__newsletter .form--success {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto; }

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

.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: 768px) {
      .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: 768px) {
    .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: 768px) {
  .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: 767px) {
    .feature-row {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; } }

.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: 767px) {
    .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 {
  display: block;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .feature-row__image {
      order: 1; } }

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

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

  .feature-row__text--right {
    padding-right: 35px; } }
@media only screen and (min-width: 768px) {
  .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: 768px) {
  .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: 1;
  z-index: 1; }

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

.hero__btn {
  background-color: white;
  color: black;
  margin-top: 7.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; }

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

.quotes-wrapper .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 15px; }
  .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: 768px) {
  .logo-bar--large {
    margin-bottom: -15px; } }
.logo-bar__item {
  display: inline-block;
  vertical-align: middle;
  max-width: 160px;
  margin: 0 7.5px 35px; }

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

.logo-bar__link {
  display: block; }

.map-section {
  position: relative;
  height: 650px;
  width: 100%;
  overflow: hidden; }
  @media only screen and (min-width: 768px) {
    .map-section {
      height: 500px; } }
  .map-section .page-width {
    height: 100%; }

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

.map-section__overlay-wrapper {
  position: relative;
  text-align: center;
  height: 100%; }

.map-section__overlay {
  position: relative;
  display: inline-block;
  background-color: white;
  padding: 35px;
  margin-top: 22px;
  width: 100%;
  text-align: center;
  z-index: 3; }
  @media only screen and (min-width: 768px) {
    .map-section__overlay {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      margin-top: 0;
      width: 33.33333%; }
      .ie9 .map-section__overlay {
        top: 10%; } }
  .map-section--load-error .map-section__overlay {
    position: static;
    transform: translateY(0); }

.map-section__link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; }

.map-section__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  margin-bottom: -50%; }
  @media only screen and (min-width: 768px) {
    .map-section__container {
      width: 130%;
      height: 100%;
      margin: 0 -30% 0 0; } }

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

@media only screen and (max-width: 767px) {
  .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 {
  position: relative;
  width: 100%; }
  .image-bar--x-small .image-bar__content {
    height: 94px; }
  .image-bar--small .image-bar__content {
    height: 225px; }
  .image-bar--medium .image-bar__content {
    height: 357px; }
  .image-bar--large .image-bar__content {
    height: 488px; }
  .image-bar--x-large .image-bar__content {
    height: 582px; }
  @media only screen and (min-width: 768px) {
    .image-bar--x-small .image-bar__content {
      height: 125px; }
    .image-bar--small .image-bar__content {
      height: 300px; }
    .image-bar--medium .image-bar__content {
      height: 475px; }
    .image-bar--large .image-bar__content {
      height: 650px; }
    .image-bar--x-large .image-bar__content {
      height: 775px; } }

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

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

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

.collection-grid-item__title {
  color: white;
  text-align: center;
  width: 100%;
  top: 50%;
  padding: 0 5px;
  transition: 0.1s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
  @media only screen and (min-width: 768px) {
    .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; }

.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;
  margin-left: -30px; }
  @media only screen and (max-width: 767px) {
    .custom-content {
      margin-bottom: -22px;
      margin-left: -22px; } }

.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: 767px) {
    .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-inner {
  position: relative;
  display: inline-block;
  text-align: left;
  max-width: 100%; }

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

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

.notification-bar__message {
  color: #33383a;
  font-family: "Roboto Condensed";
  font-size: #33383a;
  font-weight: bold;
  margin-top: 10px;
  text-transform: uppercase;
  color: #33383a;
  height: auto;
  line-height: 45px;
  margin: auto;
  padding: 0; }

.login_Wrap > .login_popup {
  border: 1px solid #efefef;
  padding: 20px;
  position: absolute;
  right: 0;
  text-align: left;
  z-index: 99999;
  background: #fff;
  box-shadow: 1px 2px 4px #cccccc;
  max-width: 320px;
  width: 100%;
  display: block !important;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s linear; }

.login_Wrap {
  position: relative; }

.login_Wrap > .login_popup #RecoverPasswordForm .text-link,
.login_Wrap > .login_popup #CustomerLoginForm #customer_register_link {
  margin-left: 7px;
  font-size: 12px; }

.login_Wrap > .login_popup #RecoverPasswordForm .btn,
.login_Wrap > .login_popup #CustomerLoginForm .btn {
  margin-bottom: auto; }

.login_Wrap > .login_popup h2, .login_Wrap > .login_popup .h2,
.login_Wrap > .login_popup #RecoverPasswordForm,
.login_Wrap > .login_popup #CustomerLoginForm {
  font-size: 14px; }

.login_Wrap > .login_popup input {
  font-size: 12px;
  padding-left: 10px;
  padding-right: 10px; }

.login_Wrap > .login_popup p {
  color: #000000;
  font-size: 11px;
  margin: auto auto 15px;
  padding: 0; }

.login_Wrap .loginBtn:after {
  font-family: 'icomoon';
  content: '\f107';
  margin-left: 6px;
  vertical-align: -1px; }

.login_Wrap.popup_open .loginBtn:after {
  content: '\f106'; }

.login_Wrap.popup_open > .login_popup {
  visibility: visible;
  opacity: 1; }

.login_Wrap > .login_popup.accountLinkWrap {
  width: 175px;
  text-transform: uppercase; }

.site-header__cart > .site-header__cart-count {
  display: inline; }

.site-header__cart:before {
  font-family: 'icomoon';
  content: '\f07a';
  margin-right: 10px; }

.loginBtn {
  display: inline;
  margin-right: 15px;
  cursor: pointer; }

.small_header .grid__item {
  padding: 0; }

.small_header #AccessibleNav {
  font-size: 16px;
  color: #fff;
  font-family: "Roboto Condensed";
  padding-left: 0;
  padding-right: 0;
  font-weight: bold; }
  @media only screen and (max-width: 1199px) {
    .small_header #AccessibleNav {
      font-size: 13px; } }
  .small_header #AccessibleNav a {
    color: currentColor; }

.small_header .site-nav__link.site-nav__link--main {
  font-size: 14px;
  color: #fff;
  font-family: "Roboto Condensed";
  padding-left: 0;
  padding-right: 0; }
  @media only screen and (max-width: 1199px) {
    .small_header .site-nav__link.site-nav__link--main {
      font-size: 13px; } }

.small_header {
  background-color: #585858;
  border-bottom-color: #e5e5e5;
  color: #ffffff;
  font-size: 12px; }

.small_header .site-nav.list--inline {
  margin: 16px 0 17px;
  display: block;
  float: right;
  *zoom: 1; }
  .small_header .site-nav.list--inline::after {
    content: '';
    display: table;
    clear: both; }
  .small_header .site-nav.list--inline > li {
    float: left; }
    .small_header .site-nav.list--inline > li > a {
      padding: 0 18px;
      color: #fff; }

.site-header__logoWrap {
  width: 175px; }

.small_header .site-nav__link.site-nav__link--main .icon-chevron-down,
.site-header .icon.icon--wide.icon-chevron-down {
  display: none; }

.site-header .site-nav__link .icon-chevron-down {
  display: none; }

.site-header .site-nav li a {
  font-family: "Roboto Condensed";
  font-weight: 400;
  letter-spacing: 0;
  font-size: 16px;
  text-transform: uppercase; }
  @media only screen and (max-width: 1199px) {
    .site-header .site-nav li a {
      font-size: 12px; } }
  .site-header .site-nav li a:hover {
    color: #00abee; }

.notification-bar a,
.login_Wrap .loginBtn {
  font-family: "Roboto Condensed";
  font-weight: 400;
  letter-spacing: 0;
  font-size: 14px;
  color: #333; }

.loginBtn:hover,
.loginBtn:focus,
.notification-bar a:hover,
.notification-bar a:focus {
  color: #0068b8; }

header ul.site-nav li {
  float: left; }

header ul.site-nav {
  float: right; }

.site-header__search.small--hide {
  float: right;
  margin-top: auto;
  padding: 0;
  position: relative; }

.site-header .page-width > .grid.grid--table > .small--hide {
  position: relative; }

.site-header__search button.search__btn {
  margin-top: auto;
  position: static;
  cursor: pointer;
  pointer-events: auto;
  padding-left: 0;
  padding-right: 0;
  color: #fff;
  font-family: "Roboto Condensed";
  font-size: 14px;
  text-transform: uppercase; }
  .site-header__search button.search__btn:hover {
    color: #0068b8; }
  .site-header__search button.search__btn .icon.icon-search {
    width: 26px; }
  .site-header__search button.search__btn span {
    vertical-align: middle; }

.site-header__search form.search_open + button.search__btn {
  color: #0068b8; }

.small_header .site-nav.list--inline > li .btn--link.site-header__search-toggle.js-drawer-open-top {
  color: #fff;
  line-height: 18px;
  font-family: "Roboto Condensed";
  font-size: 14px;
  text-transform: uppercase; }
  .small_header .site-nav.list--inline > li .btn--link.site-header__search-toggle.js-drawer-open-top span,
  .small_header .site-nav.list--inline > li .btn--link.site-header__search-toggle.js-drawer-open-top .icon.icon-search {
    display: inline-block;
    vertical-align: middle; }
  .small_header .site-nav.list--inline > li .btn--link.site-header__search-toggle.js-drawer-open-top:focus, .small_header .site-nav.list--inline > li .btn--link.site-header__search-toggle.js-drawer-open-top:hover {
    color: #0068b8; }

.site-header__search .search-header.search {
  background-color: #fff;
  z-index: 100;
  left: auto;
  position: absolute;
  right: 0;
  top: 40px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all linear;
  display: block;
  width: 250px;
  max-width: 250px;
  background-color: #f2efef;
  border: 1px solid #dcdadb;
  padding: 15px; }
  .site-header__search .search-header.search .search-header__input {
    background-color: #ffffff;
    border: 1px solid #d2d2d2;
    font-family: Arial;
    font-size: 12px;
    font-weight: normal;
    height: 30px;
    line-height: 27px;
    padding-bottom: 0;
    padding-left: 15px;
    padding-top: 0; }
  .site-header__search .search-header.search .search-header__submit {
    background: #000000 none repeat scroll 0 0;
    bottom: 0;
    color: #ffffff;
    height: 30px;
    left: auto;
    margin: auto;
    padding: 0;
    pointer-events: auto;
    right: 15px;
    text-align: center;
    top: 0;
    width: 30px; }
    .site-header__search .search-header.search .search-header__submit .icon.icon-search {
      height: 28px;
      margin: auto;
      width: 16px; }
  .site-header__search .search-header.search ::-webkit-input-placeholder {
    color: #aaa9a9;
    opacity: 1; }
  .site-header__search .search-header.search :-moz-placeholder {
    color: #aaa9a9;
    opacity: 1; }
  .site-header__search .search-header.search ::-moz-placeholder {
    color: #aaa9a9;
    opacity: 1; }
  .site-header__search .search-header.search :-ms-input-placeholder {
    color: #aaa9a9;
    opacity: 1; }

.site-header__search .search-header.search.search--focus {
  opacity: 1;
  visibility: visible; }

#shopify-section-header header.site-header.fixed {
  background-color: rgba(255, 255, 255, 0.97);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.118); }

.template-index .slideshow-wrapper {
  border-bottom: 0px none #d2d3d4;
  border-top: 0px none #d2d3d4;
  box-sizing: content-box; }

.slideshow-wrapper .slick-arrow {
  background-color: rgba(0, 0, 0, 0.5);
  width: 63px;
  height: 63px;
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
  z-index: 9;
  transition: all 0.3s linear;
  color: #fff;
  opacity: 0.8; }

.slideshow-wrapper .slick-prev.slick-arrow {
  left: 10px;
  right: auto; }

.slideshow-wrapper .slick-next.slick-arrow {
  right: 10px;
  left: auto; }

.slideshow-wrapper .slick-next.slick-arrow:before {
  content: "\e620";
  font-family: 'icomoon';
  transition: all 0.3s linear;
  color: #fff;
  opacity: 1; }

.slideshow-wrapper .slick-prev.slick-arrow:before {
  content: "\e61e";
  font-family: 'icomoon';
  transition: all 0.3s linear;
  color: #fff;
  opacity: 1; }

.slideshow-wrapper .slick-next.slick-arrow:hover:before {
  opacity: 0.75; }

.slideshow-wrapper .slick-prev.slick-arrow:hover:before {
  opacity: 0.75; }

.slideshow-wrapper .slick-prev.slick-arrow:hover {
  opacity: 1; }

.slideshow-wrapper .slick-next.slick-arrow:hover {
  opacity: 1; }

.slideshow.slick-slider .slick-dots li {
  height: 16px;
  width: 16px; }

.slideshow.slick-slider .slick-dots li {
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s linear 0s; }

.slideshow.slick-slider .slick-dots li button {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  transition: background 0.3s ease 0s;
  width: 100%; }

.slideshow.slick-slider .slick-dots li:hover {
  background: rgba(0, 0, 0, 0.2); }

.slideshow .slick-dots li button::before {
  display: none !important; }

.slideshow.slick-slider .slick-dots li:hover button {
  background: rgba(0, 0, 0, 0); }

.slideshow.slick-slider .slick-dots li:after {
  background: #ffffff none repeat scroll 0 0;
  border-radius: 50%;
  bottom: 0;
  content: "";
  display: block;
  left: -2px;
  margin: auto;
  position: absolute;
  right: -2px;
  top: 100%;
  transition: all 0.3s linear 0s; }

.slideshow.slick-slider .slick-dots li.slick-active:after {
  top: 0; }

.small_header .site-nav.list--inline li.site-nav--has-dropdown > div.site-nav__dropdown {
  background: #1e1e1e none repeat scroll 0 0;
  border: 0 none;
  display: block;
  left: 0;
  margin: auto;
  right: auto;
  white-space: normal;
  width: auto;
  transition: all 0.3s linear 0s;
  visibility: hidden;
  opacity: 0; }

.small_header .site-nav.list--inline li.site-nav--has-dropdown:hover > div.site-nav__dropdown {
  visibility: visible;
  opacity: 1; }

.small_header .site-nav.list--inline li.site-nav--has-dropdown > div.site-nav__dropdown ul li a {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  padding: 4px; }

.small_header #AccessibleNav:hover a, .small_header li:hover > .site-nav__link.site-nav__link--main {
  color: #0068b8; }

header ul.site-nav li > .site-nav__dropdown {
  display: block;
  transition: all 0.3s linear 0s;
  visibility: hidden;
  opacity: 0;
  top: 100%; }

header ul.site-nav li:hover > .site-nav__dropdown {
  visibility: visible;
  opacity: 1; }

header ul.site-nav li.no-megamenu {
  position: relative; }

header #SiteNav.site-nav .site-nav__dropdown {
  background: #ffffff none repeat scroll 0 0;
  border: 0 none;
  z-index: 99;
  box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.06);
  left: auto;
  right: 0;
  width: 1100px; }
  header #SiteNav.site-nav .site-nav__dropdown:not(.no-megamenu) {
    padding: 0; }
    header #SiteNav.site-nav .site-nav__dropdown:not(.no-megamenu)#SiteNavLinklist-supplements {
      width: 212px;
      left: auto;
      right: 0; }
      header #SiteNav.site-nav .site-nav__dropdown:not(.no-megamenu)#SiteNavLinklist-supplements .meganav__product {
        width: 100%; }

.meganav__nav .meganav__product {
  border: 1px solid #dcdadb;
  min-height: 225px;
  margin: auto auto -1px -1px; }

.meganav__nav .meganav__product .grid-view-item {
  margin-bottom: auto;
  padding-left: 5px;
  padding-right: 5px; }

header #SiteNav.site-nav .meganav__scroller--has-list {
  margin-bottom: 15px;
  margin-top: 15px;
  *zoom: 1; }
  header #SiteNav.site-nav .meganav__scroller--has-list::after {
    content: '';
    display: table;
    clear: both; }

header #SiteNav.site-nav li.no-megamenu .site-nav__dropdown {
  padding-left: 0;
  padding-right: 0;
  left: auto;
  right: 0;
  width: auto;
  min-width: 180px;
  padding-top: 10px; }

header ul.site-nav li.no-megamenu .meganav__nav li {
  display: block;
  float: none; }

header ul.site-nav li.no-megamenu .meganav__nav li a {
  white-space: nowrap; }

.meganav__product {
  display: block;
  float: left;
  width: 20%; }

header #SiteNav.site-nav li .site-nav__dropdown .meganav__product .grid-view-item__title {
  font-size: 16px;
  font-family: "Roboto Condensed";
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.54;
  text-align: center; }

header #SiteNav.site-nav li .site-nav__dropdown .meganav__product #add-cart-frm,
header #SiteNav.site-nav li .site-nav__dropdown .meganav__product .grid-view-item__meta {
  display: none; }

header #SiteNav.site-nav li.no-megamenu .site-nav__dropdown > .meganav__nav {
  padding: 0; }

header ul.site-nav li.no-megamenu .meganav__nav li {
  display: block;
  float: none;
  margin-bottom: 11px; }

header ul.site-nav li.no-megamenu .meganav__nav li a {
  display: block;
  font-size: 12px;
  padding: 0 10px;
  white-space: normal; }

.slideshow .slick-dots {
  bottom: 12px; }

.custom-content {
  margin-top: 103px; }
  .custom-content .custom__item-inner {
    display: block;
    max-width: 100%;
    position: relative;
    text-align: center; }
    .custom-content .custom__item-inner .h3.text-center {
      font-family: "Roboto Condensed";
      font-size: 27px !important;
      font-weight: 100;
      line-height: 28px;
      margin-bottom: 40px;
      margin-top: 17px;
      padding: 0 30px; }
    .custom-content .custom__item-inner img {
      transition: all 0.6s ease 0s; }
      .custom-content .custom__item-inner img:hover {
        transform: scale(1.05); }
    .custom-content .custom__item-inner .btn {
      border-radius: 0;
      display: block;
      font-family: "Roboto Condensed";
      font-size: 14px;
      font-weight: normal;
      height: 40px;
      line-height: 38px;
      margin-left: auto;
      margin-right: auto;
      padding: 0;
      width: 180px;
      color: #fff; }
      .custom-content .custom__item-inner .btn:focus, .custom-content .custom__item-inner .btn:hover {
        background-color: #006990;
        color: #fff; }

.custom-content-section .section-header .h1.mega-title {
  color: #0068b8;
  font-family: "RobotoCondensedRegular" !important;
  font-size: 35px !important;
  font-weight: normal !important;
  margin: 0 !important;
  padding-bottom: 17px;
  text-transform: uppercase; }

.custom-content-section .section-header h4.h2, .custom-content-section .section-header .h2.h4 {
  font-size: 17px;
  font-family: 'ProximaNovaRegular';
  font-weight: normal !important;
  margin: 0;
  color: #2b2b2c;
  padding-bottom: 17px;
  line-height: 1.42857143 !important; }

.quotes-section .section-header h2, .quotes-section .section-header .h2 {
  color: #0068b8;
  font-family: "Roboto Condensed";
  font-size: 32px;
  font-weight: normal;
  letter-spacing: 0;
  margin: 0;
  padding-bottom: 4px;
  text-transform: uppercase; }
.quotes-section .quotes-wrapper .quotesThumb {
  padding-left: 22px;
  padding-right: 22px; }
  .quotes-section .quotes-wrapper .quotesThumb .quotes-slider__text {
    padding-left: 0;
    padding-right: 0; }
    .quotes-section .quotes-wrapper .quotesThumb .quotes-slider__text p {
      color: #2b2b2c;
      text-align: left; }
.quotes-section .quotes-wrapper .btn {
  border-radius: 0;
  display: block;
  font-family: "Roboto Condensed";
  font-size: 14px;
  font-weight: normal;
  height: 40px;
  line-height: 38px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  width: 180px;
  color: #fff; }
  .quotes-section .quotes-wrapper .btn:focus, .quotes-section .quotes-wrapper .btn:hover {
    background-color: #006990;
    color: #fff; }

.site-footer p {
  color: #807F83; }
.site-footer a {
  color: #807F83; }
  .site-footer a:hover {
    color: #076fba; }
.site-footer .maingrid_1 {
  vertical-align: top;
  width: 30%; }
.site-footer .site-footer__title {
  color: #383838;
  font-family: "Roboto Condensed";
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase; }
.site-footer .site-footer__linklist-item {
  float: none;
  margin-bottom: auto;
  width: auto; }
  .site-footer .site-footer__linklist-item > a {
    color: #807f83;
    cursor: pointer;
    display: block;
    font-family: "ProximaNovaRegular";
    font-size: 12px;
    margin-bottom: auto;
    text-transform: uppercase; }
    .site-footer .site-footer__linklist-item > a:hover {
      color: #076fba; }
  .site-footer .site-footer__linklist-item li.footer-sub-nav__item {
    border: 0 none; }
    .site-footer .site-footer__linklist-item li.footer-sub-nav__item a {
      padding: 0;
      font-size: 14px;
      font-family: 'ProximaNovaRegular';
      color: #807F83;
      border: none;
      padding: 0px;
      margin-bottom: auto;
      transition: all 0.3s linear; }
      .site-footer .site-footer__linklist-item li.footer-sub-nav__item a:before {
        position: absolute;
        font-size: 14px;
        font-family: 'icomoon';
        content: '\f105';
        margin-left: -12px; }
      .site-footer .site-footer__linklist-item li.footer-sub-nav__item a:hover {
        color: #0068b8; }

.site-footer__newsletter {
  background-color: #444444;
  border-bottom: 0px none #e5e6e8;
  border-top: 0px none #e5e6e8;
  float: none;
  margin-bottom: 30px;
  padding: 21px 30px;
  width: 100%; }
  .site-footer__newsletter .input-group__field {
    border: 1px solid #e4e5e7;
    box-sizing: border-box;
    color: #807f83;
    float: left;
    font-family: "proximanovaregular";
    font-size: 14px;
    height: auto;
    padding: 9px 15px 10px;
    width: 100%;
    height: 40px;
    border-radius: 0; }
  .site-footer__newsletter .input-group__btn .btn {
    background: #000000 none repeat scroll 0 0 !important;
    border: medium none !important;
    border-radius: 0 !important;
    box-sizing: border-box;
    color: #ffffff !important;
    display: block;
    float: left !important;
    font-family: "Roboto Condensed";
    font-size: 12px !important;
    height: 40px;
    margin-left: 2%;
    padding: 10px 0 !important;
    position: relative;
    text-align: center;
    width: 158px; }

.benefitBox .section-header {
  margin: auto; }
  .benefitBox .section-header .mega-title {
    color: #0068b8;
    font-family: "Roboto Condensed";
    font-size: 32px;
    font-weight: normal;
    line-height: 49px;
    margin: auto auto 12px;
    padding-bottom: 0;
    text-transform: none; }
  .benefitBox .section-header .h2 {
    color: #2b2b2c;
    font-family: "ProximaNovaRegular";
    font-size: 17px;
    font-weight: normal;
    letter-spacing: 0;
    line-height: 1.42857;
    margin: 0;
    padding: 0;
    text-transform: none; }
.benefitBox .custom-content {
  margin-top: 15px;
  margin-bottom: 12px; }
  .benefitBox .custom-content .h2 {
    color: #333333;
    font-size: 14px;
    font-family: "Roboto Condensed";
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5; }
.benefitBox .btn {
  color: #fff;
  border-radius: 0;
  display: block;
  font-family: "Roboto Condensed";
  font-size: 14px;
  font-weight: normal;
  height: 36px;
  line-height: 34px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  width: 132px; }
  .benefitBox .btn:focus, .benefitBox .btn:hover {
    background-color: #006990;
    color: #fff; }

.home-tabs {
  position: relative;
  background-color: #00adef;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  margin-top: 25px; }
  .home-tabs #horizontalTab .r-tabs-nav {
    padding: 0;
    left: 0;
    margin: auto;
    max-width: 700px;
    position: absolute;
    right: 0;
    top: 80px;
    z-index: 1;
    -moz-box-align: center;
    -moz-box-pack: justify;
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .home-tabs #horizontalTab .r-tabs-nav .r-tabs-tab {
      border: 1px solid #00bff3;
      display: block;
      flex: 1 1 0;
      margin: 0 0 0 -1px; }
      .home-tabs #horizontalTab .r-tabs-nav .r-tabs-tab.r-tabs-state-active {
        background-color: #2bb673; }
        .home-tabs #horizontalTab .r-tabs-nav .r-tabs-tab.r-tabs-state-active a {
          color: #fff; }
      .home-tabs #horizontalTab .r-tabs-nav .r-tabs-tab a {
        color: #ffffff;
        display: block;
        font-family: "Roboto Condensed";
        font-size: 18px;
        font-weight: 400;
        padding: 5px 15px;
        text-align: center;
        text-transform: uppercase; }
    @media only screen and (max-width: 767px) {
      .home-tabs #horizontalTab .r-tabs-nav {
        display: none; } }
  .home-tabs #horizontalTab .r-tabs-accordion-title {
    background: #1699cf none repeat scroll 0 0;
    border-top: 1px solid #ffffff; }
    @media only screen and (min-width: 768px) {
      .home-tabs #horizontalTab .r-tabs-accordion-title {
        display: none; } }
  .home-tabs #horizontalTab .custom__item {
    padding-left: 0;
    padding-bottom: 17px;
    margin-bottom: 26px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; }
    @media only screen and (min-width: 1200px) {
      .home-tabs #horizontalTab .custom__item .page-width {
        max-width: none; } }
    .home-tabs #horizontalTab .custom__item.r-tabs-panel {
      display: none; }
    .home-tabs #horizontalTab .custom__item.r-tabs-panel.r-tabs-state-active {
      display: block; }
    .home-tabs #horizontalTab .custom__item .custom__item-inner {
      width: 100%; }
      .home-tabs #horizontalTab .custom__item .custom__item-inner > .h2 {
        display: none; }
      .home-tabs #horizontalTab .custom__item .custom__item-inner .section-header {
        margin-bottom: 125px; }
        .home-tabs #horizontalTab .custom__item .custom__item-inner .section-header .mega-title {
          color: #ffffff;
          display: block;
          font-family: "Roboto Condensed";
          font-size: 30px;
          font-weight: 600;
          letter-spacing: 0;
          margin-top: 25px;
          text-align: center;
          text-transform: uppercase;
          white-space: normal;
          width: 100%; }
      .home-tabs #horizontalTab .custom__item .custom__item-inner .btn {
        color: #fff;
        border-radius: 0;
        display: block;
        font-family: "Roboto Condensed";
        font-size: 14px;
        font-weight: normal;
        height: 40px;
        line-height: 38px;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        width: 216px;
        background-color: #addf2e; }
        .home-tabs #horizontalTab .custom__item .custom__item-inner .btn:focus, .home-tabs #horizontalTab .custom__item .custom__item-inner .btn:hover {
          background-color: #000;
          color: #fff; }
    .home-tabs #horizontalTab .custom__item .tab-colls {
      *zoom: 1;
      text-align: center;
      margin-top: 30px; }
      .home-tabs #horizontalTab .custom__item .tab-colls::after {
        content: '';
        display: table;
        clear: both; }
      .home-tabs #horizontalTab .custom__item .tab-colls .img_wrap {
        max-width: calc(100% - 520px);
        display: inline-block; }
        @media only screen and (min-width: 1200px) {
          .home-tabs #horizontalTab .custom__item .tab-colls .img_wrap {
            max-width: calc(100% - 1020px); } }
      .home-tabs #horizontalTab .custom__item .tab-colls > .active.tab-cntnt-holder {
        float: left;
        width: 270px;
        text-align: right; }
        @media only screen and (min-width: 1200px) {
          .home-tabs #horizontalTab .custom__item .tab-colls > .active.tab-cntnt-holder {
            width: 500px; } }
      .home-tabs #horizontalTab .custom__item .tab-colls > .tab-img-holder {
        float: right;
        width: 270px;
        text-align: left; }
        @media only screen and (min-width: 1200px) {
          .home-tabs #horizontalTab .custom__item .tab-colls > .tab-img-holder {
            width: 500px; } }
      .home-tabs #horizontalTab .custom__item .tab-colls h3, .home-tabs #horizontalTab .custom__item .tab-colls .h3 {
        font-family: "Roboto Condensed",sans-serif;
        font-size: 26px;
        font-weight: normal;
        line-height: 28px;
        margin: 20px 0 5px;
        padding-bottom: 3px;
        text-transform: uppercase; }
      .home-tabs #horizontalTab .custom__item .tab-colls p {
        color: #bff7ff;
        font-size: 17px;
        font-weight: normal;
        line-height: 28px;
        margin-bottom: 20px;
        margin-top: 0; }

.quotes-wrapper {
  margin-left: -22px;
  margin-right: -22px; }

.brdcrmb_in li {
  display: inline;
  font-size: 13px;
  text-transform: uppercase;
  color: #747474; }
  .brdcrmb_in li a {
    color: #333;
    font-size: 13px; }

#shopify-section-collection-template .section-header h1, #shopify-section-collection-template .section-header .h1 {
  color: #0068b8;
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 22px;
  margin-top: 33px;
  text-align: left;
  text-transform: uppercase; }
#shopify-section-collection-template .section-header .rte {
  color: #2b2b2c;
  font-family: "ProximaNovaRegular";
  font-size: 17px;
  font-weight: bold !important;
  line-height: 1.42857 !important;
  margin: 0;
  padding-bottom: 17px;
  text-align: left; }

.grid.grid--view-items {
  margin-left: -22px;
  *zoom: 1; }
  .grid.grid--view-items::after {
    content: '';
    display: table;
    clear: both; }

#Collection .grid.grid--view-items > .grid__item {
  padding-bottom: 20px;
  border-bottom: 1px solid #cccccc; }

.grid.grid--view-items > .grid__item {
  clear: none;
  padding-left: 22px;
  margin-bottom: auto; }
  .grid.grid--view-items > .grid__item .grid-view-item {
    margin-bottom: 26px; }
    .grid.grid--view-items > .grid__item .grid-view-item .product_cont {
      *zoom: 1;
      background-color: transparent;
      transition: all 0.3s linear;
      display: block;
      border: 1px solid transparent;
      margin-bottom: 16px;
      position: relative;
      padding-bottom: 15px; }
      .grid.grid--view-items > .grid__item .grid-view-item .product_cont::after {
        content: '';
        display: table;
        clear: both; }
      .grid.grid--view-items > .grid__item .grid-view-item .product_cont:hover {
        border-width: 1px;
        border-color: #fafafa;
        border-style: solid;
        box-shadow: 0px 2px 3.96px 0.04px rgba(0, 0, 0, 0.12); }
      .grid.grid--view-items > .grid__item .grid-view-item .product_cont .grid-view-item__title {
        padding-left: 26px;
        padding-right: 26px;
        color: #076fba;
        font-size: 16px;
        font-weight: 400;
        padding-left: 26px;
        padding-right: 26px;
        padding-top: 3px;
        line-height: 24px;
        text-transform: uppercase;
        margin-bottom: 10px;
        display: block; }
        @media only screen and (max-width: 991px) {
          .grid.grid--view-items > .grid__item .grid-view-item .product_cont .grid-view-item__title {
            font-size: 13px;
            line-height: 20px;
            padding-left: 5px;
            padding-right: 5px; } }
        @media only screen and (max-width: 767px) {
          .grid.grid--view-items > .grid__item .grid-view-item .product_cont .grid-view-item__title {
            padding-left: 5px;
            padding-right: 5px; } }
      .grid.grid--view-items > .grid__item .grid-view-item .product_cont .grid-view-item__meta {
        display: block;
        margin-top: 7px; }
        .grid.grid--view-items > .grid__item .grid-view-item .product_cont .grid-view-item__meta .product-price__price .money {
          font-weight: normal;
          line-height: 20px;
          text-transform: uppercase;
          font-family: "Roboto";
          font-weight: 400;
          color: #1e1e1e; }
        .grid.grid--view-items > .grid__item .grid-view-item .product_cont .grid-view-item__meta .product-price__price.old_price .money {
          font-size: 13px;
          margin-right: 5px;
          color: #1e1e1e;
          font-weight: normal;
          line-height: 20px;
          text-transform: uppercase;
          font-family: "Roboto";
          font-weight: 400; }
        .grid.grid--view-items > .grid__item .grid-view-item .product_cont .grid-view-item__meta .product-price__price.product-price__sale .money {
          color: #454545;
          font-size: 16px;
          font-family: "Roboto";
          font-weight: 400; }
        .grid.grid--view-items > .grid__item .grid-view-item .product_cont .grid-view-item__meta .product-price__price .product-price__sale-label {
          background: #0068b8 none repeat scroll 0 0;
          border-radius: 0 0 0 50px;
          color: #ffffff;
          height: 50px;
          line-height: 40px;
          padding-right: 7px;
          position: absolute;
          right: 0;
          text-align: right;
          top: 0;
          width: 50px;
          z-index: 999;
          display: none; }
        .grid.grid--view-items > .grid__item .grid-view-item .product_cont .grid-view-item__meta .learnMore {
          display: block;
          font-size: 17px;
          padding-bottom: 22px;
          padding-top: 3px;
          text-transform: uppercase;
          width: 100%;
          color: #333; }
      .grid.grid--view-items > .grid__item .grid-view-item .product_cont .btnsWrap {
        position: relative;
        padding-right: 0px;
        max-width: 203px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s linear;
        margin-top: 10px; }
        @media only screen and (max-width: 990px) {
          .grid.grid--view-items > .grid__item .grid-view-item .product_cont .btnsWrap {
            opacity: 1;
            padding-right: 0;
            visibility: visible;
            width: 85px; } }
        .grid.grid--view-items > .grid__item .grid-view-item .product_cont .btnsWrap .add_cart {
          text-align: center; }
          .grid.grid--view-items > .grid__item .grid-view-item .product_cont .btnsWrap .add_cart .btn {
            width: 84px;
            display: inline-block;
            padding: 2px 0 4px;
            margin-bottom: 0;
            font-size: 12px;
            line-height: 20px;
            color: #333;
            text-align: center;
            text-indent: 0;
            text-transform: uppercase;
            text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
            vertical-align: middle;
            cursor: pointer;
            background-color: #F5F5F5;
            background-image: -moz-linear-gradient(top, white, #e6e6e6);
            background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#e6e6e6));
            background-image: -webkit-linear-gradient(top, white, #e6e6e6);
            background-image: -o-linear-gradient(top, white, #e6e6e6);
            background-image: linear-gradient(to bottom, white, #e6e6e6);
            background-repeat: repeat-x;
            border: 1px solid #CCC;
            border-color: #E6E6E6 #E6E6E6 #BFBFBF;
            border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
            border-bottom-color: #B3B3B3;
            -webkit-border-radius: 4px;
            -moz-border-radius: 4px;
            border-radius: 4px;
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
            filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
            -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
            -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
            background: #3aa5db;
            color: #fff;
            text-shadow: none;
            background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzNhYTVkYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwZDg5YzkiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
            background: -moz-linear-gradient(top, #3aa5db 0%, #0d89c9 100%);
            background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3aa5db), color-stop(100%, #0d89c9));
            background: -webkit-linear-gradient(top, #3aa5db 0%, #0d89c9 100%);
            background: -o-linear-gradient(top, #3aa5db 0%, #0d89c9 100%);
            background: -ms-linear-gradient(top, #3aa5db 0%, #0d89c9 100%);
            background: linear-gradient(to bottom, #3aa5db 0%, #0d89c9 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3aa5db', endColorstr='#0d89c9',GradientType=0 ); }
          .grid.grid--view-items > .grid__item .grid-view-item .product_cont .btnsWrap .add_cart .btn-blue:hover {
            background: #2a9ed8;
            background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzJhOWVkOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwYzgxYmMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
            background: -moz-linear-gradient(top, #2a9ed8 0%, #0c81bc 100%);
            background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2a9ed8), color-stop(100%, #0c81bc));
            background: -webkit-linear-gradient(top, #2a9ed8 0%, #0c81bc 100%);
            background: -o-linear-gradient(top, #2a9ed8 0%, #0c81bc 100%);
            background: -ms-linear-gradient(top, #2a9ed8 0%, #0c81bc 100%);
            background: linear-gradient(to bottom, #2a9ed8 0%, #0c81bc 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2a9ed8', endColorstr='#0c81bc',GradientType=0 ); }
            .grid.grid--view-items > .grid__item .grid-view-item .product_cont .btnsWrap .add_cart .btn-blue:hover:hover {
              background: #ffffff;
              text-decoration: none;
              background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlN2U3ZTciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
              background: -moz-linear-gradient(top, white 0%, #e7e7e7 100%);
              background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #e7e7e7));
              background: -webkit-linear-gradient(top, white 0%, #e7e7e7 100%);
              background: -o-linear-gradient(top, white 0%, #e7e7e7 100%);
              background: -ms-linear-gradient(top, white 0%, #e7e7e7 100%);
              background: linear-gradient(to bottom, white 0%, #e7e7e7 100%);
              filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e7e7e7',GradientType=0 ); }
            .grid.grid--view-items > .grid__item .grid-view-item .product_cont .btnsWrap .add_cart .btn-blue:hover:active {
              outline: 0;
              -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
              -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
              box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); }
        .grid.grid--view-items > .grid__item .grid-view-item .product_cont .btnsWrap .iwishAddWrap {
          display: none; }
          .grid.grid--view-items > .grid__item .grid-view-item .product_cont .btnsWrap .iwishAddWrap .iWishAdd {
            position: absolute;
            top: 0;
            right: 0;
            width: 36px;
            height: 36px;
            line-height: 42px;
            border: 1px solid #000;
            background-image: url(//cdn.shopify.com/s/files/1/2293/0089/files/wishList_small.png?v=1517930973);
            background-position: center center;
            background-repeat: no-repeat; }
      .grid.grid--view-items > .grid__item .grid-view-item .product_cont:hover > .btnsWrap {
        opacity: 1;
        visibility: visible; }
      .grid.grid--view-items > .grid__item .grid-view-item .product_cont .old_price {
        color: #454545;
        font-size: 16px;
        font-weight: normal; }
      .grid.grid--view-items > .grid__item .grid-view-item .product_cont span.product-price__price {
        color: #000;
        font-size: 18px; }
      .grid.grid--view-items > .grid__item .grid-view-item .product_cont .freeship {
        color: #9b9b9b;
        font-family: "Roboto";
        font-size: 15px;
        font-weight: 300; }
    .grid.grid--view-items > .grid__item .grid-view-item .add_cart .btn {
      font-family: "Roboto Condensed";
      letter-spacing: 0;
      width: 100%;
      background-color: #fff;
      border: 1px solid #000;
      color: #000;
      background-image: url(//cdn.shopify.com/s/files/1/2293/0089/files/add_toCartIcon_small.png?v=1517930962);
      background-repeat: no-repeat;
      background-position: 10px 7px;
      text-indent: 10px;
      font-size: 14px;
      font-weight: 400;
      height: 36px;
      text-transform: none;
      line-height: normal; }
      @media only screen and (max-width: 990px) {
        .grid.grid--view-items > .grid__item .grid-view-item .add_cart .btn {
          background-position: center center;
          float: none;
          margin: auto;
          padding: 0;
          text-indent: -999px;
          width: 36px; } }

.f_contact .site-header__logo-image > img {
  max-width: 128px; }
.f_contact .btm-link-hdng {
  color: #807f83;
  font-family: "Roboto Condensed";
  font-size: 17px;
  font-weight: normal;
  letter-spacing: 0;
  padding-bottom: auto;
  text-transform: uppercase;
  margin-top: 8px; }
.f_contact .social-icon {
  *zoom: 1; }
  .f_contact .social-icon::after {
    content: '';
    display: table;
    clear: both; }
  .f_contact .social-icon li {
    background-image: none;
    float: left;
    list-style-type: none !important;
    margin: 0;
    padding: 15px 2px; }
    .f_contact .social-icon li a {
      display: block;
      padding-left: 0;
      padding-right: 0; }
      .f_contact .social-icon li a i {
        background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
        color: #818085;
        font-size: 20px;
        height: 27px;
        margin-left: 1px;
        text-align: center;
        transition: all 0.5s ease-in-out 0s;
        width: 27px; }
      .f_contact .social-icon li a:hover i {
        color: #000; }

.list--inline.pagination {
  *zoom: 1;
  clear: both; }
  .list--inline.pagination::after {
    content: '';
    display: table;
    clear: both; }
  .list--inline.pagination .btn {
    line-height: normal; }
  .list--inline.pagination .previousLink {
    float: left; }
  .list--inline.pagination .nextLink {
    float: right; }
  .list--inline.pagination li.pagination__text {
    line-height: 40px; }

.thumbnails-slider--active {
  margin-left: -5px;
  margin-right: -4px; }
  .thumbnails-slider--active .btn.btn--link {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    bottom: 0;
    color: #076fba;
    font-size: 30px;
    height: 45px;
    margin: auto;
    padding: 0;
    position: absolute;
    text-align: center;
    top: 0;
    width: 25px;
    z-index: 1; }
    .thumbnails-slider--active .btn.btn--link.next {
      right: -20px; }
    .thumbnails-slider--active .btn.btn--link.prev {
      left: -20px; }
  .thumbnails-slider--active .slick-slider {
    margin: auto; }
    .thumbnails-slider--active .slick-slider .slick-slide {
      margin-left: 5px;
      margin-right: 5px; }
      .thumbnails-slider--active .slick-slider .slick-slide .product-single__thumbnail {
        margin-top: auto;
        border: 1px solid #e6e7e7;
        position: relative;
        padding-top: 100%; }
        .thumbnails-slider--active .slick-slider .slick-slide .product-single__thumbnail img {
          margin-left: auto;
          margin-right: auto;
          display: block;
          width: auto;
          height: auto;
          max-width: 95%;
          max-height: 95%;
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          left: 0;
          right: 0; }

.product-single__photo {
  border: 1px solid #e6e7e7;
  margin-bottom: 10px;
  padding-right: 1px; }

.product-single__meta .product-single__title {
  border-bottom: 0px none #e6e7e7;
  color: #d80546;
  font-size: 30px;
  font-weight: normal;
  margin: 0;
  padding-bottom: 15px;
  text-transform: uppercase; }

.first_description {
  color: #333333;
  display: block;
  font-family: "ProximaNovaBold";
  font-size: 14px;
  margin-bottom: 12px;
  text-transform: uppercase; }

.product-single__price .product-price__price {
  font-family: "ProximaNovaRegular";
  font-weight: normal !important;
  line-height: 1.42857 !important;
  margin: 0;
  padding-bottom: 0;
  font-size: 30px;
  color: #0068b8; }

.product-form__item.product-form__item--quantity label {
  display: none; }

.product-form__item--quantity {
  flex: 0 0 33.33%;
  float: left;
  margin-right: auto;
  padding: 0 5px 0 0;
  width: 33.33%; }
  .product-form__item--quantity .qty_wrap {
    width: 100%; }
    .product-form__item--quantity .qty_wrap input[type="button"] {
      -webkit-border-radius: 0;
      -webkit-appearance: none;
      -webkit-border-radius: 0;
      border-radius: 0; }
      @media only screen and (max-width: 767px) {
        .product-form__item--quantity .qty_wrap input[type="button"] {
          width: 24px; } }
    .product-form__item--quantity .qty_wrap .quantityInput {
      width: calc(100% - 80px); }
      @media only screen and (max-width: 767px) {
        .product-form__item--quantity .qty_wrap .quantityInput {
          width: calc(100% - 48px); } }

.qty_wrap {
  *zoom: 1;
  border: 1px solid #e0dede;
  display: block;
  width: 122px; }
  .qty_wrap::after {
    content: '';
    display: table;
    clear: both; }
  .qty_wrap input[type="button"] {
    padding: 0;
    border: 0 none;
    background: #fbfaf9;
    width: 40px;
    height: 40px;
    float: left;
    color: #747474;
    text-align: center;
    display: block;
    cursor: pointer;
    font-family: Arial; }
  .qty_wrap .quantityInput {
    padding: 0;
    color: #747474;
    font-size: 14px;
    background-color: #f8f8fa;
    border-style: none solid;
    border-width: 0 1px;
    border-color: #e6e7e7;
    height: 40px;
    text-align: center;
    vertical-align: middle;
    width: 40px;
    display: block;
    float: left;
    margin: auto; }

.product-formWrap {
  margin-left: -5px;
  margin-right: -5px; }
  .product-formWrap .product-form__item {
    padding-left: 5px;
    padding-right: 5px; }
    @media only screen and (max-width: 1199px) {
      .product-formWrap .product-form__item {
        flex: 0 0 50%;
        width: 50%; } }
    @media only screen and (max-width: 767px) {
      .product-formWrap .product-form__item {
        flex: 0 0 33.33%;
        width: 33.33%; } }
  .product-formWrap .product-form__item.DoneLoading {
    flex: 0 0 33.33%;
    float: left;
    margin-bottom: 10px;
    padding: 0 5px;
    width: 33.33%; }
    @media only screen and (max-width: 1199px) {
      .product-formWrap .product-form__item.DoneLoading {
        flex: 0 0 50%;
        width: 50%; } }
    @media only screen and (max-width: 767px) {
      .product-formWrap .product-form__item.DoneLoading {
        flex: 0 0 66.67%;
        width: 66.67%; } }

.product-form__item--submit {
  flex-basis: 200px;
  padding: 0; }
  .product-form__item--submit .product-form__cart-submit--small {
    font-family: "Roboto Condensed";
    font-size: 14px;
    left: 0;
    letter-spacing: 0;
    width: 150px; }

.product-single__description.rte a {
  text-decoration: none;
  border: none; }

.template-product .site-footer__newsletter {
  margin-top: 150px; }

.mypage-content {
  display: none; }

.promoBar {
  padding: 10px 0;
  color: #0068b8;
  font-size: 20px; }
  .promoBar span {
    color: #006990; }

.product-single__description.tab__description,
.template-product .product-single__meta {
  font-family: "ProximaNovaRegular"; }
  .product-single__description.tab__description .spl-size,
  .template-product .product-single__meta .spl-size {
    font-family: "ProximaNovaRegular";
    font-size: 22px;
    line-height: 26px; }
  .product-single__description.tab__description .blu-text,
  .template-product .product-single__meta .blu-text {
    color: #0068b8 !important; }
  .product-single__description.tab__description .product-single__description
  .text-tbmpad,
  .template-product .product-single__meta .product-single__description
  .text-tbmpad {
    display: inline-block;
    padding-bottom: 17px; }
  .product-single__description.tab__description p,
  .template-product .product-single__meta p {
    margin-bottom: 20px;
    margin-top: 0; }
  .product-single__description.tab__description .rte__table-wrapper img,
  .template-product .product-single__meta .rte__table-wrapper img {
    display: block;
    float: none;
    margin: auto; }
  .product-single__description.tab__description .altTitle,
  .template-product .product-single__meta .altTitle {
    font-size: 13px; }
  .product-single__description.tab__description ul,
  .template-product .product-single__meta ul {
    padding: 0 0 0 20px; }
    .product-single__description.tab__description ul li,
    .template-product .product-single__meta ul li {
      color: #373737;
      font-family: "ProximaNovaRegular", "Helvetica Neue",Helvetica,Arial,sans-serif;
      font-feature-settings: normal;
      font-kerning: auto;
      font-language-override: normal;
      font-size: 15px;
      font-size-adjust: none;
      font-stretch: normal;
      font-style: normal;
      font-synthesis: weight style;
      font-variant: normal;
      font-weight: 300 !important;
      line-height: 1.625;
      margin-bottom: 10px;
      position: relative;
      /*
      list-style: outside none none;
      &:before{
        content: "";
        left: -21px;
        position: absolute;
        top: 2px;
        background-image: url(//cdn.shopify.com/s/files/1/2293/0089/t/17/assets/bulletIcon.png?v=9322743551713338519);
        background-position: center;
        background-repeat: no-repeat;
        height: 18px;
        width: 18px;
      }
      */ }
  .product-single__description.tab__description .rte__table-wrapper table th,
  .product-single__description.tab__description .rte__table-wrapper table td,
  .template-product .product-single__meta .rte__table-wrapper table th,
  .template-product .product-single__meta .rte__table-wrapper table td {
    border: 0 none; }
  .product-single__description.tab__description .tooltip-inner ul li,
  .template-product .product-single__meta .tooltip-inner ul li {
    color: #fff; }

.template-product .grid.product-single {
  margin-top: 15px;
  padding-bottom: 0; }
  @media only screen and (max-width: 991px) {
    .template-product .grid.product-single {
      padding-bottom: 0; } }

.product-code p {
  display: none; }

.product-single__description.tab__description {
  background: #f7f8fa none repeat scroll 0 0;
  padding: 0;
  margin: auto;
  font-family: "ProximaNovaRegular"; }
  .product-single__description.tab__description h3, .product-single__description.tab__description .h3 {
    font-family: "Roboto Condensed";
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5; }
  .product-single__description.tab__description ul {
    padding: 27px 25px 15px; }
  .product-single__description.tab__description #tabs {
    display: none;
    font-family: "ProximaNovaRegular"; }
    .product-single__description.tab__description #tabs > ul {
      display: table;
      position: relative;
      top: -54px; }
      .product-single__description.tab__description #tabs > ul > li {
        display: block;
        float: left;
        width: auto;
        height: 54px;
        font-family: "ProximaNovaRegular", "Helvetica Neue",Helvetica,Arial,sans-serif; }
        .product-single__description.tab__description #tabs > ul > li a,
        .product-single__description.tab__description #tabs > ul > li a.ui-state-active {
          background-color: #f7f8fa;
          border: 0 none !important;
          color: #807f83;
          float: none;
          display: block;
          font-family: "Roboto Condensed";
          font-size: 20px;
          font-weight: 500;
          height: 54px !important;
          line-height: 51px !important;
          margin: auto;
          padding: 0 30px !important;
          text-transform: uppercase;
          top: 0;
          vertical-align: top; }
        .product-single__description.tab__description #tabs > ul > li.ui-state-active.ui-tabs-active a {
          background-color: #0068b8;
          color: #ffffff; }
    .product-single__description.tab__description #tabs.ui-tabs {
      display: block;
      margin-top: 170px;
      padding: 0;
      margin-bottom: 65px; }

.grid.grid--uniform.product-single__thumbnails.product-single__thumbnails-product-template:not(.slick-slider) {
  -moz-box-align: center;
  -moz-box-pack: justify;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  margin: auto; }
  .grid.grid--uniform.product-single__thumbnails.product-single__thumbnails-product-template:not(.slick-slider) .product-single__thumbnails-item {
    display: block; }
    .grid.grid--uniform.product-single__thumbnails.product-single__thumbnails-product-template:not(.slick-slider) .product-single__thumbnails-item img {
      max-height: 100%;
      max-height: 100%; }

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

.display-table-cell {
  display: table-cell;
  vertical-align: middle;
  float: none; }
  @media only screen and (max-width: 767px) {
    .display-table-cell {
      display: block; }
      .display-table-cell + .display-table-cell {
        margin-top: 30px; }
      .display-table-cell.table-cell-small {
        display: table-cell;
        margin-top: auto; } }
  .display-table-cell img {
    margin-left: auto;
    margin-right: auto; }

.display-table {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
  min-height: inherit; }

.display-table-cell {
  display: table-cell;
  vertical-align: middle;
  float: none; }
  @media only screen and (max-width: 767px) {
    .display-table-cell {
      display: block; } }
  .display-table-cell img {
    display: block; }

@media only screen and (min-width: 768px) {
  .large--display-table {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    min-height: inherit; }

  .large--display-table-cell {
    display: table-cell;
    vertical-align: middle;
    float: none; }
    .large--display-table-cell img {
      display: block; } }
.template-page .main-content {
  font-size: 17px; }
  .template-page .main-content li {
    list-style: inside none disc; }
  .template-page .main-content h3, .template-page .main-content .h3 {
    font-size: 35px;
    font-weight: normal;
    margin: 0;
    padding-bottom: 17px;
    text-transform: uppercase;
    line-height: 1.41; }
  .template-page .main-content > div:not(.blue-bg-img) > .text-center {
    margin-bottom: 50px;
    margin-top: 30px; }
    @media only screen and (max-width: 990px) {
      .template-page .main-content > div:not(.blue-bg-img) > .text-center.section-header {
        margin-bottom: 30px;
        margin-top: 30px; } }
.template-page .list-styled {
  margin-left: 22px; }
  .template-page .list-styled li {
    color: #373737;
    font-family: "ProximaNovaRegular", "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-feature-settings: normal;
    font-kerning: auto;
    font-language-override: normal;
    font-size: 15px;
    font-size-adjust: none;
    font-stretch: normal;
    font-style: normal;
    font-synthesis: weight style;
    font-variant: normal;
    font-weight: 300 !important;
    line-height: 1.625;
    list-style: outside none none;
    margin-bottom: 10px;
    list-style-image: url(//cdn.shopify.com/s/files/1/2293/0089/files/bult.png?6241); }
.template-page.page-hairmax-technology .blue-bg-img {
  background-image: url(//cdn.shopify.com/s/files/1/2293/0089/files/tab_bg_2.jpg?6241);
  background-attachment: fixed;
  color: #fff;
  border-bottom: 1px solid #e5e7e6;
  margin-bottom: 36px; }
.template-page.page-hairmax-technology .whit-text.blue-bg {
  margin-top: 50px;
  padding-top: 15px;
  margin-bottom: auto;
  padding-bottom: 30px;
  background-color: #32dbf7;
  color: #fff;
  text-align: left; }
  .template-page.page-hairmax-technology .whit-text.blue-bg h4, .template-page.page-hairmax-technology .whit-text.blue-bg .h4 {
    color: #fff;
    text-align: left; }
  .template-page.page-hairmax-technology .whit-text.blue-bg p {
    color: #fff;
    text-align: justify; }
.template-page.page-hairmax-technology hr {
  margin-top: 50px;
  margin-bottom: 50px; }
.template-page.page-thinning-hair-care h1.blu-text, .template-page.page-thinning-hair-care .blu-text.h1 {
  color: #0068b8;
  font-size: 35px;
  font-weight: normal;
  margin: 0;
  padding-bottom: 17px;
  text-transform: uppercase; }
.template-page .rte a {
  color: #0068b8;
  border: 0 none; }
.template-page .text-blue {
  color: #0068b8; }

.display_flex {
  -moz-box-align: center;
  -moz-box-pack: justify;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.table-features th {
  background-color: #0068b8;
  padding: 10px 0px !important;
  font-size: 18px !important;
  font-family: "Roboto Condensed";
  color: #fff;
  text-transform: uppercase;
  width: 25%; }

.table-features {
  border-spacing: 10px 0px !important;
  border-collapse: separate !important; }

.table-features tr td {
  color: #807F83;
  font-family: "ProximaNovaRegular";
  text-align: right;
  padding-right: 5px;
  padding: 13px 0;
  font-size: 15px;
  height: 49px;
  border-top: 0px solid #e6e7e7;
  border-bottom: 1px solid #e6e7e7;
  border-left: 1px solid #e6e7e7;
  border-right: 1px solid #e6e7e7; }

.features-title {
  background-color: #006990 !important; }

.table-features tr:nth-child(11) td {
  font-size: 20px !important;
  color: #36BFD9 !important; }

.table-features tr:nth-child(11) td:first-child {
  font-size: 15px !important;
  color: #807F83 !important; }

.table-features tr:last-child td {
  background-color: #0068b8 !important;
  color: white !important;
  padding: 10px 0px !important;
  font-size: 18px !important;
  font-family: "Roboto Condensed";
  color: #fff; }

.table-features tr:last-child td:hover {
  background-color: #000 !important;
  color: white !important; }

.table-features tr:last-child td:first-child {
  background-color: white !important;
  border: 0px; }

.table-features tr td:first-child {
  padding-right: 10px !important; }

.table-features tr:nth-child(even) {
  background-color: #f9fafc; }

body.page-device-comparison .table-features th,
body.page-device-comparison .table-features td {
  text-align: center; }

body.page-device-comparison .table-features td:first-child {
  text-align: right; }

body.page-device-comparison .table-features td a {
  text-decoration: none;
  color: #fff;
  border: 0 none;
  display: block; }

.template-page.page-device-comparison .main-content .page-width h4, .template-page.page-device-comparison .main-content .page-width .h4 {
  text-align: left; }
.template-page.page-device-comparison .main-content .page-width .row {
  margin-left: -10px;
  margin-right: -10px; }
.template-page.page-device-comparison .main-content .page-width .table-features {
  margin-top: 20px;
  margin-bottom: 50px; }

.btn.btn--secondary {
  border: 2px solid #0068b8;
  color: #0068b8; }

.vertical-top .display-table-cell,
.vertical-top {
  vertical-align: top; }

.template-page .main-content .customer_search .customer_search_container {
  border: 2px solid #0068b8;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 30px; }
  @media only screen and (max-width: 767px) {
    .template-page .main-content .customer_search .customer_search_container {
      padding: 30px 0 30px 20px; } }
.template-page .main-content .customer_search .btn.btn-wide {
  width: 100%;
  color: #fff;
  letter-spacing: 0; }
  .template-page .main-content .customer_search .btn.btn-wide:hover {
    background-color: #000; }
.template-page .main-content .customer_search .text-inline {
  display: inline;
  margin-left: 15px; }
.template-page .main-content .customer_search h3, .template-page .main-content .customer_search .h3 {
  color: #0068b8;
  font-size: 20px;
  text-align: center; }
.template-page .main-content .customer_search .text-link {
  color: #0068b8;
  border: 0 none; }
.template-page .main-content .customer_search .display-flex {
  -moz-box-align: center;
  -moz-box-pack: justify;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: -10px;
  margin-bottom: 30px; }
  .template-page .main-content .customer_search .display-flex .btn.btn--secondary.btn-wide {
    border: 2px solid #0068b8;
    color: #0068b8;
    flex-grow: 1;
    float: none;
    font-size: 12px;
    margin-left: 10px;
    padding-left: 0;
    padding-right: 0;
    width: calc(25% - 10px); }
    .template-page .main-content .customer_search .display-flex .btn.btn--secondary.btn-wide:hover {
      background-color: #fff; }

.product-card-list-agent {
  /* Accordion menu  */ }
  .product-card-list-agent .btn {
    font-family: "Roboto Condensed";
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.54;
    background-color: #000000;
    border-radius: 3px;
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    padding: 4px 10px;
    position: relative;
    text-transform: uppercase;
    top: 1px; }
  .product-card-list-agent .qty_wrap {
    width: 112px; }
    .product-card-list-agent .qty_wrap .quantityInput {
      -webkit-appearance: textfield;
      -moz-appearance: textfield;
      appearance: textfield;
      height: 34px; }
    .product-card-list-agent .qty_wrap input[type="button"] {
      height: 34px;
      width: 34px; }
  .product-card-list-agent .display_flex .display_flex-iteam + .display_flex-iteam {
    margin-left: 15px; }
  .product-card-list-agent .list-view-item__image-column {
    display: none; }
  .product-card-list-agent .list-view-item__on-sale {
    color: #ff0000;
    display: inline;
    display: none; }
  .product-card-list-agent .list-view-item__price-column .product-price__sale {
    display: inline-block; }
  .product-card-list-agent .product-price__price {
    font-family: Arial;
    font-weight: normal; }
  .product-card-list-agent .learnMore {
    color: #0068b8;
    font-size: 16px; }
  .product-card-list-agent .grid.grid--uniform.grid--view-items {
    margin: auto; }
    .product-card-list-agent .grid.grid--uniform.grid--view-items .grid__item {
      float: none;
      clear: none;
      border-bottom: 1px solid #c0c0c0;
      margin-bottom: 10px;
      padding-bottom: 10px;
      padding-left: 0; }
    .product-card-list-agent .grid.grid--uniform.grid--view-items .display-table-cell.learnMoreWrap {
      text-align: center;
      width: 100px; }
  .product-card-list-agent .accordion-section {
    margin-bottom: 11px; }
  .product-card-list-agent .subcat-expand {
    position: relative;
    margin-bottom: 15px; }
    .product-card-list-agent .subcat-expand h2, .product-card-list-agent .subcat-expand .h2 {
      background-color: #0068b8;
      color: #fff;
      font-size: 20px;
      text-align: center;
      line-height: 37px;
      cursor: pointer;
      font-weight: normal; }
      @media only screen and (max-width: 767px) {
        .product-card-list-agent .subcat-expand h2, .product-card-list-agent .subcat-expand .h2 {
          font-size: 14px;
          letter-spacing: 0;
          text-align: left;
          padding: 10px 40px 10px 15px;
          line-height: 16px; } }
  .product-card-list-agent .subcat-expand .subcat-expand-icon:after {
    background: #fff none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 14px; }
  .product-card-list-agent .subcat-expand .subcat-expand-icon:before {
    background: #fff none repeat scroll 0 0;
    bottom: 0;
    content: "";
    width: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    height: 14px;
    transition: all 0.3s linear; }
  .product-card-list-agent .subcat-expand.subcat-expanded .subcat-expand-icon:before {
    -moz-transform: rotate(90deg) scale(1, 1) skewX(0deg) skewY(0deg) translate(0px, 0px);
    /* FF3.5+ */
    -webkit-transform: rotate(90deg) scale(1, 1) skew(0deg, 0deg) translate(0px, 0px);
    /*Saf3.1+, Chrome*/
    -o-transform: rotate(90deg) scale(1, 1) skew(0deg, 0deg) translate(0px, 0px);
    /* Opera 10.5 */
    -ms-transform: rotate(90deg) scale(1, 1) skew(0deg, 0deg) translate(0px, 0px);
    /* IE 9 */
    transform: rotate(90deg) scale(1, 1) skew(0deg, 0deg) translate(0px, 0px); }
  .product-card-list-agent .subcat-expand .subcat-expand-icon {
    cursor: pointer;
    float: right;
    height: 44px;
    position: absolute;
    right: 0;
    top: -4px;
    width: 44px;
    z-index: 9; }
  .product-card-list-agent .list-view-item__title {
    font-size: 16px; }
  .product-card-list-agent .single-option-selector,
  .product-card-list-agent .hm_autoship_interval {
    border: 1px solid #0068b8 !important;
    font-size: 13px;
    padding-left: 5px;
    -webkit-appearance: none;
    width: 100%;
    min-width: 100%;
    height: 36px;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 34px; }
  .product-card-list-agent .intervalWrap {
    padding-right: 15px;
    width: 125px; }
    .product-card-list-agent .intervalWrap.product-options-wrap {
      width: 168px; }
    .product-card-list-agent .intervalWrap .product-form__item > label {
      display: none; }
  .product-card-list-agent .autoship label {
    color: #747474;
    font-size: 13px;
    margin-bottom: auto; }
    .product-card-list-agent .autoship label input {
      vertical-align: middle; }
  .product-card-list-agent .display-table-cell.autoship {
    width: 90px; }

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.product-card-list-agent .accordion-section .accordion-section {
  margin-left: 22px;
  margin-right: 22px; }

.img_right {
  float: right; }
  @media only screen and (max-width: 767px) {
    .img_right {
      float: none;
      margin-left: auto;
      margin-right: auto;
      display: block; } }

.img_left {
  float: left;
  margin-right: 50px;
  margin-bottom: 20px; }
  @media only screen and (max-width: 767px) {
    .img_left {
      float: none;
      margin-left: auto;
      margin-right: auto;
      display: block; } }

body.page-fda-clearances p {
  clear: both;
  display: block; }

.greay-bg.with-border {
  background-color: #f7f8fa;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-color: #e5e7e6;
  border-top-width: 1px;
  padding-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
  padding-top: 40px;
  margin-top: 40px;
  margin-bottom: 40px; }
  @media only screen and (max-width: 767px) {
    .greay-bg.with-border {
      padding-left: 0px;
      padding-right: 0px; } }

.page-quality-certifications .text-center .display-table-cell > img {
  margin-left: auto;
  margin-right: auto; }

.clearfix.galleryGrid.fourGrid {
  margin-left: -15px;
  margin-right: -15px;
  -moz-box-align: start;
  -moz-box-pack: justify;
  align-items: start;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .clearfix.galleryGrid.fourGrid li {
    list-style: outside none none;
    padding: 0 22px;
    width: 25%; }
    .clearfix.galleryGrid.fourGrid li p {
      text-align: center;
      margin-top: 15px; }
    @media only screen and (max-width: 767px) {
      .clearfix.galleryGrid.fourGrid li {
        margin-top: 15px;
        margin-bottom: 15px;
        width: 50%; } }

.page-medical-board .main-content .board {
  margin-left: -15px;
  margin-right: -15px;
  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: start;
  -webkit-align-items: start;
  -moz-align-items: start;
  -ms-align-items: start;
  -o-align-items: start;
  align-items: start; }
  .page-medical-board .main-content .board li {
    margin-bottom: 30px;
    list-style: outside none none;
    padding: 0 15px;
    width: 25%; }
    .page-medical-board .main-content .board li h4, .page-medical-board .main-content .board li .h4 {
      font-size: 20px;
      line-height: 20px;
      font-weight: normal; }
    .page-medical-board .main-content .board li p {
      text-align: left;
      margin-top: 15px;
      font-size: 14px; }
    .page-medical-board .main-content .board li img {
      width: 100%; }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .page-medical-board .main-content .board li {
        width: 33.33%; } }
    @media only screen and (max-width: 767px) {
      .page-medical-board .main-content .board li {
        margin-top: 15px;
        margin-bottom: 15px;
        width: 50%; } }
    @media only screen and (max-width: 479px) {
      .page-medical-board .main-content .board li {
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
        padding: 0 0; } }
  @media only screen and (max-width: 479px) {
    .page-medical-board .main-content .board {
      margin-left: auto;
      margin-right: auto; } }

.template-page .rte a.btn {
  color: #fff;
  letter-spacing: 0; }

.template-page .rte a.btn.btn--secondary {
  border: 2px solid #0068b8; }

.modal-fusion {
  background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
  bottom: 0;
  display: none;
  height: auto;
  left: 0;
  margin: auto;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  overflow-x: auto;
  overflow-y: scroll; }
  .modal-fusion .modal-dialog {
    width: 900px;
    max-width: 90%;
    margin: 60px auto 30px;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    animation-duration: 0.5s; }
    .modal-fusion .modal-dialog .modal-header {
      min-height: 54px;
      border-bottom: 1px solid #e5e5e5;
      min-height: 16.5385px;
      padding: 15px 20px; }
      .modal-fusion .modal-dialog .modal-header h3, .modal-fusion .modal-dialog .modal-header .h3 {
        color: #333333;
        font-size: 16px;
        font-weight: normal;
        margin: auto;
        padding: 0;
        text-align: left;
        text-transform: none; }
    .modal-fusion .modal-dialog .modal-footer {
      border-top: 1px solid #e5e5e5;
      margin-top: 15px;
      padding: 19px 20px 20px;
      text-align: right;
      *zoom: 1; }
      .modal-fusion .modal-dialog .modal-footer::after {
        content: '';
        display: table;
        clear: both; }
      .modal-fusion .modal-dialog .modal-footer .button-default.button-medium.button {
        font-size: 14px;
        line-height: 17px;
        padding: 13px 29px;
        background: #0068b8 none repeat scroll 0 0;
        color: #ffffff;
        transition: all 0.2s ease 0s;
        font-family: "Roboto Condensed";
        font-weight: 700;
        letter-spacing: 0;
        float: right;
        cursor: pointer; }
    .modal-fusion .modal-dialog .modal-body {
      padding: 20px;
      position: relative;
      color: #747474;
      font-size: 13px;
      line-height: 1.54;
      font-family: "Roboto Condensed";
      font-weight: 400;
      letter-spacing: 0; }
      .modal-fusion .modal-dialog .modal-body .notFound {
        display: none; }
      .modal-fusion .modal-dialog .modal-body .rte__table-wrapper {
        font-size: 13px;
        color: #747474;
        font-family: "Roboto Condensed";
        font-weight: 400;
        letter-spacing: 0;
        line-height: 1.54;
        text-align: left; }
      .modal-fusion .modal-dialog .modal-body .rte__table-wrapper th {
        font-size: 13px;
        color: #747474;
        font-family: "Roboto Condensed";
        font-weight: 400;
        letter-spacing: 0;
        line-height: 1.54;
        text-align: left;
        padding: 5px 0;
        border-color: #000;
        border-width: 0 0 1px;
        border-style: solid; }
        .modal-fusion .modal-dialog .modal-body .rte__table-wrapper th:nth-of-type(1) {
          width: 10%; }
        .modal-fusion .modal-dialog .modal-body .rte__table-wrapper th:nth-of-type(6) {
          width: 56px; }
      .modal-fusion .modal-dialog .modal-body .rte__table-wrapper tbody tr:nth-child(2n) {
        background: #e6f2ff; }
      .modal-fusion .modal-dialog .modal-body .rte__table-wrapper tbody tr td {
        padding: 1px 0 !important;
        line-height: normal;
        font-size: 12px;
        border: 0; }
        .modal-fusion .modal-dialog .modal-body .rte__table-wrapper tbody tr td .btn {
          font-family: "Roboto Condensed";
          font-size: 14px;
          font-weight: 700;
          height: auto;
          letter-spacing: 0;
          line-height: 29px;
          padding: 0;
          text-align: center;
          width: 56px; }
          .modal-fusion .modal-dialog .modal-body .rte__table-wrapper tbody tr td .btn:hover {
            background-color: #000; }
    .modal-fusion .modal-dialog .close.closeBtn {
      background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
      border: 0 none;
      color: #9f9f9f;
      font-family: sans-serif;
      font-size: 30px;
      padding: 0;
      position: absolute;
      right: 20px;
      top: 4px; }
  .modal-fusion#reset-agent-pw .modal-dialog {
    width: 400px; }
    .modal-fusion#reset-agent-pw .modal-dialog .form-vertical {
      margin-top: 30px; }

@media only screen and (max-width: 767px) {
  .customer_search_Header {
    text-align: center !important; }
    .customer_search_Header .display-table-cell.text-right {
      text-align: center !important; }

  .customer_search .display-table-cell.grid__item.vertical-top.text-center {
    margin-top: 20px; }

  .template-page .main-content .customer_search .display-flex .btn.btn--secondary.btn-wide {
    margin-bottom: 10px;
    width: 100%; }

  .customer_search > div#search-result .modal-dialog .modal-body .rte__table-wrapper tbody tr td {
    display: block;
    font-size: 14px;
    padding: 3px 10px !important; }

  .customer_search > div#search-result .modal-dialog .modal-body .rte__table-wrapper tbody tr td:first-child {
    padding-top: 10px !important; }

  .customer_search > div#search-result .modal-dialog .modal-body .rte__table-wrapper tbody tr td:last-child {
    padding-bottom: 10px !important; } }
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden; }

.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.template-page .main-content .beforeAfterGrid {
  margin-left: -8px;
  margin-right: -8px;
  -moz-box-align: start;
  -moz-box-pack: justify;
  align-items: start;
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch; }
  .template-page .main-content .beforeAfterGrid li {
    list-style: outside none none;
    padding: 0 8px;
    width: 33.33%;
    margin-bottom: 10px; }
    .template-page .main-content .beforeAfterGrid li p {
      text-align: center;
      margin-top: 15px; }
    .template-page .main-content .beforeAfterGrid li img {
      max-width: 100%; }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .template-page .main-content .beforeAfterGrid li {
        margin-top: 15px;
        margin-bottom: 15px;
        width: 50%; } }
    @media only screen and (max-width: 767px) {
      .template-page .main-content .beforeAfterGrid li {
        width: 100%; } }

.page-before-after .mfp-figure {
  background: #ffffff none repeat scroll 0 0;
  border-radius: 5px;
  padding: 0 20px; }
.page-before-after .mfp-image-holder .mfp-close,
.page-before-after .mfp-iframe-holder .mfp-close {
  color: #000000;
  padding-right: 6px;
  right: 12px;
  text-align: right;
  width: 100%; }
.page-before-after .mfp-counter {
  color: #333333;
  margin-right: 18px;
  margin-top: 5px; }
.page-before-after .mfp-arrow::before,
.page-before-after .mfp-arrow::after {
  color: #ffffff;
  font-family: "FontAwesome";
  font-size: 48px; }
.page-before-after .mfp-content .mfp-figure button.mfp-close {
  cursor: pointer;
  height: 24px;
  line-height: 24px;
  margin-right: 5px;
  margin-top: 8px;
  width: 24px; }
.page-before-after .rte ul.tabnav {
  display: flex;
  list-style: outside none none;
  margin: 30px -20px;
  padding: 0;
  text-align: left; }
  .page-before-after .rte ul.tabnav li {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    display: block;
    list-style: inside none disc;
    padding: 0;
    line-height: 31px;
    margin: 0 20px; }
    .page-before-after .rte ul.tabnav li:hover, .page-before-after .rte ul.tabnav li.active {
      border-bottom: 1px solid #0068b8;
      color: #0068b8; }
      @media only screen and (max-width: 767px) {
        .page-before-after .rte ul.tabnav li:hover, .page-before-after .rte ul.tabnav li.active {
          border-bottom: 0px none #0068b8; } }
  @media only screen and (max-width: 767px) {
    .page-before-after .rte ul.tabnav {
      display: block; } }

.template-page.page-as-seen-on-tv .rte h4 a.btn, .template-page.page-as-seen-on-tv .rte .h4 a.btn {
  float: right; }

.template-page.page-as-seen-on-tv .main-content .seenTv {
  margin-left: -15px;
  margin-right: -15px;
  -moz-box-align: start;
  -moz-box-pack: justify;
  align-items: start;
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch; }
  .template-page.page-as-seen-on-tv .main-content .seenTv li {
    margin-bottom: 30px;
    list-style: outside none none;
    padding: 0 15px;
    width: 33.33%; }
    .template-page.page-as-seen-on-tv .main-content .seenTv li h4, .template-page.page-as-seen-on-tv .main-content .seenTv li .h4 {
      font-size: 20px;
      line-height: 20px;
      font-weight: normal; }
    @media only screen and (max-width: 767px) {
      .template-page.page-as-seen-on-tv .main-content .seenTv li {
        margin-top: 15px;
        margin-bottom: 15px;
        width: 50%; } }
    @media only screen and (max-width: 479px) {
      .template-page.page-as-seen-on-tv .main-content .seenTv li {
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
        padding: 0 0; } }
  @media only screen and (max-width: 479px) {
    .template-page.page-as-seen-on-tv .main-content .seenTv {
      margin-left: auto;
      margin-right: auto; } }

.template-page.page-hairmax-success-stories ul.audioTestimonials,
.template-page.page-audio-testimonials ul.audioTestimonials {
  margin-left: -15px;
  margin-right: -15px;
  -moz-box-align: start;
  -moz-box-pack: justify;
  align-items: start;
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch; }
  .template-page.page-hairmax-success-stories ul.audioTestimonials li,
  .template-page.page-audio-testimonials ul.audioTestimonials li {
    margin-bottom: 30px;
    list-style: outside none none;
    padding: 0 15px;
    width: 33.33%; }
    .template-page.page-hairmax-success-stories ul.audioTestimonials li h4, .template-page.page-hairmax-success-stories ul.audioTestimonials li .h4,
    .template-page.page-audio-testimonials ul.audioTestimonials li h4,
    .template-page.page-audio-testimonials ul.audioTestimonials li .h4 {
      font-size: 20px;
      line-height: 20px;
      font-weight: normal; }
    @media only screen and (max-width: 767px) {
      .template-page.page-hairmax-success-stories ul.audioTestimonials li,
      .template-page.page-audio-testimonials ul.audioTestimonials li {
        margin-top: 15px;
        margin-bottom: 15px;
        width: 50%; } }
    @media only screen and (max-width: 479px) {
      .template-page.page-hairmax-success-stories ul.audioTestimonials li,
      .template-page.page-audio-testimonials ul.audioTestimonials li {
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
        padding: 0 0; } }
  @media only screen and (max-width: 479px) {
    .template-page.page-hairmax-success-stories ul.audioTestimonials,
    .template-page.page-audio-testimonials ul.audioTestimonials {
      margin-left: auto;
      margin-right: auto; } }

.template-page.page-support-and-downloads .userManuals {
  *zoom: 1;
  display: block;
  list-style: outside none none;
  margin: auto -15px;
  padding: 0; }
  .template-page.page-support-and-downloads .userManuals::after {
    content: '';
    display: table;
    clear: both; }
  .template-page.page-support-and-downloads .userManuals li {
    background: #f7f8fa none repeat scroll 0 0;
    border-radius: 3px;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.3);
    display: block;
    float: left;
    list-style: outside none none;
    margin: 50px 15px 30px;
    padding: 35px 20px 15px;
    position: relative; }
    .template-page.page-support-and-downloads .userManuals li:before {
      content: "\f02d";
      background-color: #2bbed8;
      color: #fff;
      text-align: center;
      display: block;
      font-family: 'FontAwesome', FontAwesome;
      border-radius: 50%;
      position: absolute;
      left: 0;
      right: 0;
      top: -26px;
      bottom: auto;
      line-height: 53px;
      width: 53px;
      margin: auto; }
    .template-page.page-support-and-downloads .userManuals li h5, .template-page.page-support-and-downloads .userManuals li .h5 {
      color: #807f83;
      font-size: 26px;
      text-align: center;
      font-weight: normal; }
    .template-page.page-support-and-downloads .userManuals li a {
      color: #337ab7;
      display: block;
      line-height: 30px;
      font-family: "ProximaNovaRegular";
      padding: 20px 0;
      text-align: center; }
  .template-page.page-support-and-downloads .userManuals.three-col li {
    width: calc(33.33% - 30px); }
    @media only screen and (min-width: 480px) and (max-width: 767px) {
      .template-page.page-support-and-downloads .userManuals.three-col li {
        width: calc(50% - 30px); } }
    @media only screen and (max-width: 479px) {
      .template-page.page-support-and-downloads .userManuals.three-col li {
        width: calc(100% - 30px); } }
  .template-page.page-support-and-downloads .userManuals.fourcol li {
    width: calc(25% - 30px); }
    @media only screen and (max-width: 767px) {
      .template-page.page-support-and-downloads .userManuals.fourcol li {
        width: calc(50% - 30px); } }
    @media only screen and (max-width: 479px) {
      .template-page.page-support-and-downloads .userManuals.fourcol li {
        width: calc(100% - 30px); } }

body.template-page.page-agent-faq .main-content .text-center h3, body.template-page.page-agent-faq .main-content .text-center .h3,
body.page-faq.template-page .main-content .text-center h3,
body.page-faq.template-page .main-content .text-center .h3 {
  font-size: 16px;
  font-weight: normal; }
  body.template-page.page-agent-faq .main-content .text-center h3:after, body.template-page.page-agent-faq .main-content .text-center .h3:after,
  body.page-faq.template-page .main-content .text-center h3:after,
  body.page-faq.template-page .main-content .text-center .h3:after {
    background: #000 none repeat scroll 0 0;
    content: "";
    display: block;
    height: 3px;
    margin: 20px auto;
    max-width: 100px; }
body.template-page.page-agent-faq .main-content .faq-blocks-row,
body.page-faq.template-page .main-content .faq-blocks-row {
  display: flex;
  flex-flow: row wrap; }
body.template-page.page-agent-faq .main-content .faq-blocks,
body.page-faq.template-page .main-content .faq-blocks {
  display: block;
  float: none;
  width: 25%; }
  @media only screen and (min-width: 768px) and (max-width: 990px) {
    body.template-page.page-agent-faq .main-content .faq-blocks,
    body.page-faq.template-page .main-content .faq-blocks {
      width: 33.33%; } }
  @media only screen and (max-width: 767px) {
    body.template-page.page-agent-faq .main-content .faq-blocks,
    body.page-faq.template-page .main-content .faq-blocks {
      width: 100%; } }
  body.template-page.page-agent-faq .main-content .faq-blocks h3, body.template-page.page-agent-faq .main-content .faq-blocks .h3,
  body.page-faq.template-page .main-content .faq-blocks h3,
  body.page-faq.template-page .main-content .faq-blocks .h3 {
    color: #0068b8;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    padding-left: 36px;
    background-position: left top;
    background-repeat: no-repeat; }
  body.template-page.page-agent-faq .main-content .faq-blocks:nth-of-type(1) h3, body.template-page.page-agent-faq .main-content .faq-blocks:nth-of-type(1) .h3,
  body.page-faq.template-page .main-content .faq-blocks:nth-of-type(1) h3,
  body.page-faq.template-page .main-content .faq-blocks:nth-of-type(1) .h3 {
    background-image: url(//cdn.shopify.com/s/files/1/2293/0089/files/ordering-payment-icon_1.png?6241); }
  body.template-page.page-agent-faq .main-content .faq-blocks:nth-of-type(2) h3, body.template-page.page-agent-faq .main-content .faq-blocks:nth-of-type(2) .h3,
  body.page-faq.template-page .main-content .faq-blocks:nth-of-type(2) h3,
  body.page-faq.template-page .main-content .faq-blocks:nth-of-type(2) .h3 {
    background-image: url(//cdn.shopify.com/s/files/1/2293/0089/files/shipping-info-icon_1.png?6241); }
  body.template-page.page-agent-faq .main-content .faq-blocks:nth-of-type(3) h3, body.template-page.page-agent-faq .main-content .faq-blocks:nth-of-type(3) .h3,
  body.page-faq.template-page .main-content .faq-blocks:nth-of-type(3) h3,
  body.page-faq.template-page .main-content .faq-blocks:nth-of-type(3) .h3 {
    background-image: url(//cdn.shopify.com/s/files/1/2293/0089/files/treatment-information-icon_1.png?6241); }
  body.template-page.page-agent-faq .main-content .faq-blocks:nth-of-type(4) h3, body.template-page.page-agent-faq .main-content .faq-blocks:nth-of-type(4) .h3,
  body.page-faq.template-page .main-content .faq-blocks:nth-of-type(4) h3,
  body.page-faq.template-page .main-content .faq-blocks:nth-of-type(4) .h3 {
    background-image: url(//cdn.shopify.com/s/files/1/2293/0089/files/technical-support-icon_1.png?6241); }
  body.template-page.page-agent-faq .main-content .faq-blocks:nth-of-type(5) h3, body.template-page.page-agent-faq .main-content .faq-blocks:nth-of-type(5) .h3,
  body.page-faq.template-page .main-content .faq-blocks:nth-of-type(5) h3,
  body.page-faq.template-page .main-content .faq-blocks:nth-of-type(5) .h3 {
    background-image: url(//cdn.shopify.com/s/files/1/2293/0089/files/hair-care-products-icon_1.png?6241); }
  body.template-page.page-agent-faq .main-content .faq-blocks:nth-of-type(6) h3, body.template-page.page-agent-faq .main-content .faq-blocks:nth-of-type(6) .h3,
  body.page-faq.template-page .main-content .faq-blocks:nth-of-type(6) h3,
  body.page-faq.template-page .main-content .faq-blocks:nth-of-type(6) .h3 {
    background-image: url(//cdn.shopify.com/s/files/1/2293/0089/files/replacement-parts-icon_1.png?6241); }
  body.template-page.page-agent-faq .main-content .faq-blocks:nth-of-type(7) h3, body.template-page.page-agent-faq .main-content .faq-blocks:nth-of-type(7) .h3,
  body.page-faq.template-page .main-content .faq-blocks:nth-of-type(7) h3,
  body.page-faq.template-page .main-content .faq-blocks:nth-of-type(7) .h3 {
    background-image: url(//cdn.shopify.com/s/files/1/2293/0089/files/returns-exchanges-icon_1.png?6241); }
  body.template-page.page-agent-faq .main-content .faq-blocks ul,
  body.page-faq.template-page .main-content .faq-blocks ul {
    margin-bottom: 50px; }
    body.template-page.page-agent-faq .main-content .faq-blocks ul li,
    body.page-faq.template-page .main-content .faq-blocks ul li {
      list-style: outside none none;
      margin-bottom: 10px;
      padding: 0 37px; }
      body.template-page.page-agent-faq .main-content .faq-blocks ul li a,
      body.page-faq.template-page .main-content .faq-blocks ul li a {
        color: #337ab7;
        font-family: Arial;
        font-size: 15px; }

body.template-page .main-content .blue-bg.page-header {
  background: #0068b8 none repeat scroll 0 0;
  color: #ffffff;
  padding: 40px 0;
  text-align: center; }
  body.template-page .main-content .blue-bg.page-header h3, body.template-page .main-content .blue-bg.page-header .h3 {
    font-size: 35px;
    color: #ffffff;
    margin: auto; }
    body.template-page .main-content .blue-bg.page-header h3.saprator:after, body.template-page .main-content .blue-bg.page-header .saprator.h3:after {
      background: #ffffff none repeat scroll 0 0;
      content: "";
      display: block;
      height: 1px;
      margin: 20px auto;
      max-width: 100px; }
  body.template-page .main-content .blue-bg.page-header p {
    color: #ffffff;
    font-size: 16px; }
  body.template-page .main-content .blue-bg.page-header + .page-width {
    margin-top: 30px; }

body.template-blog .main-content #filter-effect.button-group,
body.template-page .main-content #filter-effect.button-group {
  margin: 30px -15px; }
body.template-blog .main-content #filter-effect .button,
body.template-page .main-content #filter-effect .button {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 0 none;
  line-height: 30px;
  margin: 15px 15px;
  padding: 0;
  color: #807f83;
  font-size: 20px; }
  body.template-blog .main-content #filter-effect .button.active,
  body.template-page .main-content #filter-effect .button.active {
    border-bottom: 1px solid #0068b8;
    color: #0068b8; }
body.template-blog .main-content .newsGrdi > .item,
body.template-page .main-content .newsGrdi > .item {
  width: 33.33%;
  text-align: center;
  margin-bottom: 15px;
  height: 200px; }
  @media only screen and (min-width: 768px) and (max-width: 990px) {
    body.template-blog .main-content .newsGrdi > .item,
    body.template-page .main-content .newsGrdi > .item {
      width: 25%; } }
  @media only screen and (min-width: 991px) {
    body.template-blog .main-content .newsGrdi > .item,
    body.template-page .main-content .newsGrdi > .item {
      width: 16.6667%; } }
  @media only screen and (max-width: 479px) {
    body.template-blog .main-content .newsGrdi > .item,
    body.template-page .main-content .newsGrdi > .item {
      width: 50%; } }
  body.template-blog .main-content .newsGrdi > .item h3.image-bar_caption, body.template-blog .main-content .newsGrdi > .item .image-bar_caption.h3,
  body.template-page .main-content .newsGrdi > .item h3.image-bar_caption,
  body.template-page .main-content .newsGrdi > .item .image-bar_caption.h3 {
    color: #969696;
    float: none;
    font-family: "ProximaNovaRegular";
    font-size: 16px;
    margin-left: 10px;
    text-align: center;
    display: block;
    margin-top: 10px; }

.display-table-cell img.guarantee {
  padding-right: 40px; }

.toggle-trigger {
  text-decoration: none;
  color: #444;
  font-weight: bold;
  padding: 5px 10px 5px 25px;
  cursor: pointer;
  border: 1px solid #ccc; }

.toggle-trigger.active {
  border-bottom: 1px solid #ccc;
  background-color: #f8f5f2; }

.toggle-trigger:hover {
  background-color: #f8f5f2; }

.toggle-container {
  margin-bottom: 0px;
  padding: 5px 10px;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc; }

#currencies .middle {
  border-left: none; }

.small_header #SiteNav.site-nav.list--inline > .site-nav--has-dropdown:last-of-type .site-nav__dropdown {
  left: auto;
  right: 0; }

.text-justify {
  text-align: justify; }

.mobile-nav__item > .btn--link:focus,
.mobile-nav__item > .btn--link:hover {
  color: #0068b8;
  opacity: 1; }

.mobile-nav-wrapper .btn--link.site-header__menu {
  position: absolute;
  right: 0;
  top: 5px; }

.accordion_wrapper {
  padding-bottom: 30px; }
  .accordion_wrapper > p {
    font-size: 17px;
    color: #0068b8;
    font-weight: normal;
    text-align: left; }
  .accordion_wrapper .toggle-trigger {
    border: 0 none;
    color: #33383a;
    font-size: 20px;
    font-weight: normal;
    padding: 15px 0 15px 0px;
    text-indent: -38px;
    margin-left: 38px; }
    .accordion_wrapper .toggle-trigger:before {
      background: #333333 none repeat scroll 0 0;
      color: #ffffff;
      content: "+";
      display: inline-block;
      font-family: "FontAwesome";
      line-height: 22px;
      margin-right: 15px;
      text-align: center;
      width: 22px;
      transition: all 0.3s linear;
      font-size: 14px;
      vertical-align: 2px;
      text-indent: 0px; }
    .accordion_wrapper .toggle-trigger:hover {
      background-color: #fff;
      color: #0068b8; }
      .accordion_wrapper .toggle-trigger:hover:before {
        background-color: #0068b8; }
    .accordion_wrapper .toggle-trigger.active {
      background-color: #fff;
      color: #0068b8; }
      .accordion_wrapper .toggle-trigger.active:before {
        background-color: #0068b8; }
  .accordion_wrapper .toggle-container {
    border: 0 none;
    padding: 15px 0  15px 38px;
    color: #2b2b2c;
    font-family: "ProximaNovaRegular";
    font-size: 17px; }

.cart table tr.cart__row {
  position: relative; }
  .cart table tr.cart__row .cart__remove {
    bottom: 0;
    display: block;
    height: 20px;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0; }
  .cart table tr.cart__row .cart__image-wrapper {
    flex: 0 0 63px; }
  .cart table tr.cart__row .cart__price-wrapper {
    flex: 0 1 90px; }

thead.cart__row.cart__header th, tbody tr.cart__row .text-right.small--hide {
  padding-right: 30px; }

.btn.btn--secondary.js-edit-toggle,
.btn.btn--secondary.cart__edit--active {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 0 none;
  color: #3d4246; }

.btn.btn--secondary.cart__update.cart__update--large.small--hide {
  height: 38px;
  line-height: 34px;
  width: 38px;
  padding: 0;
  text-align: center;
  border-color: #000;
  color: #000; }

@media only screen and (min-width: 768px) and (max-width: 990px) {
  .grid.grid--view-items > .grid__item.product-card-grid {
    width: 33.33%; } }
@media only screen and (max-width: 767px) {
  .product-form.product-form-product-template .product-form__item--submit {
    flex-basis: 0;
    padding: 0; }
  .product-form.product-form-product-template .product-form__item--quantity {
    flex: 0 0 33.33%;
    /*       margin-right: auto; */
    padding: 0; }
  .product-form.product-form-product-template .qty_wrap .quantityInput {
    height: 30px;
    width: 30px; }
  .product-form.product-form-product-template .qty_wrap input[type="button"] {
    height: 30px;
    line-height: 30px;
    width: 30px; }
  .product-form.product-form-product-template .qty_wrap {
    width: 92px; }
  .product-form.product-form-product-template .product-form__item--submit .product-form__cart-submit--small {
    height: 32px;
    padding-bottom: 0;
    padding-top: 0; }

  .product-single__thumbnail.active-thumb {
    width: auto; }

  .template-cart .cart .cart__row.cart__update--show .qty_wrap .quantityInput {
    height: 30px;
    width: 30px; }
  .template-cart .cart .cart__row.cart__update--show .qty_wrap input[type="button"] {
    height: 30px;
    line-height: 30px;
    width: 30px; }
  .template-cart .cart .cart__row.cart__update--show .qty_wrap {
    width: 92px; }

  .cart table tr.cart__row .cart__remove {
    background: #fbfaf9 none repeat scroll 0 0;
    border: 1px solid #e0dede;
    color: #747474;
    display: inline-block;
    height: 30px;
    line-height: 26px;
    margin-left: 10px;
    order: 1;
    position: static; }

  .cart__update--show .cart__update-wrapper {
    display: flex; }
    .cart__update--show .cart__update-wrapper .btn.btn--small.cart__update.medium-up--hide {
      background: #fbfaf9 none repeat scroll 0 0;
      border: 1px solid #e0dede;
      color: #747474;
      height: 30px;
      line-height: 26px; }

  .large--display-table-cell.medium-up--two-fifths.img-center > img {
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 80%; }

  .template-page .main-content h3, .template-page .main-content .h3, .template-page .main-content .h3 {
    font-size: 25px;
    margin: 30px 0 0; }

  body.page-hairmax-technology .main-content .display-table-cell > img {
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%; } }
.template-page.page-hairmax-technology .main-content .blue-bg-img {
  margin-top: auto; }

.template-page.page-hairmax-technology .main-content {
  padding-top: 0; }

.template-page.page-the-hairmax-advantage .main-content h5, .template-page.page-the-hairmax-advantage .main-content .h5 {
  font-size: 20px; }

@media only screen and (max-width: 479px) {
  .grid.grid--view-items > .grid__item.product-card-grid {
    width: 100%; }

  .product-single__description .rte__table-wrapper tr th {
    display: block; }

  .product-single__description .rte__table-wrapper tr td {
    display: block; }

  .clearfix.galleryGrid.fourGrid li {
    width: 100%; } }
.display_flex-cell.imgwrap.pull-right {
  order: 1; }
.display_flex-cell.imgwrap + .display_flex-cell {
  float: right;
  width: calc(100% - 320px); }

.template-page .main-content .blue-bg-img {
  background-image: url(//cdn.shopify.com/s/files/1/2293/0089/files/tab_bg_2.jpg?6241);
  color: #fff;
  border-bottom: 1px solid #e5e7e6;
  margin-bottom: 36px;
  margin-top: 50px;
  padding-top: 30px;
  padding-bottom: 40px; }
  .template-page .main-content .blue-bg-img ul {
    margin-left: 22px; }
    .template-page .main-content .blue-bg-img ul li {
      color: #fff;
      font-family: "ProximaNovaRegular", "Helvetica Neue",Helvetica,Arial,sans-serif;
      font-feature-settings: normal;
      font-kerning: auto;
      font-language-override: normal;
      font-size: 15px;
      font-size-adjust: none;
      font-stretch: normal;
      font-style: normal;
      font-synthesis: weight style;
      font-variant: normal;
      font-weight: 300 !important;
      line-height: 1.625;
      list-style: outside none none;
      margin-bottom: 10px;
      list-style-image: url(//cdn.shopify.com/s/files/1/2293/0089/files/bult.png?6241); }
  .template-page .main-content .blue-bg-img p {
    color: #fff; }

#open-popup {
  padding: 20px; }

.white-popup:not(#filter-wrapper) {
  background: #ffffff none repeat scroll 0 0;
  margin: 20px;
  max-width: none;
  padding: 40px;
  position: relative;
  text-align: left;
  width: auto; }

.template-page .main-content .member h3, .template-page .main-content .member .h3 {
  color: #0068b8;
  font-size: 20px;
  line-height: 20px;
  padding-bottom: 5px;
  padding-top: 10px;
  text-transform: uppercase; }
.template-page .main-content .member h5, .template-page .main-content .member .h5 {
  color: #2b2b2c; }

.template-page.page-hairmax-team .main-content h2, .template-page.page-hairmax-team .main-content .h2 {
  color: #0068b8;
  font-size: 35px;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 20px;
  padding-bottom: 17px;
  padding-top: 10px;
  text-transform: uppercase; }
.template-page.page-hairmax-team .main-content .section {
  margin-left: -15px;
  margin-right: -15px; }
  .template-page.page-hairmax-team .main-content .section .member {
    display: block;
    float: left;
    padding: 0 15px;
    width: 100%;
    margin-bottom: 20px; }
    @media only screen and (min-width: 991px) {
      .template-page.page-hairmax-team .main-content .section .member {
        width: 25%; }
        .template-page.page-hairmax-team .main-content .section .member:nth-child(4n+1) {
          clear: left; } }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .template-page.page-hairmax-team .main-content .section .member {
        width: 33%; }
        .template-page.page-hairmax-team .main-content .section .member:nth-child(3n+1) {
          clear: left; } }
    .template-page.page-hairmax-team .main-content .section .member .open-popup > img {
      width: 100%; }
    .template-page.page-hairmax-team .main-content .section .member h5, .template-page.page-hairmax-team .main-content .section .member .h5 {
      color: #2b2b2c;
      font-size: 14px;
      font-weight: normal; }

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .template-page.page-hairmax-team .main-content .section .member {
    width: 50%; }
    .template-page.page-hairmax-team .main-content .section .member:nth-child(2n+1) {
      clear: left; } }
.collection-template.grid__item {
  float: right; }

@media screen and (max-width: 768px) {
  body.page-device-comparison .table-features tr {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around; }
  body.page-device-comparison .table-features td,
  body.page-device-comparison .table-features th {
    display: block;
    width: 33.333333333333%;
    font-size: 12px !important;
    height: auto; }
  body.page-device-comparison .table-features th:first-child,
  body.page-device-comparison .table-features td:first-child {
    background: #efefef;
    width: 100%;
    text-align: center;
    height: auto;
    font-size: 12px !important; }
    body.page-device-comparison .table-features th:first-child:before,
    body.page-device-comparison .table-features td:first-child:before {
      display: block;
      content: "FEATURES & BENEFITS : ";
      font-weight: bold; }
    body.page-device-comparison .table-features th:first-child:empty,
    body.page-device-comparison .table-features td:first-child:empty {
      display: none; }
  body.page-device-comparison .table-features th:first-child {
    display: none; }

  .display-table.grid {
    margin-left: auto; }

  .display-table.grid .display-table-cell.grid__item {
    padding-left: 0; } }
.site-footer .small-footer .payment-icons {
  -moz-box-align: center;
  -moz-box-pack: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; }
  @media only screen and (max-width: 767px) {
    .site-footer .small-footer .payment-icons img {
      height: 35px; } }

#BlogTagFilter {
  width: 100%; }

.section-header .article__title {
  font-size: 30px;
  line-height: normal;
  margin-bottom: auto;
  margin-top: 50px; }
  @media only screen and (max-width: 767px) {
    .section-header .article__title {
      font-size: 22px;
      line-height: 32px; } }

.social-sharing a.btn.btn--share.btn--secondary {
  border: 0 none;
  padding: 0;
  vertical-align: middle;
  margin-right: 10px;
  display: inline-block;
  text-align: center;
  margin-bottom: 15px; }
  .social-sharing a.btn.btn--share.btn--secondary .visually-hidden, .social-sharing a.btn.btn--share.btn--secondary .icon__fallback-text {
    display: none; }
  .social-sharing a.btn.btn--share.btn--secondary i {
    width: 22px;
    line-height: 22px;
    height: 22px;
    display: block;
    color: #fff;
    text-align: center;
    border-radius: 11px;
    margin: auto; }
    .social-sharing a.btn.btn--share.btn--secondary i.fa-facebook {
      background-color: #2d62ba; }
    .social-sharing a.btn.btn--share.btn--secondary i.fa-twitter {
      background-color: #6cb1f3; }
    .social-sharing a.btn.btn--share.btn--secondary i.fa-pinterest {
      background-color: #d30f0f; }
  .social-sharing a.btn.btn--share.btn--secondary img {
    margin-right: 5px;
    vertical-align: -10px; }
  .social-sharing a.btn.btn--share.btn--secondary .share-title {
    color: #000000;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 14px;
    line-height: 17px;
    text-align: justify;
    font-weight: normal; }

.Panayiotou > p {
  clear: both;
  display: block;
  padding-top: 25px;
  text-align: right; }
  .Panayiotou > p a {
    display: inline-block; }

.cgrid_cions {
  width: 100%;
  text-align: center;
  margin: 50px auto;
  *zoom: 1; }
  .cgrid_cions::after {
    content: '';
    display: table;
    clear: both; }
  .cgrid_cions .cgrid_cions_list {
    color: #807f83;
    width: 25%;
    margin: auto;
    display: block;
    padding-left: 15px;
    padding-right: 15px;
    float: left; }
    .cgrid_cions .cgrid_cions_list span {
      background-color: #0068b8;
      display: block;
      border-radius: 50%;
      height: 150px;
      margin: 0 auto 45px;
      width: 150px; }
      .cgrid_cions .cgrid_cions_list span i {
        color: #ffffff;
        font-size: 55px;
        position: relative;
        top: 50%;
        transform: translateY(-50%); }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .cgrid_cions .cgrid_cions_list span {
        height: 100px;
        width: 100px;
        margin-bottom: auto; }
        .cgrid_cions .cgrid_cions_list span i {
          font-size: 35px; } }
    @media only screen and (max-width: 767px) {
      .cgrid_cions .cgrid_cions_list {
        width: 50%;
        margin-bottom: 30px; }
        .cgrid_cions .cgrid_cions_list:nth-of-type(2n+1) {
          clear: both; }
        .cgrid_cions .cgrid_cions_list span {
          height: 100px;
          width: 100px;
          margin-bottom: auto; }
          .cgrid_cions .cgrid_cions_list span i {
            font-size: 35px; } }
    @media only screen and (max-width: 479px) {
      .cgrid_cions .cgrid_cions_list {
        width: 100%; } }

.template-page.page-around-the-world .banner,
.template-page.page-brand-trichologist .banner,
.template-page.page-celebrity-brand-ambassador .banner {
  float: right;
  padding-left: 30px;
  max-width: 50%; }
  @media only screen and (max-width: 479px) {
    .template-page.page-around-the-world .banner,
    .template-page.page-brand-trichologist .banner,
    .template-page.page-celebrity-brand-ambassador .banner {
      padding-left: 0;
      float: none;
      max-width: 100%; } }
.template-page.page-around-the-world .box,
.template-page.page-brand-trichologist .box,
.template-page.page-celebrity-brand-ambassador .box {
  margin: auto -15px; }
  .template-page.page-around-the-world .box .item,
  .template-page.page-brand-trichologist .box .item,
  .template-page.page-celebrity-brand-ambassador .box .item {
    float: left;
    width: 50%;
    padding-left: 15px;
    padding-right: 15px; }
    .template-page.page-around-the-world .box .item p,
    .template-page.page-brand-trichologist .box .item p,
    .template-page.page-celebrity-brand-ambassador .box .item p {
      font-family: "ProximaNovaRegular";
      font-weight: 800;
      margin-bottom: 30px;
      margin-top: 10px;
      text-align: center; }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .template-page.page-around-the-world .box .item,
      .template-page.page-brand-trichologist .box .item,
      .template-page.page-celebrity-brand-ambassador .box .item {
        width: 25%; } }
    @media only screen and (min-width: 991px) {
      .template-page.page-around-the-world .box .item,
      .template-page.page-brand-trichologist .box .item,
      .template-page.page-celebrity-brand-ambassador .box .item {
        width: 25%; } }
    @media only screen and (max-width: 479px) {
      .template-page.page-around-the-world .box .item,
      .template-page.page-brand-trichologist .box .item,
      .template-page.page-celebrity-brand-ambassador .box .item {
        width: 100%;
        margin-bottom: 20px; }
        .template-page.page-around-the-world .box .item img,
        .template-page.page-brand-trichologist .box .item img,
        .template-page.page-celebrity-brand-ambassador .box .item img {
          display: block;
          margin-left: auto;
          margin-right: auto; } }

.template-page.page-celebrity-stylist .banner {
  float: right;
  padding-left: 30px;
  max-width: 50%; }
  @media only screen and (max-width: 479px) {
    .template-page.page-celebrity-stylist .banner {
      padding-left: 0;
      float: none;
      max-width: 100%; } }
.template-page.page-celebrity-stylist .box {
  margin: auto -15px; }
  .template-page.page-celebrity-stylist .box .item {
    float: left;
    width: 50%;
    padding-left: 15px;
    padding-right: 15px; }
    .template-page.page-celebrity-stylist .box .item p {
      font-family: "ProximaNovaRegular";
      font-weight: 800;
      margin-bottom: 30px;
      margin-top: 10px;
      text-align: center; }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .template-page.page-celebrity-stylist .box .item {
        width: 33.33%; } }
    @media only screen and (min-width: 991px) {
      .template-page.page-celebrity-stylist .box .item {
        width: 33.33%; } }
    @media only screen and (max-width: 479px) {
      .template-page.page-celebrity-stylist .box .item {
        width: 100%; } }

.template-article .social-sharing {
  clear: both; }

.rte.articleBody {
  *zoom: 1; }
  .rte.articleBody::after {
    content: '';
    display: table;
    clear: both; }

.rte.articleBody img {
  float: left;
  margin-right: 30px; }
  @media only screen and (max-width: 990px) {
    .rte.articleBody img {
      max-width: 50%; } }
  @media only screen and (max-width: 479px) {
    .rte.articleBody img {
      max-width: 100%;
      float: none;
      margin-bottom: 30px; } }

body.template-page.page-clinical-research-results .display-table-cell.text-center {
  padding-left: 15px;
  padding-right: 15px; }
  body.template-page.page-clinical-research-results .display-table-cell.text-center small {
    display: block; }
  body.template-page.page-clinical-research-results .display-table-cell.text-center img {
    margin: auto auto 30px; }

.template-page.page-clinical-research-results .main-content .display-table-cell img {
  margin-bottom: 20px; }

.mt50 {
  margin-top: 50px; }

.laser-device-comparison th {
  background-color: #fff !important;
  padding: 10px 0px !important;
  font-size: 18px !important;
  font-family: 'RobotoCondensedRegular' !important;
  color: #fff;
  text-transform: uppercase;
  width: 20%;
  text-align: center !important;
  border: 0px solid transparent !important;
  border-bottom: 1px solid #e6e7e7 !important; }

.laser-device-comparison {
  border: 0px solid transparent !important;
  border-spacing: 10px 0px !important;
  border-collapse: separate !important;
  margin-bottom: 50px; }

.laser-device-comparison tr td {
  color: #807F83;
  font-family: "ProximaNovaRegular";
  text-align: center;
  padding-right: 5px;
  padding: 13px 0;
  font-size: 15px;
  height: 65px;
  border-top: 0px solid #e6e7e7;
  border-bottom: 1px solid #e6e7e7;
  border-left: 1px solid #e6e7e7;
  border-right: 1px solid #e6e7e7; }

.laser-device-comparison tr td:first-child {
  text-align: right;
  padding-right: 10px !important; }

.laser-device-comparison tr td:nth-child(2) {
  color: #00395a !important;
  font-weight: bold !important; }

.laser-device-comparison tr:nth-of-type(2n+1) {
  background: #f6f6f6 none repeat scroll 0 0; }

@media only screen and (max-width: 767px) {
  .laser-device-comparison tr td:first-of-type, .laser-device-comparison tr th:first-of-type {
    display: block;
    width: 100%;
    text-align: center; }

  .laser-device-comparison tr td, .laser-device-comparison tr th {
    border: 0 none !important;
    display: block;
    float: left;
    width: 25%;
    height: auto; } }
.contact-form.form-vertical #contact_form .label,
.contact-form.form-vertical #contact_form label {
  font-size: 14px;
  text-transform: uppercase; }
.contact-form.form-vertical #contact_form input,
.contact-form.form-vertical #contact_form select,
.contact-form.form-vertical #contact_form textarea {
  border-color: #d7d7d7;
  color: #0068b8; }
  .contact-form.form-vertical #contact_form input[type="submit"],
  .contact-form.form-vertical #contact_form select[type="submit"],
  .contact-form.form-vertical #contact_form textarea[type="submit"] {
    color: #fff; }
  .contact-form.form-vertical #contact_form input.btn,
  .contact-form.form-vertical #contact_form select.btn,
  .contact-form.form-vertical #contact_form textarea.btn {
    background-color: #0071bd;
    color: #fff;
    border: 0 none; }
    .contact-form.form-vertical #contact_form input.btn:hover,
    .contact-form.form-vertical #contact_form select.btn:hover,
    .contact-form.form-vertical #contact_form textarea.btn:hover {
      background-color: #0071bd;
      opacity: 0.9; }
.contact-form.form-vertical #contact_form ::-webkit-input-placeholder {
  color: #aaa9a9;
  opacity: 0.5; }
.contact-form.form-vertical #contact_form :-moz-placeholder {
  color: #aaa9a9;
  opacity: 0.5; }
.contact-form.form-vertical #contact_form ::-moz-placeholder {
  color: #aaa9a9;
  opacity: 0.5; }
.contact-form.form-vertical #contact_form :-ms-input-placeholder {
  color: #aaa9a9;
  opacity: 0.5; }
.contact-form.form-vertical #contact_form select {
  background-image: url(//cdn.shopify.com/s/files/1/2293/0089/t/17/assets/select-arw.png?v=16734868541131748712);
  color: #0068b8; }
  .contact-form.form-vertical #contact_form select option {
    color: #0068b8; }

.grid.product-single .product-single__meta .product-single__price.product-single__price-product-template {
  display: inline-block; }

.currency-picker__wrapper.radioWrap {
  float: right;
  margin-bottom: 17px; }
  .currency-picker__wrapper.radioWrap span {
    float: left;
    margin-right: 4px; }
    .currency-picker__wrapper.radioWrap span:last-of-type {
      margin-right: auto; }
    .currency-picker__wrapper.radioWrap span input {
      display: none; }
    .currency-picker__wrapper.radioWrap span label {
      border: 1px solid #ccc;
      border-radius: 3px;
      color: #333;
      display: block;
      font-size: 13px;
      line-height: 26px;
      padding: 0 5px; }
      .currency-picker__wrapper.radioWrap span label:focus, .currency-picker__wrapper.radioWrap span label:hover {
        background-color: #ddd;
        color: #0068b8; }
    .currency-picker__wrapper.radioWrap span input:checked + label {
      background-color: #ddd;
      color: #333; }

.product-single__meta form.product-form.product-form-product-template {
  clear: both;
  width: 100%;
  margin-top: 17px; }

body.template-page.page-blogger-reviews h6, body.template-page.page-blogger-reviews .h6 {
  color: #333;
  font-family: "ProximaNovaRegular";
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 20px;
  margin-top: 40px; }

.shopify-section.index-section.index-section--flush.mtauto {
  margin-top: auto; }

body.template-page.page-ip-portfolio main.main-content table td {
  text-align: center;
  font-size: 13px; }
  body.template-page.page-ip-portfolio main.main-content table td .blu-text {
    color: #0068b8; }
  @media only screen and (max-width: 479px) {
    body.template-page.page-ip-portfolio main.main-content table td:not(:last-of-type) {
      overflow-wrap: break-word; } }
body.template-page.page-ip-portfolio main.main-content table[width="75%"] {
  margin-left: auto;
  margin-right: auto;
  width: 75%;
  table-layout: fixed; }
  @media only screen and (max-width: 479px) {
    body.template-page.page-ip-portfolio main.main-content table[width="75%"] {
      width: 100%; } }

.cartNote.ordersIn {
  font-size: 15px;
  font-style: italic;
  margin-top: 30px; }

body:not(.template-index):not(.page-hairmax-technology):not(.page-faq):not(.template-article) .main-content {
  padding-top: 30px; }

.RecoverPasswordForm.reset-password .form-vertical div p .btn {
  margin-bottom: auto; }

#contact_form .inlineWrap {
  position: relative; }
  #contact_form .inlineWrap a.img_popup {
    bottom: 1px;
    display: block;
    height: auto;
    left: auto;
    margin: auto;
    position: absolute;
    right: 1px;
    top: 1px;
    width: 24px; }
    #contact_form .inlineWrap a.img_popup img {
      border: 0 none;
      max-width: 100%; }

#shopify-section-footer {
  width: 100%; }
  #shopify-section-footer .site-footer__newsletter {
    margin-top: auto; }

.image-bar__content > img {
  max-height: 140px; }

@media only screen and (max-width: 990px) {
  .product-card-list-agent .grid.grid--uniform.grid--view-items .grid__item {
    text-align: center;
    padding-bottom: 20px; }
  .product-card-list-agent .accordion-section .display-table.grid__item > form {
    clear: both;
    display: block;
    width: 100%; }
  .product-card-list-agent .accordion-section .display-table.grid__item > div.list-view-item__title-column {
    text-align: center;
    clear: both;
    display: block;
    width: 100%; }
  .product-card-list-agent .accordion-section .display-table.grid__item > div.display-table-cell.learnMoreWrap {
    text-align: center;
    clear: none;
    display: block;
    width: 100%;
    margin: 10px auto; }
  .product-card-list-agent .accordion-section .display-table.grid__item > div.list-view-item__price-column.text-center {
    text-align: center !important;
    clear: none;
    display: block;
    width: 100%;
    margin: 10px auto 15px; }
  .product-card-list-agent .accordion-section .display-table.grid__item > div.display-table-cell.autoship {
    clear: none;
    display: inline-block;
    float: none;
    padding: 0;
    width: 90px; }
  .product-card-list-agent .accordion-section .display-table.grid__item > div.display-table-cell.intervalWrap {
    clear: none;
    display: inline-block;
    float: none;
    padding: 0;
    width: 110px; }
  .product-card-list-agent .accordion-section .display-table.grid__item > form.list-view-item__form-column {
    clear: none;
    display: inline-block;
    float: none;
    padding: 0;
    width: 210px; } }
@media only screen and (max-width: 767px) {
  .product-card-list-agent .accordion-section .display-table.grid__item > div.list-view-item__title-column,
  .product-card-list-agent .accordion-section .display-table.grid__item > div.display-table-cell.learnMoreWrap,
  .product-card-list-agent .accordion-section .display-table.grid__item > div.list-view-item__price-column.text-center {
    text-align: left !important; }
  .product-card-list-agent .accordion-section .display-table.grid__item > div.display-table-cell.autoship {
    margin: 10px 0;
    display: block; }
  .product-card-list-agent .accordion-section .display-table.grid__item > div.display-table-cell.intervalWrap {
    margin: 10px 0;
    display: block; }
  .product-card-list-agent .accordion-section .display-table.grid__item > form.list-view-item__form-column {
    margin: 25px 0 10px;
    display: block; }
    .product-card-list-agent .accordion-section .display-table.grid__item > form.list-view-item__form-column .display_flex {
      display: flex; } }
body.template-page.page-brand-trichologist main.main-content, body.template-page.page-celebrity-stylist main.main-content, body.template-page.page-contact-us main.main-content, body.template-page.page-distributor-inquires main.main-content, body.template-page.page-blogger-reviews main.main-content, body.template-page.page-news main.main-content, body.template-page.page-share-your-success-story main.main-content, body.template-page.page-quality-certifications main.main-content, body.template-page.page-success-stories main.main-content, body.template-page.page-fda-clearances main.main-content, body.template-page.page-clinical-research-results main.main-content {
  padding-bottom: 50px; }

body .product-single,
body main.main-content {
  padding-bottom: 50px; }

body.template-product .product-template__container {
  margin-bottom: 30px;
  margin-top: 50px; }
  @media only screen and (max-width: 767px) {
    body.template-product .product-template__container {
      margin-top: 10px;
      margin-bottom: 18px; } }

.related-product .related-product h2.section-header__title, .related-product .related-product .section-header__title.h2 {
  font-family: "Roboto Condensed";
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: left;
  color: #0068b8;
  font-size: 28px;
  padding-bottom: 15px;
  text-transform: uppercase; }
@media only screen and (min-width: 991px) {
  .related-product .grid.grid--view-items > .grid__item:nth-child(6) {
    display: none; } }

.flagmenu {
  display: inline-block;
  margin-right: 10px;
  position: relative; }
  .flagmenu .flagmenu_btn:after {
    font-family: 'icomoon';
    content: '\f107';
    margin-left: 6px;
    vertical-align: -1px; }
  .flagmenu.popup_open .flagmenu_btn:after {
    content: '\f106';
    color: #0068b8; }
  .flagmenu ul.sub-menu {
    right: auto;
    left: -10px;
    background: #fff none repeat scroll 0 0;
    border: 1px solid #efefef;
    box-shadow: 1px 2px 4px #cccccc;
    display: block !important;
    opacity: 0;
    padding: 10px;
    position: absolute;
    text-align: left;
    transition: all 0.3s linear 0s;
    visibility: hidden;
    z-index: 99999;
    min-width: 140px; }
    .flagmenu ul.sub-menu li {
      padding: 3px 0; }
  .flagmenu.popup_open ul.sub-menu {
    visibility: visible;
    opacity: 1; }

#small-dialog .btn {
  border-bottom: 10px none;
  float: right;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 15px;
  padding: 10px;
  text-transform: uppercase; }

.template-page .mfp-bottom-bar {
  cursor: auto;
  left: 0;
  margin-top: auto;
  position: absolute;
  top: 100%;
  width: 100%; }
  .template-page .mfp-bottom-bar .mfp-title {
    color: #fff;
    display: block;
    line-height: 18px;
    overflow-wrap: break-word;
    padding: 10px 70px 10px 10px;
    text-align: justify; }
  .template-page .mfp-bottom-bar .mfp-counter {
    padding: 8px 0 0;
    color: #fff; }

.ui-tabs-panel.ui-widget-content.ui-corner-bottom > .video-wrapper {
  margin-left: 30px;
  margin-right: 30px; }

.tab__description #tabs-app-accordion > h4 a, .tab__description #tabs-app-accordion > .h4 a {
  border: 0 none !important;
  color: #807f83;
  font-family: "Roboto Condensed";
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  border-top: 1px solid #807f83; }
.tab__description #tabs-app-accordion {
  border-bottom: 1px solid #807f83; }
.tab__description #tabs-app-accordion > h4, .tab__description #tabs-app-accordion > .h4 {
  border-top: 1px solid #807f83; }
.tab__description #tabs-app-accordion > h4.ui-state-active, .tab__description #tabs-app-accordion > .ui-state-active.h4 {
  border-top-color: transparent; }
.tab__description #tabs-app-accordion > h4.ui-state-active a, .tab__description #tabs-app-accordion > .ui-state-active.h4 a {
  background-color: #0068b8;
  color: #ffffff; }
.tab__description #tabs-app-accordion > div {
  border: 0 none;
  padding-left: 15px;
  padding-right: 15px; }

.cart-attribute__field label {
  color: #000;
  font-weight: bold;
  padding-bottom: 10px; }

.cart td.cart__update-wrapper.cart-flex-item.text-right .cart__remove {
  display: none; }

.cart__meta.small--text-left.cart-flex-item {
  position: relative; }
  .cart__meta.small--text-left.cart-flex-item .cart__remove {
    display: none; }

tr.cart__row td.text-right.small--hide {
  position: relative; }

@media only screen and (max-width: 767px) {
  .cart td.cart__update-wrapper.cart-flex-item.text-right .cart__remove {
    display: block; } }
.site-nav__item.has-dropdown:nth-of-type(2) .site-nav__dropdown {
  width: 1070px !important; }
  .site-nav__item.has-dropdown:nth-of-type(2) .site-nav__dropdown .meganav__product {
    width: 16%;
    min-height: 215px !important; }

.product_rp_div {
  clear: both; }

.tooltip-inner ul {
  color: #fff;
  margin-left: 21px; }

.template-product .grid.product-single .video-wrapper {
  display: block;
  margin-top: 30px; }

body.page-site-map .main-content ul.list-styled {
  display: table;
  table-layout: fixed;
  width: 100%; }
  body.page-site-map .main-content ul.list-styled li {
    float: left;
    width: 33.33%;
    padding-right: 40px;
    margin-bottom: 15px; }
    body.page-site-map .main-content ul.list-styled li a {
      text-transform: uppercase; }
    body.page-site-map .main-content ul.list-styled li:nth-of-type(3n+1) {
      clear: left; }

@media only screen and (max-width: 767px) {
  .rte__table-wrapper table {
    display: block;
    max-width: 100%; }
    .rte__table-wrapper table tr,
    .rte__table-wrapper table tr td {
      display: block;
      height: auto !important;
      line-height: normal;
      width: 100% !important; } }
.cart2-headerWrap {
  box-shadow: 0 0 3px #ccc;
  padding: 15px 0;
  margin-bottom: 50px; }
  .cart2-headerWrap .cart2-header {
    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;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between; }
    .cart2-headerWrap .cart2-header .phoneNumber {
      background-image: url(//cdn.shopify.com/s/files/1/2293/0089/files/phone_icon.png?6241);
      background-repeat: no-repeat;
      background-position: left center;
      padding: 10px 0 10px 32px; }

.cart2-gridWrap h1, .cart2-gridWrap .h1 {
  background-color: #58585a;
  color: #fff;
  font-size: 23px;
  font-weight: normal;
  padding: 7px 20px;
  text-align: left;
  text-transform: uppercase; }
.cart2-gridWrap .cart2-grid .cart2-grid-item .product_cont {
  border: 1px solid #cccccc; }
  .cart2-gridWrap .cart2-grid .cart2-grid-item .product_cont form#add-cart-frm .btn {
    background: #9bd600 none repeat scroll 0 0;
    color: #000;
    margin-bottom: 30px; }
    .cart2-gridWrap .cart2-grid .cart2-grid-item .product_cont form#add-cart-frm .btn i {
      color: #000;
      font-size: 20px;
      margin-left: 8px;
      vertical-align: -2px; }
  .cart2-gridWrap .cart2-grid .cart2-grid-item .product_cont .grid-view-item__meta {
    background-color: #ebebeb;
    display: table !important;
    width: 100%; }
    .cart2-gridWrap .cart2-grid .cart2-grid-item .product_cont .grid-view-item__meta > span {
      display: table-cell;
      text-align: center;
      vertical-align: middle; }
      @media only screen and (max-width: 767px) {
        .cart2-gridWrap .cart2-grid .cart2-grid-item .product_cont .grid-view-item__meta > span {
          display: block;
          text-align: center; } }
      .cart2-gridWrap .cart2-grid .cart2-grid-item .product_cont .grid-view-item__meta > span i {
        padding: 0;
        font-size: 18px;
        font-weight: bold;
        background-color: #23b3cd;
        border-radius: 50%;
        color: #fff;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-style: normal;
        display: block;
        margin: auto;
        text-transform: uppercase; }
    .cart2-gridWrap .cart2-grid .cart2-grid-item .product_cont .grid-view-item__meta > .priceWrap {
      padding: 10px;
      display: table-cell;
      text-align: center;
      vertical-align: middle; }
      @media only screen and (max-width: 767px) {
        .cart2-gridWrap .cart2-grid .cart2-grid-item .product_cont .grid-view-item__meta > .priceWrap {
          display: block;
          text-align: center; } }
      .cart2-gridWrap .cart2-grid .cart2-grid-item .product_cont .grid-view-item__meta > .priceWrap span.label {
        display: block;
        font-weight: normal;
        font-size: 14px;
        color: #000;
        margin-bottom: 15px; }
      .cart2-gridWrap .cart2-grid .cart2-grid-item .product_cont .grid-view-item__meta > .priceWrap b {
        color: #000;
        display: block;
        font-size: 25px; }
        .cart2-gridWrap .cart2-grid .cart2-grid-item .product_cont .grid-view-item__meta > .priceWrap b .product-price__price,
        .cart2-gridWrap .cart2-grid .cart2-grid-item .product_cont .grid-view-item__meta > .priceWrap b .product-price__price .money {
          color: #000;
          display: block;
          font-size: 25px;
          font-weight: bold; }
  .cart2-gridWrap .cart2-grid .cart2-grid-item .product_cont .blue_bg {
    background-color: #3bb9ce;
    color: #fff;
    padding: 10px 0; }
    .cart2-gridWrap .cart2-grid .cart2-grid-item .product_cont .blue_bg .grade {
      font-size: 26px; }
      .cart2-gridWrap .cart2-grid .cart2-grid-item .product_cont .blue_bg .grade b {
        font-size: 36px;
        margin-right: 10px; }
    .cart2-gridWrap .cart2-grid .cart2-grid-item .product_cont .blue_bg .treatmentTime.display-table-cell {
      width: 100px; }
      @media only screen and (max-width: 767px) {
        .cart2-gridWrap .cart2-grid .cart2-grid-item .product_cont .blue_bg .treatmentTime.display-table-cell {
          margin-left: auto;
          margin-right: auto; } }
      .cart2-gridWrap .cart2-grid .cart2-grid-item .product_cont .blue_bg .treatmentTime.display-table-cell > span {
        background: #f7f7f7 none repeat scroll 0 0;
        border: 3px solid #fff;
        border-radius: 50%;
        color: #3bb9ce;
        display: block;
        font-size: 36px;
        font-weight: bold;
        height: 80px;
        line-height: 16px;
        margin: auto;
        padding-top: 15px;
        width: 80px; }
        .cart2-gridWrap .cart2-grid .cart2-grid-item .product_cont .blue_bg .treatmentTime.display-table-cell > span > small {
          color: #000;
          display: block;
          font-size: 21px;
          line-height: normal;
          margin-top: 10px;
          text-transform: uppercase; }
    .cart2-gridWrap .cart2-grid .cart2-grid-item .product_cont .blue_bg .treatmenttreatmentSchedule h3, .cart2-gridWrap .cart2-grid .cart2-grid-item .product_cont .blue_bg .treatmenttreatmentSchedule .h3 {
      margin: auto;
      font-weight: normal;
      text-align: left; }
      @media only screen and (max-width: 767px) {
        .cart2-gridWrap .cart2-grid .cart2-grid-item .product_cont .blue_bg .treatmenttreatmentSchedule h3, .cart2-gridWrap .cart2-grid .cart2-grid-item .product_cont .blue_bg .treatmenttreatmentSchedule .h3 {
          text-align: center; } }

.cart2-grid.grid--view-items {
  margin-bottom: auto; }

.grid.grid--view-items.cart2-grid > .grid__item .grid-view-item.cart2-grid-item .product_cont .grid-view-item__title {
  background: #3bb9ce none repeat scroll 0 0;
  color: #fff;
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 0;
  padding: 10px; }

.money-back {
  border: 1px solid #49bdd1; }

.m_guarantee {
  display: block;
  float: left;
  padding-bottom: 15px;
  padding-left: 57px;
  padding-top: 15px;
  width: 50%; }

.laser-device {
  display: block;
  float: left;
  width: 50%;
  padding-top: 13px; }

.m_guarantee > div {
  border: 6px solid #23b3cd;
  border-radius: 50%;
  height: 269px;
  text-align: center;
  width: 273px;
  display: table-cell;
  vertical-align: middle; }

.m_guarantee h3, .m_guarantee .h3 {
  color: #23b3cd;
  font-size: 55px;
  margin-bottom: 0;
  padding-top: 0px;
  text-align: center;
  text-transform: uppercase; }

.m_guarantee h5, .m_guarantee .h5 {
  color: #000;
  font-size: 22px;
  letter-spacing: 0px;
  text-transform: uppercase;
  margimn-top: 0px;
  margin-bottom: 0px; }

.m_guarantee h5 span, .m_guarantee .h5 span {
  font-size: 26px; }

.m_guarantee p {
  color: #000;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase; }

.laser-device > h3, .laser-device > .h3 {
  color: #49bdd1;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  padding-left: 50px;
  text-align: left; }

.text-center .rte .laser-device ul {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 55%; }

.laser-device ul li {
  color: #000;
  font-size: 22px;
  font-weight: 500;
  list-style: outside none none;
  padding: 0 0 0 20px;
  position: relative;
  text-align: left; }

.laser-device ul li::before {
  background-color: #39b7cd;
  border-radius: 50%;
  bottom: 0;
  content: "";
  display: inline-block;
  height: 10px;
  left: 0;
  margin: auto;
  position: absolute;
  right: auto;
  top: -4px;
  width: 10px; }

.cart2-description .bundle-offer {
  margin-bottom: 30px;
  margin-top: 40px;
  border: 1px solid #ebebeb; }
  .cart2-description .bundle-offer .bundle-title > h3, .cart2-description .bundle-offer .bundle-title > .h3 {
    background: #ebebeb none repeat scroll 0 0;
    display: block;
    font-size: 41px;
    font-weight: 500;
    padding: 10px 20px;
    text-align: left;
    text-transform: uppercase;
    margin: auto; }
    .cart2-description .bundle-offer .bundle-title > h3 span, .cart2-description .bundle-offer .bundle-title > .h3 span {
      font-size: 30px;
      font-weight: normal; }
  .cart2-description .bundle-offer .bundle-offer-detail {
    display: table;
    vertical-align: top;
    margin: 15px; }
    .cart2-description .bundle-offer .bundle-offer-detail .bundle-offer-left {
      display: table-cell;
      vertical-align: top;
      min-width: 290px; }
    .cart2-description .bundle-offer .bundle-offer-detail .bundle-offer-center {
      display: table-cell;
      text-align: left;
      vertical-align: top;
      padding: 0 50px; }
      .cart2-description .bundle-offer .bundle-offer-detail .bundle-offer-center h3, .cart2-description .bundle-offer .bundle-offer-detail .bundle-offer-center .h3 {
        color: #23b3cd; }
      .cart2-description .bundle-offer .bundle-offer-detail .bundle-offer-center h4, .cart2-description .bundle-offer .bundle-offer-detail .bundle-offer-center .h4 {
        margin: auto;
        padding: 0; }
    .cart2-description .bundle-offer .bundle-offer-detail .bundle-offer-right {
      display: table-cell;
      vertical-align: top; }
      .cart2-description .bundle-offer .bundle-offer-detail .bundle-offer-right .bundle-value {
        background: #23b3cd none repeat scroll 0 0;
        border-radius: 100%;
        color: #fff;
        height: 150px;
        width: 150px;
        padding-top: 36px; }
        .cart2-description .bundle-offer .bundle-offer-detail .bundle-offer-right .bundle-value h3, .cart2-description .bundle-offer .bundle-offer-detail .bundle-offer-right .bundle-value .h3 {
          display: block;
          font-size: 66px;
          line-height: 46px; }
        .cart2-description .bundle-offer .bundle-offer-detail .bundle-offer-right .bundle-value p {
          color: #fff;
          display: block;
          font-family: "Roboto Condensed";
          font-size: 30px;
          font-weight: 600 !important;
          line-height: 20px;
          margin: auto;
          padding: 0;
          text-transform: uppercase; }

@media only screen and (min-width: 480px) and (max-width: 991px) {
  .grid.grid--view-items.cart2-grid > .grid__item.product-card-grid {
    width: 50%;
    clear: none; }

  .grid.grid--view-items.cart2-grid > .grid__item.product-card-grid:nth-child(2n+1) {
    clear: both; } }
@media only screen and (max-width: 479px) {
  .grid.grid--view-items.cart2-grid > .grid__item.product-card-grid {
    width: 100%;
    clear: none; } }
@media only screen and (max-width: 991px) {
  .money-back .m_guarantee {
    display: block;
    float: none;
    margin: auto;
    width: 296px;
    padding: 0;
    text-align: center; }

  .text-center .rte .laser-device ul {
    display: block;
    margin-left: 31px;
    margin-right: auto;
    width: auto; }

  .laser-device {
    display: block;
    width: auto;
    float: none; }

  .cart2-description .bundle-offer .bundle-offer-detail .bundle-offer-left {
    display: block;
    min-width: 10px; }
    .cart2-description .bundle-offer .bundle-offer-detail .bundle-offer-left img {
      max-width: 100%; }

  .cart2-description .bundle-offer .bundle-offer-detail .bundle-offer-center {
    display: block;
    padding: 0;
    margin: 30px auto; }

  .cart2-description .bundle-offer .bundle-offer-detail .bundle-offer-right {
    display: block; }
    .cart2-description .bundle-offer .bundle-offer-detail .bundle-offer-right .bundle-value {
      margin-left: auto;
      margin-right: auto; } }
@media only screen and (max-width: 767px) {
  .cart2-description .bundle-offer .bundle-title > h3, .cart2-description .bundle-offer .bundle-title > .h3 {
    text-align: center;
    display: block; }
    .cart2-description .bundle-offer .bundle-title > h3 span, .cart2-description .bundle-offer .bundle-title > .h3 span {
      text-align: center;
      display: block; } }
@media only screen and (max-width: 479px) {
  .money-back .m_guarantee {
    width: 225px;
    height: 225px; }

  .m_guarantee > div {
    border: 6px solid #23b3cd;
    border-radius: 50%;
    display: table-cell;
    height: 225px;
    padding-top: 27px;
    text-align: center;
    vertical-align: top;
    width: 225px; }

  .m_guarantee h3, .m_guarantee .h3 {
    font-size: 38px !important; }

  .laser-device > h3, .laser-device > .h3 {
    color: #49bdd1;
    font-size: 30px;
    font-weight: 400;
    padding: 0 15px;
    text-align: center;
    text-transform: uppercase; }

  .laser-device ul li {
    font-size: 15px; }

  .laser-device ul li::before {
    top: -1px; } }
.agent-btns-wrap .display-flex {
  -moz-box-align: center;
  -moz-box-pack: justify;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: -10px;
  margin-bottom: 30px; }
  .agent-btns-wrap .display-flex .btn.btn--secondary.btn-wide {
    border: 2px solid #0068b8;
    color: #0068b8;
    flex-grow: 1;
    float: none;
    font-size: 12px;
    margin-left: 10px;
    padding-left: 0;
    padding-right: 0;
    width: calc(25% - 10px); }
    .agent-btns-wrap .display-flex .btn.btn--secondary.btn-wide:hover {
      background-color: #fff; }

.medium-size {
  margin-left: auto;
  margin-right: auto;
  max-width: 75%; }

body.page-laser-band-teeth .main-content .rte > .display-table {
  margin-bottom: 50px;
  margin-top: 50px; }
  body.page-laser-band-teeth .main-content .rte > .display-table a.btn {
    display: block; }
  body.page-laser-band-teeth .main-content .rte > .display-table.laserBand .display-table-cell {
    padding-left: 30px;
    padding-right: 30px; }
    @media only screen and (max-width: 991px) {
      body.page-laser-band-teeth .main-content .rte > .display-table.laserBand .display-table-cell {
        text-align: center;
        margin-bottom: 50px;
        padding-left: 0;
        padding-right: 0; } }
  body.page-laser-band-teeth .main-content .rte > .display-table .headding2 h1, body.page-laser-band-teeth .main-content .rte > .display-table .headding2 .h1 {
    color: #0068b8;
    font-family: "Roboto Condensed";
    font-weight: normal; }
  body.page-laser-band-teeth .main-content .rte > .display-table.videoWrap .display-table-cell {
    padding-left: 30px;
    padding-right: 30px; }
    @media only screen and (max-width: 991px) {
      body.page-laser-band-teeth .main-content .rte > .display-table.videoWrap .display-table-cell {
        margin-bottom: 50px;
        padding-left: 0;
        padding-right: 0; } }
  @media only screen and (max-width: 991px) {
    body.page-laser-band-teeth .main-content .rte > .display-table .display-table-cell {
      display: block;
      width: 100%;
      margin-bottom: 30px;
      padding-left: 0;
      padding-right: 0; }
    body.page-laser-band-teeth .main-content .rte > .display-table a.btn {
      display: inline-block; } }
body.page-laser-band-teeth .main-content .rte .noteWrap {
  margin: auto;
  max-width: 66.66%;
  text-align: center; }
  body.page-laser-band-teeth .main-content .rte .noteWrap > img {
    margin-bottom: 30px;
    max-width: 48%; }
  @media only screen and (max-width: 991px) {
    body.page-laser-band-teeth .main-content .rte .noteWrap {
      max-width: 100%; } }

body.template-page.page-agent-faq div.main-content {
  padding-top: 0 !important; }

body.template-page.page-sales-scripts .cart2-headerWrap,
body.template-page.page-call-center-portal .cart2-headerWrap,
body.template-page.sales-scripts .cart2-headerWrap,
body.template-page.page-agent-faq .cart2-headerWrap {
  margin-bottom: 0; }

.page-width.head_btnWrap {
  margin: 15px auto; }

.product-form .recurring_div.bold-ro > .frequency_div {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 30px); }
.product-form .recurring_div.bold-ro > label {
  margin-top: 11px;
  text-align: left;
  vertical-align: top;
  width: 28px; }

.call-center-portal-form .contact-form.form-vertical {
  margin-top: 75px; }
  .call-center-portal-form .contact-form.form-vertical #contact_form select#ContactFormActionrequired {
    height: 41.2px;
    padding-top: 7px; }
  .call-center-portal-form .contact-form.form-vertical #contact_form input,
  .call-center-portal-form .contact-form.form-vertical #contact_form select,
  .call-center-portal-form .contact-form.form-vertical #contact_form textarea {
    border-width: 2px; }

@media only screen and (max-width: 991px) {
  body.template-customers-account .main-content .grid > .grid__item.medium-up--one-third,
  body.template-customers-account .main-content .grid > .grid__item.medium-up--two-thirds {
    width: 100%; } }
@media only screen and (max-width: 991px) {
  .page-width.head_btnWrap a.btn {
    padding: 10px 15px; } }
@media only screen and (max-width: 767px) {
  .page-width.head_btnWrap a.btn {
    display: block;
    margin: 10px auto; } }
.login_Wrap {
  *zoom: 1; }
  .login_Wrap::after {
    content: '';
    display: table;
    clear: both; }
  .login_Wrap > ul {
    float: right;
    *zoom: 1; }
    .login_Wrap > ul::after {
      content: '';
      display: table;
      clear: both; }
    .login_Wrap > ul > li {
      display: block;
      float: left;
      line-height: 14px;
      color: #444444; }
      .login_Wrap > ul > li:nth-child(1n+2) {
        border-left: 1px solid #444444;
        padding-left: 10px;
        margin-left: 10px; }
      .login_Wrap > ul > li a {
        color: #444444;
        font-family: "Roboto Condensed";
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0;
        text-transform: uppercase; }
      .login_Wrap > ul > li.checkoutBtn input[type="submit"] {
        padding: 0;
        border: 0 none;
        background-color: transparent;
        color: #444444;
        font-family: "Roboto Condensed";
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0; }
        .login_Wrap > ul > li.checkoutBtn input[type="submit"]:hover {
          color: #0068b8; }

.site-nav li a.site-header__cart {
  padding: 0; }

.site-header .site-nav li a.grid-image_link {
  height: 150px;
  padding: 0;
  margin: 10px auto; }
  .site-header .site-nav li a.grid-image_link .grid-view-item__image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-height: 100%;
    max-width: 100%;
    width: auto; }

.slideshow {
  height: auto;
  overflow: hidden;
  margin-bottom: 0; }
  @media only screen and (min-width: 991px) and (min-width: 1199px) {
    .slideshow {
      height: 360px; } }
  @media only screen and (min-width: 1200px) {
    .slideshow {
      height: 475px; } }
  .slideshow .slideshow__overlay:before {
    display: none; }
  .slideshow .btn {
    background-color: #0b4d8e;
    border: 0 none;
    display: inline-block;
    font-family: "Roboto";
    font-size: 16px;
    font-weight: 500;
    opacity: 1;
    padding: 15px 20px;
    visibility: visible;
    border: 1px solid #0b4d8e; }
    .slideshow .btn.slideshow__video-control span {
      background-image: url(//cdn.shopify.com/s/files/1/2293/0089/t/17/assets/play_btn.png?v=15996737962249718569);
      background-repeat: no-repeat;
      background-position: left center;
      padding-left: 30px;
      line-height: 25px;
      display: block; }
    .slideshow .btn:hover {
      background-color: rgba(11, 79, 142, 0.8); }
    .slideshow .btn.btn--secondary {
      display: inline-block;
      border: 1px solid #0b4d8e;
      background-color: transparent;
      color: #fff;
      padding: 15px 20px; }
      .slideshow .btn.btn--secondary:hover {
        background-color: rgba(11, 79, 142, 0.5); }

.slideshow__slide.align_text-left .slideshow__text-wrap.slideshow__overlay .slideshow__text-content {
  left: 0;
  right: auto;
  max-width: 50%;
  margin-left: auto;
  margin-right: auto; }

.slideshow__slide.align_text-right .slideshow__text-wrap.slideshow__overlay .slideshow__text-content {
  left: auto;
  right: 0;
  max-width: 50%;
  margin-left: auto;
  margin-right: auto; }

.slideshow__slide.align_text-center .slideshow__text-wrap.slideshow__overlay .slideshow__text-content {
  left: 0;
  right: 0;
  max-width: 50%;
  margin-left: auto;
  margin-right: auto; }

.slideshow__slide.slick-slide.slideshow__text-wrap.slideshow__overlay .slideshow__text-content {
  width: auto;
  text-align: center;
  margin-left: auto;
  margin-right: auto; }
  @media only screen and (max-width: 991px) {
    .slideshow__slide.slick-slide.slideshow__text-wrap.slideshow__overlay .slideshow__text-content {
      position: static;
      top: 0;
      transform: translateY(0);
      left: 0;
      background-color: #000;
      color: #fff;
      text-align: center;
      padding: 15px 15px 30px; } }
  .slideshow__slide.slick-slide.slideshow__text-wrap.slideshow__overlay .slideshow__text-content .mega-title.slideshow__title {
    font-size: 50px;
    font-weight: 100;
    text-align: center;
    text-transform: uppercase;
    font-family: "Roboto"; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .slideshow__slide.slick-slide.slideshow__text-wrap.slideshow__overlay .slideshow__text-content .mega-title.slideshow__title {
        font-size: 50px; } }
    @media only screen and (max-width: 991px) {
      .slideshow__slide.slick-slide.slideshow__text-wrap.slideshow__overlay .slideshow__text-content .mega-title.slideshow__title {
        text-align: center; } }
    @media only screen and (max-width: 767px) {
      .slideshow__slide.slick-slide.slideshow__text-wrap.slideshow__overlay .slideshow__text-content .mega-title.slideshow__title {
        font-size: 20px; } }
  .slideshow__slide.slick-slide.slideshow__text-wrap.slideshow__overlay .slideshow__text-content .mega-subtitle.slideshow__subtitle {
    font-size: 50px;
    max-width: none;
    text-align: center;
    text-transform: uppercase;
    width: auto;
    font-weight: 400; }
    @media only screen and (max-width: 991px) {
      .slideshow__slide.slick-slide.slideshow__text-wrap.slideshow__overlay .slideshow__text-content .mega-subtitle.slideshow__subtitle {
        text-align: center; } }
    @media only screen and (max-width: 767px) {
      .slideshow__slide.slick-slide.slideshow__text-wrap.slideshow__overlay .slideshow__text-content .mega-subtitle.slideshow__subtitle {
        font-size: 20px; } }
  @media only screen and (max-width: 767px) {
    .slideshow__slide.slick-slide.slideshow__text-wrap.slideshow__overlay .slideshow__text-content .btn {
      font-size: 12px;
      line-height: 25px;
      margin-top: 10px;
      padding: 5px 10px;
      width: 136px; }
      .slideshow__slide.slick-slide.slideshow__text-wrap.slideshow__overlay .slideshow__text-content .btn.btn--secondary {
        padding: 5px 10px;
        font-size: 12px; } }
  @media only screen and (max-width: 767px) {
    .slideshow__slide.slick-slide.slideshow__text-wrap.slideshow__overlay .slideshow__text-content .slideshow__video-control--play-wrapper {
      height: auto; } }

.template-index .section-header > h2, .template-index .section-header > .h2 {
  color: #d80546;
  font: 20px/1.4 Arial,sans-serif;
  letter-spacing: 0;
  text-transform: none; }

.collection-grid .collection-grid-item {
  padding-bottom: 0; }
.collection-grid .collection-grid-item__overlay {
  z-index: 2; }
  .collection-grid .collection-grid-item__overlay:before {
    border: 1px solid #e1e1e1;
    bottom: 27px;
    content: "";
    left: 0;
    margin-top: 0;
    position: absolute;
    right: 0;
    top: 30px;
    z-index: 1;
    transition: all 0.3s linear; }
.collection-grid .grid__item:hover .collection-grid-item__overlay:before {
  border-width: 2px; }
.collection-grid .grid__item:nth-of-type(1) .collection-grid-item__title {
  color: #0072bc; }
.collection-grid .grid__item:nth-of-type(1):hover .collection-grid-item__overlay:before {
  border-color: #2bb673; }
.collection-grid .grid__item:nth-of-type(1):hover .collection-grid-item img {
  opacity: 1; }
.collection-grid .grid__item:nth-of-type(2) .collection-grid-item__title {
  color: #0072bc; }
.collection-grid .grid__item:nth-of-type(2):hover .collection-grid-item__overlay:before {
  border-color: #f8981d; }
.collection-grid .grid__item:nth-of-type(3) .collection-grid-item__title {
  color: #0072bc; }
.collection-grid .grid__item:nth-of-type(3):hover .collection-grid-item__overlay:before {
  border-color: #f49ac0; }
.collection-grid .grid__item:nth-of-type(4) .collection-grid-item__title {
  color: #0072bc; }
.collection-grid .grid__item:nth-of-type(4):hover .collection-grid-item__overlay:before {
  border-color: #00adef; }
.collection-grid .collection-grid-item__title {
  font-family: "Roboto Condensed";
  font-size: 18px;
  font-weight: normal;
  text-transform: uppercase; }
.collection-grid .collection-grid-item__link {
  border: 2px solid rgba(0, 0, 0, 0);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2; }

.shopify-section .meet-our-team {
  background-color: #4c4b51;
  padding: 0;
  overflow: hidden;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .shopify-section .meet-our-team {
      background-color: #a3a0b5; } }
  .shopify-section .meet-our-team .section-header {
    margin-bottom: auto; }
    @media only screen and (max-width: 990px) {
      .shopify-section .meet-our-team .section-header {
        margin-bottom: 10px; } }
    .shopify-section .meet-our-team .section-header h2, .shopify-section .meet-our-team .section-header .h2 {
      color: #fff;
      font-size: 24px;
      margin: auto;
      padding: 30px 0 5px; }
      @media only screen and (min-width: 1200px) {
        .shopify-section .meet-our-team .section-header h2, .shopify-section .meet-our-team .section-header .h2 {
          line-height: 40px; } }
  @media only screen and (max-width: 991px) {
    .shopify-section .meet-our-team {
      background-color: #a3a0b5; } }
  @media only screen and (min-width: 1200px) {
    .shopify-section .meet-our-team .page-width {
      max-width: none; } }
  .shopify-section .meet-our-team .btext {
    background-image: url(//cdn.shopify.com/s/files/1/2293/0089/files/outTeam2_x380.jpg?6241);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: auto 380px;
    background-color: #a29fb4;
    bottom: 0;
    content: "";
    display: block;
    position: absolute;
    right: 100%;
    top: 0;
    width: 100%;
    z-index: -1;
    opacity: 0.5;
    height: auto; }
    @media only screen and (max-width: 991px) {
      .shopify-section .meet-our-team .btext {
        display: none; } }
    @media only screen and (min-width: 1200px) {
      .shopify-section .meet-our-team .btext {
        left: -400px;
        right: auto;
        width: 400px; } }
    @media only screen and (min-width: 991px) {
      .shopify-section .meet-our-team .btext {
        background-size: auto 325px;
        min-height: 0;
        top: 0;
        bottom: 0; } }
  .shopify-section .meet-our-team .atext {
    background-image: url(//cdn.shopify.com/s/files/1/2293/0089/files/outTeam1_x380?6241);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: auto 380px;
    background-color: #a29fb4;
    bottom: 0;
    opacity: 0.5;
    content: "";
    left: 100%;
    margin: auto;
    min-height: 452px;
    min-width: 258px;
    position: absolute;
    right: auto;
    top: 0;
    z-index: -1;
    width: 100%;
    height: auto; }
    @media only screen and (max-width: 991px) {
      .shopify-section .meet-our-team .atext {
        display: none; } }
    @media only screen and (min-width: 1200px) {
      .shopify-section .meet-our-team .atext {
        left: 100%;
        min-width: 400px;
        width: 400px; } }
    @media only screen and (min-width: 991px) {
      .shopify-section .meet-our-team .atext {
        background-size: auto 325px;
        min-height: 0;
        top: 0;
        bottom: 0; } }
  .shopify-section .meet-our-team .quotes-wrapper {
    max-width: 648px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    background-color: #a3a0b5;
    z-index: 2;
    /*
    &:before{
      background-image: url(//cdn.shopify.com/s/files/1/2293/0089/t/17/assets/outTeamLeft.jpg?v=7777843479398610418);
      background-position: right center;
      background-repeat: no-repeat;
      background-size: auto 100%;
      bottom: 0;
      content: "";
      display: none;
      position: absolute;
      right: 100%;
      top: 0;
      width: 100%;
      z-index: 0;
      @media only screen and (max-width: 1200px) {
        width: 400px;
      }
    }
    &:after{
      background-image: url(//cdn.shopify.com/s/files/1/2293/0089/t/17/assets/outTeamRight.jpg?v=815991097824942097);
      background-position: left center;
      background-repeat: no-repeat;
      background-size: auto 100%;
      bottom: 0;
      content: "";
      left: 100%;
      margin: auto;
      display: none;
      min-height: 452px;
      min-width: 258px;
      position: absolute;
      right: auto;
      top: 0;
      z-index: 0;
      @media only screen and (max-width: 1200px) {
        width: 400px;
      }
    }
    */ }
    @media only screen and (max-width: 991px) {
      .shopify-section .meet-our-team .quotes-wrapper {
        max-width: none; } }
    @media only screen and (min-width: 1200px) {
      .shopify-section .meet-our-team .quotes-wrapper {
        max-width: none;
        width: calc(100% - 775px); } }
    .shopify-section .meet-our-team .quotes-wrapper img {
      width: auto;
      margin-left: auto;
      margin-right: 0; }
      @media only screen and (min-width: 991px) {
        .shopify-section .meet-our-team .quotes-wrapper img {
          max-height: 425px; } }
      @media only screen and (min-width: 768px) and (max-width: 990px) {
        .shopify-section .meet-our-team .quotes-wrapper img {
          margin: auto;
          max-height: 150px;
          width: auto;
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          top: auto; } }
    .shopify-section .meet-our-team .quotes-wrapper .quotesThumb {
      position: relative; }
      @media only screen and (min-width: 991px) {
        .shopify-section .meet-our-team .quotes-wrapper .quotesThumb .teamWatch {
          width: 50%;
          left: 30px;
          bottom: 0;
          top: 50%;
          position: absolute;
          transform: translateY(-50%);
          z-index: 999; } }
      @media only screen and (max-width: 990px) {
        .shopify-section .meet-our-team .quotes-wrapper .quotesThumb .teamWatch {
          padding-bottom: 170px;
          text-align: center; } }
      @media only screen and (max-width: 767px) {
        .shopify-section .meet-our-team .quotes-wrapper .quotesThumb .teamWatch {
          padding-bottom: 35px; } }
      .shopify-section .meet-our-team .quotes-wrapper .quotesThumb .teamWatch .rte-setting {
        color: #fff;
        font-size: 20px;
        text-transform: uppercase; }
        @media only screen and (max-width: 990px) {
          .shopify-section .meet-our-team .quotes-wrapper .quotesThumb .teamWatch .rte-setting {
            font-size: 18px; } }
      .shopify-section .meet-our-team .quotes-wrapper .quotesThumb .teamWatch em {
        color: #fff;
        font-size: 14px; }
  .shopify-section .meet-our-team .sprite {
    background-image: url(//cdn.shopify.com/s/files/1/2293/0089/t/17/assets/slider_arrow.png?v=12589255272826111692);
    background-repeat: no-repeat;
    width: 32px;
    height: 32px;
    display: block;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
    position: absolute;
    transform: translateY(-32px);
    z-index: 1; }
    .shopify-section .meet-our-team .sprite.sprite-right_slide_arrow {
      background-position: center right;
      right: -66px;
      left: auto; }
      @media only screen and (max-width: 767px) {
        .shopify-section .meet-our-team .sprite.sprite-right_slide_arrow {
          background-size: 40px auto;
          height: 21px;
          width: 20px;
          right: -10px; } }
      @media only screen and (max-width: 991px) {
        .shopify-section .meet-our-team .sprite.sprite-right_slide_arrow {
          right: -10px; } }
    .shopify-section .meet-our-team .sprite.sprite-left_slide_arrow {
      background-position: center left;
      left: -66px;
      right: auto; }
      @media only screen and (max-width: 991px) {
        .shopify-section .meet-our-team .sprite.sprite-left_slide_arrow {
          left: -10px; } }
      @media only screen and (max-width: 767px) {
        .shopify-section .meet-our-team .sprite.sprite-left_slide_arrow {
          background-size: 40px auto;
          height: 21px;
          width: 20px;
          left: -10px; } }

.benefitBox {
  border-bottom: 0px none #dfdfdf; }
  .benefitBox hr {
    border-bottom: 1px solid #dfdfdf;
    margin-bottom: 20px;
    padding-bottom: 0px; }
  .benefitBox .section-header {
    margin-left: auto;
    margin-right: auto; }
    @media only screen and (min-width: 768px) {
      .benefitBox .section-header {
        max-width: 75%; } }
    .benefitBox .section-header h2.h1.mega-title, .benefitBox .section-header .h1.mega-title.h2 {
      color: #0072bd;
      font-size: 40px;
      font-weight: normal;
      letter-spacing: 0;
      margin-bottom: 20px;
      margin-top: 35px;
      text-transform: uppercase; }
    .benefitBox .section-header h4.h1.mega-title, .benefitBox .section-header .h1.mega-title.h4 {
      color: #000;
      display: block;
      font-size: 14px;
      font-weight: normal;
      letter-spacing: 0;
      margin-bottom: 30px;
      margin-top: 10px; }
  .benefitBox .custom-content {
    margin-top: 30px; }
    .benefitBox .custom-content .custom__item-inner.custom__item-inner--image {
      *zoom: 1; }
      .benefitBox .custom-content .custom__item-inner.custom__item-inner--image::after {
        content: '';
        display: table;
        clear: both; }
      .benefitBox .custom-content .custom__item-inner.custom__item-inner--image img {
        float: left;
        margin-right: 10px; }
        @media only screen and (max-width: 767px) {
          .benefitBox .custom-content .custom__item-inner.custom__item-inner--image img {
            float: none;
            margin-right: auto;
            margin-left: auto; } }
      .benefitBox .custom-content .custom__item-inner.custom__item-inner--image h4.h2, .benefitBox .custom-content .custom__item-inner.custom__item-inner--image .h2.h4 {
        color: #959494;
        display: block;
        font-size: 14px;
        font-weight: normal;
        margin-top: auto;
        padding-left: 0;
        padding-top: 20px;
        text-align: left;
        vertical-align: middle; }
        @media only screen and (max-width: 767px) {
          .benefitBox .custom-content .custom__item-inner.custom__item-inner--image h4.h2, .benefitBox .custom-content .custom__item-inner.custom__item-inner--image .h2.h4 {
            float: none;
            margin-right: auto;
            margin-left: auto;
            text-align: center;
            font-size: 13px; } }

.blog-posts .index-section .section-header > h2, .blog-posts .index-section .section-header > .h2 {
  margin-bottom: auto; }
.blog-posts .index-section .section-header > h4, .blog-posts .index-section .section-header > .h4 {
  font-size: 16px;
  color: #000;
  margin-bottom: 30px; }
.blog-posts .article__grid-meta.article__grid-meta--has-image .list--inline.article__meta-buttons li .btn.btn--secondary {
  border: 1px solid #076fba;
  color: #076fba;
  background-color: #fff; }
  .blog-posts .article__grid-meta.article__grid-meta--has-image .list--inline.article__meta-buttons li .btn.btn--secondary:hover {
    background-color: #076fba;
    color: #fff; }

.site-footer__newsletter .input-group__btn .btn {
  background-image: url(//cdn.shopify.com/s/files/1/2293/0089/t/17/assets/send_arrow.png?v=17396198565722733577) !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: #076fba !important;
  border: 0 none;
  width: 36px;
  height: 36px;
  text-indent: -9999px;
  overflow: hidden; }

.site-footer__newsletter .input-group__field {
  background-image: url(//cdn.shopify.com/s/files/1/2293/0089/t/17/assets/mail_icon.png?v=4216323952750862343) !important;
  background-position: 10px center;
  background-repeat: no-repeat;
  border: 0 none;
  height: 36px;
  padding-left: 48px; }

.site-footer__newsletter h6, .site-footer__newsletter .h6 {
  color: #ffffff;
  float: left;
  font-weight: normal;
  font-size: 24px;
  text-transform: uppercase;
  margin: 5px auto auto; }
.site-footer__newsletter label.h4 {
  color: #ffffff;
  display: block;
  float: left;
  font-size: 14px;
  font-weight: normal;
  margin: 10px 10px 10px 15%; }

.site-footer .site-footer__linklist-item {
  float: none; }

.foot-up .logo-bar__image {
  display: block;
  margin: 0 0 20px; }
.foot-up .site-footer__social-icons li {
  margin-right: 5px; }
  .foot-up .site-footer__social-icons li a.social-icons__link {
    background: #076fba none repeat scroll 0 0;
    border-radius: 50%;
    color: #ffffff;
    height: 32px;
    line-height: 32px;
    text-align: center;
    width: 32px; }
    .foot-up .site-footer__social-icons li a.social-icons__link:focus, .foot-up .site-footer__social-icons li a.social-icons__link:hover {
      opacity: 0.9; }

.site-footer .footer__copyright__wrap {
  background-color: #333333;
  margin-top: 20px;
  padding-bottom: 15px;
  padding-top: 15px;
  text-align: center; }
  .site-footer .footer__copyright__wrap .logo-bar__image {
    display: inline-block;
    vertical-align: middle;
    max-height: 41px; }
  .site-footer .footer__copyright__wrap .logo-bar__image + .logo-bar__image {
    margin-left: 30px; }
  .site-footer .footer__copyright__wrap hr {
    border-color: #5a5a5a; }
  .site-footer .footer__copyright__wrap p {
    color: #fff;
    font-size: 14px; }
  .site-footer .footer__copyright__wrap .site-footer__copyright-content {
    color: #fff; }
    .site-footer .footer__copyright__wrap .site-footer__copyright-content a {
      color: #fff; }
      .site-footer .footer__copyright__wrap .site-footer__copyright-content a:hover {
        color: #076fba; }

#filter-wrapper.col-sidebar .left-filter-head h3, #filter-wrapper.col-sidebar .left-filter-head .h3 {
  font-weight: normal;
  font-size: 18px;
  color: #444; }
#filter-wrapper.col-sidebar .collection-filter {
  border: 1px solid #ebebeb;
  padding: 20px;
  *zoom: 1; }
  #filter-wrapper.col-sidebar .collection-filter::after {
    content: '';
    display: table;
    clear: both; }
  #filter-wrapper.col-sidebar .collection-filter .filter-section {
    margin-bottom: auto;
    float: left;
    width: 25%; }
    #filter-wrapper.col-sidebar .collection-filter .filter-section:last-of-type {
      margin-bottom: auto; }
    #filter-wrapper.col-sidebar .collection-filter .filter-section .filter-head h4, #filter-wrapper.col-sidebar .collection-filter .filter-section .filter-head .h4 {
      font-weight: bold;
      font-size: 14px;
      color: #444444;
      text-transform: uppercase; }
    #filter-wrapper.col-sidebar .collection-filter .filter-section .filter-inner ul li {
      margin-bottom: 15px; }
      #filter-wrapper.col-sidebar .collection-filter .filter-section .filter-inner ul li a {
        font-size: 13px;
        color: #686868;
        position: relative;
        padding-left: 35px;
        text-transform: uppercase; }
        #filter-wrapper.col-sidebar .collection-filter .filter-section .filter-inner ul li a:before {
          display: inline-block;
          content: "";
          border-width: 1px;
          border-color: #acacac;
          border-style: solid;
          border-radius: 2px;
          background-color: white;
          position: absolute;
          left: 0;
          top: 0;
          width: 18px;
          height: 17px; }
        #filter-wrapper.col-sidebar .collection-filter .filter-section .filter-inner ul li a:hover {
          color: #076fba; }
          #filter-wrapper.col-sidebar .collection-filter .filter-section .filter-inner ul li a:hover:before {
            border-color: #076fba;
            background-color: #076fba; }
        #filter-wrapper.col-sidebar .collection-filter .filter-section .filter-inner ul li a.link_active {
          font-weight: bold; }
          #filter-wrapper.col-sidebar .collection-filter .filter-section .filter-inner ul li a.link_active:before {
            background-color: black;
            border-color: black; }
      #filter-wrapper.col-sidebar .collection-filter .filter-section .filter-inner ul li:hover > a {
        color: #076fba; }
        #filter-wrapper.col-sidebar .collection-filter .filter-section .filter-inner ul li:hover > a:before {
          border-color: #076fba;
          background-color: #076fba; }
      #filter-wrapper.col-sidebar .collection-filter .filter-section .filter-inner ul li.link_active > a {
        font-weight: bold; }
        #filter-wrapper.col-sidebar .collection-filter .filter-section .filter-inner ul li.link_active > a:before {
          background-color: black;
          border-color: black; }
      #filter-wrapper.col-sidebar .collection-filter .filter-section .filter-inner ul li label {
        display: block;
        font-size: 13px;
        color: #686868;
        position: relative;
        padding-left: 35px;
        text-transform: uppercase; }
        #filter-wrapper.col-sidebar .collection-filter .filter-section .filter-inner ul li label:before {
          display: inline-block;
          content: "";
          border-width: 1px;
          border-color: #acacac;
          border-style: solid;
          border-radius: 2px;
          background-color: white;
          position: absolute;
          left: 0;
          top: 0;
          width: 18px;
          height: 17px; }
        #filter-wrapper.col-sidebar .collection-filter .filter-section .filter-inner ul li label:hover {
          color: #076fba; }
          #filter-wrapper.col-sidebar .collection-filter .filter-section .filter-inner ul li label:hover:before {
            border-color: #076fba;
            background-color: #076fba; }
      #filter-wrapper.col-sidebar .collection-filter .filter-section .filter-inner ul li input[type="checkbox"] {
        display: none; }
      #filter-wrapper.col-sidebar .collection-filter .filter-section .filter-inner ul li input[type="checkbox"]:checked + label {
        font-weight: bold; }
        #filter-wrapper.col-sidebar .collection-filter .filter-section .filter-inner ul li input[type="checkbox"]:checked + label:before {
          background-color: black;
          border-color: black; }
#filter-wrapper.col-sidebar .filter-section.top-seller-title-filter {
  margin-top: 30px; }
  #filter-wrapper.col-sidebar .filter-section.top-seller-title-filter .filter-head h4, #filter-wrapper.col-sidebar .filter-section.top-seller-title-filter .filter-head .h4 {
    font-weight: normal;
    font-size: 18px;
    color: #444; }
  #filter-wrapper.col-sidebar .filter-section.top-seller-title-filter .filter-inner ul li {
    margin-bottom: 30px; }
    #filter-wrapper.col-sidebar .filter-section.top-seller-title-filter .filter-inner ul li a {
      *zoom: 1; }
      #filter-wrapper.col-sidebar .filter-section.top-seller-title-filter .filter-inner ul li a::after {
        content: '';
        display: table;
        clear: both; }
      #filter-wrapper.col-sidebar .filter-section.top-seller-title-filter .filter-inner ul li a .grid-image_link.grid-view-item__link {
        border-width: 1px;
        border-color: #ebebeb;
        border-style: solid;
        background-color: white;
        width: 114px;
        float: left; }
        #filter-wrapper.col-sidebar .filter-section.top-seller-title-filter .filter-inner ul li a .grid-image_link.grid-view-item__link img {
          display: block;
          margin: auto; }
      #filter-wrapper.col-sidebar .filter-section.top-seller-title-filter .filter-inner ul li a .caption {
        width: calc(100% - 114px);
        float: left;
        padding-left: 15px; }
        #filter-wrapper.col-sidebar .filter-section.top-seller-title-filter .filter-inner ul li a .caption .grid-view-item__title {
          color: #076fba;
          font-size: 14px;
          font-weight: normal; }
        #filter-wrapper.col-sidebar .filter-section.top-seller-title-filter .filter-inner ul li a .caption .grid-view-item__meta {
          color: #454545;
          font-size: 14px;
          font-weight: normal;
          color: #9b9b9b; }
          #filter-wrapper.col-sidebar .filter-section.top-seller-title-filter .filter-inner ul li a .caption .grid-view-item__meta span {
            color: #454545;
            font-weight: normal;
            font-size: 14px; }
          #filter-wrapper.col-sidebar .filter-section.top-seller-title-filter .filter-inner ul li a .caption .grid-view-item__meta s {
            font-weight: normal;
            font-size: 14px; }

.filters-toolbar__item .bread-crumb {
  background: #f9f9f9 none repeat scroll 0 0;
  padding: 10px 15px; }
  .filters-toolbar__item .bread-crumb .divider {
    color: #444444;
    margin: auto 15px; }
    @media only screen and (max-width: 767px) {
      .filters-toolbar__item .bread-crumb .divider {
        margin: auto 5px; } }
  .filters-toolbar__item .bread-crumb span:not(.divider) {
    color: #0071bd;
    font-size: 12px; }
  .filters-toolbar__item .bread-crumb a {
    color: #444444;
    font-size: 12px; }

.template-collection #shopify-section-collection-template .display-table-cell {
  vertical-align: top; }
  .template-collection #shopify-section-collection-template .display-table-cell.collection-image {
    width: 270px; }
.template-collection #shopify-section-collection-template .display-table-cell + .display-table-cell {
  padding-left: 20px; }
.template-collection #shopify-section-collection-template .collection-title.title-img {
  font-size: 30px;
  font-family: "Roboto Condensed";
  color: #0071bd;
  font-weight: bold;
  text-transform: uppercase;
  line-height: normal;
  text-align: left;
  margin-top: -4px; }
.template-collection #shopify-section-collection-template .rte {
  font-size: 14px;
  font-family: "Roboto";
  color: #7b7b7b;
  line-height: normal; }
.template-collection .filters-toolbar-wrapper {
  border: 0 none;
  background-color: #f9f9f9;
  margin-top: 25px; }
  .template-collection .filters-toolbar-wrapper .filters-toolbar__item .filters-toolbar__input {
    background-color: transparent; }
  .template-collection .filters-toolbar-wrapper .filters-toolbar__item.text-right label {
    display: inline; }
  .template-collection .filters-toolbar-wrapper .filters-toolbar__item .sort_byWrap {
    display: inline-block;
    line-height: 55px;
    border-right: 1px solid #d8d8d8; }
  .template-collection .filters-toolbar-wrapper .filters-toolbar__item .productViewType.text-left {
    display: inline-block;
    margin-left: 15px;
    border-right: 1px solid #d8d8d8;
    line-height: 55px;
    padding-right: 15px;
    position: relative; }
    @media only screen and (max-width: 990px) {
      .template-collection .filters-toolbar-wrapper .filters-toolbar__item .productViewType.text-left {
        padding-right: 10px; } }
    @media only screen and (min-width: 991px) {
      .template-collection .filters-toolbar-wrapper .filters-toolbar__item .productViewType.text-left:before {
        background-color: #d8d8d8;
        bottom: 0;
        content: "";
        display: block;
        left: 45px;
        position: absolute;
        top: 0;
        width: 1px; } }
    .template-collection .filters-toolbar-wrapper .filters-toolbar__item .productViewType.text-left .viewbtn + .viewbtn {
      margin-left: 30px; }
    .template-collection .filters-toolbar-wrapper .filters-toolbar__item .productViewType.text-left .viewbtn {
      border: 0 none;
      padding: 0;
      width: 25px;
      height: 25px;
      background-image: url(//cdn.shopify.com/s/files/1/2293/0089/t/17/assets/grid_list_icon.png?v=5983206308633059092);
      background-repeat: no-repeat;
      background-color: transparent;
      vertical-align: middle; }
      @media only screen and (max-width: 990px) {
        .template-collection .filters-toolbar-wrapper .filters-toolbar__item .productViewType.text-left .viewbtn {
          display: none; } }
      .template-collection .filters-toolbar-wrapper .filters-toolbar__item .productViewType.text-left .viewbtn.listButton {
        background-position: 0 0; }
        .template-collection .filters-toolbar-wrapper .filters-toolbar__item .productViewType.text-left .viewbtn.listButton.activeList, .template-collection .filters-toolbar-wrapper .filters-toolbar__item .productViewType.text-left .viewbtn.listButton:focus, .template-collection .filters-toolbar-wrapper .filters-toolbar__item .productViewType.text-left .viewbtn.listButton:hover {
          background-position: -25px 0; }
      .template-collection .filters-toolbar-wrapper .filters-toolbar__item .productViewType.text-left .viewbtn.gridButton {
        background-position: 0 -25px; }
        .template-collection .filters-toolbar-wrapper .filters-toolbar__item .productViewType.text-left .viewbtn.gridButton.activeList, .template-collection .filters-toolbar-wrapper .filters-toolbar__item .productViewType.text-left .viewbtn.gridButton:focus, .template-collection .filters-toolbar-wrapper .filters-toolbar__item .productViewType.text-left .viewbtn.gridButton:hover {
          background-position: -25px -25px; }
      .template-collection .filters-toolbar-wrapper .filters-toolbar__item .productViewType.text-left .viewbtn i {
        display: none; }
    .template-collection .filters-toolbar-wrapper .filters-toolbar__item .productViewType.text-left .toggle-filters {
      background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
      border: 0 none;
      margin: auto;
      vertical-align: middle; }
      @media only screen and (min-width: 991px) {
        .template-collection .filters-toolbar-wrapper .filters-toolbar__item .productViewType.text-left .toggle-filters {
          display: none; } }
  .template-collection .filters-toolbar-wrapper .filters-toolbar__item select {
    background-image: url(//cdn.shopify.com/s/files/1/2293/0089/t/17/assets/dropdownArrow.png?v=7269800208316267134); }
  .template-collection .filters-toolbar-wrapper .filters-toolbar__item label[for="paginateBy"] {
    border-right: 1px solid #d8d8d8;
    line-height: 55px;
    display: inline-block;
    vertical-align: middle;
    padding-right: 15px;
    margin: auto; }
    @media only screen and (max-width: 990px) {
      .template-collection .filters-toolbar-wrapper .filters-toolbar__item label[for="paginateBy"] {
        display: none; } }
  .template-collection .filters-toolbar-wrapper .filters-toolbar__item #paginateBy {
    min-width: 110px; }
    @media only screen and (max-width: 990px) {
      .template-collection .filters-toolbar-wrapper .filters-toolbar__item #paginateBy {
        min-width: 70px; } }

.pagination-pageWrap {
  text-align: right;
  background-color: #f9f9f9;
  padding: 0 15px;
  *zoom: 1; }
  .pagination-pageWrap::after {
    content: '';
    display: table;
    clear: both; }
  .pagination-pageWrap .pagination-page {
    display: block;
    float: right;
    *zoom: 1; }
    .pagination-pageWrap .pagination-page::after {
      content: '';
      display: table;
      clear: both; }
    .pagination-pageWrap .pagination-page li {
      display: block;
      float: left; }
      .pagination-pageWrap .pagination-page li span {
        font-size: 14px;
        color: #d9d9d9;
        font-weight: normal;
        padding: 8px;
        display: block; }
      .pagination-pageWrap .pagination-page li a {
        font-size: 14px;
        color: #7b7b7b;
        font-weight: normal;
        padding: 8px;
        display: block; }

.template-page.page-comparison-chart .rte img {
  display: block;
  margin-left: auto;
  margin-right: auto; }
.template-page .logiListWrap {
  *zoom: 1; }
  .template-page .logiListWrap::after {
    content: '';
    display: table;
    clear: both; }
  .template-page .logiListWrap .logiList {
    float: left;
    width: 25%; }
    @media only screen and (max-width: 990px) {
      .template-page .logiListWrap .logiList {
        width: 33.33%; } }
    @media only screen and (max-width: 767px) {
      .template-page .logiListWrap .logiList {
        width: 50%; } }
.template-page .r-tabs {
  border: 1px solid #e3e3e3;
  overflow: hidden; }
  .template-page .r-tabs .r-tabs-nav {
    background-color: #f9f9f9;
    border-bottom: 1px solid #e3e3e3;
    list-style: none;
    padding: 0;
    margin: auto;
    *zoom: 1; }
    .template-page .r-tabs .r-tabs-nav::after {
      content: '';
      display: table;
      clear: both; }
    @media only screen and (max-width: 990px) {
      .template-page .r-tabs .r-tabs-nav {
        display: none; } }
    .template-page .r-tabs .r-tabs-nav .r-tabs-tab {
      list-style: none;
      padding: 0;
      float: left;
      position: relative;
      transition: all 0.3s linear; }
      .template-page .r-tabs .r-tabs-nav .r-tabs-tab .r-tabs-anchor {
        padding: 10px 28px;
        font-size: 16px;
        color: #076fba;
        font-weight: bold;
        text-transform: uppercase;
        display: block;
        transition: all 0.3s linear; }
      .template-page .r-tabs .r-tabs-nav .r-tabs-tab:after {
        background: rgba(0, 0, 0, 0);
        bottom: -1px;
        content: "";
        display: block;
        height: 1px;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        top: auto;
        transition: all 0.3s linear; }
      .template-page .r-tabs .r-tabs-nav .r-tabs-tab.r-tabs-state-active {
        background-color: transform; }
        .template-page .r-tabs .r-tabs-nav .r-tabs-tab.r-tabs-state-active:after {
          bottom: -1px;
          content: "";
          display: block;
          height: 1px;
          left: 0;
          margin: auto;
          position: absolute;
          right: 0;
          top: auto; }
        .template-page .r-tabs .r-tabs-nav .r-tabs-tab.r-tabs-state-active a.r-tabs-anchor {
          transition: all 0.3s linear;
          color: #000; }
  .template-page .r-tabs .r-tabs-accordion-title {
    margin-top: -1px; }
    .template-page .r-tabs .r-tabs-accordion-title .r-tabs-anchor {
      border-top: 1px solid #e3e3e3;
      text-align: left;
      font-size: 16px;
      font-weight: bold;
      display: block;
      padding: 5px 15px;
      color: #076fba; }
      .template-page .r-tabs .r-tabs-accordion-title .r-tabs-anchor .r-tabs-anchor {
        color: #000; }
    @media only screen and (min-width: 991px) {
      .template-page .r-tabs .r-tabs-accordion-title {
        display: none; } }
    .template-page .r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
      color: #076fba; }
  .template-page .r-tabs .r-tabs-panel {
    padding: 30px; }
    .template-page .r-tabs .r-tabs-panel .page-items {
      background: url(//cdn.shopify.com/s/files/1/2293/0089/t/17/assets/top-grd.jpg?v=3977748409973143925) repeat-x scroll left top;
      margin-left: -30px;
      margin-right: -30px;
      padding: 30px 30px 0;
      display: block;
      clear: both;
      display: block;
      *zoom: 1; }
      .template-page .r-tabs .r-tabs-panel .page-items::after {
        content: '';
        display: table;
        clear: both; }
      @media only screen and (min-width: 991px) {
        .template-page .r-tabs .r-tabs-panel .page-items:first-of-type {
          margin-top: -30px; } }
    .template-page .r-tabs .r-tabs-panel h6, .template-page .r-tabs .r-tabs-panel .h6 {
      font-family: Arial,sans-serif,"ProximaNovaRegular";
      font-size: 17px;
      font-weight: 700; }
    @media only screen and (max-width: 990px) {
      .template-page .r-tabs .r-tabs-panel {
        padding: 10px; }
        .template-page .r-tabs .r-tabs-panel ol,
        .template-page .r-tabs .r-tabs-panel ul {
          padding-left: 15px; }
          .template-page .r-tabs .r-tabs-panel ol li,
          .template-page .r-tabs .r-tabs-panel ul li {
            font-size: 13px;
            margin-bottom: 10px; } }
    .template-page .r-tabs .r-tabs-panel:not(.r-tabs-state-active) {
      display: none; }
    .template-page .r-tabs .r-tabs-panel #shopify-product-reviews {
      margin: auto; }
    @media only screen and (min-width: 992px) {
      .template-page .r-tabs .r-tabs-panel [class*="span"] {
        display: block;
        width: 100%;
        float: left; }
      .template-page .r-tabs .r-tabs-panel .span12 {
        width: 100%;
        *width: 99.94680851063829%; }
      .template-page .r-tabs .r-tabs-panel .span11 {
        width: 91.48936170212765%;
        *width: 91.43617021276594%; }
      .template-page .r-tabs .r-tabs-panel .span10 {
        width: 82.97872340425532%;
        *width: 82.92553191489361%; }
      .template-page .r-tabs .r-tabs-panel .span9 {
        width: 74.46808510638297%;
        *width: 74.41489361702126%; }
      .template-page .r-tabs .r-tabs-panel .span8 {
        width: 65.95744680851064%;
        *width: 65.90425531914893%; }
      .template-page .r-tabs .r-tabs-panel .span7 {
        width: 57.44680851063829%;
        *width: 57.39361702127659%; }
      .template-page .r-tabs .r-tabs-panel .span6 {
        width: 48.93617021276595%;
        *width: 48.88297872340425%; }
      .template-page .r-tabs .r-tabs-panel .span5 {
        width: 40.42553191489362%;
        *width: 40.37234042553192%; }
      .template-page .r-tabs .r-tabs-panel .span4 {
        width: 31.914893617021278%;
        *width: 31.861702127659576%; }
      .template-page .r-tabs .r-tabs-panel .span3 {
        width: 23.404255319148934%;
        *width: 23.351063829787233%; }
      .template-page .r-tabs .r-tabs-panel .span2 {
        width: 14.893617021276595%;
        *width: 14.840425531914894%; }
      .template-page .r-tabs .r-tabs-panel .span1 {
        width: 6.382978723404255%;
        *width: 6.329787234042553%; }
      .template-page .r-tabs .r-tabs-panel .mt10 {
        margin-top: 10px; }
      .template-page .r-tabs .r-tabs-panel .mt20 {
        margin-top: 20px; }
      .template-page .r-tabs .r-tabs-panel .mt25 {
        margin-top: 25px; }
      .template-page .r-tabs .r-tabs-panel .ml10 {
        margin-left: 10px; }
      .template-page .r-tabs .r-tabs-panel .ml20 {
        margin-left: 20px; }
      .template-page .r-tabs .r-tabs-panel .upper {
        text-transform: uppercase; }
      .template-page .r-tabs .r-tabs-panel .p40 {
        padding: 40px; }
      .template-page .r-tabs .r-tabs-panel .text-999 {
        color: #999; }
      .template-page .r-tabs .r-tabs-panel .text-28 {
        font-size: 28px; }
      .template-page .r-tabs .r-tabs-panel .btnone {
        border-top: none; }
      .template-page .r-tabs .r-tabs-panel .m0 {
        margin: 0; }
      .template-page .r-tabs .r-tabs-panel .text-333 {
        color: #333; }
      .template-page .r-tabs .r-tabs-panel a.text-333:hover {
        color: #D80546; }
      .template-page .r-tabs .r-tabs-panel .mtb20 {
        margin: 20px 0; }
      .template-page .r-tabs .r-tabs-panel iframe {
        border: none;
        overflow: hidden; }
      .template-page .r-tabs .r-tabs-panel .pb0 {
        padding-bottom: 0; }
      .template-page .r-tabs .r-tabs-panel .pt0 {
        padding-top: 0; }
      .template-page .r-tabs .r-tabs-panel .ptb0 {
        padding-top: 0;
        padding-bottom: 0; }
      .template-page .r-tabs .r-tabs-panel .w60 {
        width: 60px; }
      .template-page .r-tabs .r-tabs-panel .text-orange {
        color: #F37914; }
      .template-page .r-tabs .r-tabs-panel .bold {
        font-weight: bold; }
      .template-page .r-tabs .r-tabs-panel .text-11 {
        font-size: 11px; } }

.template-product .r-tabs {
  border: 0px solid #e3e3e3;
  overflow: hidden; }
  .template-product .r-tabs .r-tabs-nav {
    background-color: #f9f9f9;
    border-bottom: 1px solid #e3e3e3;
    list-style: none;
    padding: 0;
    *zoom: 1; }
    .template-product .r-tabs .r-tabs-nav::after {
      content: '';
      display: table;
      clear: both; }
    @media only screen and (max-width: 990px) {
      .template-product .r-tabs .r-tabs-nav {
        display: none; } }
    .template-product .r-tabs .r-tabs-nav .r-tabs-tab {
      float: left;
      position: relative;
      transition: all 0.3s linear; }
      .template-product .r-tabs .r-tabs-nav .r-tabs-tab .r-tabs-anchor {
        padding: 10px 28px;
        font-size: 16px;
        color: #076fba;
        font-weight: normal;
        text-transform: uppercase;
        display: block;
        transition: all 0.3s linear; }
      .template-product .r-tabs .r-tabs-nav .r-tabs-tab:after {
        background: rgba(0, 0, 0, 0);
        bottom: -1px;
        content: "";
        display: block;
        height: 1px;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        top: auto;
        transition: all 0.3s linear; }
      .template-product .r-tabs .r-tabs-nav .r-tabs-tab.r-tabs-state-active {
        background-color: transform; }
        .template-product .r-tabs .r-tabs-nav .r-tabs-tab.r-tabs-state-active:after {
          bottom: -1px;
          content: "";
          display: block;
          height: 1px;
          left: 0;
          margin: auto;
          position: absolute;
          right: 0;
          top: auto; }
        .template-product .r-tabs .r-tabs-nav .r-tabs-tab.r-tabs-state-active a.r-tabs-anchor {
          transition: all 0.3s linear;
          color: #000; }
  .template-product .r-tabs .r-tabs-accordion-title {
    margin-top: -1px; }
    .template-product .r-tabs .r-tabs-accordion-title .r-tabs-anchor {
      border-top: 1px solid #e3e3e3;
      text-align: left;
      font-size: 16px;
      font-weight: normal;
      display: block;
      padding: 5px 15px;
      color: #076fba; }
      .template-product .r-tabs .r-tabs-accordion-title .r-tabs-anchor .r-tabs-anchor {
        color: #000; }
    @media only screen and (min-width: 991px) {
      .template-product .r-tabs .r-tabs-accordion-title {
        display: none; } }
    .template-product .r-tabs .r-tabs-accordion-title.r-tabs-state-active .r-tabs-anchor {
      color: #076fba; }
  .template-product .r-tabs .r-tabs-panel {
    padding: 30px; }
    .template-product .r-tabs .r-tabs-panel .page-items {
      background: url(//cdn.shopify.com/s/files/1/2293/0089/t/17/assets/top-grd.jpg?v=3977748409973143925) repeat-x scroll left top;
      margin-left: -30px;
      margin-right: -30px;
      padding: 30px 30px 0;
      display: block;
      clear: both;
      display: block;
      *zoom: 1; }
      .template-product .r-tabs .r-tabs-panel .page-items::after {
        content: '';
        display: table;
        clear: both; }
      @media only screen and (min-width: 991px) {
        .template-product .r-tabs .r-tabs-panel .page-items:first-of-type {
          margin-top: -30px; } }
    .template-product .r-tabs .r-tabs-panel h6, .template-product .r-tabs .r-tabs-panel .h6 {
      font-family: Arial,sans-serif,"ProximaNovaRegular";
      font-size: 17px;
      font-weight: 700; }
    @media only screen and (max-width: 990px) {
      .template-product .r-tabs .r-tabs-panel {
        padding: 10px; }
        .template-product .r-tabs .r-tabs-panel ol,
        .template-product .r-tabs .r-tabs-panel ul {
          padding-left: 15px; }
          .template-product .r-tabs .r-tabs-panel ol li,
          .template-product .r-tabs .r-tabs-panel ul li {
            font-size: 13px;
            margin-bottom: 10px; } }
    .template-product .r-tabs .r-tabs-panel:not(.r-tabs-state-active) {
      display: none; }
    .template-product .r-tabs .r-tabs-panel #shopify-product-reviews {
      margin: auto; }
    @media only screen and (min-width: 992px) {
      .template-product .r-tabs .r-tabs-panel [class*="span"] {
        display: block;
        width: 100%;
        float: left; }
      .template-product .r-tabs .r-tabs-panel .span12 {
        width: 100%;
        *width: 99.94680851063829%; }
      .template-product .r-tabs .r-tabs-panel .span11 {
        width: 91.48936170212765%;
        *width: 91.43617021276594%; }
      .template-product .r-tabs .r-tabs-panel .span10 {
        width: 82.97872340425532%;
        *width: 82.92553191489361%; }
      .template-product .r-tabs .r-tabs-panel .span9 {
        width: 74.46808510638297%;
        *width: 74.41489361702126%; }
      .template-product .r-tabs .r-tabs-panel .span8 {
        width: 65.95744680851064%;
        *width: 65.90425531914893%; }
      .template-product .r-tabs .r-tabs-panel .span7 {
        width: 57.44680851063829%;
        *width: 57.39361702127659%; }
      .template-product .r-tabs .r-tabs-panel .span6 {
        width: 48.93617021276595%;
        *width: 48.88297872340425%; }
      .template-product .r-tabs .r-tabs-panel .span5 {
        width: 40.42553191489362%;
        *width: 40.37234042553192%; }
      .template-product .r-tabs .r-tabs-panel .span4 {
        width: 31.914893617021278%;
        *width: 31.861702127659576%; }
      .template-product .r-tabs .r-tabs-panel .span3 {
        width: 23.404255319148934%;
        *width: 23.351063829787233%; }
      .template-product .r-tabs .r-tabs-panel .span2 {
        width: 14.893617021276595%;
        *width: 14.840425531914894%; }
      .template-product .r-tabs .r-tabs-panel .span1 {
        width: 6.382978723404255%;
        *width: 6.329787234042553%; }
      .template-product .r-tabs .r-tabs-panel .mt10 {
        margin-top: 10px; }
      .template-product .r-tabs .r-tabs-panel .mt20 {
        margin-top: 20px; }
      .template-product .r-tabs .r-tabs-panel .mt25 {
        margin-top: 25px; }
      .template-product .r-tabs .r-tabs-panel .ml10 {
        margin-left: 10px; }
      .template-product .r-tabs .r-tabs-panel .ml20 {
        margin-left: 20px; }
      .template-product .r-tabs .r-tabs-panel .upper {
        text-transform: uppercase; }
      .template-product .r-tabs .r-tabs-panel .p40 {
        padding: 40px; }
      .template-product .r-tabs .r-tabs-panel .text-999 {
        color: #999; }
      .template-product .r-tabs .r-tabs-panel .text-28 {
        font-size: 28px; }
      .template-product .r-tabs .r-tabs-panel .btnone {
        border-top: none; }
      .template-product .r-tabs .r-tabs-panel .m0 {
        margin: 0; }
      .template-product .r-tabs .r-tabs-panel .text-333 {
        color: #333; }
      .template-product .r-tabs .r-tabs-panel a.text-333:hover {
        color: #D80546; }
      .template-product .r-tabs .r-tabs-panel .mtb20 {
        margin: 20px 0; }
      .template-product .r-tabs .r-tabs-panel iframe {
        border: none;
        overflow: hidden; }
      .template-product .r-tabs .r-tabs-panel .pb0 {
        padding-bottom: 0; }
      .template-product .r-tabs .r-tabs-panel .pt0 {
        padding-top: 0; }
      .template-product .r-tabs .r-tabs-panel .ptb0 {
        padding-top: 0;
        padding-bottom: 0; }
      .template-product .r-tabs .r-tabs-panel .w60 {
        width: 60px; }
      .template-product .r-tabs .r-tabs-panel .text-orange {
        color: #F37914; }
      .template-product .r-tabs .r-tabs-panel .bold {
        font-weight: bold; }
      .template-product .r-tabs .r-tabs-panel .text-11 {
        font-size: 11px; } }

.review-with-question {
  margin-bottom: 15px; }
  .review-with-question .spr-badge {
    display: inline-block;
    vertical-align: middle; }
  .review-with-question .spr-icon.spr-icon-star {
    color: #f8981a; }
  .review-with-question .spr-icon.spr-icon-star-empty:before {
    content: "\f005";
    font-family: "FontAwesome"; }
  .review-with-question .writeComment {
    background-color: #d80546;
    color: #ffffff;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 15px;
    vertical-align: middle;
    border: 0 none; }

form.contact-form label.required::after {
  content: "(required)";
  margin-left: 5px; }

.page-contact .main-content .section-header h1, .page-contact .main-content .section-header .h1 {
  font-size: 24px;
  text-transform: uppercase; }
.page-contact .main-content .greyBg {
  background-color: #f9f9f9;
  padding: 25px 35px;
  text-align: center; }
  .page-contact .main-content .greyBg h3, .page-contact .main-content .greyBg .h3 {
    font-size: 24px;
    color: #383838;
    font-weight: bold;
    text-transform: uppercase;
    line-height: normal;
    letter-spacing: 1px; }
  .page-contact .main-content .greyBg p {
    font-size: 14px;
    color: #6b6b6b; }
  .page-contact .main-content .greyBg hr {
    border-color: #cacaca; }
  .page-contact .main-content .greyBg ul {
    *zoom: 1;
    margin-left: -15px;
    margin-right: -15px;
    padding: 0; }
    .page-contact .main-content .greyBg ul::after {
      content: '';
      display: table;
      clear: both; }
    .page-contact .main-content .greyBg ul li {
      width: 50%;
      float: left;
      list-style: none;
      display: block;
      padding: 0 15px; }
      @media only screen and (min-width: 480px) {
        .page-contact .main-content .greyBg ul li:nth-child(2n+1) {
          clear: left; } }
      @media only screen and (max-width: 479px) {
        .page-contact .main-content .greyBg ul li {
          width: auto;
          float: none;
          text-align: center; } }
      .page-contact .main-content .greyBg ul li i {
        font-size: 30px;
        font-family: "FontAwesome";
        color: #0b4d8e; }
      .page-contact .main-content .greyBg ul li span {
        font-size: 14px;
        color: #0b4d8e;
        margin: 10px auto;
        display: block; }
      .page-contact .main-content .greyBg ul li a {
        color: #6b6b6b; }
        .page-contact .main-content .greyBg ul li a:hover {
          color: #0b4d8e; }
    .page-contact .main-content .greyBg ul li:nth-of-type(1n+3) {
      margin-top: 25px; }

.blog--list-view > hr {
  margin-bottom: 30px;
  margin-top: 30px; }
.blog--list-view .article__grid-image {
  border: 1px solid #cccccc; }
  .blog--list-view .article__grid-image img {
    width: 100%; }
.blog--list-view .btn.btn--secondary {
  border: 1px solid #acacac;
  color: #acacac;
  display: block;
  font-size: 14px;
  font-weight: normal;
  height: auto;
  letter-spacing: 0;
  padding: 5px 15px;
  text-transform: uppercase;
  transition: all 0.3s linear; }
  .blog--list-view .btn.btn--secondary:hover {
    border-color: #0071bd;
    color: #0071bd; }
.blog--list-view .blog_show_authorWrap {
  margin: auto -15px;
  padding: 0; }
  .blog--list-view .blog_show_authorWrap li {
    list-style: none;
    padding: 0 15px;
    display: inline-block;
    vertical-align: top; }
    .blog--list-view .blog_show_authorWrap li .comments_with_count {
      margin: auto; }
    .blog--list-view .blog_show_authorWrap li .article__date:hover {
      color: #076fba; }
  .blog--list-view .blog_show_authorWrap li + li {
    border-left: 1px solid #acacac; }

.template-page.page-luxury-class .main-content h3, .template-page.page-luxury-class .main-content .h3,
.template-page.page-flow-faucet .main-content h3,
.template-page.page-flow-faucet .main-content .h3,
.template-page.page-accessories .main-content h3,
.template-page.page-accessories .main-content .h3 {
  font-size: 22px;
  margin: auto;
  padding: 0; }
.template-page.page-luxury-class .main-content .tab-cntnt-rw,
.template-page.page-flow-faucet .main-content .tab-cntnt-rw,
.template-page.page-accessories .main-content .tab-cntnt-rw {
  margin-top: 20px; }

.template-page.page-dealer-inquiry #MainContent.main-content .rte > img {
  display: inline-block;
  height: 60px;
  margin-right: 30px;
  vertical-align: top; }

.BannerVideo-sub {
  display: block;
  margin: auto; }

.template-blog #MainContent.main-content .rte ul,
.template-page.page-video-liabrary #MainContent.main-content .rte ul {
  list-style: none;
  margin: auto -15px;
  padding: 0;
  *zoom: 1; }
  .template-blog #MainContent.main-content .rte ul::after,
  .template-page.page-video-liabrary #MainContent.main-content .rte ul::after {
    content: '';
    display: table;
    clear: both; }
  @media only screen and (max-width: 767px) {
    .template-blog #MainContent.main-content .rte ul,
    .template-page.page-video-liabrary #MainContent.main-content .rte ul {
      margin: auto auto; } }
  .template-blog #MainContent.main-content .rte ul li,
  .template-page.page-video-liabrary #MainContent.main-content .rte ul li {
    border-bottom: 1px solid #ccc;
    list-style: none;
    padding: 0 15px;
    width: 100%;
    margin: auto auto 20px;
    *zoom: 1; }
    @media only screen and (max-width: 767px) {
      .template-blog #MainContent.main-content .rte ul li,
      .template-page.page-video-liabrary #MainContent.main-content .rte ul li {
        padding: 0 0 20px; } }
    .template-blog #MainContent.main-content .rte ul li::after,
    .template-page.page-video-liabrary #MainContent.main-content .rte ul li::after {
      content: '';
      display: table;
      clear: both; }
    .template-blog #MainContent.main-content .rte ul li a,
    .template-page.page-video-liabrary #MainContent.main-content .rte ul li a {
      border: 0 none; }
      @media only screen and (min-width: 768px) {
        .template-blog #MainContent.main-content .rte ul li a,
        .template-page.page-video-liabrary #MainContent.main-content .rte ul li a {
          float: left;
          width: 48%; } }
      .template-blog #MainContent.main-content .rte ul li a img,
      .template-page.page-video-liabrary #MainContent.main-content .rte ul li a img {
        display: block;
        margin-left: auto;
        margin-right: auto; }
    @media only screen and (max-width: 767px) {
      .template-blog #MainContent.main-content .rte ul li .bidet-videos,
      .template-page.page-video-liabrary #MainContent.main-content .rte ul li .bidet-videos {
        margin-top: 15px; } }
    @media only screen and (min-width: 768px) {
      .template-blog #MainContent.main-content .rte ul li .bidet-videos,
      .template-page.page-video-liabrary #MainContent.main-content .rte ul li .bidet-videos {
        float: left;
        width: 48%; } }
    @media only screen and (min-width: 991px) {
      .template-blog #MainContent.main-content .rte ul li .bidet-videos,
      .template-page.page-video-liabrary #MainContent.main-content .rte ul li .bidet-videos {
        padding-top: 38px; } }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .template-blog #MainContent.main-content .rte ul li .bidet-videos,
      .template-page.page-video-liabrary #MainContent.main-content .rte ul li .bidet-videos {
        padding-top: 15px;
        padding-bottom: 15px; } }
    .template-blog #MainContent.main-content .rte ul li .bidet-videos a,
    .template-page.page-video-liabrary #MainContent.main-content .rte ul li .bidet-videos a {
      width: auto;
      float: none; }
    .template-blog #MainContent.main-content .rte ul li h4, .template-blog #MainContent.main-content .rte ul li .h4,
    .template-page.page-video-liabrary #MainContent.main-content .rte ul li h4,
    .template-page.page-video-liabrary #MainContent.main-content .rte ul li .h4 {
      font-size: 22px; }

.template-page.page-why-a-bio-bidet #MainContent.main-content .rte ul,
.template-page.page-why-you-should-use-it #MainContent.main-content .rte ul {
  list-style: none;
  margin: auto -15px;
  padding: 0;
  *zoom: 1; }
  .template-page.page-why-a-bio-bidet #MainContent.main-content .rte ul::after,
  .template-page.page-why-you-should-use-it #MainContent.main-content .rte ul::after {
    content: '';
    display: table;
    clear: both; }
  .template-page.page-why-a-bio-bidet #MainContent.main-content .rte ul li,
  .template-page.page-why-you-should-use-it #MainContent.main-content .rte ul li {
    list-style: none;
    padding: 0 15px;
    float: left;
    width: 100%;
    margin: auto auto 20px; }
    @media only screen and (min-width: 991px) {
      .template-page.page-why-a-bio-bidet #MainContent.main-content .rte ul li,
      .template-page.page-why-you-should-use-it #MainContent.main-content .rte ul li {
        width: 33.33%; }
        .template-page.page-why-a-bio-bidet #MainContent.main-content .rte ul li:nth-child(3n+1),
        .template-page.page-why-you-should-use-it #MainContent.main-content .rte ul li:nth-child(3n+1) {
          clear: left; } }
    @media only screen and (min-width: 768px) and (max-width: 990px) {
      .template-page.page-why-a-bio-bidet #MainContent.main-content .rte ul li,
      .template-page.page-why-you-should-use-it #MainContent.main-content .rte ul li {
        width: 50%; }
        .template-page.page-why-a-bio-bidet #MainContent.main-content .rte ul li:nth-child(2n+1),
        .template-page.page-why-you-should-use-it #MainContent.main-content .rte ul li:nth-child(2n+1) {
          clear: left; } }
    .template-page.page-why-a-bio-bidet #MainContent.main-content .rte ul li h4, .template-page.page-why-a-bio-bidet #MainContent.main-content .rte ul li .h4,
    .template-page.page-why-you-should-use-it #MainContent.main-content .rte ul li h4,
    .template-page.page-why-you-should-use-it #MainContent.main-content .rte ul li .h4 {
      font-size: 22px; }

#Collection.ProductList:not(.List) > .list-view-items {
  display: none; }

@media only screen and (min-width: 768px) {
  #Collection.ProductList.List .grid--view-items {
    display: none; } }
@media only screen and (max-width: 767px) {
  #Collection.ProductList.List .list-view-items {
    display: none; } }

.rte ul.needHelp {
  list-style: outside none none;
  margin: auto;
  padding: 0;
  display: block;
  *zoom: 1; }
  .rte ul.needHelp::after {
    content: '';
    display: table;
    clear: both; }
  .rte ul.needHelp li {
    display: inline-block;
    list-style: outside none none;
    text-align: left; }
    @media only screen and (min-width: 768px) {
      .rte ul.needHelp li img,
      .rte ul.needHelp li p {
        display: inline-block;
        vertical-align: middle; } }

.template-search .search .input-group__field.search__input:focus {
  border-color: #000; }

.small_header .site-nav.list--inline > li > a.site-nav__link--main {
  text-transform: uppercase; }

.template-page.page-about-us .main-content > div h4, .template-page.page-about-us .main-content > div .h4 {
  font-size: 25px; }

.blog-posts .section-header h2, .blog-posts .section-header .h2 {
  margin-bottom: 20px; }
.blog-posts .section-header h4, .blog-posts .section-header .h4 {
  margin-bottom: 40px;
  margin-top: 20px; }

.collection-template .collection-title {
  font-family: "Roboto Condensed"; }

.site-footer p strong {
  font-family: "ProximaNovaBold";
  font-weight: normal;
  text-transform: uppercase; }

.mfp-content #filter-wrapper {
  background-color: #fff;
  padding: 15px;
  margin: 15px; }
  .mfp-content #filter-wrapper .mfp-close {
    right: 15px;
    top: 19px; }

.collection-grid .grid__item .collection-grid-item__overlay img {
  transition: all 0.3s linear;
  opacity: 0.3; }
.collection-grid .grid__item:hover .collection-grid-item__overlay img {
  opacity: 1; }

.site-footer .flogoWrap a,
.site-footer .flogoWrap p {
  font-size: 14px; }
.site-footer .flogoWrap li {
  color: #808080;
  font-family: "ProximaNovaRegular"; }

@media only screen and (max-width: 990px) {
  #shopify-section-footer .site-footer__newsletter {
    padding-top: 15px;
    padding-bottom: 20px; }
    #shopify-section-footer .site-footer__newsletter #contact_form .grid__item h6, #shopify-section-footer .site-footer__newsletter #contact_form .grid__item .h6 {
      width: 100%;
      float: none;
      margin: auto;
      text-align: center; }
    #shopify-section-footer .site-footer__newsletter #contact_form .grid__item label {
      float: none;
      margin: auto auto 20px;
      text-align: center; } }
.select2-dropdown {
  border-color: #e8e9eb; }

.product-form.variants-form .select2-container {
  display: block;
  max-width: 100%;
  width: 100% !important;
  margin-bottom: 30px; }
  .product-form.variants-form .select2-container .select2-selection--single {
    height: 44px;
    border-radius: 0;
    border-color: #e8e9eb; }
    .product-form.variants-form .select2-container .select2-selection--single .select2-selection__arrow {
      height: 42px;
      line-height: 44px; }
    .product-form.variants-form .select2-container .select2-selection--single .select2-selection__rendered {
      line-height: 44px; }

body.template-product #horizontalTab .product__description table tr td,
body.template-product #horizontalTab .product__description table tr th {
  border: 0 none;
  padding: 0px 0; }

@media only screen and (max-width: 990px) {
  footer.site-footer .foot-up .flogoWrap {
    margin-bottom: 30px;
    text-align: center; }
    footer.site-footer .foot-up .flogoWrap img.logo-bar__image {
      margin-left: auto;
      margin-right: auto; }

  .template-page.page-contact .main-content .contact-form.form-vertical {
    margin-top: 20px; } }
.videoSlideSection video {
  width: 100%; }

/* Mobile  landscape */
@media only screen and (max-width: 767px) {
  body .page-width {
    width: auto;
    padding-left: 15px;
    padding-right: 15px; }
    body .page-width .site-header__logo {
      margin-bottom: auto; }

  .benefitBox .custom-content .custom__item.small--one-half {
    margin-bottom: auto; }

  .blog-posts .grid--blog .article__grid-image {
    float: none;
    width: auto; }
  .blog-posts .grid--blog .article__grid-meta.article__grid-meta--has-image {
    float: none;
    width: auto;
    padding-left: 0; }

  .shopify-section .meet-our-team .quotes-wrapper {
    background-color: #a3a0b5; }
    .shopify-section .meet-our-team .quotes-wrapper:after {
      display: none; }
    .shopify-section .meet-our-team .quotes-wrapper:before {
      display: none; }

  .slideshow__text-wrap.slideshow__overlay .slideshow__text-content .btn.slideshow__video-control {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    width: 37px; }
    .slideshow__text-wrap.slideshow__overlay .slideshow__text-content .btn.slideshow__video-control span {
      overflow: hidden;
      padding: 0;
      text-indent: -9999px;
      margin-left: auto;
      margin-right: auto;
      width: 24px; }

  .foot-up .linksWrap .grid.grid--uniform > .grid__item .site-footer__title {
    text-align: left; }
  .foot-up .linksWrap .grid.grid--uniform > .grid__item .site-footer__linklist {
    margin-top: 10px; }
  .foot-up .linksWrap .grid.grid--uniform > .grid__item .site-footer__linklist-item {
    padding-left: 0;
    padding-right: 0;
    display: block;
    float: none;
    width: auto;
    margin-left: auto;
    margin-right: auto; }
  .foot-up .linksWrap .grid.grid--uniform > .grid__item:nth-of-type(2n+1) {
    clear: left; }

  .template-page.page-faq .main-content .rte ol,
  .template-page.page-faq .main-content .rte ul, .template-page.page-dealer-inquiry .main-content .rte ol,
  .template-page.page-dealer-inquiry .main-content .rte ul {
    font-size: 13px;
    margin-left: 10px; }
  .template-page.page-faq .main-content .section-header.text-center, .template-page.page-dealer-inquiry .main-content .section-header.text-center {
    margin-top: auto;
    margin-bottom: auto; }
    .template-page.page-faq .main-content .section-header.text-center h1, .template-page.page-faq .main-content .section-header.text-center .h1, .template-page.page-dealer-inquiry .main-content .section-header.text-center h1, .template-page.page-dealer-inquiry .main-content .section-header.text-center .h1 {
      margin-bottom: auto;
      font-size: 28px; } }
/* End of max 767px */
.template-page.page-waiver #contact_form.contact-form .note.form-success {
  border-color: #008000;
  color: #008000; }
.template-page.page-waiver #contact_form.contact-form .rte .inputnameWrap input {
  border-style: none none solid;
  display: inline-block;
  width: 250px;
  color: #333333;
  font-family: "ProximaNovaRegular";
  font-size: 14px;
  font-weight: normal; }
  @media only screen and (max-width: 767px) {
    .template-page.page-waiver #contact_form.contact-form .rte .inputnameWrap input {
      width: 150px; } }
.template-page.page-waiver #contact_form.contact-form ul {
  display: block;
  margin: auto;
  padding: 0; }
  .template-page.page-waiver #contact_form.contact-form ul li {
    list-style: outside none none;
    margin: auto auto 20px;
    padding: 0;
    *zoom: 1; }
    .template-page.page-waiver #contact_form.contact-form ul li::after {
      content: '';
      display: table;
      clear: both; }
    @media only screen and (max-width: 767px) {
      .template-page.page-waiver #contact_form.contact-form ul li {
        margin: auto auto 10px; } }
    .template-page.page-waiver #contact_form.contact-form ul li label {
      float: left;
      font-size: 16px;
      padding: 8px 0;
      width: 180px; }
      @media only screen and (max-width: 767px) {
        .template-page.page-waiver #contact_form.contact-form ul li label {
          float: none;
          width: auto; } }
    .template-page.page-waiver #contact_form.contact-form ul li select,
    .template-page.page-waiver #contact_form.contact-form ul li input[type="email"],
    .template-page.page-waiver #contact_form.contact-form ul li input[type="date"],
    .template-page.page-waiver #contact_form.contact-form ul li input[type="tel"],
    .template-page.page-waiver #contact_form.contact-form ul li input[type="text"] {
      width: 66.66%;
      float: left;
      border-color: #d7d7d7;
      color: #333333;
      font-family: "ProximaNovaRegular";
      font-size: 14px;
      font-weight: normal;
      padding-left: 10px; }
      .template-page.page-waiver #contact_form.contact-form ul li select#ContactFormbidetModel,
      .template-page.page-waiver #contact_form.contact-form ul li input[type="email"]#ContactFormbidetModel,
      .template-page.page-waiver #contact_form.contact-form ul li input[type="date"]#ContactFormbidetModel,
      .template-page.page-waiver #contact_form.contact-form ul li input[type="tel"]#ContactFormbidetModel,
      .template-page.page-waiver #contact_form.contact-form ul li input[type="text"]#ContactFormbidetModel {
        background-image: url(//cdn.shopify.com/s/files/1/2293/0089/t/17/assets/dropdownArrow.png?v=7269800208316267134); }
      @media only screen and (max-width: 767px) {
        .template-page.page-waiver #contact_form.contact-form ul li select,
        .template-page.page-waiver #contact_form.contact-form ul li input[type="email"],
        .template-page.page-waiver #contact_form.contact-form ul li input[type="date"],
        .template-page.page-waiver #contact_form.contact-form ul li input[type="tel"],
        .template-page.page-waiver #contact_form.contact-form ul li input[type="text"] {
          float: none;
          width: 100%;
          margin-bottom: auto; } }

.rte ul.faQSidebar {
  margin: auto;
  padding: 0; }
  .rte ul.faQSidebar li {
    margin: auto auto 15px;
    padding: 15px;
    list-style: none; }
    .rte ul.faQSidebar li:nth-of-type(1) {
      background-color: #0084c4; }
    .rte ul.faQSidebar li:nth-of-type(2) {
      background-color: #ee6312; }
    .rte ul.faQSidebar li:nth-of-type(3) {
      background-color: #f1b000; }
    .rte ul.faQSidebar li p {
      text-transform: uppercase;
      color: #fff;
      margin: auto; }
    .rte ul.faQSidebar li a {
      color: #fff; }

.filter-section.top-seller-title-filter {
  margin-top: 50px; }

.freeShippingWrap {
  margin-bottom: 20px; }
  .freeShippingWrap .freeShipping {
    color: #0068b8; }

.template-product .amazonExclusive {
  text-align: left;
  margin-bottom: 5px; }

.list-view-item .amazonExclusive img {
  height: 25px;
  margin-top: 10px; }

.product_cont .amazonExclusive {
  left: 0px;
  position: absolute;
  top: 25px; }

.template-page .main-content .meetTheDogs ul {
  margin: auto;
  padding: 0;
  *zoom: 1; }
  .template-page .main-content .meetTheDogs ul::after {
    content: '';
    display: table;
    clear: both; }
  .template-page .main-content .meetTheDogs ul li {
    margin: auto auto 30px;
    padding: 0;
    list-style: none;
    float: left;
    *zoom: 1; }
    .template-page .main-content .meetTheDogs ul li::after {
      content: '';
      display: table;
      clear: both; }
    .template-page .main-content .meetTheDogs ul li .teaminfoWrap {
      *zoom: 1; }
      .template-page .main-content .meetTheDogs ul li .teaminfoWrap::after {
        content: '';
        display: table;
        clear: both; }
    .template-page .main-content .meetTheDogs ul li .img {
      float: left; }
    .template-page .main-content .meetTheDogs ul li .teamInfo {
      float: left; }
      .template-page .main-content .meetTheDogs ul li .teamInfo h4, .template-page .main-content .meetTheDogs ul li .teamInfo .h4 {
        color: #000000;
        font-weight: 300;
        margin-bottom: auto; }
      .template-page .main-content .meetTheDogs ul li .teamInfo p:first-child {
        margin-bottom: auto; }
      .template-page .main-content .meetTheDogs ul li .teamInfo p em {
        display: block;
        font-style: normal;
        color: #000; }
    @media only screen and (min-width: 1200px) {
      .template-page .main-content .meetTheDogs ul li:nth-of-type(1) {
        width: 50%; }
      .template-page .main-content .meetTheDogs ul li:nth-of-type(2) {
        width: 50%; }
      .template-page .main-content .meetTheDogs ul li:nth-of-type(3) {
        width: 33.33%;
        clear: both; }
      .template-page .main-content .meetTheDogs ul li:nth-of-type(4) {
        width: 33.33%; }
        .template-page .main-content .meetTheDogs ul li:nth-of-type(4) .img {
          float: right; }
        .template-page .main-content .meetTheDogs ul li:nth-of-type(4) .teaminfoWrap {
          width: 240px;
          margin-top: 34px; }
      .template-page .main-content .meetTheDogs ul li:nth-of-type(5) {
        width: 33.33%; }
        .template-page .main-content .meetTheDogs ul li:nth-of-type(5) .img {
          float: right;
          margin-left: -50px;
          margin-right: 40px;
          margin-top: 50px; } }
    @media only screen and (min-width: 768px) and (max-width: 1199px) {
      .template-page .main-content .meetTheDogs ul li:nth-of-type(1) {
        width: 50%; }
      .template-page .main-content .meetTheDogs ul li:nth-of-type(2) {
        width: 50%; }
      .template-page .main-content .meetTheDogs ul li:nth-of-type(3) {
        width: 50%; }
      .template-page .main-content .meetTheDogs ul li:nth-of-type(4) {
        width: 50%; }
      .template-page .main-content .meetTheDogs ul li:nth-of-type(5) {
        width: 100%; }
        .template-page .main-content .meetTheDogs ul li:nth-of-type(5) .teaminfoWrap {
          width: 370px;
          margin: auto; }
          .template-page .main-content .meetTheDogs ul li:nth-of-type(5) .teaminfoWrap .img {
            float: right;
            margin-left: -40px;
            margin-right: 40px;
            margin-top: 40px; }
      .template-page .main-content .meetTheDogs ul li img {
        float: left; } }

@media only screen and (max-width: 767px) {
  .template-page .main-content .meetTheDogs ul li {
    float: left;
    width: 50%; }
    .template-page .main-content .meetTheDogs ul li:nth-of-type(2n+1) {
      clear: left; }
    .template-page .main-content .meetTheDogs ul li:nth-of-type(5) {
      width: 100%; }
    .template-page .main-content .meetTheDogs ul li .img {
      float: none; }
      .template-page .main-content .meetTheDogs ul li .img img {
        display: block;
        margin-left: auto;
        margin-right: auto; }
    .template-page .main-content .meetTheDogs ul li .teamInfo {
      float: none;
      text-align: center; } }
.template-index .video-liabrary-content ul {
  margin: auto -15px;
  padding: 0;
  text-align: center; }
  .template-index .video-liabrary-content ul li {
    margin: auto;
    padding: 0 15px;
    list-style: none;
    text-align: left; }
    .template-index .video-liabrary-content ul li img {
      width: 100%; }
.template-index .video-liabrary-content .btn.btn--link {
  background: #eeeeee none repeat scroll 0 0;
  border-radius: 50%;
  color: #000000; }
  @media only screen and (min-width: 991px) {
    .template-index .video-liabrary-content .btn.btn--link.next {
      bottom: auto;
      height: 40px;
      margin: auto;
      position: absolute;
      right: -20px;
      top: 16%;
      width: 40px;
      left: auto; }
    .template-index .video-liabrary-content .btn.btn--link.prev {
      bottom: auto;
      height: 40px;
      margin: auto;
      position: absolute;
      left: -20px;
      top: 16%;
      width: 40px;
      right: auto; }
    .template-index .video-liabrary-content .btn.btn--link p {
      color: #3d4246;
      font-family: "Roboto Condensed","HelveticaNeue","Helvetica Neue",sans-serif;
      font-size: 16px;
      line-height: 1.5; } }

.globalDealerInquiry {
  margin-top: 30px; }
  .globalDealerInquiry .contact-form.form-vertical #contact_form select {
    background-image: url(//cdn.shopify.com/s/files/1/2293/0089/t/17/assets/dropdownArrow.png?v=7269800208316267134);
    color: #000000;
    font-family: "Roboto Condensed","HelveticaNeue","Helvetica Neue",sans-serif;
    font-size: 16px;
    line-height: 1.5; }
    .globalDealerInquiry .contact-form.form-vertical #contact_form select option {
      color: #000000; }

.ProductList#Collection {
  overflow: hidden; }

.product__description {
  color: #333333;
  font: 12px/1.4 Arial,sans-serif; }
  .product__description h2, .product__description .h2 {
    font-weight: 400;
    color: #d80546;
    letter-spacing: 0px;
    text-transform: none;
    font: 20px/1.4 Arial,sans-serif; }
  .product__description .redHead {
    font-size: 20px;
    font-weight: 400;
    color: #d80546;
    letter-spacing: 0px;
    text-transform: none; }
  .product__description p, .product__description h1, .product__description .h1, .product__description .h1, .product__description h2, .product__description .h2, .product__description .h2, .product__description h3, .product__description .h3, .product__description .h3, .product__description h4, .product__description .h4, .product__description .h4, .product__description h5, .product__description .h5, .product__description .h5, .product__description h6, .product__description .h6, .product__description .h6 {
    margin-bottom: 10px; }
  .product__description .divider {
    border-top: 1px solid #cccccc;
    display: block;
    clear: both;
    margin: 0;
    *zoom: 1; }
    .product__description .divider::after {
      content: '';
      display: table;
      clear: both; }
  .product__description .manualsList {
    list-style: outside none none;
    margin: auto 0;
    padding: 0;
    width: 50%; }
    .product__description .manualsList li {
      *zoom: 1; }
      .product__description .manualsList li::after {
        content: '';
        display: table;
        clear: both; }
      .product__description .manualsList li a {
        float: right; }
      .product__description .manualsList li p {
        float: left; }
  .product__description h4, .product__description .h4 {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 10px;
    font-family: Arial,sans-serif; }
  .product__description table tr th {
    font: 12px/1.4 Arial,sans-serif; }
    .product__description table tr th blockquote {
      font: 12px/1.4 Arial,sans-serif;
      text-align: left;
      padding-left: 40px;
      padding-right: 40px; }
  .product__description table tr td {
    font: 12px/1.4 Arial,sans-serif; }
    .product__description table tr td blockquote {
      font: 12px/1.4 Arial,sans-serif;
      text-align: left;
      padding-left: 40px;
      padding-right: 40px; }
    .product__description table tr td ul {
      padding-left: 40px; }
      .product__description table tr td ul li {
        list-style-type: none;
        text-decoration: none; }

.banner-boxs .thumbInfo {
  padding: 15px;
  position: relative;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3); }
  .banner-boxs .thumbInfo .btn {
    padding: 5px 11px;
    height: auto;
    line-height: normal; }
  .banner-boxs .thumbInfo .thumbInfoOveraly {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: auto;
    display: block;
    z-index: 0;
    opacity: 0.5;
    transition: all 0.3s linear; }
  .banner-boxs .thumbInfo .btn.btn--secondary {
    z-index: 1;
    position: relative;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3); }
  .banner-boxs .thumbInfo .rte-setting {
    position: relative;
    z-index: 1;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3); }
  .banner-boxs .thumbInfo h4, .banner-boxs .thumbInfo .h4 {
    position: relative;
    z-index: 1;
    text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3); }
  .banner-boxs .thumbInfo .divTag {
    display: block; }

@media only screen and (min-width: 992px) {
  .product__description table {
    margin-left: 45px; } }
@media only screen and (max-width: 991px) {
  .template-product .r-tabs .r-tabs-panel {
    padding: 0 10px 10px; }
    .template-product .r-tabs .r-tabs-panel iframe {
      max-width: 100%; }
    .template-product .r-tabs .r-tabs-panel p {
      float: none !important; }
    .template-product .r-tabs .r-tabs-panel img {
      float: none !important;
      margin-left: auto !important;
      margin-right: auto !important;
      display: block; }
    .template-product .r-tabs .r-tabs-panel img[src$="pdf_1.jpg"] {
      float: none !important;
      margin-left: 0 !important;
      margin-right: auto !important;
      display: block; }

  .template-product .r-tabs .r-tabs-panel ol.grid.grid--no-gutters.grid--table,
  .template-product .r-tabs .r-tabs-panel ul.grid.grid--no-gutters.grid--table {
    padding-left: 0; }
    .template-product .r-tabs .r-tabs-panel ol.grid.grid--no-gutters.grid--table li.grid__item.medium-up--one-half,
    .template-product .r-tabs .r-tabs-panel ul.grid.grid--no-gutters.grid--table li.grid__item.medium-up--one-half {
      display: block;
      float: none;
      width: 100%; } }
.template-product .bv-cv2-cleanslate .bv-core-container-21 .bv-content-placeholder .bv-write-review-label {
  color: white !important;
  font-size: 13px !important;
  line-height: 19.5px !important;
  font-family: "Arial", sans-serif !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-variant: normal !important;
  text-decoration: none !important;
  text-transform: none !important;
  text-shadow: none !important;
  background-color: #d80546 !important;
  display: inline-block !important;
  vertical-align: top !important;
  padding: 10px !important;
  margin: auto !important;
  text-transform: uppercase !important;
  float: right !important; }
  .template-product .bv-cv2-cleanslate .bv-core-container-21 .bv-content-placeholder .bv-write-review-label:hover {
    background-color: #d80546 !important; }
  @media only screen and (max-width: 767px) {
    .template-product .bv-cv2-cleanslate .bv-core-container-21 .bv-content-placeholder .bv-write-review-label {
      display: block !important;
      float: none !important;
      font-size: 12px !important;
      line-height: normal !important;
      margin-bottom: 15px !important;
      margin-top: 15px !important;
      padding: 8px 0 !important;
      text-align: center !important; } }

body.template-page.page-open-rma .required:after {
  display: none; }
body.template-page.page-open-rma .contact-form.form-vertical #contact_form label {
  line-height: 41px; }
body.template-page.page-open-rma .note.form-success {
  border-color: #008000;
  color: #008000; }

.small_header #AccessibleNav .fa.fa-comment-o {
  margin-left: 10px;
  margin-right: 5px; }

.template-page .r-tabs .r-tabs-panel .page-items h2, .template-page .r-tabs .r-tabs-panel .page-items .h2 {
  white-space: nowrap; }

.animated:not(.animationLoad) {
  opacity: 0; }

.page-dwqa-ask-questions p.note.form-success {
  border-color: green;
  background: green;
  color: white; }

.site-footer {
  *zoom: 1; }
  .site-footer::after {
    content: '';
    display: table;
    clear: both; }
  .site-footer .foot-up {
    *zoom: 1; }
    .site-footer .foot-up::after {
      content: '';
      display: table;
      clear: both; }

.product-form__cart-submit {
  width: auto;
  display: inline-block;
  padding: 2px 15px 4px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 20px;
  color: #333;
  text-align: center;
  text-indent: 0;
  text-transform: uppercase;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  vertical-align: middle;
  cursor: pointer;
  font-weight: normal;
  background-color: #F5F5F5;
  background-image: -moz-linear-gradient(top, white, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, white, #e6e6e6);
  background-image: -o-linear-gradient(top, white, #e6e6e6);
  background-image: linear-gradient(to bottom, white, #e6e6e6);
  background-repeat: repeat-x;
  border: 1px solid #CCC;
  border-color: #E6E6E6 #E6E6E6 #BFBFBF;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border-bottom-color: #B3B3B3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  background: #3aa5db;
  color: #fff;
  text-shadow: none;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzNhYTVkYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwZDg5YzkiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #3aa5db 0%, #0d89c9 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3aa5db), color-stop(100%, #0d89c9));
  background: -webkit-linear-gradient(top, #3aa5db 0%, #0d89c9 100%);
  background: -o-linear-gradient(top, #3aa5db 0%, #0d89c9 100%);
  background: -ms-linear-gradient(top, #3aa5db 0%, #0d89c9 100%);
  background: linear-gradient(to bottom, #3aa5db 0%, #0d89c9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3aa5db', endColorstr='#0d89c9',GradientType=0 ); }

.btn-blue:hover {
  background: #2a9ed8;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzJhOWVkOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwYzgxYmMiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #2a9ed8 0%, #0c81bc 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2a9ed8), color-stop(100%, #0c81bc));
  background: -webkit-linear-gradient(top, #2a9ed8 0%, #0c81bc 100%);
  background: -o-linear-gradient(top, #2a9ed8 0%, #0c81bc 100%);
  background: -ms-linear-gradient(top, #2a9ed8 0%, #0c81bc 100%);
  background: linear-gradient(to bottom, #2a9ed8 0%, #0c81bc 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2a9ed8', endColorstr='#0c81bc',GradientType=0 ); }
  .btn-blue:hover:hover {
    background: #ffffff;
    text-decoration: none;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlN2U3ZTciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, white 0%, #e7e7e7 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #e7e7e7));
    background: -webkit-linear-gradient(top, white 0%, #e7e7e7 100%);
    background: -o-linear-gradient(top, white 0%, #e7e7e7 100%);
    background: -ms-linear-gradient(top, white 0%, #e7e7e7 100%);
    background: linear-gradient(to bottom, white 0%, #e7e7e7 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e7e7e7',GradientType=0 ); }
  .btn-blue:hover:active {
    outline: 0;
    -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); }

.pImg {
  display: block;
  margin-left: 15px;
  margin-right: auto;
  margin: 15px; }

.bread-crumb .social-sharing {
  float: right; }
  @media only screen and (max-width: 767px) {
    .bread-crumb .social-sharing {
      display: none; } }
  .bread-crumb .social-sharing a.btn.btn--share.btn--secondary {
    background: transparent none repeat scroll 0 0;
    margin: auto; }

.product__description img {
  display: block;
  margin: auto;
  width: 100%; }
.product__description .grid .grid__item img {
  width: autoshipo; }

.product__description > hr {
  margin: auto; }

.product__description img[src*="pdf"] {
  margin-left: 0;
  width: auto; }

.product__description .grid--no-gutters .grid__item {
  vertical-align: top; }

#player {
  position: relative; }
  #player .videoPoster {
    width: 100%;
    display: block; }
  #player #controls {
    bottom: 20px;
    display: block;
    left: 10px;
    margin: auto;
    padding: 0;
    position: absolute;
    top: auto; }
    #player #controls button {
      background-color: transparent;
      border: 1px solid #ccc;
      border-radius: 50%;
      color: #fff;
      display: inline-blo0ck;
      font-size: 12px;
      height: 44px;
      margin: auto 5px;
      text-transform: uppercase;
      vertical-align: top;
      width: 44px; }

.template-page.page-waiver #contact_form.contact-form .errors ul li {
  margin-bottom: auto; }
.template-page.page-waiver #contact_form.contact-form .errors ul li + li {
  margin-top: 20px; }

.video-gallery a h4, .video-gallery a .h4 {
  font-weight: normal; }
.video-gallery a p {
  font-weight: normal; }

.slideshow-wrapper .slideshow .slick-prev {
  transform: translate(0px, 0px); }
  .slideshow-wrapper .slideshow .slick-prev:before {
    color: #c8c8c8;
    content: "\f104";
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 56px;
    transition: all 0.3s linear; }
  .slideshow-wrapper .slideshow .slick-prev:hover:before {
    color: #000; }
.slideshow-wrapper .slideshow .slick-next {
  transform: translate(0px, 0px); }
  .slideshow-wrapper .slideshow .slick-next:before {
    content: "\f105";
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 56px;
    transition: all 0.3s linear;
    color: #c8c8c8; }
  .slideshow-wrapper .slideshow .slick-next:hover:before {
    color: #000; }

.grid--view-clear {
  border-color: #000;
  clear: both; }

.rte h2, .rte .h2, .rte .h2 {
  color: #d80546;
  font: 20px/1.4 Arial,sans-serif;
  letter-spacing: 0;
  text-transform: none; }

.slick-slide img.videoPoster.small--hide {
  display: block !important;
  width: 100%;
  width: auto;
  height: 100%;
  object-fit: cover; }

@media only screen and (min-width: 768px) {
  .slick-slide img.videoPoster.medium-up--hide {
    display: none !important;
    width: 100%; } }
@media only screen and (max-width: 767px) {
  .slick-slide img.videoPoster.small--hide {
    display: none !important;
    width: 100%; }

  .slick-slide img.videoPoster.medium-up--hide {
    display: block !important;
    width: 100%; } }
#shopify-section-blog-articles-template.shopify-section ul li a {
  border: 0 none;
  color: #229cec;
  font-size: 15px;
  font-weight: normal;
  text-decoration: none; }

#Collection .grid.grid--view-items > .grid__item {
  margin-bottom: 60px; }

.benefitBox hr {
  margin-bottom: 60px; }

.benefitBox h6, .benefitBox .h6 {
  font-weight: normal; }

.page-toilet-types-sizes .main-content .rte__table-wrapper table td {
  color: #2b2b2c;
  font-family: "ProximaNovaRegular";
  font-size: 13px;
  font-weight: normal !important;
  line-height: 1.42857 !important; }

/*============================================================================
  #Newsletter Popup
==============================================================================*/
#newsletter-popup {
  background-repeat: no-repeat;
  background-position: right;
  background-size: 540px auto;
  background-color: #ffffff;
  max-width: 600px;
  width: 96%;
  margin: auto; }
  @media only screen and (min-width: 991px) {
    #newsletter-popup {
      padding: 15 px; } }
  @media only screen and (max-width: 990px) {
    #newsletter-popup {
      padding: 15px 15px 15px; }
      #newsletter-popup .popup_bg {
        display: none; } }
  #newsletter-popup .newsletter-popup-box {
    margin: auto auto auto;
    padding: 10px 10px 10px;
    text-align: center;
    position: relative; }
    @media only screen and (max-width: 767px) {
      #newsletter-popup .newsletter-popup-box {
        padding: 0px; } }
  #newsletter-popup .mfp-close-btn-in #newsletter-popup .mfp-close {
    color: #333;
    background-color: #fff;
    opacity: 0; }
  #newsletter-popup ul {
    list-style: disc inside; }
  #newsletter-popup ul#sm-icons li {
    margin-right: 20px; }
  #newsletter-popup #sm-icons li a {
    width: 30px;
    height: 30px; }
  #newsletter-popup h2, #newsletter-popup .h2 {
    color: #fe8005;
    background: #fff none repeat scroll 0 0;
    display: block;
    font-size: 60px;
    left: 50%;
    line-height: 50px;
    margin: auto;
    padding: 10px;
    position: absolute;
    right: auto;
    text-align: center;
    top: 0;
    transform: translate(-50%, -45px); }
    #newsletter-popup h2 span, #newsletter-popup .h2 span {
      display: block;
      font-size: 17px;
      line-height: 24px; }
  #newsletter-popup h3, #newsletter-popup .h3 {
    color: #00254a;
    font-size: 58px;
    font-weight: bold;
    line-height: 58px;
    text-transform: uppercase; }
    @media only screen and (max-width: 767px) {
      #newsletter-popup h3, #newsletter-popup .h3 {
        font-size: 35px;
        line-height: 38px;
        margin-bottom: 10px; } }
  #newsletter-popup p {
    font-family: "Roboto Condensed";
    font-size: 28px;
    font-weight: 100 !important;
    line-height: 28px;
    text-align: center; }
  #newsletter-popup .socialBox {
    display: table; }
  #newsletter-popup.mailChimp-popup {
    display: none; }
  #newsletter-popup .input-group-field {
    width: 100%;
    margin-bottom: 20px; }

.mfp-wrap #newsletter-popup.mailChimp-popup {
  display: block;
  position: relative; }

#check-resident,
#resident-popup {
  position: relative;
  background: #FFF;
  padding: 0px;
  width: auto;
  max-width: 720px;
  margin: 0px auto; }
  #check-resident .resident-popup-box,
  #resident-popup .resident-popup-box {
    margin: 0px auto 0; }
    #check-resident .resident-popup-box p,
    #resident-popup .resident-popup-box p {
      font-size: 15px; }

#resident-popup {
  max-width: none; }
