/*============================================================================
  NexGeek | 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 =======================================
    - 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 ================ $svg-select-icon: //cdn.shopify.com/s/files/1/0247/2135/8893/t/2/assets/ico-select.svg?v=142110272591889422351563163485; */
/*================ Drawers ================*/
/*================ Hero ================*/
/*================ Hero Slider ================*/
/*================ Typography ================*/
/*================ Gift Cards ================*/
/*================ Z-index ================*/
/*================ VENDOR ====================================
  Slick Slider 1.6.0
==============================================================*/
/*================ 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: #eeeeee url(//cdn.shopify.com/s/files/1/0247/2135/8893/t/2/assets/ajax-loader.gif?v=41356863302472015721563163473) center center no-repeat; }

/* Arrows */
.slick-prev, .slick-next {
  position: absolute;
  top: 50%;
  z-index: 9;
  height: 30px;
  line-height: 28px;
  width: 30px;
  text-align: center;
  font-size: 0px;
  padding: 0;
  background: #fff;
  border: none;
  outline: 0 none;
  cursor: pointer;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -ms-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }
  .slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before, .slick-next:before {
    font-family: "FontAwesome";
    font-size: 25px;
    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: "\f104"; }
    [dir="rtl"] .slick-prev:before {
      content: "\f105"; }

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

.slick-slider .slick-arrow {
  opacity: 0.5; }
.slick-slider:hover .slick-arrow {
  opacity: 0.5; }
  .slick-slider:hover .slick-arrow:hover {
    opacity: 1; }

/* 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: 0;
      font-size: 0;
      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
 * ===========================================================*/
*, *::before, *::after {
  box-sizing: border-box; }

html {
  overflow-x: hidden; }

body {
  margin: 0;
  padding: 0; }

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

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

a {
  background-color: transparent; }

a, a:before, a:after {
  -ms-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

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;
  outline: none; }

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

.mb0 {
  margin-bottom: 0 !important; }

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, img {
  outline: none !important;
  border: 0; }

a, button, [role="button"], input, label, select, textarea {
  touch-action: manipulation; }

/* ===========================================================
   Grid
* ===========================================================*/
/* ===========================================================
   Grid Setup
 * ===========================================================*/
.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: 766px) {
    .grid {
      margin-left: -15px; } }

.grid__item {
  float: left;
  padding-left: 30px;
  width: 100%; }
  @media only screen and (max-width: 766px) {
    .grid__item {
      padding-left: 15px; } }
  .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%; }

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

/* Sevenths */
.one-seventh {
  width: 14.28571%; }

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

/* Nineths */
.one-nineth {
  width: 11.11111%; }

/* 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 (min-width: 767px) {
  /* Whole */
  .medium-up--one-whole {
    width: 100%; }

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

  /* Sevenths */
  .medium-up--one-seventh {
    width: 14.28571%; }

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

  /* Nineths */
  .medium-up--one-nineth {
    width: 11.11111%; }

  /* 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--one-seventh:nth-child(7n+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: 999px) {
  /* Whole */
  .large-up--one-whole {
    width: 100%; }

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

  /* Sevenths */
  .large-up--one-seventh {
    width: 14.28571%; }

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

  /* Nineths */
  .large-up--one-nineth {
    width: 11.11111%; }

  /* 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--one-seventh:nth-child(7n+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: 1200px) {
  /* Whole */
  .widescreen--one-whole {
    width: 100%; }

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

  /* Sevenths */
  .widescreen--one-seventh {
    width: 14.28571%; }

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

  /* Nineths */
  .widescreen--one-nineth {
    width: 11.11111%; }

  /* 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--one-seventh:nth-child(7n+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; } }
@media only screen and (min-width: 999px) and (max-width: 1199px) {
  /* Whole */
  .large--one-whole {
    width: 100%; }

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

  /* Sevenths */
  .large--one-seventh {
    width: 14.28571%; }

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

  /* Nineths */
  .large--one-nineth {
    width: 11.11111%; }

  /* 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--one-seventh:nth-child(7n+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 (min-width: 767px) and (max-width: 998px) {
  /* Whole */
  .medium--one-whole {
    width: 100%; }

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

  /* Sevenths */
  .medium--one-seventh {
    width: 14.28571%; }

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

  /* Nineths */
  .medium--one-nineth {
    width: 11.11111%; }

  /* 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--one-seventh:nth-child(7n+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: 766px) {
  /* Whole */
  .small--one-whole {
    width: 100%; }

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

  /* Sevenths */
  .small--one-seventh {
    width: 14.28571%; }

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

  /* Nineths */
  .small--one-nineth {
    width: 11.11111%; }

  /* 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--one-seventh:nth-child(7n+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 (max-width: 639px) {
  /* Whole */
  .xsmall--one-whole {
    width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Sevenths */
  .xsmall--one-seventh {
    width: 14.28571%; }

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

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

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

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

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

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

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

  /* Nineths */
  .xsmall--one-nineth {
    width: 11.11111%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /* Sevenths */
  .mobile--one-seventh {
    width: 14.28571%; }

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

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

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

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

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

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

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

  /* Nineths */
  .mobile--one-nineth {
    width: 11.11111%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.clear {
  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: black;
  background-color: white;
  padding: 10px;
  opacity: 1;
  z-index: 10000;
  transition: none; }

/* ===========================================================
   Basic Styles
 * ===========================================================*/
.page-width {
  *zoom: 1;
  max-width: 1200px;
  margin: 0 auto; }
  .page-width::after {
    content: '';
    display: table;
    clear: both; }

.main-content {
  display: block; }

.section-header {
  margin-bottom: 20px; }
  @media only screen and (min-width: 767px) {
    .section-header {
      margin-bottom: 35px; } }
  .section-header p {
    margin-bottom: 20px;
    font-size: 14px; }

blockquote {
  font-size: 1.38462em;
  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: 15px; }
  blockquote p + cite {
    margin-top: 15px; }
  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 {
  color: #555555;
  font-size: 13px;
  font-family: "Roboto", "Calibri", "Calibri", sans-serif;
  line-height: 1.5;
  background-color: white; }

input, textarea, button, select {
  font-size: 13px;
  font-family: "Roboto", "Calibri", "Calibri", sans-serif;
  color: black;
  line-height: 1.5; }

@media only screen and (max-width: 998px) {
  input, textarea, select, button {
    font-size: 14px; } }
.page-header {
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-size: 20px; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin: 0 0 10px;
  font-family: "Roboto", "Calibri", "Calibri", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-wrap: break-word;
  color: black; }
  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.69231em;
  text-transform: none;
  letter-spacing: 0; }
  @media only screen and (max-width: 766px) {
    h1, .h1 {
      font-size: 2.46154em; } }

h2, .h2 {
  font-size: 1.53846em;
  text-transform: uppercase;
  letter-spacing: 0.05em; }
  @media only screen and (max-width: 766px) {
    h2, .h2 {
      font-size: 1.15385em; } }

h3, .h3 {
  font-size: 1.30769em;
  text-transform: none;
  text-transform: uppercase; }
  @media only screen and (max-width: 766px) {
    h3, .h3 {
      font-size: 1.15385em; } }

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

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

h6, .h6 {
  font-size: 0.84615em; }
  @media only screen and (max-width: 766px) {
    h6, .h6 {
      font-size: 0.92308em; } }

.rte {
  color: #555555;
  margin-bottom: 20px; }
  .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: 30px;
    margin-bottom: 15px; }
    .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: 11.11111px; }
  .rte-setting:last-child {
    margin-bottom: 0; }

p {
  margin: 0 0 11.11111px; }
  p:last-child {
    margin-bottom: 0; }

li {
  list-style: none; }

.fine-print {
  font-size: 1.07692em;
  font-style: italic; }

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

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

.address {
  margin-bottom: 30px; }

.mega-title {
  margin-bottom: 10px;
  font-size: 1.84615em;
  font-weight: 700; }
  @media only screen and (min-width: 767px) {
    .mega-title {
      font-size: 2.15385em; } }
  @media only screen and (max-width: 766px) {
    .mega-title {
      font-size: 1.84615em; } }

.mega-title--large {
  font-size: 1.84615em; }
  @media only screen and (min-width: 767px) {
    .mega-title--large {
      font-size: 2.15385em; } }
  @media only screen and (min-width: 999px) {
    .mega-title--large {
      font-size: 2.38462em; } }
  @media only screen and (min-width: 1200px) {
    .mega-title--large {
      font-size: 3.53846em; } }

@media only screen and (min-width: 767px) {
  .mega-subtitle {
    font-size: 17px;
    margin: 0 auto; } }
.mega-subtitle p {
  color: inherit; }

.mega-subtitle--large {
  font-size: 1.30769em;
  font-weight: #400; }
  @media only screen and (min-width: 767px) {
    .mega-subtitle--large {
      font-size: 1.46154em; } }

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

.no-svg .icon__fallback-text {
  position: static !important;
  overflow: inherit;
  clip: none;
  height: auto;
  width: auto;
  margin: 0; }

.payment-icons {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: default; }
  .payment-icons li + li {
    margin-left: 5px; }

.social-icons .icon {
  width: 23px;
  height: 23px; }
  @media only screen and (min-width: 767px) {
    .social-icons .icon {
      width: 25px;
      height: 25px; } }
  .social-icons .icon.icon--wide {
    width: 40px; }

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

ol {
  list-style: decimal; }

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

/* ===========================================================
   Rich Text Editor
 * ===========================================================*/
.rte img {
  height: auto; }
.rte table {
  table-layout: fixed; }
.rte ul, .rte ol {
  margin: 0 0 10px 20px; }
  .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:not(.btn) {
  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; }

a {
  color: #075159;
  text-decoration: none;
  outline: none; }
  a:hover {
    color: #ef8700;
    opacity: 0.8;
    outline: none; }
  a.classic-link {
    text-decoration: underline; }

.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 8px;
  background-color: #ef8700;
  color: white;
  font-family: "Roboto", "Calibri", "Calibri", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: normal;
  white-space: normal;
  -ms-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  @media only screen and (min-width: 767px) {
    .btn {
      padding: 8px 18px 8px; } }
  .btn:hover, .btn:focus {
    color: white;
    background-color: #ff9f23;
    opacity: 1; }
  .btn[disabled] {
    cursor: default;
    opacity: 0.5;
    background-color: #ef8700;
    color: white; }

.btn--secondary {
  color: white;
  background-color: #075159;
  border: 1px solid white; }
  .btn--secondary:hover, .btn--secondary:focus {
    color: white;
    background-color: #0b7c88; }

.btn--small {
  font-family: "Roboto", "Calibri", "Calibri", sans-serif;
  padding: 8px 10px;
  font-size: 0.92308em;
  line-height: 1;
  height: 28px; }

@media only screen and (max-width: 766px) {
  .btn--small-wide {
    padding-left: 50px;
    padding-right: 50px; } }
.btn--link {
  background-color: transparent;
  border: 0;
  margin: 0;
  color: black;
  text-align: left;
  outline: none !important;
  box-shadow: none !important; }
  .btn--link:hover, .btn--link:focus {
    opacity: 0.8; }
  .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; }

.text-link {
  display: inline;
  border: 0 none;
  background: none;
  padding: 0;
  margin: 0; }

.return-link-wrapper {
  margin: 45px 0; }
  @media only screen and (max-width: 766px) {
    .return-link-wrapper {
      margin-bottom: -36px; }
      .return-link-wrapper .btn {
        display: block; } }

table {
  margin-bottom: 15px; }

th {
  font-family: "Roboto", "Calibri", "Calibri", 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: 766px) {
  .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: 10px 15px;
    border: 0;
    margin: 0; }
  .responsive-table td::before {
    content: attr(data-label);
    float: left;
    text-align: center;
    font-size: 12px;
    padding-right: 10px; }

  .responsive-table__row + .responsive-table__row,
  tfoot > .responsive-table__row:first-child {
    position: relative;
    margin-top: 10px;
    padding-top: 30px; }
    .responsive-table__row + .responsive-table__row::after,
    tfoot > .responsive-table__row:first-child::after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 15px;
      right: 15px;
      border-bottom: 1px solid #e8e9eb; } }
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%; }

form {
  margin: 0; }

fieldset {
  border: 1px solid #e8e9eb;
  margin: 0 0 30px;
  padding: 15px; }

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: 766px) {
    label {
      font-size: 0.84615em; } }
  [type="radio"] + label, [type="checkbox"] + label {
    display: inline-block;
    margin-bottom: 0; }
  label[for] {
    cursor: pointer; }

input, select, button {
  height: 36px; }

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

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/0247/2135/8893/t/2/assets/arrow-select.png?v=43366159481630673951563163473);
  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: 767px) {
    select {
      padding-top: 6px;
      padding-left: 18px;
      padding-bottom: 8px; } }
  .ie9 select {
    padding-right: 10px;
    background-image: none; }

optgroup {
  font-weight: 700; }

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

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

.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: #333333;
  opacity: 0.6; }

::-moz-placeholder {
  color: #333333;
  opacity: 0.6; }

:-ms-input-placeholder {
  color: #333333;
  opacity: 0.6; }

::-ms-input-placeholder {
  color: #333333;
  opacity: 1; }

.label--error {
  color: #d20000; }

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

.form-vertical input, .form-vertical select, .form-vertical textarea {
  display: block;
  width: 100%;
  margin-bottom: 11.11111px; }
.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; }

.note,
.form--success,
.errors {
  padding: 8px;
  margin: 0 0 15px; }
  @media only screen and (min-width: 767px) {
    .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-group {
  position: relative;
  display: table;
  width: 100%;
  border-collapse: separate; }
  .form-vertical .input-group {
    margin-bottom: 30px; }

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

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

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

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

.page-width {
  padding-left: 30px;
  padding-right: 30px; }
  @media only screen and (max-width: 998px) {
    .page-width {
      padding-left: 20px;
      padding-right: 20px; } }
  @media only screen and (max-width: 766px) {
    .page-width {
      padding-left: 15px;
      padding-right: 15px; } }

.page-container {
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
  position: relative;
  overflow: hidden; }

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

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

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

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

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

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

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

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

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

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

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

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

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

.collection-grid-item {
  position: relative;
  margin-bottom: 15px; }
  .collection-grid-item .img {
    position: relative;
    overflow: hidden; }
    .collection-grid-item .img img {
      display: block;
      width: 100%;
      -ms-transition: all 0.5s ease-out;
      -webkit-transition: all 0.5s ease-out;
      transition: all 0.5s ease-out; }
    .collection-grid-item .img .btn {
      opacity: 0;
      max-width: 90%;
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
  .collection-grid-item .collection-grid-item__title {
    color: #000;
    font-size: 15px;
    font-weight: 600;
    margin: 10px 0 0;
    transition: 0.1s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
  .collection-grid-item .counts {
    color: #000;
    font-size: 11px;
    text-transform: uppercase;
    opacity: 0.7;
    display: block;
    margin-top: 5px; }
  .collection-grid-item:hover .img img {
    opacity: 0.5;
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  .collection-grid-item:hover .img .btn {
    opacity: 1; }
  @media only screen and (min-width: 767px) {
    .collection-grid-item {
      margin-bottom: 30px; } }

@media only screen and (min-width: 999px) {
  .collection-grid .large-up--one-quarter:nth-child(4n+1),
  .collection-grid .large-up--one-fifth:nth-child(5n+1),
  .collection-grid .large-up--one-sixth:nth-child(6n+1) {
    clear: both; } }
@media only screen and (max-width: 998px) {
  .collection-grid .medium-up--one-third:nth-child(3n+1),
  .collection-grid .medium-up--one-quarter:nth-child(4n+1),
  .collection-grid .medium-up--one-fifth:nth-child(5n+1) {
    clear: both; } }
@media only screen and (max-width: 766px) {
  .collection-grid .medium-up--one-third:nth-child(3n+1),
  .collection-grid .medium-up--one-quarter:nth-child(4n+1),
  .collection-grid .medium-up--one-fifth:nth-child(5n+1) {
    clear: none; }

  .collection-grid .small--one-half:nth-child(2n+1),
  .collection-grid .small--one-third:nth-child(3n+1) {
    clear: both; } }
.collection-bg {
  background: #fff;
  padding-top: 20px;
  padding-bottom: 20px; }
  .collection-bg h3, .collection-bg .h3, .collection-bg p {
    color: #333; }
  @media only screen and (min-width: 767px) {
    .collection-bg {
      padding-top: 35px;
      padding-bottom: 35px; } }

.collection-box {
  clear: both; }
  .collection-box .slick-prev {
    left: 0; }
  .collection-box .slick-next {
    right: -15px; }
  .collection-box .collection-grid-box {
    padding: 0 25px; }
    .collection-box .collection-grid-box .grid {
      margin-left: -15px; }
      .collection-box .collection-grid-box .grid .grid__item {
        padding-left: 15px; }
      .collection-box .collection-grid-box .grid.listing .grid__item {
        margin-bottom: 15px; }
    .collection-box .collection-grid-box .collection-grid-item {
      position: relative;
      overflow: hidden;
      margin-bottom: 0; }
      .collection-box .collection-grid-box .collection-grid-item .btn {
        display: none; }
      .collection-box .collection-grid-box .collection-grid-item .collection-grid-item__title-wrapper {
        padding: 10px;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.7); }
        .collection-box .collection-grid-box .collection-grid-item .collection-grid-item__title-wrapper .collection-grid-item__title {
          color: #fff;
          margin: 0; }
        .collection-box .collection-grid-box .collection-grid-item .collection-grid-item__title-wrapper .counts {
          color: #fff;
          margin-top: 3px; }
      .collection-box .collection-grid-box .collection-grid-item:hover .collection-grid-item__link {
        opacity: 1; }
      .collection-box .collection-grid-box .collection-grid-item:hover .collection-grid-item__title-wrapper {
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -ms-transition: all 0.5s ease-out;
        -webkit-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out; }
  .collection-box.style-1 .collection-grid-item .collection-grid-item__title-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    -ms-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    transform: translateY(100%); }
  .collection-box.style-1 .collection-grid-item:hover .img img {
    opacity: 1; }
  .collection-box.style-1 .collection-grid-item:hover .collection-grid-item__title-wrapper {
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -ms-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out; }
  .collection-box.style-3 .collection-grid-item__title-wrapper {
    text-align: center; }

.product-labels {
  font-family: "Calibri","Arial";
  text-align: right;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 4; }
  .product-labels .lbl {
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    display: inline-block;
    padding: 2px 7px; }
  .product-labels .on-sale {
    background-color: #ff708e; }
  .product-labels .pr-label1 {
    background-color: #83cc52; }
  .product-labels .pr-label2 {
    background-color: #f5a100; }
  .product-labels .pr-label3 {
    background-color: #39cdf2; }
  .product-labels.radius .lbl {
    border-radius: 3px; }
  .product-labels.rounded br {
    display: none; }
  .product-labels.rounded .lbl {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    white-space: initial;
    word-break: break-all;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center;
    height: 50px;
    width: 50px; }
  .product-labels.rectangular .lbl {
    border-radius: 0; }

.wishlist-btn {
  display: block; }
  .wishlist-btn .wishlist {
    color: white;
    display: inline-block;
    background-color: #075159;
    font-size: 20px;
    padding: 0;
    margin-bottom: 5px;
    line-height: 38px;
    display: block;
    width: 40px;
    height: 40px;
    text-align: center; }
    .wishlist-btn .wishlist .fa-spin {
      display: none; }
    .wishlist-btn .wishlist:hover .fa {
      opacity: 0.8; }
  .wishlist-btn .added-wishlist {
    display: none; }

.grid--view-items {
  margin-bottom: -20px; }
  @media only screen and (max-width: 766px) {
    .grid--view-items {
      margin-bottom: 0; } }

.grid-view-item {
  margin: 0 0 20px;
  text-align: center;
  -ms-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }
  .grid-view-item .grid-view_image {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative; }
    .grid-view-item .grid-view_image .grid-view-item__link {
      display: block;
      white-space: nowrap; }
      .grid-view-item .grid-view_image .grid-view-item__link:after {
        content: "";
        display: inline-block;
        width: 0px;
        height: 100%;
        vertical-align: middle; }
      .grid-view-item .grid-view_image .grid-view-item__link.showVariantImg img {
        opacity: 0; }
      .grid-view-item .grid-view_image .grid-view-item__link.showVariantImg .variantImg {
        visibility: visible;
        opacity: 1; }
    .grid-view-item .grid-view_image .grid-view-item__image {
      display: inline-block;
      width: 100%;
      vertical-align: middle;
      -ms-transition: all ease-out 0.5s;
      -webkit-transition: all ease-out 0.5s;
      transition: all ease-out 0.5s; }
      .grid-view-item--sold-out .grid-view-item .grid-view_image .grid-view-item__image {
        opacity: 0.5; }
    .grid-view-item .grid-view_image .loading {
      display: none; }
    .grid-view-item .grid-view_image .hover, .grid-view-item .grid-view_image .variantImg {
      visibility: hidden;
      opacity: 0;
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: 2;
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    .grid-view-item .grid-view_image:hover .hover, .grid-view-item .grid-view_image:hover .variantImg {
      opacity: 1;
      visibility: visible; }
    @media only screen and (max-width: 998px) {
      .grid-view-item .grid-view_image .hover {
        display: none; } }
  .grid-view-item .button-set {
    position: absolute;
    top: 0px;
    left: -50px;
    z-index: 4;
    -ms-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
    .grid-view-item .button-set .btn-link {
      color: white;
      background-color: #075159;
      font-size: 16px;
      padding: 0;
      margin-bottom: 5px;
      line-height: 30px;
      display: block;
      width: 30px;
      height: 30px; }
      .grid-view-item .button-set .btn-link:hover {
        opacity: 1; }
        .grid-view-item .button-set .btn-link:hover .fa {
          opacity: 0.8; }
      .grid-view-item .button-set .btn-link.added-wishlist {
        display: none; }
    @media only screen and (max-width: 998px) {
      .grid-view-item .button-set {
        left: 0; } }
    @media only screen and (max-width: 766px) {
      .grid-view-item .button-set .btn-link {
        font-size: 18px;
        line-height: 33px;
        width: 34px;
        height: 34px; }
      .grid-view-item .button-set .quick-view {
        display: none; } }
  .grid-view-item .sold-out {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5); }
    .grid-view-item .sold-out span {
      font-size: 14px;
      letter-spacing: 0.2px;
      text-transform: uppercase;
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
  .grid-view-item .details {
    padding: 0 10px 10px; }
  .grid-view-item .grid-view-item__title {
    color: #000;
    font-size: 13px;
    display: block;
    height: 30px; }
  .grid-view-item .grid-view-item__meta {
    margin-top: 8px; }
  .grid-view-item .product-price__price {
    font-size: 14px;
    display: inline-block; }
  .grid-view-item .product-price__sale {
    padding-right: 0; }
  .grid-view-item .grid-view-item__vendor {
    margin-top: 5px; }
  .grid-view-item .showLoading .loading {
    color: #000;
    font-size: 24px;
    display: block;
    text-shadow: 1px 1px 1px #fff;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 50; }
  .grid-view-item .swatches li {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    display: inline-block;
    height: 11px !important;
    width: 11px !important;
    margin: 8px 1px 0;
    background-size: cover;
    cursor: pointer; }
  .grid-view-item .swatches .white {
    border: 1px solid #ddd; }
  .grid-view-item:hover {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); }
    .grid-view-item:hover .button-set {
      left: 0; }

.list-view-item {
  display: table;
  table-layout: fixed;
  margin-bottom: 15px;
  padding-bottom: 15px;
  width: 100%;
  border-bottom: 1px solid #e8e9eb;
  position: relative; }
  .list-view-item:last-child {
    margin-bottom: 0; }

.list-view-item__image-column {
  display: table-cell;
  vertical-align: middle;
  width: 230px; }
  @media only screen and (max-width: 766px) {
    .list-view-item__image-column {
      width: 85px; } }
  .list-view-item__image-column .list-view-item__image-wrapper {
    position: relative;
    margin-right: 20px;
    overflow: hidden; }
    @media only screen and (max-width: 766px) {
      .list-view-item__image-column .list-view-item__image-wrapper {
        margin-right: 10px; } }
  .list-view-item__image-column .sold-out {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5); }
    .list-view-item__image-column .sold-out span {
      font-size: 14px;
      letter-spacing: 0.2px;
      text-transform: uppercase;
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
  .list-view-item__image-column .button-set {
    position: absolute;
    top: 5px;
    left: -50px;
    z-index: 4;
    -ms-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
    .list-view-item__image-column .button-set .btn-link {
      color: white;
      background-color: #075159;
      text-align: center;
      font-size: 16px;
      padding: 0;
      margin-bottom: 5px;
      line-height: 35px;
      display: block;
      width: 36px;
      height: 36px; }
      .list-view-item__image-column .button-set .btn-link:hover {
        opacity: 0.9; }
      .list-view-item__image-column .button-set .btn-link.added-wishlist {
        display: none; }
    @media only screen and (max-width: 998px) {
      .list-view-item__image-column .button-set {
        left: 0; } }
    @media only screen and (max-width: 766px) {
      .list-view-item__image-column .button-set .btn-link {
        font-size: 18px;
        line-height: 33px;
        width: 34px;
        height: 34px; }
      .list-view-item__image-column .button-set .quick-view {
        display: none; } }

.list-view-item:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); }
  .list-view-item:hover .button-set {
    opacity: 1;
    left: 0; }

.list-view-item__title-column {
  display: table-cell;
  vertical-align: middle; }
  .list-view-item__title-column .list-view-item__title {
    color: #000;
    font-size: 1.15385em;
    font-weight: 700; }
    @media only screen and (max-width: 766px) {
      .list-view-item__title-column .list-view-item__title {
        font-size: 0.92308em; } }
  .list-view-item__title-column .product-review {
    margin: 5px 0 7px; }
  .list-view-item__title-column .list-view-item__meta {
    margin: 10px 0; }
  .list-view-item__title-column .product-price__price {
    font-size: 16px;
    font-weight: 600;
    display: inline-block; }
  .list-view-item__title-column .product-price__sale {
    padding-right: 0; }

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

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

.list-view-item__price-column {
  display: table-cell;
  text-align: right;
  vertical-align: middle;
  width: 20%;
  font-size: 1.07692em; }
  @media only screen and (max-width: 766px) {
    .list-view-item__price-column {
      font-size: 0.92308em; } }
  .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: #ff6c00; }
  @media only screen and (max-width: 766px) {
    .list-view-item__price--reg {
      display: block; } }

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

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

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

.index-section--flush + .index-section--flush {
  margin-top: -40px; }

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

@media only screen and (max-width: 766px) {
  .index-section--featured-product:first-child {
    margin-top: -12px; } }
.placeholder-svg {
  display: block;
  fill: rgba(85, 85, 85, 0.35);
  background-color: rgba(85, 85, 85, 0.1);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(85, 85, 85, 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
 * ===========================================================*/
.template-password {
  height: 100vh; }

.password-page {
  display: table;
  height: 100%;
  width: 100%;
  background-color: white; }
  .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 {
  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: 15px; }

.password-message {
  max-width: 500px;
  margin: 45px auto 15px; }

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

.password__title {
  margin-bottom: 45px; }

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

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

h1.product-single__title, .product-single__title.h1 {
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  padding-right: 60px;
  margin-bottom: 15px;
  letter-spacing: 0.02px; }
  @media only screen and (max-width: 998px) {
    h1.product-single__title, .product-single__title.h1 {
      font-size: 18px; } }

.product-single__meta .spr-badge {
  margin-bottom: 10px; }

p.product-single__price {
  font-size: 2em;
  margin-bottom: 10px; }
  @media only screen and (max-width: 766px) {
    p.product-single__price {
      display: block;
      font-size: 1.46154em; } }

.product-form {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end;
  width: auto;
  margin: 0 -5px -10px; }

.product-form__item {
  -webkit-flex: 1 1 200px;
  -moz-flex: 1 1 200px;
  -ms-flex: 1 1 200px;
  flex: 1 1 200px;
  margin-bottom: 10px;
  padding: 5px; }
  .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__input {
  display: block;
  width: 100%; }

.product-single__description {
  margin-top: 20px; }
  .product-single__description ul {
    text-align: left; }

.hidedropdown .selector-wrapper {
  display: none; }

.product-form .swatch {
  margin-bottom: 20px; }
  .product-form .swatch label {
    display: block;
    text-transform: capitalize;
    font-weight: 500; }
  .product-form .swatch .swatch-element {
    display: inline-block;
    margin-right: 4px; }
    .product-form .swatch .swatch-element.soldout {
      opacity: 0.3; }
  .product-form .swatch .swatchInput {
    display: none; }
    .product-form .swatch .swatchInput + .swatchLbl {
      color: #333;
      font-size: 12px;
      font-weight: 400;
      text-transform: capitalize;
      display: inline-block;
      margin: 0;
      line-height: 27px;
      height: 28px;
      background-color: #f9f9f9;
      border-radius: 0;
      overflow: hidden;
      text-align: center;
      -ms-transition: all 0.5s ease-in-out;
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      padding: 0 10px;
      border: 1px solid #eee; }
      .product-form .swatch .swatchInput + .swatchLbl.color {
        width: 26px;
        padding: 0;
        height: 26px; }
    .product-form .swatch .swatchInput:checked + .swatchLbl {
      border: 1px solid #bbb;
      box-shadow: 0 0 0 1px #bbb; }
  .product-form .swatch .swatch-element.soldout .swatchLbl:hover {
    opacity: 1; }
  .product-form .swatch .product-form__item {
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 0; }

.product-form-product-template label {
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em; }

.product-single__photo {
  min-height: 1px; }
  .product-single__photo.lightbox {
    cursor: pointer; }

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

.thumbnails-wrapper {
  padding-top: 10px;
  text-align: center; }
  .thumbnails-wrapper .product-single__thumbnails {
    margin-left: -10px; }
  .thumbnails-wrapper .product-single__thumbnails-item {
    display: inline-block;
    float: none;
    margin-left: -4px;
    padding-left: 10px;
    vertical-align: top; }
  .thumbnails-wrapper.thumbnails-slider--active .product-single__thumbnails-item {
    float: left;
    display: none;
    margin: 0; }
    .thumbnails-wrapper.thumbnails-slider--active .product-single__thumbnails-item.slick-slide {
      display: block; }
  .thumbnails-wrapper .product-single__thumbnail {
    opacity: 0.6;
    -ms-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
    .thumbnails-wrapper .product-single__thumbnail.active-thumb {
      opacity: 1; }
  .thumbnails-wrapper .slick-prev {
    left: 0; }
  .thumbnails-wrapper .slick-next {
    right: 0; }

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

.zoomImg {
  background-color: white; }

.qtyField {
  display: table; }
  .qtyField > a, .qtyField > span, .qtyField input {
    display: table-cell;
    line-height: normal;
    text-align: center;
    padding: 3px 6px;
    border: 1px solid #f5f5f5; }
  .qtyField a {
    background-color: #f5f5f5;
    color: #000; }
    .qtyField a:hover {
      background-color: #ddd; }
  .qtyField .qtyBtn {
    line-height: 24px; }
    .qtyField .qtyBtn svg {
      width: 10px; }
  .qtyField .qtyBtn, .qtyField .qty {
    padding: 10px 6px;
    width: 42px;
    height: 42px;
    border-radius: 0;
    float: left; }
  .qtyField .qtyBtn .icon {
    height: 10px;
    width: 10px;
    color: #000; }

.product-template__container .product-single__photos, .product-template__container .product-single__meta {
  margin-bottom: 35px;
  position: relative; }
.product-template__container s.product-price__price {
  font-size: 19px;
  vertical-align: text-bottom; }
.product-template__container .product-nav {
  position: absolute;
  right: 0;
  top: 0; }
  .product-template__container .product-nav .fa {
    vertical-align: middle;
    font-size: 20px; }
  .product-template__container .product-nav .prev, .product-template__container .product-nav .next {
    font-size: 18px;
    display: block;
    line-height: 22px;
    text-align: center;
    height: 20px;
    width: 20px;
    padding: 0;
    color: #000; }
  .product-template__container .product-nav .prev {
    float: left; }
  .product-template__container .product-nav .next {
    float: right; }
.product-template__container .product-action {
  clear: both;
  padding: 10px 0 20px;
  position: relative; }
  .product-template__container .product-action .product-form__item--quantity {
    float: left;
    margin-right: 10px; }
  .product-template__container .product-action .product-form__item--submit {
    width: auto;
    overflow: hidden;
    padding-right: 50px; }
    .product-template__container .product-action .product-form__item--submit .product-form__cart-submit {
      height: 40px;
      width: 100%;
      vertical-align: top; }
    .product-template__container .product-action .product-form__item--submit .wishlist-btn {
      position: absolute;
      top: 10px;
      right: 0; }
  @media only screen and (max-width: 479px) {
    .product-template__container .product-action .product-form__item--quantity {
      margin-bottom: 10px; }
    .product-template__container .product-action .product-form__item--submit {
      clear: both;
      padding: 0; } }
.product-template__container .section-header {
  margin-bottom: 40px; }
.product-template__container .product-single__meta .spr-badge-caption {
  display: inline-block;
  font-size: 12px;
  padding-left: 5px; }
.product-template__container .swatch {
  width: 100%; }
.product-template__container .product-style-2 {
  text-align: center; }
  .product-template__container .product-style-2 h1.product-single__title, .product-template__container .product-style-2 .product-single__title.h1 {
    padding: 0 35px;
    font-size: 22px; }
  .product-template__container .product-style-2 .product-info p span {
    position: static;
    padding-left: 5px; }
  .product-template__container .product-style-2 .product-form__item {
    float: none;
    display: inline-block;
    vertical-align: top; }
  .product-template__container .product-style-2 .hidedropdown .selector-wrapper {
    display: none; }
  .product-template__container .product-style-2 .wrapCountdown {
    margin: 0 auto 20px; }
    .product-template__container .product-style-2 .wrapCountdown #countdown {
      text-align: center; }
.product-template__container .social-sharing {
  width: 100%;
  display: inline-block; }

.product-info {
  margin-bottom: 20px; }
  .product-info p {
    margin-bottom: 4px;
    position: relative;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase; }
    .product-info p span {
      left: 120px;
      position: absolute;
      font-weight: 400;
      text-transform: capitalize; }
      .product-info p span.instock {
        color: #447900; }
      .product-info p span.outstock {
        color: #e06900; }

.prod-large-img {
  position: relative;
  z-index: 0; }
  .prod-large-img .pimg-loading {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    background: url(//cdn.shopify.com/s/files/1/0247/2135/8893/t/2/assets/ajax-loader.gif?v=41356863302472015721563163473) no-repeat 50% 50% rgba(255, 255, 255, 0.8); }
  .prod-large-img .popup-video {
    opacity: 0.7;
    position: absolute;
    right: 25px;
    bottom: 10px; }
    .prod-large-img .popup-video:hover {
      opacity: 1; }

.fa.mobile {
  display: none; }

.fa.desktop {
  display: block; }

.wrapCountdown {
  display: table;
  text-align: center;
  margin-bottom: 20px;
  position: relative; }
  .wrapCountdown:before {
    position: absolute;
    content: "";
    left: 3px;
    right: 3px;
    top: 3px;
    bottom: 3px; }
  .wrapCountdown .cntlbl {
    display: table-cell;
    vertical-align: middle;
    color: #db2121;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 16px;
    padding-right: 15px; }
  .wrapCountdown #countdown {
    display: table-cell;
    text-align: left; }
  .wrapCountdown #countdown > span {
    text-align: center;
    color: #000;
    margin-right: 8px;
    min-width: 60px;
    background: #eeeeee;
    padding: 5px;
    border: 1px solid #dddddd;
    display: inline-block;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600; }
    .wrapCountdown #countdown > span span {
      display: block;
      font-size: 11px;
      text-transform: uppercase;
      font-weight: 400; }
  @media only screen and (max-width: 1199px) {
    .wrapCountdown .cntlbl {
      display: block;
      text-align: left; }
    .wrapCountdown #countdown {
      display: block; } }

#quantity_message {
  letter-spacing: 0.5px;
  color: #db2121;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px; }

.safecheckout {
  margin-bottom: 15px; }

.productglobaltext {
  margin-bottom: 15px;
  font-size: 13px;
  line-height: 24px; }
  .productglobaltext ul {
    padding-left: 10px; }
    .productglobaltext ul li {
      font-size: 13px;
      line-height: 24px;
      list-style-type: square; }

.sub-heading {
  text-align: center;
  max-width: 500px;
  margin: 0 auto; }

.template-product .tabs-listing .tab-container {
  padding: 30px 0 20px;
  text-align: left;
  margin-bottom: 50px; }
.template-product .tabs-listing .product-tabs {
  width: 100%; }
  .template-product .tabs-listing .product-tabs li {
    float: none;
    display: inline-block;
    position: relative; }
  .template-product .tabs-listing .product-tabs a {
    position: relative;
    margin: 0 5px;
    letter-spacing: 1px;
    display: block;
    border: none;
    padding: 5px 25px;
    background: #eeeeee;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 0;
    outline: none;
    color: #000000; }
    .template-product .tabs-listing .product-tabs a:hover {
      text-decoration: none;
      background: #000000;
      color: #eee; }
@media only screen and (max-width: 766px) {
  .template-product .tabs-listing .tab-container {
    padding: 0; }
  .template-product .tabs-listing .tab-content {
    padding: 15px 0; } }

.template-product .product-tabs li.active a,
.template-product .product-tabs li.active a:focus {
  text-decoration: none;
  border: none;
  background: #000000;
  color: #eee;
  opacity: 1; }

.template-product .product-tabs li.active a:before {
  content: "";
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-top-color: #000000;
  position: absolute;
  bottom: -14px;
  left: 50%;
  margin-left: -7px; }

.product-description ul li, .product-single__description ul li {
  position: relative;
  padding-left: 20px;
  list-style: none; }
  .product-description ul li:before, .product-single__description ul li:before {
    content: "\f00c";
    position: absolute;
    left: 0;
    font-family: "FontAwesome";
    color: #f5a100;
    text-align: left; }

.spr-header-title {
  display: none; }

.spr-container {
  padding: 0 !important;
  border: 0 !important; }
  .spr-container .spr-review {
    position: relative;
    padding-bottom: 10px; }
  .spr-container .spr-review-footer {
    position: absolute;
    top: 24px;
    right: 0; }

.spr-form-title {
  font-weight: 400;
  letter-spacing: 1px; }

.spr-form-label {
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase; }

.spr-summary-actions-newreview {
  background: #ef8700;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 10px 8px 30px;
  ext-transform: uppercase;
  position: relative; }
  .spr-summary-actions-newreview:before {
    content: "\f040";
    position: absolute;
    left: 10px;
    font-family: "FontAwesome","Calibri"; }
  .spr-summary-actions-newreview:hover, .spr-summary-actions-newreview:focus {
    opacity: 1;
    color: #fff; }

.spr-review-header-byline {
  font-style: normal !important;
  opacity: 0.7 !important; }
  .spr-review-header-byline strong {
    font-weight: 400 !important; }

#products-related-products {
  margin-bottom: 20px; }

.template-collection .collection-header {
  margin-bottom: 15px; }
.template-collection .main-col.right {
  float: right; }

.catBanners {
  margin-bottom: 25px; }
  .catBanners .slideshow > .slideshow__slide:not(:first-child) {
    display: none; }

.collection-title {
  color: #000000;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 700; }
  @media only screen and (min-width: 767px) {
    .collection-title {
      font-size: 18px; } }

.collection-description {
  margin-bottom: 15px; }
  @media only screen and (min-width: 767px) {
    .collection-description {
      margin-bottom: 20px;
      padding-bottom: 15px; } }

.sidebar {
  margin-top: 0;
  -ms-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out; }
  .sidebar .closeFilter {
    color: #fff;
    font-size: 16px;
    line-height: 29px;
    height: 30px;
    width: 30px;
    text-align: center;
    visibility: hidden;
    cursor: pointer;
    position: fixed;
    top: 15px;
    left: -30px;
    background-color: #000;
    -ms-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; }
  .sidebar .sidebar_widget {
    margin-bottom: 10px;
    clear: both;
    border: 1px solid #eee; }
    .sidebar .sidebar_widget .sidebar-products li {
      padding-bottom: 10px; }
    .sidebar .sidebar_widget .sidebar-products .grid-view-item__link {
      float: left;
      margin-right: 10px; }
    .sidebar .sidebar_widget .sidebar-products .product-price__price {
      display: block; }
    .sidebar .sidebar_widget .widget-title {
      color: #000;
      font-size: 13px;
      padding: 8px 15px;
      background-color: #f5f5f5;
      text-transform: uppercase;
      font-weight: 500;
      letter-spacing: 0.8px; }
    .sidebar .sidebar_widget .widget-content {
      padding: 12px; }
    .sidebar .sidebar_widget.categories .widget-content ul.sidebar_cate .grid__item {
      float: none; }
    .sidebar .sidebar_widget.categories .widget-content ul.sidebar_cate li {
      padding: 4px 0; }
    .sidebar .sidebar_widget.categories .widget-content ul.sidebar_cate a {
      color: #000; }
      .sidebar .sidebar_widget.categories .widget-content ul.sidebar_cate a:hover {
        color: #ef8700; }
    .sidebar .sidebar_widget.categories .widget-content ul.sidebar_cate ul {
      margin: 0 0 0 15px; }
    .sidebar .sidebar_widget.static-banner {
      border: 0 none; }
    .sidebar .sidebar_widget.filterBox ul:not(.filter-color) li {
      padding: 3px 0; }
      .sidebar .sidebar_widget.filterBox ul:not(.filter-color) li label {
        font-weight: 400;
        font-size: 12px; }
    .sidebar .sidebar_widget.filterBox ul:not(.filter-color) input[type=checkbox] {
      display: none; }
    .sidebar .sidebar_widget.filterBox ul:not(.filter-color) input[type=checkbox] + label {
      display: inline-block;
      line-height: 1.5em; }
    .sidebar .sidebar_widget.filterBox ul:not(.filter-color) input[type=checkbox] + label > span {
      display: inline-block;
      width: 13px;
      height: 13px;
      margin: 0.25em 0.5em 0.25em 0.25em;
      border: 1px solid #d0d0d0;
      vertical-align: bottom; }
    .sidebar .sidebar_widget.filterBox ul:not(.filter-color) input[type=checkbox]:checked + label > span:before {
      content: '\f00c';
      display: block;
      width: 12px;
      color: #000;
      font-size: 9px;
      line-height: 11px;
      text-align: center;
      font-family: "FontAwesome"; }
    .sidebar .sidebar_widget.filterBox .filter-color li {
      display: inline-block;
      padding: 0;
      margin: 0 5px 5px 0; }
      .sidebar .sidebar_widget.filterBox .filter-color li input[type="checkbox"] {
        display: none; }
        .sidebar .sidebar_widget.filterBox .filter-color li input[type="checkbox"] + label.color {
          margin: 0;
          border: 1px solid #ccc;
          border-radius: 0; }
          .sidebar .sidebar_widget.filterBox .filter-color li input[type="checkbox"] + label.color span {
            display: block;
            height: 25px;
            width: 25px;
            border: 1px solid #fff;
            border-radius: 0; }
        .sidebar .sidebar_widget.filterBox .filter-color li input[type="checkbox"]:checked + label.color {
          border: 1px solid #000;
          box-shadow: 0 0 2px #000; }
  .sidebar.popup {
    width: 300px;
    height: 100%;
    padding: 15px;
    position: fixed;
    top: 0;
    left: -310px;
    z-index: 335;
    overflow: auto;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }
    .sidebar.popup .sidebar_widget:not(.filterBox) {
      display: none; }
    .sidebar.popup.active {
      left: 0; }
      .sidebar.popup.active .closeFilter {
        visibility: visible;
        left: 300px; }
  @media only screen and (max-width: 998px) {
    .sidebar.popup, .sidebar.filterbar {
      width: 250px;
      height: 100%;
      padding: 10px;
      position: fixed;
      top: 0;
      left: -260px;
      z-index: 335;
      overflow: auto;
      background-color: #fff;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }
      .sidebar.popup .sidebar_widget:not(.filterBox), .sidebar.filterbar .sidebar_widget:not(.filterBox) {
        display: none; }
      .sidebar.popup.active, .sidebar.filterbar.active {
        left: 0; }
        .sidebar.popup.active .closeFilter, .sidebar.filterbar.active .closeFilter {
          visibility: visible;
          left: 250px; } }

.sidebar-products-list .grid {
  margin: 0; }
  .sidebar-products-list .grid .grid__item {
    padding: 0; }
.sidebar-products-list .grid-view-item {
  width: 100%;
  text-align: left;
  margin-bottom: 15px;
  box-shadow: none; }
.sidebar-products-list .grid-view-item__link {
  height: auto !important; }
.sidebar-products-list .grid-view_image {
  float: left;
  width: 37%;
  margin-right: 15px; }
.sidebar-products-list .button-set, .sidebar-products-list .product-labels {
  display: none; }

.sidebar-products-slider .grid {
  margin: 0; }
  .sidebar-products-slider .grid .grid__item {
    padding: 0; }
  .sidebar-products-slider .grid > .grid__item:not(:first-child) {
    display: none; }
.sidebar-products-slider .slick-prev {
  left: -12px; }
.sidebar-products-slider .slick-next {
  right: -12px; }

.template-blog .social-sharing {
  margin-bottom: 10px; }
.template-blog .article h2, .template-blog .article .h2 {
  text-transform: none;
  letter-spacing: normal; }

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

.cart th,
.cart td {
  border: 0;
  text-align: center; }
  .cart th.cart__meta,
  .cart td.cart__meta {
    text-align: left; }
.cart td {
  padding: 15px 15px; }
  .cart td.cart__image-wrapper {
    padding-left: 12px;
    position: relative; }
.cart th {
  font-weight: 700;
  padding: 10px 0 8px;
  background: #f9f9f9;
  text-transform: uppercase;
  padding-left: 15px;
  padding-right: 15px;
  letter-spacing: 1px; }
.cart .cart__meta {
  padding-right: 15px; }
.cart .qtyField {
  margin: 0 auto; }
  .cart .qtyField a {
    height: 36px;
    width: 35px;
    line-height: 35px;
    padding: 0; }
    .cart .qtyField a .icon {
      height: 10px;
      width: 10px; }
  .cart .qtyField .cart__qty-input {
    height: 36px;
    width: 40px;
    float: left; }

.cart__meta-text {
  padding: 5px 0;
  font-size: 0.84615em;
  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;
  border-radius: 0; }
  @media only screen and (max-width: 766px) {
    .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 {
  position: relative; }
  .cart__row p {
    margin-bottom: 0; }
    .cart__row p + p {
      margin-top: 10px; }

.cart__subtotal-title {
  font-size: 14px;
  font-family: "Roboto", "Calibri", "Calibri", sans-serif;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.02em; }

.cart__subtotal {
  padding-left: 15px;
  font-weight: 700;
  font-size: 16px; }
  @media only screen and (min-width: 767px) {
    .cart__subtotal {
      padding-left: 15px;
      display: inline-block; } }

.cart__savings {
  padding-top: 18px; }

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

.cart__footer {
  padding-top: 15px; }
  .cart__footer h5, .cart__footer .h5 {
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 10px; }
  .cart__footer .cartSummery {
    float: right;
    margin-bottom: 30px; }
  .cart__footer .cart__subtotal-title {
    text-transform: uppercase;
    font-size: 14px;
    font-family: "Roboto", "Calibri", "Calibri", sans-serif; }
  .cart__footer .cart-update, .cart__footer .checkout {
    width: 100%;
    max-width: 300px; }
  .cart__footer .cart-update {
    margin-bottom: 20px; }

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

.cart__shipping {
  font-style: italic;
  font-size: 13px;
  padding: 12px 0 20px; }

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

.cart__image-wrapper a {
  display: block; }

#shipping-calculator .field {
  margin-bottom: 10px; }
  #shipping-calculator .field label {
    float: left;
    width: 90px;
    margin-right: 10px;
    line-height: 35px; }
  #shipping-calculator .field div {
    width: auto;
    display: block;
    overflow: hidden; }
#shipping-calculator select, #shipping-calculator #address_zip {
  width: 100%; }
#shipping-calculator #shipping-rates-feedback {
  color: #000;
  padding: 10px;
  text-align: center; }

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

  .cart__meta {
    max-width: 300px; }

  .cart__remove {
    margin-top: 4px;
    font-size: 14px;
    text-align: center;
    vertical-align: middle; }
    .cart__remove .fa {
      margin-right: -2px; }

  .cart__qty {
    text-align: center;
    margin-bottom: 10px; } }
@media only screen and (max-width: 766px) {
  .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: 15px; }

  .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; } }
.additional-checkout-buttons {
  margin-top: 15px; }
  .additional-checkout-buttons input[type="image"] {
    padding: 0;
    border: 0;
    background: transparent; }

.slick-arrow:hover {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3); }

@media only screen and (max-width: 1199px) {
  .slick-prev {
    left: -10px; }

  .slick-next {
    right: -10px; } }
/* ===========================================================
   MODULES
 * ===========================================================*/
/* =================== HEADER ===================*/
.notification-bar {
  text-align: center;
  position: relative;
  z-index: 1;
  display: none;
  background-color: #c1e6e9; }

.notification-bar__message {
  color: #000000;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  display: block;
  padding: 10px 15px; }
  @media only screen and (min-width: 767px) {
    .notification-bar__message {
      padding: 10px 30px; } }
  .notification-bar__message:hover {
    color: #000000;
    text-decoration: none; }

.close-announcement {
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  position: absolute;
  right: 40px;
  top: 8px;
  height: 25px;
  width: 25px;
  line-height: 22px;
  color: #000000; }

.top-header {
  background: #e9edd7;
  text-align: right;
  height: 39px;
  border-bottom: 1px solid #eee; }
  .top-header a, .top-header .selected-currency {
    color: #222222;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 0;
    text-decoration: none;
    letter-spacing: 0.05em; }
  .top-header .fa {
    color: #48a6ae; }
  .top-header .js-mobile-nav-toggle {
    float: left;
    display: none; }
    .top-header .js-mobile-nav-toggle .fa-bars {
      display: none; }
    .top-header .js-mobile-nav-toggle .fa-times {
      display: block; }
    .top-header .js-mobile-nav-toggle.open .fa-bars {
      display: block; }
    .top-header .js-mobile-nav-toggle.open .fa-times {
      display: none; }
  .top-header .customer-links {
    float: left;
    padding-top: 10px; }
    .top-header .customer-links li {
      display: inline-block;
      margin-right: 8px; }
  .top-header .user-menu {
    display: none; }
  .top-header .currency-picker, .top-header .header-cart {
    display: inline-block;
    vertical-align: top;
    position: relative; }
  .top-header a.header-cart {
    color: #fff;
    font-size: 22px;
    line-height: 39px;
    height: 38px;
    padding: 0 7px;
    background-color: #075159; }
    .top-header a.header-cart .fa {
      color: #fff; }
    .top-header a.header-cart .site-header__cart-count {
      font-size: 12px;
      margin-left: 3px; }
  @media only screen and (max-width: 998px) {
    .top-header {
      background-color: #075159; }
      .top-header .fa {
        color: #ffffff;
        font-size: 22px; }
      .top-header .page-width {
        padding: 0; }
      .top-header .js-mobile-nav-toggle, .top-header .customer-links,
      .top-header .currency-picker, .top-header a.header-cart {
        float: left;
        display: block;
        width: 25%;
        text-align: center;
        height: 39px;
        border-right: 1px solid rgba(255, 255, 255, 0.3); }
      .top-header .customer-links {
        position: relative; }
        .top-header .customer-links .user-menu {
          display: block; }
        .top-header .customer-links ul {
          display: none;
          margin: 0;
          min-width: 140px;
          width: 100%;
          position: absolute;
          top: 100%;
          left: 0;
          z-index: 5;
          background-color: #fff; }
          .top-header .customer-links ul li {
            display: block;
            padding: 0;
            margin: 0;
            border-bottom: 1px solid #ddd; }
            .top-header .customer-links ul li:last-child {
              border: 0 none; }
            .top-header .customer-links ul li a {
              color: #000;
              padding: 10px;
              display: block;
              text-align: left; }
            .top-header .customer-links ul li .fa {
              display: none; }
      .top-header .currency-picker .selected-currency {
        color: #ffffff;
        display: block;
        margin: 0; }
      .top-header .currency-picker #currencies {
        margin: 0;
        left: 0; }
      .top-header a.header-cart {
        color: #ffffff;
        background: none;
        border: 0 none; }
        .top-header a.header-cart .fa {
          color: #ffffff; } }

.currency-picker .selected-currency {
  line-height: 37px;
  height: 39px;
  display: inline-block;
  cursor: pointer;
  margin-right: 8px; }
  .currency-picker .selected-currency:after {
    content: "\f0d7";
    font-family: "FontAwesome";
    margin-left: 2px; }
.currency-picker #currencies {
  display: none;
  padding: 0;
  width: 100%;
  min-width: 70px;
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 333;
  margin-left: -35px;
  background: #fff;
  border: 1px solid #f5f5f5; }
  .currency-picker #currencies li {
    font-size: 12px;
    cursor: pointer;
    padding: 5px;
    text-align: center;
    border-bottom: 1px solid #f5f5f5; }
    .currency-picker #currencies li:last-child {
      border: 0 none; }
    .currency-picker #currencies li:hover {
      background-color: #f5f5f5; }
    .currency-picker #currencies li.selected {
      opacity: 0.5; }

#cart-drawer {
  padding: 15px;
  width: 300px;
  height: 100%;
  overflow: auto;
  position: fixed;
  top: 0;
  right: -300px;
  z-index: 50;
  background-color: #fff;
  border-left: 1px solid #e8e9eb;
  -ms-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }
  #cart-drawer > h4, #cart-drawer > .h4 {
    color: #000;
    font-size: 18px;
    text-align: left;
    margin: 0 0 10px; }
  #cart-drawer .close-cart {
    color: #555;
    font-size: 20px;
    float: right;
    margin: -7px -4px 0 0; }
  #cart-drawer .btn {
    margin: 0 3px; }
  #cart-drawer.active {
    right: 0; }

.mini-products-list .grid {
  margin: 0; }
  .mini-products-list .grid .grid__item {
    padding: 0; }
  .mini-products-list .grid .product-details {
    padding-left: 15px; }
.mini-products-list li:first-child {
  padding-top: 15px;
  border-top: 1px solid #e8e9eb; }
  .mini-products-list li:first-child + li {
    border-top: 1px solid #eee; }
.mini-products-list .buttonSet {
  border-bottom: 0; }
.mini-products-list li {
  padding: 15px 0;
  line-height: normal;
  border-bottom: 1px solid #e8e9eb; }
  .mini-products-list li .pName {
    color: #000;
    font-weight: 500;
    white-space: normal;
    text-decoration: none;
    display: block;
    line-height: 20px;
    margin-right: 20px; }
  .mini-products-list li .product-details {
    text-align: left; }
  .mini-products-list li .remove {
    float: right;
    padding: 7px;
    margin: -7px -7px 0 0; }
  .mini-products-list li .priceRow {
    margin: 10px 0  0; }
    .mini-products-list li .priceRow .prodMulti {
      display: inline-block;
      font-size: 10px; }
    .mini-products-list li .priceRow .product-price {
      display: inline-block; }
    .mini-products-list li .priceRow .qtyField {
      display: inline-block; }
      .mini-products-list li .priceRow .qtyField a {
        display: none; }
      .mini-products-list li .priceRow .qtyField span {
        display: inline-block;
        padding: 0;
        border: 0; }
  .mini-products-list li.total {
    padding: 8px 0;
    height: 40px;
    border-bottom: 1px solid #e8e9eb;
    text-align: left;
    display: inline-block;
    width: 100%; }
    .mini-products-list li.total .product-price {
      float: right;
      font-size: 16px; }
    .mini-products-list li.total label {
      float: left;
      line-height: 24px;
      text-transform: uppercase; }

.header-wrap {
  background-color: #fff; }

.site-header .header-logo {
  width: 30%; }
.site-header .site-header__logo {
  display: inline-block;
  max-width: 250px;
  margin: 0 0; }
  .site-header .site-header__logo img {
    max-height: 70px; }
  .site-header .site-header__logo .site-header__logo-link {
    color: #075159;
    font-weight: 700;
    font-size: 25px;
    text-decoration: none; }
.site-header .text-right {
  width: 70%; }
.site-header.logo-center .header-logo, .site-header.logo-center .text-left, .site-header.logo-center .text-right {
  width: 33.33%; }
.site-header.logo-center .header-logo {
  text-align: center; }
.site-header.logo-center .header-search {
  width: auto; }
.site-header .header-txt, .site-header .header-search {
  display: inline-block;
  text-align: left;
  vertical-align: middle; }
.site-header .header-txt {
  color: #075159;
  font-weight: 600;
  font-size: 15px;
  line-height: 17px;
  padding: 0 20px 0 43px;
  position: relative; }
  .site-header .header-txt .fa {
    top: -50%;
    color: #ef8700;
    font-size: 35px;
    position: absolute;
    left: 0; }
  .site-header .header-txt .lbl {
    color: #444;
    font-weight: 400;
    font-size: 13px;
    display: block; }
@media only screen and (min-width: 1200px) {
  .site-header .header-search {
    width: 40%; } }
.site-header .header-search .search__submit {
  color: #fff;
  background-color: #ef8700;
  padding: 0;
  width: 40px; }
@media only screen and (max-width: 998px) {
  .site-header .header-ship {
    display: none; }
  .site-header .site-header__logo {
    max-width: 220px; } }
@media only screen and (max-width: 766px) {
  .site-header .site-header__logo {
    margin: 15px 0; }
  .site-header .grid--table .grid__item,
  .site-header .header-phone, .site-header .header-search {
    display: block;
    width: auto;
    text-align: center; }
  .site-header .header-phone {
    margin: -5px 0 10px;
    padding: 0; }
    .site-header .header-phone .fa {
      display: none; }
    .site-header .header-phone .lbl {
      display: inline-block; }
  .site-header.logo-center .header-phone {
    margin: 10px 0 -5px; }
  .site-header .header-search {
    margin: 0 -15px; }
    .site-header .header-search .input-group__field, .site-header .header-search .input-group__btn .btn {
      height: 40px;
      border-radius: 0; } }
@media only screen and (max-width: 479px) {
  .site-header .header-phone {
    font-size: 15px;
    margin-left: -15px;
    margin-right: -15px; } }

@media only screen and (max-width: 998px) {
  #header {
    display: flex;
    flex-flow: column; }
    #header .notification-bar {
      order: 1; }
    #header .header-wrap {
      order: 2; }
    #header .top-header {
      order: 3; } }
#shopify-section-navigation {
  margin-bottom: 15px; }

.search-results {
  z-index: 8889;
  list-style-type: none;
  width: 300px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
  border: 1px solid #e8e9eb;
  border-radius: 3px;
  box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden; }
  .search-results li {
    display: block;
    margin: 0;
    padding: 0;
    border-top: 1px solid #e8e9eb;
    overflow: hidden; }
    .search-results li:first-child {
      border-top: none; }
  .search-results a {
    color: #555;
    display: table;
    width: 100%;
    text-decoration: none; }
    .search-results a:hover {
      color: #000;
      background-color: #f6f6f6; }
    .search-results a .img {
      display: table-cell;
      width: 45px;
      height: 45px;
      padding: 5px;
      text-align: center;
      vertical-align: middle; }
    .search-results a .title {
      padding: 5px;
      display: table-cell;
      text-align: left;
      vertical-align: middle; }
  .search-results .more {
    padding: 7px;
    background-color: #eee; }
    .search-results .more a {
      color: #000;
      text-decoration: none;
      font-weight: 700; }

.template-search .section-header {
  margin-top: 35px; }

/* ===========================================================
   Site Nav and Dropdowns 
* ===========================================================*/
#AccessibleNav {
  background: #075159; }

.site-navigation {
  position: relative; }

@media only screen and (min-width: 999px) {
  #siteNav.hidearrow .fa-angle-down {
    display: none; }
  #siteNav.left {
    text-align: left; }
  #siteNav.center {
    text-align: center; }
  #siteNav.right {
    text-align: right; }
  #siteNav a {
    text-decoration: none;
    letter-spacing: 0.02em;
    display: block;
    opacity: 1;
    -webkit-font-smoothing: antialiased; }
  #siteNav > li {
    display: inline-block;
    text-align: left; }
    #siteNav > li:hover > a {
      color: #ffffff;
      background-color: #ef8700; }
    #siteNav > li > a {
      color: #ffffff;
      font-size: 13px;
      font-weight: bold;
      padding: 0 20px;
      text-transform: uppercase;
      position: relative;
      line-height: 40px; }
      #siteNav > li > a:hover, #siteNav > li > a.active {
        color: #ffffff;
        background-color: #ef8700; }
      #siteNav > li > a .navLbl {
        color: #ffffff;
        background-color: #31a3a3;
        font-size: 10px;
        font-weight: 400;
        line-height: normal;
        display: inline-block;
        padding: 0 5px;
        border-radius: 1px;
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
        position: absolute;
        top: -9px;
        left: 50%; }
        #siteNav > li > a .navLbl:after {
          content: " ";
          display: block;
          width: 0;
          height: 0;
          border: 4px solid transparent;
          border-top-color: #31a3a3;
          border-left-color: #31a3a3;
          position: absolute;
          bottom: -5px;
          left: 0; }
    #siteNav > li .megamenu {
      opacity: 0;
      visibility: hidden;
      padding: 25px 0;
      width: 100%;
      position: absolute;
      top: 59px;
      left: 0;
      z-index: 999;
      background-color: #fff;
      box-shadow: 2px 2px 1px 0px rgba(0, 0, 0, 0.3);
      -ms-transition: all 0.4s ease-in-out;
      -webkit-transition: all 0.4s ease-in-out;
      transition: all 0.4s ease-in-out;
      border-top: 4px solid #ef8700; }
      #siteNav > li .megamenu li.lvl-1 {
        margin-bottom: 15px; }
        #siteNav > li .megamenu li.lvl-1 a.lvl-1 {
          text-transform: uppercase;
          color: #000;
          padding: 0 0 6px;
          font-weight: 600; }
          #siteNav > li .megamenu li.lvl-1 a.lvl-1:hover {
            color: #000; }
          #siteNav > li .megamenu li.lvl-1 a.lvl-1 .title {
            display: block; }
        #siteNav > li .megamenu li.lvl-1 li .site-nav {
          color: #000;
          padding: 2px 0;
          font-weight: 400; }
          #siteNav > li .megamenu li.lvl-1 li .site-nav:before {
            content: "";
            display: inline-block;
            width: 0px;
            height: 2px;
            vertical-align: middle;
            background-color: #000;
            -ms-transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out; }
          #siteNav > li .megamenu li.lvl-1 li .site-nav:hover {
            color: #000; }
            #siteNav > li .megamenu li.lvl-1 li .site-nav:hover:before {
              width: 5px;
              margin-right: 3px; }
      #siteNav > li .megamenu .productCol {
        text-align: center; }
        #siteNav > li .megamenu .productCol.lvl-1 {
          margin: 0; }
        #siteNav > li .megamenu .productCol .grid-view-item {
          margin-bottom: 0; }
          #siteNav > li .megamenu .productCol .grid-view-item .grid-view-item__link {
            margin: 0 0 10px; }
          #siteNav > li .megamenu .productCol .grid-view-item .spr-badge {
            display: none; }
        #siteNav > li .megamenu .productCol > h5, #siteNav > li .megamenu .productCol > .h5 {
          color: #000;
          padding: 5px 0; }
        #siteNav > li .megamenu .productCol .prodImg {
          max-height: 160px;
          margin-bottom: 10px; }
      #siteNav > li .megamenu .grid__item {
        margin-bottom: 0; }
      #siteNav > li .megamenu.style3 .grid__item .lvl-1 img {
        margin-bottom: 10px; }
    #siteNav > li:hover > .megamenu {
      top: 40px;
      opacity: 1;
      visibility: visible; }
    #siteNav > li.dropdown {
      position: relative; }
    #siteNav > li .dropdown, #siteNav > li .dropdown ul {
      border: 1px solid #eeeeee;
      opacity: 0;
      visibility: hidden;
      width: 220px;
      position: absolute;
      top: 59px;
      left: 0;
      z-index: 999;
      box-shadow: 2px 2px 1px 0px rgba(0, 0, 0, 0.3);
      -ms-transition: all 0.4s ease-in-out;
      -webkit-transition: all 0.4s ease-in-out;
      transition: all 0.4s ease-in-out; }
    #siteNav > li:hover > .dropdown, #siteNav > li .dropdown li:hover > ul {
      top: 40px;
      opacity: 1;
      visibility: visible; }
    #siteNav > li ul.dropdown li {
      border-top: 1px solid #eeeeee;
      position: relative; }
      #siteNav > li ul.dropdown li:first-child {
        border: 0 none; }
      #siteNav > li ul.dropdown li a {
        color: #000;
        font-weight: 400;
        padding: 8px 12px;
        background-color: #fff; }
        #siteNav > li ul.dropdown li a:hover {
          color: #000;
          background-color: #eee;
          padding-left: 17px; }
        #siteNav > li ul.dropdown li a .fa {
          position: absolute;
          right: 10px;
          top: 12px; }
      #siteNav > li ul.dropdown li ul {
        top: 20px;
        left: 100%; }
      #siteNav > li ul.dropdown li:hover > ul {
        top: 0; }

  .mobile-nav-wrapper {
    display: none; } }
@media only screen and (max-width: 998px) {
  html {
    overflow-x: hidden; }

  body {
    position: relative;
    left: 0;
    -ms-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; }

  body.menuOn {
    left: 270px; }

  .site-navigation {
    display: none; }

  .mobile-nav-wrapper {
    width: 270px;
    height: 100%;
    position: fixed;
    left: -270px;
    top: 0;
    z-index: 999;
    background-color: #ffffff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    -ms-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; }
    .mobile-nav-wrapper.active {
      left: 0;
      opacity: 1;
      visibility: visible; }
    .mobile-nav-wrapper .closemobileMenu {
      color: #000;
      font-size: 13px;
      padding: 8px 10px;
      background-color: #eee;
      cursor: pointer; }
      .mobile-nav-wrapper .closemobileMenu .fa {
        font-size: 18px; }

  #MobileNav {
    height: 100%;
    overflow: auto; }
    #MobileNav li {
      border-top: 1px solid #eeeeee;
      position: relative; }
      #MobileNav li.grid__item {
        float: none;
        padding: 0; }
      #MobileNav li a {
        color: #333333;
        text-decoration: none;
        display: block;
        padding: 10px 45px 10px 10px;
        opacity: 1;
        -webkit-font-smoothing: antialiased;
        font-weight: 400;
        letter-spacing: 0.05em;
        text-transform: uppercase; }
        #MobileNav li a .fa {
          color: #333333;
          display: block;
          width: 40px;
          height: 40px;
          line-height: 40px;
          position: absolute;
          right: 0;
          top: 0;
          text-align: center; }
      #MobileNav li ul {
        display: none;
        background-color: #f2f2f2; }
      #MobileNav li li a {
        padding-left: 20px; }
      #MobileNav li li li a {
        padding-left: 30px; }
      #MobileNav li li li li a {
        padding-left: 40px; } }
a.sticky-logo, a.sticky-cart {
  color: #ffffff;
  text-decoration: none;
  height: 30px;
  text-align: center;
  display: none;
  position: absolute;
  top: 5px; }
  a.sticky-logo .fa, a.sticky-cart .fa {
    font-size: 22px;
    line-height: 30px; }

a.sticky-logo {
  width: 30px;
  left: 10px; }
  a.sticky-logo img {
    max-height: 30px; }

a.sticky-cart {
  right: 10px; }
  a.sticky-cart .fa {
    margin-right: 3px; }

.stickyNav {
  position: fixed;
  top: 0;
  z-index: 333;
  width: 100%;
  left: 0;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.3); }
  .stickyNav a.sticky-logo, .stickyNav a.sticky-cart {
    display: block; }
  .stickyNav #site-navigation {
    padding: 0 50px; }
  .stickyNav #siteNav > li > a .navLbl {
    display: none; }

/* Footer Styles ====================*/
#shopify-section-footer {
  margin-top: 30px; }

.newsletter-ft-top {
  color: #fff;
  font-size: 1.23077em;
  background-color: #48a6ae;
  padding: 30px 0;
  text-align: center; }
  .newsletter-ft-top .h4 {
    color: #fff;
    letter-spacing: 1px;
    font-size: 1.23077em;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 3px; }
  .newsletter-ft-top .input-group {
    max-width: 600px;
    margin: 0 auto; }
    .newsletter-ft-top .input-group .input-group__field, .newsletter-ft-top .input-group .newsletter__submit {
      height: 46px; }
    .newsletter-ft-top .input-group .input-group__field {
      color: #222;
      background-color: #a4d2d6;
      border: 0 none; }
    .newsletter-ft-top .input-group .newsletter__submit {
      color: #fff;
      background-color: #075159; }
      .newsletter-ft-top .input-group .newsletter__submit:hover {
        opacity: 0.7; }

.site-footer {
  color: #d6e7ea;
  padding: 10px 0 30px;
  background-color: #000e11; }
  .site-footer .footer-top .grid__item {
    padding-top: 20px; }
  .site-footer .h4 {
    color: #ffad00;
    font-size: 1em;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 15px; }
  .site-footer .footer-links li {
    margin-bottom: 7px; }
  .site-footer .footer-links a {
    color: #d6e7ea;
    text-decoration: none; }
    .site-footer .footer-links a:before {
      content: "";
      display: inline-block;
      width: 0px;
      height: 3px;
      vertical-align: middle;
      background-color: #d6e7ea; }
    .site-footer .footer-links a:hover {
      opacity: 0.7; }
      .site-footer .footer-links a:hover:before {
        width: 4px;
        margin-right: 3px; }
  .site-footer .addressFooter li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 25px; }
    .site-footer .addressFooter li .fa {
      color: #ffffff;
      font-size: 1.23077em;
      position: absolute;
      top: 3px;
      left: 0;
      width: 25px;
      text-align: center; }
  .site-footer .addressFooter + .h4 {
    margin: 25px 0 10px; }
  .site-footer .social-icons a {
    color: #ffffff;
    font-size: 15px;
    display: inline-block;
    margin-right: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #d6e7ea;
    border-radius: 50%; }
    .site-footer .social-icons a:hover {
      opacity: 0.7; }
  .site-footer .newsletter .input-group .input-group__field, .site-footer .newsletter .input-group .input-group__btn {
    display: block;
    margin-bottom: 10px;
    border-radius: 0; }
  .site-footer .footer-bottom {
    clear: both;
    line-height: 30px;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px dotted #6f6e6e; }
    .site-footer .footer-bottom .paymentCall {
      float: right; }
    .site-footer .footer-bottom .payment-icons {
      color: #ffffff;
      font-size: 30px;
      line-height: 30px;
      text-align: right; }
  @media only screen and (max-width: 998px) {
    .site-footer .footer-links:nth-child(2n+1) {
      clear: left; } }
  @media only screen and (max-width: 766px) {
    .site-footer .footer-top .grid {
      margin: 0; }
    .site-footer .footer-top .grid__item {
      padding: 15px 5px;
      border-bottom: 1px dotted #6f6e6e; }
      .site-footer .footer-top .grid__item:last-child {
        border: 0 none;
        padding-bottom: 0; }
    .site-footer .footer-links .h4 {
      line-height: 20px;
      margin-bottom: 0; }
      .site-footer .footer-links .h4:before {
        content: "\f107";
        font-size: 20px;
        font-family: "FontAwesome";
        float: right; }
      .site-footer .footer-links .h4.active:before {
        content: "\f106"; }
    .site-footer .footer-links ul {
      display: none;
      margin: 10px 0 20px; }
    .site-footer .footer-bottom {
      text-align: center;
      line-height: 1.2; }
      .site-footer .footer-bottom .payment-icons {
        text-align: center;
        margin-bottom: 15px; } }

.template-article .section-header {
  margin-bottom: 0; }

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

.article__title {
  margin-bottom: 7.5px; }

.article__author {
  margin-right: 10px; }

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

.article__tags {
  margin-bottom: 17.5px; }

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

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

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

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

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

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

.article__list-image {
  margin: 0 auto; }

.pagination {
  width: 100%;
  text-align: center;
  list-style: none;
  font-size: 1.15385em;
  padding-top: 35px; }
  .pagination li {
    display: inline-block; }
    .pagination li a {
      font-size: 12px;
      color: #a2a2a2;
      height: 35px;
      width: 35px;
      line-height: 35px;
      display: inline-block;
      border: 2px solid #e8e9eb; }
  .pagination li.active a {
    border: 2px solid #636871;
    color: #555555; }
  .pagination .icon {
    display: block;
    height: 20px;
    vertical-align: middle; }

.pagination__text {
  padding: 0 15px; }

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

.comment__content {
  margin-bottom: 5px; }

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

.btn--share {
  margin-right: 5px;
  margin-bottom: 10px; }
  .btn--share .fa {
    font-size: 16px;
    vertical-align: text-top;
    margin-right: 4px; }
  .btn--share .fa-facebook-official {
    color: #3b5998; }
  .btn--share .fa-twitter-square {
    color: #00aced; }
  .btn--share .fa-pinterest-square {
    color: #cb2027; }
  .btn--share .fa-google-plus-square {
    color: #DD4D42; }

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

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

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

.mobile-nav__link {
  position: relative; }

.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: 15px;
  padding-right: 15px;
  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 {
  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: "Roboto", "Calibri", "Calibri", sans-serif;
    font-weight: 400;
    display: table-cell;
    vertical-align: middle; }

/* ===========================================================
   Modals
 * ===========================================================*/
.modalsCenter, .loadingBox, .modal {
  position: fixed;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.modalOverly {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.7);
  -ms-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
  -webkit-transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1); }

.loadingBox {
  display: none;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  z-index: 11; }

.loading .loadingBox {
  display: block;
  position: fixed; }

.showOverly .modalOverly, .loading .modalOverly {
  display: block; }

.hideOverly .modalOverly {
  display: none; }

.modal {
  padding: 20px;
  display: none;
  overflow: hidden;
  z-index: 11;
  width: 80%;
  max-width: 440px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  bottom: inherit; }
  .modal p {
    margin-bottom: 10px; }
  .modal .modal-prod-img {
    max-width: 100px; }
  .modal .modal-prod-name {
    color: #000;
    font-size: 14px;
    padding-right: 20px; }
  .modal .buttonSet {
    padding-top: 5px; }
  .modal .prod-img {
    float: left;
    margin: 0; }
  .modal .prod-detail {
    text-align: left;
    padding: 0 0 0 120px; }
  .modal .buttonSet .btn {
    margin-right: 8px; }

#LoginModal.modal {
  width: 100%;
  max-width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -ms-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 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: 30px;
  position: fixed;
  top: 0;
  right: 0; }
  .modal__close .icon {
    font-size: 1.53846em; }

.closeDrawer {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  background-color: #000;
  width: 30px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  font-size: 1.38462em; }
  .closeDrawer:hover {
    color: #fff;
    opacity: 0.75; }

#prodNotify {
  width: auto;
  max-width: 300px;
  text-align: left;
  display: none;
  padding: 5px;
  position: fixed;
  left: 10px;
  bottom: 10px;
  z-index: 99999;
  background-color: #fff;
  border-radius: 0;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.4); }
  #prodNotify a {
    color: #000;
    font-weight: 700; }
  #prodNotify img {
    float: left;
    max-width: 60px;
    max-height: 80px;
    width: auto; }
  #prodNotify p {
    font-size: 12px;
    margin: 0 0 0 75px;
    line-height: 20px;
    padding: 10px 0 10px 0; }
  #prodNotify .price {
    padding-top: 5px;
    display: block;
    font-size: 14px;
    color: #000;
    font-weight: 700; }

/* ===========================================================
    Hero slider
* ===========================================================*/
.slideshowOuter {
  padding: 0; }
  .slideshowOuter + .slideshowOuter {
    margin: 0; }

.slideshow-wrapper {
  position: relative; }

.slideshow {
  overflow: hidden;
  margin-bottom: 0;
  height: 250px; }
  .slideshow.slideshow--medium {
    height: 300px; }
  .slideshow.slideshow--large {
    height: 300px; }
  @media only screen and (min-width: 999px) {
    .slideshow {
      height: 400px; }
      .slideshow.slideshow--medium {
        height: 500px; }
      .slideshow.slideshow--large {
        height: 600px; } }
  .slideshow .slideshow__link, .slideshow a:hover {
    opacity: 1;
    text-decoration: none; }
  .slideshow .slideshow__slide, .slideshow .slick-list, .slideshow .slick-track {
    height: 100%; }
  .slideshow .slick-prev, .slideshow .slick-next {
    top: 50%;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.2); }
    .slideshow .slick-prev:before, .slideshow .slick-next:before {
      font-size: 30px; }
    .slideshow .slick-prev:hover, .slideshow .slick-next:hover {
      background-color: rgba(255, 255, 255, 0.5);
      box-shadow: 0 0 4px rgba(0, 0, 0, 0.3); }
  .slideshow .slick-prev {
    left: 10px; }
  .slideshow .slick-next {
    right: 10px; }
  .slideshow .slick-dots {
    bottom: 15px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%); }
    .slideshow .slick-dots li button::before {
      color: white; }
  @media only screen and (max-width: 766px) {
    .slideshow .slick-prev, .slideshow .slick-next {
      width: 30px;
      height: 30px;
      line-height: 30px; }
      .slideshow .slick-prev:before, .slideshow .slick-next:before {
        font-size: 24px; } }

.imageSlideshow .slideshow {
  height: auto; }
  .imageSlideshow .slideshow .placeholder-background,
  .imageSlideshow .slideshow .slideshow__image, .imageSlideshow .slideshow .slideshow__link {
    position: static;
    text-align: center; }
    .imageSlideshow .slideshow .placeholder-background img,
    .imageSlideshow .slideshow .slideshow__image img, .imageSlideshow .slideshow .slideshow__link img {
      width: 100%; }

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

.slideshow__pause:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  color: white;
  background-color: #ef8700;
  padding: 15px;
  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; }

.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: #000000;
  opacity: 0;
  z-index: 3; }

.slideshow__image {
  transition: opacity 0.8s cubic-bezier(0.44, 0.13, 0.48, 0.87);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center; }
  .slick-initialized .slideshow__image, .no-js .slideshow__image {
    opacity: 1; }
  .slideshow__slide--background-video .slideshow__image {
    opacity: 0; }
  .no-autoplay .slideshow__image {
    opacity: 1; }
  @media only screen and (max-width: 766px) {
    .slideshow__image.left {
      background-position: 90% 0 !important; }
    .slideshow__image.right {
      background-position: 10% 0 !important; } }

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

.slideshow__text-wrap {
  height: 100%; }
  .slideshow__link .slideshow__text-wrap {
    cursor: inherit; }
  .slideshow__slide--has-background-video .slideshow__text-wrap {
    padding-top: 90px; }
  .video-is-playing .slideshow__text-wrap {
    display: none; }
  .slideshow__slide.video-is-paused .slideshow__text-wrap {
    display: none; }
  .slideshow__text-wrap: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);
    top: 50%;
    left: 50%;
    z-index: 5; }
  .slick-initialized .slideshow__text-wrap:after, .no-js .slideshow__text-wrap:after {
    opacity: 0;
    visibility: hidden;
    content: none; }

.wrap-caption {
  display: inline-block;
  padding: 30px; }
  @media only screen and (max-width: 1199px) {
    .wrap-caption {
      padding: 20px; } }
  @media only screen and (max-width: 766px) {
    .wrap-caption {
      background-color: rgba(255, 255, 255, 0.5); } }

.slideshow__text-content {
  position: absolute;
  max-width: 500px;
  width: 50%;
  top: 50%;
  z-index: 3;
  text-align: center;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }
  .left .slideshow__text-content {
    left: 8%; }
  .right .slideshow__text-content {
    right: 8%; }
  .center .slideshow__text-content {
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  @media only screen and (max-width: 1199px) {
    .left .slideshow__text-content {
      left: 1.5%; }
    .right .slideshow__text-content {
      right: 1.5%; } }
  @media only screen and (max-width: 766px) {
    .slideshow__text-content {
      width: auto;
      max-width: 96%; }
      .left .slideshow__text-content {
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
      .right .slideshow__text-content {
        right: 50%;
        -ms-transform: translate(50%, -50%);
        -webkit-transform: translate(50%, -50%);
        transform: translate(50%, -50%); } }
  .slideshow__text-content .btnWrap {
    opacity: 0;
    display: inline-block;
    -ms-transform: translateY(50px);
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    -ms-transition: 0.7s all 800ms;
    -webkit-transition: 0.7s all 800ms;
    transition: 0.7s all 800ms; }
    .slick-active .slideshow__text-content .btnWrap {
      opacity: 1;
      -ms-transform: translateY(0);
      -webkit-transform: translateY(0);
      transform: translateY(0); }

.slideshow__title, .slideshow__subtitle {
  color: #000000;
  letter-spacing: 0.02em;
  opacity: 0; }

.slideshow__title {
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  -ms-transform: translateY(-50px);
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  -ms-transition: 0.7s all 100ms;
  -webkit-transition: 0.7s all 100ms;
  transition: 0.7s all 100ms; }
  .slideshow__title:after {
    content: "";
    display: block;
    height: 2px;
    width: 60px;
    margin: 10px auto;
    background-color: #000000; }
  .slick-active .slideshow__title {
    opacity: 1;
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0); }

.slideshow__subtitle {
  display: block;
  margin-bottom: 20px;
  -ms-transform: translateY(50px);
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -ms-transition: 0.5s all 500ms;
  -webkit-transition: 0.5s all 500ms;
  transition: 0.5s all 500ms; }
  .slick-active .slideshow__subtitle {
    opacity: 1;
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  @media only screen and (max-width: 766px) {
    .slideshow__subtitle {
      display: none; } }

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

.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: 767px) {
    .slideshow__video-control--play-wrapper {
      height: 45px; } }

@media only screen and (min-width: 767px) {
  .slideshow__video-control--play-wrapper--push {
    margin-top: 30px; } }
.slideshow__video-control--play {
  opacity: 0;
  color: black;
  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: 767px) {
      .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 {
  color: #000000;
  font-weight: 600; }

s.product-price__price {
  opacity: 0.6;
  margin-right: 10px;
  font-weight: 400; }

.product-price__sale--single {
  padding-left: 2px; }

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

.product-price__sale-label {
  display: inline-block;
  white-space: nowrap; }

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

/* ===========================================================
   Module | Filters and Sort toolbar and selection
 * ===========================================================*/
.filters-toolbar-wrapper {
  display: table;
  table-layout: fixed;
  border-bottom: 1px solid #e8e9eb;
  border-top: 1px solid #e8e9eb;
  margin-bottom: 35px; }
  .filters-toolbar-wrapper .filterBtn {
    display: table-cell;
    width: 130px;
    vertical-align: middle; }
    .filters-toolbar-wrapper .filterBtn .btn-filter {
      text-transform: uppercase; }
  @media only screen and (max-width: 639px) {
    .filters-toolbar-wrapper {
      margin-bottom: 15px; }
      .filters-toolbar-wrapper .filterBtn {
        display: block;
        width: 100%; }
        .filters-toolbar-wrapper .filterBtn .btn {
          width: 100%; } }

.filters-toolbar {
  display: table;
  table-layout: fixed;
  width: 100%; }
  .filters-toolbar select {
    font-size: 12px;
    height: auto; }
  .filters-toolbar .change-view {
    font-size: 18px;
    background: none;
    opacity: 0.6;
    border: 0;
    padding: 0 3px; }
  .filters-toolbar .change-view--active {
    opacity: 1; }

.filters-toolbar__item {
  display: table-cell;
  width: 100px;
  vertical-align: middle; }
  .filters-toolbar__item.filters-toolbar__item--count {
    width: auto; }

.filters-toolbar__item--count {
  text-align: center; }

.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%;
  opacity: 1; }
  .filters-toolbar__input.hidden {
    opacity: 0; }
  .filters-toolbar__input option {
    text-overflow: ellipsis;
    overflow: hidden; }

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

.filters-toolbar__product-count {
  font-size: 0.92308em;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
  @media only screen and (max-width: 766px) {
    .filters-toolbar__product-count {
      font-size: 0.84615em; } }

/* ===========================================================*/
.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: 766px) {
    .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: 766px) {
    .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: 766px) {
    .feature-row__image {
      order: 1; } }

.feature-row__text {
  padding-top: 20px;
  padding-bottom: 20px; }
  @media only screen and (max-width: 766px) {
    .feature-row__text {
      order: 2;
      padding-bottom: 0; } }
  .feature-row__text h3, .feature-row__text .h3 {
    font-weight: 700; }

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

  .feature-row__text--right {
    padding-right: 20px; } }
@media only screen and (min-width: 767px) {
  .featured-row__subtext {
    font-size: 1.15385em; } }
.hero {
  position: relative;
  width: 100%;
  padding: 4%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-attachment: fixed; }
  .hero .hero__inner {
    padding: 35px;
    margin: 0 auto;
    max-width: 550px;
    color: black;
    background-color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3); }
  .hero .mega-title {
    color: black;
    text-transform: uppercase;
    margin-bottom: 15px; }
    .hero .mega-title:after {
      content: "";
      display: block;
      height: 2px;
      width: 60px;
      margin: 10px auto;
      background-color: black; }
  .hero .mega-subtitle {
    color: black;
    margin-bottom: 25px; }
  @media only screen and (max-width: 766px) {
    .hero {
      padding: 6%; }
      .hero .hero__inner {
        padding: 15px; } }

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

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

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

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

.quotes-wrapper .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 35px; }
  .quotes-wrapper .slick-dots li button::before {
    color: black;
    opacity: 0.2; }

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

.logo-bar .sliderbox {
  margin: 0; }
  .logo-bar .sliderbox .item {
    float: left;
    width: 16.66667%;
    padding: 0 10px;
    display: table; }
    .logo-bar .sliderbox .item .logo-bar__link {
      display: table-cell;
      height: 90px;
      width: 100%;
      padding: 10px;
      vertical-align: middle;
      text-align: center;
      border: 1px solid #e8e9eb; }
      .logo-bar .sliderbox .item .logo-bar__link img {
        max-height: 70px;
        margin: auto; }

.map-section {
  position: relative;
  height: 650px;
  width: 100%;
  overflow: hidden; }
  @media only screen and (min-width: 767px) {
    .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: 20px;
  margin-top: 15px;
  width: 100%;
  text-align: center;
  z-index: 3; }
  @media only screen and (min-width: 767px) {
    .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: 767px) {
    .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: 766px) {
  .image-bar {
    max-width: 400px;
    margin: 0 auto; } }
.image-bar__item {
  display: block;
  color: black;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover; }

.image-bar__link:focus .image-bar__content {
  border-color: white; }

.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: 767px) {
    .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: white;
  opacity: 0.7; }

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

.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: 766px) {
    .custom-content {
      margin-bottom: -15px;
      margin-left: -15px; } }

.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: 766px) {
    .custom__item {
      -webkit-flex: 0 0 auto;
      -moz-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      padding-left: 15px;
      margin-bottom: 15px; }
      .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; }

.align--top-middle {
  text-align: center; }

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

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

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

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

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

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

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

.newsletter-section {
  padding: 35px 0; }

.index-section--newsletter-background {
  background-color: #48a6ae;
  border: 1px solid #e8e9eb; }

/* ===========================================================
   NexGeek - style
 * ===========================================================*/
.b-gutter-size {
  padding: 0 55px; }

.store-info h5, .store-info .h5,
.latest-blog h3.article__title,
.latest-blog .article__title.h3 {
  font-family: "Roboto", "Calibri", "Calibri", sans-serif; }

.no-border {
  border: 0; }

.no-text-underline {
  text-decoration: none !important; }

.display-table {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin: 0 !important; }

.display-table-cell {
  float: none;
  display: table-cell;
  vertical-align: middle;
  padding: 0; }

.layout-boxed {
  max-width: 1300px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
  background-color: #fff; }
  .layout-boxed .b-gutter-size {
    padding-left: 35px;
    padding-right: 35px; }

#site-scroll {
  color: #fff;
  line-height: 40px;
  cursor: pointer;
  font-size: 20px;
  height: 40px;
  right: 30px;
  position: fixed;
  border-radius: 3px;
  text-align: center;
  transition: all 0.3s ease 0s;
  width: 40px;
  bottom: 50px;
  z-index: 444;
  display: none;
  background: #ffad00; }

.section-header .h3 {
  font-size: 18px;
  font-weight: 700; }
  .section-header .h3 span {
    position: relative; }
  .section-header .h3 span:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 50px;
    left: -62px;
    background: #075159;
    top: 11px; }
  .section-header .h3 span:before {
    content: "";
    position: absolute;
    height: 2px;
    width: 50px;
    right: -62px;
    background: #075159;
    top: 11px; }

.spr-badge-caption {
  display: none; }

.spr-starrating .spr-icon,
.spr-starratings .spr-icon {
  font-size: 10px !important;
  opacity: 1 !important;
  color: #f5a100 !important;
  margin: 0 1px; }

.spr-starrating .spr-icon.spr-icon-star-empty,
.spr-starratings .spr-icon.spr-icon-star-empty {
  opacity: 1; }

.product-rows {
  margin-bottom: -35px; }

.collection-tabs {
  border: 0;
  text-align: center;
  margin-bottom: 30px; }
  .collection-tabs li {
    float: none;
    display: inline-block;
    margin: 0 3px; }
    .collection-tabs li a {
      display: inline-block;
      padding: 5px 12px;
      text-transform: uppercase;
      position: relative;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 1px;
      color: #929292;
      background-color: #f6f6f6;
      border: 2px solid #e8e8e8; }
      .collection-tabs li a:hover, .collection-tabs li a:focus {
        color: #075159;
        background-color: #ffffff; }
    .collection-tabs li.active a {
      color: #075159;
      background-color: #ffffff;
      border-color: #075159; }
      .collection-tabs li.active a:after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border: 7px solid transparent;
        position: absolute;
        bottom: -16px;
        left: 50%;
        z-index: 1;
        margin-left: -7px;
        border-top-color: #075159; }

.tab-container .tab-content {
  display: none; }

.tab-content:not(.active) .grid-view-item__image {
  display: none; }

.productSlider .item {
  padding: 3px 15px; }
  @media only screen and (max-width: 766px) {
    .productSlider .item {
      padding: 3px 7px; } }

.collection-columns .column-ttl {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px; }
  .collection-columns .column-ttl:before {
    content: "";
    position: absolute;
    height: 2px;
    width: 45px;
    left: 0;
    background: #075159;
    bottom: 0; }
.collection-columns .product-labels {
  left: 0;
  right: auto; }
  .collection-columns .product-labels .lbl {
    font-size: 10px;
    padding: 1px 3px; }
.collection-columns .grid-view_image {
  float: left;
  margin-right: 25px; }
.collection-columns .grid-view-item {
  box-shadow: none; }
  .collection-columns .grid-view-item .details {
    padding: 0 20px 0 30px;
    text-align: left; }
.collection-columns .large-up--one-half .grid-view_image {
  max-width: 110px; }
.collection-columns .large-up--one-third .grid-view_image {
  max-width: 100px; }
.collection-columns .large-up--one-quarter .grid-view_image {
  max-width: 90px; }

.index-section.imgBanners {
  padding-bottom: 0; }

.image-bnrs .grid__item {
  text-align: center;
  margin-bottom: 30px; }
.image-bnrs a {
  display: block;
  position: relative;
  overflow: hidden; }
  .image-bnrs a * {
    -ms-transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear; }
  .image-bnrs a img {
    display: block;
    width: 100%; }
  .image-bnrs a:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    right: 10px;
    border: 1px solid #fff;
    opacity: 0.5;
    z-index: 1; }
  .image-bnrs a span {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4); }
  .image-bnrs a:hover {
    opacity: 1; }
    .image-bnrs a:hover span {
      opacity: 0; }
    .image-bnrs a:hover img {
      -ms-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      transform: scale(1.1); }
@media only screen and (max-width: 766px) {
  .image-bnrs .grid__item {
    float: none;
    max-width: 400px;
    margin: 0 auto 15px; }
  .image-bnrs a span {
    font-size: 16px; } }

.imgBnrOuter .grid {
  margin: 0 -10px; }
  .imgBnrOuter .grid .grid__item:not(.img-bnr) {
    padding: 0; }
.imgBnrOuter .img-bnr {
  text-align: center;
  padding: 10px; }
.imgBnrOuter .inner {
  position: relative;
  overflow: hidden; }
  .imgBnrOuter .inner * {
    -ms-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; }
  .imgBnrOuter .inner img {
    display: block;
    width: 100%; }
  .imgBnrOuter .inner .ttl {
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.1;
    display: inline-block;
    padding: 10px 20px;
    max-width: 90%;
    position: absolute;
    left: 15px;
    bottom: 20px;
    background-color: #fff; }
    .imgBnrOuter .inner .ttl.left {
      left: 20px;
      right: auto; }
    .imgBnrOuter .inner .ttl.right {
      right: 20px;
      left: auto; }
    .imgBnrOuter .inner .ttl.middle {
      left: 50%;
      right: 0;
      display: table;
      margin: 0 auto;
      -ms-transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%); }
  .imgBnrOuter .inner:hover a {
    opacity: 1; }
  .imgBnrOuter .inner:hover .ttl {
    background-color: #fff; }
  .imgBnrOuter .inner:hover img {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
@media only screen and (max-width: 766px) {
  .imgBnrOuter a {
    opacity: 1; }
  .imgBnrOuter .ttl {
    background-color: #fff; } }
@media only screen and (max-width: 479px) {
  .imgBnrOuter .grid .grid__item {
    width: 100%; } }

.store-info h5, .store-info .h5 {
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 16px;
  font-weight: 600; }
.store-info .fa {
  margin-right: 15px;
  font-size: 40px;
  vertical-align: middle;
  display: block;
  margin-bottom: 20px; }
.store-info li {
  text-transform: uppercase;
  padding: 0 20px;
  text-align: center; }
.store-info li + li {
  border-left: 1px dotted #ddd; }
@media only screen and (max-width: 766px) {
  .store-info .display-table-cell {
    display: table;
    width: 100%;
    text-align: center;
    padding-bottom: 20px; } }

.map-section__overlay {
  background: rgba(255, 255, 255, 0.8); }

.quote-wraper {
  background: #f9f9f9;
  padding: 40px; }

.quotes-slider blockquote {
  border: 0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 26px; }
.quotes-slider .authour {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
  line-height: 18px; }
  .quotes-slider .authour span {
    display: block;
    letter-spacing: 0.03em;
    font-size: 11px;
    font-weight: 400; }
.quotes-slider .slick-prev {
  left: 0; }
.quotes-slider .slick-next {
  right: 0; }

.row-text {
  background: #fff;
  padding-left: 20px; }
  .row-text h2, .row-text .h2 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px; }
  .row-text p {
    font-size: 14px;
    margin-bottom: 20px; }
  @media only screen and (max-width: 766px) {
    .row-text {
      padding-left: 0; } }

.page.section-header {
  background: #f9f9f9;
  border: 1px solid #e8e9eb;
  border-top: none; }
  .page.section-header h1, .page.section-header .h1 {
    color: #000;
    margin-bottom: 0;
    padding: 35px 0;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px; }

.latest-blog .grid__item {
  margin-bottom: 35px; }
.latest-blog .article__title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0; }
.latest-blog .article__date {
  font-size: 12px;
  color: #666; }
.latest-blog .grid__item .btn {
  padding: 0;
  background: none !important;
  border: 0; }
  .latest-blog .grid__item .btn:hover {
    opacity: 0.8;
    color: white; }
.latest-blog .wrap-blog {
  display: table; }
  .latest-blog .wrap-blog .article__grid-image,
  .latest-blog .wrap-blog .article__grid-meta {
    display: table-cell;
    vertical-align: middle;
    float: none; }
  .latest-blog .wrap-blog .article__grid-meta {
    width: 55%; }
  .latest-blog .wrap-blog .wrap-blog-inner {
    background: rgba(255, 255, 255, 0.8);
    padding-left: 20px;
    position: relative; }
.latest-blog .article__grid-excerpt {
  font-size: 12px; }

/* ===========================================================
   Product Detail Page
 * ===========================================================*/
.bredcrumbWrap {
  background: #f9f9f9;
  margin: 0 0 30px; }

.breadcrumbs {
  padding: 8px 0;
  margin-bottom: 0;
  margin: 0; }
  .breadcrumbs a {
    color: #000; }
  .breadcrumbs a,
  .breadcrumbs span {
    display: inline-block;
    padding: 0 7px 0 0;
    margin-right: 7px;
    font-size: 12px; }
    .breadcrumbs a:first-child,
    .breadcrumbs span:first-child {
      padding-left: 0; }

/* ===========================================================
   Wishlist Page
 * ===========================================================*/
.wishlist-product {
  margin: 20px 0 0 0; }
  .wishlist-product a.product-title {
    color: #000; }
  .wishlist-product li {
    border-top: 1px solid #e5e5e5;
    position: relative;
    list-style: none;
    padding: 15px 0;
    display: table;
    font-size: 12px;
    width: 100%;
    margin: 0; }
  .wishlist-product li > div {
    display: table-cell;
    vertical-align: middle; }
  .wishlist-product li:first-child {
    color: #000;
    font-family: "Roboto", "Calibri", "Calibri", sans-serif;
    font-weight: 700;
    padding: 10px 0;
    background-color: #f9f9f9;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none; }
  .wishlist-product .product_img {
    width: 100px;
    padding: 0; }
  .wishlist-product .product_name {
    text-align: left;
    padding-left: 20px; }
  .wishlist-product .product_price {
    width: 14%;
    text-align: center; }
    .wishlist-product .product_price p {
      margin-bottom: 0; }
    .wishlist-product .product_price span {
      display: inline;
      padding: 0; }
  .wishlist-product .product_stock {
    min-width: 110px;
    width: 15%; }
    .wishlist-product .product_stock.available {
      color: #49a60a; }
    .wishlist-product .product_stock.unavailable {
      color: #e64100; }
  .wishlist-product .product_add {
    width: 170px;
    text-align: center; }
    .wishlist-product .product_add .btn {
      padding: 6px 15px 5px; }
  .wishlist-product .product_remove {
    width: 40px;
    text-align: center; }
  .wishlist-product .btn-remove-wishlist {
    font-size: 16px;
    height: 34px;
    padding: 5px 9px; }
  @media only screen and (max-width: 766px) {
    .wishlist-product li:first-child {
      display: none; }
    .wishlist-product li > div {
      display: block;
      margin-bottom: 5px; }
    .wishlist-product .product_img {
      float: left;
      max-width: 100px;
      width: auto;
      margin-right: 15px; }
    .wishlist-product .product_price, .wishlist-product .product_stock {
      width: auto;
      text-align: left !important; }
    .wishlist-product .product_add, .wishlist-product .product_remove {
      display: inline-block;
      width: auto;
      margin-right: 8px; } }

.home-instagram .instagram-des {
  margin-bottom: 25px; }
.home-instagram #instafeed {
  position: relative;
  display: inline-block; }
  .home-instagram #instafeed .insta-img {
    display: inline-block;
    padding: 1px;
    float: left; }
  .home-instagram #instafeed.imthumbnail .insta-img {
    width: 12.5%; }
    .home-instagram #instafeed.imthumbnail .insta-img img {
      display: block; }
    @media only screen and (max-width: 998px) {
      .home-instagram #instafeed.imthumbnail .insta-img {
        width: 16.66%; } }
    @media only screen and (max-width: 766px) {
      .home-instagram #instafeed.imthumbnail .insta-img {
        width: 20%; } }
  .home-instagram #instafeed.imlow_resolution .insta-img {
    width: 25%; }
  .home-instagram #instafeed.imstandard_resolution .insta-img {
    width: 33.33%; }
.home-instagram .followus {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  text-align: center;
  transform: translateY(-50%);
  z-index: 666;
  height: 1px; }
.home-instagram .followus .btn {
  position: relative;
  z-index: 555;
  margin-top: -20px; }

#content_quickview {
  max-width: 800px;
  margin: 50px auto;
  background-color: #fff;
  position: relative;
  padding: 25px; }
  #content_quickview .product-photos .grid {
    margin: 0; }
    #content_quickview .product-photos .grid .grid__item {
      padding: 0; }
  #content_quickview .product-photos .product-single__thumbnail {
    opacity: 1; }
  #content_quickview .product-template__container .product-single__title {
    font-size: 18px;
    margin-bottom: 10px; }
  #content_quickview .product-info, #content_quickview p.product-single__price {
    margin-bottom: 10px; }
  #content_quickview .mfp-close {
    top: 5px;
    right: 5px; }
  #content_quickview .product-single__description {
    margin-top: 0; }
  #content_quickview .product-form__cart-submit {
    padding-left: 20px;
    padding-right: 20px; }
  #content_quickview #ProductSection-product-template .product-single {
    margin: 0; }
    #content_quickview #ProductSection-product-template .product-single .product-single__thumbnail {
      margin: 0; }
  #content_quickview .slick-prev {
    left: 15px;
    z-index: 999; }
  #content_quickview .slick-next {
    right: 15px; }
  #content_quickview .product-single .product-single__photos {
    padding: 0; }

.newsletter-wrap {
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  z-index: 999; }

#newsletter-modal {
  width: 90%;
  max-width: 550px;
  position: fixed;
  left: 50%;
  top: 50%;
  background: #fafafa;
  margin: 20px auto;
  z-index: 444;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }
  #newsletter-modal .closepopup {
    display: block;
    font-size: 19px;
    height: 30px;
    line-height: 17px;
    padding: 5px;
    position: absolute;
    right: -14px;
    top: -14px;
    width: 30px;
    z-index: 333; }
    #newsletter-modal .closepopup:hover {
      opacity: 0.8; }
  #newsletter-modal .two-fifths img {
    display: block; }

.newsletter-left {
  padding: 40px 30px; }
  .newsletter-left h2, .newsletter-left .h2 {
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    color: #000000;
    letter-spacing: 0.08em; }
  .newsletter-left .input-group__field {
    border-right: 1px solid #e8e9eb; }
  .newsletter-left .input-group {
    display: block;
    margin: 0 auto 20px;
    position: relative;
    width: 100%; }
    .newsletter-left .input-group input {
      width: 100%;
      margin: 0 0 10px 0; }
  .newsletter-left .social-icons {
    margin: 10px 0 0; }
    .newsletter-left .social-icons li {
      display: inline-block;
      margin: 0 5px;
      list-style: none; }
      .newsletter-left .social-icons li a {
        color: #000000;
        display: inline-block;
        font-size: 16px;
        width: 30px;
        height: 30px;
        line-height: 29px;
        text-align: center;
        border: 1px solid #000000;
        border-radius: 50%; }
        .newsletter-left .social-icons li a:hover {
          opacity: 0.5; }
  .newsletter-left #Subscribe {
    width: 100%;
    height: auto;
    padding: 12px 20px; }
    .newsletter-left #Subscribe:hover {
      background: !important; }

.form-border {
  border: 1px solid #e8e9eb;
  padding: 20px;
  margin-bottom: 20px; }
  .form-border h2, .form-border .h2 {
    margin-bottom: 15px; }
  .form-border label {
    font-weight: 400; }

@media only screen and (max-width: 766px) {
  #newsletter-modal {
    max-width: 400px; }
    #newsletter-modal .two-fifths {
      display: none; }
    #newsletter-modal .newsletter-left {
      padding: 30px 20px; } }
/* ===========================================================
   Contact Page
 * ===========================================================*/
.contact-template {
  margin-top: 0; }
  .contact-template .section-header {
    margin-bottom: 20px; }
  .contact-template .map {
    height: 350px; }
  .contact-template .map-section__overlay-wrapper {
    position: static;
    text-align: left; }
  .contact-template .map-section__overlay {
    left: auto;
    width: 300px; }
    .contact-template .map-section__overlay h3, .contact-template .map-section__overlay .h3 {
      margin-bottom: 10px; }

#shopify-section-contact-template .form-vertical {
  padding-right: 30px; }
  #shopify-section-contact-template .form-vertical .h2 {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 20px; }
  #shopify-section-contact-template .form-vertical textarea {
    height: 120px; }
#shopify-section-contact-template .follow-us li {
  display: inline-block;
  margin: 0 8px; }
  #shopify-section-contact-template .follow-us li a {
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 18px; }
#shopify-section-contact-template label {
  font-weight: 400; }
@media only screen and (max-width: 766px) {
  #shopify-section-contact-template .form-vertical {
    padding: 0 0 25px; }
    #shopify-section-contact-template .form-vertical textarea {
      height: 80px; } }

.open-hours {
  margin-bottom: 20px; }
  .open-hours strong {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #000; }

.contact-address {
  margin-bottom: 20px; }
  .contact-address li {
    display: table;
    padding: 5px 0; }
  .contact-address .fa {
    display: table-cell;
    vertical-align: middle;
    font-size: 16px;
    width: 25px; }
  .contact-address p {
    display: table-cell;
    vertical-align: middle; }

.template-404 h1, .template-404 .h1 {
  font-size: 40px;
  text-transform: none; }

/* ===========================================================
   FAQs Page
 * ===========================================================*/
#faq {
  margin-bottom: 12px; }
  #faq .panel-title {
    color: #555555;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0.02em;
    background: none;
    padding: 15px 15px 15px 40px;
    margin: 0;
    border-top: 1px solid #ddd;
    position: relative;
    cursor: pointer; }
    #faq .panel-title:before {
      position: absolute;
      content: "\f067";
      font-family: "FontAwesome";
      left: 15px;
      font-size: 14px; }
    #faq .panel-title.active {
      color: #000; }
      #faq .panel-title.active:before {
        content: "\f068"; }
    #faq .panel-title:hover, #faq .panel-title:focus {
      text-decoration: none; }
  #faq .panel-content {
    padding: 15px; }
  #faq .faq-body + .faq-body .panel-content {
    display: none; }

/* ===========================================================
   obook Page
 * ===========================================================*/
.lookbook-page {
  margin-bottom: 20px; }

.lookbook {
  color: #fff;
  position: relative; }
  .lookbook .grid-lookbook, .lookbook .grid-sizer {
    width: 50%;
    text-align: center; }
  .lookbook .gutter-sizer {
    width: 0px; }
  .lookbook .grid-lookbook img {
    display: block;
    margin: 0 auto; }
  .lookbook > div:hover {
    transition-duration: 0.5s; }
    .lookbook > div:hover .overlay {
      opacity: 0.1; }
    .lookbook > div:hover .btn {
      opacity: 1; }
    .lookbook > div:hover h2, .lookbook > div:hover .h2 {
      opacity: 0; }
  .lookbook .caption {
    transition-duration: 0.5s;
    position: absolute;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    top: 50%;
    z-index: 333; }
  .lookbook h2, .lookbook .h2 {
    color: #fff;
    font-size: 22px;
    letter-spacing: 0.03em;
    transition-duration: 0.5s;
    margin-bottom: -20px; }
  .lookbook .btn {
    transition-duration: 0.3s;
    opacity: 0;
    margin-top: -20px;
    position: relative;
    z-index: 555;
    padding: 10px 60px; }
  .lookbook .overlay {
    z-index: 222;
    position: absolute;
    content: " ";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.2; }

.lookbook-1 {
  margin: -30px 0; }

.lookbook2 {
  margin-top: 25px; }
  .lookbook2 .grid-lookbook, .lookbook2 .grid-sizer {
    width: 49%; }
  .lookbook2 .gutter-sizer {
    width: 2%; }
  .lookbook2 .grid-lookbook {
    float: left;
    margin-bottom: 20px; }
    .lookbook2 .grid-lookbook img {
      display: block;
      margin: 0 auto; }
    .lookbook2 .grid-lookbook:hover .btn {
      opacity: 1; }
  .lookbook2 h2, .lookbook2 .h2 {
    color: #000;
    font-size: 20px;
    letter-spacing: 1px;
    transition-duration: 0.5s;
    position: absolute;
    text-align: center;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.5);
    margin: 0;
    padding: 12px 18px; }
  .lookbook2 .btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    font-size: 16px;
    border: 0;
    letter-spacing: 0.08em;
    padding: 12px 10px; }
    .lookbook2 .btn:hover {
      background: #ef8700;
      color: white; }

/* ===========================================================
   Blog Page
 * ===========================================================*/
.blog-right.right {
  float: right; }

.sidebar-blog-post li {
  padding-bottom: 15px; }
.sidebar-blog-post .article-img {
  float: left;
  margin-right: 10px; }
.sidebar-blog-post .article-name {
  line-height: 17px;
  display: block;
  margin-bottom: 5px; }
.sidebar-blog-post .article__date {
  display: block;
  color: #888888;
  margin: 0; }

.custom-search {
  margin-bottom: 20px;
  width: 100%; }
  .custom-search .input-group-btn {
    display: table-cell;
    width: 1%; }
  .custom-search .search {
    border: 1px solid #e5e5e5;
    max-width: 100%;
    padding: 8px 10px;
    border-radius: 0;
    display: table; }
  .custom-search .search:focus {
    border: 1px solid #ccc; }
  .custom-search .search__input {
    border: none;
    display: table-cell;
    width: 100%; }
  .custom-search .btnSearch {
    border: none;
    background: none;
    color: #000;
    display: table-cell;
    width: 1%; }

.article_featured-image img {
  margin-bottom: 20px; }

.publish-detail {
  margin: 0 0 10px 0; }
  .publish-detail li {
    list-style: none;
    display: inline-block;
    margin-right: 10px; }
    .publish-detail li .fa {
      font-size: 16px; }

.inline-tags span {
  display: none; }

.inline-tags a {
  display: inline-block;
  padding: 1px 8px;
  color: #000;
  background: #f4f4f4; }

.inline-tags hr {
  margin: 15px 0; }

.comment-form h2, .comment-form .h2 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: arial; }

.blog-nav {
  margin: 0 0 40px; }

.blog-nav .fa {
  font-size: 16px;
  vertical-align: middle; }

.blog-nav a {
  color: #000; }

.comment-box {
  margin-bottom: 0; }

.comment-box li {
  padding-bottom: 0;
  margin-bottom: 15px; }

.user-comment {
  background: #fafafa;
  font-weight: 700;
  margin: 0 -15px 0;
  padding: 8px 15px; }

.user-comment .fa {
  font-size: 16px; }

.blog-right .widget-content a {
  color: #000; }
.blog-right .social-sharing {
  margin-bottom: 20px; }
.blog-right h1, .blog-right .h1 {
  text-transform: none; }
  .blog-right h1:after, .blog-right .h1:after {
    display: none !important; }

h2.sub-title, .sub-title.h2 {
  font-size: 14px;
  font-weight: 700;
  background: #f5f5f5;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 15px;
  margin-bottom: 20px;
  border: 1px solid #eee; }

#comments .comment {
  margin-bottom: 20px;
  border: 1px solid #e8e9eb;
  padding: 20px; }
#comments .comment__meta {
  margin-top: 30px;
  position: relative; }
#comments .authour {
  font-weight: 700;
  text-transform: uppercase; }
  #comments .authour:before {
    width: 30px;
    height: 2px;
    background: #000;
    position: absolute;
    top: -10px;
    content: " "; }
#comments .time {
  color: #888888; }

#comment_form {
  padding: 20px 20px 0;
  border: 1px solid #e8e9eb;
  background: #f5f5f5; }

.blog-category li {
  padding: 2px 0; }

.social-sharing {
  margin: 0 -10px 0 0; }
  .social-sharing .btn {
    font-weight: 400;
    color: #000 !important;
    padding: 0 5px;
    margin-bottom: 0;
    background: none !important;
    border: 0;
    letter-spacing: normal;
    text-transform: capitalize; }

.acor-ttl {
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid #e8e9eb;
  font-family: "Roboto", "Calibri", "Calibri", sans-serif;
  margin: 0;
  text-align: center; }
  .acor-ttl a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    opacity: 0.6; }
  .acor-ttl.active {
    border-bottom: 1px solid #000; }
    .acor-ttl.active a {
      opacity: 1; }

/* ===========================================================
   Responsive
 * ===========================================================*/
@media (max-width: 1300px) {
  #siteNav > li > a {
    padding: 0 15px; } }
@media only screen and (max-width: 998px) {
  .lookbook h2, .lookbook .h2 {
    font-size: 18px; } }
@media only screen and (max-width: 766px) {
  .b-gutter-size {
    padding-left: 20px;
    padding-right: 20px; }

  .close-announcement {
    right: 10px; }

  .notification-bar__message {
    padding: 5px 30px; }

  .lookbook .grid-lookbook, .lookbook .grid-sizer {
    width: 100%; }

  .lookbook .btn {
    padding: 10px 35px; }

  .lookbook .btn {
    margin-top: -10px; }

  .template-404 h1, .template-404 .h1 {
    font-size: 25px; }

  .comment-form {
    margin-bottom: 20px; }

  .btn {
    font-size: 12px; }

  .fa.desktop {
    display: none; }

  .fa.mobile {
    display: block; }

  .quote-wraper {
    padding: 20px 10px; }
    .quote-wraper .quotes-slider blockquote {
      font-size: 13px;
      line-height: 23px; }
    .quote-wraper .slick-prev {
      left: -27px; }
    .quote-wraper .slick-next {
      right: -30px; } }
@media only screen and (max-width: 639px) {
  .layout-boxed {
    padding: 0; }
    .layout-boxed .page-width {
      padding: 0 15px; }
    .layout-boxed .b-gutter-size {
      padding-left: 15px;
      padding-right: 15px; }

  #Slideshow-slideshow.slideshow {
    height: 200px; }

  .latest-blog .wrap-blog .article__grid-image, .latest-blog .wrap-blog .article__grid-meta {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 0 20px 0; }
  .latest-blog .wrap-blog .wrap-blog-inner {
    margin: 0;
    padding: 0; }
  .latest-blog .wrap-blog .article__grid-image img {
    margin: 0 auto; }

  .b-gutter-size {
    padding-left: 10px;
    padding-right: 10px; }

  input, select, button {
    height: auto; }

  .cart td {
    padding: 20px 5px; }

  .cart td.cart__image-wrapper, .cart__update--show .cart__update-wrapper {
    padding-left: 0; }

  .page.section-header h1, .page.section-header .h1 {
    padding: 20px 0;
    font-size: 18px; }

  .contact-template .map {
    height: 250px; }
  .contact-template .map-section__overlay {
    display: none; }

  .lookbook2 .grid-lookbook, .lookbook2 .grid-sizer {
    width: 100%; }

  .spr-summary-actions-newreview {
    display: block;
    margin: 10px 0;
    font-weight: 400; }

  .modal {
    max-width: 95%;
    width: 100%; }
    .modal .buttonSet .btn {
      font-size: 11px;
      margin: 0 0 5px 0; }
    .modal .modal-prod-img {
      max-width: 70px; }
    .modal .prod-detail {
      padding-left: 90px; } }
@media only screen and (max-width: 479px) {
  .slideshow .mega-subtitle {
    display: none; }

  #ProductSection-product-template .product-form__cart-submit {
    padding: 6px 20px; } }
.eg-cc-window {
  opacity: 0.8 !important; }

.ngmulltistore #preview-bar-iframe {
  display: none; }

div#shopify-section-template-shipping-and-payment .context-wrapper, div#shopify-section-return-template .context-wrapper {
  margin-bottom: 25px; }

/* Custom Css */
.subLinks li.lvl-2, .tags--collection li {
  display: inline-block;
  margin-right: 5px; }

.tags--collection li a {
  color: #000;
  font-weight: 500; }

.tags--collection .sub-collection-active a {
  color: #075159;
  font-weight: 500; }

#siteNav > li .megamenu li.lvl-1 .subLinks li .site-nav:hover {
  color: #075159; }

#siteNav > li .megamenu li.lvl-1 .subLinks li:last-child .site-nav span {
  display: none; }

.vustomcollection-bg {
  padding-top: 0px;
  padding-bottom: 0px; }
