/******************************************************************
Theme Name: Turbo 3.2.0
Theme URI: https://outofthesandbox.com/collections/turbo-theme
Author: Out of the Sandbox (https://outofthesandbox.com)
Description: Shopify Theme (https://www.shopify.com/?ref=out-of-the-sandbox)
******************************************************************/
/* Table of Contents
==================================================
  #Mixins
  #Functions
  #Reset
  #Basic Styles
  #Typography
  #Links
  #Lists
  #Menu
  #Images
  #Placeholders
  #Videos
  #Buttons
  #Tabs
  #Accordions
  #Forms
  #Newsletter
  #Tables
  #Misc
  #Testimonials
  #FAQ Template
  #Logo-list
  #Gallery Section
  #Recently Viewed
  #Search autocomplete
  #Search page
  #Search Section
  #Site Styles
  #Header
  #Swatch Styles
  #Flickity
  #Layout
  #Password Page
  #Account
  #Page Details
  #Product Details
  #Home page - general
  #Home page - slideshow
  #Home page - image with text
  #Home page - featured promotions
  #Home page - image with text overlay
  #Home page - video
  #Home page - Text column with images
  #Font-Face
  #Custom Styles */

/* #Mixins
================================================== */
@mixin background-opacity($color, $opacity: 0.5) {
  background: $color;
  background: rgba($color, $opacity);
}

@mixin text-opacity($color, $opacity: 0.5) {
  color: $color;
  color: rgba($color, $opacity);
}

@mixin diagonal-line($line-color: #999, $line-width: 1px, $line-blur: 0px) {
  $color-start: 50%;
  $full-color-end: calc(50% + #{$line-width});
  $color-end: 50%;
  @if($line-blur == 0 or $line-blur == 0px) {
    $color-start: 50%;
  }

  background-image: linear-gradient(to bottom left, transparent $color-start, $line-color 50%, $line-color $full-color-end, transparent $color-end), linear-gradient(to bottom right, transparent $color-start, $line-color 50%, $line-color $full-color-end, transparent $color-end);
}

$font-size-header: 30;
$font-size-column: 39.0;
$small: 480px;
$medium: 798px;
$large: 799px;
$larger: 960px;
$xlarge: 1400px;

@mixin respond-to($breakpoint) {
  @if $breakpoint == "small" {
    @media (max-width: $small) {
      @content;
    }
  }

  @else if $breakpoint == "medium" {
    @media (max-width: $medium) {
      @content;
    }
  }

  @else if $breakpoint == "large" {
    @media (min-width: $large) {
      @content;
    }
  }

  @else if $breakpoint == "larger" {
    @media (min-width: $larger) {
      @content;
    }
  }

  @else if $breakpoint == "xlarge" {
    @media (min-width: $xlarge) {
      @content;
    }
  }

  @else if $breakpoint == "ie10+" {
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      @content;
    }
  }
  @else if $breakpoint == "tablet" {
    @media only screen and (min-width: 799px) and (max-width: 1024px){
      @content;
    }
  }
  @else if $breakpoint == "tablet-down" {
    @media only screen and (max-width: 1024px){
      @content;
    }
  }
  @else {
    @media ($breakpoint) {
      @content;
    }
  }
}

/*
  Prefix mixin for generating vendor prefixes.
  Based on https://github.com/thoughtbot/bourbon/blob/v4-stable/app/assets/stylesheets/addons/_prefixer.scss

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

    // Output:
    .element {
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
    }
*/
@mixin prefix($property, $value, $prefixes) {
  @each $prefix in $prefixes {
    @if $prefix == webkit {
      -webkit-#{$property}: $value;
    } @else if $prefix == moz {
      -moz-#{$property}: $value;
    } @else if $prefix == ms {
      -ms-#{$property}: $value;
    } @else if $prefix == o {
      -o-#{$property}: $value;
    } @else if $prefix == spec {
      #{$property}: $value;
    } @else  {
      @warn 'Unrecognized prefix: #{$prefix}';
    }
  }
}

//Flexbox
// Flexbox display
@mixin flexbox() {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

// Inline flexbox display
@mixin inline-flexbox() {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

// The 'flex' shorthand
// - applies to: flex items
// <positive-number>, initial, auto, or none
@mixin flex($values) {
  -webkit-box-flex: $values;
     -moz-box-flex: $values;
      -webkit-flex: $values;
      -ms-flex: $values;
          flex: $values;
}

// Flex Flow Direction
// - applies to: flex containers
// row | row-reverse | column | column-reverse
@mixin flex-direction($direction) {
  -webkit-flex-direction: $direction;
     -moz-flex-direction: $direction;
      -ms-flex-direction: $direction;
          flex-direction: $direction;
}

// Flex Line Wrapping
// - applies to: flex containers
// nowrap | wrap | wrap-reverse
@mixin flex-wrap($wrap) {
  -webkit-flex-wrap: $wrap;
     -moz-flex-wrap: $wrap;
      -ms-flex-wrap: $wrap;
          flex-wrap: $wrap;
}

// Flex Direction and Wrap
// - applies to: flex containers
// <flex-direction> || <flex-wrap>
@mixin flex-flow($flow) {
  -webkit-flex-flow: $flow;
     -moz-flex-flow: $flow;
      -ms-flex-flow: $flow;
          flex-flow: $flow;
}

// Display Order
// - applies to: flex items
// <integer>
@mixin order($val) {
  -webkit-box-ordinal-group: $val;
     -moz-box-ordinal-group: $val;
         -ms-flex-order: $val;
          -webkit-order: $val;
            order: $val;
}

// Flex grow factor
// - applies to: flex items
// <number>
@mixin flex-grow($grow) {
  -webkit-flex-grow: $grow;
     -moz-flex-grow: $grow;
      -ms-flex-grow: $grow;
          flex-grow: $grow;
}

// Flex shrink
// - applies to: flex item shrink factor
// <number>
@mixin flex-shrink($shrink) {
  -webkit-flex-shrink: $shrink;
     -moz-flex-shrink: $shrink;
      -ms-flex-shrink: $shrink;
          flex-shrink: $shrink;
}

// Flex basis
// - the initial main size of the flex item
// - applies to: flex itemsnitial main size of the flex item
// <width>
@mixin flex-basis($width) {
  -webkit-flex-basis: $width;
     -moz-flex-basis: $width;
      -ms-flex-basis: $width;
          flex-basis: $width;
}

// Axis Alignment
// - applies to: flex containers
// flex-start | flex-end | center | space-between | space-around
@mixin justify-content($justify) {
  -webkit-justify-content: $justify;
     -moz-justify-content: $justify;
      -ms-justify-content: $justify;
          justify-content: $justify;
            -ms-flex-pack: $justify;
}

// Packing Flex Lines
// - applies to: multi-line flex containers
// flex-start | flex-end | center | space-between | space-around | stretch
@mixin align-content($align) {
  -webkit-align-content: $align;
     -moz-align-content: $align;
      -ms-align-content: $align;
          align-content: $align;
}

// Cross-axis Alignment
// - applies to: flex containers
// flex-start | flex-end | center | baseline | stretch
@mixin align-items($align) {
  -webkit-align-items: $align;
     -moz-align-items: $align;
      -ms-align-items: $align;
          align-items: $align;
}

// Cross-axis Alignment
// - applies to: flex items
// auto | flex-start | flex-end | center | baseline | stretch
@mixin align-self($align) {
  -webkit-align-self: $align;
     -moz-align-self: $align;
      -ms-align-self: $align;
          align-self: $align;
}

@mixin vertical-alignment {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50.1%);
  -ms-transform: translateY(-50.1%);
  transform: translateY(-50.1%);
  padding: 10px 0;
}

@mixin headline-style($font-size: $font-size-header) {
  font-family: Jost, sans-serif;
  font-weight: 400;
  font-size: $font-size * 1px;
  text-transform: uppercase;
  line-height: 1.5;
  color: #333333;
  display: block;
  letter-spacing: 2px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  @include respond-to('medium'){
    font-size: floor($font-size * 0.8) * 1px;
  }
}

@mixin word-wrap {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-word;
  word-break: break-word;
}

/* #Functions
================================================== */
@function set-text-color($color) {
  @if (lightness($color) > 50) {
    @return #333333; // Lighter background, return dark color
  } @else {
    @return #ffffff; // Darker background, return light color
  }
}

@function secondary-button-color($color) {
  @if (lightness($color) > 80) {
    @return #333333; // Too light, send something darker
  } @else {
    @return $color; // Normal color
  }
}

/* #Reset & Basics
================================================== */
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section,summary{display:block;}audio,canvas,video{display:inline-block;}audio:not([controls]){display:none;height:0;}[hidden]{display:none;}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}a:focus{outline:thin dotted;}a:active,a:hover{outline:0;}h1{font-size:2em;}abbr[title]{border-bottom:1px dotted;}b,strong{font-weight:700;}dfn{font-style:italic;}mark{background:#ff0;color:#000;}code,kbd,pre,samp{font-family:monospace, serif;font-size:1em;}pre{white-space:pre-wrap;word-wrap:break-word;}q{quotes:\201C \201D \2018 \2019;}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sup{top:-.5em;}sub{bottom:-.25em;}img{border:0;}svg:not(:root){overflow:hidden;}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em;}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;}button,input{line-height:normal;}button,html input[type=button],/* 1 */
input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer;}button[disabled],input[disabled]{cursor:default;}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0;}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none;}textarea{overflow:auto;vertical-align:top;}table{border-collapse:collapse;border-spacing:0;}body,figure{margin:0;}legend,button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}

.clearfix:after {visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }

* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

/* #Fonts
================================================== */@font-face {
  font-family: "Open Sans";
  font-weight: 400;
  font-style: normal;
  src: url("//www.kouboo.com/cdn/fonts/open_sans/opensans_n4.c32e4d4eca5273f6d4ee95ddf54b5bbb75fc9b61.woff2?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=a64560c76fb856a01a16207b49e21632ac557fbe88145430ae73f4d5cafca490") format("woff2"),
       url("//www.kouboo.com/cdn/fonts/open_sans/opensans_n4.5f3406f8d94162b37bfa232b486ac93ee892406d.woff?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=228942aab996d2ded9fc012cbbccdf6ce17853cb3b3df34ba4f6f08d440092ab") format("woff");
}


  @font-face {
  font-family: "Open Sans";
  font-weight: 700;
  font-style: normal;
  src: url("//www.kouboo.com/cdn/fonts/open_sans/opensans_n7.a9393be1574ea8606c68f4441806b2711d0d13e4.woff2?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=b9ef1e5b7509f00964c51eaa27f3d9761dd9704bf97c2e7f1bdbb78caf19ce93") format("woff2"),
       url("//www.kouboo.com/cdn/fonts/open_sans/opensans_n7.7b8af34a6ebf52beb1a4c1d8c73ad6910ec2e553.woff?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=b568a9a72cbfac3841107c1a3c80716cbce0894b39e969b3c6e5425011caf544") format("woff");
}


  @font-face {
  font-family: "Open Sans";
  font-weight: 400;
  font-style: italic;
  src: url("//www.kouboo.com/cdn/fonts/open_sans/opensans_i4.6f1d45f7a46916cc95c694aab32ecbf7509cbf33.woff2?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=10cdc03f43bfd977fe01f7e232ab4c43985cb1fd1cc190fe3f6028d85afe35f7") format("woff2"),
       url("//www.kouboo.com/cdn/fonts/open_sans/opensans_i4.4efaa52d5a57aa9a57c1556cc2b7465d18839daa.woff?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=7567028cfbf3e07aaba7e65389cef451f9812d05cabe62e91d59cd712d9a6e4b") format("woff");
}


  @font-face {
  font-family: "Open Sans";
  font-weight: 700;
  font-style: italic;
  src: url("//www.kouboo.com/cdn/fonts/open_sans/opensans_i7.916ced2e2ce15f7fcd95d196601a15e7b89ee9a4.woff2?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=6d8ce26038524e15f12cceb9b34cd00e8d928ba09866fa2cae5fc34abcd76cc0") format("woff2"),
       url("//www.kouboo.com/cdn/fonts/open_sans/opensans_i7.99a9cff8c86ea65461de497ade3d515a98f8b32a.woff?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=fd0a27caa59f909ef9d0d89f60d1e3da97bb8ea6272970f8954865823a0ec5e6") format("woff");
}


  @font-face {
  font-family: Oswald;
  font-weight: 400;
  font-style: normal;
  src: url("//www.kouboo.com/cdn/fonts/oswald/oswald_n4.7760ed7a63e536050f64bb0607ff70ce07a480bd.woff2?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=f283937f3e19b0295efb07eec032627e0de768d92e11ea68322d6f279a890219") format("woff2"),
       url("//www.kouboo.com/cdn/fonts/oswald/oswald_n4.ae5e497f60fc686568afe76e9ff1872693c533e9.woff?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=0facb4d36a02aad9dcb32a7d522833a1dd44a2a6cf599c324122c46c92d7bb0f") format("woff");
}


  @font-face {
  font-family: Oswald;
  font-weight: 700;
  font-style: normal;
  src: url("//www.kouboo.com/cdn/fonts/oswald/oswald_n7.b3ba3d6f1b341d51018e3cfba146932b55221727.woff2?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=1c68d24469f28800ede61702313f7b04e020a082a82f4f8631625d2f842bc570") format("woff2"),
       url("//www.kouboo.com/cdn/fonts/oswald/oswald_n7.6cec6bed2bb070310ad90e19ea7a56b65fd83c0b.woff?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=5a6b2b3798a9f3dfcf4770d6856c87eb66ab781dc582ca1c6640217bc2460d5e") format("woff");
}


  

  

  @font-face {
  font-family: Jost;
  font-weight: 400;
  font-style: normal;
  src: url("//www.kouboo.com/cdn/fonts/jost/jost_n4.d47a1b6347ce4a4c9f437608011273009d91f2b7.woff2?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=4d02c8b1ab2c91d92b4a83eaf3f6cf66d2d57f1ce5d9ba479cabdf0aa758bd34") format("woff2"),
       url("//www.kouboo.com/cdn/fonts/jost/jost_n4.791c46290e672b3f85c3d1c651ef2efa3819eadd.woff?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=42206203ef1f10fa161c0af34152cffc632d9b70ddc2f96258f25087e09b90b5") format("woff");
}


  @font-face {
  font-family: Jost;
  font-weight: 700;
  font-style: normal;
  src: url("//www.kouboo.com/cdn/fonts/jost/jost_n7.921dc18c13fa0b0c94c5e2517ffe06139c3615a3.woff2?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=e10976cf1fb7c7f5d581d57c5152d8a701f323400b8f7e472258a69ca21159a1") format("woff2"),
       url("//www.kouboo.com/cdn/fonts/jost/jost_n7.cbfc16c98c1e195f46c536e775e4e959c5f2f22b.woff?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=7c12493ecf0905756ee380efb3faf8d75decb8591eb293d1ca58d3941bcd4644") format("woff");
}


  @font-face {
  font-family: Jost;
  font-weight: 400;
  font-style: italic;
  src: url("//www.kouboo.com/cdn/fonts/jost/jost_i4.b690098389649750ada222b9763d55796c5283a5.woff2?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=d6357d83f8c0710aa87d8cc33dd5e6adc1b33309296e61b1bca2baf59b6bd83d") format("woff2"),
       url("//www.kouboo.com/cdn/fonts/jost/jost_i4.fd766415a47e50b9e391ae7ec04e2ae25e7e28b0.woff?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=37d0536e78e73393ddc11e5c4df18c5621a2ee6d8e2779166ef130f23394d6df") format("woff");
}


  @font-face {
  font-family: Jost;
  font-weight: 700;
  font-style: italic;
  src: url("//www.kouboo.com/cdn/fonts/jost/jost_i7.d8201b854e41e19d7ed9b1a31fe4fe71deea6d3f.woff2?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=0cac75c615dcdc0b9301f8717dd7ab1e971b204ab6422e3ba76a600430278952") format("woff2"),
       url("//www.kouboo.com/cdn/fonts/jost/jost_i7.eae515c34e26b6c853efddc3fc0c552e0de63757.woff?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=1e5329c93356147af2275d1f5eb03eecd681dc9b306d22ec67fa8cc009392d40") format("woff");
}


  @font-face {
  font-family: Jost;
  font-weight: 400;
  font-style: normal;
  src: url("//www.kouboo.com/cdn/fonts/jost/jost_n4.d47a1b6347ce4a4c9f437608011273009d91f2b7.woff2?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=4d02c8b1ab2c91d92b4a83eaf3f6cf66d2d57f1ce5d9ba479cabdf0aa758bd34") format("woff2"),
       url("//www.kouboo.com/cdn/fonts/jost/jost_n4.791c46290e672b3f85c3d1c651ef2efa3819eadd.woff?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=42206203ef1f10fa161c0af34152cffc632d9b70ddc2f96258f25087e09b90b5") format("woff");
}


  @font-face {
  font-family: Jost;
  font-weight: 700;
  font-style: normal;
  src: url("//www.kouboo.com/cdn/fonts/jost/jost_n7.921dc18c13fa0b0c94c5e2517ffe06139c3615a3.woff2?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=e10976cf1fb7c7f5d581d57c5152d8a701f323400b8f7e472258a69ca21159a1") format("woff2"),
       url("//www.kouboo.com/cdn/fonts/jost/jost_n7.cbfc16c98c1e195f46c536e775e4e959c5f2f22b.woff?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=7c12493ecf0905756ee380efb3faf8d75decb8591eb293d1ca58d3941bcd4644") format("woff");
}


  @font-face {
  font-family: Jost;
  font-weight: 400;
  font-style: italic;
  src: url("//www.kouboo.com/cdn/fonts/jost/jost_i4.b690098389649750ada222b9763d55796c5283a5.woff2?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=d6357d83f8c0710aa87d8cc33dd5e6adc1b33309296e61b1bca2baf59b6bd83d") format("woff2"),
       url("//www.kouboo.com/cdn/fonts/jost/jost_i4.fd766415a47e50b9e391ae7ec04e2ae25e7e28b0.woff?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=37d0536e78e73393ddc11e5c4df18c5621a2ee6d8e2779166ef130f23394d6df") format("woff");
}


  @font-face {
  font-family: Jost;
  font-weight: 700;
  font-style: italic;
  src: url("//www.kouboo.com/cdn/fonts/jost/jost_i7.d8201b854e41e19d7ed9b1a31fe4fe71deea6d3f.woff2?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=0cac75c615dcdc0b9301f8717dd7ab1e971b204ab6422e3ba76a600430278952") format("woff2"),
       url("//www.kouboo.com/cdn/fonts/jost/jost_i7.eae515c34e26b6c853efddc3fc0c552e0de63757.woff?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=1e5329c93356147af2275d1f5eb03eecd681dc9b306d22ec67fa8cc009392d40") format("woff");
}


  @font-face {
  font-family: Jost;
  font-weight: 100;
  font-style: normal;
  src: url("//www.kouboo.com/cdn/fonts/jost/jost_n1.546362ec0aa4045fdc2721192f7d2462716cc7d1.woff2?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=e587342171ecaf6f09e8e8a5f14dfb2a0e0d37ebaa3af291e4593b4783c33719") format("woff2"),
       url("//www.kouboo.com/cdn/fonts/jost/jost_n1.9b0529f29bfd479cc9556e047a2bf95152767216.woff?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=77f61e3bd7972c6b5d41eacdbe6f38399b9d10e93e06d3c4e7e1e039b4a9c06e") format("woff");
}


  @font-face {
  font-family: Jost;
  font-weight: 100;
  font-style: italic;
  src: url("//www.kouboo.com/cdn/fonts/jost/jost_i1.7b0ff29ba95029edc5dd0df19002b72e6077fc6b.woff2?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=3549473eabd38fafb75f0f511b02eb7d8e8b85315785ca79b8a0c99c54e30fe3") format("woff2"),
       url("//www.kouboo.com/cdn/fonts/jost/jost_i1.7acf1f4df24d6c94874ab29dbc10ddec8b9782ca.woff?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=194c377fbb3918f09654c31a3dabf2e39587510c98e6bd87d41fac60106cfcce") format("woff");
}


  @font-face {
  font-family: Jost;
  font-weight: 400;
  font-style: normal;
  src: url("//www.kouboo.com/cdn/fonts/jost/jost_n4.d47a1b6347ce4a4c9f437608011273009d91f2b7.woff2?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=4d02c8b1ab2c91d92b4a83eaf3f6cf66d2d57f1ce5d9ba479cabdf0aa758bd34") format("woff2"),
       url("//www.kouboo.com/cdn/fonts/jost/jost_n4.791c46290e672b3f85c3d1c651ef2efa3819eadd.woff?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=42206203ef1f10fa161c0af34152cffc632d9b70ddc2f96258f25087e09b90b5") format("woff");
}


  @font-face {
  font-family: Jost;
  font-weight: 700;
  font-style: normal;
  src: url("//www.kouboo.com/cdn/fonts/jost/jost_n7.921dc18c13fa0b0c94c5e2517ffe06139c3615a3.woff2?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=e10976cf1fb7c7f5d581d57c5152d8a701f323400b8f7e472258a69ca21159a1") format("woff2"),
       url("//www.kouboo.com/cdn/fonts/jost/jost_n7.cbfc16c98c1e195f46c536e775e4e959c5f2f22b.woff?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=7c12493ecf0905756ee380efb3faf8d75decb8591eb293d1ca58d3941bcd4644") format("woff");
}


  @font-face {
  font-family: Jost;
  font-weight: 400;
  font-style: italic;
  src: url("//www.kouboo.com/cdn/fonts/jost/jost_i4.b690098389649750ada222b9763d55796c5283a5.woff2?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=d6357d83f8c0710aa87d8cc33dd5e6adc1b33309296e61b1bca2baf59b6bd83d") format("woff2"),
       url("//www.kouboo.com/cdn/fonts/jost/jost_i4.fd766415a47e50b9e391ae7ec04e2ae25e7e28b0.woff?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=37d0536e78e73393ddc11e5c4df18c5621a2ee6d8e2779166ef130f23394d6df") format("woff");
}


  @font-face {
  font-family: Jost;
  font-weight: 700;
  font-style: italic;
  src: url("//www.kouboo.com/cdn/fonts/jost/jost_i7.d8201b854e41e19d7ed9b1a31fe4fe71deea6d3f.woff2?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=0cac75c615dcdc0b9301f8717dd7ab1e971b204ab6422e3ba76a600430278952") format("woff2"),
       url("//www.kouboo.com/cdn/fonts/jost/jost_i7.eae515c34e26b6c853efddc3fc0c552e0de63757.woff?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=1e5329c93356147af2275d1f5eb03eecd681dc9b306d22ec67fa8cc009392d40") format("woff");
}


  @font-face {
  font-family: "Open Sans";
  font-weight: 400;
  font-style: normal;
  src: url("//www.kouboo.com/cdn/fonts/open_sans/opensans_n4.c32e4d4eca5273f6d4ee95ddf54b5bbb75fc9b61.woff2?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=a64560c76fb856a01a16207b49e21632ac557fbe88145430ae73f4d5cafca490") format("woff2"),
       url("//www.kouboo.com/cdn/fonts/open_sans/opensans_n4.5f3406f8d94162b37bfa232b486ac93ee892406d.woff?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=228942aab996d2ded9fc012cbbccdf6ce17853cb3b3df34ba4f6f08d440092ab") format("woff");
}


  @font-face {
  font-family: "Open Sans";
  font-weight: 700;
  font-style: normal;
  src: url("//www.kouboo.com/cdn/fonts/open_sans/opensans_n7.a9393be1574ea8606c68f4441806b2711d0d13e4.woff2?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=b9ef1e5b7509f00964c51eaa27f3d9761dd9704bf97c2e7f1bdbb78caf19ce93") format("woff2"),
       url("//www.kouboo.com/cdn/fonts/open_sans/opensans_n7.7b8af34a6ebf52beb1a4c1d8c73ad6910ec2e553.woff?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=b568a9a72cbfac3841107c1a3c80716cbce0894b39e969b3c6e5425011caf544") format("woff");
}


  @font-face {
  font-family: "Open Sans";
  font-weight: 400;
  font-style: italic;
  src: url("//www.kouboo.com/cdn/fonts/open_sans/opensans_i4.6f1d45f7a46916cc95c694aab32ecbf7509cbf33.woff2?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=10cdc03f43bfd977fe01f7e232ab4c43985cb1fd1cc190fe3f6028d85afe35f7") format("woff2"),
       url("//www.kouboo.com/cdn/fonts/open_sans/opensans_i4.4efaa52d5a57aa9a57c1556cc2b7465d18839daa.woff?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=7567028cfbf3e07aaba7e65389cef451f9812d05cabe62e91d59cd712d9a6e4b") format("woff");
}


  @font-face {
  font-family: "Open Sans";
  font-weight: 700;
  font-style: italic;
  src: url("//www.kouboo.com/cdn/fonts/open_sans/opensans_i7.916ced2e2ce15f7fcd95d196601a15e7b89ee9a4.woff2?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=6d8ce26038524e15f12cceb9b34cd00e8d928ba09866fa2cae5fc34abcd76cc0") format("woff2"),
       url("//www.kouboo.com/cdn/fonts/open_sans/opensans_i7.99a9cff8c86ea65461de497ade3d515a98f8b32a.woff?h1=a291Ym9vLmNvbQ&h2=a291Ym9vLmFjY291bnQubXlzaG9waWZ5LmNvbQ&hmac=fd0a27caa59f909ef9d0d89f60d1e3da97bb8ea6272970f8954865823a0ec5e6") format("woff");
}


/* #Basic Styles
================================================== */
body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-transform: none;
  color: #333333;
  line-height: 1.6em;
  overflow: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;

  background-color: #fafafa;
  
}

body.blocked-scroll {
  position: fixed;
  overflow: hidden;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

body.blocked-overflow {
  overflow: hidden;
}

::-moz-selection {
  background-color: #000;
  color: #fff;
}

::selection {
  background: #FFF7B6;
  color: black;
}

abbr {
  border-bottom: 1px dotted #cccccc;
}

/* Theme editor */

.editor-visible--true {
  display: block !important;
}

/* Lazyloading styles */



  .blur-up {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
    -webkit-filter: blur(5px);
    filter: blur(5px);
    transform: scale(1);
    transition: filter 200ms, -webkit-filter 200ms, box-shadow 200ms;
    &.lazyloaded {
      -webkit-filter: blur(0);
      filter: blur(0);
    }
  }



img[data-sizes="auto"],
img[data-sizes="100vw"] {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

//Ensures that small images are not stretched larger
.image__container {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* #Typography
================================================== */
.logo {
  font-family: Oswald, sans-serif;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1.2em;
  
}

/*  Headings  */

h1 {
  @include headline-style($font-size-header);
  margin: 0 auto 15px;
  clear:both;
  font-weight: lighter;
  padding-top: 4px;
  a {
    &:link, &:visited {
      font-weight: inherit;
      color: #333333;
    }
    &:hover, &:active {
      color: #3c3c3c;
    }
  }
  &.collection_title_tags {
    padding-right: 25px;
    border-right: solid 1px #cccccc;
  }
}

h2, .h2, h2.title {
  @include headline-style(floor($font-size-header*0.9));
  margin-bottom: 0.75em;
  a {
    font-weight: inherit;
  }
  &.collection_title {
    margin-bottom: 0;
    display: inline;
  }
  &.product_name a {
    color: #333333;
  }
}
.cart h2 {
  margin-top: 0;
}

h3, .h3 {
  @include headline-style(floor($font-size-header*0.8));
  margin: 0 auto 15px 0;
  a, a:visited {
    font-weight: inherit;
    color: #333333;
  }
  &.title {
    line-height: 1.25;
    margin: 0 auto 15px;
    clear:both;
    padding-top: 4px;
    a, a:visited {
      color: #333333;
    }
  }
  &.sub_title {
    padding: 5px 0;
    color: #333333;
    a {
      color: #333333;
    }
  }
}

h4, .h4 {
  @include headline-style(floor($font-size-header*0.7));
  margin: 0 0 0.5em 0;
  padding: 7px 0;
  a {
    font-weight: inherit;
  }
  &.title a {
    border: 0;
    padding: 0;
    margin: 0;
  }
}

h5, .h5 {
  @include headline-style(floor($font-size-header*0.65));
  margin: 0 0 0.5em 0;
  padding: 7px 0;
  a {
    font-weight: inherit;
  }
  &.sub_title {
    padding: 5px 0;
    color: #333333;
    a {
      color: #333333;
    }
  }
}

h6, .h6 {
  @include headline-style(floor($font-size-header*0.6));
  letter-spacing: 1px;
  margin: 0 0 0.5em 0;
  padding: 7px 0;
  a {
    font-weight: inherit;
  }
  &.title {
    line-height: 32px;
    margin: 0 0 0.5em 0;
    color: #333333;
  }
}

.cart h6 {
  margin-top: 0;
}

.collection_title {
  @include headline-style;
  margin: 0 auto 15px;
  clear: both;
  padding-top: 4px;
  a {
    font-weight: inherit;
    color: #333333;
    &:hover, &:active {
      color: #3c3c3c;
    }
  }
}

div {
  &.collection_title {
    margin-bottom: 0;
    line-height: 30px;
    display: inline;
  }
  &.collection_title_tags {
    padding-right: 25px;
    border-right: solid 1px #cccccc;
  }
}

.headline,
.empty_cart,
.promo_banner,
.title {
  @include headline-style;
}

.title.insta,
.title.twitter {
  @include respond-to('medium') {
    text-align: center;
  }
  a {
    color: #333333;
  }
}

.title.center.blog a {
 color: #333333;
}

/*  Content  */

p {
  margin: 0 0 15px;
  font-style: normal;
  line-height: 1.6em;
  img {
    margin: 0;
  }
}

sub {
  font-size: 60%;
}

em, i {
  font-style: italic;
}

strong, b {
  font-weight: bold;
}

small {
  font-size: 90%;
}

.feature img {
  position: relative;
  top: 7px;
  margin-right: 5px;
  width: 25px;
  height: 25px;
}

.onboard-text {
  margin: 0;
}

.page-divider {
  opacity: 0;
  border-color: #aaaaaa;
  border-top: 0;
}

.active-divider {
  opacity: 1;
}

.feature p {
  font-size: smaller;
}

#featured_links {
  padding: 20px 0;
  h2 {
    padding-top: 15px;
  }
}


  #featured_links .column, #featured_links .columns {
    opacity: 1;
  }


//Add default spacing to allow room for stars (from Shopify review app)
.slider-gallery .shopify-product-reviews-badge {
  height: 30px;
  display: block;
}

//Add spacing below review stars (from Shopify review app)
.spr-badge + .feature_divider {
  margin-top: 15px;
}
.spr-badge {
  padding: 5px 0;
}
.product-details .spr-badge-caption {
  display: none;
}
div#shopry-review-photos a { display: block !important; }

//Feature divider variables
$borderWidth: 1px;
$borderWidthHr: 1px;
$borderStyle: solid;

.feature_divider {
  width: 100%;
  margin-bottom: 20px;
  display: block;
  border: 0;
  border-color: #aaaaaa;
  border-bottom-width: $borderWidth;
  border-bottom-style: $borderStyle;

  &.no-margin {
    margin-bottom: 0px;
  }

  @include respond-to('medium'){
    margin-bottom: 10px;
  }
}

div.container.bottom-fix {
  padding-bottom: 0px;
}

.page .feature_divider,
.page h2.title + .feature_divider {
  margin-bottom: 15px;
}

/*  Blockquotes  */

blockquote, blockquote p {
  font-size: 17px;
  line-height: 24px;
  font-style: italic;
}

blockquote {
  margin: 0 0 20px;
  padding: 9px 20px 0 19px;
  border-left: 1px solid #cccccc;
  cite {
    display: block;
    font-size: 12px;
    color: #555;
    a, a:visited {
      color: #555;
    }
    &:before {
      content: "\2014 \0020";
    }
  }
}

hr {
  border-color: #aaaaaa;
  border-width: $borderWidthHr;
  border-style: $borderStyle;
  clear: both;
  margin: 12px 0;
  height: 0;
}

.cart_container {
  hr {
    border-top-width: 0px;
  }
}

div.section.collection_description {
  margin: 0 0 1.5em 0;
}

/* #Links
================================================== */
a,
a:visited,
a span {
  color: #3c3c3c;
  text-decoration: none;
  position: relative;
  transition: color .1s linear;
}

a:hover,
a:focus {
  color: #422810;
}

a,
button,
input,
select,
textarea,
label,
summary {
  touch-action: manipulation;
}

/* #Lists
================================================== */
ul, ol {
  margin-bottom: 20px;
  ul, ol {
    margin: 4px 0 5px 30px;
    li {
      margin-bottom: 6px;
    }
  }
  li {
    margin-bottom: 12px;
  }
}

ul {
  list-style: disc outside;
  &.square {
    list-style: square outside;
  }
  &.circle {
    list-style: circle outside;
  }
  &.disc {
    list-style: disc outside;
  }
  &.large li {
    line-height: 21px;
  }
  &.none {
    list-style: none outside;
    margin-left: 0;
  }
  &.border {
    list-style: none outside;
    line-height: 26px;
    li {
      border-bottom: 1px solid #cccccc;
      list-style: none outside none;
      padding: 12px 0;
      margin-bottom: 0;
    }
  }
}

ol {
  list-style: decimal;
}

/* #Menu
================================================== */
.header {
  z-index: 1000;
  width: 100%;
  top: 0;
  a, a:visited, a span, select.currencies {
    color: #905200;
    text-shadow: none;
  }
  div.container {
    padding-bottom: 5px;
    padding-top: 5px;
  }
}

body.is-active {
  overflow-y: hidden;
  #header {
    bottom: 0;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
}

#header.mobile_nav-fixed--true,
.mobile_nav-fixed--false.is-active #header {
  position: fixed;
  z-index: 1001;
  width: 100%;
  top: 0;
  left: 0;
}

#header {
  display: none;
  .top_bar {
    text-align: center;
    height: 40px;
    @include flexbox();
    @include align-items(center);
    .icon-search {
      z-index: 3;
      &:before {
        font-size: 18px;
      }
    }
    a {
      &.right {
        left: auto;
        right: 15px;
        font-size: 20px;
        padding-top: 8px;
        top: 4px;
        z-index: 1;
      }
      &.mobile_nav {
        @include flexbox();
        @include align-items(center);
        z-index: 1;
      }
    }
    > a, > a:visited, > a:active {
      display: block;
      font-size: 25px;
      outline: 0;
      -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }
    a span {
      color: #ffffff;
      display: inline-block;
      padding-left: 4px;
      position: relative;
    }
  }
}

#header .top_bar a.icon-bag:before,
#header .top_bar a.icon-cart:before {
  font-size: 18px !important;
}

.nav ul.mobile_menu li a {
  display: inline-block;
}

.menu .vertical-menu {
  li {
    position: relative;
  }
}
.vertical-menu {
  display: inline;
}

.menu .vertical-menu li:hover .vertical-menu_submenu,
.menu .vertical-menu li.BOO .vertical-menu_submenu {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-in;
  pointer-events: all;
  z-index: 2000;
}

.menu .vertical-menu_submenu li:hover .vertical-menu_sub-submenu {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-in;
  pointer-events: all;
  z-index: 2000;
}

.menu .vertical-menu_submenu {
  position: absolute;
  left: 0;
  top: 100%;
  padding-left: 0;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-in;
  pointer-events: none;
  text-align: left;
  width: 270px;
  @include background-opacity(#fbf6f0, 0.9);
  li {
    padding: 0 20px;
    display: block;
  }
  a {
    display: block;
  }
  span.icon-down-arrow {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}

.menu .vertical-menu_submenu.is-visible,
.menu .vertical-menu_sub-submenu.is-visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-in;
  pointer-events: all;
  z-index: 2000;
}

.menu .vertical-menu_sub-submenu {
  position: absolute;
  left: 100%;
  top: 0;
  padding-left: 0;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 5s ease-in;
  pointer-events: none;
  width: 270px;
  @include background-opacity(#fbf6f0, 0.9);
  li {
    padding: 0 20px;
    display: block;
  }
  a {
    display: block;
  }
}

.vertical-menu_submenu.vertical-menu--align-right {
  right: 0;
  left: auto;
}

.vertical-menu_sub-submenu.vertical-menu--align-right {
  right: 100%;
  left: auto;
}

/*  Mobile nav  */

#header .mobile_nav.dropdown_link {
  width: 25%;
  span.menu_title {
    position: absolute;
    left: 40px;
  }
}

.mobile_nav div {
  width: 30px;
  height: 40px;
  position: relative;
  float: left;
  margin: 0 8px 0 5px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: .1s ease-in-out;
  cursor: pointer;
}

.mobile_nav div span {
  display: block !important;
  position: absolute !important;
  height: 1px !important;
  width: 100%;
  background: #ffffff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  padding: 0 !important;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: .1s ease-in-out;
}

.mobile_nav div span:nth-child(1) {
  top: 10px;
}

.mobile_nav div span:nth-child(2),.mobile_nav div span:nth-child(3) {
  top: 20px;
}

.mobile_nav div span:nth-child(4) {
  top: 30px;
}

.mobile_nav div.open span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.mobile_nav div.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mobile_nav div.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mobile_nav div.open span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.mobile_nav.dropdown_link:hover {
  border: none;
}

#mobile_menu {
  margin: 0;
  li {
    padding: 0 24px;
    display: block;

    a span.icon-down-arrow {
      padding: 0 15px !important;
    }

    &.nosublink {
      background: #F0E6D9;
    }
  }
  .sublink {
    &.expanded {
      background-color: #fff;
    }

    border-bottom: 1px solid #F0E6D9;
    transition: all 0.3s;

    ul {
      display: none;
      margin-left: 0;
      padding-left: 0;
      margin: 0;

      li {
        &:first-of-type {
          border-top: 1px solid #F0E6D9;
        }

        &:not(:last-of-type) {
          border-bottom: 1px solid #F0E6D9;
        }
      }
    }
  }
}

.feature_image.editor-hover--true {
  .main_nav,
  .dropdown {
    @include background-opacity(#fbf6f0, 0.9);
    clear: both;
    transition: all 0.3s linear;
    animation: fadeIn 0.3s linear none;
  }
}

.top_bar {
  height: 40px;
  background-color: #422810;
  padding: 0 0 0 10px;
  .social_icons {
    float: left;
    margin: 0;
    padding-left: 10px;
    li {
      padding: 5px;
    }
  }
  a {
    @include flexbox();
    @include align-items(center);
  }
  ul.social_icons a {
    display: inline;
    @include flex(none);
  }
  .top_bar--right {
    @include flexbox();
    @include align-items(center);
    margin-left: auto;
    height: 40px;
    .icon-search {
      display: inline-block;
      line-height: 0;
      padding-right: 15px;
    }
    .cart_container {
      display: inline-block;
    }
  }
}

.main_nav,
.dropdown {
  @include background-opacity(#fbf6f0, 1);
  clear: both;
  transition: all 0.3s linear;
  animation: fadeIn 0.3s linear none;
}



.sticky_nav {
  position: fixed;
  width: 100%;
  z-index: 35;
  top: 0;
  left: 0;
  padding: 0;

  /* Translate -100% to move off screen */
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);

  /* Animations */
  transition: all 300ms ease-in-out;
}

.is-active .sticky_nav {
  bottom: 0;
  overflow-y: scroll;
  overflow-x: hidden;
}

.sticky_nav--stick {
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
  opacity: 1;
  @include respond-to('medium') {
    display: none;
  }
}

.sticky_nav--unstick {
  opacity: 0;
  transition: opacity 0s;
}

.sticky_nav ul.menu, .sticky_nav .mini_cart {
  padding-bottom: 0 !important;
}

.menu.center,
.menu.align_right,
.menu.align_left {
  margin: 0 20px;
}

.menu {
  display: block;
  border: none;
  padding: 0;
  margin: 0;
  li {
    display: inline-block;
    margin: 0;
    border: 0;
  }
}

.nav ul li a.sub-menu {
  padding: 10px 4px 10px 4px;
  z-index: 1001;
}

.nav ul li:hover a.sub-menu {
  color: #905200;
}

.menu a,
.menu a:visited,
.menu a:active,
#header span.menu_title,
.menu a span,
select.currencies,
.mini_cart span {
  font-family: Jost, sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: #905200;
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
  display: block;
  letter-spacing: 1px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: 0;
  @include respond-to('medium') {
    font-size: 12px;
  }
}

.feature_image .main_nav a,
.feature_image .main_nav a span {
  color: #f2f2f2;
}

.menu li, #header span.menu_title,
.menu a span, select.currencies,
.mini_cart span {
  padding-left: 5px;
  padding-right: 5px;
}

#header span.menu_title {
  cursor: pointer;
  height: 40px;
  line-height: 20px;
  margin-top: -2px;
}

.menu li {
  vertical-align: top;
}

select.currencies {
  height: 40px;
  min-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
  cursor: pointer;
  @if (lightness(#422810) > 50) {
    background-image: url(//www.kouboo.com/cdn/shop/t/152/assets/select.png?v=163443801653745187891755274457); // Lighter background
  } @else {
    background-image: url(//www.kouboo.com/cdn/shop/t/152/assets/select_light.png?v=153136132513795776861755274457); // Darker background
  }
  @include respond-to('medium'){
    font-size: 16px;
  }
}

#mobile_menu select.currencies {
  padding-left: 0;
}

.feature_image .header .menu a,
.feature_image .header .menu a:visited,
.feature_image .header .menu a span {
  color: #f2f2f2;
  
}

.feature_image .header .menu a[href]:hover,
.menu a.active,
.menu a.active span,
.feature_image .header .menu a.active,
.header_bar a.active,
.feature_image .header .menu a:focus {
  color: #373230;
}

.menu li a[href]:hover,
.menu li a:focus,
.menu a[href]:hover span {
  color: #373230;
}

.menu a.top_link,
.menu a.dropdown_link {
  border-bottom: solid 1px transparent;
}

.menu a.top_link:hover,
.menu a.dropdown_link:hover,
.menu a.active_link {
  border-bottom: solid 1px #373230;
}

.feature_image a.top_link:hover {
  border-bottom: solid 1px #373230;
}

.menu a span {
  display: inline;
  vertical-align: top;
}

.top_bar a,
.top_bar a:visited,
.top_bar a:active,
.top_bar a span,
.top_bar select.currencies,
a.mini_cart,
a.mini_cart span,
.feature_image .header .top_bar .menu a,
.feature_image .header .top_bar .menu a span,
.cart_container .mini_cart:hover {
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 1px;
}

.top_bar li a:hover,
.top_bar li a[href]:hover,
.top_bar li a[href]:hover span,
.top_bar li a:active,
.top_bar li a:hover span,
.top_bar a:active span,
.top_bar .currencies:hover,
.feature_image .header .top_bar .menu a:hover,
.feature_image .header .top_bar .menu a:hover span {
  color: #c2b600;
}

.top_bar li {
  padding-left: 10px;
  padding-right: 10px;
}

.top_bar .menu a, .top_bar .social_icons a {
  height: 40px;
  line-height: 40px;
  padding: 0;
}

/*  Mini cart  */
.mini_cart,
.nav a.mini_cart {
  float: right;
  text-align: center;
  cursor: pointer;
  background-color: #c2b600;
  padding-left: 5px;
  padding-right: 5px;
  margin-left: 5px;
  height: 40px;
  z-index: 2001;
  @include respond-to('larger'){
    padding-left: 15px;
    padding-right: 15px;
  }
  @include respond-to('medium'){
    right: 0;
  }
}

.cart_container {
  li.cart_item {
    @include flexbox();
    @include justify-content(space-between);
    .sale,
    .price {
      margin-left: auto;
      margin-right: 10px;
      @include flexbox();
      @include flex-direction(column);
      text-align: right;
    }
    .cart_item__title {
      width: 50%;
    }
  }
}

.nav a.mini_cart {
  
    margin-left: 10px;
  
}

.top_bar a.mini_cart span {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 40px;
}

a.tos_icon,
.cart_content a.tos_icon {
  font-size: 13px;
  color: #3c3c3c;
  &:visited {
    color: #3c3c3c;
  }
  &:hover {
    color: #422810;
  }
}

.cart_content__continue-shopping {
  display: none;
}

.no-touchevents {
  a.cart_content__continue-shopping.secondary_button {
    display: none;
  }
}

.no-touchevents,
.touchevents {
  a.cart_content__continue-shopping.secondary_button {
    display: none;
    @include respond-to('medium'){
      display: block;
      border-top: 0;
      margin: 0 auto;
      padding-top: 0;
      padding-bottom: 10px;
      margin-bottom: 10px;
      position: static;
      font-size: inherit;
      letter-spacing: inherit;
    }
  }
}

.mini_cart span {
  display: inline-block;
}
.cart_container .cart_content {
  display: none;
}

.cart_container.active_link .cart_content {
  display: block;
  overflow-y: auto;
  max-height: calc(90vh - 60px);
}

.cart_container.active_link .cart_content::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}
.cart_container.active_link .cart_content::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: rgba(0,0,0,.5);
  -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}

.cart_content .product-quantity-box,
#cart_form .product-quantity-box {
  margin: 0;
  width: 130px;
}
.cart_content .product-quantity-box .quantity,
#cart_form .product-quantity-box .quantity {
  padding: 0 5px;
  width: 30%;
  min-height: 30px;
  height: 30px;
  border-radius: 3px;
  margin: 0 2px;
}
.cart_content .product-quantity-box .product-plus,
#cart_form .product-quantity-box .product-plus {
  font-size: 15px;
  line-height: 30px;
  height: 30px;
  padding-right: 2px;
}
.cart_content .product-quantity-box .product-minus,
#cart_form .product-quantity-box .product-minus {
  font-size: 15px;
  line-height: 30px;
  height: 30px;
  padding-right: 2px;
}

#cart_form .product-quantity-box .product-minus,
#cart_form .product-quantity-box .product-plus,
.nav .product-quantity-box .product-minus,
.nav .product-quantity-box .product-plus {
  padding-right: 0;
}

#cart_form .icon-minus,
#cart_form .icon-plus {
  position: relative;
  left: 1px;
}


  .product-quantity-box .product-plus {
    -webkit-border-top-right-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-radius-topright: 3px;
    -moz-border-radius-bottomright: 3px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
  }
  .product-quantity-box .product-minus {
    -webkit-border-top-left-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
  }


.cart_container.active_link .mini_cart,
.cart_container.active_link .mini_cart span {
  background-color: #fafafa;
  color: #333333 !important;
}

.cart_content {
  top: 40px;
  right: 0;
  position: absolute;
  z-index: 2000;
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: smaller;
  text-transform: none;
  color: #333333;
  border: 1px solid #cccccc;
  border-top: 0;
  border-right: 0;
  width: 100%;
  max-width: 320px;
  @include respond-to('larger'){
    max-width: 420px;
  }
}

div.cart_content form {
  margin: 15px 0 0 0;
  padding: 0;
}

.cart .cart_subtotal {
  font-weight: bold;
  font-size: larger;
}

.cart_content .cart_subtotal {
  text-align: left;
  font-weight: bold;
}

.cart_content a, .cart_content a:visited, .cart_content a:hover, .cart_content a .price, .cart_content a .price span {
  color: #333333 !important;
}

.cart_content a .price span {
  padding-left: 5px;
}

.cart_content ul {
  list-style: none;
  margin: 0;
  padding: 15px 20px;
}

.cart_content ul li {
  list-style: none;
  clear: both;
}

.cart_content .action_button {
  width: 100%;
}

.top_bar [class^="icon-"]:before, .top_bar [class*=" icon-"]:before, .mini_cart {
  font-size: 15px;
  margin-right: 0;
}

#customer_login_guest,
#customer_login {
  display: inline;
  @include respond-to('small') {
    display: block;
  }
}

input[type="submit"].guest_button, input[type="button"].guest_button {
  color: #3c3c3c;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  &:hover {
    background: transparent;
    border: 0;
    color: #422810;
  }
  @include respond-to('large') {
    text-align: center;
  }
}

.menu ul li .mini_cart span {
  padding-left: 5px;
  top: -1px;
}

.sticky_nav div.logo img {
  width: 60%;
}

.dropdown_container {
  clear: both;
  width: 100%;
  display: none;
}

.dropdown_container img {
  max-width: 100%;
}

.dropdown {
  position: absolute;
  width: 100%;
  z-index: 1000;
}

.dropdown_content {
  display: table;
  width: 100%;
  margin: 0 auto;
}

.dropdown_container.mega-menu .dropdown_content {
  @include flexbox();
  @include flex-direction(row);
  width: 100%;
  margin: 0 auto;
}

.mega-menu__richtext,
.mega-menu__image-caption-link {
  padding: 0 5px;

  img {
    margin-bottom: 10px;
  }
}

.mega-menu__richtext a,
.mega-menu__richtext a:active,
.mega-menu__richtext a:hover {
  display: inline-block;
  text-transform: none;
}

.mega-menu__image-caption-link {
  text-align: center;
  margin-bottom: 10px;

  a, a:visited, a:active, a:hover {
    text-transform: none;
    display: block;
  }
}

.dropdown_content a p,
.mobile-mega-menu a p {
  padding: 0;
}

.dropdown_content p,
.mobile-mega-menu p {
  font-family: Jost, sans-serif;
  font-size: 14px;
  color: #905200;
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
  display: block;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: 0;
  margin-bottom: 0;

}

.dropdown_content p,
.dropdown_content a,
.dropdown_content a:hover,
.dropdown_content a:active {
  font-size: 14px;
  letter-spacing: 1px;
}

.dropdown_column__menu + .dropdown_column__menu {
  margin-top: 10px;
}

.dropdown_narrow {
  width: 60%;
}

.dropdown_column {
  display: table-cell;
  padding: 15px 20px 30px 20px;
  width: 16.666%;
  vertical-align: top;

  img {
    max-width: 100%;
  }

  ul {
    margin: 0;
    padding: 0;
  }

  ul.dropdown_title {
    border-bottom: solid 1px #905200;
    padding-bottom: 10px;
  }

  ul.dropdown_item {
    text-align: center;
  }
}

.dropdown_container.mega-menu .dropdown_column {
    display: inline-block;
    padding: 15px 20px 30px 20px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 16.666%;
    flex: 1 0 16.666%;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    vertical-align: top;
}

.dropdown_column li {
  display: block;
}

.dropdown_column li a, .dropdown_column li a:hover, .dropdown_column li a:active {
  padding-bottom: 0;
  text-transform: none;
}

.dropdown_row {
  display:table-row;
}

select.currencies {
  border: 0 !important;
  background-color: transparent;
  margin-bottom: 0 !important;
  min-width: 65px;
  outline: 0;
  background-position: 96.5% 55%;
  background-size: 18px 12px;
  text-shadow: none !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  appearance: none;
}

select.currencies:active {
  border: 0;
  outline: 0;
  text-shadow: 0;
  box-shadow: 0;
}

select.currencies option {
  @include background-opacity(#fbf6f0, 0.6);
  color: #905200;
}

.menu li.currencies {
  padding: 0;
}

.container div.collection_nav {
  margin-bottom: 1.5em;
}

.collection_menu, .collection_menu li {
  display: inline;
  list-style: none;
  border: none;
  position: relative;
  top: -3px;
  margin: 0;
}

.collection_menu li {
  padding-left: 25px;
}

.sidebar-wrap {
  border-right: 1px solid #cccccc;
  margin-right: 0px;
  padding-right: 20px;
  @include respond-to('medium') {
    border: none;
    margin:0;
    padding-right: 0;
  }
}

.sidebar-wrap h4,
.sidebar-wrap h4.toggle {
 margin: 0;
 padding: 0;
}

.sidebar-wrap h4.toggle {
 @include respond-to('medium') {
  margin: 10px 0;
 }
}

.sidebar a, .sidebar a:visited {
  color: #363636;
}

.sidebar a:hover, .sidebar a:active {
  color: #422810;
}

.sidebar .meta {
  margin-left: 2px;
}

.sidebar .spr-badge {
  color: #333333;
}

.toggle-all--true {
  h4.toggle {
    cursor: pointer;
    pointer-events: all;
  }
  .toggle span {
    display: block;
  }
  .toggle_list {
    display: none;
  }
}

.content_block.toggle_list {
  a {
    display: inline;
    position: static;
    padding-left: 0;
    margin-left: 0;
    border-left: none;
    color: #3c3c3c;
    &:hover {
      border-left: none;
      color: #422810
    }
  }
}

.toggle_list {
  margin: 0;
  padding: 10px 0 15px 0;
}

.toggle_list a {
  display: inline-block;
  position: relative;
  margin-left: 0;
  max-width: 80%;
  border-left: solid 2px transparent;
  transition : border 200ms ease-out;
}

.toggle_list a.active,
.toggle_list a.active--default {
  padding-left: 8px;
  border-left: solid 2px #B8C6C6;
}

ul.toggle_list li ul {
  display: none;

  &.active {
    display: block;
  }
}

.sidebar .toggle_list a.active {
  border-left: solid 9px #422810;
}

.toggle_list li {
  list-style: none;
  line-height: 1.4em;
  padding: 8px 0 8px 0;
}

.toggle_list .meta span {
 line-height: 2.5;
}

.sidebar_text {
 margin-bottom: 12px;
 padding-top: 10px;
}

.sidebar_content {
  border-left: solid 1px #cccccc;
  padding-left: 20px;
}

.sidebar_content .toggle_list li {
 line-height: 1.2;
}

.sidebar .newsletter {
  margin-bottom: 20px;
  form {
    width: 100%;
  }
}

.sidebar li ul {
  margin: 8px 0 0 15px;
}

.sidebar .toggle_list li ul {
  padding-left: 0;
}

.sidebar ul li {
  margin-bottom: 0;
}

.sidebar input.sign_up[type="submit"],
.sidebar input.contact_email[type="email"] {
  width: 100% !important;
  margin-left: 0;
}

.blog_search {
  position: relative;
}

.sidebar-block {
  margin-bottom: 15px;
  border-bottom: 1px solid #cccccc;
  &:last-child {
    border-bottom: none;
  }
  &:empty {
    border-bottom: none;
  }
  &:blank {
    border-bottom: none;
  }
  &:first-child h4.toggle{
    padding-top: 0;
  }
  h4.toggle {
    @include flexbox();
    @include align-items(center);
    @include justify-content(space-between);
    margin-bottom: 0;
    padding: 15px 0;
    line-height: 1.5;
  }
}

//Filter collections

.sidebar .filter-active-tag {
  position: relative;
}

.color-filter--true {
  label {
    @include flexbox();
    @include align-items(center);
  }
}

.sidebar__collection-filter {
  a, label {
    cursor: pointer;
  }

  label {
    text-transform: none;
    font-weight: normal;
    font-size: inherit;
  }

  label:hover {
    color: #422810
  }

  input[type="checkbox"] {
    display: none;
  }

  input.styled-checkbox[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    
    display: inline-block;
    cursor: pointer;
    position: relative;
    vertical-align: top;
    background-size: cover;
    margin-right: 15px;
  }

  button.clear-active-filter, button.clear-active-filter:active {
    color: #3c3c3c;
    background-color: transparent;
    border: none;
    outline: 0;
    box-shadow: 0;
    font-family: inherit;
    letter-spacing: 0;
    text-transform: none;
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    padding: 2px 4px;
    line-height: 1.2;
    display: block;
    height: auto;
    min-height: auto;
  }

  button.clear-active-filter:hover {
    color: #422810;
  }

  .x-icon {
    position: relative;
    display: inline-block;
    overflow: visible;
    width: 15px;
    height: 15px;
    margin: 0 2px 0 0;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none;
    font-style: normal;
    color: #95979c;
    border: 0;
    outline: 0;
    background: transparent;
    vertical-align: middle;
    top: -1px;
    &:before {
      font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
      font-size: 25px;
      line-height: 15px;
      position: absolute;
      top: 0;
      left: 0;
      display: block;
      width: 15px;
      content: "\00d7";
      text-align: center;
    }
  }
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder { /* Firefox 18- */
  color: #888;
}

::-moz-placeholder {  /* Firefox 19+ */
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}

/* Sub Collections */

.featured_collections.sub-collection {
  margin-bottom: 10px;
  .thumbnail {
    margin-bottom: 10px;
    @include respond-to('medium'){
      width: 100%;
    }
  }
}

.sub-collection--2 {
  .thumbnail {
    width: calc(50% - 20px);
    &:nth-child(2n+1){
      clear: both;
    }
  }
}

.sub-collection--3 {
  .thumbnail {
    width: calc(33.33333% - 20px);
    &:nth-child(3n+1){
      clear: both;
    }
  }
}

.sub-collection--4 {
  .thumbnail {
    width: calc(25% - 20px);
    &:nth-child(4n+1){
      clear: both;
    }
  }
}

.list-collection-wrapper {
  //no image available
  img[src*='/no-image']{
    opacity: 0;
  }
  img[src*='/no-image'] ~ .thumbnail-overlay {
    opacity: 1 !important;
    .collection-details {
      opacity: 1;
      transform: none;
    }
  }
  img[src*='/no-image'] ~ .collection-info__caption {
    @include respond-to('medium'){
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
    }
  }
  .img {
    width: 100%;
  }
  .collection-info__caption {
    
    margin-top: 20px;
    @include respond-to('medium'){
      display: block;
      position: static;
    }
  }

  

    .product-wrap {
      text-align: center;
      position: relative;
      &:hover .collection-details {
        opacity: 1;
        transform: none;
      }
      &:hover .view_all {
        opacity: 1;
        transform: none;
      }
      &:hover .thumbnail-overlay {
        opacity: 1;
      }
    }

    .thumbnail-overlay {
      .info {
        @include vertical-alignment;
        position: absolute;
        text-align: center;
        width: 100%;
        margin: 0 auto;
      }
      .collection-details {
        position: relative;
        opacity: 0;
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        transition: opacity 0.3s ease-out, transform 0.3s ease-out;
        display: block;
      }
      .title {
        display: block;
        padding: 0 2em;
        position: relative;
        color: #ffffff;
      }
    }

  
}

.blog-header {
  margin-bottom: 5px;
  .blog-title.blog-tags--true {
    float: none;
  }
  .blog-title {
    float: left;
    @include respond-to('medium') {
      width: 100%;
      margin-bottom: 0;
    }
  }
  .subtitle {
    clear: both;
  }
}

.blog-header .feature_divider {
  clear: both;
  width: 100%;
}

/* Blog Article Styling */

.article .icon-slash {
  padding-right: 5px;
}


/* Styles for blog, collections */
.section_select {
  padding: 0;
  text-align: right;
  float: right;
  @include respond-to('medium') {
    padding-top: 0;
    width: 100%;
    padding-right: 7px;
    box-sizing: border-box !important;
  }
  .blog_filter, .tag_filter, .sort_by {
    color: #333333;
    display: inline-block;
    border: none;
    padding-right: 30px;
    background-position: 100% 50%;
    background-color: #fafafa;
    font-family: Jost, sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    width: auto;
    margin-bottom: 0;
    max-width: 80%;
    @include respond-to('medium'){
      float: none;
      width: 100%;
      max-width: 100%;
      font-size: 16px;
      padding-left: 0;
    }
  }
}

div.breadcrumb-collection {
  margin-bottom: 20px;
  & + div.section {
    margin-top: 0;
  }
  @include respond-to('medium'){
   margin-top: 15px;
   text-align: center;
  }
}

.breadcrumb_text, .article-pagination {
  margin-top: 0px;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 0;
  @include respond-to('medium'){
    margin-top: 0;
  }
  .breadcrumb-divider {
    color: #3c3c3c;
    margin: 0 5px;
  }
}

.breadcrumb_link:hover span {
 color: #422810;
}

.breadcrumb {
  font-size: 14px;
  @include respond-to('medium'){
   margin-bottom: 20px;
  }
}


/* #Images
================================================== */
/*
  The purpose of the below declaration is to make sure images don't
  exceed the width of columns they are put into when resizing window.
  Unfortunately, this declaration breaks certain lightbox, slider or other plugins,
  so the best solution is to individually call these properties on images that
  are children of the grid that you want to resize with grid.
*/

.product_row img,
  .product_image_col img,
  .article img,
  .section img,
  .thumbnail img,
  .page img,
  .sidebar img,
  .logo img,
  .cart_image img,
  .footer img,
  #target img {
  max-width: 100%;
  height: auto;
}

/* #Placeholders
================================================== */

  .featured-products-section {
    .section {
      margin: 30px 0px;
    }
  }

  $color-blankstate: rgba(#333333, 0.9);
  $color-blankstate-background: rgba(#333333, 0.5);

  .placeholder-svg {
    fill: $color-blankstate;
    background-color: $color-blankstate-background;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
    display: block;
  }

  .placeholder-svg--banner,
  .placeholder-svg--slideshow,
  .placeholder-svg--video {
    max-height: 600px;
  }

  .placeholder-instagram .instas:nth-child(even) .placeholder-svg--instagram,
  .featured-promotions-section .feature-section:nth-child(even) .placeholder-svg--promotions {
    background-color: rgba(#333333, 0.6);
  }

  .image-with-text-section .featured-link--image:nth-child(odd) .placeholder-svg--promotions {
    background-color: rgba(#333333, 0.6);
    fill: rgba(#333333, 0.9);
  }

  .homepage-slideshow .flickity-slider .gallery-cell:nth-child(2n + 1) .placeholder-svg--slideshow {
    background-color: rgba(#333333, 0.6);
  }

  .homepage-slideshow .flickity-slider .gallery-cell:nth-child(2n) .placeholder-svg--slideshow {
    background-color: rgba(#333333, 0.8);
  }

/* #Videos
================================================== */

.product_gallery {
  .video-container > div { position: relative; }
  .video-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
  }
  .vimeo {
    max-width: 830px;
    margin: 0 auto;
  }
  .vimeo > div { padding-top: 56.26506%; }
  .youtube {
    max-width: 853px;
    margin: 0 auto;
  }
  .youtube > div { padding-top: 56.271981%; }
}

video {
  display: block;
  width: 100%;
  height: auto;
}

/* #Buttons
================================================== */

a.button,
  .button,
  button,
  input[type="submit"],
  input[type="reset"],
  input[type="button"],
  .action_button,
  a.action_button,
  input.action_button[type="submit"],
  input.action_button[type="button"],
  input.action_button[type="button"],
  button.shopify-payment-button__button.shopify-payment-button__button--unbranded {
    background: #7f7900;
    color: #ffffff;
    border: 1px solid #7f7900;
    padding: 0 20px;
    text-align: center;
    cursor: pointer;
    min-height: 44px;
    height: 40px;
    line-height: 1.2;
    vertical-align: top;
    font-family: Jost, sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    @include inline-flexbox();
    @include align-items(center);
    @include justify-content(center);
    transition: all 0.2s linear;
    -webkit-appearance: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    
      border-radius: 3px;
    
  }

  .ie {
    a.button,
    .button,
    button,
    input[type="submit"],
    input[type="reset"],
    input[type="button"],
    .action_button,
    a.action_button,
    input.action_button[type="submit"],
    input.action_button[type="button"] {
      line-height: 40px;
    }
  }

  a.button:hover,
  button:hover,
  input[type="submit"]:hover,
  input[type="reset"]:hover,
  input[type="button"]:hover,
  .action_button:hover,
  input.action_button[type="submit"]:hover,
  input.action_button[type="button"]:hover,
  input.action_button[type="button"]:hover,
  button.shopify-payment-button__button.shopify-payment-button__button--unbranded:hover {
    background: #393431;
    border: 1px solid #393431;
  }

  a.button:active,
    button:active,
    input[type="submit"]:active,
    input[type="reset"]:active,
    input[type="button"]:active,
    .action_button:active,
    input.action_button[type="submit"]:active,
    input.action_button[type="button"]:active,
    input.action_button[type="button"]:active,
    button.shopify-payment-button__button.shopify-payment-button__button--unbranded:active {
      box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
      outline: 0;
  }

  .add_to_cart, form.product_form input.add_to_cart {
    width: 100%;
    margin-bottom: 0px;
  }

  input[type="submit"],
  input[type="reset"],
  input[type="button"],
  input.action_button[type="submit"],
  input.action_button[type="button"],
  button.action_button {
    display: inline-block;

    
  }

  /* Animation for checkmark on add to cart button */

  button.add_to_cart {
    position: relative;
    .text {
      display: block;
      width: 100%;
      -webkit-animation-duration: 0.5s;
      animation-duration: 0.5s;
    }
    .fadeInDown.text {
      -webkit-animation-duration: 0.8s;
      animation-duration: 0.8s;
    }
  }

  button .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    path {
      stroke-dasharray: 19.79 19.79;
      stroke-dashoffset: 19.79;
      stroke: #ffffff;
      opacity: 0;
    }
    &.checkmark-active path {
      -webkit-animation: drawCheckmark 0.5s linear alternate forwards;
      animation: drawCheckmark 0.5s linear alternate forwards;
    }
  }

  @keyframes drawCheckmark {
    from {
      stroke-dashoffset: 19.79;
      opacity: 1;
    }
    to {
      stroke-dashoffset: 0;
      opacity: 1;
    }
  }

  @-webkit-keyframes drawCheckmark {
    from {
      stroke-dashoffset: 19.79;
      opacity: 1;
    }
    to {
      stroke-dashoffset: 0;
      opacity: 1;
    }
  }

  .ie
  button
  .checkmark {
    path {
      stroke-dashoffset: 0;
      opacity: 0;
    }
    &.checkmark-active path{
      -webkit-animation: fadeCheckmark 0.5s linear alternate forwards;
      animation: fadeCheckmark 0.5s linear alternate forwards;
    }
  }

  @-webkit-keyframes fadeCheckmark {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes fadeCheckmark {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @include respond-to('ie10+'){
    button
    .checkmark {
      path {
        stroke-dashoffset: 0;
        opacity: 0;
      }
      &.checkmark-active path{
        animation: fadeCheckmark 0.5s linear alternate forwards;
      }
    }

    @keyframes fadeCheckmark {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }
  }

  label.tos_label {
    display: inline;
    font-weight: normal;
    text-transform: none;
    cursor: pointer;
    padding-left: 5px;
  }
  .tos { text-align: center; margin: 15px 20px 15px 0;}
  .cart_text { text-align: center; }
  .disabled {
    pointer-events: none;
  }

  //Shopify smart payment buttons
  .add_to_cart.action_button {
    min-height: 44px;
    margin-bottom: 0;
  }

  .shopify-payment-button {
    position: relative;
  }

  .shopify-payment-button button {
    line-height: 1.2;
    padding-top: 11px;
    padding-bottom: 11px;
    margin-bottom: 0;
  }


  div.shopify-payment-button__button {
    
      border-radius: 3px;
    
  }

  .shopify-payment-button__button--branded,
  .shopify-payment-button__button--unbranded {
    overflow: hidden;
    min-height: 44px;
  }

  button.shopify-payment-button__more-options {
    color: #333333;
    box-shadow: none;
    text-transform: none;
    font-size: 0.8rem;
    letter-spacing: 0;
    padding: 16px 0 28px;
    max-width: 80%;
    margin: 0 auto;
    position: absolute;
    top: 100%;
    left: 50%;
    font-weight: normal;
    font-family: "Open Sans", sans-serif;
    @include prefix(transform, translateX(-50%), ms webkit spec);
    &:hover {
      background-color: transparent;
      border: none;
    }
  }

  .purchase-details {
    @include flexbox;
    @include align-items(center);
    @include flex-wrap(wrap);
  }

  .product_section .smart-payment-button--true.product_form {
    max-width: 100%;
  }

  .smart-payment-button--true .purchase-details {
    padding-bottom: 50px;
  }

  .smart-payment-button--true button .checkmark path {
    stroke: #7f7900;
  }

  .smart-payment-button--false .purchase-details {
    @include align-items(flex-end);
  }

  .purchase-details__quantity {
    margin-right: 0;
    margin-bottom: 20px;
    input.quantity {
      padding-top: 11px;
      padding-bottom: 11px;
      line-height: 1.4;
      min-height: 44px;
      margin-bottom: 0;
    }
  }

  .purchase-details__buttons {
    @include flexbox;
    @include flex(1 0 60%);
    @include align-items(flex-end);
    @include flex-wrap(wrap);
    .shopify-payment-button {
      @include flex(1 0 100%);
      margin-bottom: 0;
      margin-top: 8px;
      max-width: 100%;
      @include respond-to('xlarge'){
        @include flex(1 0 calc(50% - 4px));
        max-width: calc(50% - 4px);
      }
    }
    .action_button.action_button--secondary {
      background-color: transparent;
      border: 1px solid secondary-button-color(#7f7900);
      color: secondary-button-color(#7f7900);
      box-shadow: none;
      line-height: 1.2;
      padding: 10px 0;
      min-height: 44px;
      @include flex(1 0 100%);
      margin: 0;
      max-width: 100%;
      @include respond-to('xlarge'){
        @include flex(1 0 calc(50% - 4px));
        max-width: calc(50% - 4px);
        margin-right: 8px;
      }
      &:hover,&:focus {
        background-color: #7f7900;
        color: #ffffff;
      }
    }
  }

  .additional-checkout-button.additional-checkout-button--paypal {
    min-width: 100% !important;
  }

  .additional-checkout-button+.additional-checkout-button {
    margin-left: 0 !important;
    max-width: 100% !important;
  }


/* #Tabs
================================================== */
ul.tabs {
    display: block;
    margin: 25px 0;
    border-bottom: solid 1px #cccccc;
    border-top: 0;
    list-style: none outside;
    margin-left: 0;
    text-transform: uppercase;
    padding-left:0;
}
ul.tabs li {
    display: block;
    width: auto;
    height: 30px;
    padding: 0;
    float: left;
    margin-bottom: 0;
    border: 0;
    list-style: none outside;
    margin-left: 0;
    cursor: pointer;
}
ul.tabs li a {
    display: block;
    text-decoration: none;
    width: auto;
    height: 29px;
    line-height: 30px;
    margin-right: 60px;
    font-size: 13px;
    outline: none;
    @media (max-width: 960px) {
      margin-right: 30px
    }
    @include respond-to('medium'){
      font-size: 12px;
    }
    @include respond-to('small'){
      margin-right: 20px;
    }
}
ul.tabs li a.active {
    border-bottom: solid 3px #cccccc;
    background-color: #fafafa;
    border-bottom: solid 3px #aaaaaa;
    height: 31px;
    position: relative;
    border-right-width: 1px;
    color: #333333;
}
ul.tabs li:last-child a {
        margin: 0;
}
ul.tabs-content { margin: 0; display: block; border: 0; padding-left: 0;}
ul.tabs-content > li { display:none; border: 0;}
ul.tabs-content > li.active { display: block; border: 0; padding-left: 0px;}
ul.tabs-content ul {padding-left: 0;}

/* #Accordions
================================================== */
button {
	border: none;
	appearance: none;
}

$accordionBg: #fafafa;

.faqAccordion{
	&>dt{
		&>button{
			background: transparent;
			position: relative;
			padding: 20px 20px 20px 40px;
			color: #333333;
      border-bottom: 1px solid #cccccc;
			text-align: left;
      display: block;
			cursor: pointer;
			width: 100%;
      outline: none;
      text-transform: initial;
      min-height: auto;
      height: auto;
      line-height: inherit;
      font-weight: normal;
      font-family: "Open Sans", sans-serif;
      box-shadow: none;
      border-radius: 0px;
      font-size: 18px;
			&:hover,&:focus{
				background: darken($accordionBg, 3%);
        border: none;
        border-bottom: 1px solid #cccccc;
        color: #422810;
			}
			&::after{
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50.1%);
        -ms-transform: translateY(-50.1%);
        transform: translateY(-50.1%);
				left: 15px;
        font-size: 25px;
				content: "\002b";
        color: inherit;
			}
			&[aria-expanded="true"]{
				&::after{
					content: "\002d";
          font-size: 30px;
				}
			}
		}
		&:first-child{
			&>button{
				border-top: none;
			}
		}
	}
	&>dd{
		color: #333333;
		padding: 20px 0px 20px 0px;
		&[aria-hidden="true"]{
			display: none;
		}
    @include respond-to('medium'){
      margin-left: 15px;
    }
	}
}

//Accordion tabs

.accordion-tabs {
  > a {
    display: block;
    background-color: #D1D3D4;
    margin: 10px 0;
    padding: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000;
    :hover {
      cursor: pointer;
    }
  }
  > li[id*=tab] {
    display: none;
    list-style: none;
  }
}

  /* Clearfixing tabs for beautiful stacking */
  ul.tabs:before,
  ul.tabs:after {
    content: '\0020';
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0; }
ul.tabs:after {
    clear: both; }
ul.tabs {
    zoom: 1; }

/* #Forms
================================================== */
form {
    margin-bottom: 20px; }
fieldset {
    margin-bottom: 20px; }
input[type="text"], input[type="password"], input[type="email"], input[type="search"], input[type="url"], input[type="tel"], input[type="number"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="range"], input[type="color"], select, textarea {
    display: block;
    width: 100%;
    height: 44px;
    min-height: 44px;
    padding: 0 10px;
    margin: 0;
    line-height: 22px;
    border: 1px solid #cccccc;
    outline: none;
    background: #fff;
    color: #5f6a7d;
    font: 13px "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-bottom: 15px;
    -webkit-appearance: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
      border-radius: 3px;
    
    @include respond-to('small'){
      font-size: 16px;
    }
}
input[type="text"]:active, input[type="text"]:focus, input[type="password"]:active, input[type="password"]:focus, input[type="email"]:active, input[type="email"]:focus, input[type="search"]:active, input[type="search"]:focus, input[type="url"]:active, input[type="url"]:focus, input[type="tel"]:active, input[type="tel"]:focus, input[type="number"]:active, input[type="number"]:focus, input[type="date"]:active, input[type="date"]:focus, input[type="month"]:active, input[type="month"]:focus, input[type="week"]:active, input[type="week"]:focus, input[type="time"]:active, input[type="time"]:focus, input[type="range"]:active, input[type="range"]:focus, input[type="color"]:active, input[type="color"]:focus, select:active, select:focus, textarea:active, textarea:focus {
    border: 1px solid #aaa;
    color: #444;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=text]::-ms-clear {  display: none; width : 0; height: 0; }
input[type=text]::-ms-reveal {  display: none; width : 0; height: 0; }
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }
input[type=number] {
  -moz-appearance:textfield;
}
select::-ms-expand {
  display: none;
}

select {
  background: #fff url(//www.kouboo.com/cdn/shop/t/152/assets/select.png?v=163443801653745187891755274457) no-repeat 96% 50%;
  background-size: 18px 12px;
  
    padding: 8px 14px 8px;
    border-radius: 3px;
  
  border: 1px solid #d9dbdc;
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
}
label,
  legend,
  .option_title {
    display: block;
    font-weight: bold;
    font-size: 13px;
    text-align: left;
    margin-bottom: 5px;
    text-transform: uppercase;
      }
input[type="checkbox"] {
    display: inline; }
label span,
  legend span {
    font-weight: bold;
    font-size: 13px;
    color: #444; }
textarea {
  min-height: 80px;
  padding: 15px 9px;
}

.acceptsMarketing {
  margin-bottom: 20px;
  label {
    display: inline;
    margin-left: 5px;
  }
}

input.sign_up[type="submit"] {
  margin-left: 5px;
  display: inline-block;
}

input.contact_email[type="email"] {
  width: 320px;
  display: inline-block;
  float: left;
}

.btn.action_button, input.btn.action_button[type="submit"], input.btn.action_button[type="button"] {
  width: inherit;
}

#target {
  padding: 20px;
  text-align: center;
}
.items_left {
  color: #8c8b8b;
}
.quantity_label {
  display: inline;
  font-size: smaller;
}
.remove_item a {
  font-size: smaller;
  color: #333333;
}
input.quantity {
  width: 48px;
  display: inline;
  margin-bottom: 0;
  padding: 8px 5px;
}

ul.cart_items {
  padding-bottom: 0;
}
.cart_content li.cart_item a, .cart_content li.cart_item a:active, .cart_content li.cart_item a:focus {
  font-size: small;
}
.cart_content li.cart_item {
  padding: 0 0 10px 0;
  margin-bottom: 10px;
  border-bottom: 1px solid #cccccc;
}
li.cart_item a, li.cart_item a:active,
#header li.cart_item a, #header li.cart_item a:active {
  position: relative;
  font-size: inherit;
  text-align: left;
}
ul.cart_items li:last-child {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.cart_image {
  padding-right: 20px;
  max-width: 100px;
  text-align: center;
  float: left;
  width: 100%;
}
a.continue {
  text-align:right;
  font-size: 32px;
  margin-right: 15px !important;
  padding: 10px 0 5px 0 !important;
  opacity: 0.8;
}
a.continue:hover {
  opacity: 1;
}
.empty_cart {
  text-align: center;
  font-size: 18px;
  padding: 40px 0 25px 0;
  color: inherit;
}
input[type="button"].get-rates.action_button {
  margin-top: 0;
}
#get-rates-submit {
  margin-top: -1px;
}
#customer_login {
  margin-bottom: 2px;
}
.multi_select {
  display: none;
}

/* Product Page Elements */

.container .align_right--images > div.columns {
  float: right;
}

.vendor {
  margin-bottom: 6px;
}

.section.product_section {
  margin-top: 0;
}

.product_section .description {
  margin-bottom: 15px;
  @include word-wrap;
}

.modal_price {
  padding-bottom: 8px;
  display: block;
}

.product_section .description.bottom {
  border-bottom: none;
}

.sale_banner_product, .new_banner_product, .preorder_banner_product {
  font-family: Jost, sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 20px;
  text-align: center;
  color: #fff;
  margin-bottom: 13px;
  display: inline-block;
  font-size: 15px;
  white-space: nowrap;

  
}

.sale_banner_product {
  background: #d54d4d;
}

.new_banner_product, .preorder_banner_product {
  background: #beb800;
}

.preorder_banner_product, .product-list .thumbnail .preorder_banner {
  font-size: 12px;

  @include respond-to('medium'){
    font-size: 8px;
  }
}

.product_links {
  margin-bottom: 8px;
  font-size: 0.9em;
  border-top: 1px solid #cccccc;
  padding: 10px 0 5px 0;
  p {
   margin: 2px 0;
  }
 }

.social_buttons {
  border-top: 1px solid #cccccc;
  padding-top: 20px;
  font-size: 1em;
  margin-bottom: 25px;
  @include respond-to('medium'){
    text-align: center;
  }
}

.share_article .social_buttons {
  border-top: none;
  padding-top: 15px;
}

.share-btn {
  display: inline-block;
  text-align: center;
  font-size: 1.2em;
  margin-right: 6px;
  margin-bottom: 10px;

  a {
    color: #fff;
    padding: 10px 10px 8px 10px;
    border: solid 1px #e2e2e2;
    display: inline-block;
    transition: all 500ms ease 0s;
    
      border-radius: 100px;
      width: 44px;
      height: 44px;
    

  }
}

.icon-twitter-share:before { color: #09AEEC; }
.icon-twitter-share:hover { background-color: #09AEEC; border-color: #09AEEC; color: #fff; }
.icon-twitter-share:hover:before { color: #fff; }
.icon-facebook-share:before { color: #49659D; }
.icon-facebook-share:hover { background-color: #49659D; border-color: #49659D; color: #fff; }
.icon-facebook-share:hover:before { color: #fff; }
.icon-gplus-share:before { color: #CC3A2B; }
.icon-gplus-share:hover { background-color: #CC3A2B; border-color: #CC3A2B; color: #fff; }
.icon-gplus-share:hover:before { color: #fff; }
.icon-pinterest-share:before { color: #CB1F2A; }
.icon-pinterest-share:hover { background-color: #CB1F2A; border-color: #CB1F2A; color: #fff; }
.icon-pinterest-share:hover:before { color: #fff; }
.icon-mail-share:before { color: #888; }
.icon-mail-share:hover { background-color: #888; border-color: #888; color: #fff; }
.icon-mail-share:hover:before { color: #fff; }

/* Quantity Box for Product Page */

.product-quantity-box .quantity, .product-quantity-box .quantity:focus, .product-quantity-box .product-plus, .product-quantity-box .product-minus {
  border: #e2e2e2 1px solid;
  color: #000;
}

.product-quantity-box label { margin-bottom: 0.5em; }

.product-quantity-box {
  margin-right: 0;
  width: 45%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  label {
    text-align: left;
  }
  .quantity {
    text-align: center;
    padding: 6px 15px;
    width: 38%;
    height: 44px;
    border-radius: 0;
    -webkit-appearance: none;
    float: left;
  }
  .product-plus, .product-minus {
    background: #f2f2f2;
    font-weight: 300;
    position: relative;
    cursor: pointer;
    height: 44px;
    display: block;
    width: 25%;
    text-align: center;
    float: left;
    &:hover {
      background: #d9d9d9;
    }
    @include respond-to('medium') {
      display: inline;
      display: initial;
      margin: 0;
    }
  }
  .product-plus {
    border-left: 0;
    font-size: 16px;
    line-height: 44px;
  }
  .product-minus {
    border-right: 0;
    line-height: 44px;
    font-size: 18px;
  }
}

.product-quantity-box + .inline_purchase {
  margin-top: 31.5px;
  width: 55%;
  float: left;
}

.product_section .product_form,
.product_section .contact-form {
  max-width: 400px;
  @include respond-to('medium'){
    max-width: 100%;
  }
}

/* Full width product image template */

.product-full_width_images .product_section .description img {
  display: none;
}

.full-width-product-images {
  img {
    display: block;
    width: 100%;
  }
  .caption.align-center, .caption.align-right, .caption.align-left {
    @include respond-to('small'){
      text-align: center;
    }
  }
}

/* #Blog
================================================== */

.sidebar .sidebar_content {
  .input-row {
    @include flex-direction(column);
    margin-left: 0px;
    margin-right: 0px;

    input {
      margin: 5px 0;
    }
  }
}

/* #Newsletter
================================================== */
.newsletter {
  margin: 0px auto;
  max-width: 640px;
}

.input-row {
  @include flexbox();
  @include flex-wrap(wrap);
  margin-left: -5px;
  margin-right: -5px;
  width: 100%;
  @include respond-to('medium') {
    @include flex-direction(column);
    margin-left: 0px;
    margin-right: 0px;
  }

  input {
    @include flex-basis(0);
    @include flex-grow(1);
    @include flex-shrink(1);
    margin: 5px;
    max-height: 40px;
    @include respond-to('medium') {
      margin: 5px 0;
    }
  }

  input.sign_up {
    display: inline-block;
    @include flex(none);
    max-height: 40px;
    @include respond-to('medium'){
      width: 100%;
    }
  }
}

/*--- Newsletter popup ---*/

.newsletter-popup.remodal {
  background-color: #fdf7ee;
  max-width: 740px;
  overflow:hidden;
  padding:0;
  
  @include respond-to('medium'){
    line-height: 0;
  }
  .popup-signup-show--false {
    display: none;
  }
}

.newsletter-image--true.align-right .remodal-close {
  left: 0;
}

.newsletter-both-names--false {
  .newsletter input[type="text"] {
    width: 100%;
  }
}

.newsletter-img {
  width: 40%;
  display: inline-block;
  float: left;
  @include respond-to('medium'){
    width: 100%;
  }
  img {
    width: 100%;
    display: block;
  }
}

.newsletter-info {
  text-align: center;
  color: #363636;
  overflow: hidden;
  background-color: #fdf7ee;
  height: auto;
  float: left;
  @include respond-to('medium'){
    padding: 20px;
    width: 100% !important;
    position: relative;
  }
  input.contact_email[type="email"] {
    width: 65%;
    float: left;
    @include respond-to('medium'){
      width: 100%;
    }
  }
  #contact_form input.sign_up[type="submit"] {
    width: calc(35% - 10px);
  }
}

.newsletter-image--false {
  .newsletter-info {
    width: 100%;
    position: relative;
    height: auto;
    float: none;
  }
}

.align-left .newsletter-info {
  right:0;
}

.newsletter-description h2 {
  color: #363636;
  margin-top: 0;
}

.newsletter-description {
  width: 60%;
  padding: 30px;
  margin: 0 auto;

  

  @include respond-to('medium'){
    font-size: inherit;
    width: auto;
  }
  @include respond-to('xlarge'){
    font-size: inherit;
  }
}

.newsletter-buttons {
  .button {
    height: auto;
    background-color: transparent;
    color: #363636;
    border: 1px solid #363636;
    transition: background-color 0.2s cubic-bezier(0.55, 0.09, 0.68, 0.53), color 0.3s linear, border 0.2s cubic-bezier(0.55, 0.09, 0.68, 0.53);
    line-height: 1.5;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 10px;

    
      margin-left: 8px;
      margin-right: 8px;
    

    &:hover, &.highlight-true {
      background-color: #363636;
      color: #fdf7ee;
      border: 1px solid #363636;
    }

    @include respond-to('small') {
      margin-top: 5px;
    }
  }
}

/*--- Newsletter section above footer ---*/

.newsletter_section {
  -webkit-transform:translate3d(0,0,0);
  background-color: #fdf7ee;
  color: #9a5107;

  h2 {
    color: #9a5107;
    margin-top: 0;
  }
}

.newsletter_section.newsletter-bgr-true {
  background-color: #fdf7ee;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  input.contact_email[type="email"] {
    border: 0;
  }
  @include respond-to('small'){
    text-align: center !important;
  }
}

.section_form {
  padding: 10px 20px;

  input[type="email"], input[type="text"] {
    border: 0;
  }
  @include respond-to('small') {
    padding: 0;
  }
  .newsletter-text + .newsletter, h5 + .newsletter  {
    margin-top: 15px;
 }
}

.newsletter_section h5 {
  color: #9a5107 !important;
  padding-top: 0px;
  margin: 0;
}

.newsletter_section .newsletter-text p {
  margin-bottom: 0;
}

.newsletter_section .newsletter,
.password-page-row form {
  display: inline-block;
  padding-top: 0 !important;
  width: 450px;

  @media only screen and (max-width: 798px) and (min-width: 480px) {
    width: 100%;
  }

  @include respond-to('small') {
    width: 100%;
  }
}

.shopify-challenge__container {
  padding: 150px 0;
}

/*--- Newsletter in footer ---*/

.footer-section {
  .newsletter_section {
    background-color: transparent;
    color: #9d4c00;
    h6 {
      color: #422810;
      font-size: 18px;
    }
    p {
      padding: 15px 0;
    }
    .newsletter {
      width: 100%;

      input {
        width: 100%;
      }
      .action_button {
        margin-left: 0;
      }
    }
  }
}


/* #Tables
================================================== */


    table{width:100%;}
    table th{font-weight:700;background:#f9f9f9;text-align:left}
    table th,table td{padding:4px}
    table tr{border-bottom:1px solid #DCDCDC}
    table tr:first-child{border-top:1px solid #DCDCDC}
    table td,table th{border-right:1px solid #DCDCDC}
    table td:first-child,table th:first-child{border-left:1px solid #DCDCDC}
    table .em{font-weight:700;}


table tr.order_summary td.label { text-align: right;}
table { margin-bottom: 20px;}

/* #Misc
================================================== */
.allow-clickthrough { pointer-events: none !important; }
.hidden { display: none; }
.remove{ color: #333333; }
.relative { position: relative; }
.half-bottom { margin-bottom: 10px !important; }
.add-bottom { margin-bottom: 20px !important; }
.right { float:right; position: relative; }
.left { float: left; }
.inline { display: inline; }
.center { text-align: center; }
.relative { position: relative; }
.align_right { text-align:right }
.align_left { text-align: left; }
.text-align--center { text-align: center; }
.text-align--left { text-align: left; }
.text-align--right { text-align: right; }
p.warning { text-align: center; font-weight: bold; }
.warning--quantity {
  clear: both;
  display: inline-block;
}
.large--right {
  @include respond-to('large') {
    float:right;
    position: relative;
  }
}
.visuallyhidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.cart_item p.warning { margin-top: 5px; }
.container div.mobile_only, span.mobile_only, .mobile_only { display:none; }
.no_border { border: none !important; }
.extra_padding { padding-top: 4px; }
div.hidden { display: none; }
div.is-absolute {
  position: absolute !important;
  top: 0;
  margin-top: 0;
}
.full-width-image {
  width: 100%;
}
#instantclick-bar {
  background: #3c3c3c;
  z-index: 100000;
  height: 4px;
}
#grid .column,
  #grid .columns {
    background: #ddd;
    height: 25px;
    line-height: 25px;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
    color: #555;
    font-size: 12px;
    font-weight: bold;
    border-radius: 2px;
  }
#grid .column:hover,
  #grid .columns:hover {
    background: #bbb;
    color: #333; }
#grid .example-grid { overflow: hidden; }

.quick-shop {
  .product_gallery img {
    background-color: #ffffff;
  }
}

.items_left {
  margin: 0 0 15px;
  line-height: 1.6em;
  font-size: normal;
  font-style: italic;
  color: #8c8b8b;
}

.cart .paypal-button + .paypal-button {
  display: none;
}

/* #Testimonials
================================================== */

.testimonial-section {
  position: relative;

  .set-static {
    display: flex;
    .caption {
      position: static;
      transform: translateY(0);
      padding: 40px;
      margin: auto;
    }
  }

  .set-testimonial-height {

    height: 95%;
  }

  .darken-bg {
    @include respond-to('large') {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: block;
      background: rgba(0, 0, 0, .6);
    }
  }

  .testimonial-block {

    .caption {
      @include respond-to('small') {
        margin: auto;
        padding: 5%;
      }
    }

    .caption.no-white-bg{
      @include respond-to('small') {
        background-color: white;
      }
    }

  }

  .feature_divider {
    margin: 25px auto;
    width: 10%;
    display: inline-block;

    @include respond-to('small') {
      margin: 5px auto;
    }
  }

  .testimonial-text {
    width: 80%;

    .subtitle {
      text-transform: none;
      @include respond-to('small') {
        font-weight: normal;
        font-size: 14px;
      }
    }

    h2, p {
      color: #ffffff;

      @include respond-to('small') {
        color: #333333;
        text-shadow: none;
      }
    }
  }

  .testimonial-block.gallery-cell.use-mobile-color {
    background-color: #666666;
    .caption .caption-content p{
      color: #ffffff;
    }
  }

  .use-mobile-color {
    .animated {
      -webkit-animation-delay: 0.25s;
      animation-delay: 0.25s;
    }
  }
}

.testimonial-slideshow, .testimonial-block.gallery-cell {
  background-color: transparent;

}

/* #FAQ Template
================================================== */

.page-faq {
  .faq--heading {
    padding-top: 30px;
  }
}

/* #Logo-list
================================================== */

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

  a {
    transition: ease all 0.6s;

    &:hover {
      opacity: 0.6;
    }
  }
}

.logo-bar__item {
  display: inline-block;
  vertical-align: middle;
  max-width: 160px;
  width: 160px;
  margin-top: 20px;

  @include respond-to('large') {
    margin-left: 25px;
    margin-right: 25px;
  }
}

/* #Gallery Section
================================================== */

//General gallery styling
div.container.gallery-content {
  margin-top: 0;
  padding-top: 0;
}

.gallery-section.container {
  padding-top: 0;
  margin-top: 0;
}

.gallery-section {
  text-align: center;
  .container {
    padding-bottom: 0px;
  }

  .gallery-break {
    width: 100%;
    clear: both;
  }

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

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

  .gallery-image-wrapper,
  .gallery-empty-wrapper {
    margin: 5px;
    position: relative;
  }

  .gallery-empty-wrapper {
    min-height: 150px;
  }

  .gallery-empty-wrapper:nth-child(even) .placeholder-svg {
    background-color: rgba(#333333, 0.3);
  }

  a {
    display: block;
  }

    .gallery-image-wrapper {
    .overlay {
      position: absolute;
      height: 100%;
      width: 100%;
      background-color: rgba(0,0,0,0.6);
      opacity: 0;
      transition: opacity 0.3s ease-in;

      .icon-search {
        color: white;
        font-size: 1.5em;
        top: 50%;
      }
    }

    &:hover {
      .overlay {
        opacity: 1;
      }
    }
  }
}

//Horizontal gallery styling
.gallery-section.gallery-horizontal {
  @include flexbox();
  @include flex-wrap(wrap);

  i {
    display: block;
  }

  img {
    position: absolute;
    top: 0;
    width: 100%;
    vertical-align: bottom;
    width: 100%;
    height: auto;
    display: block;
  }

  .gallery-image-wrapper:last-child {
    @media only screen and (min-width: 2000px) {
      width: 15%;
      flex-basis: initial !important;
      flex-grow: initial !important;
    }
  }

  .gallery-empty-wrapper {
    width: 190px;
  }
}

.gallery-full {
  display: inline-block;
  width: 100%;

  .gallery-image-wrapper, .gallery-empty-wrapper {
    margin: 0;
  }

  .gallery-empty-wrapper {
    width: 25%;
  }
}

.ie9 {
  .gallery-image-wrapper{
    width: 20%;
    float: left;
    display: inline-block;
    img {
      position: relative;
      max-height: 200px;
    }
  }
}

//Classic gallery styling
.gallery-section.gallery-classic {

  .gallery-image-wrapper, .gallery-empty-wrapper {
    display: block;
    float: left;
    margin: 0;
    img, svg {
      width: 100%;
      display: block
    }
  }

  .add-padding{
    padding: 5px;
  }

  .two-per-row {
    width: 50%;
    @media only screen and (max-width: 767px) {
      width: 100%;
    }
  }

  .three-per-row {
    width: 33.333%;
    @media only screen and (max-width: 767px) {
      width: 100%;
    }
  }

  .four-per-row {
    width: 25%;
    @media only screen and (max-width: 767px) {
      width: 100%;
    }
  }

  .five-per-row {
    width: 20%;
    @media only screen and (max-width: 767px) {
      width: 100%;
    }
  }
}

//Masonry gallery styling
.gallery-section.gallery-masonry {
  .masonry {
    font-size: .85em;
    line-height: 0px;
    margin: 10px 0;
    column-gap: 10px;
    -moz-column-gap: 10px;
    -webkit-column-gap: 10px;

  }

  .gallery-empty-wrapper {
    min-height: 100px;
    overflow: hidden;
    svg {
      min-width: 800px;
      path {
        display: none;
      }
    }
  }

  .adjust-columns {
    column-gap:0px;
    -moz-column-gap: 0px;
    -webkit-column-gap: 0px;
    overflow: hidden;
  }

  .gallery-image-wrapper, .gallery-empty-wrapper {
      display: inline-block;
      margin-bottom: 0px;
      width: 100%;
      margin: 5px 0;
      box-sizing: border-box;
      -moz-box-sizing: border-box;
     -webkit-box-sizing: border-box;
      img, svg {
        width: 100%;
        display: block;
      }
  }

  .two-per-row {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
    @include prefix(transform, translateX(0), ms webkit spec);

    @media only screen and (max-width: 798px) {
      -moz-column-count: 3;
      -webkit-column-count: 3;
      column-count: 3;
    }

    @media only screen and (max-width: 400px) {
      -moz-column-count: 1;
      -webkit-column-count: 1;
      column-count: 1;
    }
  }

  .three-per-row {
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
    @include prefix(transform, translateX(0), ms webkit spec);

    @media only screen and (max-width: 798px) {
      -moz-column-count: 3;
      -webkit-column-count: 3;
      column-count: 3;
    }

    @media only screen and (max-width: 400px) {
      -moz-column-count: 1;
      -webkit-column-count: 1;
      column-count: 1;
    }
  }

  .four-per-row {
    -moz-column-count: 4;
    -webkit-column-count: 4;
    column-count: 4;
    @include prefix(transform, translateX(0), ms webkit spec);

    @media only screen and (max-width: 798px) {
      -moz-column-count: 3;
      -webkit-column-count: 3;
      column-count: 3;
    }

    @media only screen and (max-width: 400px) {
      -moz-column-count: 1;
      -webkit-column-count: 1;
      column-count: 1;
    }
  }

  .five-per-row {
    -moz-column-count: 5;
    -webkit-column-count: 5;
    column-count: 5;
    @include prefix(transform, translateX(0), ms webkit spec);

    @media only screen and (max-width: 798px) {
      -moz-column-count: 3;
      -webkit-column-count: 3;
      column-count: 3;
    }

    @media only screen and (max-width: 400px) {
      -moz-column-count: 1;
      -webkit-column-count: 1;
      column-count: 1;
    }
  }
  &.gallery-full {
    .gallery-image-wrapper, .gallery-empty-wrapper {
      margin: 0px;
      margin-bottom: 0px !important;
    }
  }
}

/* #Recently Viewed
================================================== */

.rv-container {
  display: block;
  .thumbnail:empty {
    margin-bottom: 0;
  }
}

//Sidebar styles
.sidebar {

  .collection_swatches .swatch {
    float: left;
  }

  .toggle_list {
    .rv-container a:hover {
      border-color: transparent;
    }

    .rv-container a.product-info__caption.hidden {
      display: none;
      @include respond-to('medium') {
        display: block;
      }
    }
  }

  .recently-viewed__title {
    display: none;
  }

  .rv-sidebar-element {
    .product_image,
    .product-info__caption {
      max-width: 75%;
    }
    .product_image a {
      display: block;
    }
    .product_image img {
      height: auto;
    }
  }

   @include respond-to('medium') {
      .product-list .thumbnail {
        .title, .price, .brand {
          text-align: left;
          display: block;
        }
      }
    }

  .product-list .thumbnail .thumbnail-overlay {
    position: relative;
    opacity: 1;
    background: transparent;
    .product-details {
      position: relative;
      transform: none;
      transition: none;
      opacity: 1;
      text-align: left;

      .title {
        color: #333333;
        padding: 0;
      }

      .title,
      .price {
        font-size: 0.9vw;
      }
    }

    .info {
      position: relative;
      font-size: 12px;
      opacity: 1;
      top: 0;
      transform: translateY(0);
      padding-bottom: 0;

      .quick_shop {
        display: none;
      }
    }
  }
}

  //Description bottom styles
  .product-description-bottom {
    .js-recently-viewed.rv-main {
      clear: both;
    }
  }

  //Hide duplicates {
  .rv-box-element, .rv-sidebar-element{
    .js-recently-viewed-product:nth-child(2) {
      display: none;
    }
  }

/* #Search autocomplete
================================================== */

.dropdown .header_search_form,
.main_nav {
  .search__results .item-result {
    left: 0;
    width: 100%;
    background: #fbf6f0;
    border-left: 0;
    border-right: 0;
    a .title {
      color: #905200;
      transition: all 0.3s ease-in-out;
    }
    a:hover {
      background: #fbf6f0;
    }
    a:hover .title {
      color: #373230;
    }
    a:hover span {
      color: #905200;
    }
  }
  li.all-results a:hover {
    color: #ffffff;
  }
}

.nav .search__results {
  width: 350px;
  right: 0;
  left: auto;
  li a:active {
    transition: ease-in-out 0s all;
  }
}

.search_container input {
  z-index: 29;
}

.search__results {
  z-index: 30;
  list-style-type: none;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
  position: absolute;

  li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border-top: 1px solid #cccccc;
    overflow: hidden;
    &:first-child {
      border-top: none;
    }
    a,
    a:active {
      width: 100%;
      transition: ease-in-out 0.3s all;
      @include flexbox();
      @include align-items(center);
      padding: 15px 20px;
    }
    a:hover {
      background-color: rgba(60, 60, 60, 0.1);
    }
    a:active {
      background-color: rgba(60, 60, 60, 0.3);
    }
    img {
      display: block;
    }
  }

  .title {
    text-transform: none;
    padding-left: 8px;
    text-align: left;
    font-size: 14px;
  }

  .thumbnail {
    padding: 0;
    text-align: center;
    img {
      max-width: 70px;
      max-height: 70px;
    }
  }
  .result--page .title {
    padding-left: 0;
  }
  .result--page span.item-pricing {
    text-transform: none;
    font-weight: lighter;
    font-size: 0.8rem;
  }
}

.menu a span.item-pricing,
span.item-pricing {
  padding: 0;
  span {
    padding: 0;
  }
}

.all-results {
  width: 100%;
  margin: 0;
  span {
    display: block;
    width: 100%;
    text-align: center;
  }
  span.item-pricing {
    color: #3c3c3c;
  }
  a {
    color: #ffffff;
    background-color: #7f7900;
    &:hover {
      background-color: #393431;
    }
  }
}


/* #Search page
================================================== */

.search-template-section {
  form {
    position: relative;
  }
  .search_container {
    position: relative;
    .search-submit {
      z-index: 900;
    }
    input {
      
        border-radius: 3px;
      
    }
  }

  .container.main.content {
    margin-top: 100px;
    padding: 0 0 15px;
  }
}

.search-matrix .product_row {
  padding: 20px 0;
  border-bottom: 1px solid #cccccc;
}

.search-matrix .product_row:last-child {
  border-bottom: none;
}

/* #Search Section
================================================== */

.search-bgr-true {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.search-section {
  background-color: #cccccc;
  width: 100%;
  display: inline-block;
  h2 { margin-bottom: 0.25em; }
  h2,
  p { color: #000000; }
  .container { padding: 40px 0; }
}

.text-align--center .search__container {
  @include justify-content(center);
}

.text-align--left .search__container {
  @include justify-content(flex-start);
}

.text-align--right .search__container {
  @include justify-content(flex-end);
}

.search__container {
  position: relative;
  width: 100%;
  @include flexbox();
  .search__wrapper {
    display: inline-block;
    position: relative;
    max-width: 650px;
    width: 100%;
  }

  input[type="text"] {
    font-size: 15px;
    display: inline-block;
    border: 1px solid #000;
    min-height: 50px;
    height: 50px;
    margin-bottom: 0;
    &:active,
    &:focus {
      border: 1px solid #000;
    }
  }
}

.search__form {
  width: 100%;
  max-width: 650px;
  position: relative;
  @include flex(0 0 auto);
}

.search__results {
  top: 100%;
  width: 100%;
  li {
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
  }
  .all-results {
    border: 0;
    background-color: #7f7900;
    width: 100%;
    margin: 0;
    span {
      display: block;
      width: 100%;
      text-align: center;
      padding-left: 0;
    }
    span.item-pricing {
      color: #3c3c3c;
    }
    a,
    a:active {
      color: #ffffff;
      padding: 20px;
      text-align: center;
      display: block;
      line-height: 1;
    }
    &:hover {
      background-color: #393431;
    }
  }
}

.search__button {
  position: absolute;
  margin-top: 0;
  top: 0;
  height: 50px;
  width: 50px;
  right: 0px;
  padding: 0;
  background-color: #000;
  border-color: transparent;
  color: white;
  font-size: 24px;
  
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
  
  &:hover {
    color: white;
    background-color: darken(#cccccc, 20%);
    border: 1px solid #000;
    border-left: 0px;
  }
}


/* #Site Styles
================================================== */
  div.container {
    margin: 0 auto;
    padding: 20px 0;
  }

  .featured_text {
    font-size: 18px;
    line-height: 36px;
  }
  .large_text {
    font-size: 28px;
    line-height: 50px;
  }

  div.content { padding: 30px 0px 15px 0; }

/* #Header
================================================== */

.dropdown .header_search_form {
  @include respond-to('medium') {
    .search__results {
      margin-top: 30px;
    }
  }
  .search-terms {
    height: 50px;
    min-height: 50px;
  }
}

.main_nav div.logo a {
  padding-top: 15px;
  padding-bottom: 15px;
  display: block;
  color: #ffffff !important;
  outline: 0;
}

.menu-position--block {
  div.logo {
    width: 100%;
  }
  .sticky_nav div.logo {
    display: none;
  }
}

div.logo {
  width: 16%;
  float: left;
  img {
    width: 100%;
  }
  &.text-align--center img {
    margin: 0 auto;
  }
  &.text-align--left {
    padding-left: 20px;
  }
}

.primary_logo { display: block; }

.secondary_logo { display: none; }

header.feature_image.secondary_logo--true {
  img.primary_logo,
  img.secondary_logo {
    display: none;
  }
}

header.secondary_logo--true:not(.feature_image) {
  img.secondary_logo {
    display: none !important;
  }
  img.primary_logo {
    display: inline !important;
  }
}

div.section { margin: 10px 0; }

.featured_content,
.featured_content h1,
.featured_content h2,
.featured_content h3,
.featured_content h4,
.featured_content h5,
.featured_content h6 {
  color: #363636;
}

.featured_content {
  background-color: #f6f7f9;
}

.nav_arrows {
  float: right;
}

.sku {
  margin: 0;
}

#category {
  width: 100%;
}

/* Pagination & infinite scrolling */

.paginate, .load-more { text-align: center; }

.paginate .page a, .paginate .current, a.tag {
  border: solid 1px #cccccc;
  margin: 10px 5px;
  padding: 0.5rem 1rem;
  display: inline-block;
  
    border-radius: 3px;
  
  &:hover {
    color: #fff;
    background-color: #422810;
    border: solid 1px #422810;
  }
}

.paginate .current {
  font-weight: bold;
  color: #fff;
  background-color: #422810;
  border: solid 1px #422810;
}

.paginate .next, .paginate .prev {
  display: inline-block;
  margin: 10px 0;
  padding: 0.5rem 1rem;
}
.load-more { display: none; }

.collection-template-section .load-more,
.search-template-section .load-more {
  display: block;
  clear: both;
}

.load-more__icon {
  opacity: 0;
  height: 0;
  width: 0;
  transition: all 0.3s linear;
  background: url('//www.kouboo.com/cdn/shop/t/152/assets/loader.gif') center center no-repeat;
  background-size: 32px 32px;
  margin: 0 auto;
}

.collection-matrix.loading-in-progress.filter-loading {
  height: 0;
}

.collection-matrix.loading-in-progress + .load-more__icon {
  width: 44px;
  height: 44px;
  opacity: 1;
}

a.tag {
  font-size: smaller;
  padding: 4px 6px;
  margin: 5px 2px 5px 0;
}

.paginate .deco { border: none; }

/* Product list - collections */

.product-list .thumbnail,
.slider-gallery .thumbnail,
.list-collections .thumbnail {
  position: relative;
  text-align: center;
  margin-bottom: 25px;
  display: block;
  .thumbnail-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.3s ease-in;
    > a {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
    }
    @include respond-to('medium'){
      display: none;
    }
    @include respond-to('xlarge'){
      line-height: 1.5;
    }
  }

//Do not display thumbnail hover background if user picks none


 
  .thumbnail-overlay {
      background-color: rgba(0, 0, 0, 0.7);
  }
 


  
  img {
    vertical-align: bottom;
    transition: opacity .3s ease-in;
    width: 100%;
  }
  .product-info__caption {
    
    margin-top: 20px;
    @include respond-to('medium'){
      display: block;
    }
  }
}

@include respond-to('tablet-down'){
  .touchevents {
    .product-info__caption {
      display: block;
    }
    .thumbnail-overlay {
      display: none;
    }
  }
}

.hidden-product-link {
  line-height: 0;
  font-size: 0;
  color: transparent;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.featured_collections .thumbnail {
  text-align: center;
}

/* Swap to second image on hover */


  .swap-true {
    img.secondary, img.secondary.lazyloaded {
      display: none;
      width: auto;
      margin: 0 auto;
    }
  }

  .swap-true.toggle-images {
    img:first-of-type, img.lazyloaded:first-of-type {
      display: none;
    }
    img.secondary, img.secondary.lazyloaded {
      display: block;
    }
  }

  .product-list .thumbnail,
  .slider-gallery .thumbnail {
    .swap-true {
      img.secondary, img.secondary.lazyloaded {
        display: none;
        width: auto;
        margin: 0 auto;
      }
    }

    .swap-true.toggle-images {
      img:first-of-type, img.lazyloaded:first-of-type {
        display: none;
      }
      img.secondary, img.secondary.lazyloaded {
        display: block;
      }
    }
  }

  .slider-gallery .gallery-cell img.secondary,
  .slider-gallery .gallery-cell img.secondary.lazyloaded {
    display: none;
    width: auto;
  }


/* Thumbnail overlay */



.quick_shop,
.view_all {
  font-family: Jost, sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  border: 1px solid #ffffff;
  padding: 10px 20px;
  margin-top: 2rem;
  color: #ffffff;
  opacity: 0;
  pointer-events: all;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  -ms-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out,color 0.3s linear, background-color 0.3s linear;
  
    border-radius: 3px;
  
  &:hover {
    
      color: #000000;
      background-color: #ffffff;
    
  }
}



  .product-wrap {
    position: relative;
    &:hover .product-details {
      opacity: 1;
      transform: none;
    }
    &:hover .thumbnail-overlay {
      opacity: 1;
    }
  }

  .thumbnail-overlay {
    .info {
      @include vertical-alignment;
      position: absolute;
      text-align: center;
      width: 100%;
      margin: 0 auto;
      pointer-events: none;
      cursor: pointer;
      color: #ffffff;
      font-size: 15px;
    }
    .product-details {
      position: relative;
      opacity: 0;
      -ms-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
      transition: opacity 0.3s ease-out, transform 0.3s ease-out;
      display: block;
    }
    .title {
      display: block;
      padding: 0 2em;
      position: relative;
      color: #ffffff;
    }
    .brand {
      color: #ffffff;
    }
    .price {
      display: block;
      color: #3c3c3c;
      &:hover {
        color: #422810;
      }
    }
    .was_price,
    .was_price span.money {
      color: #8c8b8b;
    }
  }

.thumbnail {

  .price span.money {
    color: #3c3c3c;
    &:hover {
      color: #422810;
    }
  }
  .sale span.money {
    color: #d54d4d;
  }
  .was_price span.money {
    color: #8c8b8b;
  }
}



/* Product banners */

.new {
  position: relative;
  display: inline;
  padding: 5px;
  border-radius: 2px;
  font-size: 12px;
}



  .product-list,
  .slider-gallery {
    .thumbnail img {
      height: 190px;
      width: auto;
    }
    .thumbnail img.secondary {
      max-height: 190px;
      height: auto;
      width: 100%;
    }
  }

  .thumbnail:not(.align-height--false) img.lazyloaded {
    height: auto;
    max-height: 190px;
    object-fit: contain;
  }



.thumbnail .sold_out, .sold_out {
  font-weight: bold;
  color: #333333;
}

.thumbnail-overlay .sold_out {
  font-weight: normal;
  color: #ffffff;
}

.thumbnail .sale, .sale {
  color: #d54d4d;
}

.banner_holder {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9999;
}

.sale_banner, .new_banner, .preorder_banner {
  background: #d54d4d;
  font-family: Jost, sans-serif;
  font-weight: 400;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 12px;
  text-align: center;
  color: #fff;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  @include respond-to('medium'){
    padding: 4px 10px;
    font-size: smaller;
  }
}

.new_banner, .preorder_banner {
  background: #beb800;
}

a.secondary_button, input.secondary_button {
  display: block;
  padding: 15px 0;
  text-align: center;
  border-top: solid 1px #cccccc;
  border-bottom: solid 1px #cccccc;
  margin: 20px 0;
  font-family: Jost, sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #3c3c3c;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  &:hover, &:active, &:visited {
    color: #422810;
  }
}

.thumbnail .price, .thumbnail .title {
  display: block;
  margin-bottom: 5px;
  font-size: inherit;
  line-height: 1.2;
}

.cart_price {
  float: right;
  text-align: right;
  padding-left: 20px;
  font-weight:bold;
  display: none;
}

#estimated-shipping, .excluding_tax {
  display: block;
}

.container .three.columns.cart_page_image__container {
  width: auto;
  margin-right: 0px;
}

.cart_page_image {
  display: flex;
  width: 160px;
  height: 160px;
  background-color: #fff;
  justify-content: center;
  align-items: center;

  @include respond-to('small') {
    width: 96px;
    height: 152px;
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
   }
}

.product_cart_container {
  display: flex;
  gap: 40px;

  @media screen and (max-width: 798px) {
    gap: 12px;
  }
}

.container.content {
  max-width: 1180px;
}

.shopify-section.cart-section {
  .ten.columns {
    max-width: 786px;
    width: unset;
    margin-left: 0px;
    margin-right: 0px;
    box-sizing: border-box;

    @media screen and (max-width: 1200px) {
      max-width: 580px;
    }

    @media screen and (max-width: 960px) {
      max-width: 460px;
    }

    @media screen and (max-width: 798px) {
      max-width: unset;
      width: 100%;
      padding: 0 16px; 
    }

    .section {
      margin: 0px;
      padding: 20px 0;
      border-bottom: 1px solid #CCC;
    }
  }

  .five.columns {
    padding-left: 0;
    margin-left: 39px;
    margin-right: 0;
    box-sizing: border-box;

    @media screen and (max-width: 798px) {
      width: 100%;
      margin-left: 0;
      padding: 0 16px;

      .section {
        margin-top: 20px;
      }
    } 
  }

  .sixteen.columns {
    margin-left: 0;
    box-sizing: border-box;

    @media screen and (max-width: 798px) {
      padding: 0 16px;
      width: 100%;

      .feature_divider {
        margin-bottom: 0px;
      }
    }
  }

  @media screen and (max-width: 798px) {
    #pagecontent + .section,
    #cart_form > .section {
      margin: 0px;
    }
  }
}

.shopify-section.product-template {
  .product.clearfix {
    @media screen and (max-width: 798px) {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  }
}

@media screen and (max-width: 798px) {
  .cart .container.main.content {
    width: 100%;
  }
}

.cart-general-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;

  h1 {
    margin: 0;
    
    @include respond-to('small') {
      font-size: 16px;
    }
  }

  h2 {
    display: none;
    margin-bottom: 0;

    @media screen and (max-width: 798px) {
      display: block;
    }

    @include respond-to('small') {
      font-size: 16px;
    }
  }
}

.container .product_cart_container .columns.cart_content_info {
  padding: 0;
  margin-left: 0;
  width: 100%;

  h5 {
   padding: 0;
   margin-bottom: 10px;
   margin-top:0;
  }
  .price_total {
   padding: 0 0 10px;
   margin-bottom: 20px;
   font-size: 1.1em;
  }

  h3 {
    margin-bottom: 0px;
  }

  a, p, span, label, input, h3 {
    font-family: Jost, sans-serif;
    font-weight: 400;
    line-height: normal;
  }

  label {
    margin-bottom: 0;
    text-transform: unset;
  }

  .product-price-quantity-container {
    display: flex;
    gap: 32px;
    margin-top: 20px;

    @include respond-to('small') {
      margin-top: 16px;
      flex-direction: column;
      gap: 16px;

      .money-label {
        display: none;
      }

      .product-quantity-container {
        display: flex;
        align-items: center;
        gap: 8px;
      }
    }
  }

  .modal_price {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    padding-bottom: 0;
    min-width: 140px;
    
    .money {
      font-size: 20px;
      margin-top: auto;
    }
  }

  .item_properties {
    margin: 0px;
  }

  .meta {
    margin-bottom: 0;
  }
}
.subtotal {
  border-left: 1px solid #cccccc;
  padding-left: 40px;
  width: 100%;

  @include respond-to('medium') {
    border-left: none;
    padding-left: 0;

  }
}
.subtotal_amount {
  font-size: 1.4em;
  font-weight: bold;
}
button.update {
  width:30%;
  float: right;
}


.size_chart { float:right; padding-top: 5px; }
#size-chart { display: none; }
#size-chart h5 {
  padding: 15px 0 0 0;
  text-align: center;
}

.price_total_text {
  font-weight: normal;
  display: none;
}
.was_price {
  text-decoration: line-through;
  color: #8c8b8b;
  text-shadow:none;
  font-weight:normal;
}
.cart_savings {
  text-align: left;
}
.savings {
  font-size: 15px;
  display: block;
}
.thumbnails a {
  display:block;
  margin-bottom: 1em;
}

/* #Instagram Feed
================================================== */

  #instafeed .instagram__item {
    position: relative;
    margin-bottom: 20px;
  }

  .instagram__item:after {
    content: "";
    display: block;
    padding-bottom: 100%;
  }

  .instagram__link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .instagram__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
  }

  .instagram__video-link {
    &:after, &:before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 2;
    }
    &:after {
      width: 0;
      height: 0;
      border: 16px solid transparent;
      border-left: 20px solid #fff;
      margin-top: -18px;
      margin-left: -7px;
      -webkit-filter: drop-shadow(0px 0px 2px rgba(0,0,0,0.25));
    }
    &:before {
      margin-top: -34px;
      margin-left: -34px;
      width: 60px;
      height: 60px;
      border: 3px solid #fff;
      border-radius: 50%;
      box-shadow: 0 0 4px rgba(black, 0.18);
      background: rgba(black, 0.42);
      transition: background 0.3s ease;
    }
    &:hover {
      &:before {
        background: rgba(black, 0.7);
      }
    }
  }

  .social-feeds-wrap {
    .sixteen {
      .columns:nth-child(4n + 1){
        margin-left: 0;
      }
      .columns:nth-child(4n + 4){
        margin-right: 0;
      }
    }
    .eight {
      .columns:nth-child(odd){
        margin-left: 0;
      }
      .columns:nth-child(even){
        margin-right: 0;
      }
    }
  }

.arrow {
  position: relative;
  top: -1px;
  left: 2px;
  opacity: 0.6;
}
.modal {
  margin: 10px 0;
  display: none;
  background-color: #ffffff;
}
.modal_product {
  width: auto;
  line-height:0px;
  max-width: 940px;
}
.modal_product img {
  cursor: pointer;
}
.modal_image {
  text-align:center;
}
.modal a {
  padding-bottom: 0;
}
.modal p.modal_price, p.modal_price {
  font-size: 20px;
  margin-bottom: 10px;
}
.modal form {
  margin-bottom: 10px;
}
.notify_form #contact_form .action_button {
  width: 100%;
}
.product_image_col {
  margin-top: 15px;
  text-align:center;
}
.meta {
  font-size: 13px;
}
.meta p {
  font-size: 13px;
  margin-bottom: 0px;
}
p.meta {
  margin-bottom: 10px;
}
.comment-body p.meta {
  margin-bottom: 5px;
}
.comment-body h6 {
  padding: 0;
}
.sidebar_title {
  padding-bottom: 0px;
}
.blog-section h2 {
  margin-bottom: 0;
  line-height: 1.2;
}
.blog-section h2 a {
  color: #333333;
}
.blog_meta {
 margin-bottom: 0;
}
.blog_meta span {
  position: relative;
  display: inline-block;
  margin-right: 15px;
  font-size: smaller;
  color: #8c8b8b;
}
.blog_meta span:after {
  content: '';
  position: absolute;
  right: -16px;
  top: 50%;
  margin: -1px 5px 0;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background-color: #8c8b8b;
}
.blog_meta span:last-child:after {
  background-color: transparent;
}
.tags span a {
  color: #3c3c3c;
}
.article h3.sub_title {
  letter-spacing: 0;
  margin:10px auto 0;
}
.article_content {
  margin-top: 20px;
}
.excerpt {
  line-height: 1.5;
  margin:1em 0;
}

.article, .article_image {
  padding-bottom: 15px;
}

#comment_form .action_button, #contact_form .action_button {
  display: block;
  padding-left: 40px;
  padding-right: 40px;
  @include respond-to('medium') {
    width: 100%;
  }
}

#contact_form .action_button.sign_up {
  display: inline-block;
  width: 120px;
  padding-left: 0;
  padding-right: 0;
  float: none;
}

body.article { padding-bottom: 0 }

.toggle span {
  color: #8c8b8b;
  font-weight:bold;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size:smaller;
  float: right;
  display: none;
}

.sidebar .blog_search {
  margin-bottom: 15px;

  input {
    width: 100%;
    
      border-radius: 3px;
    
  }
}

.meta .label, .label {
  color: #8c8b8b;
}

.blog_meta, .blog_meta a {
  color: #8c8b8b;
}

.blog_meta a:hover {
  color: #422810;
}

.count {
  font-style: normal;
  font-size: 13px;
}

.checkout {
  display:block;
  float:right;
  margin-top: 0px;
}

.additional-checkout-buttons {
  text-align: center;
  margin-top: 10px;

  & > *:not(script) {
    padding: 10px 0 0 10px;
    vertical-align: top;
    line-height: 1;

    @include respond-to('small') {
      padding: 10px 0 0 5px;
    }

    &:first-child,
    &:empty {
      padding-left: 0px;
    }
  }
}

.or {
  line-height: 40px;
  font-style: normal;
  font-size: 14px;
  padding: 0 10px;
  text-align: center;
  @include respond-to('small') {
    line-height: initial;
    text-align: left;
  }
}

.comment {
  margin-bottom:20px;
}

/*--Author Bio + Social Share Buttons--*/

.author_share_wrap {
  width: 100%;
  border-top: 1px solid #cccccc;
  min-height: 40px;
  padding: 15px 0;
  margin-top: 15px;
  overflow: auto;
}

.blog_author {
  width: 60%;
  float:left;
  @include respond-to('medium'){
    width: 100%;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 5px;
  }
}

.blog_author img {
  width: 80px;
  height: 80px;
  border: 1px solid #cccccc;
  float:left;
  margin-right: 15px;
}

.author_bio {
  text-align: left;
}

.author_bio h6 {
  padding-top: 0;
}

.author_bio p {
  font-size: 0.9em;
}

.blog_share {
  width: 38%;
  float:right;
  text-align: right;
  @include respond-to('medium'){
    width: 100%;
    float:left;
  }
}

  .red {
    color: #C33;
  }
  .address p {
    margin-bottom: 5px;
  }
  div#disqus_thread ul, div#disqus_thread li {
      border: none;
  }
  .search_page {
    padding: 100px 0;
  }


/* #Swatch Styles
================================================== */

/* SASS variables for swatch dimensions */
$swatch-element-size: 40px;
$swatch-label-size: 34px;

.swatch-element.swatch--active {
  border-color: black;
  box-shadow: 0px 0px 0px 2px rgba(255,255,255,1);
}

.selector-wrapper label {margin-bottom: 0.5em;}



  .product_section .product_form {
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .product_section .product_form.is-visible {
    opacity: 1;
  }

  .selector-wrapper, .select { display: none; }
  .swatch_options {
    margin-bottom: 1em;
  }

  .swatch .option_title {
    margin: 0.5em 0;
  }
  /* Hide radio buttons.*/
  .swatch input {
    display: none;
  }

  .swatch label {
    float:left;
    min-width: $swatch-element-size;
    height: $swatch-element-size;
    margin:0;
    font-size:13px;
    text-align:center;
    line-height: $swatch-element-size;
    white-space:nowrap;
    text-transform:uppercase;
    cursor: pointer;
    padding: 0 10px;
  }

  .swatch .color label {
    min-width: $swatch-label-size;
    height: $swatch-label-size !important;
    line-height: $swatch-label-size;
    background-position: center;
    background-size: cover;
  }

  .swatch-element {
    border: #e2e2e2 1px solid;
    min-width: $swatch-element-size;
    min-height: $swatch-element-size;
    
  }

  .swatch-element.color {
    padding: 3px;
  }

  .swatch-element.color, .swatch-element.color label {
    
    border: #e2e2e2 1px solid;
  }

  .swatch-element.color label {
    padding:0;
    margin: 0;
    width: $swatch-label-size;
    height: $swatch-label-size;
  }

  .swatch_options input:checked + .swatch-element {
    border-color: black ;
    box-shadow: 0px 0px 0px 2px rgba(255,255,255,1);
  }

  .swatch .swatch-element {
    float:left;
    -webkit-transform:translateZ(0);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0px 8px 8px 0;
    position:relative;
  }

  .crossed-out {
    @include diagonal-line;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .swatch .swatch-element .crossed-out { display:none; }
  .swatch .swatch-element.soldout .crossed-out {
    
    display:block;
    height: 100%;
    width: 100%;
    pointer-events: none;
  }
  .swatch .swatch-element.soldout label {
    filter: alpha(opacity=60);
    -khtml-opacity: 0.6;
    -moz-opacity: 0.6;
    opacity: 0.6;
  }
  /* Tooltips */
  .swatch .tooltip {
    text-align:center;
    background: #333;
    background: rgba(#333, 0.9);
    color:#fff;
    bottom:100%;
    padding: 5px 10px;
    display:block;
    position:absolute;
    width:120px;
    font-size: 13px;
    left:-35px;
    margin-bottom:15px;
    /* Make it invisible by default */
    filter:alpha(opacity=0);
    -khtml-opacity: 0;
    -moz-opacity: 0;
    opacity:0;
    visibility:hidden;
    /* Animations */
    -webkit-transform: translateY(10px);
       -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
         -o-transform: translateY(10px);
    transform: translateY(10px);
    transition: all .25s ease-out;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    z-index: 10000;
  }
  .swatch .tooltip:before {
    bottom:-20px;
    content:" ";
    display:block;
    height:20px;
    left:0;
    position:absolute;
    width:100%;
  }
  /* CSS triangle */
  .swatch .tooltip:after {
    border-left:solid transparent 10px;
    border-right:solid transparent 10px;
    border-top:solid rgba(#333, 0.9) 10px;
    bottom:-10px;
    content:" ";
    height:0;
    left:50%;
    margin-left:-13px;
    position:absolute;
    width:0;
  }
  .swatch .swatch-element:hover .tooltip {
    filter:alpha(opacity=100);
    -khtml-opacity:1;
    -moz-opacity:1;
    opacity:1;
    visibility:visible;
    -webkit-transform:translateY(0px);
       -moz-transform:translateY(0px);
        -ms-transform:translateY(0px);
         -o-transform:translateY(0px);
            transform:translateY(0px);
  }



  .collection_swatches {
    margin: 10px 0 5px 0;
  }
  .collection_swatches .swatch {
    display: inline-block;
    padding: 3px;
    line-height: 0;
    &:hover {
      border-color: black;
    }
  }
  .collection_swatches .swatch span {
    width: 34px;
    min-width: 34px;
    height: 34px;
    float: none;
    display: inline-block;
    border: #e2e2e2 1px solid;
    
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-position: center;
    background-size: cover;
  }



/* #Footer
================================================== */

.footer {
  font-size: 13px;
  padding: 20px 0;
  border-top: solid 1px #1b1f23;
  background-color: #f0e6d9;
  background-position: center center;
  color: #9d4c00;
  

  .input-row {
    @include flex-direction(column);
    margin-left: 0px;
    margin-right: 0px;

    input {
      margin: 5px 0;
    }
  }
}

.footer-text {
  .toggle_content {
    padding-top: 15px;
  }
}

.no-footer-title.footer-text {
  .toggle_content {
    padding-top: 0;
    @include respond-to('medium'){
      display: block;
      padding-top: 20px;
    }
  }
}

/* If no shop logo used, apply text styling as per theme settings */
.footer .logo {
  color: #ffffff !important;
  font-size: 20px;
  margin-top:0;
  margin-bottom: 20px;
  line-height:1;
  width:100%;
  word-wrap: break-word;
  float: none;
  @include respond-to('medium'){
    text-align: center;
  }
}

img.footer-logo {
  width: 75%;
  max-width: 250px;
  margin-bottom: 10px;
  display: inline-block;
  @include respond-to('medium'){
    max-width: 50% !important;
    margin: 0 25% 25px;
  }
}

.footer .empty-column {
  width: 100%;
  height: 1px;
}

.footer .footer-menu-wrap h6 {
  margin: 0;
  padding: 0 0 5px 0;
  color: #422810;
  font-size: 18px;
  @include respond-to('medium'){
    border-top: 1px solid #1b1f23;
    margin-bottom: 5px;
    padding: 10px 20px 5px;
  }
}

.footer .footer-menu-wrap h6 > span {
  display: none;
  @include respond-to('medium'){
    display: inline-block;
    transition: transform 0.3s linear;
    perspective: 1000;
  }
}

.footer .toggle_content {
  @include respond-to('large'){
    //override display: none from mobile view
    display: block !important;
  }
}

.footer a,
.footer a:visited {
  color: #9d4c00;
  font-size: 13px;
}

.footer a:hover,
.footer a:active {
  color: #000000;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 15px 0 0 0;
}

.footer ul li {
  margin-bottom: 1em;
  line-height: 1.1;
}
.footer form {
  margin-bottom: 0;
}

.footer-menu-wrap {
  text-align: left;
}

.page-contact .footer {
  margin-top: 0;
}
.page-contact .maps {
  position: relative;
  bottom: -6px;
}
.page-landing .maps {
  position: relative;
  bottom: -7px;
}
.maps iframe {
  pointer-events: none;
  display: block;
}
.newsletter form {
  margin-bottom: 0;
}

.footer_credits {
  border-top: 1px solid #1b1f23;
  margin-top:10px;
}

.payment_methods {
  margin: 10px 0 6px 0;
  padding-top: 10px;

  @include respond-to('larger'){
    float: right;
    text-align: right;
  }
}
.payment_methods svg {
  padding-right: 4px;
  height: 30px;
  width: 48px;
}
.credits {
  text-align: left;
  padding-top: 20px;

  @include respond-to('larger'){
    float: left;
  }
}

h6 span, h4 span, .sublink span  {
  transition: transform 0.3s linear;
  perspective: 1000;
}

.footer-menu-wrap, #mobile_menu, .sidebar {
  -webkit-transform: translate3d(0, 0, 0);
  .active span, span.active {
    transform: rotateX(180deg);
  }
}

.sidebar span.menu-toggle {
  float: right;
  display: inline-block;
  cursor: pointer;
  padding: 0 6px 0 6px;
  margin-right: 0;
  transition: transform 0.3s linear;
  perspective: 1000;
  transform: none;

  &.active {
    transform: rotateX(180deg);
  }
}

/* Footer and mobile menu accordion (mobile only) */

@include respond-to('medium'){
  .footer-menu-wrap, .sidebar, #mobile_menu {
    h6 {
      padding-top: 8px;
      cursor: pointer;
      border-top: 1px solid #422810;
      margin-top: 0;
    }
    h6 span, h4 span, .sublink span  {
      display: inline-block;
      transition: transform 0.3s linear;
      perspective: 1000;
    }
    .columns > ul {
      display: none;
      padding-left: 20px;
      li {
        line-height: 1.7;
      }
    }
  }
  .toggle_content {
    display: none;
    padding: 0 20px;
  }
}

@include respond-to('large'){
  h4.toggle {
    pointer-events: none;
  }
  .footer-menu-wrap {
    h6 {
      pointer-events: none;
    }
    .columns > ul {
      //required to overwrite inline display:none from createAccordion();
      display: block !important;
    }
  }
}

/* Promo banner */

$promoBannerHeight: 30px;

.header .promo_banner,
#header .promo_banner {
  a,
  a:visited
  a:hover {
    color: #000000;
  }
}

.promo_banner {
  background-color: #fff67f;
  text-align: center;
  color: #000000;
  font-size: 12px;
  position: relative;
  width: 100%;
  height: 0;
  line-height: 0;
  z-index: 5000;
  top: 0;
  transition: all 0.3s linear;
  overflow: hidden;
  .promo_banner__content {
    margin: 0px auto;
    padding: 0 1.5rem;
    @include respond-to('medium'){
      font-size: 10px;
      max-height: 50px;
    }
  }
  p {
    margin-bottom: 0;
    display: inline;
    line-height: 1;
  }
  .promo_banner-close {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    overflow: visible;
    width: 35px;
    height: 35px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    color: #000000;
    border: 0;
    outline: 0;
    background: transparent;
    z-index: 1000;
    &:before {
      font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
      font-size: 20px;
      line-height: $promoBannerHeight;
      position: absolute;
      top: 0;
      left: 0;
      display: block;
      width: 35px;
      content: "\00d7";
      text-align: center;
    }
  }
}

.promo_banner-show .promo_banner {
  transition: all 0s linear;
  height: auto;
  min-height: $promoBannerHeight;
  line-height: 1.1;
  @include flexbox();
  @include align-items(center);
}

.top_bar {
  padding-top: 0;
  position: relative;
  transition: padding-top 0.3s linear;
  @include respond-to('small'){
    padding-top: 0;
  }
}

$topMenuHeight: 95px;



@include respond-to('medium'){

  .mobile_nav-fixed--true,
  .mobile_nav-fixed--false {
    #pagecontent {
      display: block;
      padding-bottom: 0;
    }
    //page banner is visible
    .page_banner {
      margin-top: $topMenuHeight;
    }
    .page_banner + #pagecontent {
      padding-bottom: 0;
    }
  }

  .index-sections .under-menu:nth-child(1) {
    margin-top: 0;
  }

  .page-details-section .under-menu:nth-child(1) {
    margin-top: 0;
  }

  .page-banner .under-menu:nth-child(1) {
    margin-top: 0;
  }

  //recalculate values if promo banner is visible
  .promo_banner-show.mobile_nav-fixed--true,
  .promo_banner-show.mobile_nav-fixed--false {
    #pagecontent {
      padding-bottom: 0;
      margin-top: 125px;
    }
    .collection-template-section #pagecontent {
      margin-top: 0;
    }
    .page_banner {
      margin-top: calc(#{$topMenuHeight} + #{$promoBannerHeight});
    }
    .page_banner + #pagecontent {
      padding-bottom: 0;
    }
  }

}

/*! Flickity v2.0.10
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled{position:relative}.flickity-enabled:focus{outline:0}.flickity-viewport{overflow:hidden;position:relative;height:100%}.flickity-slider{position:absolute;width:100%;height:100%}.flickity-enabled.is-draggable{-webkit-tap-highlight-color:transparent;tap-highlight-color:transparent;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.flickity-enabled.is-draggable .flickity-viewport{cursor:move;cursor:-webkit-grab;cursor:grab}.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down{cursor:-webkit-grabbing;cursor:grabbing}.flickity-prev-next-button{position:absolute;top:50%;width:44px;height:44px;border:none;border-radius:50%;background:#fff;background:hsla(0,0%,100%,.75);cursor:pointer;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.flickity-prev-next-button:hover{background:#fff}.flickity-prev-next-button:focus{outline:0;box-shadow:0 0 0 5px #09f}.flickity-prev-next-button:active{opacity:.6}.flickity-prev-next-button.previous{left:10px}.flickity-prev-next-button.next{right:10px}.flickity-rtl .flickity-prev-next-button.previous{left:auto;right:10px}.flickity-rtl .flickity-prev-next-button.next{right:auto;left:10px}.flickity-prev-next-button:disabled{opacity:.3;cursor:auto}.flickity-prev-next-button svg{position:absolute;left:20%;top:20%;width:60%;height:60%}.flickity-prev-next-button .arrow{fill:#333}.flickity-page-dots{position:absolute;width:100%;bottom:-25px;padding:0;margin:0;list-style:none;text-align:center;line-height:1}.flickity-rtl .flickity-page-dots{direction:rtl}.flickity-page-dots .dot{display:inline-block;width:10px;height:10px;margin:0 8px;background:#333;border-radius:50%;opacity:.25;cursor:pointer}.flickity-page-dots .dot.is-selected{opacity:1}

.flickity-enabled {
  position: relative;
  overflow: hidden;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
          tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button,
.swiper-button-prev,
.swiper-button-next {
  filter: alpha(opacity=50);
  opacity: 0.5;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 11%;
  border: none;
  background: white;
  background: hsla(0, 0%, 100%, 0.75);
  cursor: pointer;
  border-radius: 0;
  height: auto;
  max-width: 100px;
  transform: none;
}

.flickity-prev-next-button:hover,
.swiper-button-prev:hover,
.swiper-button-next {
  background: white;
  border: none;
}

.flickity-prev-next-button:focus,
.swiper-button-prev:focus,
.swiper-button-next:focus {
  outline: none;
}

.flickity-prev-next-button:hover, .flickity-prev-next-button:active,
.swiper-button-prev:hover, .swiper-button-prev:active,
.swiper-button-next:hover, .swiper-button-next:active, {
  filter: alpha(opacity=80);
  opacity: 0.8;
}

.flickity-prev-next-button.previous,
.swiper-button-prev {
  left: -1px;
}
.flickity-prev-next-button.next,
.swiper-button-next {
  right: -1px;
}
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous,
.swiper-button-prev {
  left: auto;
  right: -1px;
}
.flickity-rtl .flickity-prev-next-button.next,
.swiper-button-next {
  right: auto;
  left: -1px;
}

.flickity-prev-next-button:disabled,
.swiper-button-prev:disabled,
.swiper-button-next:disabled {
  filter: alpha(opacity=10); /* IE8 */
  opacity: 0.1;
  cursor: auto;
}

.flickity-prev-next-button svg,
.swiper-button-prev svg,
.swiper-button-next svg {
  @include vertical-alignment;
  position: absolute;
  left: 20%;
  width: 60%;
  height: 60%;
}

.flickity-prev-next-button .arrow,
.swiper-button-prev .arrow,
.swiper-button-next .arrow {
  fill: #333333;
}

/* color & size if no SVG - IE8 and Android 2.3 */
.flickity-prev-next-button.no-svg {
  color: #333333;
  font-size: 26px;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  filter: alpha(opacity=25); /* IE8 */
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  filter: alpha(opacity=100); /* IE8 */
  opacity: 1;
}

/* Custom sliders */
.flickity-slider > li {
  list-style-type: none;
  width: 100%;
  text-align: center;
}

/* General Flickity styling */

img[data-flickity-lazyload] {
  width: auto;
}

.slideshow_animation--fade {
  .flickity-slider {
    transform: none !important;
  }

  .gallery-cell {
    left: 0 !important;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
  }

  .gallery-cell.is-selected {
    opacity: 1;
    z-index: 0
  }
}

/* Gallery page */

.lightbox-gallery {
  .gallery-cell {
    width: 100%;
    img {
      width: auto;
      max-height: 90vh;
      max-width: 100%;
      display: inline-block;
    }
  }
}

/* Product lightbox */

@include respond-to('small'){
  .remodal-is-locked {
    .product {
      overflow: hidden;
    }
  }
  .product .remodal-close:before {
    font-size: 50px;
    line-height: 55px;
    width: 50px;
    right: 0;
    left: auto;
  }
  .product .remodal.remodal-lightbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    padding-top: 55px;
    margin-bottom: 0;
    .flickity-viewport,
    .flickity-viewport img {
      max-height: 70vh;
    }
  }
}

/* Product gallery */

.gallery-arrows--true .product_gallery {
  .flickity-prev-next-button {
    opacity: 0;
    transition: opacity 0.3s linear;
    display: block;
  }
}

.gallery-arrows--true .product_gallery:hover {
  .flickity-prev-next-button {
    opacity: 0.5;
  }
}

.product_gallery {
  margin-bottom: 2em;
  opacity: 0;
  .gallery-cell {
    width: 100%;
    text-align: center;
    display: block;
    margin-right: 10px;
    span {
      width: 100%;
      display: block !important; // required to override the inline-block set with JS
    }
  }
  &.flickity-enabled {
    opacity: 1;
  }
  &.single-image {
    .flickity-prev-next-button {
      display: none;
    }
  }
  .flickity-prev-next-button {
    display: none;
  }
   @media (min-width: 800px) {
    img {
      width: auto;
    }
  }
  
  @media (max-width: 1400px) {
    .gallery-cell { 
      top: 50%;
      transform: translate(0, -50%);
    }
    .flickity-viewport {
      height: 100% !important;
    }
  }
}

.product_gallery_nav {
  text-align: center;
  .gallery-cell {
    width: 20%;
    margin: 0 10px 10px 0;
    opacity: 0.7;
    display: inline-block;
    &.is-nav-selected {
      opacity: 1;
    }
    img {
      cursor: pointer;
    }
  }
}

.gallery-wrap.right-thumbnails {
  .multi-image {
    width: 83%;
    float: left;
  }
  .product_gallery_nav {
    width: 12%;
    float: left;
    margin-left: 4%;
    .gallery-cell {
      width: 100%;
      margin: 0 0 10px 0;
    }
  }
}

.gallery-wrap.left-thumbnails {
  .multi-image {
    width: 83%;
    float: right;
  }
  .product_gallery_nav {
    width: 12%;
    float: right;
    margin-right: 5%;
    .gallery-cell {
      width: 100%;
      margin: 0 0 10px 0;
    }
  }
}

.gallery-wrap .flickity-viewport {
  margin-top: 0;
}

/* Quick Shop */

.remodal.quick-shop {
  background-color: #ffffff;
  padding: 0 35px;
  
}

.quick-shop {
  .container {
    max-width: 100%;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    .gallery-wrap.eight.columns {
      width: calc(55% - 40px);
      margin: 0;
      margin-right: 40px;
      min-height: 1px;
      transition: opacity 1s 0.3s linear;
      &.hidden-element {
        opacity: 0;
      }
      &.align-gallery-right {
        float: right;
        margin-right: 0;
        margin-left: 40px;
      }
    }
    .text-modal-wrap.six.columns {
      width: 45%;
      margin: 0;
      min-height: 1px;
      transition: opacity 0.3s linear;
      &.hidden-element {
        opacity: 0;
      }
    }
    .new_banner_product:empty, .sale_banner_product:empty, .preorder_banner_product:empty {
      display: none;
    }
  }
  img[alt*="[right]"], img[alt*="[left]"], img[alt*="[center]"]{ //hide full-width-image template images in quick-shop
    display: none;
  }
}

.remodal-is-opened {
  .quick-shop {
    .hidden-element {
      opacity: 1 !important;
    }
  }
}

/* Related Items Gallery */

.related-products--grid {
  font-size: 0;
  text-align: center;

  &.container {
    padding-top: 0;

  }

  .product-list .thumbnail.column,
  .product-list .thumbnail.columns {
    font-size: initial;
    display: inline-block;
    float: none;
    vertical-align: top;
  }
}

.related-products__title {
  clear: both;
}

.title.slider-gallery {
 padding-top: 40px;
  @include respond-to('small'){
   padding-top:0;
   font-size: 1.5em;
  }
}

.slider-gallery {
  margin: 0 auto 40px;
  .gallery-cell {
    margin-right: 10px;
    text-align: center;
    padding: 0;
    margin-bottom: 0;
    @include respond-to('small'){
      padding: 0;
      margin-right: 5px;
    }
    .product-details {
      line-height: 1.2;
      letter-spacing: 0;

      @include respond-to('medium'){
        font-size: 3vw;
      }
    }
    img {
      display: block;
      max-width: 100%;
    }
  }
  .gallery-cell-heading {
    font-size: 0.8rem;
    line-height: 1.2;
    text-transform: none;
    margin-top: 10px;
  }
  .flickity-prev-next-button {
    border-radius: 0;
    opacity: 0;
    width: 5%;
  }
}

.slider-gallery:hover {
  .flickity-prev-next-button {
    opacity: 0.5;
  }
}

.light-button {
  .dot {
    background: #333333;
  }
  .flickity-prev-next-button {
    background: transparent;
    .arrow {
      fill: #333333;
      opacity: 1;
    }
  }
}

.homepage-slideshow.light-button, .testimonial-slideshow.light-button, .product-slider.light-button, .slider-gallery.light-button {
  &:hover {
    .flickity-prev-next-button {
      opacity: 1;
    }
  }
  .flickity-page-dots .dot{
    opacity: 0.4;
    &.is-selected {
      opacity: 1;
    }
  }
}

/*
 *  Remodal - v1.0.6
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;

  -ms-touch-action: none;
  touch-action: none;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;

  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: none;
  overflow: auto;

  text-align: center;

  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;

  height: 100%;
  margin-left: -0.05em;

  content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
  position: relative;

  outline: none;

  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal img {
  max-width: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(3px);
}

/* Default theme styles of the overlay */

.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */

.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */

.remodal {
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  -ms-transform: translateY(0,0,0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff;
  @include respond-to('small') {
    overflow-x: scroll;
  }
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */

.remodal-close {
  position: absolute;
  top: 0;
  right: 0;

  display: block;
  overflow: visible;

  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;

  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;

  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;

  z-index: 1000;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;

  position: absolute;
  top: 0;
  left: 0;

  display: block;

  width: 35px;

  content: "\00d7";
  text-align: center;
}

/* Dialog buttons */

.remodal-confirm,
.remodal-cancel {
  font: inherit;

  display: inline-block;
  overflow: visible;

  min-width: 110px;
  margin: 0;
  padding: 12px 0;

  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;

  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;

  border: 0;
}

/* Keyframes
   ========================================================================== */

@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    transform: none;

    opacity: 1;
  }
}

@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);

    opacity: 1;
  }
  to {
    transform: scale(0.95);

    opacity: 0;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Media queries
   ========================================================================== */

@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 900px;
  }
}
@media only screen and (max-width: 1024px) {
header.header {
     height: 354px !important;
  }
}
/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

/*
* Layout
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/
/* Table of Contents
==================================================
    #Base 960 Grid
    #Tablet (Portrait)
    #Mobile (Portrait)
    #Mobile (Landscape)
    #Clearing
    #Media Queries */

/* #Base 1200 Grid
================================================== */

    .container                                  { position: relative; width: 1200px; margin: 0 auto; padding: 0;}

    .column, .columns                           { float: left; display: inline; margin-left: 10px; margin-right: 10px; box-sizing: content-box}

    .row                                        { margin-bottom: 20px; }

    .container.full-width {
      width: 100%;
    }

    /* Nested Column Classes */
    .column.alpha, .columns.alpha               { margin-left: 0; }
    .column.omega, .columns.omega               { margin-right: 0; }

    /* Base Grid */
    .container .one.column                      { width: 55px;  }
    .container .two.columns                     { width: 130px; }
    .container .three.columns                   { width: 205px; }
    .container .four.columns                    { width: 280px; }
    .container .five.columns                    { width: 355px; }
    .container .six.columns                     { width: 430px; }
    .container .seven.columns                   { width: 505px; }
    .container .eight.columns                   { width: 580px; }
    .container .nine.columns                    { width: 655px; }
    .container .ten.columns                     { width: 730px; }
    .container .eleven.columns                  { width: 805px; }
    .container .twelve.columns                  { width: 880px; }
    .container .thirteen.columns                { width: 955px; }
    .container .fourteen.columns                { width: 1030px; }
    .container .fifteen.columns                 { width: 1105px; }
    .container .sixteen.columns                 { width: 1180px; }

    .container .one-third.column                { width: 380px; }
    .container .two-thirds.column               { width: 780px; }
    .container .one-fifth.column                { width: 220px; }
    .container .one-fifth-sidebar.column        { width: 160px; }
    .container .one-sixth.column                { width: 180px; }
    .container .one-seventh.column              { width: 151px; }



    /* Offsets */
    .container .offset-by-one                   { padding-left: 75px;  }
    .container .offset-by-two                   { padding-left: 150px; }
    .container .offset-by-three                 { padding-left: 225px; }
    .container .offset-by-four                  { padding-left: 300px; }
    .container .offset-by-five                  { padding-left: 375px; }
    .container .offset-by-six                   { padding-left: 450px; }
    .container .offset-by-seven                 { padding-left: 525px; }
    .container .offset-by-eight                 { padding-left: 600px; }
    .container .offset-by-nine                  { padding-left: 675px; }
    .container .offset-by-ten                   { padding-left: 750px; }
    .container .offset-by-eleven                { padding-left: 825px; }
    .container .offset-by-twelve                { padding-left: 900px; }
    .container .offset-by-thirteen              { padding-left: 975px; }
    .container .offset-by-fourteen              { padding-left: 1050px; }
    .container .offset-by-fifteen               { padding-left: 1125px; }

/* #Base 960 Grid
================================================== */

  @media only screen and (min-width: 960px) and (max-width: 1199px) {
    .container                                  { position: relative; width: 960px; margin: 0 auto; padding: 0; }
    .container .column,
    .container .columns                         { float: left; display: inline; margin-left: 10px; margin-right: 10px; }
    .row                                        { margin-bottom: 20px; }

    /* Nested Column Classes */
    .column.alpha, .columns.alpha               { margin-left: 0; }
    .column.omega, .columns.omega               { margin-right: 0; }

    /* Base Grid */
    .container .one.column,
    .container .one.columns                     { width: 40px;  }
    .container .two.columns                     { width: 100px; }
    .container .three.columns                   { width: 160px; }
    .container .four.columns                    { width: 220px; }
    .container .five.columns                    { width: 280px; }
    .container .six.columns                     { width: 340px; }
    .container .seven.columns                   { width: 400px; }
    .container .eight.columns                   { width: 460px; }
    .container .nine.columns                    { width: 520px; }
    .container .ten.columns                     { width: 580px; }
    .container .eleven.columns                  { width: 640px; }
    .container .twelve.columns                  { width: 700px; }
    .container .thirteen.columns                { width: 760px; }
    .container .fourteen.columns                { width: 820px; }
    .container .fifteen.columns                 { width: 880px; }
    .container .sixteen.columns                 { width: 940px; }

    .container .one-third.column                { width: 300px; }
    .container .two-thirds.column               { width: 620px; }
    .container .one-fifth.column                { width: 172px; }
    .container .one-fifth-sidebar.column        { width: 124px; }
    .container .one-sixth.column                { width: 140px; }
    .container .one-seventh.column              { width: 117px; }

    /* Offsets */
    .container .offset-by-one                   { padding-left: 60px;  }
    .container .offset-by-two                   { padding-left: 120px; }
    .container .offset-by-three                 { padding-left: 180px; }
    .container .offset-by-four                  { padding-left: 240px; }
    .container .offset-by-five                  { padding-left: 300px; }
    .container .offset-by-six                   { padding-left: 360px; }
    .container .offset-by-seven                 { padding-left: 420px; }
    .container .offset-by-eight                 { padding-left: 480px; }
    .container .offset-by-nine                  { padding-left: 540px; }
    .container .offset-by-ten                   { padding-left: 600px; }
    .container .offset-by-eleven                { padding-left: 660px; }
    .container .offset-by-twelve                { padding-left: 720px; }
    .container .offset-by-thirteen              { padding-left: 780px; }
    .container .offset-by-fourteen              { padding-left: 840px; }
    .container .offset-by-fifteen               { padding-left: 900px; }
  }


/* #Tablet (Portrait)
================================================== */

    /* Note: Design for a width of 798px */

    @media only screen and (min-width: 799px) and (max-width: 959px) {
        .container                                  { width: 768px; }
        .container .column,
        .container .columns                         { margin-left: 10px; margin-right: 10px;  }
        .column.alpha, .columns.alpha               { margin-left: 0; margin-right: 10px; }
        .column.omega, .columns.omega               { margin-right: 0; margin-left: 10px; }
        .alpha.omega                                { margin-left: 0; margin-right: 0; }

        .container .one.column,
        .container .one.columns                     { width: 28px; }
        .container .two.columns                     { width: 76px; }
        .container .three.columns                   { width: 124px; }
        .container .four.columns                    { width: 172px; }
        .container .five.columns                    { width: 220px; }
        .container .six.columns                     { width: 268px; }
        .container .seven.columns                   { width: 316px; }
        .container .eight.columns                   { width: 364px; }
        .container .nine.columns                    { width: 412px; }
        .container .ten.columns                     { width: 460px; }
        .container .eleven.columns                  { width: 508px; }
        .container .twelve.columns                  { width: 556px; }
        .container .thirteen.columns                { width: 604px; }
        .container .fourteen.columns                { width: 652px; }
        .container .fifteen.columns                 { width: 700px; }
        .container .sixteen.columns                 { width: 748px; }

        .container .one-third.column                { width: 236px; }
        .container .two-thirds.column               { width: 492px; }
        .container .one-fifth.column                { width: 133px; }
        .container .one-fifth-sidebar.column        { width: 95px; }
        .container .one-sixth.column                { width: 108px; }
        .container .one-seventh.column              { width: 89px; }

        /* Offsets */
        .container .offset-by-one                   { padding-left: 48px; }
        .container .offset-by-two                   { padding-left: 96px; }
        .container .offset-by-three                 { padding-left: 144px; }
        .container .offset-by-four                  { padding-left: 192px; }
        .container .offset-by-five                  { padding-left: 240px; }
        .container .offset-by-six                   { padding-left: 288px; }
        .container .offset-by-seven                 { padding-left: 336px; }
        .container .offset-by-eight                 { padding-left: 384px; }
        .container .offset-by-nine                  { padding-left: 432px; }
        .container .offset-by-ten                   { padding-left: 480px; }
        .container .offset-by-eleven                { padding-left: 528px; }
        .container .offset-by-twelve                { padding-left: 576px; }
        .container .offset-by-thirteen              { padding-left: 624px; }
        .container .offset-by-fourteen              { padding-left: 672px; }
        .container .offset-by-fifteen               { padding-left: 720px; }
    }


/*  #Mobile (Portrait)
================================================== */

    /* Note: Design for a width of 320px */

    @media only screen and (max-width: 798px) {
        .container { width: 300px; }
        .container .columns,
        .container .column { margin: 0; }

        .container .one.column,
        .container .one.columns,
        .container .two.columns,
        .container .three.columns,
        .container .four.columns,
        .container .five.columns,
        .container .six.columns,
        .container .seven.columns,
        .container .eight.columns,
        .container .nine.columns,
        .container .ten.columns,
        .container .eleven.columns,
        .container .twelve.columns,
        .container .thirteen.columns,
        .container .fourteen.columns,
        .container .fifteen.columns,
        .container .sixteen.columns,
        .container .one-third.column,
        .container .two-thirds.column,
        .container .one-fifth.column,
        .container .one-sixth.column,
        .container .one-seventh.column  { width: 300px; }


        
          .container .thumbnail.even, .container .thumbnail.odd  { width: 140px !important; }
          .container div.thumbnail.even  { clear: left }
          .container div.thumbnail.odd  { margin-left: 20px }
          br.product_clear { display: none }
        

        /* Offsets */
        .container .offset-by-one,
        .container .offset-by-two,
        .container .offset-by-three,
        .container .offset-by-four,
        .container .offset-by-five,
        .container .offset-by-six,
        .container .offset-by-seven,
        .container .offset-by-eight,
        .container .offset-by-nine,
        .container .offset-by-ten,
        .container .offset-by-eleven,
        .container .offset-by-twelve,
        .container .offset-by-thirteen,
        .container .offset-by-fourteen,
        .container .offset-by-fifteen { padding-left: 0; }

    }


/* #Mobile (Landscape)
================================================== */

    /* Note: Design for a width of 480px */

    @media only screen and (min-width: 480px) and (max-width: 798px) {
        .container { width: 420px; }
        .container .columns,
        .container .column { margin: 0; }

        .container .one.column,
        .container .one.columns,
        .container .two.columns,
        .container .three.columns,
        .container .four.columns,
        .container .five.columns,
        .container .six.columns,
        .container .seven.columns,
        .container .eight.columns,
        .container .nine.columns,
        .container .ten.columns,
        .container .eleven.columns,
        .container .twelve.columns,
        .container .thirteen.columns,
        .container .fourteen.columns,
        .container .fifteen.columns,
        .container .sixteen.columns,
        .container .one-third.column,
        .container .two-thirds.column,
        .container .one-fifth.column,
        .container .one-sixth.column,
        .container .one-seventh.column { width: 420px; }

        
          .container .thumbnail.even, .container .thumbnail.odd  { width: 200px !important; }
          .container div.thumbnail.even  { clear: left }
          .container div.thumbnail.odd  { margin-left: 20px }
          br.product_clear { display: none }
        
    }


/* #Clearing
================================================== */

/* Self Clearing Goodness */
.container:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; }

/* Use clearfix class on parent to clear nested columns,
or wrap each row of columns in a <div class="row"> */
.clearfix:before,
.clearfix:after,
.row:before,
.row:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0; }
.row:after,
.clearfix:after {
  clear: both; }
.row,
.clearfix {
  zoom: 1; }

/* You can also use a <br class="clear" /> to clear columns */
.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

/* #Media Queries
================================================== */

/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {

  #contact_form input.sign_up[type="submit"] {
    margin-left: 0 ;
    margin-bottom: 1.5em;
    width: 100%;
  }

  input.contact_email[type="email"] {
    width: 100%;
  }

  .collection_menu {
    display: none;
  }

  h1.collection_title_tags,
  div.collection_title_tags {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
  }

}

/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 799px) and (max-width: 959px) {
  .nav a, .nav a:visited, .nav a:active, .nav a:focus {
    font-size: 12px;
  }
  .menu a, .menu a:visited, .menu a:active, .menu a:focus {
    font-size: 12px;
  }
  .menu li, #header span.menu_title, .menu a span {
    padding-left: 2px;
    padding-right: 2px;
  }
  .nav .menu li.search_link {
    display: inline-block;
  }
  .menu li.search_container {
    display: none;
  }
}

/* All Mobile Sizes (devices and browser) */
  @media only screen and (max-width: 798px) {
    .article_image {
      padding-bottom: 0;
    }
    .sidebar_content {
      border: 0;
      padding: 0;
    }
    .nav_arrows { float: none; text-align: center;}
    .nav_arrows .prev { float: left; }
    .nav_arrows .next { float: right; }
    #header .top_bar a.mobile_logo {
      margin: auto;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      font-size: 18px;
      line-height: 34px;
      z-index: 5;
      width: 50%;
      height: auto;
      color: #ffffff;
      @include flexbox();
      @include align-items(center);
      @include justify-content(center);
    }
    #header a.mobile_logo img {
      width: auto;
      max-width: 150px;
      max-height: 30px;
    }

    .payment_methods {
      text-align: center;
      float: none;
      display: block;
    }
    .credits {
      float: none;
      display: block;
      text-align: center;
    }

    
    .is-absolute { top: 0px !important; }

    .blog_filter { margin-top: 1em; width: 100% !important; }
    .section_select { text-align: center; }
    .flex-control-nav { bottom: 10px }
    .featured_links a span {
      font-size: 12px;
    }
    .or {
      width: 100%;
      display: inline-block;
      padding-left: 0;
      padding-bottom: 5px;
    }
    .mobile_hidden { display: none !important }
    table tr.order_summary td.label { text-align: left }

    .featured_text {
      font-size: 15px;
      line-height: 1.7em;
    }
    #header {
      display: block;
    }
    .header {
      display: none;
    }
    h4.toggle {
      cursor: pointer;
    }
    .toggle span {
      display: block;
    }
    .toggle_list {
      display: none;
    }
    select {
      width:100%;
      margin-left: 0;
    }

    input[type="submit"],
    input[type="reset"],
    input[type="button"],
    input.action_button[type="submit"],
    input.action_button[type="button"],
    .sign_up {
      margin-left: 0;
      width: 100%;
      outline: 0;
    }

    .credits_right {
      text-align: left;
    }
    .container .column.thumbnail, .container .columns.thumbnail {
      margin-top: 1em;
    }
  td {
    padding: 4px !important;
  }
  .title_column {
      float:left;
    }
  .container div.mobile_only, .mobile_only {
      display:block;
    }
  span.mobile_only {
    display: inline;
  }
  .price_total {
    text-align: right;
  }
  .price_total_text {
    display:block;
  }
  .update_subtotal, .price_total, .remove_column, .checkout_table_header {
      display: none;
    }
  .mobile_right {
      text-align: right;
    }
  .quick_shop {
      display: none !important;
    }
  .cart_price {
    display: block;
    margin-bottom: 0;
  }
  table tr th, table tr td {
      padding: 2px;
    }
  input.action_button {
      margin-bottom: 1em !important;
    }
  .multiple_product_images {
      display: none;
    }
  .headline {
    font-size: 1.3em;
    line-height: 1.2;
    position: relative;
  }
  p.subtitle {
    font-size: 1.1em;
    line-height: 1.2;
    position: relative;
  }
}
/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
  @media only screen and (min-width: 480px) and (max-width: 798px) {
    .mobile_hidden { display: none !important }
  }
/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
  @media only screen and (max-width: 479px) {
    .mobile_hidden { display: none !important }
    .cart_image { max-width: 60px; padding-right: 10px }
    .action_button {
      font-size: 12px;
    }
    h1, h2, h3, h4, h5, h6, .collection_title, .empty_cart {
      font-size: 110%;
      line-height: 1.5em;
    }
    h1, h1.home, .title a, h2 {
      padding:0;
    }
}

@media only screen and (min-device-width : 320px) and (max-device-width : 1024px) {
   html {
      -webkit-text-size-adjust: 100%;
   }
}

html {
  overflow-x: hidden;
}

@font-face {
  font-family: 'turbo';
  src: url('//www.kouboo.com/cdn/shop/t/152/assets/turbo.eot?v=22446298993688963281755274457');
  src: url('//www.kouboo.com/cdn/shop/t/152/assets/turbo.eot?v=22446298993688963281755274457') format('embedded-opentype'),
       url('//www.kouboo.com/cdn/shop/t/152/assets/turbo.woff?v=1876293967402835401755274457') format('woff'),
       url('//www.kouboo.com/cdn/shop/t/152/assets/turbo.ttf?v=35221075142360648371755274457') format('truetype'),
       url('//www.kouboo.com/cdn/shop/t/152/assets/turbo.svg?v=35158008340974890511755274457') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "turbo";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: .15em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-pinterest:before { content: "\e906"; }
.icon-bag:before { content: "\e900"; }
.icon-cart:before { content: "\e901"; }
.icon-check:before { content: "\e902"; }
.icon-cross:before { content: "\e903"; }
.icon-down-arrow:before { content: "\e904"; }
.icon-mail:before { content: "\e905"; }
.icon-left-arrow:before { content: "\e90a"; }
.icon-menu:before { content: "\e90c"; }
.icon-minus:before { content: "\e90d"; }
.icon-phone:before { content: "\e90e"; }
.icon-plus:before { content: "\e910"; }
.icon-right-arrow:before { content: "\e911"; margin-right: 0; }
.icon-search:before { content: "\e913"; }
.icon-up-arrow:before { content: "\e917"; }
.icon-user:before { content: "\e918"; }
.icon-youtube:before { content: "\e914"; }
.icon-gplus:before { content: "\e907"; }
.icon-vimeo:before { content: "\e912"; }
.icon-rss:before { content: "\e908"; }
.icon-houzz:before { content: "\e909"; }
.icon-snapchat:before { content: "\e90b"; }
.icon-instagram:before { content: "\e90f"; }
.icon-facebook:before { content: "\ea90"; }
.icon-twitter:before { content: "\ea96"; }
.icon-tumblr:before { content: "\eab9"; }
.icon-linkedin:before { content: "\eaca"; }

.icon-twitter-share:before { content: "\ea96"; }
.icon-facebook-share:before { content: "\ea90"; }
.icon-gplus-share:before { content: "\e907"; }
.icon-pinterest-share:before { content: "\e906"; }
.icon-mail-share:before { content: "\e905"; }

span.icon-down-arrow {
  padding: 0 !important;
  font-size: 12px !important;
}

.menu li.search_link {
  display: none;
  padding-left: 10px;
  padding-right: 10px;
}

.sticky_nav .menu li.search_link {
  display: inline-block;
  float: right;
}

.sticky_nav .menu-position--block .logo {
  display: none;
}

.menu li.search_container {
  width: 30%;
  @include respond-to('xlarge'){
    margin-left: 15px;
  }
  float: right;
  padding-top: 3px;
}

.logo-align--left .menu li.search_container {
  width: 18%;
}

.menu-position--block .menu li.search_container {
  width: 18%;
  float: none;
}

form.search_form,
.search_form input {
  padding-top: 0;
  margin-bottom: 0;
  position: relative;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}

.search_form input,
.search_form input:active,
.search_form input:focus {
  font-family: Jost, sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1px;
  color: #905200;
  background-color: transparent;
  padding-right: 35px;
  border-color: #905200;
  
    border-radius: 3px;
  
}

.feature_image .search_form input,
.feature_image .search_form input:active,
.feature_image .search_form input:focus {
  color: #f2f2f2;
  border-color: #f2f2f2;
  &::-webkit-input-placeholder {
    color: #f2f2f2;
  }
  &::-moz-placeholder {
    color: #f2f2f2;
  }
  &:-ms-input-placeholder {
    color: #f2f2f2;
  }
}

.feature_image .search-submit { color: #f2f2f2; }

.header_search_form {
  width: 60%;
  margin: 0 auto 30px auto;
  padding: 30px 0 0 0;
  position: relative;
  border-bottom: solid 1px #905200;
  @include respond-to('small'){
    width: 90%;
    margin: 30px auto;
    padding: 0;
  }
}

.header_search_form input,
.header_search_form input:focus,
.header_search_form input:active {
  background-color: transparent;
  font-family: Jost, sans-serif;
  font-weight: 400;
  color: #905200;
  font-weight: normal;
  letter-spacing: 1px;
  border: none;
  font-size: 36px;
  line-height: 36px;

  @include respond-to('small'){
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 0px;
  }
}

.header_search_form .search-submit {
  top: 38px;
  font-size: 30px;
  @include respond-to('small'){
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    font-size: 20px;
  }
}

.feature_image .search_form input,
.feature_image .search_form input:active,
.feature_image .search_form input:focus {
  color: #f2f2f2;
  border: 1px solid #f2f2f2;
}

.feature_image .search_form input::-webkit-input-placeholder {
  color: #f2f2f2;
}
.feature_image .search_form input:-moz-placeholder { /* Firefox 18- */
  color: #f2f2f2;
}
.feature_image .search_form input::-moz-placeholder {  /* Firefox 19+ */
  color: #f2f2f2;
}
.feature_image .search_form input:-ms-input-placeholder {
  color: #f2f2f2;
}

.search_form input::-webkit-input-placeholder {
  color: #905200;
}
.search_form input:-moz-placeholder { /* Firefox 18- */
  color: #905200;
}
.search_form input::-moz-placeholder {  /* Firefox 19+ */
  color: #905200;
}
.search_form input:-ms-input-placeholder {
  color: #905200;
}

.search_form input:focus::-webkit-input-placeholder {
  color: #373230;
}
.search_form input:focus:-moz-placeholder { /* Firefox 18- */
  color: #373230;
}
.search_form input:focus::-moz-placeholder {  /* Firefox 19+ */
  color: #373230;
}
.search_form input:focus:-ms-input-placeholder {
  color: #373230;
}

.feature_image .search_form input,
.feature_image .search_form input:active,
.feature_image .search_form input:focus {
  color: #f2f2f2;
  border: 1px solid #f2f2f2;
}

.feature_image .search_form input::-webkit-input-placeholder {
  color: #f2f2f2;
}
.feature_image .search_form input:-moz-placeholder { /* Firefox 18- */
  color: #f2f2f2;
}
.feature_image .search_form input::-moz-placeholder {  /* Firefox 19+ */
  color: #f2f2f2;
}
.feature_image .search_form input:-ms-input-placeholder {
  color: #f2f2f2;
}

.search-submit {
  position: absolute;
  z-index: 1000;
  color: #905200;
  font-size: 20px;
  top: 9px;
  right: 7px;
  cursor: pointer;
}

.feature_image .search-submit {
  color: #f2f2f2;
}

.blog_search .search-submit {
  color: #333333;
  top: 10px;
  right: 8px;
  z-index: 1;
}

.social_icons {
  margin-left: 0;
  margin-top: 0;
}

.social_icons li {
  display: inline;
  padding-right: 2px;
}

footer .footer-social-icons {
  @include respond-to('medium'){
    display: none;
  }
}

footer .footer-social-icons--mobile.columns {
  display: none;
  padding-left: 0;
  @include respond-to('medium'){
    display: block;
    > ul {
      display: block;
      padding-left: 0;
    }
  }
}

footer .social_icons {
  display: block;
  margin-top: 15px;
  @include respond-to('medium'){
    padding-left: 0;
    text-align: center;
  }
}

footer .social_icons a, footer .social_icons a:visited {
  color: #9d4c00;
  font-size: 22px;
  display: inline-block;
  margin-bottom: 1em;
  @include respond-to('small'){
    margin-bottom: 0;
  }
}

footer .social_icons a:active, footer .social_icons a:hover {
  color: #000000;
  font-size: 22px;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

.animated{animation-duration:1s;animation-fill-mode:both}.animated.infinite{animation-iteration-count:infinite}.animated.hinge{animation-duration:2s}.animated.bounceIn,.animated.bounceOut,.animated.flipOutX,.animated.flipOutY{animation-duration:.75s}@keyframes bounceIn{0%,20%,40%,60%,80%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:scale3d(.3,.3,.3)}20%{transform:scale3d(1.1,1.1,1.1)}40%{transform:scale3d(.9,.9,.9)}60%{opacity:1;transform:scale3d(1.03,1.03,1.03)}80%{transform:scale3d(.97,.97,.97)}to{opacity:1;transform:scaleX(1)}}.bounceIn{animation-name:bounceIn}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.fadeIn{animation-name:fadeIn}@keyframes fadeInDown{0%{opacity:0;transform:translate3d(0,-20px,0)}to{opacity:1;transform:none}}.fadeInDown{animation-name:fadeInDown}@keyframes fadeInLeft{0%{opacity:0;transform:translate3d(-20px,0,0)}to{opacity:1;transform:none}}.fadeInLeft{animation-name:fadeInLeft}@keyframes fadeInRight{0%{opacity:0;transform:translate3d(20px,0,0)}to{opacity:1;transform:none}}.fadeInRight{animation-name:fadeInRight}@keyframes fadeInUp{0%{opacity:0;transform:translate3d(0,20px,0)}to{opacity:1;transform:none}}.fadeInUp{animation-name:fadeInUp}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.fadeOut{animation-name:fadeOut}@keyframes fadeOutUp{0%{opacity:1}to{opacity:0;transform:translate3d(0,-100%,0)}}.fadeOutUp{animation-name:fadeOutUp}@keyframes zoomOut{0%{opacity:1}50%{opacity:0;transform:scale3d(.3,.3,.3)}to{opacity:0}}.zoomOut{animation-name:zoomOut}


.delay-0s {
  -moz-animation-delay: 0;
  -webkit-animation-delay: 0;
  animation-delay: 0;
}
.delay-025s {
  -moz-animation-delay: .25s;
  -webkit-animation-delay: .25s;
  animation-delay: .25s;
  opacity: 0;
}
.delay-05s {
  -moz-animation-delay: .5s;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  opacity: 0;
}
.delay-075s {
  -moz-animation-delay: .75s;
  -webkit-animation-delay: .75s;
  animation-delay: .75s;
  opacity: 0;
}
.delay-1s {
  -moz-animation-delay: 1s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  opacity: 0;
}

.animate_right, .animate_left, .animate_up, .animate_down { opacity: 0 }

.ie .animated, .ie .animate_right, .ie .animate_left, .ie .hsContent, .ie #slide-1 .animated { opacity: 1 !important; }
.ie delay-025s, .ie .delay-0s, .ie .delay-025s, .ie .delay-05s, .ie .delay-075s, .ie .delay-1s { opacity: 1 !important; }
.ie select {
  background-image: none !important;
}

@media only screen and (max-width: 798px) {
  .delay-0s, .delay-025s, .delay-05s, .delay-075s, .delay-1s,
  .animate_right, .animate_left, .animate_up, .animate_down {
    opacity: 1;
  }
}

/* #Password Page
================================================== */
#password-container {
  margin: 75px auto 0;
  max-width: 100%;
  display: table;
  text-align: center;
  display: table;
  @include respond-to('medium') {
   margin-top: 10px;
  }

  #contact_form input.sign_up[type="submit"] {
    @include respond-to('tablet') {
      margin-left: auto;
      width: calc(100% - 10px);
    }
  }
}

.password-page-message {
  font-size: 3em;
  line-height: 1.2;
  margin: 10px auto;
  padding: 12px 0;
}
.password-page-follow {
  margin: 5px 0;
}
.password-social .social_icons a,
.password-social .social_icons a:visited,
.password-social .social_icons a:active {
  font-size: 25px;
}

.password-page-row {
  display: table-row;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.password-page-col {
  display: table-cell;
  vertical-align: middle;
  padding: 5px 30px;
  width: 100%;
}

.password-logo {
  max-width: 200px; /* Allows logo to be more prominent*/
  margin: 0px auto;
}

.password-message{
  max-width: 600px;
  font-size: 1.2em;
  color: #9d4c00;
 }

.hr-small {
  margin: 20px auto;
  width: 50px;
}

.password-social {
  margin-top: 10px;
  padding-top: 20px;
}

.password-social ul {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 10px;
}

.password-social .social_icons li {
  display: inline;
  margin-left: 0;
}

.password-social .social_icons a:hover {
  color:#422810;
}

.password-footer {
  margin-top: 15px;
  margin-bottom: 40px;
  font-size: 13px;
  color: #9d4c00;
  text-align: center;
}

.powered {
  display: block;
  margin-top: 15px;
}

.shopify a {
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA0JJREFUeNqMU81vG0UU/83sR73YG+M4xrHj4jj9UCFNSaGlQQUhhFBRpXIo6jEHQFXFAbhy4B/gioTgzgGV7ws5IAoqUgUSoWoIaZJGpGpMHDuptf5a7+fM8nZpJaRy4M0+jd7szO/93u/NsAsX5vFvi6IInHNUq5NnstnsqXp96xur3f392HNlrIcLePHkS8hlTchIJvtVSTOjIaSAwhkiGsXi+BudjjVp28Oj+XzhrPDZh5qqfoIQD5j6wrxHCAJ6UMXVr3pgnB0c9O2843jrE5XMtZER47GTp+bOqfn++d9+Ct5TuLrCGAcjpgnAWEVSdg8HSyWUzTl8v7D08szxSltPB6/OPDWeW/q1caI2O0zfbrThBM7pjdbiz9PG7LsK01epYKiCaMlIQadnHag9UZ2vbuqvl47tVMwcY3fdFjLFCIHksB0bQojCTmfzlWyHf53S0qsyigESMRS0uqtvNbs330nXNHhRAWl3ChnNhLG/jzBy4fg27pGG5TSqWsARV6EGwk+WScgymIQ5auLpyTdRHj2arC//9QXuDpfgeDYkQcgoZixq4DKuAGoo7wEwVg5DD3PVt1EafRzL21/C0HJo9f4gYUO4gZNkFMk5Nkli3wcI4vP7yIvxhsLIIXhBHzfqlzHwWihkDiNjPEwlDJNE/zDABGPQKfR5QAzI8wRU9IWNurWIlJbF+dmP8Ig5ja67Az8cwvWdmCVi4YSMSlTzODjAQxGAvCZkaIpI4MeN97Fc/xbpfXk8WXmNqPcw9C1idR8gKSNN06GYEScZYwZVJ+xj/8hpPJp9HmvNK/Bd6g0zEXfJ9rvEwE0A4qbFLOibimN15RcLR57JVFx7iLGHpvFs9RJ8QZvofmzsXoEXDqAqWiIiyUaAUSIkBTVVY1BuXuth6rhxcaxizDb619EcrGPg7+JG8zJWdj8HZwplk7hTHyDiKrU5BVWXyKT57ncfNz9TRBjxrRWn3/zT2+7seV7DWuabnR+MTrCm6ikNnLLEL3R720dmQkMqFz8dia3rdmvhg8an7MH3hZRhKuVsQTtcPmCcGK+lZvLl1JEdK9T7PW9t75a72L7tXh3sBbdEELXxP00h1//rx98CDACS7p3N/ZPUwQAAAABJRU5ErkJggg==);
  padding-left: 21px;
  color: #9d4c00;
  text-decoration: none;
}

.password-footer a {
  color: #9d4c00;
  text-decoration: none;
}

/* Password Page Modal CSS */
.controls {
  display: block;
  margin: 1em;
  text-align: right;
  text-transform: uppercase;
  position: relative;
}

#open-me {
  text-align: center;
  margin-bottom: 35px;
  a {
    &:hover {
      color: #422810;
    }
  }
}

.close-me {
  z-index: 8000;
}

.modalbox {
  position: absolute;
  height: 100%;
  top: -1em;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  z-index:5000;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  max-height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  background: rgba(255,255,255,0.95);
}

.overlay-close {
  width: 150px;
  height: 50px;
  position: absolute;
  right: 10px;
  top: 10px;
  border: 1px solid #000;
  font-size: 14px;
}

.overlay-data {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s;
  visibility: 0s 0.5s;
  transition: opacity 0.5s, visibility 0s 0.5s;
}

.overlay-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s;
}

.inputbox {
  margin: 0px auto;
  max-width: 80%;
  display: table;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #000;
}

#password-page-bg .modalbox .inputbox {
  @include respond-to('medium'){
    top: 50%;
  }
}

.storefront-password-form label {
  font-size: 0.9em;
  margin: 0 0 1em 0;
  text-align: center;
}

.storefront-password-form .actions {
  display: inline-block;
}

.storefront-password-form #password {
  width: 50%;
  display: inline-block;
  @include respond-to('small'){
    width: 100%;
  }
}

#owner {
  font-size: 0.9em;
  margin-top: -1em;
  opacity: 0.8;
}

.pass-close {
  color: #000 !important;
  padding: 0 !important;
  margin: 1em !important;
  position: inherit !important;
}

@media screen and (min-width: 320px) and (max-width: 440px) and (max-height: 667px){
  .modalbox {
    display: block;
    width: 414px !important;
    max-width: 100%;
    text-align: center;
  }
  .pass-close {
    display: block;
    margin: 0.65em -0.15em 1em 0 !important;
  }
}

/* #Page Details
================================================== */
.page-details-section {
  .container {
    padding: 0;
  }
  .article {
    padding-bottom: 0;
  }
  div.container .featured_products {
    padding-top: 0;
  }
  @include respond-to('small'){
    .caption.position-center,
    .caption.position-left,
    .caption.position-right, {
      margin: 5% 0 0 0;
    }
  }
}

/* #Product Details
================================================== */
.product-details-template {
  .product-details__blocks .container {
    padding: 0;
  }
  .action_button:not(.add_to_cart) {
    width: auto;
  }
  img {
    width: 100%;
  }
  img.rich-image {
    max-width: auto;
    margin-bottom: 20px;
  }
  @include respond-to('small'){
    .featured-link--section.text-block--left {
      flex-direction: column-reverse;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse;
    }
  }
}

.quote {
  padding: 10px 0px;
  text-align: center;
  border-top-style: $borderStyle;
  border-top-width: $borderWidth;
  border-bottom-width: $borderWidth;
  border-bottom-style: $borderStyle;
  border-color: #aaaaaa;
}

.grey-map {
  filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+ */
  filter: gray; /* IE6-9 */
  -webkit-filter: grayscale(99%); /* Chrome 19+ & Safari 6+ */
  -webkit-backface-visibility: hidden;  /* Fix for transition flickering */
}

/* Home page - general
================================================== */

/* Full-width product slider */

.homepage-product-slider {
  margin: 0 10px;
  object.placeholder-image {
    width: 100%;
    display: block;
    height: auto;
    position: relative;
    padding-top: 100%;
  }
  .placeholder-svg--product {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.homepage-product-slider.even-num-slides {
  margin-left: 10px;
  width: calc(100% - 10px);
  @include respond-to('medium'){
    margin-left: 0;
    width: 100%;
  }
}

.products-slider.slider-gallery {
  &.products-length-6 {
    .gallery-cell {
      width: calc(16.6% - 10px);
      @include respond-to('medium'){
        width: calc(40% - 10px);
      }
    }
  }
  &.products-length-5 {
    .gallery-cell {
      width: calc(20% - 10px);
      @include respond-to('medium'){
        width: calc(40% - 10px);
      }
    }
  }
  &.products-length-4 {
    .gallery-cell {
      width: calc(25% - 10px);
      @include respond-to('medium'){
        width: calc(40% - 10px);
      }
    }
  }
  &.products-length-3, &.products-length-2, &.products-length-1 {
    .gallery-cell {
      width: calc(33.33% - 10px);
    }
  }
}

.products-slider.slider-gallery {
  .gallery-cell {
    &.visible-2 {
      width: calc(50% - 10px);
      @include respond-to('medium'){
        width: calc(50% - 10px);
      }
    }
    &.visible-3 {
      width: calc(33.33% - 10px);
      @include respond-to('medium'){
        width: calc(40% - 10px);
      }
    }
    &.visible-4 {
      width: calc(25% - 10px);
      @include respond-to('medium'){
        width: calc(40% - 10px);
      }
    }
    &.visible-5 {
      width: calc(20% - 10px);
      @include respond-to('medium'){
        width: calc(40% - 10px);
      }
    }
    &.visible-6 {
      width: calc(16.666% - 10px);
      @include respond-to('medium'){
        width: calc(40% - 10px);
      }
    }
    &.visible-7 {
      width: calc(14.2% - 10px);
      @include respond-to('medium'){
        width: calc(40% - 10px);
      }
      .product-details {
        font-size: 0.7rem;
      }
    }
  }
}

// Text below overlay on larger screens
@include respond-to('max-width: 985px'){
  @for $i from 7 through 16 {
    .products-length-#{$i} {
      .product-info__caption {
        display: block;
      }
      .thumbnail-overlay {
        display: none;
      }
    }
  }
}

.featured_products.product-slider {
  padding-bottom: 0;
  .columns {
    padding-bottom: 0;
  }
}

//Applied to the slideshow, video and full-width banner images

.banner-full-link {
  line-height: 0;
  font-size: 0;
  color: transparent;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}

.banner-full-link + .caption {
  pointer-events: none;
  cursor: pointer;
}

.caption {
  width: 100%;
  position: absolute;
  
    top: 50%;
  
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  @include respond-to('large'){
    max-width: 960px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  @include respond-to('xlarge'){
    max-width: 1200px;
  }
  @include respond-to('medium'){
    width: 100%;
  }
  @include respond-to('small'){
    margin: 5% 0;
    font-size: 3vw;
    position: static;
    transform: none;
    width: 100%;
  }
  a {
    pointer-events: all;
  }
  &.position-center {
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    @include respond-to('medium'){
      width: 85%;
    }
    @include respond-to('small'){
      width: 100%;
      padding: 0 5%;
      margin: 5% 0;
    }
  }
  &.position-left {
    left: 0;
    text-align: left;
    padding: 0 2%;
  }
  &.position-right {
    right: 0;
    text-align: right;
    padding: 0 2%;
  }
  .pretext {
    color: #313131;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    text-transform: none;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    
    @include respond-to('small'){
      font-size: 1.4em;
      color: #333333;
      text-shadow: none;
    }
    @include respond-to('medium'){
      font-size: 12.0px;
    }
    @include respond-to('large'){
      font-size: 15.0px;
    }
    @include respond-to('larger'){
      font-size: 18px;
    }
  }
  .headline {
    color: #313131;
    font-family: Jost, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 39px;
    letter-spacing: 1px;
    line-height: 1.4em;
    margin-bottom: 15px;
   

    @include respond-to('small'){
      font-size: 2.6em;
      color: #333333;
      text-shadow: none;
    }
    @include respond-to('medium'){
      font-size: 26.0px;
    }
    @include respond-to('large'){
      font-size: 32.5px;
    }
    @include respond-to('larger'){
      font-size: 39px;
    }
  }
  .subtitle {
    color: #313131;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    text-transform: none;
    font-size: 18px;
    letter-spacing: 1px;
    position: relative;
    

    @include respond-to('small'){
      font-size: 1.4em;
      color: #333333;
      text-shadow: none;
    }
    @include respond-to('medium'){
      font-size: 12.0px;
    }
    @include respond-to('large'){
      font-size: 15.0px;
    }
    @include respond-to('larger'){
      font-size: 18px;
    }
  }
  .pretext:empty,
  .headline:empty,
  .subtitle:empty {
    display: none;
    &:before {
      height: 0;
    }
  }
}

.subtitle p a {
  pointer-events: all;
}

.caption-content {
  display: inline-block;
  float: none;
  max-width: 60%;
  // font-size:0 eliminates offset buttons when they are stacked (inline-block ghost space)
  font-size: 0;
  @include respond-to('medium'){
    max-width: 80%;
  }
  @include respond-to('small'){
    width: 100%;
    max-width: 100%;
  }
  .action_button {
    margin: 10px;
    @include respond-to('medium'){
      // tightens up stacked buttons on iPad
      margin: 5px;
    }
    @include respond-to('small'){
      font-size: 16px;
    }
  }
  &.align-center {
    text-align: center;
    @include respond-to('medium'){
      max-width: 80%;
    }
    @include respond-to('small'){
      width: 100%;
      max-width: 100%;
    }
  }
  &.align-left {
    text-align: left;
    &:first-child .action_button {
      margin-left: 0;
    }
    .subtitle:before {
      margin-left: 0;
    }
  }
  &.align-right {
    text-align: right;
    &:last-child .action_button {
      margin-right: 0;
    }
    .subtitle:before {
      margin-right: 0;
    }
  }
  &.caption-background-true {
    padding: 30px;
    @include respond-to('small'){
      padding: 0;
    }
  }
}

/* Transparency settings for each type of caption */

$backgroundTransparency: 0.6;

.caption-background-true {
  //fallback
  background-color: #1e1e1e;
}

.homepage-video {
  .caption-background-true {
    background-color: rgba(#1e1e1e,  1 );
    @include respond-to('small'){
      background-color: transparent;
    }
  }
}

.caption-background-true {
  background-color: #1e1e1e;
  &.caption-transparency-true {
    background-color: rgba(#1e1e1e, $backgroundTransparency);
    @include respond-to('small'){
      background-color: transparent;
    }
  }
  @include respond-to('small'){
    background-color: transparent;
  }
}

a.highlight-false, input[type="button"].highlight-false,
a.highlight-true, input[type="button"].highlight-true,
a.continue-button {
  background-color: rgba(255,255,255,0);
  color: #ffffff;
  border: 1px solid #ffffff;
  transition: background-color 0.2s linear, color 0.2s linear;
  margin: 25px 0;

  &:hover {
    background-color: #ffffff;
    border-color: #ffffff;

    
      @if (lightness(#313131) > 50) {
        color: #333;
      } @else {
        color: #fff;
      }
    
  }

  @include respond-to('small'){
    color: #333333;
    border-color: #333333;
    background-color: transparent;
    &:hover {
      border-color: #333333;
      background-color: #333333;
      @if (lightness(#333333) > 50) {
        color: #333;
      } @else {
        color: #fff;
      }
    }
  }
}

a.highlight-true, input[type="button"].highlight-true {
  background-color: #ffffff;
  border-color: #ffffff;

  
    @if (lightness(#ffffff) > 50) {
      color: #333;
    } @else {
      color: #fff;
    }
  

  @include respond-to('small'){
    border-color: #333333;
    background-color: #333333;
    @if (lightness(#333333) > 50) {
      color: #333;
    } @else {
      color: #fff;
    }
  }
}

a.continue-button,
a.highlight-false--dark,
input[type="button"].highlight-false--dark {
  color: #333333;
  border-color: #333333;
  background-color: transparent;
  &:hover {
    border-color: #333333;
    background-color: #333333;
    @if (lightness(#333333) > 50) {
      color: #333;
    } @else {
      color: #fff;
    }
  }
}

.homepage-slideshow {
  .gallery-cell:not(:first-child) {
    height: 0;
  }
}

.homepage-slideshow.flickity-enabled {
  .gallery-cell:not(:first-child) {
    height: auto;
  }
}

.homepage-slideshow { 
 @include respond-to('max-width: 960px') {
  	min-height: 255px; 
 }
  
  @include respond-to('larger') {
    min-height: 300px; 
  }
}

.homepage-slideshow {
  a.highlight-false, input[type="button"].highlight-false,
  a.highlight-true, input[type="button"].highlight-true {
    &:hover {
      
        @if (lightness(#313131) > 50) {
          color: #333;
        } @else {
          color: #fff;
        }
      
    }
    @include respond-to('small'){
      color: #333333;
      border-color: #333333;
      background-color: transparent;
      &:hover {
        border-color: #333333;
        background-color: #333333;
        @if (lightness(#333333) > 50) {
          color: #333;
        } @else {
          color: #fff;
        }
      }
    }
  }

  a.highlight-true, input[type="button"].highlight-true {
    background-color: #313131;
    border-color: #313131;

    
      @if (lightness(#313131) > 50) {
          color: #333;
      } @else {
        color: #fff;
      }
    

    @include respond-to('small'){
      border-color: #333333;
      background-color: #333333;
      @if (lightness(#333333) > 50) {
        color: #333;
      } @else {
        color: #fff;
      }
    }
  }
}

// Contact Section
.contact-form_position--right {
  float: right;
}


/* #Account
================================================== */

.account-header-logout {
  text-align: right;
  text-transform: uppercase;
}

.account-sidebar {
  border-right: 1px solid #aaaaaa;
  box-sizing: border-box;
  padding-right: 10px;
  @include respond-to('medium'){
    border: 0;
    padding-right: 0;
  }
}

.customers-addresses {
  .account-sidebar {
    border-right: 0;
    padding-right: 0;
  }
  .account-main {
    box-sizing: border-box;
    border-left: 1px solid #aaaaaa;
    padding-left: 20px;
    @include respond-to('medium'){
      border: 0;
      padding-left: 0;
    }
  }
}

.action_bottom .note {
  vertical-align: middle;
  line-height: 40px;
}

.address_title {
  margin-bottom: 0;
  padding-bottom: 0;
}

.action_edit {
  background-color: #7f7900;
  border-color: #7f7900;
  a {
    color: #ffffff;
  }
  &:hover {
    background-color: #7f7900;
    border-color: #7f7900;
    a {
      color: #ffffff;
    }
  }
}

.action_delete {
  background-color: #ffffff;
  border-color: #7f7900;
  a {
    color: #7f7900;
  }
  &:hover {
    background-color: #7f7900;
    border-color: #7f7900;
    a {
      color: #ffffff;
    }
  }
}


/* #Home page - collection in detail
================================================== */

.collection-in-detail {
  .section {
    margin: 0;
  }
  .half {
    width: 50%;
    float: left;
    position: relative;
    @include respond-to('medium'){
      width: 100%;
    }
  }
  .product-details {
    padding: 40px 2rem;
  }

  .frontpage_product_stagger--true {
    .section:nth-child(even) .half {
      float: right;
    }
  }

  .product_gallery.multi-image {
    width: 100%;
    display: block;
    margin-bottom: 0;
  }
}

/* #Home page - text columns with images
================================================== */

.text-columns-with-images-section {
  .border-style--box {
    padding: 10%;
    border: 1px solid #aaaaaa;
  }
  .border-style--quote {
    padding-left: 20px;
    border-left: 1px solid #aaaaaa;
    margin-bottom: 10%;
  }
  .large_text {
    @include headline-style($font-size-column);
  }
  .text-column {
    margin-bottom: 25px;
  }
  a.continue-button {
    margin-top: 10px;
  }
  h2.title + .feature_divider {
    margin-bottom: 40px;
  }
}

/* OOTS Content Creator slideshow */
.flexslider {
  img {
    display: block;
    margin: 0 auto;
  }
}

/* #Home page - slideshow
================================================== */

.homepage-slideshow:hover .flickity-prev-next-button, .testimonial-section:hover .flickity-prev-next-button {
  opacity: 0.5;
}

.homepage-slideshow.text-animation--false .caption {
  opacity: 0;
  transition: opacity 0.3s linear;
}

.homepage-slideshow.text-animation--false.flickity-enabled .caption {
  opacity: 1;
}

.text-animation--true {
  .caption-content {
    opacity: 0;
    @include respond-to('small') {
      opacity: 1;
      animation-duration: 0s;
    }
  }
}

.homepage-slideshow, .testimonial-section {
  position: relative;
  overflow: hidden;
  &.single-image {
    .flickity-prev-next-button {
      display: none;
    }
    .flickity-page-dots {
      display: none;
    }
  }
  .gallery-cell {
    width: 100%;
    background-color: #666666;
    @include respond-to('small') {
      background-color: transparent;
    }
    img {
      width: 100%;
      display: block;
    }
  }
  .flickity-prev-next-button {
    opacity: 0;
    width: 5%;
    height: 100%;
    border-radius: 0;
  }
  .flickity-page-dots {
    bottom: 2em;
    .dot {
      height: 4px;
      width: 40px;
      margin: 0;
      border-radius: 0;
      background: #333333
    }
    @include respond-to('small'){
      display: block;
      bottom: 5px;
    }
  }
}



/* Home - product slider */

.js-product-slider {
  .product_clear {
    display: none;
  }
  .column.alpha, .columns.alpha {
    margin: 0 10px 0 20px;
  }
  .flickity-prev-next-button {
    border-radius: 0;
  }
}

/* #Home page - image with text
================================================== */

.featured_collections .featured-link--half a[href] img {
  box-shadow: #000 0em 0em 0em;
  transition: opacity 0.2s linear;
}

.featured_collections .featured-link--half:hover a[href] img.lazyloaded {
  opacity: 0.8;
}

.featured-link--section {
  width: 100%;
  box-sizing: border-box;
  float: left;
  min-height: 100px;
  @include flexbox();
  @include flex-wrap(wrap);
}


.featured-link--half.featured-link__imageHalf {
  background-color: transparent;
  text-align: center;
  a {
    width:100%;
    display: block;
    img {
      width: 100%;
    }
  }
}

.featured-link--half {
  box-sizing: border-box;
  float: left;
  width: 50%;
  position: relative;
  text-align: center;
  display: table;
  @include flex(1 0 auto);
  @include flexbox();
  @include align-items(center);
  @include justify-content(center);
  background-color: #ffffff;
  @include respond-to('small'){
    width: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
  .featured-link--wrap {
    width: 100%;
    height: 100%; /* Fix for SVG set at 2 images per row */
    @include flex(0 0 auto);
  }
  img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    @include respond-to('small'){
      width: 100%;
      max-width: auto;
    }
  }
  .info {
    display: inline-block;
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    &.text-align--right {
      text-align: right;
      .description:before {
        margin-right: 0;
      }
    }
    &.text-align--left {
      text-align: left;
      .description:before {
        margin-left: 0;
      }
    }
    @include respond-to('small'){
      position: static;
      transform: translateY(0);
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      padding: 2em 0;
    }
  }
  .collection_title {
    margin-bottom: 15px;
    display: block;
    color: set-text-color(#ffffff);
  }
  .description {
    position: relative;
    font-size: 1.3vw;
    line-height: 1.5;
    margin-bottom: 20px;
    color: set-text-color(#ffffff);
    @include respond-to('medium'){
     font-size: 2vw;
    }
    @include respond-to('small'){
     font-size: inherit;
    }
    @include respond-to('xlarge'){
      font-size: inherit;
    }
  }
  .button {
    height: auto;
    background-color: transparent;
    color: set-text-color(#ffffff);
    border: 1px solid set-text-color(#ffffff);
    transition: background-color 0.2s cubic-bezier(0.55, 0.09, 0.68, 0.53), color 0.3s linear, border 0.2s cubic-bezier(0.55, 0.09, 0.68, 0.53);
    line-height: 1.5;
    padding-top: 10px;
    padding-bottom: 10px;
    &:hover {
      background-color: set-text-color(#ffffff);
      color: #ffffff;
      border: 1px solid set-text-color(#ffffff);
    }
  }
}

.image-align--right.featured_collections.across-1 .featured-link--section:nth-child(odd) {
  @include flex-direction(row-reverse);
  .featured-link--half {
    float: right;
  }
}

.image-align--left.featured_collections.across-1 .featured-link--section:nth-child(even) {
  @include flex-direction(row-reverse);
  .featured-link--half {
    float: right;
  }
}

.featured_collections.across-2 {
  @include flexbox();
  @include flex-wrap(wrap);
}

.image-align--left.featured_collections.across-2 {
  .featured-link--section {
    @include flex-direction(row);
    @include respond-to('medium'){
      &:nth-of-type(2n){
        @include flex-direction(row-reverse);
      }
    }
  }
  .featured-link--image:nth-of-type(4n+3) {
    @include flex-direction(row-reverse);
    @include respond-to('medium'){
      @include flex-direction(row);
    }
  }
  .featured-link--image:nth-of-type(4n+4) {
    @include flex-direction(row-reverse);
  }
}

.image-align--right.featured_collections.across-2 {
  .featured-link--section {
    @include flex-direction(row-reverse);
    @include respond-to('medium'){
      &:nth-of-type(2n){
        @include flex-direction(row);
      }
    }
  }
  .featured-link--image:nth-of-type(4n+3) {
    @include flex-direction(row);
    @include respond-to('medium'){
      @include flex-direction(row-reverse);
    }
  }
  .featured-link--image:nth-of-type(4n+4) {
    @include flex-direction(row);
  }
}

.featured_collections.across-2 {
  .featured-link--section {
    width: 50%;
    @include respond-to('medium'){
      width: 100%;
    }
  }
  .featured-link--half {
    @include respond-to('medium'){
      width: 50%;
    }
    @include respond-to('small'){
      width: 100%;
    }
  }
  .description {
    font-size: 1.2vw;
    @include respond-to('medium'){
     font-size: inherit;
    }
  }
  .button {
    font-size: 1.2vw;
    @include respond-to('small'){
      font-size: 14px;
    }
  }
  .featured-link--image:nth-of-type(2n+1) {
    clear: both;
  }
  .featured-link--image:nth-of-type(2n+2) .featured-link--half {
    float: left;
    @include respond-to('medium'){
      float: right;
    }
  }
  .featured-link--image:nth-of-type(3n+3) .featured-link--half {
    float: right;
    @include respond-to('medium'){
      float: left;
    }
  }
  .featured-link--image:nth-of-type(4n+4) .featured-link--half {
    float: right;
  }
}

/* #Home page - featured products
================================================== */

.featured-products-section {
  .product_gallery {
    margin-bottom: 0;
    img {
      width: 100%;
      vertical-align: bottom;
    }
  }
}

/* #Home page - featured promotions
================================================== */

.featured-promotions {
  .promo-animation--true {
    opacity: 0;
  }
  .feature-section {
    text-align: center;
    float: left;
    margin: 0 10px 10px;
    position: relative;
    @include respond-to('medium'){
      opacity: 1;
    }
    .link-promo {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: block;
    }
    .feature-inner {
      display: block;
      position: relative;
      overflow: hidden;
    }
    .feature-style--circle {
      border-radius: 50%;
      img {
        border-radius: 50%;
      }
    }
    .feature-style--rounded {
      border-radius: 10px;
      img {
        border-radius: 10px;
      }
    }
    .feature-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      transition: background-color 0.25s linear;
      @include respond-to('medium'){
        
          @include background-opacity(#000, 0.5);
        
      }
    }
    .feature-wrap {
      @include vertical-alignment;
      position: absolute;
      width: 80%;
      margin: 0 auto;
      left: 0;
      right: 0;
      pointer-events: none;
    }
    .feature-details {
      display: none;
      opacity: 0;
      transition: opacity 0.3s linear;
      @include respond-to('medium'){
        opacity: 1;
        display: block !important;
      }
      &.reveal-details {
        opacity: 1;
      }
      .button {
        margin-top: 15px;
      }
    }
    .description {
      color: #fff;
      transition: all 0.3s linear;
      margin-bottom: 0;
    }
    .description a {
      pointer-events: auto;
    }
    &.title-overlay-true {
      .title {
        transition: all 0.3s linear;
        color: #fff;
        @include respond-to('medium'){
          margin-bottom: 10px;
        }
        &:after {
          content: '';
          display: block;
          height: 1px;
          width: 0;
          background: #fff;
          transition: width .5s ease, background-color .5s ease;
          margin: 10px auto auto auto;
          @include respond-to('medium'){
            display: none;
          }
        }
      }
    }
    &.title-overlay-false {
      .feature-wrap .title {
        display: none;
      }
    }
    &:hover .feature-overlay {
      @include background-opacity(#000, 0.5);
      @include respond-to('medium'){
        
      }
    }
    &.title-overlay-true:hover .title:after {
      width: 50%;
      background: #fff;
    }
    &.title-overlay-true:hover .title {
      color: #fff;
    }
    &.title-overlay-true:hover .description {
      color: #fff;
    }
    &.title-overlay-false:hover .description {
      color: #fff;
    }
    img {
      width: 100%;
      display: block;
      box-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
    }
  }
}

$i: 1;
$delay: 0;
@while $i < 13 {
  .promo-#{$i} {
    -webkit-animation-delay: $delay + s;
    animation-delay: $delay + s;
  }
  $i: $i + 1;
  $delay: $delay + 0.3;
}

.featured-promotions.promo-per-row-2 {
  .feature-section {
    width: calc(50% - 20px);
    @include respond-to('medium'){
      width: 100%;
      margin: 0 0 10px;
    }
    &:nth-child(2n+1){
      clear: both;
    }
  }
}

.featured-promotions.promo-per-row-3 {
  .feature-section {
    width: calc(33.3333% - 20px);
    @include respond-to('medium'){
      width: 100%;
      margin: 0 0 10px;
    }
    &:nth-child(3n+1){
      clear: both;
    }
  }
}

.featured-promotions.promo-per-row-4 {
  .feature-section {
    width: calc(25% - 20px);
    &:nth-child(4n+1){
      clear: both;
    }
    @include respond-to('medium'){
      width: calc(50% - 20px);
      &:nth-child(2n+1){
        clear: both;
      }
    }
    @include respond-to('small'){
      width: 100%;
      margin: 0 0 10px;
    }
  }
}

.container.promotions-grid-full_width {
  width: 100%;
  padding-top: 0;
  .featured-promotions.promo-per-row-2 {
    .feature-section {
      width: 50%;
      margin: 0;
      @include respond-to('small'){
        width: 100%;
      }
    }
  }
  .featured-promotions.promo-per-row-3 {
    .feature-section {
      width: 33.333333%;
      margin: 0;
      @include respond-to('medium'){
        width: 100%;
      }
    }
  }
  .featured-promotions.promo-per-row-4 {
    .feature-section {
      width: 25%;
      margin: 0;
      @include respond-to('medium'){
        width: 50%;
      }
      @include respond-to('small'){
        width: 100%;
      }
    }
  }
}


/* #Home page - image with text overlay
================================================== */

.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #666666;

  @include respond-to('small'){
    max-height: inherit;
    background-color: transparent;
  }
  img {
    width: 100%;
    display: block;
  }
}

/* #Home page - video
================================================== */

.homepage-video {
  position: relative;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
  background-color: #666666;
  @include respond-to('small'){
    background-color: transparent;
  }
  img {
    width: 100%;
    display: block;
  }
  iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
  }
  .homepage-video--media {
    width: 100%;
    height: auto;
    padding-top: 0;
  }
  .placeholder-image--true a.video__play-button {
    pointer-events: none;
  }
  .caption.text-on-video {
    z-index: 20;
    pointer-events: none;
  }
  @include respond-to('small'){
    .caption.text-on-video {
      position: absolute;
      transform: translateY(-50%);
      margin: 0;
      a.highlight-false {
        color: white;
        border-color: white;
      }
      .action_button:not(.video__play-button) {
        display: none;
      }
      .headline,
      .pretext,
      .subtitle {
        display: none;
      }
    }
  }
  .mediaWrapper {
    position: absolute !important;
    top: 0;
    left: 0;
    
  }
  .placeholder-svg--video,
  .homepage-video__placeholder,
   {
    display: none;
  }
}

.homepage-video__placeholder {
  position: relative;
}

.homepage-video.darken-video-true::after {
  content: '';
  display: block;
  background: rgba(0,0,0,0.3);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  pointer-events: none;
}

@include respond-to('min-width: 481px'){
  .caption.text-on-video.outside-homepage-video {
    display: none;
  }
}

/* #Page Banners
================================================== */

.page_banner {
  overflow: hidden;
  max-height: 100vh;
  
}

.caption.captionOverlay--true {
  max-width: 960px;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
  
    top: 50%;
  
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 3;
  .headline, .subtitle {
    color: #313131;
    
  }
  @include respond-to('medium'){
    top: 50%;
  }
}

.dark-overlay-true:after{
  content: '';
  position: absolute;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}


/* #Font-Face
================================================== */
/*  This is the proper syntax for an @font-face file.
    Upload your font files to Assets and then
    copy your FontName into code below and remove
    comment brackets */

/*  @font-face {
      font-family: 'FontName';
      src: url('FontName.eot');
      src: url('FontName.eot?iefix') format('eot'),
           url('FontName.woff') format('woff'),
           url('FontName.ttf') format('truetype'),
           url('FontName.svg#webfontZam02nTh') format('svg');
      font-weight: normal;
      font-style: normal; }
*/


/* #Custom Styles
================================================== */









/*.menu .sublink a.dropdown_link--vertical {
  position: relative;
  padding-left: 27px!important;
}
.menu .sublink:nth-child(1) a.dropdown_link--vertical:before {
  content: "";
  background-image:url(//www.kouboo.com/cdn/shop/t/152/assets/m1.png?v=157084065525861944951755274457);
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0;
  top: calc(50% - 11px);
  background-size: 100%;
}
.menu .sublink:nth-child(2) a.dropdown_link--vertical:before {
  content: "";
  background-image:url(//www.kouboo.com/cdn/shop/t/152/assets/lighting_icon.png?v=73374328010752545901755274457);
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0;
  top: calc(50% - 11px);
  background-size: 100%;
}
.menu .sublink:nth-child(3) a.dropdown_link--vertical:before {
  content: "";
  background-image:url(//www.kouboo.com/cdn/shop/t/152/assets/decorative_icon.png?v=97861905168065100691755274457);
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0;
  top: calc(50% - 11px);
  background-size: 100%;
}
.menu .sublink:nth-child(4) a.dropdown_link--vertical:before {
  content: "";
  background-image:url(//www.kouboo.com/cdn/shop/t/152/assets/bath_icon.png?v=160050652053606914711755274457);
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0;
  top: calc(50% - 11px);
  background-size: 100%;
}
.menu .sublink:nth-child(5) a.dropdown_link--vertical:before {
  content: "";
  background-image:url(//www.kouboo.com/cdn/shop/t/152/assets/woven_basket_icon.png?v=44905102248743625591755274457);
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0;
  top: calc(50% - 11px);
  background-size: 100%;
}
.menu .sublink:nth-child(6) a.dropdown_link--vertical:before {
  content: "";
  background-image:url(//www.kouboo.com/cdn/shop/t/152/assets/rattan_icon.png?v=57088536867779070781755274457);
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0;
  top: calc(50% - 11px);
  background-size: 100%;
}*/


.on-logo-href::before {
  background-image: url(//www.kouboo.com/cdn/shop/t/152/assets/logoBg.png?v=165358611492860074921755274457);
}
.pro-details-Free .jdgm-widget {
    color: #000;
    text-align: right;
}
.coll-card-review-stars {
	width:100%;
  	height:22px;
  	overflow:hidden;
}




.introduction-section {
  position: relative;
  width: 100%;
  height: 590px;

  @include respond-to('medium') {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0 23px;
  }

  img {
    position: absolute;
    width: 100%;

    @include respond-to('medium') {
      position: initial;
      width: 100%;
    }
  }
  .slider-textarea {
    position: absolute;
    background: #FAF8F3;
    width: 50%;
    top: 50%;
    margin-top: -150px;
    padding: 24px 25px 24px 89px;

    @include respond-to('medium') {
      background: #FAF8F3;
      width: 100%;
      top: 0;
      padding: 10px;
      position: initial;
      margin-top: -6px;
    }

    @include respond-to('large') {
      margin-top: -170px;
    }
  }
}
.slider-textarea {
  h1 {
    line-height: 44px;
    letter-spacing: 1.5px;
    font-weight: 500;

    @include respond-to('medium') {
      font-size: 22px;
      line-height: 44px;
      letter-spacing: 1.5px;
      font-weight: 500;
    }

    @include respond-to('large') {
      font-size: 22px;
    }
    
    @include respond-to('xlarge') {
   	  font-size: 40px; 
    }
  }
  .description {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    padding-bottom: 25px;
    color: #313131;

    @include respond-to('medium') {
      font-size: 14px;
      line-height: 21px;
      font-weight: 400;
      padding-bottom: 25px;
      color: #313131;
    }

    @include respond-to('large') {
      font-size: 14px;
    }
    
    @include respond-to('xlarge') {
      font-size: 18px;
    }
  }
  .button-view {
    font-family: Jost;
    font-size: 24px;
    font-weight: 500;
    line-height: 28.8px;
    letter-spacing: 1.5%;

    @include respond-to('medium') {
      font-size: 18px;
      font-weight: 500;
      line-height: 24.8px;
      letter-spacing: 1.5%;
    }

    @include respond-to('large') {
      font-size: 18px;
    }
    
    @include respond-to('xlarge') {
      font-size: 24px;
    }
  }
}
.section-one {
  margin-top: 50px;
  text-align: center;
  font-size: 24px;
  line-height: 38.4px;

  @include respond-to('medium') {
    margin-top: 50px;
    text-align: center;
    font-size: 24px;
    line-height: 38.4px;
    padding: 0 18px;
  }
}
.section-four {
  margin-top: 50px;
  text-align: center;
  font-size: 24px;
  line-height: 38.4px;

  @include respond-to('medium') {
    margin-top: 50px;
    text-align: center;
    font-size: 24px;
    line-height: 38.4px;
    padding: 0 18px;
  }
}
.section-two {
  margin-top: 30px;
  .collection-list {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    >div {
      max-width: 380px;
      margin-top: 40px;
    }
    .image-section {
      position: relative;
      overflow: hidden;
      height: 285px;
    }
  }
}
.wicker-furniture-background-image {
  position: absolute;
  z-index: 1;

  @include respond-to('medium') {
    min-height: 285px;
  }
}
.wicker-furniture-product-name {
  position: absolute;
  background: #EDEDED;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 33px;
  letter-spacing: 2px;
  padding: 15px;
  bottom: 17px;
  z-index: 2;
}
.wicker-furniture-product-description {
  padding-top: 10px;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 25px;
}
.wicker-furniture-product-shop-now-section {
  text-align: center;
}
.wicker-furniture-product-shop-now {
  font-family: Jost;
  background: #422810;
  font-weight: 700;
  font-size: 16px;
  line-height: 19.2px;
  letter-spacing: 1.5px;
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 3px;
  &:hover {
    background: #000;
    color: #fff;
  }
}
.section-five {
  .section-title {
    font-family: Jost;
    font-size: 24px;
    font-weight: 500;
    line-height: 28.8px;
    letter-spacing: 1.5%;
    text-align: center;

    @include respond-to('medium') {
      padding: 0 30px;
    }
  }
  .wicker-list {
    margin-top: 40px;
  }
  margin-top: 70px;
}
.wicker-list {
  >div {
    margin-bottom: 80px;
    position: relative;
    
    img {
      position: absolute;
      
      @include respond-to('medium') {
       position: relative;
      }
    }

    @include respond-to('medium') {
      margin-bottom: 20px;
    }

    .description-section {
      background: #fff;
      padding: 25px 20px;
      position: relative;
      top: 65px;
      margin-left: 35%;

      @include respond-to('medium') {
        background: transparent;
        padding: 25px 20px;
        position: initial;
        margin-left: 0;
      }
    }
  }
  &:after {
    content: "";
    display: table;
    clear: both;
  }
  .wicker-title {
    font-family: Jost;
    background: #BEB800;
    color: #313131;
    padding: 10px;
    font-size: 20px;
    line-height: 24px;
    display: inline-block;
  }
  .description {
    padding-top: 20px;
    p {
      font-size: 13px;
      line-height: 24px;
      color: #422810;
      margin-bottom: 0;
    }
  }
}
.section-three {
  margin-top: 94px;
}
@media only screen and (max-width: 798px) {
  .promo_banner .promo_banner__content {
      max-height: unset;
  }
}
.sidebar button.menu-toggle.active {
    transform: rotateX(180deg);
}
.sidebar button.menu-toggle {
    min-height: unset;
    height: unset;
    float: right;
    background-color:transparent;
    display: inline-block;
    cursor: pointer;
    padding: 0px;
    margin-right: 0;
    transition: transform .3s linear;
    perspective: 1000;
    transform: none;
}
.sidebar button.menu-toggle:hover {
    border:0px;
}
.easytabs-content-holder img {
  width: 100%;
  height: auto;
}
.sticky-button {
  display: block;
/*   position: fixed; */
  top: 84.58px;
  left: 0;
  z-index: 100;
  width: 100%;
}

.purchase-details__container {
  display: flex;
}

.container .twelve.columns .section.clearfix {
  margin: 0px;
}

.sidebar.columns.category-sidebar__wrapper {
  display: flex;
  flex-direction: column-reverse;
}

.read-more-btn {
  cursor: pointer;
  display: none;
  text-decoration: underline;
}

@media only screen and (max-width: 798px) {
  .desc {
    height: 4.5em; /* Adjust this value based on your line-height and font-size */
    overflow: hidden;
    position: relative;
  }

  .desc::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5em; /* This value should be roughly the height of a single line of text */
    background: linear-gradient(transparent, #fafafa); /* This creates the fading effect */
    pointer-events: none; /* This makes sure the pseudo-element doesn't interfere with click events */
  }

  .desc.expanded::after {
    display: none;
  }

  .desc.expanded {
    p {
      margin: 0px;
    }
  }

  .read-more-btn {
    cursor: pointer;
    display: block;
    text-decoration: underline;
  }

  .sidebar.columns.category-sidebar__wrapper {
    flex-direction: column;
  }
}

.search-template-section .container {
  padding: 0px;
}

.search-template-section .container > .clearfix {
  display: none;
}

.search-template-section .container {
  .search_page {
    opacity: 1;
  }
}

.snize-instant-widget-is-open {
  .search-template-section .container {
    .search_page {
      opacity: 0;
    }
  }
}

.sort_by_title {
  font-family: Jost, sans-serif;
}

@media screen and (min-width: 960px) and (max-width: 1199px) {
  .on-filter-content.columns {
    margin-left: 0px;
  }
}

@media screen and (max-width: 798px) {
  .on-filter-content {
    padding-right: 0px;
  }

  .sort_by_section {
    display: flex;
    gap: 8px;
    align-items: center;

    .sort_by {
      flex: 1;
    }
  }
}

.article .blog-post-section,
.blog .blog-section {
  .container.content {
    max-width: unset;
  }
}

#cart_form .cart_subtotal {
  margin-bottom: 0;
}

#cart_form .shipping_text {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: larger;
  gap: 12px;

  span:last-child {
    text-align: right;
  }
}

#cart_form .cart_subtotal {
  margin-bottom: 0;
}

#cart_form .shipping_text {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: larger;
  gap: 12px;

  span:last-child {
    text-align: right;
  }
}

.page-b2b-landing {
  #shopify-section-featured-social {
    display: none;
  }

  #shopify-section-featured-blog {
    display: none;
  }
}
header .header {
  height:234px;
  overflow:hidden;
}
.Avada-CookiesFull_bar {
  z-index:99999999999999999999999999999!important;
}