/*============================================================================
  Famiza | 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
==============================================================================
  Table of Contents

  #Saas Helpers
  #Variables
  #Typography 
  #Slick Slider
  #Global Style
  #Grid
  #Forms, Table, Inputs, Buttons, Links, Icons, Lists
  #Site Nav and Dropdowns
  #Animation Classes and Keyframes
  #Templates
  #Modules
  #Home Page
  #Collection Page
  #Product Detail Page
  #Blog Page
  #Contact Page
  #My Account Pages
  #FAQs Page
  #Lookbook Page
  #Popups


/* ===========================================================
   Saas Helpers
 * ===========================================================*/
/*============================================================================
  Convert pixels to ems
  eg. for a relational value of 12px write em(12) when the parent is 16px
  if the parent is another value say 24px write em(12, 24)
  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_px-to-em.scss
==============================================================================*/
/*============================================================================
  Strips the unit from a number.
  @param {Number (With Unit)} $value
  @example scss - Usage
    $dimension: strip-units(10em);
  @example css - CSS Output
    $dimension: 10;
  @return {Number (Unitless)}
  based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/functions/_strip-units.scss
==============================================================================*/
/*================ #Mixins ================*/
/*============================================================================
  Prefix mixin for generating vendor prefixes.
  Based on https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/addons/_prefixer.scss

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

    // Output:
    .element {
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
    }
==============================================================================*/
/*================ Media Query Mixin ================*/
/*================ Responsive Show/Hide Helper ================*/
/*================ Responsive Text Alignment Helper ================*/
/*============================================================================
  Flexbox prefix mixins from Bourbon
    https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_flex-box.scss
==============================================================================*/
.incenter, .loadingBox {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

/*============================================================================
  #Variables
 *=============================================================================*/
/* 1400 */
/*================ Drawers ================*/
/* ===========================================================
   #Typography
 * ===========================================================*/
/*================ Gift Cards ================*/
/*================ Z-index ================*/
/* ===========================================================
   Slick Slider
 * ===========================================================*/
/*===========================================================================
  Slick Slider 1.6.0

  - If upgrading Slick's styles, use the following variables/functions
    instead of the slick defaults (from slick-theme.scss)
  - This file includes default slick.scss styles (at Slick Slider SCSS)
    and slick-theme.scss (at Slick Slider Theme). Upgrade each area individually.
  - Remove `outline: none` from `.slick-dots li button`
==============================================================================*/
.slick-slider {
  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-loading .slick-list {
  background: white url(//cdn.shopify.com/s/files/1/1362/8025/t/16/assets/ajax-loader.gif?v=41356863302472015721636543733) center center no-repeat; }

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  padding: 0;
  background: transparent;
  color: transparent;
  top: 50%;
  border: none;
  z-index: 99;
  -ms-transition: 0.8s;
  -webkit-transition: 0.8s;
  transition: 0.8s; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "FontAwesome";
    font-size: 28px;
    line-height: 1;
    color: black;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

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

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

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

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

/* ===========================================================
   Global Style
 * ===========================================================*/
*,
*::before,
*::after {
  box-sizing: border-box; }

body {
  margin: 0;
  color: #444444; }

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

a {
  background-color: transparent; }

b,
strong {
  font-weight: 700; }

em {
  font-style: italic; }

small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

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

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

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

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

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

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

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

td,
th {
  padding: 0; }

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

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

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

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

.grid__item {
  float: left;
  padding-left: 30px;
  width: 100%; }
  @media only screen and (max-width: 749px) {
    .grid__item {
      padding-left: 22px; } }
  .grid__item[class*="--push"] {
    position: relative; }

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

/* Whole */
.one-whole {
  width: 100%; }

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

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

.two-thirds {
  width: 66.66667%; }

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

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

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

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

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

.two-sixths {
  width: 33.33333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.66667%; }

.five-sixths {
  width: 83.33333%; }

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

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

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

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

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

.two-twelfths {
  width: 16.66667%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.33333%; }

.five-twelfths {
  width: 41.66667%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.33333%; }

.eight-twelfths {
  width: 66.66667%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.33333%; }

.eleven-twelfths {
  width: 91.66667%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .widescreen--text-center {
    text-align: center !important; } }
@media only screen and (max-width: 749px) {
  /* 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: 750px) {
  /* 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%; } }
.clearfix {
  *zoom: 1; }
  .clearfix::after {
    content: '';
    display: table;
    clear: both; }

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

.visibility-hidden {
  visibility: hidden; }

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

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

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

.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  background-color: white;
  padding: 10px;
  opacity: 1;
  z-index: 10000;
  transition: none; }

.container {
  width: 100%; }
  @media only screen and (min-width: 750px) {
    .container {
      padding-left: 30px;
      padding-right: 30px; } }

body,
html {
  background-color: white; }

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

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

.section-header {
  margin-bottom: 15px; }
  @media only screen and (min-width: 750px) {
    .section-header {
      margin-bottom: 30px; } }
  .section-header .page-title {
    margin-bottom: 0; }

.page-title {
  position: relative; }
  .page-title:before {
    position: absolute;
    bottom: -10px;
    width: 30px;
    height: 2px;
    content: "";
    background: #2d5ef9; }

/* ===========================================================
    #Forms, Table, Inputs, Buttons, Links, Icons, Lists
 * ===========================================================*/
blockquote {
  font-size: 1.38462em;
  font-style: normal;
  text-align: center;
  padding: 0 30px;
  margin: 0; }
  .rte blockquote {
    border-color: #e7e7e7;
    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,
input,
textarea,
button,
select {
  font-size: 13px;
  font-family: "Roboto", "HelveticaNeue", "Helvetica Neue", sans-serif;
  line-height: 1.5; }

@media only screen and (max-width: 989px) {
  input,
  textarea,
  select,
  button {
    font-size: 16px; } }
h1, .h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0 0 25px;
  font-family: "Roboto Condensed", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-transform: uppercase;
  color: #010a26; }
  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: 22px; }
  @media only screen and (max-width: 749px) {
    h1, .h1 {
      font-size: 20px; } }

h2, .h2 {
  font-size: 20px; }
  @media only screen and (max-width: 749px) {
    h2, .h2 {
      font-size: 20px; } }

h3, .h3 {
  font-size: 19px; }
  @media only screen and (max-width: 749px) {
    h3, .h3 {
      font-size: 19px; } }

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

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

/*================ RTE headings ================*/
.rte {
  color: #444444;
  margin-bottom: 15px; }
  .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: 20px;
    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: 20px; }
  .rte-setting:last-child {
    margin-bottom: 0; }

p {
  color: #444444;
  margin: 0 0 20px; }
  @media only screen and (max-width: 749px) {
    p {
      font-size: 0.92308em; } }
  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: 8px;
  font-size: 2.92308em; }

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

.hero__inner .mega-title {
  font-size: 2.61538em; }

@media only screen and (min-width: 1200px) {
  .hero__inner .mega-title--large {
    font-size: 4.23077em; } }

@media only screen and (min-width: 750px) {
  .mega-subtitle {
    font-size: 1.07692em; } }
.mega-subtitle p {
  color: inherit; }

.mega-subtitle--large {
  font-size: 1.15385em; }
  @media only screen and (min-width: 750px) {
    .mega-subtitle--large {
      font-size: 1em; } }

.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 .icon {
    width: 30px;
    height: 30px; }

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

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

.rte img {
  height: auto; }
.rte table {
  table-layout: fixed; }
.rte ul,
.rte ol {
  margin: 0 0 7.5px 15px; }
  .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) {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px; }

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

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

a {
  text-decoration: none; }
  a:hover, a:focus {
    opacity: 0.8; }
  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;
  padding: 6px 15px;
  border: 2px solid #f56943;
  background-color: #f56943;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: normal;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  -ms-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s; }
  @media only screen and (min-width: 750px) {
    .btn {
      padding: 6px 18px; } }
  .btn:hover, .btn:focus {
    background-color: white;
    color: #f56943;
    opacity: 1; }
  .btn .icon-arrow-right,
  .btn .icon-arrow-left {
    height: 9px; }
  .btn[disabled] {
    cursor: default;
    opacity: 0.5;
    background-color: white;
    color: #f56943; }

.btn-secondary {
  background-color: #62bfc4;
  color: white;
  border-color: #62bfc4; }
  .btn-secondary:hover {
    background-color: white;
    color: #62bfc4;
    opacity: 1; }

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

@media only screen and (max-width: 749px) {
  .btn--small-wide {
    padding-left: 50px;
    padding-right: 50px; } }
.btn--link {
  background-color: transparent;
  border: 0;
  margin: 0;
  text-align: left; }
  .btn--link:hover, .btn--link:focus {
    opacity: 0.8; }
  .btn--link .icon {
    vertical-align: middle; }

.hover-line a:hover {
  text-decoration: underline; }

.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: 749px) {
    .return-link-wrapper {
      margin-bottom: -31px; }
      .return-link-wrapper .btn {
        display: block; } }

table {
  margin-bottom: 15px; }

th {
  font-weight: 700; }

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

/*============================================================================
  Responsive tables, defined with .responsive-table on table element.
==============================================================================*/
@media only screen and (max-width: 749px) {
  .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 #e7e7e7; } }
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 {
  margin: 0 0 30px;
  padding: 15px;
  border: 1px solid #e7e7e7; }

legend {
  border: 0;
  padding: 0; }

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

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

input,
textarea,
select {
  border: 1px solid #e7e7e7;
  background-color: white;
  color: #444444;
  max-width: 100%;
  line-height: 1.2;
  border-radius: 3px; }
  input:focus,
  textarea:focus,
  select:focus {
    border-color: #cecece; }
  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; }

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

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/1362/8025/t/16/assets/ico-select.png?v=63924706348235996681636543744);
  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: 750px) {
    select {
      padding-top: 10px;
      padding-left: 18px;
      padding-bottom: 10px; } }
  .ie9 select {
    padding-right: 10px;
    background-image: none; }

optgroup {
  font-weight: 700; }

option {
  background-color: white; }

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

/*================ Form labels ================*/
.label--hidden {
  position: absolute;
  height: 0;
  width: 0;
  margin-bottom: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); }
  .ie9 .label--hidden {
    position: static;
    height: auto;
    width: auto;
    margin-bottom: 2px;
    overflow: visible;
    clip: initial; }

::-webkit-input-placeholder {
  color: #444444;
  opacity: 0.6; }

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

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

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

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

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

.form-vertical input,
.form-vertical select,
.form-vertical textarea {
  display: block;
  width: 100%;
  margin-bottom: 8.33333px; }
.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: 750px) {
    .note,
    .form--success,
    .errors {
      padding: 10px; } }

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

.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: 42px;
  padding-top: 0;
  padding-bottom: 0; }
  @media only screen and (min-width: 750px) {
    .input-group__field,
    .input-group__btn .btn {
      height: 46px; } }

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

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

/* ===========================================================
   #Site Nav and Dropdowns 
 * ===========================================================*/
#shopify-section-megamenu {
  width: 100%;
  display: inline-block; }

.site-navigation {
  position: relative;
  background: #3e4040; }
  .site-navigation li .fa-home {
    font-size: 18px;
    vertical-align: middle; }

@media only screen and (min-width: 990px) {
  #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;
    display: block;
    opacity: 1;
    -webkit-font-smoothing: antialiased;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em; }
  #siteNav > li {
    display: inline-block;
    text-align: left; }
    #siteNav > li.hover > a {
      color: #ffffff;
      background-color: #f56943; }
    #siteNav > li > a {
      color: #fff;
      padding: 0 20px;
      text-transform: uppercase;
      position: relative;
      line-height: 40px; }
      #siteNav > li > a:hover, #siteNav > li > a.active {
        color: #ffffff;
        background-color: #f56943; }
      #siteNav > li > a .navLbl {
        color: #ff8d6e;
        background-color: #000000;
        font-size: 11px;
        font-weight: 400;
        line-height: normal;
        display: inline-block;
        padding: 1px 5px;
        border-radius: 3px;
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
        position: absolute;
        top: -10px;
        left: 50%; }
        #siteNav > li > a .navLbl:after {
          content: " ";
          display: block;
          width: 0;
          height: 0;
          border: 4px solid transparent;
          border-top-color: #000000;
          border-left-color: #000000;
          position: absolute;
          bottom: -5px;
          left: 0; }
    #siteNav > li .megamenu {
      opacity: 0;
      visibility: hidden;
      padding: 25px;
      width: 100%;
      position: absolute;
      top: 59px;
      left: 0;
      z-index: 999;
      background-color: #ffffff;
      box-shadow: 0 0 5px 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 .megamenu ul.mmWrapper {
        max-width: 1170px;
        margin: 0 auto; }
      #siteNav > li .megamenu li.lvl-1 {
        margin-bottom: 25px; }
        #siteNav > li .megamenu li.lvl-1 a.lvl-1 {
          text-transform: uppercase;
          color: #f8613e;
          padding: 0 0 5px; }
          margin-top
          #siteNav > li .megamenu li.lvl-1 a.lvl-1:hover {
            color: #011640; }
          #siteNav > li .megamenu li.lvl-1 a.lvl-1 .title {
            display: block; }
        #siteNav > li .megamenu li.lvl-1 li .site-nav {
          color: #000;
          padding: 3px 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: #011640;
            -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: #011640; }
            #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 .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 > h5, #siteNav > li .megamenu .productCol > .h5 {
          color: #f8613e;
          font-size: 16px;
          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, #siteNav > li .dropdown ul {
      opacity: 0;
      visibility: hidden;
      width: 250px;
      position: absolute;
      top: 59px;
      left: 0;
      z-index: 999;
      box-shadow: 0 0 5px 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 #ddd;
      position: relative; }
      #siteNav > li ul.dropdown li:first-child {
        border: 0 none; }
      #siteNav > li ul.dropdown li a {
        color: #000;
        text-transform: capitalize;
        font-size: 13px;
        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: 989px) {
  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; }

  .js-mobile-nav-toggle .icon {
    display: none; }
  .js-mobile-nav-toggle.mobile-nav--open .icon-hamburger, .js-mobile-nav-toggle.mobile-nav--close .icon-close {
    display: inline-block; }

  .mobile-nav-wrapper {
    width: 270px;
    height: 100%;
    position: fixed;
    left: -270px;
    top: 0;
    z-index: 999;
    background-color: #fff;
    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 #ccc;
      position: relative; }
      #MobileNav li.grid__item {
        float: none;
        padding: 0; }
      #MobileNav li a {
        color: #000;
        text-decoration: none;
        display: block;
        padding: 8px 45px 8px 10px;
        opacity: 1;
        -webkit-font-smoothing: antialiased;
        font-size: 15px;
        font-weight: 400;
        letter-spacing: 0.05em; }
        #MobileNav li a .fa {
          color: #000;
          display: block;
          width: 40px;
          height: 40px;
          line-height: 40px;
          position: absolute;
          right: 0;
          top: 0;
          border-left: 1px solid #ccc;
          text-align: center; }
      #MobileNav li ul {
        display: none; }
      #MobileNav li li a {
        padding-left: 20px; }
      #MobileNav li li li a {
        padding-left: 30px; }
      #MobileNav li li li li a {
        padding-left: 40px; } }
.page-width {
  padding-left: 30px;
  padding-right: 30px; }
  @media only screen and (max-width: 749px) {
    .page-width {
      padding-left: 20px;
      padding-right: 20px; } }

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

hr {
  margin: 30px 0;
  border: 0;
  border-bottom: 1px solid #e7e7e7; }

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

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

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

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

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

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

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

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

.grid--view-items {
  margin-bottom: -15px; }

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

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

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

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

.grid-view-item__link {
  display: block;
  margin: 0 auto 10px;
  position: relative; }

.grid-view-item__vendor {
  margin-top: 4px;
  color: #444444;
  font-size: 0.84615em;
  text-transform: uppercase; }
  @media only screen and (max-width: 749px) {
    .grid-view-item__vendor {
      font-size: 0.76923em; } }

.grid-view-item__image {
  display: block;
  margin: 0 auto; }
  .grid-view-item--sold-out .grid-view-item__image {
    opacity: 0.4; }

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

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

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

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

.list-view-item__title {
  font-size: 1.15385em;
  min-width: 100px; }
  @media only screen and (max-width: 749px) {
    .list-view-item__title {
      font-size: 0.92308em; } }

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

.list-view-item__on-sale {
  font-size: 0.92308em; }
  @media only screen and (max-width: 749px) {
    .list-view-item__on-sale {
      display: none; } }

.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: 749px) {
    .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; }

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

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

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

/*================ Slick dots and prev/next pagination ================*/
.slick-slider .slick-dots {
  margin: 0;
  width: auto; }
  .slick-slider .slick-dots li {
    margin: 0;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    margin-left: 6px; }
    .slick-slider .slick-dots li:first-of-type {
      margin-left: 0; }
    @media only screen and (min-width: 750px) {
      .slick-slider .slick-dots li {
        width: 14px;
        height: 14px;
        margin-left: 8px; } }
    .slick-slider .slick-dots li button {
      position: relative;
      padding: 0;
      width: 10px;
      height: 10px; }
      @media only screen and (min-width: 750px) {
        .slick-slider .slick-dots li button {
          width: 14px;
          height: 14px; } }
    .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: 750px) {
        .slick-slider .slick-dots li button::before {
          width: 14px;
          height: 14px; } }
    .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: 15px;
  padding-bottom: 15px; }
  @media only screen and (min-width: 750px) {
    .index-section {
      padding-top: 30px;
      padding-bottom: 30px; } }
  .index-section:first-child {
    padding-top: 0;
    border-top: 0; }
  .index-section:last-child {
    padding-bottom: 0; }

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

.index-section--flush:first-child {
  margin-top: -15px; }
  @media only screen and (min-width: 750px) {
    .index-section--flush:first-child {
      margin-top: -30px; } }

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

@media only screen and (max-width: 749px) {
  .index-section--featured-product:first-child {
    margin-top: -12px; } }
.placeholder-svg {
  display: block;
  fill: rgba(68, 68, 68, 0.35);
  background-color: rgba(68, 68, 68, 0.1);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(68, 68, 68, 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__item {
  position: relative;
  display: block;
  text-align: center; }
  .image-bar__item .image-bar__content {
    display: block;
    position: absolute;
    width: 90%;
    top: 50%;
    left: 5%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
    .image-bar__item .image-bar__content .placeholder-svg {
      position: relative; }
  .image-bar__item .image-bar__overlay::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .image-bar__item .image-bar__caption {
    font-size: 22px;
    transition: 0.1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    padding: 20px 10px;
    background: rgba(255, 255, 255, 0.8); }
    .image-bar__item .image-bar__caption span {
      font-size: 18px;
      display: block; }

/* ===========================================================
   #Templates
 * ===========================================================*/
.template-password {
  height: 100vh; }

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

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

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

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

.password-logo .logo {
  color: #0987eb;
  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 30px; }

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

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

.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: 0 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__item--quantity {
  -webkit-flex: 0 0 100px;
  -moz-flex: 0 0 100px;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px; }

.product-form__item--submit {
  -ms-flex-preferred-size: 200px;
  -webkit-flex-basis: 200px;
  -moz-flex-basis: 200px;
  flex-basis: 200px; }

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

.product-form__cart-submit {
  display: block;
  width: 100%;
  line-height: 1.4;
  padding-left: 5px;
  padding-right: 5px;
  white-space: normal; }

@media only screen and (min-width: 750px) {
  .product-form__cart-submit--small {
    max-width: 300px; } }
.hidedropdown .selector-wrapper {
  display: none; }

.product-form .swatch {
  margin-bottom: 15px;
  width: 100%; }
  .product-form .swatch label {
    display: block;
    text-transform: uppercase;
    font-weight: 400; }
  .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: 4px;
      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 #aaa;
      box-shadow: 0 0 2px rgba(0, 0, 0, 0.3); }
  .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; }

.template-product .product-single__description,
.template-product .product-single__meta hr {
  margin: 25px 0; }

.product-single__description {
  margin-top: 30px; }

.product-single__thumbnail {
  display: block;
  margin: -2px 0 18px;
  border: 2px solid transparent; }

.product-single__thumbnails li.grid__item {
  height: auto !important; }

.product-single__thumbnail-image {
  display: block;
  box-shadow: 0px 2px 3px 0px #9E9E9E; }

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

.zoomImg {
  background-color: white; }

@media only screen and (max-width: 749px) {
  .product-single__photos {
    margin-bottom: 30px; }

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

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

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

  .thumbnails-slider--active .product-single__thumbnails {
    display: none; }
    .thumbnails-slider--active .product-single__thumbnails.slick-initialized, .ie9 .thumbnails-slider--active .product-single__thumbnails {
      display: block;
      margin: 0 auto;
      max-width: 100%; }

  .product-single__photos {
    position: relative; }

  .thumbnails-wrapper {
    position: relative;
    text-align: center; }

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

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

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

  .product-single__thumbnails-item {
    display: inline-block;
    padding-bottom: 10px;
    width: 72px;
    float: none;
    vertical-align: middle; }
    .slick-slider .product-single__thumbnails-item {
      float: left; }
    .thumbnails-slider--active .product-single__thumbnails-item {
      padding: 5px 0; } }
.collection-hero {
  position: relative;
  overflow: hidden;
  margin-top: -30px;
  margin-bottom: 20px;
  background-color: #eee; }
  @media only screen and (min-width: 750px) {
    .collection-hero {
      margin-bottom: 15px; } }

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

.collection-hero__image {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 200px;
  opacity: 1; }
  @media only screen and (min-width: 1200px) {
    .collection-hero__image {
      height: 300px; } }
  @media only screen and (max-width: 989px) {
    .collection-hero__image {
      height: 160px; } }
  @media only screen and (max-width: 480px) {
    .collection-hero__image {
      height: 100px; } }

.collection-hero__title-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

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

.template-blog .social-sharing {
  margin-bottom: 7.5px; }

.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: 20px 15px; }
  .cart td.cart__image-wrapper {
    padding-left: 12px;
    position: relative; }
.cart th {
  font-weight: 400;
  padding: 10px 0 8px;
  background: #f5f5f5;
  text-transform: uppercase;
  padding-left: 15px;
  padding-right: 15px; }
.cart .cart__meta {
  padding-right: 15px; }
.cart .qtyField {
  margin: 0 auto; }
  .cart .qtyField a {
    height: 35px;
    width: 35px;
    line-height: 35px;
    padding: 0; }
    .cart .qtyField a .icon {
      height: 10px;
      width: 10px; }
  .cart .qtyField .cart__qty-input {
    height: 37px;
    width: 40px;
    margin-top: -1px; }
.cart .remove-large {
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 5; }

.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: 749px) {
    .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: 1.15385em;
  font-family: "Roboto Condensed", "HelveticaNeue", "Helvetica Neue", sans-serif;
  color: #010a26;
  font-weight: 700; }

.cart__subtotal {
  padding-left: 15px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em; }
  @media only screen and (min-width: 750px) {
    .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: 750px) {
    .cart__savings-amount {
      padding-left: 30px;
      min-width: 150px;
      display: inline-block; } }

.solid-border {
  border: 1px solid #e7e7e7; }

.cart__footer {
  padding-top: 15px; }
  .cart__footer .solid-border {
    padding: 20px; }
  .cart__footer h5, .cart__footer .h5, .cart__footer h5 label, .cart__footer .h5 label, .cart__footer .cart__subtotal-title {
    text-transform: uppercase;
    font-size: 15px;
    font-family: "Roboto", "HelveticaNeue", "Helvetica Neue", sans-serif; }
  .cart__footer .cart__subtotal-title {
    font-weight: 700;
    font-size: 18px; }
  .cart__footer .cart-update, .cart__footer .checkout {
    width: 100%;
    height: 37px; }
  .cart__footer .cart-update {
    margin-bottom: 20px; }

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

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

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

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

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

.cart__image-wrapper a {
  display: block; }

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

  .cart__meta {
    max-width: 300px; }

  .cart__remove {
    margin-top: 4px;
    font-size: 15px;
    padding: 0;
    height: 25px;
    width: 25px;
    text-align: center;
    vertical-align: middle;
    line-height: 21px; }
    .cart__remove .fa {
      margin-right: -2px; }

  .cart__qty {
    text-align: center; } }
@media only screen and (max-width: 749px) {
  .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: 20px; }

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

/* ===========================================================
   #Modules
 * ===========================================================*/
h1.site-header__logo img, .site-header__logo.h1 img {
  display: block;
  opacity: 1; }

.site-header {
  background-color: white;
  position: relative; }
  @media only screen and (max-width: 749px) {
    .site-header {
      border-bottom: 1px solid #e7e7e7;
      padding: 0; } }

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

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

.site-header__logo-image:hover {
  opacity: 1; }
@media only screen and (min-width: 750px) {
  .site-header__logo-image {
    margin: 0 auto; } }

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

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

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

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

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

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

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

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

.site-header__cart-count {
  display: block;
  position: absolute;
  top: -10px;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  line-height: 20px;
  font-size: 11px; }
  @media only screen and (min-width: 750px) {
    .logo--center .site-header__cart-count {
      right: 13px; }
    .logo--left .site-header__cart-count {
      left: 14px;
      top: -10px; } }

@media only screen and (max-width: 749px) {
  .site-header__cart-count {
    top: 14px;
    left: 22px;
    border-radius: 11px;
    min-width: 19px;
    height: 19px; }
    .site-header__cart-count span {
      padding: 4px 6px;
      font-size: 12px; } }
.site-header .icon-search,
.site-header .icon-hamburger,
.site-header .icon-close,
.site-header .icon-cart {
  height: 30px; }
  @media only screen and (min-width: 750px) {
    .site-header .icon-search,
    .site-header .icon-hamburger,
    .site-header .icon-close,
    .site-header .icon-cart {
      margin-right: 3px; } }

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

  .site-header__search-toggle,
  .site-header__account {
    display: inline-block;
    vertical-align: middle;
    padding: 18px 8px;
    margin: 0; }
    .site-header__icons--plus .site-header__search-toggle, .site-header__icons--plus
    .site-header__account {
      padding: 18px 6px; } }
.notification-bar {
  text-align: center;
  position: relative;
  z-index: 10;
  display: none; }
  @media only screen and (max-width: 479px) {
    .notification-bar.mobilehide {
      display: none !important; } }

.notification-bar__message {
  display: block;
  font-size: 12px;
  font-weight: 400;
  padding: 10px 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase; }
  @media only screen and (min-width: 750px) {
    .notification-bar__message {
      padding: 10px 30px; } }

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

.top-header {
  height: 40px; }
  .top-header .currency-picker {
    float: left;
    border-bottom: 0;
    border-top: 0;
    border-radius: 0;
    height: 39px;
    font-size: 13px;
    color: #444444; }
  .top-header .call-us {
    float: left;
    margin-left: 15px;
    line-height: 40px;
    font-size: 14px; }

.site-header__search {
  float: right; }
  .site-header__search .search-header__input {
    color: #000;
    font-size: 14px;
    border-radius: 0;
    width: 450px;
    padding-right: 0;
    height: 38px;
    float: left; }
  .site-header__search .btnSearch {
    background: none;
    height: 40px;
    padding: 0 15px;
    border-top: 0;
    border-bottom: 0;
    border-left: 0;
    outline: none !important; }

.customer-links {
  float: right;
  margin: 0; }
  .customer-links li {
    float: left;
    height: 40px; }
  .customer-links a {
    line-height: 37px;
    font-size: 14px;
    color: #444444;
    padding: 10px 20px; }
    .customer-links a:hover {
      color: black;
      text-decoration: none; }
  .customer-links .fa {
    font-size: 15px; }
  .customer-links li.wishlist .fa {
    font-size: 14px; }

p.freeShiping {
  font-size: 13px;
  text-transform: uppercase;
  color: #000;
  float: right;
  display: table;
  letter-spacing: 0.03em; }
  p.freeShiping .icon {
    width: 45px;
    height: 45px;
    margin-right: 10px;
    display: table; }
  p.freeShiping span {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    line-height: 19px; }
  p.freeShiping.left {
    float: left; }

.site-cart {
  position: relative; }

a.site-header__cart {
  height: 50px;
  width: 50px;
  display: block;
  position: relative;
  float: right;
  transition: none;
  border-radius: 3px;
  text-align: center;
  color: #fff;
  margin: 22px 0 16px;
  transform: none;
  line-height: 34px;
  opacity: 1 !important; }
  a.site-header__cart .fa {
    color: #fff;
    vertical-align: baseline; }

#header-cart {
  padding: 15px;
  width: 320px;
  display: none;
  background-color: #fff;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 84px;
  right: 0;
  z-index: 55;
  border-radius: 2px; }
  #header-cart hr {
    margin: 20px 0; }
  #header-cart .btn {
    margin: 5px 3px 0; }
  #header-cart p#cart-title {
    margin-bottom: 0; }
  #header-cart #cart-title strong {
    color: #000; }

.mini-products-list li:first-child {
  padding-top: 15px; }
.mini-products-list li {
  padding-bottom: 10px;
  line-height: normal; }
  .mini-products-list li .product-details {
    padding-left: 15px;
    text-align: left; }
  .mini-products-list li .remove {
    float: right;
    margin-left: 7px; }
  .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;
      font-weight: 700;
      color: #000; }
    .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 {
    margin: 10px 0;
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee; }
    .mini-products-list li.total .product-price {
      float: right;
      font-weight: 700;
      font-size: 16px; }
.mini-products-list li.buttonSet {
  padding-bottom: 0; }

.stickyNav {
  position: fixed;
  top: 0;
  z-index: 444;
  width: 100%; }
  .stickyNav .sticky-logo {
    display: table; }
    .stickyNav .sticky-logo a {
      color: #fff; }
  .stickyNav #siteNav > li > a .navLbl {
    display: none; }

.sticky-logo {
  float: left;
  display: table;
  height: 50px;
  margin-left: 30px;
  height: 40px;
  display: none; }
  .sticky-logo a {
    display: table-cell;
    vertical-align: middle; }
  .sticky-logo img {
    max-height: 20px; }

.stickyCart {
  position: fixed;
  right: 80px;
  top: 0;
  z-index: 555; }
  .stickyCart .site-header__cart {
    margin: 0;
    padding: 0;
    height: auto;
    width: auto;
    line-height: 43px;
    background: none;
    font-size: 17px; }
  .stickyCart .site-header__cart-count {
    left: 12px;
    top: 5px; }
  .stickyCart #header-cart {
    top: 41px;
    right: -20px; }

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

.article__title {
  margin-bottom: 10px; }

.article__author {
  margin-right: 10px; }

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

.article__tags {
  margin-bottom: 15px; }

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

.grid--blog {
  margin-bottom: -30px;
  overflow: auto; }

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

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

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

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

.article__list-image {
  margin: 0 auto; }

.sidebar {
  margin-top: 40px; }

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

.pagination {
  text-align: center;
  list-style: none;
  font-size: 1.15385em;
  padding-top: 30px; }
  .pagination li {
    display: inline-block; }
  .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: middle;
    width: 16px;
    height: 16px;
    margin-right: 4px; }
  .btn--share .fa-facebook-square {
    color: #3b5998; }
  .btn--share .fa-twitter {
    color: #00aced; }
  .btn--share .fa-google-plus {
    color: #dd4d41; }
  .btn--share .fa-pinterest {
    color: #cb2027; }
  .btn--share .fa-envelope-o {
    color: black; }

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

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

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

.search-bar__submit,
.search-header__submit {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 0 0 5px;
  height: 100%;
  z-index: 1; }

.search-header__input,
.search-bar__input {
  background-color: transparent;
  border-radius: 3px;
  border-color: transparent;
  width: 100%;
  border: none; }
  .search-header__input::-webkit-input-placeholder,
  .search-bar__input::-webkit-input-placeholder {
    color: #444444;
    opacity: 0.6; }
  .search-header__input::-moz-placeholder,
  .search-bar__input::-moz-placeholder {
    color: #444444;
    opacity: 0.6; }
  .search-header__input:-ms-input-placeholder,
  .search-bar__input:-ms-input-placeholder {
    color: #444444;
    opacity: 0; }
  .search-header__input::-ms-input-placeholder,
  .search-bar__input::-ms-input-placeholder {
    color: #444444;
    opacity: 1; }

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

/*============================================================================
  The search submit button has pointer-events: none which also
  effects the :hover style. This forces the style to be applied.
 =============================================================================*/
.search-header__input:hover + .btn--link {
  opacity: 0.8; }

.search-bar {
  border-bottom: 1px solid #e7e7e7;
  padding: 0 15px; }

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

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

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

.search-header {
  display: inline-block;
  position: relative;
  width: 100%;
  vertical-align: middle;
  max-width: 500px; }

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

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

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

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

.modal {
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  padding: 20px;
  display: none;
  overflow: hidden;
  position: fixed;
  top: 50% !important;
  left: 50%;
  z-index: 999;
  width: 80%;
  max-width: 440px;
  text-align: center;
  bottom: auto; }
  .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; }

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

/*============================================================================
  Extends slick slider styles.
 *=============================================================================*/
.slideshow-wrapper {
  position: relative; }

.slideshow {
  overflow: hidden;
  height: 325px;
  margin-bottom: 0; }
  .slideshow.slideshow--medium {
    height: 450px; }
  .slideshow.slideshow--large {
    height: 500px; }
  @media only screen and (min-width: 1200px) {
    .slideshow {
      height: 475px; }
      .slideshow.slideshow--medium {
        height: 600px; }
      .slideshow.slideshow--large {
        height: 700px; } }
  .slideshow .slideshow__slide,
  .slideshow .slick-list,
  .slideshow .slick-track {
    height: 100%; }
  .slideshow .slick-prev,
  .slideshow .slick-next {
    top: 45%;
    height: 60px;
    margin-top: 0;
    width: 60px;
    background: #fff;
    border-radius: 50%; }
  .slideshow .slick-dots {
    bottom: 20px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%); }
    .slideshow .slick-dots li button::before {
      color: white; }

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

.slideshow__pause:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  color: white;
  background-color: #f56943;
  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;
  z-index: 3; }
.slideshow__overlay:before {
  background: none; }

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

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

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

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

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

.slideshow__video-control--play-wrapper {
  height: 30px;
  left: 0;
  right: 0;
  position: absolute; }
  @media only screen and (min-width: 750px) {
    .slideshow__video-control--play-wrapper {
      height: 45px; } }

@media only screen and (min-width: 750px) {
  .slideshow__video-control--play-wrapper--push {
    margin-top: 30px; } }
.slideshow__video-control--play {
  opacity: 0;
  color: #ea0a0a;
  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: 750px) {
      .slideshow__video-control--play .icon {
        width: 65px; } }

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

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

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

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

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

.filters-toolbar-wrapper {
  border: 1px solid #e7e7e7;
  padding: 10px 15px;
  margin-bottom: 20px; }
  @media only screen and (min-width: 750px) {
    .filters-toolbar-wrapper {
      margin-bottom: 30px; } }

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

.filters-toolbar__item {
  min-width: 33%;
  -webkit-flex: 1 1 33%;
  -moz-flex: 1 1 33%;
  -ms-flex: 1 1 33%;
  flex: 1 1 33%; }
  .no-flexbox .filters-toolbar__item {
    text-align: left !important; }
  .filters-toolbar__item .change-view {
    background: none !important;
    border: 0 none;
    float: left;
    padding: 10px 4px;
    line-height: 1;
    opacity: 0.4; }
    .filters-toolbar__item .change-view:hover, .filters-toolbar__item .change-view:focus {
      opacity: 1; }
  .filters-toolbar__item .change-view--active {
    cursor: default;
    opacity: 1; }

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

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

.filters-toolbar__input {
  -ms-transition: all ease-out 0.15s;
  -webkit-transition: all ease-out 0.15s;
  transition: all ease-out 0.15s;
  background-color: white;
  border: 0 solid transparent;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  opacity: 1; }
  .filters-toolbar__input.hidden {
    opacity: 0; }
  .filters-toolbar__input option {
    text-overflow: ellipsis;
    overflow: hidden; }

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

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

.filters-toolbar__product-count {
  font-size: 14px;
  line-height: 30px;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700; }
  @media only screen and (max-width: 749px) {
    .filters-toolbar__product-count {
      font-size: 0.84615em;
      line-height: 46px; } }

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

.newsletter {
  padding: 40px 0; }
  .newsletter .newsletter-title h3, .newsletter .newsletter-title .h3 {
    font-weight: 400;
    font-size: 25px;
    margin-bottom: 0;
    margin-top: -5px; }
  .newsletter .newsletter-title p {
    font-size: 17px;
    opacity: 0.7; }

.footer-top {
  padding: 40px 0 30px; }
  .footer-top h3, .footer-top .h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.03em; }
  .footer-top .footer-links a {
    font-size: 13px; }
    .footer-top .footer-links a:hover {
      opacity: 0.8;
      text-decoration: underline; }
  .footer-top p {
    padding-left: 25px; }

.footer-top .addressFooter {
  margin-bottom: 15px; }
  .footer-top .addressFooter li {
    min-height: 27px; }
  .footer-top .addressFooter .fa {
    float: left;
    margin: 1px 6px 6px 0;
    width: 15px;
    font-size: 18px; }
  .footer-top .addressFooter .fa-envelope-o {
    font-size: 16px; }

.footer-top ul.social li {
  display: inline-block;
  margin-right: 4px; }
  .footer-top ul.social li a {
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 32px;
    font-size: 18px;
    border-radius: 50%;
    display: block; }
    .footer-top ul.social li a:hover {
      opacity: 0.7; }

.footer-bottom {
  padding: 25px 0;
  font-size: 13px; }
  .footer-bottom #payment-methods img {
    margin: 0 3px; }

.site-footer {
  margin: 60px 0 0; }

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 750px) {
  .site-footer__payment-icons--right {
    float: right;
    margin-top: 0; } }
/* ================================================================
   Home Page
 * ===============================================================*/
#shopify-section-slideshow {
  padding-bottom: 0; }

.slideshow__title {
  text-transform: uppercase;
  font-weight: 700; }

.slideshow__subtitle {
  margin-bottom: 20px;
  font-size: 20px;
  display: block; }

.slideshow .slick-prev,
.slideshow .slick-next {
  opacity: 0; }
.slideshow:hover .slick-prev {
  opacity: 1; }
.slideshow:hover .slick-next {
  opacity: 1; }

.template-list-collections .collection-grid {
  overflow: hidden !important; }

.collection-grid .collection-grid-item__title {
  background: rgba(255, 255, 255, 0.8);
  -ms-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  top: auto;
  bottom: 0;
  margin: 0;
  color: #000; }

.collection-grid-item__title-wrapper .btn {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 15%;
  width: 70%;
  right: 15%;
  margin-top: -20px; }

.product-carousel .slick-list {
  margin: 0 -15px; }
.product-carousel .item {
  margin: 0 15px; }

.shopify-section .section-header h2, .shopify-section .section-header .h2 {
  letter-spacing: 0.03em;
  font-size: 20px;
  color: #010a26;
  position: relative;
  z-index: 1;
  font-family: "Roboto Condensed", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 400; }

.shopify-section .section-header h2 span, .shopify-section .section-header .h2 span {
  background: #fff;
  padding: 0 20px;
  position: relative; }

.shopify-section .section-header h2:before, .shopify-section .section-header .h2:before {
  width: 100%;
  position: absolute;
  content: "";
  left: 0;
  height: 1px;
  border-top: 2px dashed #e7e7e7;
  top: 50%;
  z-index: 0; }

.tabs-listing > .nav-tabs {
  text-align: center;
  border: none;
  margin-bottom: 30px; }
  .tabs-listing > .nav-tabs > li {
    float: none;
    text-align: center;
    display: inline-block;
    margin: 0 2px; }
  .tabs-listing > .nav-tabs > li a {
    opacity: 1;
    border: 1px solid #ddd;
    border-radius: 0;
    background: #fff;
    color: #000;
    padding: 6px 20px;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.05em; }
    .tabs-listing > .nav-tabs > li a:hover {
      background: #eee; }

.tabs-listing > .nav-tabs > li.active > a {
  background: #000;
  color: #fff;
  border: 1px solid #000; }

.tabs-listing h4.grid-view-item__title, .tabs-listing .grid-view-item__title.h4,
.grid-products h4.grid-view-item__title,
.grid-products .grid-view-item__title.h4 {
  color: #000;
  font-weight: 400;
  margin-bottom: 5px;
  text-transform: capitalize;
  font-family: "Roboto", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-size: 14px; }

.tabs-listing .tab-content .tab-pane {
  display: block;
  height: 0;
  visibility: hidden;
  opacity: 0;
  -ms-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out; }
  .tabs-listing .tab-content .tab-pane.active {
    height: auto;
    visibility: visible;
    opacity: 1; }
  .tabs-listing .tab-content .tab-pane .item {
    margin: 0 15px; }

.tabs-listing .panel-default > .panel-heading {
  padding: 0;
  border-radius: 0; }
  .tabs-listing .panel-default > .panel-heading a {
    padding: 10px 15px;
    display: block;
    background: #000;
    color: #fff;
    border: 1px solid #000; }
    .tabs-listing .panel-default > .panel-heading a.collapsed {
      border: 1px solid #ddd;
      border-radius: 0;
      background: #fff;
      color: #000; }
.tabs-listing .panel-group .panel {
  border-radius: 0;
  border: none; }

.tab-content .slick-list {
  margin-left: -15px;
  margin-right: -15px; }

.grid-products .grid--view-items {
  overflow: visible; }
.grid-products .grid-view-item {
  text-align: center;
  position: relative; }
.grid-products .grid-item-image {
  position: relative;
  z-index: 1; }
  .grid-products .grid-item-image .grid-view-item__link {
    display: block;
    white-space: nowrap; }
    .grid-products .grid-item-image .grid-view-item__link:after {
      content: "";
      display: inline-block;
      width: 0px;
      height: 100%;
      vertical-align: middle; }
  .grid-products .grid-item-image .grid-view-item__image {
    display: inline-block;
    max-height: 260px;
    vertical-align: middle;
    -ms-transition: all ease-out 0.5s;
    -webkit-transition: all ease-out 0.5s;
    transition: all ease-out 0.5s; }
.grid-products .tab-pane .grid__item {
  clear: none; }

label.new,
label.on-sale,
label.sold-out {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  padding: 2px 10px;
  z-index: 3; }

label.new {
  position: absolute;
  left: 5px;
  top: 5px;
  background: #000; }

.right-tags {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 333; }

.on-sale {
  background: #e65f5f;
  margin-bottom: 5px;
  float: right; }

label.sold-out {
  background: #fff;
  color: #000;
  float: right;
  clear: right; }

.grid-products .grid-view-item__meta {
  text-align: center;
  font-size: 15px;
  font-family: "Roboto Condensed", "HelveticaNeue", "Helvetica Neue", sans-serif;
  margin-top: 5px; }

.list-view-items.grid-products .grid-view-item__meta {
  text-align: left; }
.list-view-items.grid-products .list-view-item__title-column p {
  margin-bottom: 10px; }

.product-price__price {
  color: #000;
  font-weight: 400; }

.product-price_old {
  color: #788188;
  font-size: 14px;
  font-weight: 400;
  margin-right: 3px; }

.action-buttons form {
  margin-bottom: 5px; }

.grid-products .grid-view-item .grid-view-item__image {
  -ms-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s; }

.grid-products .grid-view-item .action-buttons {
  -ms-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  margin-top: -30px; }

.grid-products .grid-view-item:hover .action-buttons {
  opacity: 1; }
.grid-products .grid-view-item:hover .grid-view-item__image {
  opacity: 0.6; }

.grid-products .grid-view-item .btn {
  width: 150px;
  border: none;
  font-size: 12px;
  display: inline-block;
  text-align: center;
  clear: both; }

.grid-products .grid-view-item .btn.btn-sold {
  background: #fff !important;
  color: #000 !important;
  padding: 0 15px;
  line-height: 50px;
  font-size: 12px;
  left: 0;
  position: absolute;
  height: 50px;
  border: none;
  width: 100%;
  opacity: 1;
  top: 5px;
  cursor: default; }

.grid-products .spr-badge {
  margin-top: -2px !important;
  margin-bottom: 0 !important; }
  .grid-products .spr-badge .spr-badge-caption {
    display: none !important; }

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

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

.grid-products .slick-prev,
.grid-products .slick-next {
  background-color: #fff;
  font-size: 0;
  border: 1px solid #787878;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  top: 40%;
  margin-top: -17px;
  opacity: 0;
  position: absolute;
  transition-duration: 0.5s; }
.grid-products .slick-prev:before,
.grid-products .slick-next:before {
  font-size: 20px;
  color: #000;
  top: 5px;
  font-family: "FontAwesome";
  position: absolute; }
.grid-products .slick-prev {
  left: -30px; }
  .grid-products .slick-prev:before {
    left: 11px;
    content: "\f104"; }
.grid-products .slick-next {
  right: -30px; }
  .grid-products .slick-next:before {
    right: 11px;
    content: "\f105"; }
.grid-products:hover .slick-prev {
  opacity: 1; }
.grid-products:hover .slick-next {
  opacity: 1; }

.viewall {
  position: relative;
  z-index: 333;
  margin: 30px 0; }

.hero .hero__inner h2, .hero .hero__inner .h2 {
  text-transform: uppercase; }

.hero .hero__inner .mega-subtitle p {
  font-size: 20px; }

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

.product-single__price {
  color: #788188;
  font-size: 1.30769em;
  font-family: "Roboto Condensed", "HelveticaNeue", "Helvetica Neue", sans-serif;
  font-weight: 400;
  margin: 5px 0 15px; }
  @media only screen and (max-width: 749px) {
    .product-single__price {
      display: block;
      font-size: 1.15385em; } }

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

.index-section--featured-product .row.product-single {
  margin: 0;
  padding: 15px 0; }
  .index-section--featured-product .row.product-single .row-cell {
    padding: 0 15px; }

.index-section--featured-product .product-single__meta {
  text-align: center;
  margin-top: 30px; }
  .index-section--featured-product .product-single__meta h2.grid_item-title, .index-section--featured-product .product-single__meta .grid_item-title.h2 {
    letter-spacing: 0.02em;
    color: #f56943;
    font-size: 20px;
    margin-bottom: 10px; }
  .index-section--featured-product .product-single__meta .spr-badge {
    margin-bottom: 20px; }
  .index-section--featured-product .product-single__meta .spr-badge-caption {
    display: none; }
  .index-section--featured-product .product-single__meta .product-single__vendor {
    margin-bottom: 0; }
  .index-section--featured-product .product-single__meta .product-single__description {
    padding: 0 50px;
    margin: 0 0 30px; }
  .index-section--featured-product .product-single__meta .product-form {
    display: block;
    flex: none;
    text-align: center;
    margin-bottom: 25px; }
  .index-section--featured-product .product-single__meta .product-form__item--submit .btn {
    padding: 6px 30px;
    display: inline-block;
    margin: 0 5px;
    width: auto;
    line-height: inherit; }
  .index-section--featured-product .product-single__meta .selector-wrapper {
    margin-bottom: 20px; }

.product-single__price {
  font-size: 18px; }
  .product-single__price .product-price__price {
    font-size: 25px; }

.product-single__meta .product-form__item--quantity label {
  float: left;
  line-height: 42px;
  margin: 0 10px 0 0; }
.product-single__meta .qtyBtn, .product-single__meta .qty {
  padding: 11px 6px;
  width: 43px;
  height: 40px;
  border-radius: 0; }
.product-single__meta .product-form__input {
  height: 42px; }
.product-single__meta .qtyBtn .icon {
  height: 10px;
  width: 10px;
  color: #000; }

.social-sharing .btn-secondary {
  background: #fff;
  color: #000;
  border: 1px solid #e8e9eb;
  text-transform: capitalize;
  font-weight: 400; }

.timer-body-block .table-cell {
  position: relative;
  text-align: center;
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 9px 25px; }

.timer-body-block .table-cell .tab-val {
  display: block;
  background: #000;
  color: #fff;
  height: 50px;
  width: 50px;
  font-size: 20px;
  text-align: center;
  line-height: 50px;
  margin-bottom: 5px; }

.timer-body-block .table-cell + .table-cell:before {
  content: ":";
  position: absolute;
  left: -12px;
  top: 10px;
  font-size: 16px; }

.qtyBox {
  float: left;
  margin-left: 15px; }

.variant-row {
  width: 100%;
  display: inline-block;
  text-align: center; }

.template-index .article__grid-image {
  position: relative;
  margin-bottom: 0;
  -ms-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden; }
  .template-index .article__grid-image .datetime {
    position: absolute;
    display: block;
    background: #fff;
    color: #000;
    padding: 8px 14px;
    left: 10px;
    top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 18px;
    line-height: 20px;
    z-index: 111; }
    .template-index .article__grid-image .datetime .month {
      display: block;
      color: #444;
      font-size: 11px;
      font-weight: 700; }
  .template-index .article__grid-image img {
    -ms-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .template-index .article__grid-image:hover img {
    transform: scale(1.05); }

.template-index .article__grid-meta {
  padding: 20px;
  border: 1px solid #eee;
  border-top: 0; }

.publish-detail {
  font-size: 13px;
  font-family: arial; }
  .publish-detail .article__author {
    margin-right: 5px; }

h2.article__title, .article__title.h2 {
  font-size: 19px;
  font-weight: 400;
  color: #000;
  text-transform: capitalize; }

.read-more {
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 12px; }

.logo-bar .slick-prev {
  top: 50%;
  left: 0;
  margin-top: -15px; }
.logo-bar .slick-next {
  top: 50%;
  right: 0;
  margin-top: -15px; }

#shopify-section-feature-row .featured-row__subtext {
  font-size: 16px; }

.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: 749px) {
    .feature-row {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; } }
  .feature-row h2, .feature-row .h2 {
    font-size: 2em; }
  .feature-row .text-left {
    text-align: left; }
  .feature-row .text-right {
    text-align: right; }
  .feature-row .text-center {
    text-align: center; }

.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: 749px) {
    .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: 749px) {
    .feature-row__image {
      order: 1; } }

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

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

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

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

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

@media only screen and (min-width: 1200px) {
  .hero--small {
    height: 350px; }

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

  .hero--large {
    height: 600px; } }
.hero__inner {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  padding: 30px 0;
  z-index: 2; }

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

.quote-icon {
  display: block;
  margin: 0 auto 20px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%; }

.quotes-slider__text {
  font-weight: 400;
  border: 0;
  font-style: normal;
  padding: 0 15px;
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px; }
  .quotes-slider__text cite {
    font-size: 0.76471em;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase; }
  .quotes-slider__text p {
    margin-bottom: 30px; }
    .quotes-slider__text p + cite {
      margin-top: 0; }

.quotes-slider__text cite:before {
  display: none; }

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

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

.author-icon {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  overflow: hidden; }

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

.quotes-slider {
  -ms-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s; }
  .quotes-slider .slick-prev,
  .quotes-slider .slick-next {
    opacity: 0;
    -ms-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
  .quotes-slider .slick-prev {
    left: 15%; }
  .quotes-slider .slick-next {
    right: 15%; }
  .quotes-slider:hover .slick-prev {
    opacity: 1; }
  .quotes-slider:hover .slick-next {
    opacity: 1; }

.logo-bar.slick-initialized .slick-slide {
  float: none;
  display: inline-block; }

.logo-bar {
  text-align: center;
  margin-bottom: -15px; }
  .logo-bar .slick-track {
    margin: 0 auto; }

@media only screen and (min-width: 750px) {
  .logo-bar--large {
    margin-bottom: -30px; } }
.logo-bar__item {
  display: inline-block;
  vertical-align: middle; }
  .logo-bar__item a img:hover {
    opacity: 0.7;
    -ms-transition: 0.3s;
    -webkit-transition: 0.3s;
    transition: 0.3s; }

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

.logo-bar__link {
  display: block; }

.map-section {
  position: relative;
  height: 450px;
  width: 100%;
  overflow: hidden; }
  @media only screen and (min-width: 750px) {
    .map-section {
      height: 400px; } }
  .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: rgba(255, 255, 255, 0.8);
  padding: 15px;
  margin-top: 20px;
  width: 100%;
  text-align: center;
  z-index: 3; }
  @media only screen and (min-width: 750px) {
    .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); }

.home-instagram {
  position: relative; }
  .home-instagram .widget-title {
    z-index: 444;
    padding: 18px 20px 20px;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    max-width: 300px;
    margin: 0 auto;
    background: #000;
    transform: translateY(-50%); }
  .home-instagram h3, .home-instagram .h3 {
    color: #fff;
    margin-bottom: 10px; }
  .home-instagram #instafeed .insta-img {
    display: inline-block;
    padding: 5px; }
  .home-instagram #instafeed.imthumbnail .insta-img {
    width: 12.5%; }
    @media only screen and (max-width: 989px) {
      .home-instagram #instafeed.imthumbnail .insta-img {
        width: 16.66%; } }
    @media only screen and (max-width: 749px) {
      .home-instagram #instafeed.imthumbnail .insta-img {
        width: 20%; } }
    @media only screen and (max-width: 480px) {
      .home-instagram #instafeed.imthumbnail .insta-img {
        width: 25%; } }
  .home-instagram #instafeed.imlow_resolution .insta-img {
    width: 25%; }
  .home-instagram #instafeed.imstandard_resolution .insta-img {
    width: 33.33%; }
  .home-instagram p {
    color: #fff; }
  .home-instagram .btn {
    background: #000;
    border-color: #555; }
    .home-instagram .btn:hover {
      border-color: #fff;
      color: #fff; }

.store-info {
  border: 1px solid #ddd;
  border-radius: 5px; }
  .store-info h5, .store-info .h5 {
    margin-bottom: 0; }
  .store-info .fa {
    margin-right: 15px;
    font-size: 40px;
    vertical-align: top; }
  .store-info li {
    padding: 20px;
    text-align: center; }
  .store-info li + li {
    border-left: 1px solid #ddd; }
  .store-info li div {
    display: inline-block;
    max-width: 220px;
    text-align: left;
    vertical-align: middle; }

.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: 750px) {
    .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: 749px) {
  .image-bar {
    max-width: 400px;
    margin: 0 auto; } }
.collection-grid {
  margin-bottom: -20px;
  overflow: auto; }

.collection-grid-item {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  -ms-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s; }
  @media only screen and (min-width: 750px) {
    .collection-grid-item {
      margin-bottom: 30px; } }

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

.collection-grid-item:hover img {
  transform: scale(1.1); }
.collection-grid-item:hover .collection-grid-item__title {
  opacity: 0;
  visibility: hidden; }
.collection-grid-item:hover .btn {
  opacity: 1; }

.collection-grid-item__link {
  position: relative;
  text-align: center;
  display: block; }

.collection-grid-item__overlay {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  overflow: hidden; }
  .collection-grid-item__overlay img {
    -ms-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s; }

.collection-grid-item__title-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

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

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

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

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

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

a {
  transition: all 0.3s ease-in 0s;
  -webkit-transition: all 0.3s ease-in 0s;
  -moz-transition: all 0.3s ease-in 0s; }

a:focus, a:hover {
  text-decoration: none;
  opacity: 0.8;
  color: inherit;
  outline: none !important; }

button:focus, select:focus, select {
  outline: none !important;
  outline: 0 !important; }

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

.row-table div[class*="col"],
.row-cell {
  float: none;
  display: table-cell;
  vertical-align: middle;
  padding: 0; }

/* ===========================================================
   Collection Page
 * ===========================================================*/
@media only screen and (min-width: 1200px) {
  .grid-products .widescreen--one-quarter:nth-child(4n+1) {
    clear: left; }

  .grid-products .widescreen--one-fifth:nth-child(5n+1) {
    clear: left; }

  .grid-products .widescreen--one-third:nth-child(3n+1) {
    clear: left; } }
.bredcrumbWrap {
  background: #f5f5f5;
  margin: -30px 0 30px; }

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

.collection-header .breadcrumb {
  background: none;
  position: absolute;
  top: 50%;
  margin-top: -48px;
  left: 0;
  right: 0;
  text-align: center; }
  .collection-header .breadcrumb span + span {
    display: none; }

.btn-filter {
  margin-bottom: 20px;
  width: 100%; }

.category-slider {
  margin-bottom: 25px; }
  .category-slider a:hover {
    opacity: 0.9; }
  .category-slider .slick-arrow {
    opacity: 0; }
  .category-slider .slick-next {
    right: 25px; }
  .category-slider .slick-prev {
    left: 25px; }
  .category-slider:hover .slick-arrow {
    opacity: 1; }
  .category-slider li + li {
    display: none; }

.sidebar_widget .grid-products .slick-arrow {
  background-color: transparent; }

.sidebar {
  margin-top: 0; }
  .sidebar .sidebar_categories li {
    padding: 5px 0; }
  .sidebar .grid-view-item {
    margin-bottom: 0; }
  .sidebar .grid-products h4.grid-view-item__title, .sidebar .grid-products .grid-view-item__title.h4 {
    font-weight: 400;
    border: 0;
    padding: 0;
    color: #000; }
  .sidebar .grid-products .slick-prev, .sidebar .grid-products .slick-next {
    border: 0;
    right: -25px; }
  .sidebar .grid-products .slick-prev, .sidebar .grid-products .slick-prev {
    border: 0;
    left: -25px; }

.sidebar_widget {
  border: 1px solid #e7e7e7;
  padding: 20px;
  margin-bottom: 20px;
  clear: both;
  width: 100%; }
  .sidebar_widget .widget-content ul {
    margin: 0 0 15px; }
    .sidebar_widget .widget-content ul li {
      list-style: none;
      padding: 3px 0; }
      .sidebar_widget .widget-content ul li .collections-count {
        float: right;
        text-align: right;
        color: #919191; }
  .sidebar_widget h3, .sidebar_widget .h3 {
    font-size: 17px;
    margin-bottom: 15px; }
  .sidebar_widget .widget-content h4, .sidebar_widget .widget-content .h4 {
    font-family: "Roboto", "HelveticaNeue", "Helvetica Neue", sans-serif;
    color: #5a5a5a;
    font-size: 13px;
    padding: 15px 0;
    border-top: 1px solid #e7e7e7;
    font-weight: 700;
    margin: 0; }
  .sidebar_widget .widget-content ul.product-tags li {
    background: #f4f4f4 none repeat scroll 0 0;
    border: 1px solid #ddd;
    display: inline-block;
    font-size: 12px;
    line-height: 19px;
    margin: 0 5px 5px 0;
    padding: 3px 5px;
    text-transform: uppercase; }
    .sidebar_widget .widget-content ul.product-tags li a {
      color: #000;
      text-decoration: none !important; }
    .sidebar_widget .widget-content ul.product-tags li:hover {
      border-color: #f56943;
      background: #fff; }
      .sidebar_widget .widget-content ul.product-tags li:hover a {
        text-decoration: none; }
    .sidebar_widget .widget-content ul.product-tags li:first-child {
      display: none; }

.static-banner-block {
  margin-bottom: 20px; }

.filter-color {
  display: table;
  width: 100%; }
  .filter-color li {
    float: left;
    margin: 0 0 5px 5px; }
    .filter-color li input[type="checkbox"] {
      display: none; }
    .filter-color li span {
      display: block;
      height: 25px;
      width: 25px;
      border-radius: 2px;
      box-shadow: 1px 1px 0px 0 #a19b9b; }
    .filter-color li a {
      position: relative;
      display: block; }
      .filter-color li a.active span:before {
        position: absolute;
        content: "";
        left: 0;
        right: 0;
        top: 0;
        border: 2px solid #000;
        bottom: 0; }

.category_banner .slide-img:hover {
  opacity: 0.8; }

.sidebar_tags ul li label {
  font-weight: 400;
  font-size: 13px; }
.sidebar_tags input[type=checkbox]:not(old) {
  width: 20px;
  margin: 0;
  padding: 0;
  font-size: 1em;
  opacity: 0; }
.sidebar_tags input[type=checkbox]:not(old) + label {
  display: inline-block;
  margin-left: -20px;
  line-height: 1.5em; }
.sidebar_tags input[type=checkbox]:not(old) + 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_tags input[type=checkbox]:not(old):checked + label > span:before {
  content: '\f00c';
  display: block;
  width: 12px;
  color: #000;
  font-size: 9px;
  line-height: 11px;
  text-align: center;
  font-family: "FontAwesome"; }

.pagination {
  width: 100%;
  margin-top: 0; }

.pagination-num-showing {
  text-align: left;
  font-weight: 700; }

.pagination ul {
  float: right; }

.pagination ul li {
  float: left;
  list-style: none;
  margin: 0 2px; }

.pagination ul li a {
  background: #ddd;
  border-radius: 2px;
  color: #000;
  display: block;
  height: 28px;
  line-height: 28px;
  padding: 0;
  text-align: center;
  width: 28px;
  text-decoration: none; }

.pagination ul li.active a {
  background: #000;
  font-weight: 700;
  color: #fff; }

.main-col.right {
  float: right; }

.main-col .section-header {
  margin-bottom: 15px; }
  .main-col .section-header .page-title:before {
    display: none; }

.template-list-collections .collection-grid-item__link {
  position: relative; }
.template-list-collections .collection-grid-item {
  padding-bottom: 0; }
.template-list-collections .collection-grid-item__title-wrapper::before {
  z-index: -1; }

.template-collection .collection-hero {
  margin-bottom: 30px; }

/* ===========================================================
   Product Detail Page
 * ===========================================================*/
h1.product-single__title, .product-single__title.h1 {
  color: #000;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 400; }

#ProductSection-product-template .product-single {
  margin-bottom: 30px; }
#ProductSection-product-template .spr-badge {
  margin-bottom: 10px; }
#ProductSection-product-template .product-action {
  width: 100%;
  display: block; }
#ProductSection-product-template .product-form__item--quantity {
  flex: none; }
#ProductSection-product-template .product-form__item {
  float: left; }
#ProductSection-product-template .product-form__cart-submit {
  width: auto;
  padding: 6px 85px;
  height: 42px; }
#ProductSection-product-template .selector-wrapper {
  margin-bottom: 20px; }
#ProductSection-product-template .social-sharing {
  margin-bottom: 15px; }
#ProductSection-product-template .product-nav .fa {
  vertical-align: middle; }
#ProductSection-product-template .product-nav a {
  font-size: 18px;
  display: block;
  line-height: 22px;
  height: 30px;
  width: 30px;
  padding: 0; }
#ProductSection-product-template .product-nav .prev {
  float: left; }
#ProductSection-product-template .product-nav .next {
  float: right; }
  #ProductSection-product-template .product-nav .next .fa {
    margin-right: -2px; }
#ProductSection-product-template .section-header {
  margin-bottom: 40px; }

.product-info {
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase; }
  .product-info p {
    margin-bottom: 5px;
    position: relative;
    line-height: normal;
    font-size: 12px; }
    .product-info p span {
      left: 115px;
      position: absolute;
      font-weight: 400;
      text-transform: capitalize; }
      .product-info p span.instock {
        color: #447900; }
      .product-info p span.outstock {
        color: #e06900; }

.wrapQtyBtn {
  float: left; }

.prod-large-img {
  float: right;
  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/1362/8025/t/16/assets/ajax-loader.gif?v=41356863302472015721636543733) no-repeat 50% 50% rgba(255, 255, 255, 0.8); }
  .prod-large-img .popup-video {
    opacity: 0.4;
    position: absolute;
    right: 25px;
    bottom: 10px; }
    .prod-large-img .popup-video:hover {
      opacity: 1; }

.prod-thumbs {
  padding-right: 0; }
  .prod-thumbs .grid__item {
    width: 100%; }

.fa.mobile {
  display: none; }

.fa.desktop {
  display: block; }

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

.product-tabs {
  margin: 0 0 50px 0;
  text-align: center; }
  .product-tabs .tab-content {
    padding: 30px 0;
    text-align: left; }
  .product-tabs .nav-tabs {
    margin: 0;
    border: none;
    float: none;
    display: inline-block;
    border-bottom: 1px solid #e7e7e7;
    width: 100%; }
    .product-tabs .nav-tabs a {
      display: block;
      border: none;
      padding: 15px 25px;
      background: none !important;
      text-transform: uppercase;
      border-radius: 0;
      outline: none;
      color: #2e2d2d;
      letter-spacing: 0.05em; }
  .product-tabs h4, .product-tabs .h4 {
    font-size: 14px;
    letter-spacing: 0.05em; }

.product-tabs > .nav-tabs li + li a {
  margin: 0 10px; }

.product-tabs .panel-default {
  border-radius: 0;
  text-align: left;
  border: 0; }
  .product-tabs .panel-default .panel-heading {
    background: none;
    padding: 0; }
    .product-tabs .panel-default .panel-heading a {
      display: block;
      border: none;
      padding: 15px 15px;
      background: none !important;
      text-transform: uppercase;
      font-weight: 700;
      font-size: 15px;
      border-radius: 0;
      outline: none;
      color: #2e2d2d; }
    .product-tabs .panel-default .panel-heading a.js-tabcollapse-panel-heading {
      border: none;
      color: #000;
      border-bottom: 1px solid #000;
      opacity: 1; }
    .product-tabs .panel-default .panel-heading a.js-tabcollapse-panel-heading.collapsed {
      background: none;
      color: #2e2d2d;
      border-bottom: 1px solid #e7e7e7; }

.product-tabs .nav-tabs li.active a,
.product-tabs .nav-tabs li.active a:focus,
.product-tabs .nav-tabs li > a:hover,
.product-tabs .nav-tabs li.active > a:hover,
.product-tabs a.js-tabcollapse-panel-heading {
  border: none;
  color: #000;
  border-bottom: 1px solid #000;
  opacity: 1; }

.product-tabs a.js-tabcollapse-panel-heading.collapsed {
  background: none;
  color: #000; }

.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: #f56943; }

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

.spr-form-label {
  font-size: 14px; }

.spr-summary-actions-newreview {
  background: #f56943;
  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","Helvetica Neue"; }
  .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; }

.related-product {
  margin-bottom: 30px; }
  .related-product .product-review {
    display: none; }
  .related-product .grid--view-items {
    overflow: visible; }
  .related-product .grid-products .slick-prev {
    left: -15px; }
  .related-product .grid-products .slick-next {
    right: -45px; }

.recent-products .product-price__price {
  display: block; }
.recent-products .grid-4 {
  width: 25%; }
.recent-products .grid-3 {
  width: 33.33%; }
.recent-products .grid-5 {
  width: 20%; }

.thumbnails-wrapper .btn--link {
  position: absolute;
  width: 100%;
  text-align: center;
  z-index: 444;
  opacity: 0;
  padding: 5px 10px;
  background: rgba(98, 191, 196, 0.8); }
.thumbnails-wrapper .fa {
  color: white;
  font-size: 20px; }
.thumbnails-wrapper .thumbnails-slider__prev {
  top: 0; }
.thumbnails-wrapper .thumbnails-slider__next {
  bottom: 22px; }
.thumbnails-wrapper:hover .btn--link {
  opacity: 1; }

/* ===========================================================
   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: #777777;
  margin: 0; }

.sidebar_widget .sidebar-products li + li {
  padding-top: 15px; }
.sidebar_widget .sidebar-products .grid-view-item__link {
  float: left;
  margin-right: 10px; }
.sidebar_widget .sidebar-products .grid-view-item__image {
  margin: 0; }
.sidebar_widget .sidebar-products .item-title {
  line-height: 17px;
  display: block;
  margin-bottom: 5px; }
.sidebar_widget .sidebar-products .product-price__price {
  display: block;
  margin: 0; }

.custom-search {
  margin-bottom: 20px; }
  .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 .social-sharing {
  margin-bottom: 20px; }

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 #e7e7e7;
  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: #777777; }

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

/* ===========================================================
   Contact Page
 * ===========================================================*/
.contact-template {
  margin-top: -30px; }
  .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 .bredcrumbWrap {
  margin-top: 0; }
#shopify-section-contact-template .form-vertical {
  padding-right: 30px; }
  #shopify-section-contact-template .form-vertical textarea {
    height: 120px; }
#shopify-section-contact-template .follow-us li {
  display: inline-block;
  margin: 0 5px; }
  #shopify-section-contact-template .follow-us li a {
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 17px; }

.open-hours {
  margin-bottom: 20px; }
  .open-hours strong {
    font-size: 16px;
    text-transform: uppercase;
    font-family: "Roboto Condensed", "HelveticaNeue", "Helvetica Neue", sans-serif;
    color: #010a26;
    letter-spacing: 0.03em; }

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

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

/* ===========================================================
   My Account Pages
 * ===========================================================*/
.form-border {
  border: 1px solid #e7e7e7;
  padding: 20px;
  margin-bottom: 20px; }

.template-search .widescreen--one-quarter:nth-child(3n+1) {
  clear: none; }

.template-search .widescreen--one-quarter:nth-child(4n+1) {
  clear: left; }

.template-search .list-view-item__title {
  margin-bottom: 10px; }
.template-search .list-view-item__title-column {
  margin-bottom: 20px;
  display: block; }
.template-search .list-view-item__image-column {
  display: table;
  width: 100%; }
  .template-search .list-view-item__image-column .list-view-item__image-wrapper {
    margin: 0 0 15px 0; }

#CustomerLoginForm,
#create_customer {
  margin: 15px 0; }

/* ===========================================================
   FAQs Page
 * ===========================================================*/
#shopify-section-faq-template .panel-group .panel {
  border-radius: 0;
  border: none;
  margin-bottom: 12px;
  box-shadow: none; }
  #shopify-section-faq-template .panel-group .panel .panel-heading {
    border-color: #e7e7e7;
    padding: 0; }
    #shopify-section-faq-template .panel-group .panel .panel-heading .panel-title {
      font-family: "Roboto", "HelveticaNeue", "Helvetica Neue", sans-serif;
      font-size: 14px;
      text-transform: none;
      letter-spacing: 0.02em; }
      #shopify-section-faq-template .panel-group .panel .panel-heading .panel-title a {
        padding: 10px 15px;
        background: #f56943;
        display: block;
        color: #fff;
        padding-left: 40px;
        position: relative; }
        #shopify-section-faq-template .panel-group .panel .panel-heading .panel-title a:before {
          position: absolute;
          content: "\f068";
          font-family: "FontAwesome";
          left: 15px;
          font-size: 14px; }
        #shopify-section-faq-template .panel-group .panel .panel-heading .panel-title a.collapsed {
          background-color: #f5f5f5;
          color: #444444; }
          #shopify-section-faq-template .panel-group .panel .panel-heading .panel-title a.collapsed:before {
            content: "\f067"; }
  #shopify-section-faq-template .panel-group .panel .panel-body {
    border: none; }

/* ===========================================================
   #Lookbook Page
 * ===========================================================*/
#shopify-section-lookbook-template {
  margin-top: 20px; }

.lookbook {
  margin: 30px 0 -60px;
  display: table;
  color: #fff; }
  .lookbook > div {
    padding: 0;
    display: table-cell;
    vertical-align: middle;
    position: relative;
    text-align: center; }
    .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; }

.lookbook2 .grid-lookbook, .lookbook2 .grid-sizer {
  width: 49%; }
.lookbook2 .gutter-sizer {
  width: 2%; }
.lookbook2 .grid-lookbook {
  margin-bottom: 20px; }
  .lookbook2 .grid-lookbook:hover .btn {
    opacity: 1; }
.lookbook2 h2, .lookbook2 .h2 {
  color: #000;
  font-size: 20px;
  letter-spacing: 0.03em;
  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: 20px;
  border: 0; }
  .lookbook2 .btn:hover {
    background: #f56943;
    color: white; }

/* ===========================================================
   #Popups 
 * ===========================================================*/
.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 {
  max-width: 800px;
  position: fixed;
  left: 0;
  right: 0;
  top: 330px;
  background: #fafafa;
  margin: 20px auto;
  z-index: 444;
  margin-top: -120px;
  display: none; }
  #newsletter-modal .row-cell.first {
    width: 65%;
    text-align: center; }
  #newsletter-modal .row-cell.last {
    width: 35%;
    text-align: right; }
  #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-left {
  padding: 40px 50px; }
  .newsletter-left h1, .newsletter-left .h1 {
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    color: #000000;
    letter-spacing: 0.05em; }
  .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 {
    margin: 10px 0 0; }
    .newsletter-left .social li {
      display: inline-block;
      margin: 0 5px;
      list-style: none; }
    .newsletter-left .social a {
      border-radius: 50%;
      color: #000000;
      display: inline-block;
      font-size: 18px;
      height: 30px;
      line-height: 20px;
      padding: 5px;
      text-align: center;
      width: 30px; }
  .newsletter-left #Subscribe {
    width: 100%;
    height: auto;
    padding: 12px 20px; }
    .newsletter-left #Subscribe:hover {
      background: #f56943 !important; }

#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 .product-single__price {
    margin-bottom: 15px; }
  #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-price__price {
    font-size: 1.4em; }
  #content_quickview .product-single .product-single__photos {
    padding: 0; }

/* ===========================================================
   #Media Quary 
 * ===========================================================*/
@media only screen and (min-width: 990px) and (max-width: 1199px) {
  .template-collection .medium-up--one-third:nth-child(3n+1) {
    clear: left; } }
@media only screen and (max-width: 1199px) {
  #siteNav > li > a {
    padding: 0 10px; }

  .stickyNav #siteNav {
    text-align: center; }
    .stickyNav #siteNav a {
      padding: 0 15px; }

  .sticky-logo {
    margin-left: 15px; }
    .sticky-logo img {
      max-height: 15px; }

  .stickyCart {
    right: 30px; }

  .search-header {
    max-width: 320px; }
    .search-header .search-header__input {
      width: 270px; }

  .slideshow .slick-prev {
    left: 30px; }
  .slideshow .slick-next {
    right: 30px; }
  .slideshow .slideshow__text-content .right {
    padding-right: 10%; }
  .slideshow .slideshow__text-content .left {
    padding-left: 10%; }

  .collection-grid .medium-up--one-quarter .collection-grid-item__title {
    font-size: 17px; }

  .footer-top .footer-links {
    width: 20%; }
  .footer-top .col-sm-3.last {
    width: 35%; }
  .footer-top ul.social li {
    margin-right: 2px; }
    .footer-top ul.social li a {
      width: 28px;
      height: 28px; }

  .recent-products .grid-view-item {
    margin-bottom: 15px; }

  .recent-products .grid__item {
    width: 25%; }

  .recent-products .grid__item:nth-child(4n+1) {
    clear: left; }

  .slideshow__text-content .container > div.left {
    margin-left: 4%; }

  .slideshow__text-content .container > div.right {
    margin-right: 4%; } }
@media screen and (max-width: 1024px) {
  .tabs-listing .action-buttons,
  .grid-products .grid-view-item .action-buttons {
    position: absolute;
    top: auto;
    bottom: 5%;
    opacity: 1;
    left: 5%;
    right: 5%;
    width: 90%; }
    .tabs-listing .action-buttons .btn,
    .grid-products .grid-view-item .action-buttons .btn {
      width: 100%;
      padding-left: 10px;
      padding-right: 10px;
      border: 0; }
    .tabs-listing .action-buttons .qv-button,
    .grid-products .grid-view-item .action-buttons .qv-button {
      display: none; }
    .tabs-listing .action-buttons form,
    .grid-products .grid-view-item .action-buttons form {
      margin-bottom: 0; }

  .related-product .grid-products .slick-prev {
    left: -7px; }

  .related-product .grid-products .slick-next {
    right: -38px; }

  .cart__shipping {
    font-size: 14px; }

  .slick-slide .grid-view-item {
    text-align: center; }

  .slick-slide .grid-item-image {
    position: relative; }

  .tabs-listing .slick-prev {
    top: 35%;
    left: 15px; }
  .tabs-listing .slick-next {
    top: 35%; } }
@media only screen and (min-width: 750px) and (max-width: 989px) {
  .grid-products .medium-up--one-third:nth-child(3n+1) {
    clear: left; }

  #newsletter-modal {
    top: 250px; } }
@media only screen and (max-width: 989px) {
  #Slideshow-slideshow.slideshow {
    height: 300px; }

  .collection-grid .collection-grid-item__title {
    font-size: 15px;
    padding: 9px 10px; }

  .grid-products .slick-prev {
    left: -9px; }

  .grid-products .slick-next {
    right: -9px; }

  .index-section--featured-product .product-single__meta {
    margin-top: 0; }
  .index-section--featured-product .product-single__meta .product-single__description {
    padding: 0;
    margin-bottom: 15px; }

  h1.product-single__title, .product-single__title.h1 {
    font-size: 20px; }

  .index-section {
    padding-bottom: 20px;
    padding-top: 20px; }

  .quotes-slider .slick-prev {
    left: 0; }

  .quotes-slider .slick-next {
    right: 0; }

  .newsletter-title {
    margin-bottom: 15px;
    text-align: center; }

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

  .sidebar_widget h3, .sidebar_widget .h3 {
    font-size: 14px; }

  .list-sidebar-products .action-buttons .btn {
    display: none; }

  .filters-toolbar-wrapper {
    padding: 0 15px; }

  .related-product .grid-products .slick-prev {
    left: 13px; }

  .related-product .grid-products .slick-next {
    right: -9px; }

  .recent-products .grid__item {
    width: 33.33%; }

  .recent-products .grid__item:nth-child(4n+1) {
    clear: none; }

  .recent-products .grid__item:nth-child(3n+1) {
    clear: left; }

  .product-tabs .nav-tabs a {
    padding: 11px 12px; }

  #ProductSection-product-template .product-form__cart-submit {
    padding: 6px 49px; }

  .slideshow__text-content .container > div {
    max-width: 400px; }

  .slideshow__text-content .container > div.left {
    margin-left: 0; }

  .slideshow__text-content .container > div.right {
    margin-right: 0; }

  #siteNav {
    display: none; }

  p.freeShiping {
    display: none; }

  .site-header .row-table {
    display: block; }

  .site-header div.logo-col {
    text-align: center !important;
    display: table !important;
    width: 100%; }

  .site-header__logo-image {
    display: inline-block; }

  .site-header .container {
    position: relative; }

  .cart-col {
    z-index: 555;
    border-left: 0px solid #fff;
    width: 15%;
    text-align: center;
    float: right !important;
    margin-bottom: -46px;
    margin-top: 1px; }
    .cart-col .fa {
      font-size: 20px; }
    .cart-col a.site-header__cart {
      background: none;
      margin: 0 auto;
      height: 45px;
      float: none;
      padding: 7px 0; }
      .cart-col a.site-header__cart .fa {
        color: #fff !important; }
    .cart-col .site-header__cart-count {
      font-size: 10px;
      top: 12px;
      left: 28px;
      min-width: 16px;
      width: 16px;
      height: 16px;
      line-height: 17px; }
    .cart-col #header-cart {
      top: 45px; }

  .site-navigation {
    height: 45px;
    overflow: hidden; }
    .site-navigation .container {
      padding: 0; }
    .site-navigation .site-header__menu {
      color: #fff;
      float: left;
      height: 45px;
      width: 15%;
      border-right: 1px solid #fff;
      text-align: center; }
      .site-navigation .site-header__menu .icon {
        vertical-align: top; }
    .site-navigation .site-header__search {
      float: left;
      height: 45px;
      overflow: hidden;
      width: 67.5%; }
      .site-navigation .site-header__search .search-header {
        max-width: 100%; }
      .site-navigation .site-header__search .btnSearch {
        color: #000;
        border: 0;
        border-radius: 0 3px 3px 0;
        height: 44px;
        position: absolute;
        right: 0; }
      .site-navigation .site-header__search .search-header__input {
        height: 45px;
        padding-right: 50px;
        width: 100%; }
      .site-navigation .site-header__search .search-header__input::-webkit-input-placeholder {
        opacity: 0.7; }
      .site-navigation .site-header__search .search-header__input::-moz-placeholder {
        opacity: 0.7; }

  .bredcrumbWrap {
    margin-top: -15px;
    display: none; }

  #newsletter-modal {
    margin: 0 15px; }

  #shopify-section-slideshow {
    padding-top: 1px; }

  .store-info .fa {
    margin-bottom: 15px; }

  .image-bar__caption {
    font-size: 15px; }

  .contact-template .container {
    margin-top: 20px; }

  #newsletter-modal {
    top: 80px; } }
@media only screen and (max-width: 749px) {
  .site-navigation .site-header__search {
    width: 69%; }

  .filterBar {
    padding: 0;
    opacity: 0;
    visibility: hidden;
    width: 240px;
    height: 100%;
    overflow: auto;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: -240px;
    z-index: 99;
    -ms-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s; }
    .filterBar .sidebar_widget:not(.filters),
    .filterBar .static-banner-block {
      display: none; }

  .filterBar.active {
    left: 0;
    opacity: 1;
    visibility: visible; }
    .filterBar.active .closeFilter {
      float: right;
      padding: 2px 7px;
      margin: -5px -8px 0 0;
      cursor: pointer; }
    .filterBar.active .filters {
      margin-bottom: 0; }

  .footer-top .footer-links {
    width: 100%;
    border-bottom: 1px dotted; }
    .footer-top .footer-links ul {
      display: none;
      padding-bottom: 20px; }
  .footer-top h3, .footer-top .h3 {
    padding: 10px 0;
    margin: 0;
    position: relative;
    cursor: pointer; }
    .footer-top h3:after, .footer-top .h3:after {
      content: "\f107";
      color: #fff;
      font-size: 20px;
      font-family: "FontAwesome";
      position: absolute;
      top: 7px;
      right: 3px; }
    .footer-top h3.active:after, .footer-top .active.h3:after {
      content: "\f106"; }
  .footer-top .contact-box h3:after, .footer-top .contact-box .h3:after {
    display: none; }
  .footer-top .col-sm-3.last {
    width: 100%; }
    .footer-top .col-sm-3.last .addressFooter {
      margin-bottom: 0; }

  .footer-bottom {
    text-align: center; }
    .footer-bottom .text-right {
      text-align: center !important; }
    .footer-bottom #payment-methods {
      margin-top: 10px; }

  .collection-grid .small--one-whole {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    float: none; }

  .row-table.product-single {
    display: inline-block; }

  .index-section--featured-product .row.product-single .row-cell {
    display: block; }
    .index-section--featured-product .row.product-single .row-cell .product-single__photo {
      margin-bottom: 0; }

  .feature-row__text {
    text-align: center; }

  .template-index .article__grid-meta {
    padding-top: 0;
    padding-bottom: 0;
    border: 0; }
    .template-index .article__grid-meta .publish-detail {
      margin: 0; }

  .newsletter .newsletter-title h3, .newsletter .newsletter-title .h3 {
    font-size: 20px; }

  .main-col .grid__item.small--one-half {
    clear: none !important; }

  .main-col .grid__item.small--one-half:nth-child(odd) {
    clear: left !important; }

  .panel .collapse {
    display: block;
    height: 0;
    overflow: hidden; }

  .panel .collapse.in {
    height: auto; }

  .panel .productSlider .grid-view-item {
    padding: 0 10px; }

  .grid--view-items.productSlider .slick-prev {
    left: 0px; }

  .grid--view-items.productSlider .slick-next {
    right: 0px; }

  .prod-large-img,
  .prod-thumbs {
    width: 100%;
    float: none; }

  .fa.mobile {
    display: block; }

  .fa.desktop {
    display: none; }

  .prod-thumbs {
    padding-right: 15px; }

  .thumbnails-wrapper .btn--link {
    opacity: 1;
    width: auto;
    top: 45%;
    bottom: auto; }
  .thumbnails-wrapper .thumbnails-slider__prev {
    left: 0; }
  .thumbnails-wrapper .thumbnails-slider__next {
    right: 0; }

  .product-single__photo--has-thumbnails {
    margin-bottom: 0; }

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

  .spr-summary-actions-newreview {
    margin-top: 15px;
    text-align: center;
    display: block; }

  .cart__footer .solid-border {
    border: 0;
    padding: 0; }

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

  .cart td.cart__price-wrapper {
    text-align: right;
    padding-right: 0;
    padding-left: 0; }

  .lookbook2 h2, .lookbook2 .h2, .lookbook2 .btn {
    font-size: 15px;
    padding: 12px 18px; }

  .lookbook h2, .lookbook .h2 {
    font-size: 15px; }

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

  .customer-links a {
    padding: 10px; }

  .prod-thumbs .grid__item {
    width: 95px;
    padding: 5px 2px; }

  .footer-top ul.social li a {
    width: 35px; }

  .blog-right.right {
    float: none; }

  .product-single__thumbnails {
    text-align: center;
    margin-left: -3px; }

  .collection-hero {
    margin-top: -15px; }

  .related-product .grid-products .slick-arrow {
    opacity: 1; }

  .tabs-listing .panel-body {
    padding-left: 15px;
    padding-right: 15px; }

  .panel .productSlider .grid-view-item {
    padding: 0; }

  .grid--view-items.productSlider .slick-arrow {
    background-color: #fff;
    font-size: 0;
    border: 1px solid #787878;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    top: 40%;
    margin-top: -17px;
    opacity: 1;
    position: absolute;
    transition-duration: 0.5s; }
  .grid--view-items.productSlider .slick-prev:before,
  .grid--view-items.productSlider .slick-next:before {
    font-size: 20px;
    color: #000;
    top: 5px;
    font-family: "FontAwesome";
    position: absolute; }
  .grid--view-items.productSlider .slick-prev {
    left: -14px; }
    .grid--view-items.productSlider .slick-prev:before {
      left: 11px; }
  .grid--view-items.productSlider .slick-next {
    right: -14px; }
    .grid--view-items.productSlider .slick-next:before {
      right: 11px; }

  .grid-products .small--one-half:nth-child(2n+1) {
    clear: left; }

  .image-bar .grid__item {
    margin-bottom: 20px; }

  #newsletter-modal .row-cell.last {
    display: none; }

  .store-info li {
    padding: 15px;
    display: block; }
    .store-info li .fa {
      margin-bottom: 0; }
    .store-info li + li {
      border-top: 1px solid #ddd;
      border-left: 0; } }
@media only screen and (max-width: 480px) {
  .call-us {
    max-width: 250px;
    line-height: 1.1; }

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

  .slideshow__subtitle {
    display: none !important; }

  .slideshow .slick-arrow {
    height: 40px;
    width: 40px; }
  .slideshow .slick-prev {
    left: 15px; }
  .slideshow .slick-next {
    right: 15px; }
  .slideshow .mega-title {
    font-size: 1.5em; }

  .shopify-section .section-header h2, .shopify-section .section-header .h2 {
    font-size: 18px; }

  .feature-row h2, .feature-row .h2 {
    font-size: 25px; }

  .article__grid-image img {
    margin: 0 auto 20px; }

  .article__grid-image,
  .article__grid-meta--has-image {
    width: 100%; }

  .collection-header .breadcrumb {
    margin-top: -35px; }

  .collection-hero__title {
    top: 55%; }

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

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

  .lookbook h2, .lookbook .h2 {
    margin-bottom: -10px; }

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

  .top-header {
    height: 35px; }
    .top-header .container {
      padding: 0; }
      .top-header .container .row {
        margin: 0; }
    .top-header .pull-left {
      padding: 0 15px; }
      .top-header .pull-left .currency-picker {
        height: 34px;
        padding-left: 0;
        padding-right: 22px;
        border-left: 0; }
      .top-header .pull-left .call-us {
        float: right;
        line-height: 34px;
        margin-left: 5px; }
    .top-header .pull-right {
      height: 35px;
      padding: 0; }
      .top-header .pull-right .customer-links {
        display: inline-block;
        height: 35px;
        border-bottom: 1px solid #ddd; }
        .top-header .pull-right .customer-links li {
          width: 50%;
          height: 35px; }
          .top-header .pull-right .customer-links li a {
            line-height: 35px;
            display: block;
            padding: 0 10px;
            text-align: center;
            font-size: 0px; }
            .top-header .pull-right .customer-links li a .fa {
              font-size: 15px;
              vertical-align: middle; }

  .slideshow__text-content .container > div.left {
    padding-left: 0;
    float: left; }

  .slideshow__text-content .container > div.right {
    padding-right: 0; }

  .slideshow .mega-title {
    font-size: 16px; }

  .slideshow__text-content {
    padding: 4px 15px; }

  .close-announcement {
    right: 20px; }

  .notification-bar__message {
    padding: 10px 40px 10px; }

  .modal .modal-prod-img {
    max-width: 65px; }

  .modal .prod-detail {
    padding-left: 75px; }

  .modal {
    padding: 10px;
    width: 100%; }
    .modal .buttonSet .btn {
      padding: 8px 6px;
      font-size: 10px; }

  .hero--hero {
    height: 200px; }
    .hero--hero .hero__inner .mega-title {
      font-size: 25px;
      margin: 0; }

  #shopify-section-hero .mega-subtitle p {
    font-size: 16px; }

  .newsletter-left {
    padding: 20px; }

  .home-instagram .widget-title {
    transform: none;
    position: relative;
    max-width: 100%; }

  .product-form__cart-submit {
    margin-bottom: 10px !important; } }
@media only screen and (max-width: 479px) {
  .grid-view-item {
    max-width: 280px; }

  .hero--hero {
    height: 200px; }

  .hero__inner .mega-title {
    font-size: 25px; }

  .main-col .grid__item.small--one-half {
    width: 100%; }

  .recent-products .grid__item {
    width: 50%; }

  .recent-products .grid__item:nth-child(3n+1) {
    clear: none; }

  .recent-products .grid__item:nth-child(odd) {
    clear: left; }

  #ProductSection-product-template .product-form__cart-submit {
    padding: 6px 22px; }

  .template-list-collections .collection-grid .col-xs-6 {
    width: 100%; }

  .template-search .grid-products .small--one-half {
    width: 100%; }

  .hero--hero {
    font-size: 20px; } }
.shopify-preview-bar {
  display: none; }
