/******************************************************************
Theme Name: Turbo "6.0.7"
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
==================================================
#Variables
#Mixins
#Functions
#Reset
#Basic Styles
#Typography
#Links
#Lists
#Menu
#Images
#Placeholders
#Videos
#Buttons
#Tabs
#Accordions
#Forms
#Contact Form
#Newsletter
#Tables
#Misc
#Testimonials
#FAQ Template
#Team Template
#Logo-list
#Gallery Section
#Recently Viewed
#Search autocomplete
#Search page
#Search Section
#Site Styles
#Header
#Currency / Language switcher
#Swatch Styles
#Plyr
#Flickity
#Layout
#Password Page
#Account
#Policy pages
#Page Details
#Product Media
#Product Details
#Product Recommendations
#Home page - general
#Home page - slideshow
#Home page - image with text
#Home page - Rich text and image
#Home page - featured promotions
#Home page - featured collection
#Home page - image with text overlay
#Home page - video
#Home page - Text column with images
#Font-Face
#Custom Styles */

/* #Variables
================================================== */

$font-size-header: 32;
$font-size-column: 41.6;

$site-width: 1200px;
$gutter: 20px;

$grid-small: 480px;
$grid-medium: 798px;
$grid-large: 1024px;
$grid-widescreen: 1400px;

$small: 'small';
$small-down: 'small-down';
$small-up: 'small-up';
$medium: 'medium';
$medium-down: 'medium-down';
$medium-up: 'medium-up';
$large: 'large';
$large-down: 'large-down';
$large-up: 'large-up';
$widescreen-up: 'widescreen-up';
$widescreen-down: 'widescreen-down';
$tablet: 'tablet';

// The `$breakpoints` list is used to build our media queries.
// You can use these in the media-query mixin.
$breakpoints: (
  $small-down '(max-width: #{$grid-small})',
  $small '(min-width: #{$grid-small + 1}) and (max-width: #{$grid-medium})',
  $small-up '(min-width: #{$grid-small + 1})',
  $medium-down '(max-width: #{$grid-medium})',
  $medium '(min-width: #{$grid-medium + 1}) and (max-width: #{$grid-large})',
  $medium-up '(min-width: #{$grid-medium + 1})',
  $large-down '(max-width: #{$grid-large})',
  $large '(min-width: #{$grid-large + 1}) and (max-width: #{$grid-widescreen})',
  $large-up '(min-width: #{$grid-large + 1})',
  $widescreen-down '(max-width: #{$grid-widescreen})',
  $widescreen-up '(min-width: #{$grid-widescreen + 1})',
  $tablet '(min-width: 768px) and (max-width: 1366px) and (hover: none)'
);

// Tables

$table-background-color: #f9f9f9;
$table-border-color: #dcdcdc;

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

// Clearfix for parents with floated children
@mixin clearfix() {
  &::after {
    content: '';
    display: table;
    clear: both;
  }
  *zoom: 1;
}

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

// Media query mixin
@mixin respond-to($media-query) {
  $breakpoint-found: false;

  @each $breakpoint in $breakpoints {
    $name: nth($breakpoint, 1);
    $declaration: nth($breakpoint, 2);

    @if $media-query == $name and $declaration {
      $breakpoint-found: true;

      @media only screen and #{$declaration} {
        @content;
      }
    }
  }

  @if $breakpoint-found == false {
    @warn 'Breakpoint "#{$media-query}" does not exist';
  }
}

// Responsive Show/Hide Helper
@mixin responsive-display-helper($breakpoint: '') {
  .#{$breakpoint}show {
    display: block !important;
  }

  .#{$breakpoint}hide {
    display: none !important;
  }
}

// Responsive Text Alignment Helper
@mixin responsive-text-align-helper($breakpoint: '') {
  .#{$breakpoint}text-left {
    text-align: left !important;
  }

  .#{$breakpoint}text-right {
    text-align: right !important;
  }

  .#{$breakpoint}text-center {
    text-align: center !important;
  }
}

/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
   or object-fit and object-position:
  @include object-fit(cover, top);
*/
@mixin object-fit($fit: fill, $position: null){
  -o-object-fit: $fit;
     object-fit: $fit;
  @if $position {
    -o-object-position: $position;
       object-position: $position;
    font-family: 'object-fit: #{$fit}; object-position: #{$position}';
  } @else {
    font-family: 'object-fit: #{$fit}';
  }
}

/*
  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: Oswald, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: $font-size * 1px;
  text-transform: uppercase;
  line-height: 1.5;
  color: #6b6b6b;
  display: block;
  letter-spacing: 0px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

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

@mixin table-with-borders {
  width: 100%;

  th {
    background: #F9F9F9;
  }

  th,
  td {
    padding: 4px;
    border-right: 1px solid #DCDCDC;
  }

  th:first-child,
  td:first-child {
    border-left: 1px solid #DCDCDC
  }

  tr {
    border-bottom: 1px solid #DCDCDC;
  }

  tr:first-child {
    border-top: 1px solid #DCDCDC;
  }

  .em {
    font-weight: 700;
  }
}

// Overflow wrap
// normal | anywhere | break-word
@mixin overflow-wrap($value) {
  overflow-wrap: $value;
}

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

@function secondary-button-color($color) {
  @if (lightness($color) > 80) {
    @return #000000; // 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; }

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
  @include respond-to('medium-down') {
    display: none;
  }
}

/* #Fonts
================================================== */@font-face {
  font-family: Roboto;
  font-weight: 400;
  font-style: normal;
  src: url("//alpinefoxshop.ch/cdn/fonts/roboto/roboto_n4.2019d890f07b1852f56ce63ba45b2db45d852cba.woff2?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=df9f53f6b628df3ea7044774f2a95a48bfcd197a8661f24a3fc9ffacd17115ea") format("woff2"),
       url("//alpinefoxshop.ch/cdn/fonts/roboto/roboto_n4.238690e0007583582327135619c5f7971652fa9d.woff?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=cddfaac09466364ff5b8adf18bb7c5fe58e7afdbe0d6121e8443466ca1f2c202") format("woff");
}


  @font-face {
  font-family: Roboto;
  font-weight: 700;
  font-style: normal;
  src: url("//alpinefoxshop.ch/cdn/fonts/roboto/roboto_n7.f38007a10afbbde8976c4056bfe890710d51dec2.woff2?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=e660dda0708b8c6bd9fa8de448fd5eb8a47904f1d21ea0e51bdb64a182d42473") format("woff2"),
       url("//alpinefoxshop.ch/cdn/fonts/roboto/roboto_n7.94bfdd3e80c7be00e128703d245c207769d763f9.woff?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=4854b1ef8c0a6218a48176c3fce4766663d3b50d67b0fd54647531c8075259dd") format("woff");
}


  @font-face {
  font-family: Roboto;
  font-weight: 400;
  font-style: italic;
  src: url("//alpinefoxshop.ch/cdn/fonts/roboto/roboto_i4.57ce898ccda22ee84f49e6b57ae302250655e2d4.woff2?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=8c00af534ace2b77966f462e365bf4fbac37c67dc76e47973986b2b46a8f5254") format("woff2"),
       url("//alpinefoxshop.ch/cdn/fonts/roboto/roboto_i4.b21f3bd061cbcb83b824ae8c7671a82587b264bf.woff?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=b689a7c5b7f28d77518e86c636c1e76fa2e9c3eac0064db29de64872e93b2958") format("woff");
}


  @font-face {
  font-family: Roboto;
  font-weight: 700;
  font-style: italic;
  src: url("//alpinefoxshop.ch/cdn/fonts/roboto/roboto_i7.7ccaf9410746f2c53340607c42c43f90a9005937.woff2?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=c470e13f8d19b6fe942d67491cfafa42ecf4a2160629fa5362e542e369651eae") format("woff2"),
       url("//alpinefoxshop.ch/cdn/fonts/roboto/roboto_i7.49ec21cdd7148292bffea74c62c0df6e93551516.woff?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=6bf4bed8db60cd67317983e0730494c7697b91f16cf4d48fbb975e85adc914d8") format("woff");
}


  @font-face {
  font-family: Oswald;
  font-weight: 400;
  font-style: normal;
  src: url("//alpinefoxshop.ch/cdn/fonts/oswald/oswald_n4.7760ed7a63e536050f64bb0607ff70ce07a480bd.woff2?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=97702143e687fb8af536a44c3a8d2e1760aa4cd0094d09a5f913b8b85604acb6") format("woff2"),
       url("//alpinefoxshop.ch/cdn/fonts/oswald/oswald_n4.ae5e497f60fc686568afe76e9ff1872693c533e9.woff?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=bb211731f6cdc228b18990eab7441fa2e5490b1e89243943f2643c827a65ce1d") format("woff");
}


  @font-face {
  font-family: Oswald;
  font-weight: 700;
  font-style: normal;
  src: url("//alpinefoxshop.ch/cdn/fonts/oswald/oswald_n7.b3ba3d6f1b341d51018e3cfba146932b55221727.woff2?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=b98c21af1753e8f4e131fc628d918416704dfbd355dfe5e37241253b927eaff5") format("woff2"),
       url("//alpinefoxshop.ch/cdn/fonts/oswald/oswald_n7.6cec6bed2bb070310ad90e19ea7a56b65fd83c0b.woff?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=47162e29c9a9b612cdc46896c20a208691e569c86d6138ce62f3a3cb4c83c69a") format("woff");
}


  

  

  @font-face {
  font-family: Oswald;
  font-weight: 300;
  font-style: normal;
  src: url("//alpinefoxshop.ch/cdn/fonts/oswald/oswald_n3.5e1367501ca69370d84b28bb3e29485e5178d388.woff2?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=9696fc2ca96508b9e1332e5d3f036e02e376ea292cb458b04917ce0102a728c5") format("woff2"),
       url("//alpinefoxshop.ch/cdn/fonts/oswald/oswald_n3.cfa18f7353e13af9f0069f6d616bed3d258993d6.woff?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=3ed7d8291cb79040467a0a6edcb777ba211438e2feda9e6af9ce61a66050122a") format("woff");
}


  @font-face {
  font-family: Oswald;
  font-weight: 400;
  font-style: normal;
  src: url("//alpinefoxshop.ch/cdn/fonts/oswald/oswald_n4.7760ed7a63e536050f64bb0607ff70ce07a480bd.woff2?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=97702143e687fb8af536a44c3a8d2e1760aa4cd0094d09a5f913b8b85604acb6") format("woff2"),
       url("//alpinefoxshop.ch/cdn/fonts/oswald/oswald_n4.ae5e497f60fc686568afe76e9ff1872693c533e9.woff?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=bb211731f6cdc228b18990eab7441fa2e5490b1e89243943f2643c827a65ce1d") format("woff");
}


  

  

  @font-face {
  font-family: Oswald;
  font-weight: 400;
  font-style: normal;
  src: url("//alpinefoxshop.ch/cdn/fonts/oswald/oswald_n4.7760ed7a63e536050f64bb0607ff70ce07a480bd.woff2?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=97702143e687fb8af536a44c3a8d2e1760aa4cd0094d09a5f913b8b85604acb6") format("woff2"),
       url("//alpinefoxshop.ch/cdn/fonts/oswald/oswald_n4.ae5e497f60fc686568afe76e9ff1872693c533e9.woff?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=bb211731f6cdc228b18990eab7441fa2e5490b1e89243943f2643c827a65ce1d") format("woff");
}


  @font-face {
  font-family: Oswald;
  font-weight: 700;
  font-style: normal;
  src: url("//alpinefoxshop.ch/cdn/fonts/oswald/oswald_n7.b3ba3d6f1b341d51018e3cfba146932b55221727.woff2?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=b98c21af1753e8f4e131fc628d918416704dfbd355dfe5e37241253b927eaff5") format("woff2"),
       url("//alpinefoxshop.ch/cdn/fonts/oswald/oswald_n7.6cec6bed2bb070310ad90e19ea7a56b65fd83c0b.woff?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=47162e29c9a9b612cdc46896c20a208691e569c86d6138ce62f3a3cb4c83c69a") format("woff");
}


  

  

  @font-face {
  font-family: Oswald;
  font-weight: 200;
  font-style: normal;
  src: url("//alpinefoxshop.ch/cdn/fonts/oswald/oswald_n2.14ca1553c4d858b47dc9f36522250cf755cb3776.woff2?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=b6172902ce8ea80e156464c528650cfab65df230ee7cd0513e952b50a02075cc") format("woff2"),
       url("//alpinefoxshop.ch/cdn/fonts/oswald/oswald_n2.ff416699c1319d2cac083dbc80a6e345193c85fc.woff?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=4472a78d23e64f1d5c95e625a1210cd78cf3604f361d3ed1beb68d597d193702") format("woff");
}


  

  @font-face {
  font-family: Oswald;
  font-weight: 300;
  font-style: normal;
  src: url("//alpinefoxshop.ch/cdn/fonts/oswald/oswald_n3.5e1367501ca69370d84b28bb3e29485e5178d388.woff2?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=9696fc2ca96508b9e1332e5d3f036e02e376ea292cb458b04917ce0102a728c5") format("woff2"),
       url("//alpinefoxshop.ch/cdn/fonts/oswald/oswald_n3.cfa18f7353e13af9f0069f6d616bed3d258993d6.woff?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=3ed7d8291cb79040467a0a6edcb777ba211438e2feda9e6af9ce61a66050122a") format("woff");
}


  @font-face {
  font-family: Oswald;
  font-weight: 400;
  font-style: normal;
  src: url("//alpinefoxshop.ch/cdn/fonts/oswald/oswald_n4.7760ed7a63e536050f64bb0607ff70ce07a480bd.woff2?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=97702143e687fb8af536a44c3a8d2e1760aa4cd0094d09a5f913b8b85604acb6") format("woff2"),
       url("//alpinefoxshop.ch/cdn/fonts/oswald/oswald_n4.ae5e497f60fc686568afe76e9ff1872693c533e9.woff?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=bb211731f6cdc228b18990eab7441fa2e5490b1e89243943f2643c827a65ce1d") format("woff");
}


  

  

  @font-face {
  font-family: Roboto;
  font-weight: 300;
  font-style: normal;
  src: url("//alpinefoxshop.ch/cdn/fonts/roboto/roboto_n3.9ac06d5955eb603264929711f38e40623ddc14db.woff2?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=7368235e9bb2f1c4772b4108ff94c4faaef30926e9a136fe476736ab2ea458e5") format("woff2"),
       url("//alpinefoxshop.ch/cdn/fonts/roboto/roboto_n3.797df4bf78042ba6106158fcf6a8d0e116fbfdae.woff?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=8b36c86cb52f45eec6d1f0b0857f2a54d777efe7bf1bb96b3bbeec69913ea9d2") format("woff");
}


  @font-face {
  font-family: Roboto;
  font-weight: 400;
  font-style: normal;
  src: url("//alpinefoxshop.ch/cdn/fonts/roboto/roboto_n4.2019d890f07b1852f56ce63ba45b2db45d852cba.woff2?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=df9f53f6b628df3ea7044774f2a95a48bfcd197a8661f24a3fc9ffacd17115ea") format("woff2"),
       url("//alpinefoxshop.ch/cdn/fonts/roboto/roboto_n4.238690e0007583582327135619c5f7971652fa9d.woff?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=cddfaac09466364ff5b8adf18bb7c5fe58e7afdbe0d6121e8443466ca1f2c202") format("woff");
}


  @font-face {
  font-family: Roboto;
  font-weight: 300;
  font-style: italic;
  src: url("//alpinefoxshop.ch/cdn/fonts/roboto/roboto_i3.7ba64865c0576ce320cbaa5e1e04a91d9daa2d3a.woff2?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=6305321a5234421a3abaf43faa91a7297db96e1f14eaf1fd003af358e880d8ee") format("woff2"),
       url("//alpinefoxshop.ch/cdn/fonts/roboto/roboto_i3.d974836b0cbb56a5fb4f6622c83b31968fe4c5d0.woff?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=d65f545fd1eb1170b6d58ecd1e7b8ea9a0955275a927444e69720a0126697733") format("woff");
}


  @font-face {
  font-family: Roboto;
  font-weight: 400;
  font-style: italic;
  src: url("//alpinefoxshop.ch/cdn/fonts/roboto/roboto_i4.57ce898ccda22ee84f49e6b57ae302250655e2d4.woff2?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=8c00af534ace2b77966f462e365bf4fbac37c67dc76e47973986b2b46a8f5254") format("woff2"),
       url("//alpinefoxshop.ch/cdn/fonts/roboto/roboto_i4.b21f3bd061cbcb83b824ae8c7671a82587b264bf.woff?h1=YWxwaW5lZm94c2hvcC5jaA&h2=YWxwaW5lZm94c2hvcC5hY2NvdW50Lm15c2hvcGlmeS5jb20&hmac=b689a7c5b7f28d77518e86c636c1e76fa2e9c3eac0064db29de64872e93b2958") format("woff");
}


/* #Basic Styles
================================================== */
body {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  text-transform: none;
  color: #000000;
  line-height: 1.6em;
  overflow: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  background-color: #ffffff;
  
  @include overflow-wrap(anywhere);
}

body.blocked-scroll {
  position: absolute;
  overflow: hidden;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

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



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



img[data-sizes="auto"].lazyloaded {
  height: auto;
}

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

.image-element__wrap {
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.image-element__wrap img {
  height: auto;
}

/*============================================================================
  Grid - full width columns, no gutter
    - Based on CSS Wizardry grid
==============================================================================*/

.grid {
  @include clearfix();
  list-style: none;
  margin: 0;
  padding: 0;
}

.grid__item {
  float: left;
  width: 100%;

  &[class*='--push'] {
    position: relative;
  }
}

/*============================================================================
  Reversed grids allow you to structure your source in the opposite
  order to how your rendered layout will appear.
==============================================================================*/

.grid--rev {
  direction: rtl;
  text-align: left;

  > .grid__item {
    direction: ltr;
    text-align: left;
    float: right;
  }
}

@mixin container-column-generator($breakpoint: '') {

    /* Base Grid */
    .#{$breakpoint}one                      { width: calc(#{percentage(1 / 16)} - #{$gutter});}
    .#{$breakpoint}two                     { width: calc(#{percentage(2 / 16)} - #{$gutter});}
    .#{$breakpoint}three                   { width: calc(#{percentage(3 / 16)} - #{$gutter});}
    .#{$breakpoint}four                    { width: calc(#{percentage(4 / 16)} - #{$gutter});}
    .#{$breakpoint}five                    { width: calc(#{percentage(5 / 16)} - #{$gutter});}
    .#{$breakpoint}six                     { width: calc(#{percentage(6 / 16)} - #{$gutter});}
    .#{$breakpoint}seven                   { width: calc(#{percentage(7 / 16)} - #{$gutter});}
    .#{$breakpoint}eight                   { width: calc(#{percentage(8 / 16)} - #{$gutter});}
    .#{$breakpoint}nine                    { width: calc(#{percentage(9 / 16)} - #{$gutter});}
    .#{$breakpoint}ten                     { width: calc(#{percentage(10 / 16)} - #{$gutter});}
    .#{$breakpoint}eleven                  { width: calc(#{percentage(11 / 16)} - #{$gutter});}
    .#{$breakpoint}twelve                  { width: calc(#{percentage(12 / 16)} - #{$gutter});}
    .#{$breakpoint}thirteen                { width: calc(#{percentage(13 / 16)} - #{$gutter});}
    .#{$breakpoint}fourteen                { width: calc(#{percentage(14 / 16)} - #{$gutter});}
    .#{$breakpoint}fifteen                 { width: calc(#{percentage(15 / 16)} - #{$gutter});}
    .#{$breakpoint}sixteen                 { width: calc(#{percentage(16 / 16)} - #{$gutter});}

    /** Whole */
    .#{$breakpoint}one-whole {
      width: calc(100% - #{$gutter});
      left: auto !important; //prevents offset-by from causing issues on breakpoints
    }

    /* Halves */
    .#{$breakpoint}one-half { width: calc(#{percentage(1 / 2)} - #{$gutter}); }

    /* Thirds */
    .#{$breakpoint}one-third { width: calc(#{percentage(1 / 3)} - #{$gutter}); }
    .#{$breakpoint}two-thirds { width: calc(#{percentage(2 / 3)} - #{$gutter}); }

    /* Fourths */
    .#{$breakpoint}one-fourth { width: calc(#{percentage(1 / 4)} - #{$gutter}); }
    .#{$breakpoint}two-fourths { width: calc(#{percentage(2 / 4)} - #{$gutter}); }
    .#{$breakpoint}three-fourths { width: calc(#{percentage(3 / 4)} - #{$gutter}); }

    /* Fifths */
    .#{$breakpoint}one-fifth { width: calc(#{percentage(1 / 5)} - #{$gutter}); }
    .#{$breakpoint}two-fifths { width: calc(#{percentage(2 / 5)} - #{$gutter}); }
    .#{$breakpoint}three-fifths { width: calc(#{percentage(3 / 5)} - #{$gutter}); }
    .#{$breakpoint}four-fifths { width: calc(#{percentage(4 / 5)} - #{$gutter}); }

    /* Sixths */
    .#{$breakpoint}one-sixth { width: calc(#{percentage(1 / 6)} - #{$gutter}); }
    .#{$breakpoint}two-sixths { width: calc(#{percentage(2 / 6)} - #{$gutter}); }
    .#{$breakpoint}three-sixths { width: calc(#{percentage(3 / 6)} - #{$gutter}); }
    .#{$breakpoint}four-sixths { width: calc(#{percentage(4 / 6)} - #{$gutter}); }
    .#{$breakpoint}five-sixths { width: calc(#{percentage(5 / 6)} - #{$gutter}); }

    /* Sevenths */
    .#{$breakpoint}one-seventh { width: calc(#{percentage(1 / 7)} - #{$gutter}); }
    .#{$breakpoint}two-sevenths { width: calc(#{percentage(2 / 7)} - #{$gutter}); }
    .#{$breakpoint}three-sevenths { width: calc(#{percentage(3 / 7)} - #{$gutter}); }
    .#{$breakpoint}four-sevenths { width: calc(#{percentage(4 / 7)} - #{$gutter}); }
    .#{$breakpoint}five-sevenths { width: calc(#{percentage(5 / 7)} - #{$gutter}); }

    /* Eighths */
    .#{$breakpoint}one-eighth { width: calc(#{percentage(1 / 8)} - #{$gutter}); }
    .#{$breakpoint}two-eighths { width: calc(#{percentage(2 / 8)} - #{$gutter}); }
    .#{$breakpoint}three-eighths { width: calc(#{percentage(3 / 8)} - #{$gutter}); }
    .#{$breakpoint}four-eighths { width: calc(#{percentage(4 / 8)} - #{$gutter}); }
    .#{$breakpoint}five-eighths { width: calc(#{percentage(5 / 8)} - #{$gutter}); }
    .#{$breakpoint}six-eighths { width: calc(#{percentage(6 / 8)} - #{$gutter}); }
    .#{$breakpoint}seven-eighths { width: calc(#{percentage(7 / 8)} - #{$gutter}); }

    /* Tenths */
    .#{$breakpoint}one-tenth { width: calc(#{percentage(1 / 10)} - #{$gutter}); }
    .#{$breakpoint}two-tenths { width: calc(#{percentage(2 / 10)} - #{$gutter}); }
    .#{$breakpoint}three-tenths { width: calc(#{percentage(3 / 10)} - #{$gutter}); }
    .#{$breakpoint}four-tenths { width: calc(#{percentage(4 / 10)} - #{$gutter}); }
    .#{$breakpoint}five-tenths { width: calc(#{percentage(5 / 10)} - #{$gutter}); }
    .#{$breakpoint}six-tenths { width: calc(#{percentage(6 / 10)} - #{$gutter}); }
    .#{$breakpoint}seven-tenths { width: calc(#{percentage(7 / 10)} - #{$gutter}); }
    .#{$breakpoint}eight-tenths { width: calc(#{percentage(8 / 10)} - #{$gutter}); }
    .#{$breakpoint}nine-tenths { width: calc(#{percentage(9 / 10)} - #{$gutter}); }

    /* Twelfths */
    .#{$breakpoint}one-twelfth { width: calc(#{percentage(1 / 12)} - #{$gutter}); }
    .#{$breakpoint}two-twelfths { width: calc(#{percentage(2 / 12)} - #{$gutter}); }
    .#{$breakpoint}three-twelfths { width: calc(#{percentage(3 / 12)} - #{$gutter}); }
    .#{$breakpoint}four-twelfths { width: calc(#{percentage(4 / 12)} - #{$gutter}); }
    .#{$breakpoint}five-twelfths { width: calc(#{percentage(5 / 12)} - #{$gutter}); }
    .#{$breakpoint}six-twelfths { width: calc(#{percentage(6 / 12)} - #{$gutter}); }
    .#{$breakpoint}seven-twelfths { width: calc(#{percentage(7 / 12)} - #{$gutter}); }
    .#{$breakpoint}eight-twelfths { width: calc(#{percentage(8 / 12)} - #{$gutter}); }
    .#{$breakpoint}nine-twelfths { width: calc(#{percentage(9 / 12)} - #{$gutter}); }
    .#{$breakpoint}ten-twelfths { width: calc(#{percentage(10 / 12)} - #{$gutter}); }
    .#{$breakpoint}eleven-twelfths { width: calc(#{percentage(11 / 12)} - #{$gutter}); }


    .equal-columns--clear {
      @if $breakpoint == '' {
        .#{$breakpoint}one-half:nth-of-type(2n+1),
        .#{$breakpoint}eight:nth-of-type(2n+1),
        .#{$breakpoint}one-third:nth-of-type(3n+1),
        .#{$breakpoint}one-fourth:nth-of-type(4n+1),
        .#{$breakpoint}four:nth-of-type(4n+1),
        .#{$breakpoint}one-fifth:nth-of-type(5n+1),
        .#{$breakpoint}one-sixth:nth-of-type(6n+1),
        .#{$breakpoint}one-seventh:nth-of-type(7n+1) {
            clear: both;
        }
      }

      @if $breakpoint == 'large-down--' {
        @include respond-to('large-down') {
          //Remove previous clears
          .#{$breakpoint}one-half.#{$breakpoint}one-half,
          .#{$breakpoint}eight.#{$breakpoint}eight,
          .#{$breakpoint}one-third.#{$breakpoint}one-third,
          .#{$breakpoint}one-fourth.#{$breakpoint}one-fourth,
          .#{$breakpoint}four.#{$breakpoint}four,
          .#{$breakpoint}one-fifth.#{$breakpoint}one-fifth,
          .#{$breakpoint}one-sixth.#{$breakpoint}one-sixth,
          .#{$breakpoint}one-seventh.#{$breakpoint}one-seventh {
            clear: none;
          }
          //Set new clears
          .#{$breakpoint}one-half:nth-of-type(2n+1),
          .#{$breakpoint}eight:nth-of-type(2n+1),
          .#{$breakpoint}one-third:nth-of-type(3n+1),
          .#{$breakpoint}one-fourth:nth-of-type(4n+1),
          .#{$breakpoint}four:nth-of-type(4n+1),
          .#{$breakpoint}one-fifth:nth-of-type(5n+1),
          .#{$breakpoint}one-sixth:nth-of-type(6n+1),
          .#{$breakpoint}one-seventh:nth-of-type(7n+1) {
            clear: both;
          }
        }
      }

      @if $breakpoint == 'medium-down--' {
        @include respond-to('medium-down') {
          //Remove previous clears
          .#{$breakpoint}one-half.#{$breakpoint}one-half,
          .#{$breakpoint}eight.#{$breakpoint}eight,
          .#{$breakpoint}one-third.#{$breakpoint}one-third,
          .#{$breakpoint}one-fourth.#{$breakpoint}one-fourth,
          .#{$breakpoint}four.#{$breakpoint}four,
          .#{$breakpoint}one-fifth.#{$breakpoint}one-fifth,
          .#{$breakpoint}one-sixth.#{$breakpoint}one-sixth,
          .#{$breakpoint}one-seventh.#{$breakpoint}one-seventh {
            clear: none;
          }
          //Set new clears
          .#{$breakpoint}one-half:nth-of-type(2n+1),
          .#{$breakpoint}eight:nth-of-type(2n+1),
          .#{$breakpoint}one-third:nth-of-type(3n+1),
          .#{$breakpoint}one-fourth:nth-of-type(4n+1),
          .#{$breakpoint}four:nth-of-type(4n+1),
          .#{$breakpoint}one-fifth:nth-of-type(5n+1),
          .#{$breakpoint}one-sixth:nth-of-type(6n+1),
          .#{$breakpoint}one-seventh:nth-of-type(7n+1) {
            clear: both;
          }
        }
      }

      @if $breakpoint == 'small-down--' {
        @include respond-to('small-down') {
          //Remove previous clears
          .#{$breakpoint}one-half.#{$breakpoint}one-half,
          .#{$breakpoint}eight.#{$breakpoint}eight,
          .#{$breakpoint}one-third.#{$breakpoint}one-third,
          .#{$breakpoint}one-fourth.#{$breakpoint}one-fourth,
          .#{$breakpoint}four.#{$breakpoint}four,
          .#{$breakpoint}one-fifth.#{$breakpoint}one-fifth,
          .#{$breakpoint}one-sixth.#{$breakpoint}one-sixth,
          .#{$breakpoint}one-seventh.#{$breakpoint}one-seventh {
            clear: none;
          }
          //Set new clears
          .#{$breakpoint}one-half:nth-of-type(2n+1),
          .#{$breakpoint}eight:nth-of-type(2n+1),
          .#{$breakpoint}one-third:nth-of-type(3n+1),
          .#{$breakpoint}one-fourth:nth-of-type(4n+1),
          .#{$breakpoint}four:nth-of-type(4n+1),
          .#{$breakpoint}one-fifth:nth-of-type(5n+1),
          .#{$breakpoint}one-sixth:nth-of-type(6n+1),
          .#{$breakpoint}one-seventh:nth-of-type(7n+1) {
            clear: both;
          }
        }
      }

    }

    .equal-columns--outside-trim {
      .#{$breakpoint}one-half:nth-of-type(2n),
      .#{$breakpoint}eight:nth-of-type(2n),
      .#{$breakpoint}one-third:nth-of-type(3n),
      .#{$breakpoint}one-fourth:nth-of-type(4n),
      .#{$breakpoint}four:nth-of-type(4n),
      .#{$breakpoint}one-fifth:nth-of-type(5n),
      .#{$breakpoint}one-sixth:nth-of-type(6n),
      .#{$breakpoint}one-seventh:nth-of-type(7n),
      .#{$breakpoint}two:nth-of-type(8n) {
        margin-right: 0;
      }
      .#{$breakpoint}one-half:nth-of-type(2n+1),
      .#{$breakpoint}eight:nth-of-type(2n+1),
      .#{$breakpoint}one-third:nth-of-type(3n+1),
      .#{$breakpoint}one-fourth:nth-of-type(4n+1),
      .#{$breakpoint}four:nth-of-type(4n+1),
      .#{$breakpoint}one-fifth:nth-of-type(5n+1),
      .#{$breakpoint}one-sixth:nth-of-type(6n+1),
      .#{$breakpoint}one-seventh:nth-of-type(7n+1),
      .#{$breakpoint}two:nth-of-type(8n+1) {
        margin-left: 0;
      }

      @if $breakpoint == 'large-down--' {
        @include respond-to('large-down') {
          //Reset previous margins
          .#{$breakpoint}one-half.#{$breakpoint}one-half,
          .#{$breakpoint}eight.#{$breakpoint}eight,
          .#{$breakpoint}one-third.#{$breakpoint}one-third,
          .#{$breakpoint}one-fourth.#{$breakpoint}one-fourth,
          .#{$breakpoint}four.#{$breakpoint}four,
          .#{$breakpoint}one-fifth.#{$breakpoint}one-fifth,
          .#{$breakpoint}one-sixth.#{$breakpoint}one-sixth,
          .#{$breakpoint}one-seventh.#{$breakpoint}one-seventh,
          .#{$breakpoint}two.#{$breakpoint}two {
            margin-right: 10px;
            margin-left: 10px;
          }
          //Set new margins on right
          .#{$breakpoint}one-half:nth-of-type(2n),
          .#{$breakpoint}eight:nth-of-type(2n),
          .#{$breakpoint}one-third:nth-of-type(3n),
          .#{$breakpoint}one-fourth:nth-of-type(4n),
          .#{$breakpoint}four:nth-of-type(4n),
          .#{$breakpoint}one-fifth:nth-of-type(5n),
          .#{$breakpoint}one-sixth:nth-of-type(6n),
          .#{$breakpoint}one-seventh:nth-of-type(7n),
          .#{$breakpoint}two:nth-of-type(8n) {
            margin-right: 0;
          }
          //Set new margins on left
          .#{$breakpoint}one-half:nth-of-type(2n+1),
          .#{$breakpoint}eight:nth-of-type(2n+1),
          .#{$breakpoint}one-third:nth-of-type(3n+1),
          .#{$breakpoint}one-fourth:nth-of-type(4n+1),
          .#{$breakpoint}four:nth-of-type(4n+1),
          .#{$breakpoint}one-fifth:nth-of-type(5n+1),
          .#{$breakpoint}one-sixth:nth-of-type(6n+1),
          .#{$breakpoint}one-seventh:nth-of-type(7n+1),
          .#{$breakpoint}two:nth-of-type(8n+1) {
            margin-left: 0;
          }
        }
      }

      @if $breakpoint == 'medium-down--' {
        @include respond-to('medium-down') {
          //Reset previous margins
          .#{$breakpoint}one-half.#{$breakpoint}one-half,
          .#{$breakpoint}eight.#{$breakpoint}eight,
          .#{$breakpoint}one-third.#{$breakpoint}one-third,
          .#{$breakpoint}one-fourth.#{$breakpoint}one-fourth,
          .#{$breakpoint}four.#{$breakpoint}four,
          .#{$breakpoint}one-fifth.#{$breakpoint}one-fifth,
          .#{$breakpoint}one-sixth.#{$breakpoint}one-sixth,
          .#{$breakpoint}one-seventh.#{$breakpoint}one-seventh,
          .#{$breakpoint}two.#{$breakpoint}two {
            margin-right: 10px;
            margin-left: 10px;
          }
          //Set new margins on right
          .#{$breakpoint}one-half:nth-of-type(2n),
          .#{$breakpoint}eight:nth-of-type(2n),
          .#{$breakpoint}one-third:nth-of-type(3n),
          .#{$breakpoint}one-fourth:nth-of-type(4n),
          .#{$breakpoint}four:nth-of-type(4n),
          .#{$breakpoint}one-fifth:nth-of-type(5n),
          .#{$breakpoint}one-sixth:nth-of-type(6n),
          .#{$breakpoint}one-seventh:nth-of-type(7n),
          .#{$breakpoint}two:nth-of-type(8n) {
            margin-right: 0;
          }
          //Set new margins on left
          .#{$breakpoint}one-half:nth-of-type(2n+1),
          .#{$breakpoint}eight:nth-of-type(2n+1),
          .#{$breakpoint}one-third:nth-of-type(3n+1),
          .#{$breakpoint}one-fourth:nth-of-type(4n+1),
          .#{$breakpoint}four:nth-of-type(4n+1),
          .#{$breakpoint}one-fifth:nth-of-type(5n+1),
          .#{$breakpoint}one-sixth:nth-of-type(6n+1),
          .#{$breakpoint}one-seventh:nth-of-type(7n+1),
          .#{$breakpoint}two:nth-of-type(8n+1) {
            margin-left: 0;
          }
        }
      }

      @if $breakpoint == 'small-down--' {
        @include respond-to('small-down') {
          //Reset previous margins
          .#{$breakpoint}one-half.#{$breakpoint}one-half,
          .#{$breakpoint}eight.#{$breakpoint}eight,
          .#{$breakpoint}one-third.#{$breakpoint}one-third,
          .#{$breakpoint}one-fourth.#{$breakpoint}one-fourth,
          .#{$breakpoint}four.#{$breakpoint}four,
          .#{$breakpoint}one-fifth.#{$breakpoint}one-fifth,
          .#{$breakpoint}one-sixth.#{$breakpoint}one-sixth,
          .#{$breakpoint}one-seventh.#{$breakpoint}one-seventh,
          .#{$breakpoint}two.#{$breakpoint}two {
            margin-right: 10px;
            margin-left: 10px;
          }
          //Set new margins on right
          .#{$breakpoint}one-half:nth-of-type(2n),
          .#{$breakpoint}eight:nth-of-type(2n),
          .#{$breakpoint}one-third:nth-of-type(3n),
          .#{$breakpoint}one-fourth:nth-of-type(4n),
          .#{$breakpoint}four:nth-of-type(4n),
          .#{$breakpoint}one-fifth:nth-of-type(5n),
          .#{$breakpoint}one-sixth:nth-of-type(6n),
          .#{$breakpoint}one-seventh:nth-of-type(7n),
          .#{$breakpoint}two:nth-of-type(8n) {
            margin-right: 0;
          }
          //Set new margins on left
          .#{$breakpoint}one-half:nth-of-type(2n+1),
          .#{$breakpoint}eight:nth-of-type(2n+1),
          .#{$breakpoint}one-third:nth-of-type(3n+1),
          .#{$breakpoint}one-fourth:nth-of-type(4n+1),
          .#{$breakpoint}four:nth-of-type(4n+1),
          .#{$breakpoint}one-fifth:nth-of-type(5n+1),
          .#{$breakpoint}one-sixth:nth-of-type(6n+1),
          .#{$breakpoint}one-seventh:nth-of-type(7n+1),
          .#{$breakpoint}two:nth-of-type(8n+1) {
            margin-left: 0;
          }
        }
      }

      .#{$breakpoint}one-whole:nth-of-type(1n+1) {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
      }

      .#{$breakpoint}one-half { width: calc(#{percentage(1 / 2)} - (#{$gutter} - (#{$gutter} / 2)));}
      .#{$breakpoint}one-third { width: calc(#{percentage(1 / 3)} - (#{$gutter} - (#{$gutter} / 3)));}
      .#{$breakpoint}one-fifth { width: calc(#{percentage(1 / 5)} - (#{$gutter} - (#{$gutter} / 5)));}
      .#{$breakpoint}one-fourth { width: calc(#{percentage(1 / 4)} - (#{$gutter} - (#{$gutter} / 4)));}
      .#{$breakpoint}one-sixth { width: calc(#{percentage(1 / 6)} - (#{$gutter} - (#{$gutter} / 6)));}
      .#{$breakpoint}one-seventh { width: calc(#{percentage(1 / 7)} - (#{$gutter} - (#{$gutter} / 7)));}

      .#{$breakpoint}two { width: calc(#{percentage(2 / 16)} - (#{$gutter} - (#{$gutter} / 8)));}
      .#{$breakpoint}four { width: calc(#{percentage(4 / 16)} - (#{$gutter} - (#{$gutter} / 4)));}
      .#{$breakpoint}seven { width: calc(#{percentage(7 / 16)} - (#{$gutter} - (#{$gutter} / 2)));}
      .#{$breakpoint}eight { width: calc(#{percentage(8 / 16)} - (#{$gutter} / 2));}
      .#{$breakpoint}nine { width: calc(#{percentage(9 / 16)} - (#{$gutter} - (#{$gutter} / 2)));}
    }
}

/*================ Build Base Grid Classes ================*/
@include container-column-generator();
@include responsive-display-helper();
@include responsive-text-align-helper();

/*============================================================================
  Generate breakpoint-specific column widths and push classes
    - Default column widths: $breakpoint-has-widths: ($small, $medium-up);
    - Default is no push classes
    - Will not work if `styles/global/grid.scss` is removed
==============================================================================*/
$breakpoint-has-widths: ($large-down, $medium-down, $small-down);
$breakpoint-has-push: ();

// /*================ Build Responsive Grid Classes ================*/
@each $breakpoint in $breakpoint-has-widths {
  @include respond-to($breakpoint) {
    @include container-column-generator('#{$breakpoint}--');
    @include responsive-display-helper('#{$breakpoint}--');
    @include responsive-text-align-helper('#{$breakpoint}--');
  }
}

// /*================ Build Grid Push Classes ================*/
@each $breakpoint in $breakpoint-has-push {
  @include respond-to($breakpoint) {
    @include grid-push-generator('#{$breakpoint}--');
  }
}

//Responsive grid - uses gutters

.container {
  position: relative;
  max-width: $site-width;
  margin: 0 auto;
  @include respond-to('large-down') {
    width: calc(90% + #{$gutter});
  }
  @include respond-to('small-down') {
    width: calc(100% - 40px);
  }
}

.container .container {
  width: 100%;
}

[class*="offset-by"] {
  position: relative;
  @include respond-to('small-down') {
    position: static;
  }
}

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

.column,
.columns {
  float: left;
  display: inline;
  margin-left: calc(#{$gutter} / 2);
  margin-right: calc(#{$gutter} / 2);
  box-sizing: border-box;
}

.column:not([class*="small-down--one-half"]),
.columns:not([class*="small-down--one-half"]) {
  @include respond-to('small-down') {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

.even {
  @include respond-to('small-down') {
    margin-left: 0;
  }
}

.odd {
  @include respond-to('small-down') {
    margin-right: 0;
  }
}

.flex-container {
  @include flexbox();
}

.flex-container:after {
  visibility: hidden;
  display: none;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.row {
  margin-bottom: $gutter;
}

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

//Can be used on inner div inside container element to apply borders (that maintain the same width as columns)
.container-border--top::before {
  display: block;
  content: '';
  height: 0;
  width: calc(100% - #{$gutter});
  border-top: thin solid #cccccc;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  float: left;
  @include respond-to('small-down') {
    width: 100%;
  }
}

.container-border--bottom::after {
  display: block;
  content: '';
  height: 0;
  width: calc(100% - #{$gutter});
  border-top: thin solid #cccccc;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  clear: both;
  @include respond-to('small-down') {
    width: 100%;
  }
}

//Applied to container elements that need to be smaller than the $site-width
.narrow-width--true.container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

//Override the max-width on container element and stretch full screen (wide_display)
.container.full-width--true,
.full-width--true > .container {
  width: 100%;
  max-width: 100%;
}

.container.fullWidthMobile--true,
.column.fullWidthMobile--true,
.columns.fullWidthMobile--true {
  @include respond-to('small-down') {
    width: 100% !important;
    max-width: 100%;
  }
}

//Styles applied only on larger screen sizes
@include respond-to('small-up'){
  /* Nested Column Classes */
  .column.alpha, .columns.alpha               { margin-left: 0; }
  .column.omega, .columns.omega               { margin-right: 0; }

  /* Offsets */
  .offset-by-one                   { left: calc(#{percentage(1 / 16)});}
  .offset-by-two                   { left: calc(#{percentage(2 / 16)});}
  .offset-by-three                 { left: calc(#{percentage(3 / 16)});}
  .offset-by-four                  { left: calc(#{percentage(4 / 16)});}
  .offset-by-five                  { left: calc(#{percentage(5 / 16)});}
  .offset-by-six                   { left: calc(#{percentage(6 / 16)});}
  .offset-by-seven                 { left: calc(#{percentage(7 / 16)});}
  .offset-by-eight                 { left: calc(#{percentage(8 / 16)});}
  .offset-by-nine                  { left: calc(#{percentage(9 / 16)});}
  .offset-by-ten                   { left: calc(#{percentage(10 / 16)});}
  .offset-by-eleven                { left: calc(#{percentage(11 / 16)});}
  .offset-by-twelve                { left: calc(#{percentage(12 / 16)});}
  .offset-by-thirteen              { left: calc(#{percentage(13 / 16)});}
  .offset-by-fourteen              { left: calc(#{percentage(14 / 16)});}
  .offset-by-fifteen               { left: calc(#{percentage(15 / 16)});}
}

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

  a span {
    color: #1e1e1e;
  }
}

/*  Headings  */

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

h2, .h2, h2.title {
  @include headline-style($font-size-header);
  margin-bottom: 0.75em;
  font-weight: 600;
  color: black;
  a {
    font-weight: inherit;
  }
  &.collection_title {
    margin-bottom: 0;
    display: inline;
  }
  &.product_name a {
    color: #6b6b6b;
  }
}
.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: #6b6b6b;
  }
  &.title {
    line-height: 1.25;
    margin: 0 auto 15px;
    clear:both;
    padding-top: 4px;
    a, a:visited {
      color: #6b6b6b;
    }
  }
  &.sub_title {
    padding: 5px 0;
    color: #6b6b6b;
    a {
      color: #6b6b6b;
    }
  }
}

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: #6b6b6b;
    a {
      color: #6b6b6b;
    }
  }
}

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

.cart h6 {
  margin-top: 0;
}

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

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

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

.title.center.blog a {
 color: #6b6b6b;
}

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

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: #f1f1f1;
  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;
}
.thumbnail .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: #f1f1f1;
  border-bottom-width: $borderWidth;
  border-bottom-style: $borderStyle;

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

  @include respond-to('medium-down'){
    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: #f1f1f1;
  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: #dc6511;
  text-decoration: none;
  position: relative;
  transition: color .1s linear;
}

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

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: #ffffff;
    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;
  pointer-events: all;

  .top-bar {
    text-align: center;
    @include flexbox();
    @include align-items(center);

    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: #000000;
      display: inline-block;
      padding-left: 4px;
      position: relative;
      &.cart_count {
        color: white;
      }
    }
  }
}

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

.main-nav:not([data-show-dropdown-on-click]) .menu .vertical-menu li:hover .vertical-menu_submenu {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease-in;
  pointer-events: all;
  z-index: 2000;
}

.main-nav:not([data-show-dropdown-on-click]) .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(#000000, 1);

  li {
    padding: 0 20px;
    display: block;

    a {
      display: block;
      font-size: 14px;
      letter-spacing: 0px;

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

  span.icon-down-arrow {
    @include prefix(transform, rotate(-90deg), ms webkit spec);
  }
}

.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(#000000, 1);
  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;
}

// adds default cursor when parent mega menu doesn't have a link to it
li > a.url-deadlink {
  cursor: default;
}

/*  Mobile nav  */

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

.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: #000000;
  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_menu {
  margin: 10px 20px;
  li {
    padding-right: 0;
    display: block;

    a span.icon-down-arrow {
      padding: 0 15px !important;
    }
  }
  .sublink ul {
    display: none;
    margin-left: 0;
    padding-left: 10px;
  }
}

/* Currency / language switcher on mobile */

.mobile-menu__disclosure {

  .selectors-form__wrap {
    @include justify-content(center);
    @include flex-direction(column);
  }

  .selectors-form__item {
    margin-left: 0;

    &:first-of-type .disclosure__toggle {
      border-top: none;
    }
  }

  .disclosure {
    padding-top: 0;
  }

  .disclosure-list__item {
    padding: 0;
  }

  button.disclosure__button {
    @include justify-content(flex-start);
    font-size: 17px;
    color: #ffffff;
    padding-left: 0;
    min-height: 0;
    height: unset;
    width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
    line-height: 1.9em;

    &:hover,
    &:focus {
      color: #ffffff;
    }
  }
}

#mobile_menu li.sublink span.currency-code {
  display: inline;
  padding-left: 0;
}

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

.cart-container {
  float: right;
}

.top-bar {
  @include flexbox();
  @include justify-content(space-between);
  background-color: #f1f1f1;
  padding: 0 0 0 10px;

  .social_icons {
    margin: 0;
    padding-left: 3px;

    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 {
      height: 100%;
      z-index: 10;
      position: relative;
      padding-right: 10px;
      padding-left: 10px;

      &:before {
        margin-left: 0;
        font-size: 18px;
      }
    }

    .cart-container {
      display: inline-block;
    }
  }

  .mini-cart__item__title {

    a {
      display: block;
    }

    span {
      color: #000000;
    }

    .sale {
      color: #dc6511;
      margin-right: 3px;
    }

    .was_price {
      color: #8c8b8b;
    }
  }
}

.top-bar--right-menu {
  @include flexbox();
  @include flex-wrap(nowrap);
  @include flex(0 0 auto);
}

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


  .feature_image .main-nav,
  .feature_image .dropdown {
    /*background: transparent;*/
  }


$search--box-width: 360px;
$search--icon-width: 60px;
$cart--icon-width: 70px;

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

.sticky_nav {
  position: fixed;
  width: 100%;
  z-index: 35;
  top: 0;
  left: 0;
  padding: 0;
  @include prefix(transform, translateY(-100%), ms webkit spec);
  transition: all 300ms ease-in-out;

  .main-nav {
    @include flex-wrap(nowrap);
    padding: 0 0 0 20px;
  }

  .nav--left {
    padding-left: 20px;
  }

  .nav--combined ul.menu {
    padding: 0 20px;
  }

  ul.menu {
    font-size: 16px;
    padding-bottom: 0 !important; //override non-sticky menu padding
  }

  .header__logo {
    padding: 12px 0;
  }

  .menu-position--block {

    &.search-enabled--true .nav.nav--center {
      padding-left: 0
    }

    .header__logo {
      margin-right: 20px;
      padding-left: 0;
      padding-right: 0;
    }
  }

  .menu-position--inline.logo-position--center {

    &.search-enabled--false  .nav--right {
      width: calc(45% - #{$cart--icon-width});
    }

    .nav--right {
      width: calc(45% - #{$search--icon-width + $cart--icon-width});
    }
  }

  .header__logo span {
    color: #ffffff;
  }

  .search-container {
    max-width: $search--icon-width;
    padding: 12px 0;

    a {
      color: #ffffff;
      padding: 0 20px;
    }
  }

  .mini_cart {
    font-size: 0;
    padding: 12px;
    @include align-items(center);

    &:before {
      margin: 0;
      font-size: 18px;
    }

    .cart_count {
      margin: 0;
      padding: 0 0 0 8px;
    }
  }
}

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

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

.main-nav {
  @include flexbox();
  @include flex-wrap(wrap);
  @include align-items(center);
  @include justify-content(space-between);
  padding: 10px 20px;
  position: relative;

  .nav {
    @include flexbox();
    @include justify-content(space-between);
    @include flex(1 1 auto);
    position: relative;
  }

  .nav--combined .menu li:last-child,
  .nav--right .menu li:last-child {
    padding-right: 0;
  }
}

.menu {
  @include flex(1 1 auto);
  display: block;
  border: none;
  padding: 0;
  margin: 0;

  li {
    display: inline-block;
    margin: 0;
    border: 0;
  }
}

.menu-position--inline {
  @include flex-wrap(nowrap);

  .header__logo {
    width: 100%;
  }
}

.menu-position--block {

  &.search-enabled--true .nav.nav--center {
    padding-left: $search--box-width;
  }

  .header__logo {
    width: 100%;
    max-width: none; // undo max-width so menu appears below logo
  }
}

.header__logo {
  width: auto;
  line-height: 1;
  margin-left: 20px;
  margin-right: 20px;

  a {
    display: inline-block;
  }

  img,
  span.header__logo-text {
    width: 100%;
    display: inline-block;
    color: #1e1e1e;
  }
}

.logo-alignment--left {

  &.menu-position--block .header__logo {
    padding-right: 0;
    padding-left: 0;
  }
}

.logo-alignment--center {

  .header__logo {
    text-align: center;
  }
}

.logo-position--left {

  .header__logo {
    padding-right: 20px;
    margin-right: 0;
    margin-left: 0;
  }
}

.logo-position--center {

  &.menu-position--block .header__logo {
    margin: 0;
  }

  &.search-enabled--true .nav--right {
    width: calc(45% - #{$search--box-width + 20px}); // includes 20px to account for padding on search container
  }

  .nav {
    width: 45%;
  }
}

.cart-container .mini_cart {
  @include flexbox();
  @include justify-content(center);
  gap: 5px;
  height: 100%;
  padding-right: 24px;
}
.top-bar a.mini_cart .cart_count {
  color: white;
  background-color: black;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  line-height: 23px;
}

.search-container {
  width: 100%;
  max-width: $search--box-width;
  padding-left: 20px;

  @media (max-width: 1520px) {
    max-width: 200px;
  }

  .search-link {
    display: none;
  }

  input {
    z-index: 29;
  }
}

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

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

.menu a,
.menu a:visited,
.menu a:active,
#header span.menu_title,
.menu a span,
select.currencies,
.mini_cart span {
  font-family: Oswald, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  text-transform: uppercase;
  color: #ffffff;
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
  display: block;
  letter-spacing: 0px;
  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-down') {
    font-size: 17px;
  }
}

.feature_image .main-nav a,
.feature_image .main-nav a span:not('.header__logo-text') {
  color: #d9d9d9;
}

#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 {
  position: relative;
  vertical-align: top;
  padding-right: 10px;
}

.shopify-currency-form {
  margin-bottom: 0;
}

select.currencies {
  height: 40px;
  min-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
  cursor: pointer;
  @if (lightness(#f1f1f1) > 50) {
    background-image: url(//alpinefoxshop.ch/cdn/shop/t/35/assets/select.png?v=106766744789554721221755705681); // Lighter background
  } @else {
    background-image: url(//alpinefoxshop.ch/cdn/shop/t/35/assets/select_light.png?v=153136132513795776861755705681); // Darker background
  }
  @include respond-to('medium-down'){
    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: #d9d9d9;
  
}

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

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

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

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

.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 {
  color: #000000;
  font-size: 16px;
  letter-spacing: 0px;
}

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

.top-bar li {
  padding-left: 15px;
  padding-right: 15px;
}

.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: #f1f1f1;
  padding-left: 5px;
  padding-right: 5px;
  margin-left: 15px;
  z-index: 2001;
  @include respond-to('medium-up'){
    padding-left: 15px;
    padding-right: 15px;
  }
  @include respond-to('medium-down'){
    right: 0;
  }
}

.cart-container {
  li.mini-cart__item {
    @include flexbox();
    @include justify-content(space-between);
  }
}

.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: #dc6511;
  &:visited {
    color: #dc6511;
  }
  &:hover {
    color: #dc6511;
  }
}


.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-down') {
      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 - 100px);
}

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

//Prevent mini cart from appearing on cart page for touchscreen devices
html.touchevents .cart .cart-container {
  pointer-events: none;
}

#cart_form p.modal_price {
  margin-bottom: 0;
  padding-bottom: 0;
}

#cart_form .product-quantity-box {
  margin: 15px 0;
  width: 130px;
}

.cart_content .product-quantity-box {
  margin: 15px 0 0;
  width: 130px;
}

.cart_content .product-plus,
.cart_content .product-minus,
#cart_form .product-plus,
#cart_form .product-minus {
  &.is-disabled {
    pointer-events: none;
  }
}

.cart_content .product-quantity-box .quantity,
#cart_form .product-quantity-box .quantity {
  padding: 0 5px;
  width: 30%;
  min-height: 30px;
  height: 30px;
}

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

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

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



.cart-container.active_link .mini_cart,
.cart-container.active_link .mini_cart span {
  background-color: #ffffff;
  color: #000000 !important;
}

.cart_content {
  top: 40px;
  right: 0;
  position: absolute;
  z-index: 2000;
  background-color: #ffffff;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  color: #000000;
  border: 1px solid #cccccc;
  border-top: 0;
  border-right: 0;
  width: 100%;
  max-width: 320px;
  @include respond-to('medium-up'){
    max-width: 420px;
  }
}

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

.mini-cart__item.animated,
.cart__item.animated {
  animation-duration: 0.7s;
}

.mini-cart__item--image {
  width: 40%;
}

.cart_content {

  li.mini-cart__item {
    position: relative;
  }

  li.mini-cart__item a.cart__remove-btn {
    position: absolute;
    top: 0;
    right: 0;
    &:active {
      position: absolute;
    }

    span {
      color: #000000;
    }

    .remove-icon {
      margin-left: 0;
      &:before {
        font-size: 25px;
      }
    }
  }
}

#header {
  .top-bar a span.remove-icon {
    color: #000000;
  }

  li.mini-cart__item a.cart__remove-btn {
    top: 0;
  }
}

.cart_content .mini-cart__item--content {
  @include flexbox();
  @include flex-direction(column);
  @include flex(1);
  @include flex-wrap(wrap);
  position: relative;

  .mini-cart__item__title {
    @include flexbox();
    @include flex-direction(column);
    padding-right: 20px;
  }

  .price {
    padding-top: 10px;
    line-height: 1;
    text-align: left;
  }
}

.cart__item {
  @include flexbox();
  @include align-items(center);
  margin: 10px 0;
  padding: 10px 0;
  position: relative;
  border-bottom: 1px solid #cccccc;

  @include respond-to('medium-down') {

    .cart__item--image {
      max-width: 33.333%;
    }

    .cart__item--content {
      margin-left: 20px;
    }

    .cart__item_--title {
      margin-right: 20px;
    }
  }

  .cart__item--title {
    margin-right: 15%;
  }

  .cart__item--discount,
  .cart__item--discount .label {
    color: #dc6511;
    margin-top: 15px;
  }
}

.cart_discounts {
  @include flexbox();
  @include align-items(flex-start);
  line-height: 1;

  .cart_discounts--title {
    width: 60%;
    margin-right: 20px;
  }

  .cart_discounts--price {
    width: calc(40% - 20px);
    text-align: right;
  }
}

.cart__remove-btn {
  @include flexbox();
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 10px;

  span.remove-text,
  span.remove-icon {
    color: #000000;
  }

  &:hover span,
  &:active span {
    color: #dc6511;
  }

  @include respond-to('large-down'){
    .remove-text {
      display: none;
    }
  }

  .remove-icon {
    margin-left: 5px;

    &:before {
      font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
      font-size: 25px;
      line-height: 1em;
      display: block;
      content: "\00d7";
    }
  }
}

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

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

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

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

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

  li {
    padding-left: 0;
    padding-right: 0;

    &:empty {
      margin-bottom: 0;
    }

    .cart_discounts--title {
      text-align: left;
    }
  }
}

.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: 16px;
  margin-right: 0;
  vertical-align: middle;
}

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

input[type="submit"].guest_button, input[type="button"].guest_button {
  color: #dc6511;
  -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: #dc6511;
  }
  @include respond-to('medium-up') {
    text-align: center;
  }
}

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

.dropdown_container {
  clear: both;
  width: 100%;
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;

  @include respond-to('medium-down') {
    position: relative;
    bottom: initial; // reset default bottom positioning
  }
}

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

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

.mega-menu__image-caption,
.mobile-mega-menu__image-caption {
  margin: 10px 0;
}

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

.dropdown_content p,
.mobile-mega-menu p {
  font-family: Oswald, sans-serif;
  font-size: 16px;
  font-style: normal;
  color: #ffffff;
  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: 0px;
}

.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 #ffffff;
    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(#000000, 1);
  color: #ffffff;
}

.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-down') {
    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-down') {
  margin: 10px 0;
 }
}

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

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

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

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

.sidebar .recently-viewed-list .brand {
  color: #000000;
}

.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: #dc6511;
    &:hover {
      border-left: none;
      color: #dc6511
    }
  }
}

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

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

  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: #dc6511;
    background-color: transparent;
    border: none;
    outline: 0;
    box-shadow: 0;
    font-family: inherit;
    letter-spacing: 0;
    text-transform: none;
    position: absolute;
    @include prefix(transform, translateY(-50%), ms webkit spec);
    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: #dc6511;
  }

  .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-down'){
      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-down'){
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
    }
  }
  .img {
    width: 100%;
  }
  .collection-info__caption {
    
      display: block;
    
    margin-top: 20px;
    @include respond-to('medium-down'){
      display: block;
      position: static;
    }
  }

  
}

.blog-header {
  margin-bottom: 5px;
  .blog-title.blog-tags--true {
    float: none;
  }
  .blog-title {
    float: left;
    @include respond-to('medium-down') {
      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;
  .blog_filter, .tag_filter, .sort_by {
    color: #333333;
    display: inline-block;
    border: none;
    padding-right: 30px;
    background-position: 97% 50%;
    background-color: #ffffff;
    font-family: Oswald, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    text-transform: none;
    width: auto;
    margin-bottom: 25px;
    max-width: 80%;
    border: 2px solid black;
    @include respond-to('medium-down'){
      float: none;
      width: 100%;
      max-width: 100%;
      font-size: 16px;
      padding-left: 15px;
    }
  }
}

div.breadcrumb-collection {
  margin-bottom: 55px;
  @include respond-to('medium-down'){
   margin-top: 15px;
   text-align: center;
  }
}

.breadcrumb_text,
.article-pagination {
  color: #dc6511;
  margin-top: 0px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 0;
  @include respond-to('medium-down'){
    margin-top: 0;
  }
  .breadcrumb-divider {
    color: black;
    margin: 0 5px;
  }
  a span {
    color: black;
  }
}

.breadcrumb_link:hover span {
 color: black;
}

.breadcrumb {
  font-size: 15px;
  @include respond-to('medium-down'){
   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,
  .column img,
  .columns img {
  max-width: 100%;
  height: auto;
}

.image-crop--left img,
.image-crop--left .image-element__wrap {
  @include object-fit(cover, left);
  height: 100% !important;
}

.image-crop--right img,
.image-crop--right .image-element__wrap {
  @include object-fit(cover, right);
  height: 100% !important;
}

.image-crop--center img,
.image-crop--center .image-element__wrap {
  @include object-fit(cover);
  height: 100% !important;
}

.zoom-container {
  display: block;
}

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

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

  $color-blankstate: rgba(#6b6b6b, 0.9);
  $color-blankstate-background: rgba(#6b6b6b, 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 {
    height: 500px;

    @include respond-to('medium') {
      height: 350px;
    }

    @include respond-to('small') {
      height: 250px;
    }
  }

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

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

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

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

/* #Videos
================================================== */
.video-wrapper {
  position: relative;
  background-color: #ffffff;

  .video__overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
    pointer-events: none;
  }

  &.darken-video--true {
    .video__overlay {
      background: rgba(0,0,0,0.3);
    }
  }

  // Allows users to click embedded iframe ui when video paused
  .plyr--video.plyr--paused .plyr__video-embed iframe {
    z-index: 5;
  }

  .plyr--full-ui.plyr--video .plyr__control--overlaid {
    display: none;
  }

  &.play-button-icon--visible {
    .plyr--paused .plyr__control--overlaid {
      display: block;
      opacity: 1;
    }
  }

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

  .video__text-container {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: 100%;
    margin: auto;
    z-index: 2;
    pointer-events: none;
  }

  .video__text-container.text-below-image--true {
    @include respond-to('medium-down') {
      position: static;
      top: auto;
      transform: none;
    }
  }

  .video__text {
    height: 100%;
    text-align: center;
    @include flexbox();
    @include flex-direction(column);
    @include justify-content(center);
  }

  .video__text-wrapper {
    margin: 0;
    padding: 30px;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.3);
  }

  @include respond-to('medium') {
    @include flexbox();
    @include flex-direction(column);
  }
}

/* #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: #dc6511;
  color: #ffffff;
  border: 1px solid #dc6511;
  padding: 0 20px;
  text-align: center;
  cursor: pointer;
  min-height: 44px;
  height: 40px;
  line-height: 1.2;
  vertical-align: top;
  font-family: Oswald, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0px;
  @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: 0;
  
}

.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,
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-color: #dc6511;
  border: 1px solid #dc6511;
}

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

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  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;
}

.add_to_cart span.icon-lock {
  margin-right: 10px;
  font-size: larger;
  &:before {
    margin: 0;
  }
}

.shopify-product-form {
  margin-bottom: 0;
}

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

.shopify-payment-button {
  position: relative;
  height: 44px;
}

.shopify-payment-button div {
  height: 100%;
}

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

button.shopify-payment-button__button.shopify-payment-button__button--unbranded {
  height: 100%;
}

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

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

button.shopify-payment-button__more-options {
  color: #000000;
  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: Roboto, sans-serif;
  font-style: normal;
  @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;

  .shopify-payment-button__button--branded {
    padding-bottom: 30px;
  }

  .shopify-payment-button__more-options {
    top: 70%;
  }
}

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

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

.smart-payment-button--false {
  margin-bottom: 20px;
}

.product-quantity-box.purchase-details__quantity {
  margin-right: 5px;
  width: calc(50% - 12px);
  @include respond-to('small-down') {
    width: 100%;
  }
  input.quantity {
    padding-top: 11px;
    padding-bottom: 11px;
    line-height: 1.4;
    min-height: 44px;
    margin-bottom: 0;
    width: calc(100% - 88px);
  }
}

.smart-payment-button--true .product-quantity-box.purchase-details__quantity {
  width: calc(50% - 6px);
  @include respond-to('medium-down') {
    width: 100%;
    margin-right: 0;
    .input.quantity {
      width: calc(100% - 88px);
    }
  }
}

p.checkout_button {
  margin-bottom: 0;
}

.purchase-details__buttons {
  @include flexbox;
  @include flex(1 0 calc(50% - 12px));
  @include flex-wrap(wrap);
  margin-left: 6px;
  @include respond-to('medium-down') {
    margin-top: 20px;
    margin-left: 12px;
    @include flex(1 0 calc(50% - 12px));
  }
  @include respond-to('small-down') {
    margin-top: 12px;
    margin-left: 0;
    @include flex(1 0 100%);
  }
  .shopify-payment-button {
    @include flex(1 0 100%);
    margin-bottom: 0;
    max-width: 100%;
    @include respond-to('widescreen-up'){
      @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(#dc6511);
    color: secondary-button-color(#dc6511);
    box-shadow: none;
    line-height: 1.2;
    padding: 10px 0;
    min-height: 44px;
    height: 100%;
    @include flex(1 0 100%);
    margin: 0;
    max-width: 100%;
    @include respond-to('widescreen-up'){
      @include flex(1 0 calc(50% - 4px));
      max-width: calc(50% - 4px);
    }
    @include respond-to('medium-down') {
      margin-bottom: 10px;
    }
    &:hover {
      @include respond-to('medium-up') {
        background-color: #dc6511;
        color: #ffffff;
      }
    }
    &:focus {
      background-color: #dc6511;
      color: #ffffff;
    }
  }
}

.purchase-details__buttons.purchase-details__spb--true {
  @include flex(1 0 100%);
  margin-top: 10px;
  margin-left: 0;
  @include respond-to('medium-down') {
    margin-left: 0;
    margin-bottom: 0;
  }
  .action_button.action_button--secondary {
    @include flex(1 0 50%);
    max-width: calc(50% - 6px);
    @include respond-to('medium-down') {
      @include flex(1 0 100%);
      margin-right: 0px;
      margin-top: 0;
      margin-bottom: 10px;
      max-width: 100%;
    }
  }
  .shopify-payment-button {
    margin-left: 6px;
    max-width: calc(50% - 6px);
    height: inherit;
    @include respond-to('medium-down') {
      margin-left: 0;
      margin-top: 0;
      margin-bottom: 10px;
      max-width: 100%;
    }
  }
}

// When product is unavailable
.purchase-details__buttons {
  &.product-is-unavailable {
    .add_to_cart,
    .shopify-payment-button {
      opacity: 0.5;
      pointer-events: none;
    }

    .add_to_cart {
      padding: 10px 5px;
    }
  }
}

.sidebar--true .purchase-details {
  @include respond-to('large-down') {
    @include flex-direction(column);
    @include align-items(flex-start);
    .purchase-details__quantity,
    .purchase-details__buttons {
      margin: 0 0 10px;
      width: 100%;
    }
    .action_button.action_button--secondary,
    .shopify-payment-button {
      @include flex(1 0 100%);
      margin: 0 0 10px;
      max-width: 100%;
    }
  }
}

#checkout {
  min-height: 54px; /* Match the height of additional checkout buttons. */
}

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

.additional-checkout-button,
.additional-checkout-button.additional-checkout-button--paypal,
.additional-checkout-button.additional-checkout-button--google-pay {
  min-width: 100% !important; /* Overwrite inline style */
}

/* #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-down') {
      font-size: 12px;
    }
    @include respond-to('small-down') {
      margin-right: 20px;
    }
}
ul.tabs li a.active {
    border-bottom: solid 3px #cccccc;
    background-color: #ffffff;
    border-bottom: solid 3px #f1f1f1;
    height: 31px;
    position: relative;
    border-right-width: 1px;
    color: #000000;
}
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: #ffffff;

.faqAccordion,
.accordion {

  &>dt {

    &>a,
    &>button {
      background: transparent;
      position: relative;
      padding: 20px 20px 20px 40px;
      color: #6b6b6b;
      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: Roboto, sans-serif;
      font-style: normal;
      box-shadow: none;
      border-radius: 0px;
      font-size: 18px;

      &:hover,
      &:focus {
        background: darken($accordionBg, 3%);
        border: none;
        border-bottom: 1px solid #cccccc;
        color: #dc6511;
      }

      &::after {
        @include prefix(transform, translateY(-50.1%), ms webkit spec);
        position: absolute;
        top: 50%;
        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: #000000;
    padding: 20px 0px 20px 0px;
    display: none;

    &[aria-hidden="true"] {
      display: none;
    }

    @include respond-to('medium-down') {
      margin-left: 15px;
    }
  }
}

.accordion dt small {
  display: none;
}

//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;
    
    @include respond-to('small-down') {
      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 !important; //To ensure arrows arent present in firefox
}
select::-ms-expand {
  display: none;
}

select {
  background: #fff url(//alpinefoxshop.ch/cdn/shop/t/35/assets/select.png?v=106766744789554721221755705681) no-repeat 96% 50%;
  background-size: 18px 12px;
  
    padding: 8px 14px 8px;
    border-radius: 0;
  
  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: 600;
    font-size: 13px;
    text-align: left;
    margin-bottom: 5px;
    text-transform: none;
      }
input[type="checkbox"] {
    display: inline; }
label span,
  legend span {
    font-weight: 600;
    font-size: 13px;
    color: #444; }
textarea {
  min-height: 120px;
  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;
}

/* #Contact Form
================================================== */

div.container.contact-form-container {
  padding-top: 0;
}

.contact-form {
  .contact-form__content {
    margin-bottom: 20px;
  }
}

.contact-form,
.custom-contact-form {
  label {
    margin-bottom: 12px;
  }

  ul li label {
    font-family: Roboto, sans-serif;
    text-transform: none;
    font-weight: 400;
  }
}

.contact-form__position--right,
.custom-contact-form__position--right {
  float: right;
}

.custom-contact-form {
  .contact-block {
    margin-bottom: 20px;
  }

  .custom-contact-form__image {
    margin-bottom: 20px;
  }

  .custom-contact-form__social .social_icons {
    padding: 0;
    margin-bottom: 40px;
  }

  .custom-contact-form__logo {
    max-width: 150px;
    margin: 0 auto 20px auto;
  }

  .contact-block.contact-block--richtext label p {
    display: inline;
  }

  .contact-block--checkbox,
  .contact-block--radio {
    ul {
      padding: 0;
      margin: 0;

      li {
        margin-bottom: 8px;
        list-style: none;
        @include flexbox;
        @include align-items(baseline);

        input {
          margin-right: 10px;
          position: relative;
          top: 2px;
        }

        label {
          margin-bottom: 0;
        }

        &:last-child label {
          margin-bottom: 0;
        }
      }
    }
  }
}

.page-contact {
  .footer {
    margin-top: 0;
  }
  .custom-contact-form {
    margin-top: 25px;
  }
}

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

ul.cart_items {
  padding-top: 0;
  padding-bottom: 0;
}
.cart_content li.mini-cart__item {
  padding: 0 0 15px 0;
  margin-bottom: 15px;
  border-bottom: 1px solid #cccccc;
}
.cart_content .notification-discount {
  color: #dc6511;
  padding: 15px 0 0;
  margin: 0;
  line-height: 1;
}
li.mini-cart__item a, li.mini-cart__item a:active,
#header li.mini-cart__item a, #header li.mini-cart__item a:active {
  position: relative;
  font-size: inherit;
  text-align: left;
}

.cart_image {
  float: left;
  width: 100%;
  max-width: 100px;
  min-width: 100px;
  text-align: center;
  padding-right: 20px;

  img {
    display: block;
  }

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

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

.cart__blocks {
  margin-top: 30px;
}
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;
}

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

.product_section .description.bottom {
  margin-top: 15px;
  border-bottom: none;
}

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

  
}

.sale_banner_product {
  background: #dc6511;
}

.new_banner_product,
.preorder_banner_product {
  background: #03a196;
}

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

  @include respond-to('medium-down'){
    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-down'){
    text-align: center;
  }
}

.share_article .social_buttons {
  border-top: none;
  padding-top: 0;
  @include respond-to('medium-down'){
    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;
    

  }
}

.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-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;
  -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;
    @include respond-to($medium-down) {
      width: calc(100% - 88px);
    }
  }
  .product-plus,
  .product-minus {
    background: #f2f2f2;
    font-weight: 300;
    position: relative;
    cursor: pointer;
    height: 44px;
    display: block;
    width: 44px;
    text-align: center;
    float: left;
    &:hover {
      background: #d9d9d9;
    }
    @include respond-to('medium-down') {
      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-down'){
    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-down') {
      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-down') {
    @include flex-direction(column);
    margin-left: 0px;
    margin-right: 0px;
  }

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

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

.newsletter-both-names--true {
  input.firstName {
    margin-right: 5px;
  }
}

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

.js-newsletter-popup {
  display: none;
}

.newsletter__lightbox .fancybox-content {
  width: 100%;
  max-width: 740px;
  padding: 0;
  
}

.newsletter__lightbox .fancybox-close-small {
  
  @include respond-to('small-down') {
    display: block;
  }
  svg path {
    @include respond-to('medium-down') {
      fill: white;
    }
  }
  
    display: none;
  
}

.newsletter__lightbox .fancybox-toolbar {
  display: none;
}

.newsletter-popup {
  @include flexbox();
  
  background-color: #ffffff;
  padding: 0;
  width: 100%;
  @include respond-to('medium-down'){
    line-height: 0;
    @include flex-direction(column);
  }
}

.popup-signup-show--true input.sign_up {
  @include respond-to($medium) {
    margin-left: 0px;
  }
}

.popup-signup-show--false {
  display: none;
}

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

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

.newsletter-info {
  text-align: center;
  color: #363636;
  background-color: #ffffff;
  height: auto;
  float: left;
  @include respond-to('medium-down') {
    padding: 20px;
    width: 100% !important;
    position: relative;
  }
  input.contact_email[type="email"] {
    width: 65%;
    float: left;
    @include respond-to('large-down') {
      width: 100%;
    }
  }
  #contact_form input.sign_up[type="submit"] {
    width: calc(35% - 10px);
    @include respond-to('large-down') {
      width: 100%;
    }
  }
  .input-row {
    margin-right: 0;
    margin-left: 0;
  }
  .popup-signup-show--true {
    margin-top: 20px;
  }
}

.newsletter-image--true {
  .newsletter-popup__content {
    width: 60%;
    @include flexbox();
    @include align-items(center);
    @include justify-content(center);
    @include respond-to('medium-down') {
      width: 100%;
      display: block;
    }
  }
  @include respond-to('large-up') {
    max-height: 875px;
  }
}

.newsletter-image--true.object-fit--none {
  @include respond-to('large-up') {
    height: auto;
  }
}

.newsletter-image--false {
  @include justify-content(center);
  .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 {
  padding: 40px;
  margin: 0 auto;
  @include respond-to('medium-down') {
    font-size: inherit;
    width: auto;
  }
  @include respond-to('small-down') {
    padding: 20px;
  }
  @include respond-to('large-up') {
    min-width: 350px;
  }
  @include respond-to('widescreen-up') {
    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-bottom: 0;

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

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

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

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

.newsletter_section {
  -webkit-transform:translate3d(0,0,0);
  background-color: #cccccc;
  color: #000000;

  h2 {
    color: #000000;
    margin-top: 0;
  }

  p {
      padding-top: 7px!important;
      padding-bottom: 7px!important;
    line-height: 1.5;
    margin-bottom: 25px;
    }

    .sign_up {
          width: 160px;
    }
}

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

.section_form {
  padding: 10px 20px;

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

.newsletter_section h5 {
  color: #000000 !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;

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

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

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

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

.footer-section {
  .newsletter_section {
    background-color: transparent;
    color: #ffffff;
    h6 {
      color: #000000;
      font-size: 16px;
    }
    p {
      padding: 15px 0;
    }
    .newsletter {
      width: 100%;

      input {
        width: 100%;
        border: none;
        font-size: 16px;
        &.contact_email {
          color: black;
        }
        &::placeholder {
          color: black;
        }
      }
      .action_button {
        margin-left: 0;
      }
    }
  }
}


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


  table:not(#customer-orders):not(#order-details) {
    th {
      background-color: $table-background-color;
    }

    th,
    td {
      padding: 10px;
      border-right: 1px solid $table-border-color;

      &:first-child {
        border-left: 1px solid $table-border-color;
      }
    }

    tr {
      border-bottom: 1px solid $table-border-color;

      &:first-child {
        border-top: 1px solid $table-border-color;
      }
    }
  }


/* Responsive order tables */

.collapsible-table {
  width: 100%;
  margin-bottom: 20px;

  th {
    font-weight: 700;
    text-align: left;
  }

  th,
  td {
    padding: 10px;

    @include respond-to('medium-down') {
      border-left: none;
    }
  }

  tr .order_summary td.label {
    text-align: right;
  }

  .order-details__discount-block {
    display: block;
  }

  @include respond-to('medium-down') {
    thead {
      display: none;
    }

    tr {
      display: block;
      margin-bottom: 20px;

      &:last-child {
        margin-bottom: 0;
      }

      td {
        position: relative;
      }
    }

    td {
      display: block;
      @include flexbox();
      @include align-items(center);
      @include justify-content(space-between);
      padding: 0 10px 0 0;

      &:before {
        content: attr(data-label);
        z-index: 1;
        padding: 6px;
        font-weight: 600;
        width: calc(50% - 6px);
        word-break: break-word;
      }

      &:after {
        content: "";
        z-index: 0;
        width: 50%;
        min-height: 100%;
        position: absolute;
      }

      &:last-child {
        border-bottom: none;
      }
    }

    tfoot {
      display: block;
      margin-top: 20px;

      tr {
        margin-bottom: 0;
        border-bottom: none;

        &:last-child {
          border-bottom: 1px solid $table-border-color;
        }
      }
    }

    .order-details__total,
    .order-details__product,
    .order-details__discount {
      text-align: right;
      padding-left: 10px;
      width: calc(50% - 10px);
      word-break: break-word;
    }
  }
}

#customer-orders,
#order-details {
  th {
    background-color: $table-background-color;
  }

  th,
  td {
    border-right: 1px solid $table-border-color;

    &:first-child {
      border-left: 1px solid $table-border-color;

      @include respond-to('medium-down') {
        border-left: none;
      }
    }
  }

  tr {
    border-bottom: 1px solid $table-border-color;

    &:first-child {
      border-top: 1px solid $table-border-color;
    }
  }

  @include respond-to('medium-down') {
    tr {
      border: 1px solid $table-border-color;
      border-bottom: none;
    }

    td {
      border-right: none;
      border-bottom: 1px solid $table-border-color;

      &:after {
        border-right: 1px solid $table-border-color;
        background-color: $table-background-color;
      }
    }

    tfoot {
      td {
        border-bottom: none;
      }

      &:last-child {
        border-bottom: 1px solid $table-border-color;
      }
    }
  }
}

/* #Misc
================================================== */

.allow-clickthrough { pointer-events: none !important; }
.hidden { display: none; }
.hidden--mobile {
  @include respond-to('small-down') {
    display: none !important; /* Force on mobile devices */
  }
}
.remove{ color: #000000; }
.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; }
.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: 600; }

.warning--quantity {
  clear: both;
  display: inline-block;
  margin-top: 15px;
  width: auto;
  text-align: left;
}
.large--right {
  @include respond-to('medium-up') {
    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;
}
.mini-cart__item p.warning {
  margin-top: 5px;
  text-align: left;
}
.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: #dc6511;
  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; }

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

.shopify-reviews.reviewsVisibility--false { display: none; }

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

.testimonial-section {
  position: relative;

  .set-static {
    @include flexbox();
    .caption {
      position: static;
      @include prefix(transform, translateY(0), ms webkit spec);
      padding: 40px;
      margin: auto;
    }
  }

  .set-testimonial-height {
    height: 95%;
  }

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

  .feature_divider {
    margin: 25px auto;
    width: 10%;
    display: inline-block;
    @include respond-to('small-down') {
      margin: 5px auto;
    }
  }

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

.testimonial-block.gallery-cell.use-mobile-color {
  background-color: #ffffff;
  .caption .caption-content p {
    color: #ffffff;
    @include respond-to('small-down') {
      text-shadow: none;
    }
  }
}

$banner-crop-height: 60vh;

.mobile-banner--crop-left {
  @include respond-to('small-down') {
    @include object-fit(cover, left);
    min-height: $banner-crop-height;
  }
}

.mobile-banner--crop-right {
  @include respond-to('small-down') {
    @include object-fit(cover, right);
    min-height: $banner-crop-height;
  }
}

.mobile-banner--crop-center {
  @include respond-to('small-down') {
    @include object-fit(cover, center);
    min-height: $banner-crop-height;
  }
}

.caption-content.testimonial-text {
  width: 80%;
  .subtitle {
    text-transform: none;
    color: #ffffff;
    @include respond-to('small-down') {
      font-weight: normal;
      font-size: 14px;
    }
  }
  h2,
  p.headline {
    color: #ffffff;
    @include respond-to('small-down') {
      text-shadow: none;
    }
  }
}

.caption-content.testimonial-text-mobile h2,
.caption-content.testimonial-text-mobile .subtitle,
.caption-content.testimonial-text-mobile p.headline {
  @include respond-to('small-down') {
    color: #000000;
  }
}

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

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

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

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

/* #Team Template
================================================== */

.team-page__content--left {
  @include flexbox();
  @include respond-to('medium-down') {
    @include flex-direction(column);
  }
}

.team-page__content--right {
  @include flexbox();
  @include flex-direction(row-reverse);
  @include respond-to('medium-down') {
    @include flex-direction(column);
  }
}

.team-page__text,
.team-page__image,
.team-page__image img { width: 100% }

.team-page__content--multiple .team-page__text,
.team-page__content--multiple .team-page__image, {
  max-width: 50%;
  width: 100%;
  @include respond-to('medium-down') {
    max-width: 100%;
  }
  &:first-child { margin-right: 20px; }
}

.team-page__text {
  @include flexbox();
  @include align-items(center);
  @include justify-content(center);
}

.team-page__container {
  max-width: 70%;

  @include respond-to('small-down') {
    max-width: 90%;
  }
}

.team-member__profile.columns,
.team-member__profile.column {
  margin-bottom: 30px;
}

.team-member__name { padding-top: 10px; }

.team-member__wrap {
  position: relative;
  &:hover .team-member__overlay {
    opacity: 1;
  }
}

.team-member__overlay {
  opacity: 0;
  transition: opacity 0.3s linear;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.team-member__details {
  @include prefix(transform, translateY(-50.1%), ms webkit spec);
  top: 50%;
  padding: 10px 0;
  position: absolute;
  width: 100%;
  padding: 20px;

  img { display: block; }

  p {
    margin-top: 10px;
    line-height: 1.3;
  }

  .icon-twitter {
    display: inline-block;
    vertical-align: middle;
  }
}

.team-member__title {
  padding-bottom: 0;
  text-align: center;
  margin-bottom: 0;
  text-transform: uppercase;
  line-height: 1;
  &:after {
    width: 30%;
    display: block;
    margin: 0 auto;
    content: '';
    height: 3px;
    margin-top: 20px;
  }
}

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

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

  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: 0;

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

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

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

.gallery-section {
  text-align: center;

  .container {
    padding: 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(#6b6b6b, 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-zoom {
      color: white;
      font-size: 1.5em;
      top: 50%;
    }
  }

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

.page-details-section,
.product-details-section {
  .container.full-width--true {
    padding: 0;
  }

  .full-width--true .gallery-image-wrapper {
    margin: 0;
    width: 33.33333%;

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

.two-per-row .overlay .icon-zoom {
  font-size: 2.5em;
}

.three-per-row .overlay .icon-zoom {
  font-size: 2em;
}

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

//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%;
    @include respond-to('medium-down') {
      width: 100%;
    }
  }

  .three-per-row {
    width: 33.333%;
    @include respond-to('medium-down') {
      width: 100%;
    }
  }

  .four-per-row {
    width: 25%;
    @include respond-to('medium-down') {
      width: 100%;
    }
  }

  .five-per-row {
    width: 20%;
    @include respond-to('medium-down') {
      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: block;
      width: 100%;
      margin: 0 0 5px 0;
      box-sizing: border-box;
      -webkit-column-break-inside: avoid;
      -webkit-backface-visibility: hidden;
      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;
  }
}

.rv-main .flickity-page-dots {
  bottom: 25px;
  @include respond-to('medium-down') {
    display: none;
  }
}

//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-down') {
        display: block;
      }
    }
  }

  .recently-viewed__title {
    display: none;
  }

  .rv-sidebar-element {
    max-width: 75%;

    .product_image a {
      display: block;
      min-width: 100%;
      margin-bottom: 10px;
    }

    .product_image img {
      height: auto;
    }

    .thumbnail-overlay .sold-out {
      color: #000000;
    }
  }

  .product-list .thumbnail {
    @include respond-to('medium-down') {
      .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: #000000;
        padding: 0;
      }

      .title,
      .price {
        font-size: 16px;
      }
    }

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

      .quick_shop {
        display: none;
      }
    }
  }
}

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

//Hide duplicates
.rv-box-element .js-recently-viewed-product:nth-child(2),
.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: #000000;
    border-left: 0;
    border-right: 0;
    a .title {
      color: #ffffff;
      transition: all 0.3s ease-in-out;
    }
    a:hover {
      background: #000000;
    }
    a:hover .title {
      color: #ffffff;
    }
    a:hover span {
      color: #ffffff;
    }
  }
  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__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(220, 101, 17, 0.1);
    }
    a:active {
      background-color: rgba(220, 101, 17, 0.3);
    }
    img {
      display: block;
    }
  }

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

  .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: #dc6511;
  }
  a {
    color: #ffffff;
    background-color: #dc6511;
    &:hover {
      background-color: #dc6511;
    }
  }
}


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

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

.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: 16px;
    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: #dc6511;
    width: 100%;
    margin: 0;
    span {
      display: block;
      width: 100%;
      text-align: center;
      padding-left: 0;
    }
    span.item-pricing {
      color: #dc6511;
    }
    a,
    a:active {
      color: #ffffff;
      padding: 20px;
      text-align: center;
      display: block;
      line-height: 1;
    }
    &:hover {
      background-color: #dc6511;
    }
  }
}

.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-radius: 0px;
  
  &: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: 18px 0px 15px 0; }

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

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

.main-nav div.logo a {
  color: #1e1e1e !important;
  outline: 0;
}

.menu-position--inline.logo-position--left div.logo {
  text-align: left;
}

.menu-position--inline.logo-position--center {
  .logo {
    text-align: center;
    img {
      margin: 0 auto;
    }
  }
}

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

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

/* Currency / language switcher in header */

#header__selector-form {

  .icon-arrow-down {
    font-size: 9px;
  }

  .disclosure__toggle {
    background-color: transparent;
    border: none;
    position: relative;
    padding: 0 0 0 16px;
    letter-spacing: 0px;

    &:hover,
    &:focus {
      background-color: transparent;
    }
  }

  .disclosure__list-wrap {
    border: none;
    bottom: initial;
    position: absolute;
    top: 100%;

    .disclosure-list {
      list-style: none;
    }
  }

  .disclosure-list__item {
    display: block;
  }

  button.disclosure__button {
    letter-spacing: 0px;
  }

  .currency-preview {
    position: relative;

    select.currencies {
      background-image: none;
      z-index: 1000;
    }

    .icon-down-arrow {
      position: absolute;
      top: 50%;
      right: 10px;
      color: #000000;
      -ms-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      z-index: 999;
      &:hover {
        color: inherit;
      }
    }

    &:hover {
      .icon-down-arrow,
      select.currencies {
        color: #dc6511;
      }
    }
  }
}

/* #Currency / Language switcher
================================================== */

.selectors-form__wrap,
.selectors-form,
.selectors-form__item {
  margin: 0;
}

.selectors-form__wrap {
  @include flexbox();
  @include justify-content(flex-end);
}

.disclosure {
  position: relative;
}

// fix for capitalization issue in cross border
.disclosure-text-style-none {

  button.disclosure__toggle,
  button.disclosure__button {
    text-transform: capitalize;
  }
}

.disclosure-text-style-uppercase {

  button.disclosure__toggle,
  button.disclosure__button {
    text-transform: uppercase;
  }
}

.disclosure-text-style-lowercase {

  button.disclosure__toggle,
  button.disclosure__button {
    text-transform: lowercase;
  }
}

.disclosure__toggle {
  color: #000000;
  font-size: 17px;
  font-family: Oswald, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  border: 1px solid #cccccc;
  background-color: transparent;
  margin-right: 20px;
  min-height: 0;
  transition: color .1s linear;

  &:hover,
  &:focus {
    opacity: 1;
  }


  &.is-clicked {
    color: #dc6511;

    &:focus {
      color: #ffffff;
    }
  }

  &.is-clicked + .disclosure__list-wrap {
    visibility: visible;
    opacity: 1;

    .disclosure-list {
      display: block;
    }
  }

  .icon-down-arrow {
    margin-left: 8px;
  }
}

.disclosure__list-wrap {
  background-color: #f1f1f1;
  border: 1px solid #cccccc;
  bottom: 100%;
  visibility: hidden;
  position: absolute;
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease-in;

  &.disclosure--left {
    left: auto;
    right: 0;
  }

  .disclosure-list {
    list-style: none;
    white-space: nowrap;
    margin-left: 0;
    margin-bottom: 0;
    padding: 0;
    margin-top: 0;
    display: none;
  }
}

.disclosure-list__item {
  background-color: inherit;
  color: inherit;
  line-height: 1;
}

button.disclosure__button {
  background-color: inherit;
  color: #000000;
  font-size: 17px;
  letter-spacing: 0px;
  font-family: Oswald, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0px;
  text-align: left;
  transition: color .1s linear;
  opacity: 1;

  &:hover,
  &[aria-current="true"] {
    color: #dc6511;
  }

  &:focus {
    color: #ffffff;
  }
}

/* Pagination & infinite scrolling */

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

.paginate {
  padding-bottom: 20px;
}

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

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

.paginate .next,
.paginate .prev {
  display: inline-block;
  margin: 10px 0;
  padding: 0.5rem 1rem;
  a, span {
    color: black;
  }
}

.load-more {
  display: none;
  width: 100%;
}

.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('//alpinefoxshop.ch/cdn/shop/t/35/assets/loader.gif') center center no-repeat;
  background-size: 32px 32px;
  margin: 0 auto;
}

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

.collection-matrix.loading-in-progress + .load-more__icon,
.search-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: 0;
  margin-top: 5px;
  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-down'){
      display: none;
    }
    @include respond-to('widescreen-up'){
      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%;
    @include object-fit(contain, top center);
  }
  .product-info__caption {
    
      display: block;
    
    margin-top: 20px;
    @include respond-to('medium-down'){
      display: block;
    }
  }
}

@include respond-to('large-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

  .has-secondary-media-swap {

    img {
      visibility: visible;
      height: auto;
    }

    .secondary-media-hidden {
      opacity: 0;
      visibility: hidden;
      height: 0 !important; // override inline height on image-element snippet
    }
  }


/* Thumbnail overlay */



.quick_shop,
.view_all {
  font-family: Oswald, sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
  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;
  
  &:hover {
    
      color: #000000;
      background-color: #ffffff;
    
  }
}


.thumbnail {

  .price span.money {
    color: #000000;/*#dc6511;*/
    &:hover {
      color: #dc6511;
    }
  }
  .sale span.money {
    color: #dc6511;
  }
  .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 {
      max-height: 200px;
      width: 100%;
      @include object-fit(contain);
    }

    .thumbnail video,
    .thumbnail .plyr--youtube {
      width: 100%;
      max-height: 200px;
    }

    .thumbnail .plyr--youtube {
      height: 200px;
    }

    .thumbnail .plyr--youtube .plyr__video-embed {
      height: 100%;
    }
  }




/* Sold out and coming soon text */

.thumbnail .sold-out,
.thumbnail .coming-soon {
  opacity: 0.5;
  color: #000000;
}

.thumbnail-overlay .sold-out,
.thumbnail-overlay .coming-soon {
  opacity: 0.5;
  color: #ffffff;
}

/* Sale text */

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

.banner_holder {
  position: absolute;
  top: 0;
  right: 0;
}

.sale_banner, .new_banner, .preorder_banner {
  background: #dc6511;
  font-family: Oswald, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0px;
  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-down'){
    padding: 4px 10px;
    font-size: smaller;
  }
}

.new_banner, .preorder_banner {
  background: #03a196;
}

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: 10px 0;
  font-family: Oswald, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0px;
  color: #dc6511;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  &:hover, &:active, &:visited {
    color: #dc6511;
  }
}

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

.thumbnail .sold-out {
  font-weight: 400;
}

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

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

.cart_page_image {
  text-align: center;
  margin: 10px 0 20px;
  display: block;
  img {
    width: 100%;
    display: block;
  }
}
.cart_content_info {
  padding: 0;

  h5 {
    padding: 0;
    margin-bottom: 10px;
    margin-top: 0;
  }

  .price_total {
    clear: both;
    padding: 0;
    margin-bottom: 20px;
    font-size: 20px;
  }
}
.subtotal {
  padding-top: 20px;
  padding-left: 40px;
  @include respond-to('medium-down') {
    padding-left: 0;
  }
}

.continue-shopping {
  display: block;
  color: secondary-button-color(#dc6511);
  text-align: center;
  font-family: Oswald, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0px;
  margin-top: 20px;
}

.subtotal_amount {
  font-size: 1.4em;
  font-weight: 600;
}
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;
}

.js-sizechart-lightbox {
  cursor: default !important; //using important to overwrite the fancybox styles
}

.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: 16px;
  display: block;
}
.thumbnails a {
  display:block;
  margin-bottom: 1em;
}

.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 .modal_price,
.modal_price {
  font-size: 20px;
  margin-bottom: 10px;
}

.product_section .modal_price,
.quick-shop__text-wrap .modal_price {
  @include flexbox();
  @include flex-wrap(wrap);

  .price__container,
  .sold-out__container {
    display: inline-block;
  }

  .price__container--display-price-true.has-margin-right {
    margin-right: 10px;
  }

  .sold_out__container {
    min-width: 150px;
  }
}

.quick-shop__text-wrap .modal_price {
  &.variant-unavailable .price__container {
    display: none;
  }
}

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

  a {
    color: #6b6b6b;
  }
}

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

.article-wrap {
  padding-bottom: 25px;

  .article__title {
    @include respond-to('medium-up') {
      margin-top: 0;
    }
  }

  .continue-button {
    @include respond-to('medium-up') {
      margin-bottom: 0;
    }
  }
}

.read-more-link {
  margin-top: 10px;
  margin-bottom: 25px;
  display: inline-block;
}

.article h3.sub_title {
  letter-spacing: 0;
  margin: 10px auto 0;
}

.article_content {
  margin-top: 20px;
}

.excerpt {
  line-height: 1.5;
  margin:1em 0;
}

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

#contact_form .action_button.sign_up {
  display: inline-block;
  width: 160px;
  padding-left: 0;
  padding-right: 0;
  float: none;
  background-color: black;
  border-color: black;
  font-weight: 600;
}

body.article { padding-bottom: 0 }

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

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

  input {
    width: 100%;
    
  }
}

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

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

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

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

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

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

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

    @include respond-to('small-down') {
      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-down') {
    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-down'){
    width: 100%;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 15px;
  }
}

.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-down'){
    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;
    font-size: 16px;
  }
  /* 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;
    @include object-fit(fill);
  }
  .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;
  }


//Fancybox

.fancybox-bg {
  opacity: 1;
  background-color: rgba(43,46,56,0.9);
  @include respond-to('small-down') {
    background-color: rgba(255,255,255,0.99)
  }
}

.fancybox-toolbar {
  @include respond-to('small-up') {
    display: none;
  }
}

.fancybox-slide {
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    padding: 44px 0;
  }
}

/* Add border around images */
.fancybox-slide--image {
  @include respond-to('small-up') {
    padding: 44px;
  }
  .fancybox-image {
    @include object-fit(contain);
    height: 100%;
  }
  .fancybox-image-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .fancybox-content {
    padding: 0;
    background-color: white;
    @include respond-to('small-up') {
      box-shadow: 0px 0px 0px 30px rgba(255,255,255,1);
    }
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      position: relative !important;
      width: 100%;
      height: 100%;
    }
  }
  .fancybox-close-small {
    top: -30px;
    right: -30px;
  }
}

.fancybox-is-scaling .fancybox-image-wrap,
.fancybox-can-pan .fancybox-image-wrap {
  width: 100%;
  height: 100%;
  margin: 0;
}

/* Hide elements while zooming or when zoomed-in */
.fancybox-is-scaling .fancybox-item,
.fancybox-can-pan .fancybox-item {
  display: none !important;
}

/* Style close button */
.fancybox-close,
.fancybox-close-small {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 36px;
  height: 36px;
  z-index: 2;
  color: #95979c;
  background-color: transparent;
  svg {
    display: none;
  }
  &:hover {
    color: black;
  }
  @include respond-to('small-down') {
    display: none;
  }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    display: block !important;
  }
}

.fancybox-close:before,
.fancybox-close-small: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;
}

.fancybox-button {
  min-height: auto;
  @include respond-to('small-down') {
    background-color: white;
    svg path {
      fill: #95979c;
    }
  }
}

/* Style navigation elements */
.fancybox-content:hover .fancybox-nav {
  opacity: 1;
}

.fancybox-nav {
  transition: opacity 0.2s linear;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  
    background-color: hsla(0, 0%, 100%, 0.25);
  
  display: flex;
  justify-content: center;
  align-items: center;
  span {
    pointer-events: none;
  }
  svg path {
    fill: #333333;
  }
}

.fancybox-next {
  right: 0;
}

.fancybox-prev {
  left: 0;
}

.fancybox-nav:hover {
  
    background-color: hsla(0, 0%, 100%, 0.5);
  
}

.fancybox-nav span {
  position: absolute;
  width: 36px;
  height: 36px;
  cursor: pointer;
}

.touchevents .fancybox-nav {
  @include respond-to('large-down') {
    display: none;
  }
}

.size-chart-wrap img {
  height: auto;
  max-width: 100%;
}

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

.footer {
  font-size: 16px;
  padding: 20px 0;
  border-top: solid 1px #dc6511;
  background-color: #dc6511;
  background-position: center center;
  color: #ffffff;
  
  pointer-events: all;

  .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-down'){
      display: block;
      padding-top: 20px;
    }
  }
}

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

img.footer-logo {
  width: 75%;
  max-width: 250px;
  margin-bottom: 10px;
  display: inline-block;
  @include respond-to('medium-down'){
    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: #000000;
  font-size: 16px;
  font-weight: 600;
  @include respond-to('medium-down'){
    border-top: 1px solid #dc6511;
    margin-bottom: 5px;
    padding: 10px 0 5px;
  }
}

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

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

.footer a,
.footer a:visited {
  color: #ffffff;
  font-size: 16px;
}

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

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

.footer ul li {
  margin-bottom: 12px;
  line-height: 1.1;
  p {
    margin-bottom: 12px;
  }
}
.footer form {
  margin-bottom: 0;
}

.footer-menu-wrap {
  text-align: left;
  padding-top: 40px!important;
}

.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 #dc6511;
  margin-top:10px;
}

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

  @include respond-to('medium-up'){
    float: right;
    margin-right: 0px;
    text-align: right;
  }
}
.payment_methods svg {
  padding-right: 4px;
  height: 30px;
  width: 48px;
  &:last-of-type {
    padding-right: 0px;
  }
}
.credits {
  text-align: left;
  padding-top: 28px;
  color: black;
  font-weight: 600;

  a {
    color: black!important;
  }

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

/* Currency / language switcher in footer */

.footer-menu__disclosure {
  @include respond-to('medium') {
    @include justify-content(flex-start);
  }

  .selectors-form__item:last-of-type .disclosure__toggle {
    margin-right: 0;
  }

  .disclosure {
    padding-top: 16px;
    margin-top: -8px;
    min-height: 44px;
  }

  .disclosure__toggle {
    background-color: white;
    color: #000000;
    font-size: 16px;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    padding: 0 10px;
  }

  .disclosure-list {
    background-color: white;
    padding-top: 0;
  }

  .disclosure-list__item {
    margin-bottom: 0;
  }

  button.disclosure__button {
    color: #000000;
    font-size: 16px;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;

    &:hover,
    &[aria-current="true"] {
      opacity: 0.5;
    }
  }
}

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:not(.currency-code),
  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-down'){
  .footer-menu-wrap, .sidebar, #mobile_menu {
    h6 {
      padding-top: 8px;
      cursor: pointer;
      border-top: 1px solid #000000;
      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('medium-up'){
  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: #ffffff;
  }
}

.promo-banner {
  background-color: #dc6511;
  text-align: center;
  color: #ffffff;
  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-down'){
      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: #ffffff;
    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 {
  position: relative;
  transition: padding-top 0.3s linear;
  @include respond-to('small-down') {
    padding-top: 0;
  }
}

$topMenuHeight: 40px;



  .page-banner + #pagecontent {
    padding-bottom: 0;
  }

  .promo-banner--show {
    .page-banner {
      margin-top: calc(#{$topMenuHeight} + #{$promoBannerHeight});
    }
    .page-banner + #pagecontent {
      padding-bottom: 0;
    }
  }

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

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

  .index.promo-banner__show {
    #pagecontent {
      display: block;
      padding-bottom: #{$promoBannerHeight};
    }
  }



@include respond-to('medium-down'){

  .mobile_nav-fixed--true,
  .mobile_nav-fixed--false {
    #pagecontent {
      display: block;
      padding-bottom: $topMenuHeight;
    }
    //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: calc(#{$topMenuHeight} + #{$promoBannerHeight});
    }
    .page-banner {
      margin-top: calc(#{$topMenuHeight} + #{$promoBannerHeight});
    }
    .page-banner + #pagecontent {
      padding-bottom: 0;
    }
  }

}

/* #Plyr
================================================== */
@keyframes plyr-progress{to{background-position:25px 0}}@keyframes plyr-popup{0%{opacity:.5;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@keyframes plyr-fade-in{from{opacity:0}to{opacity:1}}.plyr{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:subpixel-antialiased;direction:ltr;font-family:Avenir,"Avenir Next","Helvetica Neue","Segoe UI",Helvetica,Arial,sans-serif;font-variant-numeric:tabular-nums;font-weight:500;line-height:1.7;max-width:100%;min-width:50px;position:relative;text-shadow:none;transition:box-shadow .3s ease}.plyr audio,.plyr video{border-radius:inherit;height:auto;vertical-align:middle;width:100%}.plyr button{font:inherit;line-height:inherit;width:auto}.plyr:focus{outline:0}.plyr--full-ui{box-sizing:border-box}.plyr--full-ui *,.plyr--full-ui ::after,.plyr--full-ui ::before{box-sizing:inherit}.plyr--full-ui a,.plyr--full-ui button,.plyr--full-ui input,.plyr--full-ui label{touch-action:manipulation}.plyr__badge{background:#4a5764;border-radius:2px;color:#fff;font-size:9px;line-height:1;padding:3px 4px}.plyr--full-ui ::-webkit-media-text-track-container{display:none}.plyr__captions{animation:plyr-fade-in .3s ease;bottom:0;color:#fff;display:none;font-size:14px;left:0;padding:10px;position:absolute;text-align:center;transition:transform .4s ease-in-out;width:100%}.plyr__captions .plyr__caption{background:rgba(0,0,0,.8);border-radius:2px;-webkit-box-decoration-break:clone;box-decoration-break:clone;line-height:185%;padding:.2em .5em;white-space:pre-wrap}.plyr__captions .plyr__caption div{display:inline}.plyr__captions span:empty{display:none}@media (min-width:480px){.plyr__captions{font-size:16px;padding:20px}}@media (min-width:768px){.plyr__captions{font-size:18px}}.plyr--captions-active .plyr__captions{display:block}.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty)~.plyr__captions{transform:translateY(-40px)}.plyr__control{background:0 0;border:0;border-radius:3px;color:inherit;cursor:pointer;flex-shrink:0;overflow:visible;padding:7px;position:relative;transition:all .3s ease}.plyr__control svg{display:block;fill:currentColor;height:18px;pointer-events:none;width:18px}.plyr__control:focus{outline:0}.plyr__control.plyr__tab-focus{box-shadow:0 0 0 5px rgba(0,179,255,.5);outline:0}a.plyr__control{text-decoration:none}a.plyr__control::after,a.plyr__control::before{display:none}.plyr__control.plyr__control--pressed .icon--not-pressed,.plyr__control.plyr__control--pressed .label--not-pressed,.plyr__control:not(.plyr__control--pressed) .icon--pressed,.plyr__control:not(.plyr__control--pressed) .label--pressed{display:none}.plyr--audio .plyr__control.plyr__tab-focus,.plyr--audio .plyr__control:hover,.plyr--audio .plyr__control[aria-expanded=true]{background:#00b3ff;color:#fff}.plyr--video .plyr__control.plyr__tab-focus,.plyr--video .plyr__control:hover,.plyr--video .plyr__control[aria-expanded=true]{background:#00b3ff;color:#fff}.plyr__control--overlaid{background:rgba(0,179,255,.8);border:0;border-radius:100%;color:#fff;display:none;left:50%;padding:15px;position:absolute;top:50%;transform:translate(-50%,-50%);z-index:2}.plyr__control--overlaid svg{left:2px;position:relative}.plyr__control--overlaid:focus,.plyr__control--overlaid:hover{background:#00b3ff}.plyr--playing .plyr__control--overlaid{opacity:0;visibility:hidden}.plyr--full-ui.plyr--video .plyr__control--overlaid{display:block}.plyr--full-ui ::-webkit-media-controls{display:none}.plyr__controls{align-items:center;display:flex;justify-content:flex-end;text-align:center}.plyr__controls .plyr__progress__container{flex:1;min-width:0}.plyr__controls .plyr__controls__item{margin-left:2.5px}.plyr__controls .plyr__controls__item:first-child{margin-left:0;margin-right:auto}.plyr__controls .plyr__controls__item.plyr__progress__container{padding-left:2.5px}.plyr__controls .plyr__controls__item.plyr__time{padding:0 5px}.plyr__controls .plyr__controls__item.plyr__progress__container:first-child,.plyr__controls .plyr__controls__item.plyr__time+.plyr__time,.plyr__controls .plyr__controls__item.plyr__time:first-child{padding-left:0}.plyr__controls .plyr__controls__item.plyr__volume{padding-right:5px}.plyr__controls .plyr__controls__item.plyr__volume:first-child{padding-right:0}.plyr__controls:empty{display:none}.plyr--audio .plyr__controls{background:#fff;border-radius:inherit;color:#4a5764;padding:10px}.plyr--video .plyr__controls{background:linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.7));border-bottom-left-radius:inherit;border-bottom-right-radius:inherit;bottom:0;color:#fff;left:0;padding:20px 5px 5px;position:absolute;right:0;transition:opacity .4s ease-in-out,transform .4s ease-in-out;z-index:3}@media (min-width:480px){.plyr--video .plyr__controls{padding:10px}}.plyr--video.plyr--hide-controls .plyr__controls{opacity:0;pointer-events:none;transform:translateY(100%)}.plyr [data-plyr=airplay],.plyr [data-plyr=captions],.plyr [data-plyr=fullscreen],.plyr [data-plyr=pip]{display:none}.plyr--airplay-supported [data-plyr=airplay],.plyr--captions-enabled [data-plyr=captions],.plyr--fullscreen-enabled [data-plyr=fullscreen],.plyr--pip-supported [data-plyr=pip]{display:inline-block}.plyr__menu{display:flex;position:relative}.plyr__menu .plyr__control svg{transition:transform .3s ease}.plyr__menu .plyr__control[aria-expanded=true] svg{transform:rotate(90deg)}.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip{display:none}.plyr__menu__container{animation:plyr-popup .2s ease;background:rgba(255,255,255,.9);border-radius:4px;bottom:100%;box-shadow:0 1px 2px rgba(0,0,0,.15);color:#4a5764;font-size:16px;margin-bottom:10px;position:absolute;right:-3px;text-align:left;white-space:nowrap;z-index:3}.plyr__menu__container>div{overflow:hidden;transition:height .35s cubic-bezier(.4,0,.2,1),width .35s cubic-bezier(.4,0,.2,1)}.plyr__menu__container::after{border:4px solid transparent;border-top-color:rgba(255,255,255,.9);content:'';height:0;position:absolute;right:15px;top:100%;width:0}.plyr__menu__container [role=menu]{padding:7px}.plyr__menu__container [role=menuitem],.plyr__menu__container [role=menuitemradio]{margin-top:2px}.plyr__menu__container [role=menuitem]:first-child,.plyr__menu__container [role=menuitemradio]:first-child{margin-top:0}.plyr__menu__container .plyr__control{align-items:center;color:#4a5764;display:flex;font-size:14px;padding:4px 11px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.plyr__menu__container .plyr__control>span{align-items:inherit;display:flex;width:100%}.plyr__menu__container .plyr__control::after{border:4px solid transparent;content:'';position:absolute;top:50%;transform:translateY(-50%)}.plyr__menu__container .plyr__control--forward{padding-right:28px}.plyr__menu__container .plyr__control--forward::after{border-left-color:rgba(74,87,100,.8);right:5px}.plyr__menu__container .plyr__control--forward.plyr__tab-focus::after,.plyr__menu__container .plyr__control--forward:hover::after{border-left-color:currentColor}.plyr__menu__container .plyr__control--back{font-weight:500;margin:7px;margin-bottom:3px;padding-left:28px;position:relative;width:calc(100% - 14px)}.plyr__menu__container .plyr__control--back::after{border-right-color:rgba(74,87,100,.8);left:7px}.plyr__menu__container .plyr__control--back::before{background:#c1c9d1;box-shadow:0 1px 0 #fff;content:'';height:1px;left:0;margin-top:4px;overflow:hidden;position:absolute;right:0;top:100%}.plyr__menu__container .plyr__control--back.plyr__tab-focus::after,.plyr__menu__container .plyr__control--back:hover::after{border-right-color:currentColor}.plyr__menu__container .plyr__control[role=menuitemradio]{padding-left:7px}.plyr__menu__container .plyr__control[role=menuitemradio]::after,.plyr__menu__container .plyr__control[role=menuitemradio]::before{border-radius:100%}.plyr__menu__container .plyr__control[role=menuitemradio]::before{background:rgba(0,0,0,.1);content:'';display:block;flex-shrink:0;height:16px;margin-right:10px;transition:all .3s ease;width:16px}.plyr__menu__container .plyr__control[role=menuitemradio]::after{background:#fff;border:0;height:6px;left:12px;opacity:0;top:50%;transform:translateY(-50%) scale(0);transition:transform .3s ease,opacity .3s ease;width:6px}.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before{background:#00b3ff}.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::after{opacity:1;transform:translateY(-50%) scale(1)}.plyr__menu__container .plyr__control[role=menuitemradio].plyr__tab-focus::before,.plyr__menu__container .plyr__control[role=menuitemradio]:hover::before{background:rgba(0,0,0,.1)}.plyr__menu__container .plyr__menu__value{align-items:center;display:flex;margin-left:auto;margin-right:-5px;overflow:hidden;padding-left:25px;pointer-events:none}.plyr--full-ui input[type=range]{-webkit-appearance:none;background:0 0;border:0;border-radius:26px;color:#00b3ff;display:block;height:19px;margin:0;padding:0;transition:box-shadow .3s ease;width:100%}.plyr--full-ui input[type=range]::-webkit-slider-runnable-track{background:0 0;border:0;border-radius:2.5px;height:5px;transition:box-shadow .3s ease;-webkit-user-select:none;user-select:none;background-image:linear-gradient(to right,currentColor var(--value,0),transparent var(--value,0))}.plyr--full-ui input[type=range]::-webkit-slider-thumb{background:#fff;border:0;border-radius:100%;box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2);height:13px;position:relative;transition:all .2s ease;width:13px;-webkit-appearance:none;margin-top:-4px}.plyr--full-ui input[type=range]::-moz-range-track{background:0 0;border:0;border-radius:2.5px;height:5px;transition:box-shadow .3s ease;-moz-user-select:none;user-select:none}.plyr--full-ui input[type=range]::-moz-range-thumb{background:#fff;border:0;border-radius:100%;box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2);height:13px;position:relative;transition:all .2s ease;width:13px}.plyr--full-ui input[type=range]::-moz-range-progress{background:currentColor;border-radius:2.5px;height:5px}.plyr--full-ui input[type=range]::-ms-track{background:0 0;border:0;border-radius:2.5px;height:5px;transition:box-shadow .3s ease;-ms-user-select:none;user-select:none;color:transparent}.plyr--full-ui input[type=range]::-ms-fill-upper{background:0 0;border:0;border-radius:2.5px;height:5px;transition:box-shadow .3s ease;-ms-user-select:none;user-select:none}.plyr--full-ui input[type=range]::-ms-fill-lower{background:0 0;border:0;border-radius:2.5px;height:5px;transition:box-shadow .3s ease;-ms-user-select:none;user-select:none;background:currentColor}.plyr--full-ui input[type=range]::-ms-thumb{background:#fff;border:0;border-radius:100%;box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2);height:13px;position:relative;transition:all .2s ease;width:13px;margin-top:0}.plyr--full-ui input[type=range]::-ms-tooltip{display:none}.plyr--full-ui input[type=range]:focus{outline:0}.plyr--full-ui input[type=range]::-moz-focus-outer{border:0}.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track{box-shadow:0 0 0 5px rgba(0,179,255,.5);outline:0}.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track{box-shadow:0 0 0 5px rgba(0,179,255,.5);outline:0}.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track{box-shadow:0 0 0 5px rgba(0,179,255,.5);outline:0}.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track{background-color:rgba(255,255,255,.25)}.plyr--full-ui.plyr--video input[type=range]::-moz-range-track{background-color:rgba(255,255,255,.25)}.plyr--full-ui.plyr--video input[type=range]::-ms-track{background-color:rgba(255,255,255,.25)}.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb{box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2),0 0 0 3px rgba(255,255,255,.5)}.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb{box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2),0 0 0 3px rgba(255,255,255,.5)}.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb{box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2),0 0 0 3px rgba(255,255,255,.5)}.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track{background-color:rgba(193,201,209,.66)}.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track{background-color:rgba(193,201,209,.66)}.plyr--full-ui.plyr--audio input[type=range]::-ms-track{background-color:rgba(193,201,209,.66)}.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb{box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2),0 0 0 3px rgba(0,0,0,.1)}.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb{box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2),0 0 0 3px rgba(0,0,0,.1)}.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb{box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(35,41,47,.2),0 0 0 3px rgba(0,0,0,.1)}.plyr__poster{background-color:#000;background-position:50% 50%;background-repeat:no-repeat;background-size:contain;height:100%;left:0;opacity:0;position:absolute;top:0;transition:opacity .2s ease;width:100%;z-index:1}.plyr--stopped.plyr__poster-enabled .plyr__poster{opacity:1}.plyr__time{font-size:14px}.plyr__time+.plyr__time::before{content:'\2044';margin-right:10px}@media (max-width:767px){.plyr__time+.plyr__time{display:none}}.plyr--video .plyr__time{text-shadow:0 1px 1px rgba(0,0,0,.15)}.plyr__tooltip{background:rgba(255,255,255,.9);border-radius:3px;bottom:100%;box-shadow:0 1px 2px rgba(0,0,0,.15);color:#4a5764;font-size:14px;font-weight:500;left:50%;line-height:1.3;margin-bottom:10px;opacity:0;padding:5px 7.5px;pointer-events:none;position:absolute;transform:translate(-50%,10px) scale(.8);transform-origin:50% 100%;transition:transform .2s .1s ease,opacity .2s .1s ease;white-space:nowrap;z-index:2}.plyr__tooltip::before{border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid rgba(255,255,255,.9);bottom:-4px;content:'';height:0;left:50%;position:absolute;transform:translateX(-50%);width:0;z-index:2}.plyr .plyr__control.plyr__tab-focus .plyr__tooltip,.plyr .plyr__control:hover .plyr__tooltip,.plyr__tooltip--visible{opacity:1;transform:translate(-50%,0) scale(1)}.plyr .plyr__control:hover .plyr__tooltip{z-index:3}.plyr__controls>.plyr__control:first-child .plyr__tooltip,.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip{left:0;transform:translate(0,10px) scale(.8);transform-origin:0 100%}.plyr__controls>.plyr__control:first-child .plyr__tooltip::before,.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip::before{left:16px}.plyr__controls>.plyr__control:last-child .plyr__tooltip{left:auto;right:0;transform:translate(0,10px) scale(.8);transform-origin:100% 100%}.plyr__controls>.plyr__control:last-child .plyr__tooltip::before{left:auto;right:16px;transform:translateX(50%)}.plyr__controls>.plyr__control:first-child .plyr__tooltip--visible,.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip--visible,.plyr__controls>.plyr__control:first-child+.plyr__control.plyr__tab-focus .plyr__tooltip,.plyr__controls>.plyr__control:first-child+.plyr__control:hover .plyr__tooltip,.plyr__controls>.plyr__control:first-child.plyr__tab-focus .plyr__tooltip,.plyr__controls>.plyr__control:first-child:hover .plyr__tooltip,.plyr__controls>.plyr__control:last-child .plyr__tooltip--visible,.plyr__controls>.plyr__control:last-child.plyr__tab-focus .plyr__tooltip,.plyr__controls>.plyr__control:last-child:hover .plyr__tooltip{transform:translate(0,0) scale(1)}.plyr--video{background:#000;overflow:hidden}.plyr--video.plyr--menu-open{overflow:visible}.plyr__video-wrapper{background:#000;border-radius:inherit;overflow:hidden;position:relative;z-index:0}.plyr__video-embed,.plyr__video-wrapper--fixed-ratio{height:0;padding-bottom:56.25%}.plyr__video-embed iframe,.plyr__video-wrapper--fixed-ratio video{border:0;height:100%;left:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.plyr--full-ui .plyr__video-embed>.plyr__video-embed__container{padding-bottom:240%;position:relative;transform:translateY(-38.28125%)}.plyr__progress{left:6.5px;margin-right:13px;position:relative}.plyr__progress input[type=range],.plyr__progress__buffer{margin-left:-6.5px;margin-right:-6.5px;width:calc(100% + 13px)}.plyr__progress input[type=range]{position:relative;z-index:2}.plyr__progress .plyr__tooltip{font-size:14px;left:0}.plyr__progress__buffer{-webkit-appearance:none;background:0 0;border:0;border-radius:100px;height:5px;left:0;margin-top:-2.5px;padding:0;position:absolute;top:50%}.plyr__progress__buffer::-webkit-progress-bar{background:0 0}.plyr__progress__buffer::-webkit-progress-value{background:currentColor;border-radius:100px;min-width:5px;transition:width .2s ease}.plyr__progress__buffer::-moz-progress-bar{background:currentColor;border-radius:100px;min-width:5px;transition:width .2s ease}.plyr__progress__buffer::-ms-fill{border-radius:100px;transition:width .2s ease}.plyr--video .plyr__progress__buffer{box-shadow:0 1px 1px rgba(0,0,0,.15);color:rgba(255,255,255,.25)}.plyr--audio .plyr__progress__buffer{color:rgba(193,201,209,.66)}.plyr--loading .plyr__progress__buffer{animation:plyr-progress 1s linear infinite;background-image:linear-gradient(-45deg,rgba(35,41,47,.6) 25%,transparent 25%,transparent 50%,rgba(35,41,47,.6) 50%,rgba(35,41,47,.6) 75%,transparent 75%,transparent);background-repeat:repeat-x;background-size:25px 25px;color:transparent}.plyr--video.plyr--loading .plyr__progress__buffer{background-color:rgba(255,255,255,.25)}.plyr--audio.plyr--loading .plyr__progress__buffer{background-color:rgba(193,201,209,.66)}.plyr__volume{align-items:center;display:flex;flex:1;position:relative}.plyr__volume input[type=range]{margin-left:5px;position:relative;z-index:2}@media (min-width:480px){.plyr__volume{max-width:90px}}@media (min-width:768px){.plyr__volume{max-width:110px}}.plyr--is-ios .plyr__volume{display:none!important}.plyr--is-ios.plyr--vimeo [data-plyr=mute]{display:none!important}.plyr:-webkit-full-screen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-ms-fullscreen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:fullscreen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-webkit-full-screen video{height:100%}.plyr:-ms-fullscreen video{height:100%}.plyr:fullscreen video{height:100%}.plyr:-webkit-full-screen .plyr__video-wrapper{height:100%;position:static}.plyr:-ms-fullscreen .plyr__video-wrapper{height:100%;position:static}.plyr:fullscreen .plyr__video-wrapper{height:100%;position:static}.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative;top:50%;transform:translateY(-50%)}.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative;top:50%;transform:translateY(-50%)}.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative;top:50%;transform:translateY(-50%)}.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen{display:block}.plyr:fullscreen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-webkit-full-screen.plyr--hide-controls{cursor:none}.plyr:-ms-fullscreen.plyr--hide-controls{cursor:none}.plyr:fullscreen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:-webkit-full-screen .plyr__captions{font-size:21px}.plyr:-ms-fullscreen .plyr__captions{font-size:21px}.plyr:fullscreen .plyr__captions{font-size:21px}}.plyr:-webkit-full-screen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-webkit-full-screen video{height:100%}.plyr:-webkit-full-screen .plyr__video-wrapper{height:100%;position:static}.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative;top:50%;transform:translateY(-50%)}.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-webkit-full-screen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:-webkit-full-screen .plyr__captions{font-size:21px}}.plyr:-moz-full-screen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-moz-full-screen video{height:100%}.plyr:-moz-full-screen .plyr__video-wrapper{height:100%;position:static}.plyr:-moz-full-screen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative;top:50%;transform:translateY(-50%)}.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-moz-full-screen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:-moz-full-screen .plyr__captions{font-size:21px}}.plyr:-ms-fullscreen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-ms-fullscreen video{height:100%}.plyr:-ms-fullscreen .plyr__video-wrapper{height:100%;position:static}.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper{height:0;position:relative;top:50%;transform:translateY(-50%)}.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-ms-fullscreen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:-ms-fullscreen .plyr__captions{font-size:21px}}.plyr--fullscreen-fallback{background:#000;border-radius:0!important;height:100%;margin:0;width:100%;bottom:0;left:0;position:fixed;right:0;top:0;z-index:10000000}.plyr--fullscreen-fallback video{height:100%}.plyr--fullscreen-fallback .plyr__video-wrapper{height:100%;position:static}.plyr--fullscreen-fallback.plyr--vimeo .plyr__video-wrapper{height:0;position:relative;top:50%;transform:translateY(-50%)}.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen{display:block}.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr--fullscreen-fallback.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr--fullscreen-fallback .plyr__captions{font-size:21px}}.plyr__ads{border-radius:inherit;bottom:0;cursor:pointer;left:0;overflow:hidden;position:absolute;right:0;top:0;z-index:-1}.plyr__ads>div,.plyr__ads>div iframe{height:100%;position:absolute;width:100%}.plyr__ads::after{background:rgba(35,41,47,.8);border-radius:2px;bottom:10px;color:#fff;content:attr(data-badge-text);font-size:11px;padding:2px 6px;pointer-events:none;position:absolute;right:10px;z-index:3}.plyr__ads::after:empty{display:none}.plyr__cues{background:currentColor;display:block;height:5px;left:0;margin:-2.5px 0 0;opacity:.8;position:absolute;top:50%;width:3px;z-index:3}.plyr__preview-thumb{background-color:rgba(255,255,255,.9);border-radius:3px;bottom:100%;box-shadow:0 1px 2px rgba(0,0,0,.15);margin-bottom:10px;opacity:0;padding:3px;pointer-events:none;position:absolute;transform:translate(0,10px) scale(.8);transform-origin:50% 100%;transition:transform .2s .1s ease,opacity .2s .1s ease;z-index:2}.plyr__preview-thumb--is-shown{opacity:1;transform:translate(0,0) scale(1)}.plyr__preview-thumb::before{border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid rgba(255,255,255,.9);bottom:-4px;content:'';height:0;left:50%;position:absolute;transform:translateX(-50%);width:0;z-index:2}.plyr__preview-thumb__image-container{background:#c1c9d1;border-radius:2px;overflow:hidden;position:relative;z-index:0}.plyr__preview-thumb__image-container img{height:100%;left:0;max-height:none;max-width:none;position:absolute;top:0;width:100%}.plyr__preview-thumb__time-container{bottom:6px;left:0;position:absolute;right:0;white-space:nowrap;z-index:3}.plyr__preview-thumb__time-container span{background-color:rgba(0,0,0,.55);border-radius:2px;color:#fff;font-size:14px;padding:3px 6px}.plyr__preview-scrubbing{bottom:0;filter:blur(1px);height:100%;left:0;margin:auto;opacity:0;overflow:hidden;position:absolute;right:0;top:0;transition:opacity .3s ease;width:100%;z-index:1}.plyr__preview-scrubbing--is-shown{opacity:1}.plyr__preview-scrubbing img{height:100%;left:0;max-height:none;max-width:none;object-fit:contain;position:absolute;top:0;width:100%}.plyr--no-transition{transition:none!important}.plyr__sr-only{clip:rect(1px,1px,1px,1px);overflow:hidden;border:0!important;height:1px!important;padding:0!important;position:absolute!important;width:1px!important}.plyr [hidden]{display:none!important}


/* #Model Viewer
================================================== */
.shopify-model-viewer-ui{position:relative;display:block;cursor:pointer}.shopify-model-viewer-ui model-viewer{transform:translateZ(0);z-index:1}.shopify-model-viewer-ui model-viewer.shopify-model-viewer-ui__disabled{pointer-events:none}.shopify-model-viewer-ui.shopify-model-viewer-ui--fullscreen model-viewer{position:relative;width:100vw;height:100vh}.shopify-model-viewer-ui.shopify-model-viewer-ui--fullscreen .shopify-model-viewer-ui__control-icon--exit-fullscreen{display:block}.shopify-model-viewer-ui.shopify-model-viewer-ui--fullscreen .shopify-model-viewer-ui__control-icon--enter-fullscreen{display:none}.shopify-model-viewer-ui.shopify-model-viewer-ui--desktop.shopify-model-viewer-ui--child-focused .shopify-model-viewer-ui__controls-area,.shopify-model-viewer-ui.shopify-model-viewer-ui--desktop:hover .shopify-model-viewer-ui__controls-area{opacity:1}.shopify-model-viewer-ui:not(.shopify-model-viewer-ui--desktop) .shopify-model-viewer-ui__controls-area{display:none}.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-overlay{position:absolute;width:100%;height:100%;top:0}.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area{display:flex;flex-direction:column;background:#fff;opacity:0;border:1px solid rgba(0,0,0,.05);position:absolute;bottom:10px;right:10px;z-index:1;transition:opacity .1s linear}.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area:not(.shopify-model-viewer-ui__controls-area--playing){display:none}.shopify-model-viewer-ui .shopify-model-viewer-ui__button{color:#3a3a3a;border-radius:0;border:none;margin:0;cursor:pointer}.shopify-model-viewer-ui .shopify-model-viewer-ui__button:not(.focus-visible){outline:0}.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control{padding:0;height:44px;width:44px;background:0 0;position:relative}.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:hover{color:rgba(0,0,0,.55)}.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control.focus-visible:focus,.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:active{color:rgba(0,0,0,.55);background:rgba(0,0,0,.05)}.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:not(:last-child):after{position:absolute;content:"";border-bottom:1px solid rgba(0,0,0,.05);width:28px;bottom:0;right:8px}.shopify-model-viewer-ui .shopify-model-viewer-ui__control-icon{width:44px;height:44px;fill:none}.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster{background:#fff;position:absolute;border:1px solid rgba(0,0,0,.05);top:50%;left:50%;padding:0;transform:translate3d(-50%,-50%,0);height:62px;width:62px;z-index:1}.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:focus,.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:hover{color:rgba(0,0,0,.55)}.shopify-model-viewer-ui .shopify-model-viewer-ui__poster-control-icon{width:60px;height:60px;z-index:1;fill:none}.shopify-model-viewer-ui .shopify-model-viewer-ui__control-icon--exit-fullscreen{display:none}.shopify-model-viewer-ui .shopify-model-viewer-ui__control-icon--enter-fullscreen{display:block}.shopify-model-viewer-ui .shopify-model-viewer-ui__spritesheet{display:none}.shopify-model-viewer-ui .shopify-model-viewer-ui__sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}


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

.flickity-button.flickity-prev-next-button.next:focus,
.flickity-button.flickity-prev-next-button.previous:focus {
  opacity: 1;
}

/* 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 {
  filter: alpha(opacity=50);
  opacity: 0.5;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 32px;
  border: none;
  background: white;
  background: hsla(0, 0%, 100%, 0.75);
  cursor: pointer;
  border-radius: 0;
  height: auto;
  max-width: 11%;
  transform: none;
}

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

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

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

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

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

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

.flickity-prev-next-button .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-transition--fade {
  .flickity-slider {
    transform: none !important;
  }

  .gallery-cell {
    left: 0 !important;
    opacity: 0;
    transition: opacity 0.5s 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 gallery */

.gallery-arrows--true .product_gallery {
  .flickity-prev-next-button {
    display: block;

    &:hover {
      opacity: 0.5;
    }
  }
}

.product_gallery {
  margin-bottom: 30px;
  position: relative;
  opacity: 0;
  transition: opacity 0.2s;

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

  @include respond-to('small') {
    margin-bottom: 0;
    padding-bottom: 50px;

    .flickity-page-dots {
      bottom: 15px;
    }
  }

  .gallery-cell {
    width: 100%;
    display: block;
    margin-right: 10px;
    position: relative;
  }

  &.flickity-enabled {
    opacity: 1;
  }

  img {
    background-color: #ffffff;
  }

  &.show-gallery-arrows--false {

    .flickity-prev-next-button {
      display: none;
      @include respond-to('medium-down') {
        display: block;
      }
    }
  }
}

.product_gallery_nav {
  text-align: center;
  margin-bottom: 30px;

  &.product_gallery_nav--bottom-thumbnails {
    .gallery-cell { width: auto; }
    img {
      height: 80px;
      width: auto;
    }
  }
  &.product_gallery_nav--bottom-slider {
    @include respond-to('small') {
      margin-bottom: 30px;
    }
    .flickity-prev-next-button {
      opacity: 1;
      background: #ffffff;
    }
    .gallery-cell {
      @include flexbox();
      width: auto;
      opacity: 0.5;
      margin-bottom: 0;
      &.is-nav-selected { opacity: 1; }
      img {
        width: auto;
        height: 80px;
        max-width: none;
        min-width: 50px;
      }
    }
  }
  .gallery-cell {
    width: 20%;
    margin: 0 10px 10px 0;
    opacity: 0.7;
    display: inline-block;
    position: relative;
    &.is-nav-selected {
      opacity: 1;
    }
    img {
      cursor: pointer;
    }
  }
}

.product_gallery .gallery-cell a {
  cursor: zoom-in;
}

.gallery-thumbnails--right {
  @include respond-to('medium-up') {
    .multi-image {
      width: 83%;
      float: left;
    }

    .product_gallery_nav {
      width: 12%;
      float: left;
      margin-left: 2%;

      .gallery-cell {
        width: 100%;
        margin: 0 0 10px 0;
      }
    }
  }
}

.gallery-thumbnails--left {
  @include respond-to('medium-up') {
    .multi-image {
      width: 83%;
      float: right;
    }

    .product_gallery_nav {
      width: 12%;
      float: right;
      margin-right: 2%;

      .gallery-cell {
        width: 100%;
        margin: 0 0 10px 0;
      }
    }
  }
}

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

.product-section__lightbox {
  .zoom-wrap {
    width: 100%;
    height: 100%;
  }

  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .fancybox-content {
      top: 50%;
      -ms-transform: translateY(-50%) !important; /* Overwrite Fancybox transform */
    }
  }
}

/* Quick Shop */

.js-quick-shop {
  display: none;
}

.quickshop-forms__container {
  display: none;
}

.quick-shop__lightbox .fancybox-content {
  width: 90%;
  max-width: 900px;
  
  background-color: #ffffff;
  cursor: pointer !important;
}

.quick-shop__lightbox .fancybox-close-small svg path {
  fill: #2b2e38;
  &:hover {
    fill: darken(#2b2e38, 0.8);
  }
}

.quick-shop {
  .product_gallery img {
    background-color: #ffffff;
  }
  .container {
    max-width: 100%;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    color: #2b2e38;
    .gallery-wrap.eight.columns {
      width: calc(55% - 40px);
      margin: 0;
      margin-right: 40px;
      min-height: 1px;
      transition: opacity 1s 0.3s linear;
      &.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;
    }
    .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;
  }
}

h3.quick-shop__title a {
  color: #2b2e38;
}

.quick-shop .product_gallery {
  opacity: 0;
  transition: opacity 0.3s;
}

.quick-shop .product_gallery.flickity-enabled {
  opacity: 1;
}

.quick-shop__gallery {
  &.gallery-arrows--false {
    .product_gallery_nav .flickity-prev-next-button {
      display: none;
    }
  }
}

/* Inline quick shop */

.quick-shop-style--inline {

  .collection_swatches {
    display: none;
  }

  .inline-quickshop {
    margin-top: 10px;
  }

  .product-quantity-box,
  .items_left {
    display: none;
  }

  .purchase-details__spb--false {
    margin-left: 0;
  }
}

.quick-shop-style--popup,
.quick-shop-style--inline {
  .product-details {
    .title,
    .brand,
    .shopify-review,
    .price,
    .sold_out {
      padding: 0;
      margin: 5px 0;
    }
  }
}

.quick-shop-style--popup {
  .quick_shop {
    margin: 5px 0;
  }
}

// Purchase button sizing
.quick-shop-style--inline {
  &.four,
  &.one-fifth {
    .action_button--secondary {
      margin-bottom: 10px;
    }
    .action_button--secondary,
    .shopify-payment-button {
      min-width: 100%;
      margin-left: 0;
      margin-right: 0;
    }
  }
}

/* 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-down') {
   padding-top:0;
   font-size: 1.5em;
  }
}

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

      @include respond-to('medium-down') {
        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;
}

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

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

/* Lazyframe */
.lazyframe{position:relative;background-color:#ffffff;background-repeat:no-repeat;background-size:cover}.lazyframe__title{position:absolute;top:0;left:0;right:0;padding:15px 17px;z-index:3}.lazyframe__title:after{z-index:-1}.lazyframe:hover{cursor:pointer}.lazyframe:before{display:block;content:"";width:100%;padding-top:100%}.lazyframe[data-ratio="16:9"]:before{padding-top:56.25%}.lazyframe[data-ratio="4:3"]:before{padding-top:75%}.lazyframe[data-ratio="1:1"]:before{padding-top:100%}.lazyframe iframe{position:absolute;top:0;left:0;right:0;bottom:0;z-index:5;width:100%;height:100%}.lazyframe[data-vendor="youtube"],.lazyframe[data-vendor="youtube_nocookie"]{background-color:#e52d27;font-family:Roboto, Arial, Helvetica, sans-serif}.lazyframe[data-vendor="youtube"] .lazyframe__title,.lazyframe[data-vendor="youtube_nocookie"] .lazyframe__title{color:#eee;font-family:Roboto, Arial, Helvetica, sans-serif;font-size:18px;text-shadow:rgba(0,0,0,0.498039) 0px 0px 2px;-webkit-font-smoothing:antialiased;-webkit-tap-highlight-color:transparent;transition:color 0.1s cubic-bezier(0.4, 0, 1, 1)}.lazyframe[data-vendor="youtube"] .lazyframe__title:hover,.lazyframe[data-vendor="youtube_nocookie"] .lazyframe__title:hover{color:#fff}.lazyframe[data-vendor="youtube"] .lazyframe__title:before,.lazyframe[data-vendor="youtube_nocookie"] .lazyframe__title:before{content:'';display:block;background:linear-gradient(rgba(0,0,0,0.2), transparent);height:98px;width:100%;pointer-events:none;position:absolute;top:0;left:0;right:0;z-index:-1;-webkit-tap-highlight-color:transparent}.lazyframe[data-vendor="youtube"]:before,.lazyframe[data-vendor="youtube_nocookie"]:before{padding-top:56.25%}.lazyframe[data-vendor="youtube"][data-ratio="16:9"]:before,.lazyframe[data-vendor="youtube_nocookie"][data-ratio="16:9"]:before{padding-top:56.25%}.lazyframe[data-vendor="youtube"][data-ratio="4:3"]:before,.lazyframe[data-vendor="youtube_nocookie"][data-ratio="4:3"]:before{padding-top:75%}.lazyframe[data-vendor="youtube"][data-ratio="1:1"]:before,.lazyframe[data-vendor="youtube_nocookie"][data-ratio="1:1"]:before{padding-top:100%}.lazyframe[data-vendor="youtube"]:after,.lazyframe[data-vendor="youtube_nocookie"]:after{content:'';position:absolute;left:50%;top:50%;width:68px;height:48px;margin-left:-34px;margin-top:-24px;background-image:url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjU1LjcgNDQ2LjNjLTUzLjMuMy0xMDYuNi0uNC0xNTkuOC0zLjMtMTcuNC0xLTM0LjctMi41LTUwLjQtMTFDMzUgNDI2LjMgMjcgNDE4LjQgMjIgNDA3LjIgMTMuMiAzODguNiAxMC41IDM2OSA5IDM0OWMtMy40LTQxLjMtMy42LTgyLjYtMS44LTEyMy44IDEtMjIgMS42LTQ0IDYuOC02NS41IDItOC40IDUtMTYuNiA4LjgtMjQuNEMzMiAxMTcgNDggMTA4IDY3LjMgMTA0YzE2LjItMyAzMi44LTMgNDkuMy0zLjcgNTYtMi4zIDExMi0zLjUgMTY4LTMgNDMgLjYgODYuMiAxLjcgMTI5LjMgNCAxMy4yLjYgMjYuNi44IDM5LjMgNS41IDE3LjIgNi40IDMwIDE3LjIgMzcgMzQuNyA2LjYgMTYuOCA5LjIgMzQuMiAxMC42IDUyIDMuOCA0OC43IDQgOTcuMy43IDE0Ni0xIDE2LjMtMi4yIDMyLjctNi41IDQ4LjgtOS43IDM3LTMyLjggNTEuNS02Ni43IDUzLjgtMzYuMiAyLjUtNzIuNSAzLjgtMTA4LjggNC4zLTIxLjMuMi00Mi43IDAtNjQgMHpNMjAzLjIgMzQ0TDM0OCAyNjQuN2wtMTQ0LjgtNzkuM1YzNDR6IiBmaWxsPSIjIzFmMWYxZiIvPjxwYXRoIGQ9Ik0yMDMuMiAzNDRWMTg1LjVMMzQ4IDI2NC44IDIwMy4yIDM0NHoiIGZpbGw9IiNGRUZERkQiLz48L3N2Zz4=");background-position:center center;background-size:100%;background-repeat:no-repeat;opacity:.81;border:none;z-index:4}.lazyframe[data-vendor="youtube"]:hover:after,.lazyframe[data-vendor="youtube_nocookie"]:hover:after{background-image:url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMjU1LjcgNDQ2LjNjLTUzLjMuMy0xMDYuNi0uNC0xNTkuOC0zLjMtMTcuNC0xLTM0LjctMi41LTUwLjQtMTFDMzUgNDI2LjMgMjcgNDE4LjQgMjIgNDA3LjIgMTMuMiAzODguNiAxMC41IDM2OSA5IDM0OWMtMy40LTQxLjMtMy42LTgyLjYtMS44LTEyMy44IDEtMjIgMS42LTQ0IDYuOC02NS41IDItOC40IDUtMTYuNiA4LjgtMjQuNEMzMiAxMTcgNDggMTA4IDY3LjMgMTA0YzE2LjItMyAzMi44LTMgNDkuMy0zLjcgNTYtMi4zIDExMi0zLjUgMTY4LTMgNDMgLjYgODYuMiAxLjcgMTI5LjMgNCAxMy4yLjYgMjYuNi44IDM5LjMgNS41IDE3LjIgNi40IDMwIDE3LjIgMzcgMzQuNyA2LjYgMTYuOCA5LjIgMzQuMiAxMC42IDUyIDMuOCA0OC43IDQgOTcuMy43IDE0Ni0xIDE2LjMtMi4yIDMyLjctNi41IDQ4LjgtOS43IDM3LTMyLjggNTEuNS02Ni43IDUzLjgtMzYuMiAyLjUtNzIuNSAzLjgtMTA4LjggNC4zLTIxLjMuMi00Mi43IDAtNjQgMHpNMjAzLjIgMzQ0TDM0OCAyNjQuN2wtMTQ0LjgtNzkuM1YzNDR6IiBmaWxsPSIjREQyQzI4Ii8+PHBhdGggZD0iTTIwMy4yIDM0NFYxODUuNUwzNDggMjY0LjggMjAzLjIgMzQ0eiIgZmlsbD0iI0ZFRkRGRCIvPjwvc3ZnPg==");opacity:1}.lazyframe[data-vendor="vimeo"]{background-color:#00adef}.lazyframe[data-vendor="vimeo"] .lazyframe__title{font-family:"Helvetica Neue", Helvetica, Arial;color:#00adef;font-size:20px;font-weight:bold;text-rendering:optimizeLegibility;user-select:none;-webkit-font-smoothing:auto;-webkit-tap-highlight-color:transparent;background-color:rgba(0,0,0,0.5)}.lazyframe[data-vendor="vimeo"]:before{padding-top:48.25%}.lazyframe[data-vendor="vimeo"][data-ratio="16:9"]:before{padding-top:56.25%}.lazyframe[data-vendor="vimeo"][data-ratio="4:3"]:before{padding-top:75%}.lazyframe[data-vendor="vimeo"][data-ratio="1:1"]:before{padding-top:100%}.lazyframe[data-vendor="vimeo"]:after{content:'';height:40px;width:65px;display:block;position:absolute;bottom:10px;left:10px;z-index:3;background-color:rgba(0,0,0,0.5);background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgYmFzZVByb2ZpbGU9InRpbnkiIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZmlsbD0iI0ZGRiIgZD0iTTcuNzY1IDE2Ljg5bDguNDctNC44OS04LjQ3LTQuODkiLz48L3N2Zz4=");background-position:center center;background-size:100% 100%;background-repeat:no-repeat;border-radius:5px;position:relative}.lazyframe[data-vendor="vimeo"]:hover:after{background-color:#00adef}.lazyframe[data-vendor="vine"]{background-color:#00bf8f}.lazyframe[data-vendor="vine"] .lazyframe__title{color:#fff;font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;font-size:14px;line-height:16px;white-space:nowrap;z-index:3;positon:relative}.lazyframe[data-vendor="vine"] .lazyframe__title:after{content:'';position:absolute;top:0;left:0;right:0;z-index:-1;height:115px;padding:24px 70px 24px 24px;background:linear-gradient(to top, rgba(23,23,23,0) 0, rgba(23,23,23,0.7) 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr="#b3171717", endColorstr="#00171717", GradientType=0 )}.lazyframe[data-vendor="vine"]:before{padding-top:100%}.lazyframe[data-vendor="vine"][data-ratio="16:9"]:before{padding-top:56.25%}.lazyframe[data-vendor="vine"][data-ratio="4:3"]:before{padding-top:75%}.lazyframe[data-vendor="vine"][data-ratio="1:1"]:before{padding-top:100%}.lazyframe[data-vendor="vine"]:after{content:'';width:60px;height:60px;position:absolute;left:50%;top:50%;z-index:4;background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMzYiIGhlaWdodD0iMTM2IiB2aWV3Qm94PSIwIDAgMTM2IDEzNiI+PHBhdGggZmlsbD0iI0ZGRiIgZD0iTTU2IDQ0Yy0uNyAwLTEuNC4yLTIgLjUtMS4yLjgtMiAyLTIgMy41djQwYzAgMS40LjggMi44IDIgMy41LjYuMyAxLjMuNSAyIC41czEuNC0uMiAyLS41bDM0LjYtMjBjMS4zLS43IDItMiAyLTMuNSAwLTEuNC0uNy0yLjgtMi0zLjVMNTggNDQuNWMtLjYtLjMtMS4zLS41LTItLjV6Ii8+PC9zdmc+");background-color:rgba(0,0,0,0.5);background-size:cover;background-repeat:no-repeat;margin-top:-30px;margin-left:-30px;border-radius:50%}.lazyframe[data-vendor="vine"]:hover:after{background-color:rgba(0,0,0,0.75)}


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

.size-chart-remodal {
  max-height: calc(100vh - 20px); //Viewport height minus wrapper padding
  .size-chart-wrap {
    max-height: calc(100vh - 70px); //Viewport height minus remodal inner padding
    overflow-y: scroll;
  }
}

.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-down') {
    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
================================================== */

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

  .newsletter .input-row input{
    margin: 5px 0px;
  }

  input.sign_up {
    margin: 0px;
  }

  .newsletter-both-names--true {
    input.firstName {
      margin-right: 5px;
    }
  }
}

/* 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,
  .menu a:hover,
  .nav a:active,
  .nav a:focus {
    font-size: 14px;
  }
  .menu a,
  .menu a:visited,
  .menu a:hover,
  .menu a:active,
  .menu a:focus {
    font-size: 14px;
  }
  .menu li, #header span.menu_title, .menu a span {
    padding-left: 2px;
    padding-right: 2px;
  }
  .menu li.search-container {
    display: none;
  }
  .top-bar .menu li {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* 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: #1e1e1e;
      @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: 14px;
    }
    .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: 16px;
      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;
    }

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

@font-face {
  font-family: 'turbo';
  src: url('//alpinefoxshop.ch/cdn/shop/t/35/assets/turbo.eot?v=8031775066987996871755705681');
  src: url('//alpinefoxshop.ch/cdn/shop/t/35/assets/turbo.eot?v=8031775066987996871755705681') format('embedded-opentype'),
       url('//alpinefoxshop.ch/cdn/shop/t/35/assets/turbo.woff?v=120982821278190993901755705681') format('woff'),
       url('//alpinefoxshop.ch/cdn/shop/t/35/assets/turbo.ttf?v=40378865674909127311755705681') format('truetype'),
       url('//alpinefoxshop.ch/cdn/shop/t/35/assets/turbo.svg?v=112470159262165616401755705681') 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-bag:before { content: "\e905"; }
.icon-cart:before { content: "\e906"; }
.icon-check:before { content: "\e907"; }
.icon-cross:before { content: "\e908"; }
.icon-up-arrow:before { content: "\e91a"; }
.icon-down-arrow:before { content: "\e909"; }
.icon-left-arrow:before { content: "\e90e"; }
.icon-right-arrow:before { content: "\e915"; margin-right: 0; }
.icon-plus:before { content: "\e914"; }
.icon-minus:before { content: "\e911"; }
.icon-menu:before { content: "\e910"; }
.icon-email:before { content: "\e90a"; }
.icon-pinterest:before { content: "\e90b"; }
.icon-rss:before { content: "\e90c"; }
.icon-houzz:before { content: "\e90d"; }
.icon-snapchat:before { content: "\e90f"; }
.icon-phone:before { content: "\e912"; }
.icon-instagram:before { content: "\e913"; }
.icon-vimeo:before { content: "\e916"; }
.icon-search:before { content: "\e917"; }
.icon-zoom:before { content: "\e987"; }
.icon-youtube:before { content: "\e918"; }
.icon-lock:before { content: "\e919";  color: #ffffff; }
.icon-user:before { content: "\e91b"; }
.icon-facebook:before { content: "\ea90"; }
.icon-twitter:before { content: "\ea96"; }
.icon-tumblr:before { content: "\eab9"; }
.icon-linkedin:before { content: "\eaca"; }
.icon-heart:before { content: "&hearts;"; }

.icon-twitter-share:before { content: "\ea96"; }
.icon-facebook-share:before { content: "\ea90"; }
.icon-pinterest-share:before { content: "\e90b"; }
.icon-mail-share:before { content: "\e90a"; }

span.icon-down-arrow {
  padding: 0 !important;
  font-size: 12px !important;
}

.icon-user {
  display: flex!important;
  gap: 2px;
}

form.search_form,
.search_form input {
  padding-top: 0;
  margin-bottom: 0;
  border-width: 2px;
  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: Oswald, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0px;
  color: #ffffff;
  background-color: transparent;
  padding-right: 35px;
  border-color: #ffffff;
  
}

.feature_image .search_form input,
.feature_image .search_form input:active,
.feature_image .search_form input:focus {
  color: #d9d9d9;
  border-color: #d9d9d9;
  &::-webkit-input-placeholder {
    color: #d9d9d9;
  }
  &::-moz-placeholder {
    color: #d9d9d9;
  }
  &:-ms-input-placeholder {
    color: #d9d9d9;
  }
}

.feature_image .search-submit { color: #d9d9d9; }

.header_search_form {
  width: 60%;
  margin: 0 auto 30px auto;
  padding: 30px 0 0 0;
  position: relative;
  border-bottom: solid 1px #ffffff;
  @include respond-to('small-down') {
    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: Oswald, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0px;
  border: none;
  font-size: 36px;
  line-height: 36px;

  @include respond-to('small-down') {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 0px;
  }
}

.header_search_form .search-submit {
  top: 38px;
  font-size: 30px;
  @include respond-to('small-down') {
    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: #d9d9d9;
  border: 1px solid #d9d9d9;
}

.feature_image .search_form input::-webkit-input-placeholder {
  color: #d9d9d9;
}
.feature_image .search_form input:-moz-placeholder { /* Firefox 18- */
  color: #d9d9d9;
}
.feature_image .search_form input::-moz-placeholder {  /* Firefox 19+ */
  color: #d9d9d9;
}
.feature_image .search_form input:-ms-input-placeholder {
  color: #d9d9d9;
}

.search_form input::-webkit-input-placeholder {
  color: #ffffff;
}
.search_form input:-moz-placeholder { /* Firefox 18- */
  color: #ffffff;
}
.search_form input::-moz-placeholder {  /* Firefox 19+ */
  color: #ffffff;
}
.search_form input:-ms-input-placeholder {
  color: #ffffff;
}

.search_form input:focus::-webkit-input-placeholder {
  color: #ffffff;
}
.search_form input:focus:-moz-placeholder { /* Firefox 18- */
  color: #ffffff;
}
.search_form input:focus::-moz-placeholder {  /* Firefox 19+ */
  color: #ffffff;
}
.search_form input:focus:-ms-input-placeholder {
  color: #ffffff;
}

.feature_image .search_form input,
.feature_image .search_form input:active,
.feature_image .search_form input:focus {
  color: #d9d9d9;
  border: 1px solid #d9d9d9;
}

.feature_image .search_form input::-webkit-input-placeholder {
  color: #d9d9d9;
}
.feature_image .search_form input:-moz-placeholder { /* Firefox 18- */
  color: #d9d9d9;
}
.feature_image .search_form input::-moz-placeholder {  /* Firefox 19+ */
  color: #d9d9d9;
}
.feature_image .search_form input:-ms-input-placeholder {
  color: #d9d9d9;
}

.search-submit {
  position: absolute;
  z-index: 1000;
  color: #ffffff;
  font-size: 20px;
  top: 9px;
  right: 7px;
  cursor: pointer;
}

.feature_image .search-submit {
  color: #d9d9d9;
}

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

footer .footer-social-icons {
  @include respond-to('medium-down'){
    display: none;
  }
}

footer .footer-social-icons--mobile.columns {
  display: none;
  padding-left: 0;
  @include respond-to('medium-down'){
    display: block;
    > ul {
      display: block;
      padding-left: 0;
    }
  }
}

footer .social_icons {
  display: block;
  margin-top: 15px;
  @include respond-to('medium-down'){
    padding-left: 0;
    text-align: center;
  }
}

footer .social_icons a, footer .social_icons a:visited {
  color: black;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 1em;
  @include respond-to('small-down') {
    margin-bottom: 0;
  }
}

footer .social_icons a:active, footer .social_icons a:hover {
  color: #ffffff;
  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}@-webkit-keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}}@keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}

.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-down') {
   margin-top: 10px;
  }

  #contact_form input.sign_up[type="submit"] {
    width: calc(35% - 10px);
    @include respond-to('large-down') {
      width: 100%;
    }
  }

  #contact_form input.contact_email[type="email"] {
    max-width: 100%;
  }
}

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

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

.password-footer {
  margin-top: 15px;
  margin-bottom: 40px;
  font-size: 13px;
  color: #ffffff;
  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: #ffffff;
  text-decoration: none;
}

.password-footer a {
  color: #ffffff;
  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: #dc6511;
    }
  }
}

.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-down') {
    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-down') {
    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 {
  .article {
    padding-bottom: 0;
  }

  div.container .featured_products {
    padding-top: 0;
  }

  @include respond-to('small-down') {
    .caption.position-center,
    .caption.position-left,
    .caption.position-right, {
      margin: 5% 0 0 0;
    }
  }
}

/* # Product media
================================================== */

$product-media-fill-color: #000000;
$product-media-bg-color: #ffffff;

.product-gallery__model model-viewer,
.product-gallery__video iframe {
  width: 100%;
  min-height: 450px;
}

.product-gallery__model {
  position: relative;

  model-viewer {
    width: 100%;
    min-height: 500px;
  }
}

.view-in-your-space.action_button {
  padding: 0;
  width: 100%;
  @include flexbox();
  @include justify-content(center);
  @include align-items(center);
  min-height: 44px;
  background: #e6e6e6;
  color: $product-media-fill-color;
  font: inherit;
  text-transform: none;
  border-radius: 0px;
  border: 0;

  svg {
    path {
      &:first-child {
        stroke: $product-media-fill-color;
      }

      &:last-child {
        fill: $product-media-fill-color;
      }
    }
  }
}

.plyr--video {
  .plyr__controls {
    background: rgba($product-media-bg-color, 0.6);
    padding: 10px;
  }

  .plyr__control {
    background: transparent;
    color: $product-media-fill-color;

    &:hover {
      background: $product-media-bg-color;
      color: $product-media-fill-color;
    }
  }

  .plyr__controls__item.plyr__time,
  input[type=range],
  .plyr__controls__item {
    color: $product-media-fill-color;
  }

  .plyr__progress input[type=range]+.thumb {
    background-color: $product-media-fill-color;
    color: $product-media-fill-color;
  }

  input[type=range]::-webkit-slider-thumb {
    background-color: $product-media-fill-color;
  }

  input[type=range]::-moz-range-thumb {
    background-color: $product-media-fill-color;
  }

  input[type=range]::-ms-thumb {
    background-color: $product-media-fill-color;
  }

  .plyr__progress__buffer,
  .plyr__control[aria-expanded=true] {
    background-color: rgba($product-media-fill-color, 0.6);
  }

  .plyr__control.plyr__tab-focus {
    background-color: $product-media-fill-color;
  }

  .plyr__control--overlaid {
    background: $product-media-bg-color;
    border-radius: 0;
    border: 1px solid rgba(0,0,0,0.05);
    height: 50px;
    width: 50px;

    svg {
      left: auto;
    }

    &:hover {
      background: $product-media-bg-color;
    }
  }

  .plyr__control--overlaid:hover .play-icon-button-control rect {
    opacity: 0.75;
  }

  .plyr__control .play-icon-button-control {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;

    rect {
      fill: $product-media-bg-color;
    }

    path {
      fill: $product-media-fill-color;
    }
  }
}

.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-right: 10px;
  padding-left: 10px;
}

// Styles for a vertical volume scrollbar
.plyr--full-ui .plyr__volume {
  background-color: rgba($product-media-bg-color, 0.25);
  border-radius: 5px;
  bottom: 105px;
  height: 40px;
  opacity: 0;
  padding: 10px 15px !important;
  position: absolute;
  transform: rotate(270deg);
  transition: visibility 0.4s linear 0.4s, opacity 0.4s linear 0.3s;
  width: 140px;

  &:before {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba($product-media-bg-color, 0.25);
    bottom: 18px;
    content: "";
    left: -6px;
    position: absolute;
    transform: rotate(90deg);
    z-index: 2;
  }

  &:hover {
    opacity: 1;
    visibility: visible;
  }

  &.plyr__volume--is-visible {
    opacity: 1;
    transition: visibility 0.4s linear, opacity 0.4s linear;
  }

  input[type=range] {
    color: $product-media-fill-color;
    margin: 0 auto;
  }
}

.plyr--full-ui .plyr__volume input[type=range]::-webkit-slider-runnable-track,
.plyr--full-ui .plyr__volume input[type=range]::-moz-range-track,
.plyr--full-ui .plyr__volume input[type=range]::-webkit-slider-thumb,
.plyr--full-ui .plyr__volume input[type=range]::-moz-range-thumb {
  box-shadow: none;
}

.plyr--full-ui .plyr__volume input[type=range]::-ms-fill-upper,
.plyr--full-ui .plyr__volume input[type=range]::-ms-thumb,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-webkit-slider-runnable-track,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-moz-range-track,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-ms-track {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-webkit-slider-thumb,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-moz-range-thumb,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-ms-thumb,
.plyr--full-ui .plyr__volume input[type=range]:active::-webkit-slider-thumb,
.plyr--full-ui .plyr__volume input[type=range]:active::-moz-range-thumb,
.plyr--full-ui .plyr__volume input[type=range]:active::-ms-thumb {
  box-shadow: none;
}

.plyr--audio .plyr--full-ui .plyr__volume {
  bottom: 125px;
  right: -37px;
}

.plyr--is-ios .plyr__volume {
  display: none !important;
}

.plyr__control[data-plyr=mute]:hover + .plyr__volume {
  opacity: 1;
  transition: visibility 0.4s linear, opacity 0.4s linear;
}

@media (min-width: 480px) {
  .plyr--full-ui .plyr__volume input[type=range] {
    max-width: 90px;
  }
}

@media (min-width: 750px) {
  .plyr--full-ui .plyr__volume input[type=range] {
    max-width: 110px;
  }
}

@media only screen and (max-width: 989px) {
  .plyr--is-touch .plyr__volume {
    display: none !important;
  }
}

.show-gallery-arrows--true .shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area {
  right: 50px;
  bottom: 10px;
}

.shopify-model-viewer-ui {
  .shopify-model-viewer-ui__button {
    color: $product-media-fill-color;
    background: $product-media-bg-color;

    &[hidden] {
      display: none;
    }
  }

  .shopify-model-viewer-ui__button--poster:hover,
  .shopify-model-viewer-ui__button--poster:focus {
    color: rgba($product-media-fill-color, 0.55);
  }


  .shopify-model-viewer-ui__controls-area {
    background: $product-media-bg-color;
    border: 1px solid rgba($product-media-fill-color, 0.05);
  }

  .shopify-model-viewer-ui__button--control:not(:last-child) {
    &:after {
      border-bottom: 1px solid rgba($product-media-fill-color, 0.05);
    }
  }
}

.video-on-hover,
.swap-true .plyr--youtube,
.video-controls-enabled--false {
  .plyr__controls,
  .plyr__control--overlaid {
    opacity: 0;
    & > * {
      pointer-events: none;
      cursor: auto;
    }
  }
}

// Hide controls on mobile when video is stopped
.plyr.plyr--stopped .plyr__controls {
  display: none;
}

.product_gallery_nav {

  .media-badge {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 33%;
    max-height: 33%;
    min-width: 20px;
    width: 25px;
    height: 25px;

    svg {
      width: 100%;
      height: 100%;
    }

    path {
      &:first-child {
        fill: $product-media-bg-color;
      }

      &:last-child {
        fill: $product-media-fill-color;
      }
    }

    g {
      path {
        &:first-child {
          stroke: $product-media-fill-color;
        }
      }
    }

    .media-badge__outline {
      stroke: rgba($product-media-fill-color, 0.05);
    }
  }
}

// Set product media height
.gallery-wrap {
  &.product-height-set {
    model-viewer {
      margin: 0 auto;
    }

    .product_gallery img,
    .product_gallery .plyr--html5 video {
      width: 100%;

    }

    .product_gallery img {
      @include object-fit(contain);
    }

    .product_gallery .plyr--youtube .plyr__video-embed {
      height: 100%;
    }
  }
}

/* #Product Details
================================================== */

.product-details-section {
  .gallery-image-wrapper {
    margin-bottom: 20px;
  }
}

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

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

.product-recommendations--details {
  display: none;
}

/* 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 {
  padding-left: 10px;
  width: calc(100% - 20px);
  @include respond-to('medium-down'){
    padding-left: 0;
    width: 100%;
  }
}

.products-slider.slider-gallery {
  &.products-length-6 {
    .gallery-cell {
      width: calc(16.6% - 10px);
      @include respond-to('medium-down'){
        width: calc(40% - 10px);
      }
    }
  }
  &.products-length-5 {
    .gallery-cell {
      width: calc(20% - 10px);
      @include respond-to('medium-down'){
        width: calc(40% - 10px);
      }
    }
  }
  &.products-length-4 {
    .gallery-cell {
      width: calc(25% - 10px);
      @include respond-to('medium-down'){
        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-down'){
        width: calc(50% - 10px);
      }
    }
    &.visible-3 {
      width: calc(33.33% - 10px);
      @include respond-to('medium-down'){
        width: calc(40% - 10px);
      }
    }
    &.visible-4 {
      width: calc(25% - 10px);
      @include respond-to('medium-down'){
        width: calc(40% - 10px);
      }
    }
    &.visible-5 {
      width: calc(20% - 10px);
      @include respond-to('medium-down'){
        width: calc(40% - 10px);
      }
    }
    &.visible-6 {
      width: calc(16.666% - 10px);
      @include respond-to('medium-down'){
        width: calc(40% - 10px);
      }
    }
    &.visible-7 {
      width: calc(14.2% - 10px);
      @include respond-to('medium-down'){
        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;
}

.full-width--true .caption {
  @include respond-to('small-down') {
    padding-left: 20px;
    padding-right: 20px;
  }
  @include respond-to('large-up') {
    max-width: 960px;
    padding: 0;
  }
  @include respond-to('widescreen-up') {
    max-width: 1200px;
    padding: 0;
  }
}

.caption {
  width: 100%;
  position: absolute;
  top: 50%;
  padding: 0 5%;
  z-index: 3;
  @include prefix(transform, translate(0,-50%), ms webkit spec);
  @include respond-to('medium-up') {
    max-width: 960px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  @include respond-to('large-up') {
    padding: 0 30px;
  }
  @include respond-to('medium-down') {
    width: 100%;
  }
  a {
    pointer-events: all;
  }
  &.position-center {
    left: 0;
    right: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    @include respond-to('medium-down') {
      width: 85%;
    }
    @include respond-to('small-down') {
      width: 100%;
    }
  }
  &.position-left {
    left: 0;
    right: 0;
    text-align: left;
  }
  &.position-right {
    left: 0;
    right: 0;
    text-align: right;
  }
  .pretext {
    color: #ffffff;
    font-family: Roboto, sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 0px;
    margin-bottom: 10px;
    
    @include respond-to('small-down') {
      font-size: 1.4em;
    }
    @include respond-to('medium-down') {
      font-size: 12.0px;
    }
    @include respond-to('medium-up') {
      font-size: 15.0px;
    }
    @include respond-to('medium-up') {
      font-size: 18px;
    }
  }
  .headline {
    color: #ffffff;
    font-family: Oswald, sans-serif;
    font-weight: 300;
    font-style: normal;
    text-transform: uppercase;
    font-size: 56px;
    letter-spacing: 0px;
    line-height: 1.4em;
    margin-bottom: 15px;
    
      text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    

    @include respond-to('small-down') {
      font-size: 2.6em;
    }
    @include respond-to('medium-down') {
      font-size: 37.333333333333336px;
    }
    @include respond-to('medium-up') {
      font-size: 46.666666666666664px;
    }
    @include respond-to('large-up') {
      font-size: 56px;
    }
  }
  .subtitle {
    color: #ffffff;
    font-family: Roboto, sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    font-style: uppercase;
    font-size: 18px;
    letter-spacing: 0px;
    position: relative;
    

    @include respond-to('small-down') {
      font-size: 1.4em;
    }
    @include respond-to('medium-down') {
      font-size: 12.0px;
    }
    @include respond-to('medium-up') {
      font-size: 15.0px;
    }
    @include respond-to('large-up') {
      font-size: 18px;
    }
  }
  .pretext:empty,
  .headline:empty,
  .subtitle:empty {
    display: none;
    &:before {
      height: 0;
    }
  }
}

.caption--below-true {

  @include respond-to('small-down') {
    margin: 20px auto !important; /* Force caption margin */
    font-size: 3vw;
    position: static;
    transform: none;
    width: 100%;
  }

  .pretext {
    @include respond-to('small-down') {
      color: #000000;
      text-shadow: none;
    }
  }
  .headline {
    @include respond-to('small-down') {
      color: #000000;
      text-shadow: none;
    }
  }
  .subtitle {
    @include respond-to('small-down') {
      color: #000000;
      text-shadow: none;
    }
  }

  .caption-background-true.caption-transparency-false {
    background-color: #1e1e1e;

    @include respond-to('small-down') {
      background-color: transparent;
    }
  }

  .caption-background-true.caption-transparency-true {
    @include respond-to('small-down') {
      background-color: transparent;
    }
  }
}

.caption--below-false {
  @include respond-to('small-down') {
    .caption-content.caption-background-true {
      padding: 15px;
    }

    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;

      &:hover {
        background-color: #ffffff;
        border-color: #ffffff;

        @if (lightness(#ffffff) > 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;
      }
    }
  }
}

.subtitle p a {
  pointer-events: all;
}

.caption-content {
  display: inline-block;
  float: none;
  max-width: 60%;
  font-size: 0;
  @include respond-to('medium-down'){
    max-width: 80%;
  }
  @include respond-to('small-down') {
    width: 100%;
    max-width: 100%;
  }
  .action_button {
    margin: 10px;
    @include respond-to('medium-down'){
      // tightens up stacked buttons on iPad
      margin: 5px;
    }
    @include respond-to('small-down') {
      font-size: 16px;
    }
  }
  &.align-center {
    text-align: center;
    @include respond-to('medium-down') {
      max-width: 80%;
    }
    @include respond-to('small-down') {
      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-down') {
      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-down') {
      background-color: transparent;
    }
  }
}

.caption-background-true {
  &.caption-transparency-true {
    background-color: rgba(#1e1e1e, $backgroundTransparency);
  }
}

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(#ffffff) > 50) {
        color: #333;
      } @else {
        color: #fff;
      }
    
  }

  @include respond-to('small-down') {
    color: #000000;
    border-color: #000000;
    background-color: transparent;
    &:hover {
      border-color: #000000;
      background-color: #000000;
      @if (lightness(#000000) > 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-down') {
    border-color: #000000;
    background-color: #000000;
    @if (lightness(#000000) > 50) {
      color: #333;
    } @else {
      color: #fff;
    }
  }
}

a.continue-button,
a.highlight-false--dark,
input[type="button"].highlight-false--dark {
  color: #000000;
  border-color: #000000;
  background-color: transparent;
  &:hover {
    border-color: #000000;
    background-color: #000000;
    @if (lightness(#000000) > 50) {
      color: #333;
    } @else {
      color: #fff;
    }
  }
}

/* Slideshow */

.homepage-slideshow {
  .gallery-cell:not(:first-child) {
    height: 0;
  }
  .overlay {
    background-color: black;
    opacity: 0.3;
    z-index: 1;
    width: 100%;
    position: absolute;
  }
  .gallery-cell {
    background-color: black!important;
  }
  @media only screen and (min-width: 1401px){
    &.full-width--true .caption {
      max-width: 1900px;
    }
  }
  .caption-content {
    @media (min-width: 1150px){
      width: 47%;
    }
    .headline{
      magin-bottom: 30px;
      p {
        font-weight: 900;
      }
    }
    .pretext {
      margin-bottom: 3px;
    }
  }
}
.homepage-slideshow.flickity-enabled {
  .gallery-cell:not(:first-child) {
    height: auto;
  }
}

.homepage-slideshow {
  a.highlight-false, input[type="button"].highlight-false,
  a.highlight-true, input[type="button"].highlight-true {
    font-size: 16px;
    font-weight: 600;
    width: auto!important;
    &:hover {
      
        @if (lightness(#ffffff) > 50) {
          color: #333;
        } @else {
          color: #fff;
        }
      
    }
    @include respond-to('small-down') {
      color: #000;
      border-color: #dcd4d4;
      background-color: #dcd4d4;
      &:hover {
        border-color: #000000;
        background-color: #000000;
        @if (lightness(#000000) > 50) {
          color: #333;
        } @else {
          color: #fff;
        }
      }
    }
  }

  a.highlight-true, input[type="button"].highlight-true {
      background-color: #dcd4d4;
      border-color: #dcd4d4;
      color: #000;

    @include respond-to('small-down') {
      border-color: #dcd4d4;
      background-color: #dcd4d4;
        color: #000;
    }
  }
}

/* #Account
================================================== */

.account-header-logout {
  text-align: right;
  text-transform: uppercase;
}

.account-sidebar {
  border-right: 1px solid #f1f1f1;
  box-sizing: border-box;
  padding-right: 10px;
  @include overflow-wrap(anywhere);

  @include respond-to('medium-down'){
    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 #f1f1f1;
    padding-left: 20px;
    @include respond-to('medium-down'){
      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: #dc6511;
  border-color: #dc6511;
  a {
    color: #ffffff;
  }
  &:hover {
    background-color: #dc6511;
    border-color: #dc6511;
    a {
      color: #ffffff;
    }
  }
}

.action_delete {
  background-color: #ffffff;
  border-color: #dc6511;
  a {
    color: #dc6511;
  }
  &:hover {
    background-color: #dc6511;
    border-color: #dc6511;
    a {
      color: #ffffff;
    }
  }
}

/* #Policy pages
================================================== */

.container .shopify-policy__container {
  margin: 0;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.shopify-policy__container {
  .shopify-policy__title {
    text-align: left;
  }
}

/* #Home page - collection in detail
================================================== */

.collection-in-detail {
  .section {
    margin: 0;
  }
  .half {
    width: 50%;
    float: left;
    position: relative;
    @include respond-to('medium-down'){
      width: 100%;
    }
  }
  .product-details {
    padding: 40px 2rem;
  }

  .frontpage_product_stagger--true {
    .section:nth-of-type(even) .half {
      float: right;
    }
  }
}

/* #Home page - text columns with images
================================================== */

.text-columns-with-images-section {
  .border-style--box {
    padding: 10%;
    border: 1px solid #f1f1f1;
  }

  .border-style--quote {
    padding-left: 20px;
    border-left: 1px solid #f1f1f1;
    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;
  }

  img {
    margin: 0 0 15px;
  }
}

/* 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-down') {
      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-down') {
      background-color: transparent;
    }
    img {
      width: 100%;
      display: block;
    }
  }
  .flickity-prev-next-button {
    opacity: 0;
    width: 2.3%;
    height: 155px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 0;
    background: black;
    .arrow {
      fill: white;
    }
    @include respond-to('medium-up') {
      opacity: 0;
    }
  }
  .flickity-page-dots {
    bottom: 2em;
    display: none;
    @include respond-to('medium-up') {
      display: block;
    }
    .dot {
      height: 4px;
      width: 40px;
      margin: 0;
      border-radius: 0;
      background: #333333
    }
    @include respond-to('small-down') {
      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
================================================== */

.image-with-text .featured-link--half a[href] img {
  box-shadow: #000 0em 0em 0em;
  transition: opacity 0.2s linear;
}

.image-with-text .featured-link--half:hover a[href] img.lazyloaded {
  opacity: 0.8;
}

.standard--width .image-with-text .featured-link--image,
.full-width--false.image-with-text .featured-link--image {
  background-color: transparent;
}

.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-down') {
    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-down') {
      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-down') {
      position: static;
      transform: translateY(0);
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      padding: 2em 0;
    }
  }

  

  $image-with-text-color: set-text-color(#ffffff) ;

  .collection_title {
    margin-bottom: 5px;
    display: block;
    color: #dc6511;
    font-weight: 600;
  }
  .description {
    position: relative;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 50px;
    color: $image-with-text-color;

    p {
      line-height: 24px;
    }
    @include respond-to('medium-down'){
     font-size: 2vw;
    }
    @include respond-to('small-down') {
     font-size: inherit;
    }
    @include respond-to('widescreen-up') {
      font-size: inherit;
    }
  }
  .button {
    height: auto;
    background-color: transparent;
    color: $image-with-text-color;
    border: 2px solid $image-with-text-color;
    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;
    font-size: 16px;
    font-weight: 600;
  }





}

.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-down'){
      &: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-down'){
      @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-down'){
      &:nth-of-type(2n){
        @include flex-direction(row);
      }
    }
  }
  .featured-link--image:nth-of-type(4n+3) {
    @include flex-direction(row);
    @include respond-to('medium-down'){
      @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-down') {
      width: 100%;
    }
  }
  .featured-link--half {
    @include respond-to('medium-down') {
      width: 50%;
    }
    @include respond-to('small-down') {
      width: 100%;
    }
  }
  .description {
    font-size: 1.2vw;
    @include respond-to('medium-down'){
     font-size: inherit;
    }
  }
  .button {
    font-size: 1.2vw;
    @include respond-to('small-down') {
      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-down'){
      float: right;
    }
  }
  .featured-link--image:nth-of-type(3n+3) .featured-link--half {
    float: right;
    @include respond-to('medium-down'){
      float: left;
    }
  }
  .featured-link--image:nth-of-type(4n+4) .featured-link--half {
    float: right;
  }
}

/* #Home page - featured products
================================================== */

/* #Home page - Rich text and image
================================================== */

.rich-text__content {
  .regular_text,
  .featured_text {
    margin-top: 15px;
  }
}

/* #Home page - featured promotions
================================================== */

.promo-animation--true {
  opacity: 0;
}

.featured-promotions {
  .feature-section {
    text-align: center;
    float: left;
    margin: 0 10px 20px;
    position: relative;
    @include respond-to('medium-down'){
      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-down'){
        
          @include background-opacity(#000000, 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;

      //Detection for iPad Pro
      @include respond-to('tablet') {
        opacity: 1;
        display: block;
      }

      @include respond-to('medium-down'){
        opacity: 1;
        display: block;
      }

      &.reveal-details {
        opacity: 1;
      }
      .button {
        margin-top: 15px;
      }
    }
    .description {
      color: #ffffff;
      transition: all 0.3s linear;
      margin-bottom: 0;
    }
    .description a {
      pointer-events: auto;
    }
    &.title-overlay-true {
      .title {
        transition: all 0.3s linear;
        color: #ffffff;
        @include respond-to('medium-down'){
          margin-bottom: 10px;
        }
        &:after {
          content: '';
          display: block;
          height: 1px;
          width: 0;
          background: #ffffff;
          transition: width .5s ease, background-color .5s ease;
          margin: 10px auto auto auto;
          @include respond-to('medium-down'){
            display: none;
          }
        }
      }
    }
    &.title-overlay-false {
      .feature-wrap .title {
        display: none;
      }
    }
    &:hover .feature-overlay {
      @include background-opacity(#000000, 0.5);
      @include respond-to('medium-down'){
        
      }
    }
    &.title-overlay-true:hover .title:after {
      width: 50%;
      background: #ffffff;
    }
    &.title-overlay-true:hover .title {
      color: #ffffff;
    }
    &.title-overlay-true:hover .description {
      color: #ffffff;
    }
    &.title-overlay-false:hover .description {
      color: #ffffff;
    }
    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.full-width--false {
  .promo-per-row-2 {
    .feature-section {
      width: calc(50% - 20px);
      @include respond-to('medium-down'){
        width: 100%;
        margin: 0 0 10px;
      }
      &:nth-child(2n+1){
        clear: both;
      }
    }
  }

  .promo-per-row-3 {
    .feature-section {
      width: calc(33.3333% - 20px);
      @include respond-to('medium-down'){
        width: 100%;
        margin: 0 0 10px;
      }
      &:nth-child(3n+1){
        clear: both;
      }
    }
  }

  .promo-per-row-4 {
    .feature-section {
      width: calc(25% - 20px);
      &:nth-child(4n+1){
        clear: both;
      }
      @include respond-to('medium-down') {
        width: calc(50% - 20px);
        &:nth-child(2n+1){
          clear: both;
        }
      }
      @include respond-to('small-down') {
        width: 100%;
        margin: 0 0 10px;
      }
    }
  }
}

.featured-promotions.full-width--true {
  padding-top: 0;
  .js-featured-promotions {
    @include flexbox();
    @include flex-wrap(wrap);
  }
  .promo-per-row-2 {
    .feature-section {
      width: 50%;
      margin: 0;
      @include respond-to('small-down') {
        width: 100%;
      }
    }
  }
  .promo-per-row-3 {
    .feature-section {
      width: 33.333333%;
      margin: 0;
      @include respond-to('medium-down') {
        width: 100%;
      }
    }
  }
  .promo-per-row-4 {
    .feature-section {
      width: 25%;
      margin: 0;
      @include respond-to('medium-down') {
        width: 50%;
      }
      @include respond-to('small-down') {
        width: 100%;
      }
    }
  }
}

/* #Home page - featured collection
================================================== */

.featured-collection__description.section {
  padding: 0 20px;
  margin: 20px 0;
}

.featured-collection__products.container {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.featured-collection__products .continue-button {
    color: white;
    background-color: black;
    font-size: 16px;
    font-weight: 600;
}


/* #Home page - image with text overlay
================================================== */

.image-with-text-section {
  background-color: #f1f1f1;
}

.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  
    background-color: #666666;
  

  @include respond-to('small-down') {
    max-height: inherit;
    background-color: transparent;
  }

  img {
    width: 100%;
    display: block;
  }
}

/* #Home page - video
================================================== */

.block__featured_video,
.video-section {
  .caption {
    z-index: 30;
    pointer-events: none;
  }
  @include respond-to('small-down'){
    .caption {
      margin: 0;
      height: auto;
    }
  }

  .video-text--outside-video {
    height: auto;
  }
}

.showPosterImage--true[data-ratio="16:9"] {
  padding-top: 56.25%;
}

.showPosterImage--true[data-ratio="4:3"] {
  padding-top: 75%;
}

.homepage-video {
  position: relative;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
  
    background-color: #666666;
  
  @include respond-to('small-down') {
    background-color: transparent;
  }
  img {
    width: 100%;
    display: block;
  }
  iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
  }
  video {
    background-color: #ffffff;
  }
  video[poster] {
    object-fit: cover;
  }
  video.video-autoplay--true.html-video {
    display: none;
  }
  .homepage-video--media {
    width: 100%;
    height: auto;
    padding-top: 0;
  }
  .placeholder-image--true a.video__play-button {
    pointer-events: none;
  }
  .caption.text-on-video {
    pointer-events: none;
  }
  @include respond-to('small-down') {
    .caption.text-on-video {
      position: absolute;
      height: auto;
      @include prefix(transform, translateY(-50%), ms webkit spec);
      margin: 0;
      a.highlight-false {
        color: white;
        border-color: white;
      }
    }
  }
}

.homepage-video .mobile-video__buttons {
  display: block;
  text-align: center;
  top: 55%;
  @include prefix(transform, translateY(-50%), ms webkit spec);
  width: 100%;
  position: absolute;
  &.text-on-video { z-index: 20; }
  a.highlight-false {
    background-color: rgba(255,255,255,0);
    color: #ffffff;
    border: 1px solid #ffffff;
  }
  a.highlight-true {
    background-color: #ffffff;
    border-color: #ffffff;
    
      @if (lightness(#ffffff) > 50) {
        color: #333;
      } @else {
        color: #fff;
      }
    
  }

  .action_button {
    margin: 5px;
  }

  @include respond-to('small-up') {
    display: none;
  }
}

.darken-video {
  display: block;
  background: rgba(0,0,0,0.3);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  pointer-events: none;
  z-index: 20;
}

/* #Page Banners
================================================== */

.banner.page-banner {
  overflow: hidden;
  max-height: 100vh;
  
    margin-top: 40px;
  
}
.collection-template-section .banner.page-banner {
  margin-top: 0;
}
.caption.captionOverlay--true {
  max-width: 960px;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
  
    top: 55%;
  
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 3;
  .headline, .subtitle {
    color: #ffffff;
    
  }
  @include respond-to('medium-down'){
    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
================================================== */

.vertical-menu_submenu {
  -webkit-box-shadow: 1px 1px 3px 0px rgba(33,33,33,0.2);
  -moz-box-shadow: 1px 1px 3px 0px rgba(33,33,33,0.2);
  box-shadow: 1px 1px 3px 0px rgba(33,33,33,0.2); 
}

/*
#tsbadgeResponsiveTop_db8d3657bdbe440c985ae127463eaad4  {
    width: 46px;
    height: 64px;
    background-size: auto;
    background-size: 100%;
    position: absolute;
    bottom: 0px;
    border: 7px;
}*/

/* Hide trustedshops widget for desktop. The widget is located in footer.liquid */
@media screen and (min-width: 668px) {
 	.trustedshops {
      display: none;
    }
}

// Place floating trusted badge to the right side
.etrusted-badge-container--left {
  left: unset !important;
  right: 10px;
}

/* 
eCommercify AB
b2b index page customizations
==============================

- background-color
- text color
- mini-cart background-color, text color, hover text color
- footer background, text, link, h6
- sticky header cart
- menu color
- social icons color
- search box background, border, placeholder
- primary logo, footer logo

*/
.index {
 	background-color: #ffffff;
  	color: #ffffff;
}

.homepage_content {
    background-color: #000000;
}

.search__results .item-result, .search__results .item-result a:hover{background-color: #ffffff !important;;
  	color: #1b1f23 !important;}

.search__results .item-result .title, .search__results .item-pricing .money, .search__results .item-pricing .money .was_price  {color:#1b1f23!important;}


//Collection Page Heading
.collection .collection-template-section .banner .caption .headline {
  display: inline-block;
  padding: 5px 15px;
}

//Slideshow section
.banner .gallery-cell .caption-content {
  padding: 30px;
}

/* Bottom promo banner */
.bottom-promo-banner {
  z-index: 100000;
  position: fixed;
  width: 100%;
  height: 0;
  line-height: 0;
  bottom: 0;
  transition: all .3s linear;
  overflow: hidden;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-style: normal;
  display: block;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  .bottom-promo-banner__content {
    margin: 0 auto;
    padding: 0 1.5rem;
    >p {
      margin-bottom: 0;
    }
  }
}

.bottom-promo-banner--show .bottom-promo-banner {
  transition: all 0s linear;
  height: auto;
  min-height: 30px;
  line-height: 1.1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

.bottom-promo-banner .bottom-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: #fff;
  border: 0;
  outline: 0;
  background: 0 0;
  z-index: 1000;
  &::before {
    font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
    font-size: 20px;
    line-height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 35px;
    content: "\00d7";
    text-align: center;
  }
}

header .main-nav__wrapper .menu li >a[data-dropdown-rel="sale"] {
  color: #dc6511;
  background-color: transparent;
  padding-left: 12px;
  padding-right: 12px;
}

/* Product page redesign styles */

.product-template {
  .breadcrumb-divider {
    color: #dc6511;
  }
  .breadcrumb_link {
    span {
      color: #dc6511;
    }
  }
}
.product {
  padding-top: 20px;
  .product_name {
    color: black;
    font-weight: 600;
  }
  .sku {
    text-transform: uppercase;
    color: #8d8c8c;
    margin-bottom: 12px;
  }
  .vendor {
    margin-bottom: 0;
  }
  .modal_price {
      font-weight: 600;
  }
  .tax-info {
    color: #8d8c8c;
  }
  .product_name {
    padding-top: 0;
    line-height: 1.2;
    margin-bottom: 18px;
  }
  .modal_price {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .delivery-info {
    margin-top: 12px;
    display: block;
  }
  .inventory-info {
    color: green;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    display: flex;
    gap: 5px;
    align-items: center;
    &::before {
      content: '';
      width: 17px;
      height: 17px;
      background-color: green;
      border-radius: 50%;
    }
  }
  .product-quantity-box label, .add_to_cart, .zooomypwishmsg {
    text-transform: none;
    font-size: 16px!important;
    font-weight: 600;
    .fa-heart-o {
      display: none;
    }
  }
  .description * {
    line-height: 24px;
  }
  .product-content {
    margin-left: 60px;
    @media (max-width: 798px) {
      margin-left: 0;
    }
  }
  #ZlistWishlist {
    margin: 29px 0px 10px!important;
    .zooomypwishmsg {
      padding: 8px 27px!important;
    }
  }
}

.product-recommendations {
  .recommended-products__title {
    margin-top: 20px;
    h2 {
      color: black;
      font-weight: 600;
      font-size: 32px;
    }
  }
  
  .recommended-products--grid {
    padding-bottom: 63px;
  }
}

.thumbnail{
  .title {
    color: black;
    margin-bottom: 0;
      font-weight: 400;
  }
  .price {
    font-weight: 600;
    font-size: 18px;
    margin-top: 15px;
  }
  .sold-out {
     font-size: 16px;
  }
}

.collection-matrix {
  margin-top: 25px;
  .thumbnail {
    margin-bottom: 50px;
  }
}

.banner {
  .caption {
    h1.headline {
      font-weight: 900;
      font-size: 70px;
    }
  }
}
  @media (max-width: 798px) {
    .banner.page-banner {
      min-height: 30vh;
      .image-element__wrap {
        min-height: 100%;
         img {
            object-fit: cover;
            height: 100%;
            position: absolute;
          }
      }
    .caption {
      h1.headline {
        font-size: 40px;
      }
    }
  }
  }

.page-wrapper {
  padding-top: 25px;
  padding-bottom: 25px;
  h1 {
    font-weight: 600;
    color: black;
    margin-bottom: 7px;
  }
  p {
    line-height: 24px;
  }
  h3 {
    color: white;
    background-color: black;
    text-transform: none;
    text-decoration: none;
    font-size: 16px;
    padding: 11px 15px;
    display: inline-block;
    margin-bottom: 53px;
    a {
      color: white;
    }
  }
  ul {
    margin-top: 24px;
    li {
      margin-bottom: 0;
      line-height: 1.3;
    }
  }
}

.list-collections {
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: column;
  @media(max-width: 1050px){
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    grid-auto-flow: unset;
  }
  .title {
    text-transform: none;
    padding: 20px;
    background-color: #f1f1f1;
    transition: 0.5s background-color ease;
    
    &:hover {
        background-color: #DC6511;                                                             
    }
  }
  &:after {
    display: none;
  }
}

.logo-bar-section {
  max-width: 100%;
  width: 100%!important;
  background-color: #f1f1f1;
  .section {
    position: relative;
    .title {
      transform: rotate(-90deg) translateX(27%);
      font-size: 20px;
      position: absolute;
      top: 50%;
      left: -27px;
      text-transform: none;
      @media(max-width: 1440px){
        font-size: 14px;
      }
    }
    .logo-bar {
      display: flex;
      padding-left: 30px;
      justify-content: space-between;
      @media(max-width: 1050px){
        flex-wrap: wrap;
      }
    }
  }
}

.account-header-title h1,
.customers-login h1 {
  margin-top: 20px;
  font-weight: 600;
  color: black;
}
.account-sidebar h4,
.account-main h4,
#shopify-section-cart-template h1,
#shopify-section-cart-template .cart__item--title a,
.sidebar-block__heading {
  font-weight: 600;
  color: black;
}

.pagebtn{
  background: #dc6511;
  color: #ffffff !important;
  border: 1px solid #dc6511;
  padding: 10px 40px;
  text-align: center;
  cursor: pointer;
  min-height: 44px;
  height: 40px;
  line-height: 1.2;
  vertical-align: top;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0px;
}

.mini-cart__item-title {
  padding-right: 20px !important;
}
.cart .cart-section .cart__item {
  padding: 30px 0 10px;
}
.cart .cart-section h1,
.cart .cart-section .cart__item--title >a,
.contact-section h1 {
  color: #000;
  font-weight: 600;
}
.sidebar-block__heading:hover {
  cursor: pointer;
}
.cc-btn {
  font-weight: 600!important;
}
div#ZoomyWishlistPage {
  margin-top: 40px;
}
.zbodyaction .zooomybtn {
  display: flex;
    justify-content: center;
    align-items: center;
    width: 48%;
    float: left;
    margin: 0!important;
}
.zbodyaction .zooomybtn a {
font-weight: 600;
    min-height: 36px;
    display: flex;
    font-size: 16px;
    align-items: center;
}
.zbodyaction .addcartbtn {
      font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    float: right;
    font-size: 16px;
    min-height: 44px;
    height: 40px;
}

/* The Title to change (“KUNDEN-LOGIN”) and the Filtertitles in the collection */
.customers-login h1,
.account-header-title h1,
.account-main h4,
.account-sidebar h4,
.contact-section h1,
.zbackinstock__headings h3,
.faceted-filter-group-summary__label{
    color: #000;
    font-weight: 600;
  }


.contact-form label, .custom-contact-form label {
  text-transform: uppercase;
}
#customer_login label {
  text-transform: uppercase;
}
@media (max-width: 798px) {
  .collection .sidebar {
    width: 100% !important;
  }
}

.full-width {
  width: 100%;
}

.request_button {
  display: flex;
  flex: 1;
}

.purchase-details:has(.request_button) + #zooomybackinstock {
  display: none!important;
}
