/** Shopify CDN: Minification failed

Line 67:2 Comments in CSS use "/* ... */" instead of "//"
Line 68:2 Comments in CSS use "/* ... */" instead of "//"
Line 77:2 Comments in CSS use "/* ... */" instead of "//"
Line 86:2 Comments in CSS use "/* ... */" instead of "//"
Line 87:2 Comments in CSS use "/* ... */" instead of "//"
Line 88:2 Comments in CSS use "/* ... */" instead of "//"
Line 97:2 Comments in CSS use "/* ... */" instead of "//"
Line 98:2 Comments in CSS use "/* ... */" instead of "//"
Line 99:2 Comments in CSS use "/* ... */" instead of "//"
Line 107:2 Comments in CSS use "/* ... */" instead of "//"
... and 47 more hidden warnings

**/
#trustedsite-tm-image{
  background: transparent !important;
  box-shadow: none !important;
}

/******************************************************************
Theme Name: Mobilia 5.5.9
Theme URI: http://themes.shopify.com/themes/mobilia/styles/tokyo?ref=out-of-the-sandbox
Author: Out of the Sandbox (http://outofthesandbox.com)
Description: Shopify Theme (http://www.shopify.com/?ref=out-of-the-sandbox)
******************************************************************/
/* Table of Content
==================================================
  #Mixins
  #Reset & Basics
  #Fonts
  #Basic Styles
  #Typography
  #Links
  #Lists
  #Menu
  #Images
  #Placeholders
  #Videos
  #Page Details
  #Home page - featured promotions
  #Home page - image with text
  #Buttons
  #Tabs
  #Forms
  #Tables
  #Misc
  #FAQ
  #Contact form
  #Home page - map
  #Image Gallery
  #Testimonials
  #Logo-list
  #Testimonials
  #Site Styles
  #Password Page
  #Swatch Styles
  #FlexSlider
  #FancyBox
  #Layout
  #Font-Face
  #Custom Styles */

  /* #Mixins
================================================== */

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

  $small: 480px;
  $medium: 798px;
  $large: 799px;
  $larger: 960px;
  $xlarge: 1200px;

  
      @media (max-width: 480px){
        @content;
      }
    

    
      @media (max-width: 798px){
        @content;
      }
    

    
      @media (max-width: 799px){
        @content;
      }
    

    
      @media (max-width: 960px){
        @content;
      }
    

    
      @media (min-width: 1200px) {
        @content;
      }
    

    
      @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
        @content;
      }
    

  

  @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 transition{
    -webkit-transition: all 500ms ease 0s;
    -moz-transition: all 500ms ease 0s;
    -ms-transition: all 500ms ease 0s;
    -o-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
  }

/* #Reset & Basics
================================================== */
  html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block; }
body {
    line-height: 1; }
ol, ul {
    list-style: none; }
blockquote, q {
    quotes: none; }
blockquote:before, blockquote:after,
  q:before, q:after {
    content: '';
    content: none; }
table {
    border-collapse: collapse;
    border-spacing: 0; }

/* #Fonts
================================================== */@font-face {
  font-family: "Noto Serif";
  font-weight: 400;
  font-style: normal;
  src: url("//www.jdstorefashion.com/cdn/fonts/noto_serif/notoserif_n4.2d2c0de42578d102529803e6279142ebd2dcaec4.woff2?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=5fa0f73c4e9a7d6fbc424e3670b36fae70dbb5890a5f6b8fbe7d75ffbbb024e8") format("woff2"),
       url("//www.jdstorefashion.com/cdn/fonts/noto_serif/notoserif_n4.02b91136c00b7f5aaf6c58d8d63072cd1d66b355.woff?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=293e3da3e0181df4c769543bbfa0672047dac3025a7d84e1c17a10183d9b668c") format("woff");
}


  @font-face {
  font-family: "Noto Serif";
  font-weight: 700;
  font-style: normal;
  src: url("//www.jdstorefashion.com/cdn/fonts/noto_serif/notoserif_n7.586b50349c84b6ed6c2a6dd520c9a36e4b0bc3db.woff2?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=57845919eadf97f6898977de74cc27c57d225cd900a1fe2ea0c5422c705be1df") format("woff2"),
       url("//www.jdstorefashion.com/cdn/fonts/noto_serif/notoserif_n7.fa23a2873f08b1b4d922227ccdc79251806c9a96.woff?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=1ed8c5803d277f708c43815aba8ea723433be4785d4f544859024be42381a839") format("woff");
}


  @font-face {
  font-family: "Noto Serif";
  font-weight: 400;
  font-style: italic;
  src: url("//www.jdstorefashion.com/cdn/fonts/noto_serif/notoserif_i4.13774bb367a38813c08d721e9b2fc4bf631e2a21.woff2?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=f8d1617aa6c1f1795013a44f19a9f01d74422288e391b5dab3444747791d33f2") format("woff2"),
       url("//www.jdstorefashion.com/cdn/fonts/noto_serif/notoserif_i4.0c6fd16276481bcc1a2682f8b41bb156d9032ce9.woff?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=2fe008776ffe1b91bc449403da84ea79362b8a9154eacfb3b08b3d29ddf557bc") format("woff");
}


  @font-face {
  font-family: "Noto Serif";
  font-weight: 700;
  font-style: italic;
  src: url("//www.jdstorefashion.com/cdn/fonts/noto_serif/notoserif_i7.6c5a3a96ed82066a752597053f3c37f7ccfd1784.woff2?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=0f7386d7e9b4dc96df4302ee64a5d0c8f972d3ef14ff3e9d44367fbb3ca8cff9") format("woff2"),
       url("//www.jdstorefashion.com/cdn/fonts/noto_serif/notoserif_i7.b78a4e6b8ce2e15f4efcff811b53bb7278e3e170.woff?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=c4ea1d57481ff0e0ff42b076ed51096038f1b135f991636ed4549594a9d4a464") format("woff");
}


  @font-face {
  font-family: Oswald;
  font-weight: 400;
  font-style: normal;
  src: url("//www.jdstorefashion.com/cdn/fonts/oswald/oswald_n4.a5ee385bde39969d807f7f1297bf51d73fbf3c1e.woff2?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=7e71033a5bd322b35aa6c011aa425caf387c5b981016a4b97266590e80590e34") format("woff2"),
       url("//www.jdstorefashion.com/cdn/fonts/oswald/oswald_n4.8f3e284746fbc2d29e34993609c51fdc432b0b24.woff?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=7a90a0d34495395e4e448fcbea483de1b326eefcd900ce9f9e79aea62898d658") format("woff");
}


  @font-face {
  font-family: Oswald;
  font-weight: 700;
  font-style: normal;
  src: url("//www.jdstorefashion.com/cdn/fonts/oswald/oswald_n7.f71e68b857a7b8128a7629452b9c6bf9468356a7.woff2?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=1ac5667278cf3d11dea505ad0064723e514e663cddc91d69aa279d035b7d5b87") format("woff2"),
       url("//www.jdstorefashion.com/cdn/fonts/oswald/oswald_n7.2767cc6e7cfc91284caa2c06eb07eca21a27681e.woff?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=70a9c7fdc950b8ef7848870d765eba632c3637d698a0e6282e40695c24c97f9a") format("woff");
}


  

  

  @font-face {
  font-family: Oswald;
  font-weight: 400;
  font-style: normal;
  src: url("//www.jdstorefashion.com/cdn/fonts/oswald/oswald_n4.a5ee385bde39969d807f7f1297bf51d73fbf3c1e.woff2?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=7e71033a5bd322b35aa6c011aa425caf387c5b981016a4b97266590e80590e34") format("woff2"),
       url("//www.jdstorefashion.com/cdn/fonts/oswald/oswald_n4.8f3e284746fbc2d29e34993609c51fdc432b0b24.woff?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=7a90a0d34495395e4e448fcbea483de1b326eefcd900ce9f9e79aea62898d658") format("woff");
}


  @font-face {
  font-family: Oswald;
  font-weight: 700;
  font-style: normal;
  src: url("//www.jdstorefashion.com/cdn/fonts/oswald/oswald_n7.f71e68b857a7b8128a7629452b9c6bf9468356a7.woff2?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=1ac5667278cf3d11dea505ad0064723e514e663cddc91d69aa279d035b7d5b87") format("woff2"),
       url("//www.jdstorefashion.com/cdn/fonts/oswald/oswald_n7.2767cc6e7cfc91284caa2c06eb07eca21a27681e.woff?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=70a9c7fdc950b8ef7848870d765eba632c3637d698a0e6282e40695c24c97f9a") format("woff");
}


  

  

  @font-face {
  font-family: Oswald;
  font-weight: 400;
  font-style: normal;
  src: url("//www.jdstorefashion.com/cdn/fonts/oswald/oswald_n4.a5ee385bde39969d807f7f1297bf51d73fbf3c1e.woff2?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=7e71033a5bd322b35aa6c011aa425caf387c5b981016a4b97266590e80590e34") format("woff2"),
       url("//www.jdstorefashion.com/cdn/fonts/oswald/oswald_n4.8f3e284746fbc2d29e34993609c51fdc432b0b24.woff?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=7a90a0d34495395e4e448fcbea483de1b326eefcd900ce9f9e79aea62898d658") format("woff");
}


  @font-face {
  font-family: Oswald;
  font-weight: 700;
  font-style: normal;
  src: url("//www.jdstorefashion.com/cdn/fonts/oswald/oswald_n7.f71e68b857a7b8128a7629452b9c6bf9468356a7.woff2?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=1ac5667278cf3d11dea505ad0064723e514e663cddc91d69aa279d035b7d5b87") format("woff2"),
       url("//www.jdstorefashion.com/cdn/fonts/oswald/oswald_n7.2767cc6e7cfc91284caa2c06eb07eca21a27681e.woff?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=70a9c7fdc950b8ef7848870d765eba632c3637d698a0e6282e40695c24c97f9a") format("woff");
}


  

  

  @font-face {
  font-family: Oswald;
  font-weight: 200;
  font-style: normal;
  src: url("//www.jdstorefashion.com/cdn/fonts/oswald/oswald_n2.a0b5f8ca9c73628a5a46b53d10397d9758f9d9bb.woff2?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=55ced4c07e7aa8e86ac7f0c47e934f86e61c298312c1b00b28e70ddb0a11673d") format("woff2"),
       url("//www.jdstorefashion.com/cdn/fonts/oswald/oswald_n2.dd92d38fb9f3b5dd356c5559a7dd42cb9474f0a7.woff?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=3e0fe4ab9e0f6cc92541ae7921c3ac36302b0527bb1f82804f3c5c376096d166") format("woff");
}


  

  @font-face {
  font-family: Oswald;
  font-weight: 400;
  font-style: normal;
  src: url("//www.jdstorefashion.com/cdn/fonts/oswald/oswald_n4.a5ee385bde39969d807f7f1297bf51d73fbf3c1e.woff2?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=7e71033a5bd322b35aa6c011aa425caf387c5b981016a4b97266590e80590e34") format("woff2"),
       url("//www.jdstorefashion.com/cdn/fonts/oswald/oswald_n4.8f3e284746fbc2d29e34993609c51fdc432b0b24.woff?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=7a90a0d34495395e4e448fcbea483de1b326eefcd900ce9f9e79aea62898d658") format("woff");
}


  @font-face {
  font-family: Oswald;
  font-weight: 700;
  font-style: normal;
  src: url("//www.jdstorefashion.com/cdn/fonts/oswald/oswald_n7.f71e68b857a7b8128a7629452b9c6bf9468356a7.woff2?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=1ac5667278cf3d11dea505ad0064723e514e663cddc91d69aa279d035b7d5b87") format("woff2"),
       url("//www.jdstorefashion.com/cdn/fonts/oswald/oswald_n7.2767cc6e7cfc91284caa2c06eb07eca21a27681e.woff?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=70a9c7fdc950b8ef7848870d765eba632c3637d698a0e6282e40695c24c97f9a") format("woff");
}


  

  

  @font-face {
  font-family: "Noto Serif";
  font-weight: 400;
  font-style: normal;
  src: url("//www.jdstorefashion.com/cdn/fonts/noto_serif/notoserif_n4.2d2c0de42578d102529803e6279142ebd2dcaec4.woff2?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=5fa0f73c4e9a7d6fbc424e3670b36fae70dbb5890a5f6b8fbe7d75ffbbb024e8") format("woff2"),
       url("//www.jdstorefashion.com/cdn/fonts/noto_serif/notoserif_n4.02b91136c00b7f5aaf6c58d8d63072cd1d66b355.woff?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=293e3da3e0181df4c769543bbfa0672047dac3025a7d84e1c17a10183d9b668c") format("woff");
}


  @font-face {
  font-family: "Noto Serif";
  font-weight: 700;
  font-style: normal;
  src: url("//www.jdstorefashion.com/cdn/fonts/noto_serif/notoserif_n7.586b50349c84b6ed6c2a6dd520c9a36e4b0bc3db.woff2?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=57845919eadf97f6898977de74cc27c57d225cd900a1fe2ea0c5422c705be1df") format("woff2"),
       url("//www.jdstorefashion.com/cdn/fonts/noto_serif/notoserif_n7.fa23a2873f08b1b4d922227ccdc79251806c9a96.woff?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=1ed8c5803d277f708c43815aba8ea723433be4785d4f544859024be42381a839") format("woff");
}


  @font-face {
  font-family: "Noto Serif";
  font-weight: 400;
  font-style: italic;
  src: url("//www.jdstorefashion.com/cdn/fonts/noto_serif/notoserif_i4.13774bb367a38813c08d721e9b2fc4bf631e2a21.woff2?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=f8d1617aa6c1f1795013a44f19a9f01d74422288e391b5dab3444747791d33f2") format("woff2"),
       url("//www.jdstorefashion.com/cdn/fonts/noto_serif/notoserif_i4.0c6fd16276481bcc1a2682f8b41bb156d9032ce9.woff?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=2fe008776ffe1b91bc449403da84ea79362b8a9154eacfb3b08b3d29ddf557bc") format("woff");
}


  @font-face {
  font-family: "Noto Serif";
  font-weight: 700;
  font-style: italic;
  src: url("//www.jdstorefashion.com/cdn/fonts/noto_serif/notoserif_i7.6c5a3a96ed82066a752597053f3c37f7ccfd1784.woff2?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=0f7386d7e9b4dc96df4302ee64a5d0c8f972d3ef14ff3e9d44367fbb3ca8cff9") format("woff2"),
       url("//www.jdstorefashion.com/cdn/fonts/noto_serif/notoserif_i7.b78a4e6b8ce2e15f4efcff811b53bb7278e3e170.woff?h1=amRzdG9yZWZhc2hpb24uY29t&h2=amRzdG9yZWZhc2hpb24uYWNjb3VudC5teXNob3BpZnkuY29t&hmac=c4ea1d57481ff0e0ff42b076ed51096038f1b135f991636ed4549594a9d4a464") format("woff");
}

/* #Basic Styles
================================================== */
  body {
    background-color: #ffffff;
    

    font-family: "Noto Serif", serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: none;
    color: #2e2d2c;
    line-height: 1.8em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
}
::-moz-selection {
       background-color: #000;
       color: #fff;
}
::selection {
  background: #FFF7B6;
  color: black;
}
abbr {
  border-bottom: 1px dotted #e0e0e0;
}

.text-align--left { text-align: left; }
.text-align--center { text-align: center; }
.text-align--right { text-align: right; }

/* #Typography
================================================== */

  .logo {
    font-family: Oswald;
    font-weight: 400;
    font-size: 34px;
    text-transform: uppercase;
    color: #030303;
  }

  .logo a, .logo a:hover, .logo a:visited, .logo a:active {
    color: #030303;
    line-height: 45px;
  }
  @media (max-width: 480px) {
    .logo a, .logo a:hover, .logo a:visited, .logo a:active {
      padding-bottom: 15px;
    }
  }


  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .collection_title,
  .headline,
  .subtitle {
    font-family: Oswald, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: #2e2d2c;
    display: block;
    letter-spacing: 1px;
    text-rendering: optimizeLegibility;
  }

  h1 a,
  h2 a,
  h3 a,
  h4 a,
  h5 a,
  h6 a,
  .collection_title { font-weight: inherit; }

  h1 a,
  h1 a:visited,
  .collection_title a,
  .collection_title a:visited { color: #2e2d2c }

  h1 a:hover,
  h1 a:active,
  .collection_title a:hover,
  .collection_title a:active { color: #dd390d }

  h1,
  .h1,
  h1.home,
  .collection_title {
    font-size: 26px;
    line-height: 1.5em;
    margin: 0 auto 1px;
    clear:both;
    font-weight: 400;
  }

  h1.home {
    margin: 0 auto 15px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 12px 0;
  }

  h1.product_name {
    margin-bottom: 15px;
  }

  a.product_collection {
    padding-bottom: 0;
    display: inline-block;
  }

  h1.article_name {
    margin-bottom: 5px;
  }

  h2,
  .h2 {
    font-size: 26px;
    margin-bottom: 0.75em
  }

  h2.center {
    margin: 15px 0;
  }

  h2.title,
  h2.title a {
    text-align: center;
    margin: 20px 0;
    color: #2e2d2c;
  }

  h2.product_name a {
    color: #2e2d2c;
  }

  h2.article_title {
    margin: 5px 0;
    font-size: 22px;
  }

  h2.article_title a {
    color: #2e2d2c;
  }

  h3,
  .h3,
  h1.blog_title {
    font-size: 24px;
    line-height: 35px;
    margin: 0 auto 15px 0;
    text-align: left;
  }

  h1.collection_title,
  div.collection_title {
    margin-bottom: 0;
    display: inline;
  }

  h1.collection_title_tags,
  div.collection_title_tags {
    padding-right: 25px;
    border-right: solid 1px #e0e0e0;
  }

  h4,
  .h4,
  h4.title a {
    font-size: 20px;
    line-height: 32px;
    margin: 15px 0;
    text-align: left;
    padding: 0;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 8px;
  }

  h4.title a { border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    color: #2e2d2c;
  }

  h4.product_name {
    border: 0;
    padding: 0;
  }

  h5,
  .h5 {
    font-size: 18px;
    padding-bottom: 1em;
  }

  h5.sub_title {
    padding-bottom: 0;
  }

  h6,
  .h6 {
    font-size: 18px;
    padding-bottom: 1em;
  }

  .footer h6 {
    color: #000000;
  }

  .headline {
    font-size: 26px;
  }

  .subheader {
    color: #777;
  }

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

  p img {
    margin: 0;
  }

  sub {
    font-size: 60%;
  }

  em,
  i {
    font-style: italic;
  }

  strong,
  b {
    font-weight: bold;
  }

  small {
    font-size: 90%;
  }

  .index h2.title, .index .title a, .index h2.title a {
    font-size: 26px;
    line-height: 1.5;
  }


  /* Promo banner */

  .promo_banner-show .promo_banner {
    transition: all 0s linear;
    height: auto;
    line-height: inherit;
    padding: 2px 0;
    opacity: 1;
    font-weight: normal;
  }

  div.promo_banner {
    padding: 0;
    text-align: center;
    font-size: 13px;
    opacity: 0;
    height: 0;
    line-height: 0;
    z-index: 5000;
    top: 0;
    transition: all 0.3s linear;
    overflow: hidden;
    p,
    span {
      width: 90%;
      margin: 0 auto;
    }
    .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;
      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: 26px;
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 35px;
        content: "\00d7";
        text-align: center;
      }
    }
  }

  .feature_divider {
    display: block;
    margin: 25px auto 25px auto;
    background-color: #363636;

    
      height: 1px;
      width: 30px;
    
  }

/*  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 #e0e0e0; }
  blockquote cite { display: block; font-size: 12px; color: #555; }
  blockquote cite:before { content: "\2014 \0020"; }
  blockquote cite a, blockquote cite a:visited, blockquote cite a:visited { color: #555; }
  hr { border: solid #e0e0e0; border-width: 1px 0 0; clear: both; margin: 12px 0; height: 0; }
  .quote {
     font-size: 16px;
     line-height: 22px;
     text-align: center;
     margin: 0 0 20px 0;
     font-style: italic;
    }
/* #Links
================================================== */
  a, a:visited { color: #dd390d; text-decoration: none; outline: 0; -webkit-transition: color .1s linear; -moz-transition: color .1s linear; -o-transition: color .1s linear; -ms-transition: color .1s linear; transition: color .1s linear; }
  a:hover, a:focus { color: #3d4247; }
  a, button, input, select, textarea, label, summary { touch-action: manipulation; }
/* #Lists
================================================== */
  ul, ol { margin-bottom: 5px; }
  ul { list-style: circle outside; }
  ol { list-style: decimal; }
  ul, ol, ul.square, ul.circle, ul.disc { margin-left: 30px; }
  ul.square { list-style: square outside; }
  ul.circle { list-style: circle outside; }
  ul.disc { list-style: disc outside; }
  ul ul, ul ol,
  ol ol, ol ul { margin: 4px 0 5px 30px; font-size: 95%;  }
  li { line-height: 22px; padding-bottom: 12px; }
  ul.large li { line-height: 21px; }
  ul.none { list-style: none outside; margin-left: 0;}
  ul.border {
    list-style: none outside;
    line-height: 26px;
  }
  ul.border li {
    border-bottom: 1px solid #e0e0e0;
    list-style: none outside none;
    padding: 12px 0;
    margin-bottom: 0;
  }

/* #Menu
================================================== */

.header {
  background-color: #f4f4f4;
}

.header_border {
  border-bottom: solid 1px #e0e0e0;
  padding-bottom: 15px;
}

.homepage {
  padding-bottom: 15px;
}

.nav {
  text-align:right;
}

.nav ul {
  margin: 0 auto;
  border: none;
  padding: 0;
  margin: 0;
}

.nav ul li {
  display: inline-block;
  padding: 0 0 0 16px;
  position: relative;
  margin: 0;
  border: 0;
}

.nav ul li a,
.nav ul li a:visited,
.promo_banner,
#currencies,
a.product_collection {
  font-family: Oswald, sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: #2e2d2c;
  position: relative;
  display:block;
  letter-spacing: 1px;
  padding-bottom: 10px;
  cursor: pointer;
}

// Target Currency Dropdown in Edge
@supports (-ms-ime-align: auto) {
  select#currencies.currencies option {
    color: black;
  }
}

.nav ul li a.active,
nav ul li a.active:visited,
nav ul li a.active:active {
  color: #666666;
}

.nav ul li a:hover,
nav ul li a:focus,
a.product_collection:hover {
  color: #e92aa9;
}

.nav ul li.current_page_item a {
  color: #e92aa9;
}

.nav ul li.current_page_ancestor a {
  color: #e92aa9;
}

.nav ul.menu {
  display: inline;
}

.mobile_menu ul { display: none; }
.nav ul li a.cart_button,
.nav ul li a.navicon,
input[type="submit"].guest_button {
  padding: 10px 15px 10px 15px;
  border: solid 1px #e0e0e0;
  
    border-radius: 0;
  
}

ul.nav_buttons .button_label { margin-left: 5px; }
input[type="submit"].guest_button,
input[type="submit"].guest_button:hover {
  background: none;
  color: #dd390d;
  padding: 8px 20px 8px 10px;
}

.nav ul li a.cart_button.active {
  color: #666666;
  border-color: #666666;
}

.nav ul li a.cart_button:hover, .nav ul li a.cart_button.active:hover {
  background-position: 9px -41px;
  color: #e92aa9;
  border-color: #e92aa9;
}

ul.menu li.navicon_button {
  display: none;
}

/* sub-levels link */
.menu ul a, .menu li:hover > ul a  {
  padding: 10px 0 10px 15px;
  background: none;
  text-align: left;
}

/* sub-level ul */
.menu ul {
  position: absolute;
  left: 0;
  top: 28px;
  background-color: #f4f4f4;
  border: solid 1px #f4f4f4;
  z-index: 1000;
  display: none;
  width: 215px;
  -webkit-animation-duration:0.5s;
  animation-duration:0.5s;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}

ul.menu ul li {
  display: block;
  border-bottom: solid 1px #e0e0e0;
  text-align:left;
  margin: 0 15px;
  padding: 5px 0;
}

ul.menu ul li:last-child {
  border-bottom: 0;
}

.menu ul li a {
  display:block;
}

/* sub-sub-level dropdown */
.menu ul ul {
  left: 185px;
  top: -1px;
}

.menu li.dropdown_left ul ul {
  left: -215px;
}

/* show dropdown ul on hover */
.menu li:hover > ul {
  display: block;
}

.toggle_menu {
  position: relative;
  overflow: hidden;
  display: none;
  top: -16px;


}


ul.top_menu {
  margin-bottom: 10px;
  margin-top: 5px;
  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;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}
ul.top_menu li a {
  padding-bottom: 0;
}
ul.top_menu form.search {
  margin-bottom: 0;
}


ul.top_menu li a, ul.top_menu li a:visited, ul.top_menu li a:active, select#currencies {
  font-size: 12px;
  color: #2e2d2c;
}

ul.top_menu li a:hover {
  color: #e92aa9;
}

#currencies {
  width: inherit;
  padding: 10px 35px 10px 0;
  font-size: 15px;
  margin-bottom: 0;
  border: 0;
}

.mobile_menu {

  .search_box{
    width:100% !important;
    border:none;
  }

  .currency-container {

    #currencies {
      width:100%;
      border:none;
      color: #9DA0A4;
      text-decoration: none;
      -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
      -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
      box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
      text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
      display: block;
      padding: 10px 20px;
      background-color:transparent;
      background-position: 98.5% 50%;
      &:hover{
        color:#FFF;
      }
    }
  }
}

.mobile_menu_container {
  display: inline;
}

.nav ul.mobile_menu {
  background-color: #fdfdfd;
  margin-bottom: 1em;
  clear: both;
}

.nav ul.mobile_menu li {
  border: none;
  text-align: left;
  display: block;
  border-top: 1px solid #030303;
  padding-left: 0
}

.nav ul.mobile_menu .search_box {
  width: 100%;
  box-sizing: border-box;
}

.nav ul.mobile_menu form.search {
  margin: 10px 20px;
}

.nav ul.mobile_menu li a {
  color: #030303;
  text-decoration: none;
/*   box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125); */
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  display: inline-block;
  padding: 10px 20px;
}

.nav ul.mobile_menu li ul li a {
  padding-left: 40px;
}

.nav ul.mobile_menu li ul ul li a {
  padding-left: 60px;
}

/* .nav ul.mobile_menu li.active, .mobile_menu li:hover{
  background-color: #111;
}
 */
/* .nav ul.mobile_menu li.active a, .nav ul.mobile_menu li a:hover {
  color: #fff;
} */

.nav ul.mobile_menu li.active a, .nav ul.mobile_menu li a:hover {
  color: #E92AA9;
}

.header-section {
  padding-bottom: 20px;
}

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

.container div.collection_nav {
  border-bottom: solid 1px #e0e0e0;
  padding-bottom: 20px;
  margin-bottom: 1.5em;
}

.container div.feature_banner {
  margin-bottom: 0;
  border-bottom: 0;
}

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

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

.collection_menu li a, .sidebar a {
  color: #2e2d2c;
}

.collection_menu li a span.active, .sidebar li.active a, ul.blog_list a.active, ul.blog_list a.active--default {
  color: #2e2d2c;
  font-weight: bold;
}

.collection_menu a li a:hover, .collection_menu li span.active:hover, .sidebar a:hover {
  color: #e92aa9;
}

ul.blog_list li ul {
  display: none;
  margin: 15px 0 0 15px;
  padding-bottom: 15px;

  &.active {
    display: block;
  }

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

ul.blog_list li ul li {
  margin-bottom: 0;
  padding-bottom: 15px;

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

/* #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, .article_image img, .section img, .thumbnail img, .logo img, .page img, .sidebar img, #target img {
  max-width: 100%;
  height: auto; }
.zoomImg {
  max-width: inherit !important;
  cursor: pointer;
}

.description_wide img {
  width: 100%;
}

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

.lazyload--fade-in {
  opacity: 0;
  transition: opacity 0.2s linear;
}

.lazyload--fade-in.lazyloaded {
  opacity: 1;
  max-width: 100%;
  height: auto;
}

.featured_collections .lazyload--fade-in.lazyloaded {
  width:100%
}

img[data-sizes="auto"] {
  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;
}

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

  $color-blankstate: rgba(#2e2d2c, 0.3);
  $color-blankstate-background: rgba(#2e2d2c, 0.4);

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

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

  .placeholder-instagram .instas:nth-child(even) .placeholder-svg--instagram,
  .featured-promotions-section .feature-section:nth-child(even) .placeholder-svg--promotions,
  .image-with-text-section .featured-link--image:nth-child(odd) .placeholder-svg--promotions,
  .gallery-section .gallery_image:nth-child(even) .placeholder-svg,
  .logo-bar-section .logo-bar__item:nth-child(even) .placeholder-svg {
    background-color: rgba(#2e2d2c, 0.35);
  }

/* #Videos
================================================== */
/*
  For YouTube and Vimeo videos, wrap the embedded code snippet
  in a <div class="video-container"> tag to allow it to resize.
  To restrict the width, wrap with an additional <div class="video-wrapper">
*/
  .video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
    overflow: hidden;
  }
  .video-container iframe,
  .video-container object,
  .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .video-wrapper {
    width: 600px;
    max-width: 100%;
  }
  video {
    display: block;
    width: 100%;
    height: auto;
  }

  /* #Home page - video */

  .homepage-video {
    position: relative;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    img {
      width: 100%;
      display: block;
    }
    iframe {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100%;
      width: 100%;
    }
    .homepage-video--media {
      cursor: pointer;
      width: 100%;
      height: auto;
      padding-top: 0;
    }
    .flex-caption {
      z-index: 10;
    }
    .caption.text-on-video {
      z-index: 3;
      pointer-events: none;
    }
    .mediaWrapper {
      position: absolute !important;
      top: 0;
      left: 0;
      
    }
    .first_button {
      pointer-events: true;
    }
  }

  .homepage-video__placeholder {
    position: relative;
  }

  .homepage-video.darken-video-true::after {
    content: '';
    display: block;
    background: rgba(0,0,0,0.3);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    pointer-events: none;
  }

  .caption {
    color: #3f3e3e;
    position: absolute;
    top: 50%;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    pointer-events: none;
    text-align: center;
    width: 100%;
    a {
      pointer-events: all;

      &.action_button {
        padding: 12px 35px;
      }
    }
  }

/* #Page Details
================================================== */
.page-details {
  .header-section {
    padding-bottom: 0;
  }
  .homepage_content .action_button {
    width: auto;
  }
  .page-divider {
    opacity: 0;
    border-color: #e0e0e0;
  }
  .active-divider {
    opacity: 1;
  }
  .maps iframe {
    pointer-events: none;
    display: block;
  }
  .gallery--thumbnail.column {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .gallery--thumbnail a img,
  .gallery--thumbnail a svg{
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .page-quote {
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    padding: 7px 0px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    p {
      margin: 0;
    }
  }
}

.details-section > div:not(.block__image_with_text_overlay):not(.block__featured_video) {
  padding-top: 20px;
}

.contact_form {
  padding-top: 2em;
  padding-bottom: 1em;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  @include align-items(center);
  @include justify-content(space-between);
  @media (max-width: 798px){
    display: block;
  }
  h3 {
    text-align: inherit;
  }
  img {
    @media (max-width: 480px){
      margin-bottom: 20px;
    }
  }
  input.action_button[type="submit"] {
    width: initial;
    padding: 12px 30px;
  }
}
.contact_text_position--left {
  @include flex-direction(row-reverse);
}
.contact_text_position--right {
  @include flex-direction(row);
}
.contact_text_position--center {
  @include flex-direction(column);
  @include align-items(center);
}
.contact_text_alignment--right .contact_content {
  text-align: right;
}
.contact_text_alignment--center .contact_content {
  text-align: center;
}
.contact-template_contact_form {
  margin-bottom: 50px;
}

/* #Home page - featured promotions
================================================== */

.featured-promotions {
  h2.title {
    padding: 0 20px 0;
    margin-bottom: 10px;
    @media (max-width: 480px){
      font-size: 14px;
    }
  }
  .description {
    padding: 0 20px;
  }
  .feature-section {
    text-align: center;
    float: left;
    margin: 0 10px 20px;
    position: relative;
    .link-promo {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: block;
    }
    .feature-inner {
      display: block;
      position: relative;
    }
    .feature-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0,0,0,0);
      transition: background-color 0.25s linear;
      @media (max-width: 798px){
        background-color: rgba(0,0,0,0.5);
      }
    }
    .feature-wrap {
      @include vertical-alignment;
      position: absolute;
      width: 80%;
      margin: 0 auto;
      left: 0;
      right: 0;
      pointer-events: none;
    }
    .feature-details {
      opacity: 0;
      transition: opacity 0.3s linear;
      @media (max-width: 798px){
        opacity: 1;
      }
    }
    .feature-details h2.title, .feature-details h2.title a {
      color: #FFFFFF;
      padding: 0;
    }
    .feature-details .description, .feature-details .description a {
      color: #FFFFFF;
    }
    .description a {
      pointer-events: auto;
    }
    .action_button {
      width: auto;
      margin-bottom: 10px;
      pointer-events: all;
      &:hover {
        background-color: #f73131;
      }
    }
    &:hover .feature-overlay {
      background-color: rgba(0,0,0,0.5);
    }
    &:hover .feature-details {
      opacity: 1;
    }
    img {
      width: 100%;
      display: block;
      box-shadow: #000 0em 0em 0em;
    }
  }
}

.feature-section:hover a[href] img {
  opacity: 0.8;
}

.feature-section:hover a[href] h2.title {
  color: #e92aa9;
}

$i: 1;
$delay: 0;
@while $i < 8 {
  .promo-#{$i} {
    -webkit-animation-delay: $delay + s;
    animation-delay: $delay + s;
  }
  $i: $i + 1;
  $delay: $delay + 0.3;
}

.featured-promotions.promo-per-row-2 {
  .feature-section {
    width: calc(50% - 20px);
    @media (max-width: 798px){
      width: 100%;
      margin: 0 0 10px;
    }
    &:nth-child(2n+1){
      clear: both;
    }
  }
}

.featured-promotions.promo-per-row-3 {
  .feature-section {
    width: calc(33.3333% - 20px);
    @media (max-width: 798px){
      width: 100%;
      margin: 0 0 10px;
    }
    &:nth-child(3n+1){
      clear: both;
    }
  }
}

.featured-promotions.promo-per-row-4 {
  .feature-section {
    width: calc(25% - 20px);
    &:nth-child(4n+1){
      clear: both;
    }
    @media (max-width: 798px){
      width: calc(50% - 20px);
      &:nth-child(2n+1){
        clear: both;
      }
    }
    @include respond-to('small'){
      width: 100%;
      margin: 0 0 10px;
    }
  }
}

.container.promotions-grid-full_width {
  width: 100%;
  padding-top: 0;
  .featured-promotions.promo-per-row-2 {
    .feature-section {
      width: 50%;
      margin: 0;
      @include respond-to('small'){
        width: 100%;
      }
    }
  }
  .featured-promotions.promo-per-row-3 {
    .feature-section {
      width: 33.333333%;
      margin: 0;
      @media (max-width: 798px){
        width: 100%;
      }
    }
  }
  .featured-promotions.promo-per-row-4 {
    .feature-section {
      width: 25%;
      margin: 0;
      @media (max-width: 798px){
        width: 50%;
      }
      @include respond-to('small'){
        width: 100%;
      }
    }
  }
}

/* #Home page - featured collection
================================================== */

.featured-collection--placeholder .eight {
  &:nth-child(2n+2){
    margin-right: 0;
  }
  &:nth-child(2n+1){
    margin-left: 0;
  }
}

.featured-collection--placeholder .one-third {
  &:nth-child(3n+3){
    margin-right: 0;
  }
  &:nth-child(3n+1){
    margin-left: 0;
  }
}

.featured-collection--placeholder .four {
  &:nth-child(4n+4){
    margin-right: 0;
  }
  &:nth-child(4n+1){
    margin-left: 0;
  }
}

/* Home page - image with text
================================================== */

.featured_collections .featured-link--half a[href] img {
  box-shadow: #000 0em 0em 0em;
  transition: opacity 0.2s linear;
}

.featured_collections .featured-link--half:hover a[href] img {
  opacity: 0.8;
}

.featured-link--section {
  box-sizing: border-box;
  float: left;
  width: 100%;
  min-height: 100px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  @include flex-wrap(wrap);
  &:nth-child(odd) {
   @include flex-direction(row-reverse);
    .featured-link--half {
      float: right;
    }
  }
}

.featured-link--half.featured-link--image {
  background-color: transparent;
  text-align: center;
}

.featured-link--half {
  box-sizing: border-box;
  float: left;
  width: 50%;
  position: relative;
  text-align: center;
  display: table;
  @include flex(1 0 auto);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  @include align-items(center);
  @include justify-content(space-between);
  background-color: #ffffff;
  @include respond-to('small'){
    width: 100%;
    @include flex(1 0 100%);
  }
  .featured-link--wrap {
    width: 100%;
    @include flex(0 0 auto);
  }
  img, svg {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    @include respond-to('small'){
      width: 100%;
      max-width: auto;
    }
  }
  .info {
    display: inline-block;
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    &.text-align--right {
      text-align: right;
      .description:before {
        margin-right: 0;
      }
    }
    &.text-align--left {
      text-align: left;
      .description:before {
        margin-left: 0;
      }
    }
    @include respond-to('small'){
      position: static;
      transform: translateY(0);
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      padding: 2em 0;
    }
  }
  .collection_title {
    font-size: 2vw;
    margin-bottom: 0.3em;
    display: block;
    color: #2e2d2c;
    @media (max-width: 798px){
      font-size: inherit;
    }
  }
  .description {
    position: relative;
    font-size: 1.6vw;
    line-height: 1.5;
    margin-bottom: 20px;
    @media (max-width: 798px){
     font-size: 2vw;
    }
    @include respond-to('small'){
     font-size: inherit;
    }
    @include respond-to('xlarge'){
      font-size: inherit;
    }
  }
  .action_button {
    width: auto;

    @media (max-width: 798px){
      padding: 10px 20px;
      font-size: 12px;
    }
    @include respond-to('mobile'){
      padding: 7px 15px;
    }
  }
}

.featured_collections.across-2 {
  .featured-link--section.featured-link--no-image {
    width: 100%;
  }
  .featured-link--section:nth-child(odd) .featured-link--half {
    float: left;
  }
}

.featured-link--section.featured-link--no-image {
  > img {
    display: none;
  }
  .featured-link--half {
    width: 100%;
  }
  .info {
    position: static;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    text-align: center;
    padding: 2em;
    &.text-align--left {
      text-align: center;
    }
    &.text-align--right {
      text-align: center;
    }
  }
  .description, .collection_title {
    display: none;
  }
}

.featured_collections.across-2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  @include flex-wrap(wrap);
  .featured-link--image:nth-of-type(4n+3) {
    @include flex-direction(row-reverse);
    @media (max-width: 798px){
      @include flex-direction(row);
    }
  }
  .featured-link--image:nth-of-type(4n+4) {
    @include flex-direction(row-reverse);
  }
}

.featured_collections.across-2 {
  .featured-link--section.featured-link--no-image {
    .featured-link--half {
      width: 100%;
    }
  }
  .featured-link--section {
    width: 50%;
    @include flex-direction(row);
    @media (max-width: 798px){
      width: 100%;
      &:nth-of-type(2n){
        @include flex-direction(row-reverse);
      }
    }
    .featured-link--half {
      @media (max-width: 798px){
        width: 50%;
      }
      @include respond-to('small'){
        width: 100%;
      }
    }
    .description {
      font-size: 1.2vw;
      @media (max-width: 798px){
       font-size: inherit;
      }
    }
    .button {
      font-size: 1.2vw;
      @media (max-width: 798px){
        font-size: inherit;
      }
    }
  }
  .featured-link--image:nth-of-type(2n+1) {
    clear: both;
  }
  .featured-link--image:nth-of-type(2n+2) .featured-link--half {
    float: left;
    @media (max-width: 798px){
      float: right;
    }
  }
  .featured-link--image:nth-of-type(3n+3) .featured-link--half {
    float: right;
    @media (max-width: 798px){
      float: left;
    }
  }
  .featured-link--image:nth-of-type(4n+4) .featured-link--half {
    float: right;
  }
}

/* Home page - featured product
================================================== */

.grid_text_position--left {
  @media (max-width: 798px){
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    @include flex-direction(column-reverse);
  }
}

.featured-product-section form a.size_chart {
  display: none; 
}



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

a.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"],
  button.shopify-payment-button__button.shopify-payment-button__button--unbranded {
    background-color: #e92aa9;
    color: #ffffff;
    border: 0;
    padding: 12px;
    width: 100%;
    margin: 0;
    cursor: pointer;
    text-align: center;
    text-shadow: none;
    font-family: Oswald, sans-serif;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.2s linear;
    -webkit-appearance: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    box-sizing: border-box;
    
      border-radius: 0;
    
  }

  a.button, a.action_button {
    cursor: default;
    &[href] {
      cursor: pointer;
    }
  }

  a.button:hover,
  button:hover,
  input[type="submit"]:hover,
  input[type="reset"]:hover,
  input[type="button"]:hover,
  .action_button:hover,
  input.action_button[type="submit"]:hover,
  input.action_button[type="button"]:hover,
  button.shopify-payment-button__button.shopify-payment-button__button--unbranded:hover {
    background-color: #f73131;
  }

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

  .disabled {
    pointer-events: none;
    opacity: 0.8;
  }

  .add_to_cart {
    padding: 12px 30px;
    margin-top: 10px;
    min-height: 48px;
    line-height: 50%;
  }

  .action_button.btn { width: auto !important; }

  .amazon-payments-pay-button {
    display: block !important;
    text-align: center;
  }

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

  .action_button.action_button--secondary {
    background-color: transparent;
    border: 1px solid #e92aa9;
    color: #e92aa9;
    margin-bottom: 8px;
    box-shadow: none;
    line-height: 1.2;
    padding: 10px 0;
    min-height: 44px;
  }

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

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

  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 {
    background-color: #e92aa9;
    color: #ffffff;
    box-shadow: none;
    text-transform: capitalize;
    font-size: 0.9rem;
    letter-spacing: 0;
    padding: 11.5px 0 11.5px;
    max-width: 40%;
    margin-top: 10px;
    position: absolute;
    top: 100%;
    left: 60%;
  }
  
  button.shopify-payment-button__more-options:hover{
    background-color: #f73131;
    text-decoration: none !important;
  }

  .purchase-details {
  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;
}
@media (max-width: 1200px) {
  .purchase-details {
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    -ms-align-items: flex-end;
    align-items: flex-end;
  }
}


  .purchase-details.smart-payment-button--true {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .purchase-details.smart-payment-button--true .purchase-details__quantity {
    margin-right: 8px;
  }
}


  .purchase-details.smart-payment-button--false {
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
}


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

  .purchase-details__buttons {
  margin-top: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex: 1 0 60%;
  -moz-box-flex: 1 0 60%;
  -webkit-flex: 1 0 60%;
  -ms-flex: 1 0 60%;
  flex: 1 0 60%;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .purchase-details__buttons {
    -webkit-box-flex: 1 0 70%;
    -moz-box-flex: 1 0 70%;
    -webkit-flex: 1 0 70%;
    -ms-flex: 1 0 70%;
    flex: 1 0 70%;
    -webkit-flex-wrap: no-wrap;
    -moz-flex-wrap: no-wrap;
    -ms-flex-wrap: no-wrap;
    flex-wrap: no-wrap;
  }
}
@media (max-width: 1200px) {
  .purchase-details__buttons .action_button--secondary {
    margin-right: 8px;
  }
}
.purchase-details__buttons .shopify-payment-button, .purchase-details__buttons .action_button--secondary {
  -webkit-box-flex: 1 0 100%;
  -moz-box-flex: 1 0 100%;
  -webkit-flex: 1 0 100%;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  margin-bottom: 0;
  margin-top: 8px;
  max-width: 100%;
}
@media (max-width: 1200px) {
  .purchase-details__buttons .shopify-payment-button, .purchase-details__buttons .action_button--secondary {
    -webkit-box-flex: 1 0 calc(50% - 4px);
    -moz-box-flex: 1 0 calc(50% - 4px);
    -webkit-flex: 1 0 calc(50% - 4px);
    -ms-flex: 1 0 calc(50% - 4px);
    flex: 1 0 calc(50% - 4px);
    max-width: calc(50% - 4px);
  }
}


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

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

/* #Tabs
================================================== */
ul.tabs {
    display: block;
    margin: 25px 0;
    border-bottom: solid 1px #e0e0e0;
    border-top: 0;
    list-style: none outside;
    margin-left: 0;
    text-transform: uppercase;
    padding-left:0;
    padding-bottom: 3px;
}
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
    }
    @media (max-width: 798px){
      font-size: 12px;
    }
    @include respond-to('small'){
      margin-right: 20px;
    }
}
ul.tabs li a.active {
    border-bottom: solid 3px #e0e0e0;
    background-color: #ffffff;
    border-bottom: solid 3px #2e2d2c;
    height: 31px;
    position: relative;
    border-right-width: 1px;
    color: #2e2d2c;
}
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; line-height: 1.8em; }
ul.tabs-content > li.active { display: block; border: 0; padding-left: 0px;}
ul.tabs-content ul {padding-left: 0;}

/* 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="number"],
  input[type="password"],
  input[type="email"],
  input[type="tel"],
  textarea,
  select {
    border: 1px solid #e0e0e0;
    padding: 15px 25px 15px 15px;
    outline: none;
    font: 15px "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #51595d;
    margin: 0;
    width: 100%;
    display: block;
    margin-bottom: 20px;
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    
      border-radius: 0;
    
  }
select {
    background: url(//www.jdstorefashion.com/cdn/shop/t/33/assets/select_arrow.png?v=115686807687498086611673276718) no-repeat 97% 50%;
    background-image: url(//www.jdstorefashion.com/cdn/shop/t/33/assets/select_arrow.svg?v=153876046741008281231673276719), none;
    background-size: 16px 12px;
    cursor: pointer;
    -webkit-padding-end: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    padding: 14px 15px;
}
select::-ms-expand {
  display: none;
}
@-moz-document url-prefix() {
  select {
    background-size: 12px 10px;
    background-position: 95% 50%;
  }
}
input[type="text"]:focus,
  input[type="number"]:focus,
  input[type="password"]:focus,
  input[type="email"]:focus,
  textarea:focus {
    border: 1px solid #aaa;
    color: #333;
    box-shadow:  0 0 3px rgba(0,0,0,.2); }
label,
  legend {
    display: block;
    font-weight: bold;
    font-size: 13px;  }
input[type="checkbox"] {
    display: inline;
    margin-left: -0.5px;
    margin-right: 10px;}
label span,
  legend span {
    font-weight: bold;
    font-size: 13px;
    color: #444; }
textarea {
    width: 100%;
    box-sizing: border-box;
    
      border-radius: 0;
    
  }

input[type="submit"].sign_up {
  width: inherit;
  margin-left: 10px;
}
.continue_reading .action_button {
  width: auto;
  padding: 8px 20px;
  margin-top: 15px;
}
.continue_shopping {
  display: none;
  position: relative;
  text-align: center;
  margin-top: 20px;
}
.continue_shopping a {
  font-weight: bold;
}

.index div.section.product_section {
  padding: 25px 0;

  .product_info {
    margin-bottom: 2em;
  }
}
div.product_section {
  margin-top: 5px;
}

#target {
  text-align: center;
}
#customer input[type="text"],
#customer input[type="email"],
#customer input[type="password"] {
  width: 100%;
}
#customer_login {
  margin-bottom: 2px;
}

#customer_decline {
  width: auto;
}

#shipping-calculator input {
  width: 100%;
}

.acceptsMarketing {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;

  label {
    display: inline-block;
    margin-left: 5px;
  }

  input[type="checkbox"] {
    margin-top: 5px;
  }
}

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


  table a:link {
    color: #666;
    font-weight: bold;
    text-decoration:none;
  }
  table a:visited {
      color: #999999;
      font-weight:bold;
      text-decoration:none;
    }
  table a:active,
    table a:hover {
      color: #bd5a35;
      text-decoration:underline;
    }
  table {
      color:#666;
      text-shadow: 1px 1px 0px #fff;
      background:#eaebec;
      border:#ccc 1px solid;
      margin-bottom: 20px;
      width: 100%;
      -moz-border-radius: 2px;
      -webkit-border-radius:2px;
      border-radius:2px;
    }
  table img {
      max-width: inherit !important;
    }
  table th {
      font-weight: bold;
      text-align: left;
      padding: 12px;
      border-top:1px solid #ccc;
      border-bottom:1px solid #e0e0e0;
      background: #ededed;
      background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#ebebeb));
      background: -moz-linear-gradient(top,  #ededed,  #ebebeb);
    }
  table th:first-child{
      text-align: left;
    }
  table tr:first-child th:first-child{
      -moz-border-radius-topleft:3px;
      -webkit-border-top-left-radius:3px;
      border-top-left-radius:3px;
    }
  table tr:first-child th:last-child{
      -moz-border-radius-topright:3px;
      -webkit-border-top-right-radius:3px;
      border-top-right-radius:3px;
    }
  table tr{
      padding-left:12px;
    }
  table tr td:first-child{
      text-align: left;
      padding-left:12px;
      border-left: 0;
    }
  table tr td {
      padding:12px;
      border-bottom:1px solid #e0e0e0;
      border-left: 1px solid #e0e0e0;
      background: #fafafa;
      background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#fafafa));
      background: -moz-linear-gradient(top,  #fbfbfb,  #fafafa);
    }
  table tr td.value input {
      margin-bottom: 0;
    }
  table tr.even td{
      background: #f6f6f6;
      background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f6f6f6));
      background: -moz-linear-gradient(top,  #f8f8f8,  #f6f6f6);
    }
  table tr:last-child td:first-child{
      -moz-border-radius-bottomleft:3px;
      -webkit-border-bottom-left-radius:3px;
      border-bottom-left-radius:3px;
    }
  table tr:last-child td:last-child{
      -moz-border-radius-bottomright:3px;
      -webkit-border-bottom-right-radius:3px;
      border-bottom-right-radius:3px;
    }
  table tr:hover td{
      background: #f2f2f2;
      background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#f0f0f0));
      background: -moz-linear-gradient(top,  #f2f2f2,  #f0f0f0);
    }


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

/* #FAQ
================================================== */
$accordionBg: #ffffff;

.faq-accordion {
  padding-top: 0.75em;
  .faq-accordion--heading {
    padding-top: 1.5em;
    margin: 0 0 10px;
    &:first-child { padding-top: 0; }
  }
  & > dt {
    & > .faq-accordion--button {
      background: transparent;
      position: relative;
      padding: 20px 20px 20px 40px;
      color: #2e2d2c;
      border-bottom: 1px solid #e0e0e0;
      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: "Noto Serif", serif;
      box-shadow: none;
      border-radius: 0px;
      font-size: 18px;
      &:hover,
      &:focus {
        background: darken($accordionBg, 3%);
        border: none;
        border-bottom: 1px solid #e0e0e0;
        color: #3d4247;
      }
      &::after {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50.1%);
        -ms-transform: translateY(-50.1%);
        transform: translateY(-50.1%);
        left: 15px;
        font-size: 25px;
        content: "\002b";
        color: inherit;
      }
      &[aria-expanded="true"] {
        &::after {
          content: "\002d";
          font-size: 30px;
        }
      }
    }
    &:first-child {
      & > button {
        border-top: none;
      }
    }
  }
  & > dd {
    color: #2e2d2c;
    padding: 20px 0px 20px 0px;
    &[aria-hidden="true"] {
      display: none;
    }
    @media (max-width: 798px){
      margin-left: 15px;
    }
  }
}

/* #Contact form
================================================== */

.quote-container {
  margin: 2em 0;
  p {
    font-style: italic;
    font-weight: bold;
  }
}

.contact_form {
  clear: both;
  padding-top: 0.75em;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  @include align-items('center');
  @include justify-content('space-between');
  @media (max-width: 798px){
    display: block;
  }

  .contact_content .contact_text {
    padding-bottom: 20px;
  }
}

.contact_image--right {
  @media (max-width: 798px){
    padding-bottom: 20px;
  }
  @include respond-to('large'){
    padding-right: 60px;
  }
}

.contact_image--left {
  @media (max-width: 798px){
    padding-bottom: 20px;
  }
  @include respond-to('large'){
    padding-left: 60px;
  }
}

.contact_text_alignment--right .contact_content p,
.contact_text_alignment--right h2 {
  text-align: right;
}

.contact_text_alignment--center .contact_content p,
.contact_text_alignment--center h2 {
  text-align: center;
}

.contact-template_contact_form {
  margin-bottom: 50px;
}

.contact_form.contact_text_position--center .contact_content {
  margin-bottom: 25px;
}

.contact_form .contact_image img {
  width: 100%
}

/* #Home page - newsletter
================================================== */

.newsletter-section {
  .newsletter-wrap {
    margin: 0 auto;
    padding: 40px 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    &.newsletter--left {
      @include justify-content(flex-start);
    }
    &.newsletter--right {
      @include justify-content(flex-end);
      form.contact-form {
        float: right;
        @include justify-content(flex-end);
      }
    }
    &.newsletter--center {
      @include justify-content(center);
      form.contact-form {
        margin: 0 auto;
      }
    }
    h2 { margin-bottom: 5px }
    p { margin-bottom: 7px; }
    form.contact-form {
      padding-top: 0;
      input.action_button {
        width: 120px;
        margin-left: 5px;
        @media (max-width: 798px){
          width: 100%;
        }
      }
    }
    @media (max-width: 798px){
      @include justify-content(center);
    }
  }

  .text {
    max-width: 60%;
    @media (max-width: 798px){
      max-width: 100%;
    }
  }
  .fullWidth--false .newsletter-wrap {
    margin: 0 10px;
    padding: 60px 40px;
    @media (max-width: 798px){
      margin: 0;
      padding: 40px 20px;
      .text { padding: 0px 10px; }
    }
  }
}


/* #Home page - Map
================================================== */

.maps iframe {
  pointer-events: none;
  display: block;
}

.page-contact .map--container {
  padding-top: 20px;
}

.map--container {
  svg {
    height: 400px;
    @include respond-to('small'){
      height: 250px;
    }
  }
}

.mapLayout {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  @media (max-width: 798px){
    @include flex-wrap(wrap);
  }
  .placeholder-svg--banner {
    max-height: 400px;
  }
}

.mapLayout.mapLayout--right {
  @include flex-direction(row-reverse);
}

.mapLayout--display {
  width: 75%;
  @include flex(1 0 75%);
  @media (max-width: 798px){
    width: 100%;
  }
  img.lazyloaded {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    @media (max-width: 798px){
      height: auto;
    }
  }
  iframe {
    height: 400px;
  }
}

.mapLayout--display.mapLayout-hours--false {
  width: 100%;
}

.mapLayout--info {
  width: 25%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  @include align-items(center);
  @media (max-width: 798px){
    width: 100%;
    height: auto;
  }
  .info {
    padding: 1.5rem;
    width: 100%;
    p {
      margin-bottom: 0;
    }
    .action_button {
      margin-top: 20px;
      width: auto;
      padding: 25px 35px;
      line-height: 0;
    }
  }
}

.mapLayout--directions {
  max-width: 90%;
  margin: 20px auto;
}

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

.sidebar .sidebar_content .input-row {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 0px;
  margin-right: 0px;
}
.sidebar .sidebar_content .input-row input {
  margin: 5px 0;
}
.sidebar .sidebar_content .input-row input.action_button {
  width: 100%;
}


.blog_list {
  margin-left: 0
}

.blog_list li {
  list-style: none;
  padding-left: 0;
}

.recent_articles li {
  padding-bottom: 10px;
}

.recent_articles a {
  font-size: 13px;
  padding-right: 15px;
  display:block;
}

.toggle span,
.mobile_menu span {
  font-weight: bold;
  font-size: larger;
  float: right;
  display: none;
}

.mobile_menu span {
  display: block;
  padding: 8px 20px;
  cursor: pointer;
}

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

.toggle-all--false {
  @include respond-to('large'){
    .toggle_list {
      display: block !important;
    }
  }
}

.menu-toggle {
  float: right;
  display: inline-block;
  cursor: pointer;
  padding: 1px 6px 0 6px;
  margin-right: 0;
  font-size: 12px;
  font-weight: bold;
  transition: transform 0.3s linear;

  &.active {
    transform: rotate(-90deg);
  }

  @media (max-width: 798px){
    font-size: 14px;
  }
}

.meta .label,
.label {
  color: #6e6c6a;
}

.blog_meta,
.blog_meta a {
  color: #6e6c6a;
}
.blog_meta a:hover {
  color: #3d4247;
}
.blog_meta p {
  padding-right: 40px;
}
.blog_meta span {
  position: relative;
  display: inline-block;
  margin-right: 15px;
  font-size: smaller;
  color: #6e6c6a;
}
.blog_meta span:after {
  content: '';
  position: absolute;
  right: -16px;
  top: 50%;
  margin: -1px 5px 0;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background-color: #ced3d3;
  box-sizing: border-box;
}
.blog_meta span:last-child:after {
  background-color: transparent;
}
.tags span a {
  font-weight: bold;
  color: #dd390d;
}
.blog_list li {
  list-style: none;
}
.count {
  font-style: normal;
  font-size: 13px;
}

#tag_filter,
#sort-by {
  margin-bottom: 0;
  padding: 10px 30px 10px 12px;
  display: inline-block;
}
.excerpt {
  margin-top: -10px;
  line-height: 1.8em;
  position: relative;
  max-height: 9em; /* exactly five lines */
  margin-bottom: 7px;
  overflow: hidden;
}

.excerpt-length--lg .truncation-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 30px 0;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.excerpt-length--sm .truncation-fade {
   display: none;
}
.container div.tag_filter {
  display: none;
}

/* #Newsletter
================================================== */
.newsletter {
  margin: -5px auto;
  max-width: 640px;
  .message:empty {
    display: none;
  }
}

.input-row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  width: 92%;
}
@media (max-width: 798px) {
  .input-row {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 0px;
    margin-right: 0px;
  }
}
.input-row input {
  margin: 5px;
  max-height: 51px;
  min-width: 0;
}
@media (max-width: 798px) {
  .input-row input {
    margin: 5px 0;
  }
}
.input-row input[type="text"] {
  -webkit-flex-basis: 0;
  -moz-flex-basis: 0;
  -ms-flex-basis: 0;
  flex-basis: 0;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -moz-flex-shrink: 1;
  -ms-flex-shrink: 1;
  flex-shrink: 1;
}
.input-row input[type="email"] {
  -webkit-flex-basis: 0;
  -moz-flex-basis: 0;
  -ms-flex-basis: 0;
  flex-basis: 0;
  -webkit-flex-grow: 2;
  -moz-flex-grow: 2;
  -ms-flex-grow: 2;
  flex-grow: 2;
  -webkit-flex-shrink: 2;
  -moz-flex-shrink: 2;
  -ms-flex-shrink: 2;
  flex-shrink: 2;
}
.input-row input.sign_up {
  display: inline-block;
  margin: 5px;
  -webkit-box-flex: none;
  -moz-box-flex: none;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  max-height: 51px;
}
@media (max-width: 798px) {
  .input-row input.sign_up {
    width: 100%;
  }
}


/* #Image Gallery
================================================== */

.gallery-section {
  text-align: center;

  a{
    display: block;
  }

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

  .two-per-row {
    width: 50%;
    @media (max-width: 798px){
      width: 100%;
    }
  }

  .three-per-row {
    width: 33.333%;
    @media (max-width: 798px){
      width: 100%;
    }
  }

  .four-per-row {
    width: 25%;
    @media (max-width: 798px){
      width: 100%;
    }
  }

  .gallery_image {
    display: block;
    float: left;
    margin: 0;
  }

  .add-padding {
    padding: 5px;
  }
}

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

.testimonial-section {

  .featured-link--section {
    &:nth-child(odd) {
      @include flex-direction(initial);
      .featured-link--half {
        float: initial;
      }
    }
  }

  .featured-link--half {
    background-color: #ffffff;
    h2, p {
      color: #2e2d2c;
    }
  }

  .testimonial-image-right {
    @include flex-direction(row-reverse);
    &:nth-child(odd) {
      @include flex-direction(row-reverse);
    }
  }

  .flex-control-nav{
    display:none;
    @media (max-width: 798px){
      display: block;
    }
  }
}

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

.logo-bar-section {

  h2 {
    padding-bottom: 6px;
  }
}

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

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

  @media (max-width: 798px){
    margin-right: 15px;
    margin-left: 15px
  }
}

/* #Rich text
================================================== */
.container img.richtext-logo {
  max-width: 200px;
  margin: 0px auto;
  display: block;
}

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

.testimonial-section {

  .featured-link--section {
    &:nth-child(odd) {
      @include flex-direction(initial);
      .featured-link--half {
        float: initial;
      }
    }
  }

  .featured-link--half {
    background-color: #ffffff;

    h2, p {
      color: #2e2d2c;
    }

    h2{
      padding-bottom: 30px;
    }
  }

  .testimonial-image-right {
    @include flex-direction(row-reverse);
    &:nth-child(odd) {
      @include flex-direction(row-reverse);
    }
  }

  .flex-next, .flex-prev, .flex-control-nav {
    z-index: 101;
  }

  .flex-control-nav {
    display:none;
    bottom: 10px;
    @media (max-width: 798px){
      display: block;
    }

    li a {
      background: #2e2d2c;
      border-color: #2e2d2c;
    }
  }
}

/* #Misc
================================================== */
.remove{ color: #2e2d2c; }
.half-bottom { margin-bottom: 10px !important; }
.add-bottom { margin-bottom: 20px !important; }
.right { float:right; position: relative; }
.left { float: left; }
.center { text-align: center; }
.relative { position: relative; }
.inline { display: inline; }
h2.align_right { text-align:right }
.align_right { text-align:right }
h2.align_left { text-align: left; }
.align_left { text-align: left; }
.align_center { text-align: center; }
.container div.mobile_only { display:none; }
.no_border { border: none !important; }
.extra_padding { padding-top: 4px; }
.hidden { display: none; }
div#gift-card-outer-container { background-color: #eee; }
.warning { clear: both; padding-top: 20px; text-align: center; }
#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; }

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

.image-with-text-section .grid-layout--standard {
  padding: 20px 0px;
}

.banner-option { //Used for inner pages with banner options
  .headline { padding-top: 20px; }
  .header-section { padding-bottom: 0; }
  .wide_display--false { padding-top: 20px; }
  .homepage_slider .flex-caption .container { opacity: 1; }
  .flex-caption .headline { text-align: center; }
}

/* #Site Styles
================================================== */
  div.container {
      margin: 0 auto;
  }
  div.content {
    padding: 10px 0px 0px 0px;
  }
  .logo a {
    margin: 0;
    padding-top: 5px;
    display:block;
  }
  div.section {
     margin: 0px 0;
  }
  div.homepage_content {
    padding: 0px 0;
  }
  .featured-content-section {
    background-color: #f4f4f4;
  }
  .headline-section {
    background-color: #f4f4f4;

    .action_button {
      line-height: 18px;
      @media only screen and (min-width: 769px) {
        width: auto;
      }
    }
  }
  div.product_section {
    margin: 5px 0;
    .flexslider .slides .flex-active-slide {
      z-index:100 !important;
    }

    .flexslider .slides li {
      text-align: center;
      position: relative;
      z-index:-100 !important;
    }
  }
  

  .breadcrumb {
    margin-bottom: 1em;
  }
  .breadcrumb .prev, .breadcrumb .next {
    border: solid 1px #e0e0e0;
    color: #2e2d2c;
    margin: 5px 0 5px 8px;
    padding: 5px 12px;
    font-size: 12px;
    display: inline-block;
    
      border-radius: 0;
    
  }
  .breadcrumb .prev:before, .breadcrumb .next:before {
    margin-right: 0;
  }
  .breadcrumb .prev:hover, .breadcrumb .next:hover, .breadcrumb .prev:active, .breadcrumb .next:active {
    background-color: #f7f7f7;
    color: #e0e0e0;
  }
  .breadcrumb .prev:before {
    right: 1px;
  }
  .breadcrumb .next:before {
    right: -1px;
  }


  #category {
    width: 100%;
  }
  .featured_content p {
    margin-bottom: 0;
  }
  .featured_text {
    font-size: 18px;
    line-height: 36px;
  }
  .paginate {
    text-align: center;
  }
  .paginate span,  a.tag {
    border: solid 1px #e0e0e0;
    margin: 10px 5px;
    padding: 5px 10px;
    display: inline-block;
    min-width: 1em;
    
      border-radius: 0;
    
  }
  a.tag {
    font-size: smaller;
    padding: 4px 6px;
    margin: 5px 2px 5px 0;
  }
  .paginate span:hover, a.tag:hover {
    color: #3d4247;
  }
  .banner_image, .article img.banner_image {
    width: 100%;
    height: auto;
  }
  .paginate .current {
    background-color: #f2f2f2;
  }
  .paginate .deco {
    border: none;
  }
  .thumbnail {
    position: relative;
    margin-bottom: 1em;
    
  }
  .thumbnail a {
    display: block;
    padding-bottom:0.5em;
    color: #2e2d2c;
  }
  .thumbnail a:hover {
    color: #dd390d;
  }
  .thumbnail .vendor{
    text-transform:uppercase;
    font-weight:bold;
    font-size:13px;
    letter-spacing:0.5px;
  }
  .new {
    position: relative;
    display: inline;
    padding: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    font-size: 12px;
  }
  .thumbnail img {
    @include transition;
  }
  
    .thumbnail:hover img{
      opacity:0.5;
    }
  
  .thumbnail a img, .thumbnail a svg {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  

  /* Swap to second image on hover */

  

  .thumbnail .price,
  .thumbnail .sold_out,
  .sold_out {
    font-weight: bold;
    color: #2e2d2c;
  }

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

  .sale_banner,
  .new_banner {
    position: absolute;
    top: 0;
    background: #010363;
    padding: 13px 20px;
    text-align: center;
    color: #fff;
    font-family: Oswald, sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .new_banner {
    background: #3d4247;
  }

  
    .thumbnail .info {
     text-align: left;
    }
    .thumbnail .price {
      text-align: right;
      float: right;
      font-weight: bold;
    }
  

  .checkout_table_header h4 {
    margin-bottom: 12px;
  }

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

  label.tos_label {
    display: inline;
    font-weight: normal;
    text-transform: none;
  }

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

  a.cart_image {
    display: block;
    max-width: 100px;
  }

  .cart_image img {
    float:left;
    margin-right: 20px;
    max-width: 100px;
  }

  .quantity_label {
    display: none;
  }

  .price_total_text {
    font-weight: bold;
    display: none;
  }

  .was_price {
    text-decoration: line-through;
    color: #6e6c6a;
    font-style: italic;
    text-shadow: none;
    font-weight: normal;
  }

  .thumbnail .quick_shop_container {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width:100%;
    text-align: center;
  }

  .thumbnail .quick_shop {
    display:none;
    background-color: #e92aa9;
    color: #ffffff;
    font-family: Oswald, sans-serif;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 13px 20px;

    &:hover{
      color: #ffffff;
      background-color:#dd390d;
    }
  }

  .thumbnail:hover .quick_shop {
    display:inline;
  }

  .thumbnails a {
    display:block;
    margin-bottom: 1em;
  }

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

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

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

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

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

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

  .instas {
    width: 20%;
    float: left;
    position: relative;
  }

  .instas a {
    display: block;
  }
  .instas img, .instas video {
    width: 100%;
    display: block;
  }

  .vidholder {
    position: relative;
    overflow: hidden;
  }

  img.vidplaceholder {
      opacity: 0 !important;
  }

  .instas video {
      object-fit: cover;
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      bottom: 0;
      top: 0;
      max-height: 100%;
      max-width: 100%;
  }

  .arrow {
    font-size: smaller;
    position: relative;
    top: -1px;
    left: 2px;
    opacity: 0.6;
  }
  .modal {
    margin: 10px 0;
    display: none;
    background-color: #f4f4f4;
    color: #2e2d2c;
  }
  .modal_product {
    width: auto;
    line-height:0px;
    max-width: 940px;
  }
  .modal_product img {
    cursor: pointer;
  }
  .modal_image {
    text-align: center;
    img {
      max-height: 500px;
    }
  }
  .modal p.modal_price, p.modal_price {
    font-size: 22px;
    margin-bottom: 1em;
    
  }
  .modal form {
    margin-bottom: 10px;
  }
  .notify_form .submit {
    padding: 8px 8px !important;
  }
  .product_image_col {
    margin-top: 15px;
    text-align:center;
  }
  .product_image {
    text-align: center;
    margin-bottom: 0.75em;
  }
  .meta {
    font-size: 13px;
  }
  .meta p {
    font-size: 13px;
    margin-bottom: 0px;
  }
  p.meta {
    margin-bottom: 10px;
  }
  .comment-body p.meta {
    margin-bottom: 5px;
  }

  /* Sidebar */

  .sidebar_title {
    margin-bottom: 0;
  }

  .sidebar ul > li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    @include flex-wrap(wrap);
    @include align-items(center);
    @include justify-content(space-between);
    a { max-width: 80%; }
    ul {
      @include flex-basis(100%);
    }
  }

  .content_block {
    padding-right: 15px;
  }

  .sidebar .newsletter {
    margin-bottom: 25px;
  }
  .sidebar .newsletter .sign_up {
    margin-left: 0;
    width: 100%;
  }
  .sidebar p {
    font-size: 13px;
  }
  .sidebar .search {
    padding-top: 8px;
  }
  .sidebar .search input {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .section_select {
    float: right;
    text-align: right;
    margin-left: 15px;

    @media (max-width: 798px){
      width: 100%;
      margin-left: 0;
    }
  }
  .checkout {
    display:block;
    float:right;
    margin-top: 0px;
  }
  .or {
    font-size:smaller;
    font-style: italic;
    padding: 0 10px;
  }
  input.quantity {
    padding: 14px 8px;
    width: 60px;
    display: inline;
    margin-bottom: 1em;
  }
  .inline_purchase {
    display: inline-block;
    margin-left: 20px;
    margin-top: 28px;
  }
  .inline_purchase .add_to_cart {
    float: left;
    margin-top: 0;
  }
  .subtotal {
    text-align:right;
  }
  .mobile_left {
    text-align: right;
  }
  .article, .article_image {
    padding-bottom: 15px;
  }
  .article img, .article svg {
    margin-bottom: 15px;
  }
  body.article { padding-bottom: 0 }
  .sidebar_content {
    border-left: solid 1px #e0e0e0;
    padding-left: 20px;
  }
  .sidebar .newsletter {
    margin-bottom: 20px;
  }
  .comment {
    margin-bottom:20px;
  }
  .comment-body h6 {
    padding-bottom: 0.25em;
  }
  .comment-form input {
    width:100%;
  }
  .social_buttons a {
    display: inline-block;
    line-height: 32px;
    padding: 0 12px;
    color: #2e2d2c;
    border: 1px solid #e0e0e0;
    margin: 8px 8px 8px 0;
    font-size: 13px;
    
      border-radius: 0;
    
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -o-transition: all .1s linear;
    -ms-transition: all .1s linear;
    transition: all .1s linear;
  }

  .items_left p {
    margin-bottom: 10px;
  }
  .gravatar {
    width: 100px !important;
  }
  .gravatar img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    -webkit-border-radius: 40px;
    -khtml-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    border-radius: 40px;
  }
  .red {
    color: #C33;
  }
  .address p {
    margin-bottom: 5px;
  }
  div#disqus_thread ul, div#disqus_thread li {
      border: none;
  }

  .search_page {
    padding: 40px 0 60px 0;
  }

  .search_page--no-results {
   .search-field {
    line-height: 1.7;
    @media (max-width: 798px){
      width: 100%;
    }
   }
  }

  .size_chart {
    float: right;
    font-family: "Noto Serif", serif;
    font-size: smaller;
  }

  .size_chart_content {
    display: none;
    padding: 10px 20px;
  }

/* #Password Page
================================================== */
#password-page-bg {
  background-color: #000000;
  color: #ffffff;
  
    background-repeat: no-repeat;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  
}

#password-container {
  margin: 55px auto 0;
  max-width: 100%;
  display: table;
  text-align: center;
  display: table;
}

#password-container h1 {
  color: #dd390d;
}

.password-page-row {
  display: table-row;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.password-page-col {
  display: table-cell;
  vertical-align: middle;
  padding: 15px 30px;
  width: 100%;
}

.password-page-name {
  color: #ffffff;
}

.password-page-message {
  margin: 0 auto 25px;
  line-height: initial;
  text-transform:uppercase;
  padding:15px 0px 15px 0px;
  border-top:1px solid #FFF;
  border-bottom:1px solid #FFF;
  font-size: 26px;
  color: #dd390d;
}

.password-page-follow {
  color: #dd390d;
  text-align: center;
  font-size: 18px;
  margin-bottom: 0px;
  margin-top: 20px;
}

.password-logo {
  max-width: 240px;
  margin: 0px auto;
}

.password-message{
  max-width: 600px;
}

.hr-small {
  margin: 20px auto;
  width: 50px;
}

.password_spread{
  padding:0px;
}

.password-social .social_icons li {
  display: inline-block;
}

.password-social .social_icons{
  margin:0px;
}

.password-social .social_icons a, .password-social .social_icons a:visited, .password-social .social_icons a:active, .password-social .social_icons a:hover  {
  color: #ffffff;
  font-size: 17px;
  padding:0px;
  height:42px;
  width:42px;
  line-height:42px;
  text-align:center;
  display:inline-block;
  &:before{
    margin-right:0px;
  }
}

.password-footer {
  margin-top: 15px;
  margin-bottom: 40px;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
}

#password-page-bg .powered {
  margin-top: 0px;
}

.powered {
  display: block;
  margin-top: 15px;
}

.password-footer a {
  color: #ffffff;
  text-decoration: none;
}

.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 Page Modal CSS */
.controls {
  display: block;
  margin: 1em 2em 1em auto;
  text-align: right;
  text-transform: uppercase;
  position: relative;
}

#open-me a {
  color: #ffffff;
  font-weight:bold;
  font-size:15px;
}

.close-me { z-index: 8000; }
.close-me a { color: #000; }

.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;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  visibility: 0s 0.5s;
  transition: opacity 0.5s, visibility 0s 0.5s;
}
.overlay-open {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.inputbox {
  margin: 0px auto;
  max-width: 100%;
  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;
}

.storefront-password-form label {
  font-size: 0.9em;
  margin: 0 0 1em 0;
}

.storefront-password-form .actions {
  display: inline-block;
}

.storefront-password-form #password {
  width: 80%;
  display: inline-block;
}

#owner {
  font-size: 0.9em;
  margin-top: -1em;
  opacity: 0.8;
}

.pass-close {
  color: #000 !important;
  padding: 0 !important;
  margin: 1em !important;
  position: absolute !important;
  top: 0px !important;
  right: 0px !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;
  }
}

/* #Product Details
================================================== */
div.product-details {
  .action_button {
    width: auto;
  }
  img {
    width: 100%;
  }
  img.rich-image {
    width: auto;
    margin-bottom: 20px;
  }
  .product-divider {
    margin: 20px 0px;
    opacity: 0;
    border-color: #e0e0e0;
  }
  .active-divider {
    opacity: 1;
  }
  .feature_divider_left {
    margin: 25px 0px 25px 0px;
  }

  .detail_title {
    line-height: initial;
    font-size: 42px;
    margin-bottom: 0.3em;
    font-family: Oswald, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: #2e2d2c;
    display:block;
    letter-spacing: 1px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    @media (max-width: 798px){
      font-size: 21px;
    }
  }
  .gallery--thumbnail.column {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

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


  .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-weight: bold;
  }
  /* Hide radio buttons.*/
  .swatch input {
    display:none;
  }
  .swatch label {
    float:left;
    min-width: 25px;
    height: 35px;
    margin:0;
    font-size:13px;
    text-align:center;
    line-height: 35px;
    white-space:nowrap;
    text-transform:uppercase;
    cursor: pointer;
    padding: 0 10px;
    font-weight: bold;
  }
  .swatch .color label {
    min-width: 34px;
    height: 26px;
    line-height: 26px;
    background-position: center;
    background-size: cover;
  }
  .swatch-element {
    border: #e2e2e2 1px solid;
    
      border-radius: 0;
    
  }
  .swatch-element.color {
    padding: 5px;
  }
  .swatch-element.color, .swatch-element.color label {
    border: #e2e2e2 1px solid;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  .swatch-element.color { border-color: transparent; }
  .color.swatch-element label { padding:0; }

  .swatch_options input:checked + .swatch-element {
    border-color: #666;
  }
  .swatch .swatch-element {
    float:left;
    -webkit-transform:translateZ(0);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0px 10px 15px 0;
    position:relative;
  }
  .crossed-out { position:absolute; width:100%; height:100%; left:0; top:0; }
  .swatch .swatch-element .crossed-out { display:none; }
  .swatch .swatch-element.soldout .crossed-out { display:block; height: 100%; width: 100%; }
  .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);
    -webkit-transition: all .25s ease-out;
       -moz-transition: all .25s ease-out;
        -ms-transition: all .25s ease-out;
         -o-transition: all .25s ease-out;
            transition: all .25s ease-out;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
       -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
        -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
         -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
            box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    z-index: 10000;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
  }
  .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);
  }




/* #Footer
================================================== */
  div.footer {
    background-color: #f4f4f4;
    
    
      border-top: solid 1px #e0e0e0;
    

    font-size: 13px;
    line-height: 1.7em;
    color: #000000;
    padding: 25px 0;
    margin-top: 2em;
  }
  .index div.footer {
    margin-top: 0;
  }
  .footer p {
    margin-bottom: 10px;
  }
  .footer a {
    color: #000000;
  }
  .footer a:hover {
    color: #dd390d;
  }
  .contact-form {
    margin-bottom: 0;
    margin-top: 15px;
  }
  form.search {
    margin-bottom: 10px;
  }
  input.search_box {
    padding: 10px 15px 10px 35px;
    background: #fff url(//www.jdstorefashion.com/cdn/shop/t/33/assets/search.jpg?v=14535434292738173541673276712) no-repeat 12px 50%;
    border: solid 1px #e0e0e0;
    
      border-radius: 0;
    
    margin-bottom: 0px;
  }
  .search_box:focus {
    background-color: #fff;
  }

  .payment_methods {
    margin: 4px 0 6px 0;
    filter:alpha(opacity=80);
    opacity: 0.8;
  }

  .payment_methods svg {
    padding-right: 4px;
    height: 30px;
    width: 48px;
  }

  .credits_right {
    text-align: right;
  }
  .icons {
    list-style: none outside;
    margin-left: 0;
    border: 0;
  }
  .footer .social_icons li {
    border: 0;
    float: left;
    padding: 0 0 8px 0;
  }
  .footer .social_icons li a {
    display: inline-block;
    }

  .footer ul {
    list-style: none outside;
    margin-left: 0;
  }
  .footer li {
    padding: 6px 0;
    list-style: none outside none;
    margin-bottom: 0;
  }
  .footer ul.footer_menu li:first-child {
    margin-left: 0;
    padding-top: 0;
  }

/* #FlexSlider v2.6
================================================== */

/* Browser Resets */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus  {outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav, .flex-direction-nav li {margin: 0; padding: 0; list-style: none;}
ul.slides li {border:none; padding: 0; margin-bottom: 0; position: relative; line-height: 0;}

/* FlexSlider Necessary Styles
*********************************/
html[xmlns] .slides {display: block;}
.flexslider {margin: 0; padding: 0; z-index: 0;}
.flexslider .slides > li {display: none;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {max-width: 100%; display: block; height: auto; margin: 0 auto;}
.flex-pauseplay span {text-transform: capitalize;}
.banner-flexslider { margin-bottom: 2em; }
.banner-flexslider img { width:100%; margin-bottom: 0 }

.homepage_slider .slides > li:first-of-type {
  display: block
}

.homepage_slider .slides img, .article .slides img {
  width: 100%;
  margin-bottom: 0;
}
.slider.slideshow_article_darken--true {
  background-color: #000;
  img {
    opacity: 0.6;
  }
}

.homepage_slider .flex-control-nav li a.flex-active {
  background: rgba(255, 255, 255, 0.7);
  cursor: default;
}
@media (max-width: 798px) {
  .homepage_slider .flex-control-nav li a.flex-active {
    background: rgba(0, 0, 0, 0.7);
  }
}
.homepage_slider .flex-control-nav {
  position: absolute;
  bottom: 20px;
  right: 5%;
  width: auto;
}
@media (max-width: 798px) {
  .homepage_slider .flex-control-nav {
    bottom: auto;
    right: auto;
    position: relative;
    margin: 15px auto;
  }
}
.homepage_slider .flex-control-nav li a {
  width: 18px;
  height: 18px;
  display: block;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  text-indent: -9999px;
  border-radius: 50%;
  border: 0;
  opacity: 1;
  margin-right: 6px;
  z-index: 10;
}
@media (max-width: 798px) {
  .homepage_slider .flex-control-nav li a {
    background: rgba(0, 0, 0, 0.3);
    margin-right: 10px;
  }
}
.homepage_slider .flex-caption .container {
  opacity: 0;
}
.homepage_slider .flex-caption .container.text-animation--none {
  opacity: 1;
}


.flex-caption {
  pointer-events: none;
  .action_button {
    pointer-events: all;
  }
}

/* Clearfix for the .slides element */
.slides:after {content: "\0020"; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
* html .slides {height: 1%;}

/* FlexSlider Default Theme
*********************************/
.flexslider {position: relative; zoom: 1; clear:both; overflow: hidden}
.flex-viewport {max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease; transition: all 1s ease; }
.loading .flex-viewport {max-height: 300px;}
.flexslider .slides {zoom: 1;}
.flexslider .slides .flex-active-slide{z-index:100 !important;}
.flexslider .slides li {text-align: center; position: relative; z-index:-100 !important;}
.flexslider-container {position:relative;}
.carousel li {margin-right: 5px;border: 0}

.flexslider .slides {
  zoom: 1;
}

.flexslider .slides li {
  text-align: center; position: relative;
}

.carousel li {margin-right: 5px;border: 0}

.flex-caption {
  margin: 0;
  width: 100%;
  position: absolute;
  color: #fff;
  text-shadow: 0 2px 2px rgba(0,0,0,0.2);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
 }

.slides .headline,
.caption-content .headline {
  font-family: Oswald, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #3f3e3e;
  font-size: 42px;
  margin-bottom: 0.2em;
  line-height: 47px;
}

.subtitle {
  font-family: "Noto Serif", serif;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  font-size: 20px;
  line-height: 1.5em;
  position: relative;
  color: #3f3e3e;
  margin-bottom: 0;
}

.subtitle p a {
  pointer-events: all;
}

.flex-caption .action_button {
  width: auto;
  margin-top: 15px;
  padding: 25px 35px;
}

/* Direction Nav */
.flex-direction-nav {*height: 0;}
.flex-direction-nav a {width: 60px; height: 60px; font-size: 40px; color: #fff; margin: -20px 0 0; display: block; z-index:200 !important; position: absolute; top: 50%; cursor: pointer; opacity: 0; -webkit-transition: all .3s ease; transition: all .3s ease; background-color: rgba(0,0,0,0.4); text-align: center; line-height: 60px; }
.flex-direction-nav a span:before { margin-right: 0; }
.flex-direction-nav .flex-next { right: -60px; }
.flex-direction-nav .flex-prev { left: -60px; }
.flex-direction-nav .flex-next span { position: relative; left: 1px; top: 1px; }
.flex-direction-nav .flex-prev span { position: relative; right: 1px; top: 1px; }
.flexslider:hover .flex-next { right: 20px; opacity: 1; }
.flexslider:hover .flex-prev { left: 20px; opacity: 1; }
.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover { background-color: rgba(0,0,0,0.6); }
.flex-direction-nav .flex-disabled {opacity: .3 !important; filter:alpha(opacity=30); cursor: default;}

/* Control Nav */
.flex-control-nav {position: absolute; bottom: 40px; text-align:center; width: 100%; z-index: 100;}
.flex-control-nav li {margin: 0 0 0 5px; display: inline-block; zoom: 1; *display: inline;}
.flex-control-nav li:first-child {margin: 0;}
.flex-control-nav li a {
  width: 40px;
  height: 1px;
  display: block;
  opacity: 0.3;
  cursor: pointer;
  text-indent: -9999em;
  border: 3px solid #fff;
  background: #fff;
  overflow: hidden;
  -webkit-border-radius: 1px; -moz-border-radius: 1px; -o-border-radius: 1px; border-radius: 1px;
}

.flex-control-thumbs {width: 100%; position: absolute; bottom: -40px; text-align: center;}
.flex-control-thumbs li {margin: 0 6px; display: inline-block; zoom: 1; *display: inline;}

.flex-control-thumbs {position: static; overflow: hidden;}
.flex-control-thumbs li, .flex-control-thumbs li:first-child {width: 21%; vertical-align: top; margin: 15px 5% 0 0;}
.flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;}
.flex-control-thumbs img:hover {opacity: 1;}
.flex-control-thumbs .flex-active {opacity: 1; cursor: default;}
.product_slider .flex-active-slide a:hover {cursor: -webkit-zoom-in; cursor: -moz-zoom-in;}
.product_slider, .product_slider .flex-viewport { margin-bottom: 1em }


  .flex-control-thumbs li:nth-child(4n) {margin: 15px 0 0; }


.homepage_content {
  padding: 10px 0;
}

.index-sections .image-with-text-overlay-section:last-child {
  margin-bottom: 0;
}

.product, [class*="product"] {
  .featured-link--half .collection_title {
    font-size: 2vw;
    @media (max-width: 798px){
      font-size: inherit;
    }
  }
  .columns.product-image--align-right {
    float: right;
  }
}

/* #Fancybox
================================================== */
/*! fancyBox v2.1.2 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-skin {
  position: relative;
  background-color: #f4f4f4;
  color: #2e2d2c;
  text-shadow: none;
  
    border-radius: 0;
  
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-outer, .fancybox-inner {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -306px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}

#fancybox-loading div {
  background: #fff url('//www.jdstorefashion.com/cdn/shop/t/33/assets/fancybox_loading.gif?v=38408244440897529091673276308') center center no-repeat;
  background-size: 35px 35px;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}

.fancybox-close {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  z-index: 8040;
  font-size: 18px;
  color: #2e2d2c;
  opacity: 0.6;
  transition: all .3s ease;
}
.fancybox-close span:before {
  margin-right: 0;
}
.gallery .fancybox-close {
  color: #fff;
  background-color: rgba(0,0,0,0.4);
  top: 0;
  right: 0;
}

.gallery .fancybox-close:hover {
  background-color: rgba(0,0,0,0.6);
}
.fancybox-close:hover {
  opacity: 0.8;
}

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  z-index: 8040;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
  width: 60px;
  height: 60px;
  font-size: 40px;
  color: #fff;
  display: block;
  opacity: 0;
  transition: all .3s ease;
  background-color: rgba(0,0,0,0.4);
  text-align: center;
  line-height: 60px;
}
.fancybox-nav span:before {
  margin-right: 0;
}
.fancybox-prev span {
  left: 20px;
}
.fancybox-next span:before {
  left: 1px;
}
.fancybox-prev span:before {
  right: 1px;
}
.fancybox-prev span:hover, .fancybox-next span:hover {
  background-color: rgba(0,0,0,0.6);
}

.fancybox-next span {
  right: 20px;
}

.fancybox-nav:hover span {
  visibility: visible;
  opacity: 1;
}

.fancybox-tmp {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
}

/* Overlay helper */

.fancybox-lock {
  overflow: hidden;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background-color: rgba(0,0,0,0.6);
  transition: all .1s linear;
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
  display: none;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent; /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, .8);
}

.newsletter_popup .fancybox-inner {
  overflow-y: auto;
}

/* Newsletter */

#password-page-bg{
  .newsletter{
    margin-bottom: 0px;
  }
}

.newsletter form.contact-form {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 20px;
  width: auto;
}
.newsletter form.contact-form input.action_button {
  width: 25%;
}
@media only screen and (max-width: 959px) {
  .newsletter form.contact-form input.action_button {
    width: 100%;
    margin: 5px;
  }
}
@media only screen and (max-width: 480px) {
  .newsletter form.contact-form input.action_button {
    width: 100%;
    margin: 5px 0;
  }
}


.footer .newsletter .contact-form {
  margin: 0 0 15px;
  width: 95%;
}
@media (max-width: 798px){
  .footer .newsletter .contact-form {
    width: 100%;
    padding-top: 0px;
  }
  .space_fix h6{
    padding-bottom: 0px;
    text-align: center;
  }
}

.sidebar .newsletter .contact-form {
  width: auto;

  input {
    width: 100%;
  }
}
.newsletter_popup .fancybox-skin, .newsletter_popup .fancybox-skin p.headline,
.newsletter_popup .fancybox-skin a, .newsletter_popup .fancybox-skin a:visited {
  color: #2e2d2c;
}
.newsletter_popup .fancybox-skin {
  background-color: #f4f4f4;
}
.newsletter_popup .fancybox-close {
  color: #2e2d2c !important;
}


//Zoom on image
[data-slideshow-animation="zoom"] img {
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  cursor: zoom-in;
}

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

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

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

    .row                                        { margin-bottom: 20px; }


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

    /* Base Grid */
    .container .one.column                      { width: 55px;  }
    .container .two.columns                     { width: 130px; }
    .container .three.columns                   { width: 205px; }
    .container .four.columns                    { width: 292px; }
    .container .five.columns                    { width: 355px; }
    .container .six.columns                     { width: 430px; }
    .container .seven.columns                   { width: 530px; }
    .container .eight.columns                   { width: 605px; }
    .container .nine.columns                    { width: 680px; }
    .container .ten.columns                     { width: 730px; }
    .container .eleven.columns                  { width: 805px; }
    .container .twelve.columns                  { width: 905px; }
    .container .thirteen.columns                { width: 955px; }
    .container .fourteen.columns                { width: 1030px; }
    .container .fifteen.columns                 { width: 1105px; }
    .container .sixteen.columns                 { width: 1230px; margin-top: 0px}

    .container .one-third.column                { width: 380px; }
    .container .two-thirds.column               { width: 780px; }
    .container .one-fifth.column                { width: 220px; }


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

    .container .alternate         { padding-right: 75px;  }

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

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

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

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

    .container .one-third.column                { width: 300px; }
    .container .two-thirds.column               { width: 620px; }
    .container .one-fifth.column                { width: 172px; }

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

    .container .alternate         { padding-right: 60px;  }
}

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

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

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

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

        .container .one-third.column                { width: 236px; }
        .container .two-thirds.column               { width: 492px; }
        .container .one-fifth.column                { width: 133px; }

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

        .container .alternate         { padding-right: 48px;  }
    }


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

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

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

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

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

        .container .logo.columns       { width: 160px; }
        .container .nav.columns        { width: 130px; margin-left: 10px; }

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

        .container .alternate         { padding-right: 0;  }

    }


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

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

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

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

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

        .container .logo.columns       { width: 160px; }
        .container .nav.columns        { width: 230px; margin-left: 10px; }
    }


/* #Clearing
================================================== */

    /* Self Clearing Goodness */
    .container:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; }

    /* Use clearfix class on parent to clear nested columns,
    or wrap each row of columns in a <div class="row"> */
    .clearfix:before,
    .clearfix:after,
    .row:before,
    .row:after {
      content: '\0020';
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0; }
    .row:after,
    .clearfix:after {
      clear: both; }
    .row,
    .clearfix {
      zoom: 1; }

    /* You can also use a <br class="clear" /> to clear columns */
    .clear {
      clear: both;
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0;
    }
/* #Media Queries
================================================== */
  /* Smaller than standard 960 (devices and browsers) */
  @media only screen and (max-width: 959px) {
    input.contact_email,.footer input[type="text"]{
      width: 100% !important;
    }
    h1.collection_title_tags, div.collection_title_tags {
      border-right: 0;
      margin-right: 0;
      padding-right: 0;
    }
    .cloudzoom-lens {
      width:140px;
      height:120px;
    }
  }

/* Tablet Portrait size to standard 960 (devices and browsers) */
  @media only screen and (min-width: $large) and (max-width: 959px) {
    .nav ul li { padding: 0 0 0 10px; }
    input.search_box { width: inherit !important;}
    input[type="submit"].sign_up { padding: 15px; }
    a.button,
    button,
    input[type="submit"],
    input[type="reset"],
    input[type="button"],
    input[type="email"],
    .action_button,
    a.action_button,
    input.action_button[type="submit"],
    input.action_button[type="button"],
    select.single-option-selector {
      width: 100%;
    }
    input[type="submit"].sign_up { margin-left: 0 }
    input.action_button {
      margin-bottom: 1em !important;
    }
  }
/* All Mobile Sizes (devices and browser) */
  @media (max-width: 798px){
    .homepage_slider .flex-direction-nav {
      display: none;
    }
    
    #currencies {
      padding-right: 25px;
    }
    .article_image {
      padding-bottom: 0;
    }
    .sidebar_content {
      border: 0;
      padding: 0;
    }
    
    .instas { width: 50%; }
    .instas:last-child:nth-child(odd) { width: 100%; }
    .subtotal { text-align: left; }
    .logo a { padding-top: 5px; }
    .header_border { padding-bottom: 0; }
    .toggle_menu { top: 0; }
    .collection_menu { display: none; }
    .container div.tag_filter { display: block; }
    #tag_filter, #sort-by {
      margin: 1.5em 0 0.5em 0;
    }
    .blog_filter {
      display: block !important;
      width: 100%;
    }
    .blog h2 { margin-top: 1.5em }
    .section_select { text-align: center; }
    .or {
      text-align: center;
      width: 100%;
      display: inline-block;
      padding-left: 0;
      padding-bottom: 5px;
    }
    h4.toggle {
      cursor: pointer;
    }
    .toggle span {
      display: block;
    }
    .toggle_list {
      display: none;
    }
    select {
      width:100%;
    }
    .search_page_text {
      text-align: left;
    }
    a.button,
    button,
    .action_button,
    a.action_button,
    textarea {
      width: 100%;
    }

    .flexslider a.action_button {
      width: initial;
      padding: 15px 20px;
    }

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

    .cart_icons {
      display: none;
    }
    .credits_right {
      text-align: left;
    }
    .container .column.thumbnail, .container .columns.thumbnail {
      margin-top: 1em;
    }
  .title_column {
      float:left;
    }
  .mobile_left {
      text-align:left;
    }
  .container div.mobile_only {
      display:block;
    }
  .quantity_label {
    display: inline;
  }
  .price_total {
    text-align: right;
  }
  .price_total_text {
    display: inline;
    margin-left: 5px;
  }
  .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;
    }
  .flex-caption .headline {
    font-size: 1.5em;
    line-height: 1em;
  }
  .flex-caption .subtitle {
    font-size: 1.2em;
    line-height: 1em;
    margin-bottom: 10px;
  }
  .container .blog_content {
    padding-left: 0;
    border: 0;
  }
}
/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
  @media (max-width: 798px){
    .mobile_hidden { display: none !important }
    ul.menu li.navicon_button { display:inline-block }
    ul.menu li { padding: 0 0 0 10px; }
    ul.nav_buttons { position: relative; top: 10px }
  }
/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
  @media (max-width: 480px){
    .mobile_hidden { display: none !important }
    ul.menu li.navicon_button { display:inline-block; }
    ul.menu li { padding: 0 }
    ul.nav_buttons { position: relative; top: 10px; text-align: left }
    ul.nav_buttons .button_label { display: none; }
    ul.menu li a, ul.menu li a:hover, ul.menu li a:active { display: inline-block; }
    span.icon-cart:before, span.icon-bag:before, span.icon-menu:before { margin-right: 0; }
    input.search_box { width: 240px !important;}
    .flex-caption .action_button {
      padding: 4px 15px;
      font-size: 12px;
      margin-top: 5px;
    }
    .flex-direction-nav .flex-prev {display: none;}
    .flex-direction-nav .flex-next {display: none;}

    h1, h2, h1.home, h1.blog_title, h3, h4, h5, h6, .title a {
        font-size: 150%;
      }
    h1, h1.home, h1.blog_title, .title a, h2 {
        padding:0;
      }
}
@media
  (min--moz-device-pixel-ratio: 2),
  (-o-min-device-pixel-ratio: 2/1),
  (-webkit-min-device-pixel-ratio: 2),
  (min-device-pixel-ratio: 2) {
    input.search_box {
      background: #fff url(//www.jdstorefashion.com/cdn/shop/t/33/assets/search2x.jpg?v=83174658983691375601673276713) no-repeat 12px 50%;
      background-size: 14px 14px;
    }
}

@media only screen and (min-device-width : 320px) and (max-device-width : 1024px) {
   html {
      -webkit-text-size-adjust: 100%;
   }
}
@media screen and (-webkit-min-device-pixel-ratio:0) and (max-width: $medium) {
  select,
  textarea,
  input {
    font-size: 16px !important;
  }
}

/* #Icons
================================================== */
@font-face {
  font-family: 'mobilia';
  src: url('//www.jdstorefashion.com/cdn/shop/t/33/assets/mobilia.eot?v=38776982091349260061673276589');
  src: url('//www.jdstorefashion.com/cdn/shop/t/33/assets/mobilia.eot?%23iefix&v=38776982091349260061673276589') format('embedded-opentype'),
       url('//www.jdstorefashion.com/cdn/shop/t/33/assets/mobilia.woff?v=17499794823148516131673276591') format('woff'),
       url('//www.jdstorefashion.com/cdn/shop/t/33/assets/mobilia.ttf?v=131711431096967232031673276591') format('truetype'),
       url('//www.jdstorefashion.com/cdn/shop/t/33/assets/mobilia.svg?v=40272112643397130361673276590') format('svg');
  font-weight: normal;
  font-style: normal;
}
  [class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "mobilia";
  font-style: normal;
  font-weight: normal;
  speak: none;

  display: inline-block;
  text-decoration: inherit;
  width: 1.01em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  position: relative;
  top: 1px;
}
.icon-pinterest:before { content: "\e906"; }
.icon-arrow-up:before { content: "\e900"; }
.icon-check:before { content: "\e901"; }
.icon-close:before { content: "\e902"; }
.icon-arrow-down:before { content: "\e903"; }
.icon-arrow-right:before { content: "\e904"; }
.icon-arrow-left:before { content: "\e90a"; }
.icon-minus:before { content: "\e90c"; }
.icon-menu:before { content: "\e910"; }
.icon-search:before { content: "\e911"; }
.icon-cart:before { content: "\e913"; }
.icon-account:before { content: "\e915"; }
.icon-bag:before { content: "\e916"; }
.icon-plus:before { content: "\e917"; }
.icon-email:before { content: "\e905"; }
.icon-phone:before { content: "\e90e"; }
.icon-youtube:before { content: "\e914"; }
.icon-vimeo:before { content: "\e912"; }
.icon-rss:before { content: "\e908"; }
.icon-houzz:before { content: "\e909"; }
.icon-snapchat:before { content: "\e90b"; }
.icon-instagram:before { content: "\e90f"; }
.icon-facebook:before { content: "\ea90"; }
.icon-twitter:before { content: "\ea96"; }
.icon-tumblr:before { content: "\eab9"; }
.icon-linkedin:before { content: "\eaca"; }


.icon-twitter-share:before { content: "\ea96"; margin-right: 0.6em; 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 { content: "\ea90"; margin-right: 0.6em; 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 { content: "\e906"; margin-right: 0.6em; color: #CB1F2A; }
.icon-pinterest-share:hover { background-color: #CB1F2A; border-color: #CB1F2A; color: #fff; }
.icon-pinterest-share:hover:before { color: #fff; }
.icon-email-share:before { content: "\e905"; margin-right: 0.6em; color: #888; }
.icon-email-share:hover { background-color: #888; border-color: #888; color: #fff; }
.icon-email-share:hover:before { color: #fff; }

.social_icons a {
  font-size: 15px;
  color: #fff;
  background-color: #b0b0b0;
  border-radius: 50%;
  padding: 8px;
  margin: 0 8px 5px 0;
  line-height: 1;
  transition: all .1s linear;
}
.social_icons a:hover {
  color: #fff;
  background-color: #464646;
}
.social_icons a span:before {
  margin-right: 0;
}

.top_menu .social_icons a,
.top_menu .social_icons a:visited,
.top_menu .social_icons a:active {
  font-size: 15px;
  padding: 6px;
  color: #fff;
  margin: 0 0 0 5px;
  opacity: 0.8;
}
.top_menu .social_icons a:hover {
  color: #fff;
  opacity: 1;
}
.top_menu .social_icons li {
  padding-left: 0;
}

.remove,
.remove:visited { color: #2e2d2c; }
.remove:hover,
.remove:active { color: #dd390d; }

.icon-cart,
.icon-bag, .icon-menu {
  font-size: 16px;
}

.menu .icon-arrow-down,
.menu .icon-arrow-right {
  font-size: 10px;
  margin-left: 5px;
}
.menu .icon-arrow-down,
.menu .icon-arrow-right {
  position: relative;
  top: -2px;
}

.logo__image--small {
  max-height: 2.14286em;
  display: none;
}
/*!
 * 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}

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


.tm_tracking_content>.tm_tracking_form_div>.tm_tracking_form_in>.tm_tracking_form_number,
.tm_tracking_content>.tm_tracking_form_div>.tm_tracking_form_in>.tm_tracking_form_order,
.tm_tracking_content>.tm_tracking_form_div>.tm_tracking_form_in>.tm_tracking_line_center,
.tm_tracking_content
  {
    padding:0 !important;
  }

.mob-trust { display: none; }

.purchase-details__buttons {
    margin-top: 0;
}
.swatch_options {
    margin-bottom: 0;
}
.swatch .swatch-element {
    margin-bottom: 10px;
}

.social_buttons {
    margin-top: 0px;
}
.eight.columns.omega hr {
    display: none;
}

@media only screen and (max-width: 767px) {
  .transparent-background-center{ margin-top:0px !important; }
  .homepage_slider .flex-control-nav{ margin-bottom:0px !important; }
  .mobile_menu span{COLOR:#030303;}
  
  .mob-trust { 
    display: block;
    position: relative;
    top: -190px;
    width: 100%;
    text-align: right;
    right: 0;
  }
  
  .mob-trust .trustedsite-trustmark1 { display: block; }
  
  .mob-trust .mfes-trustmark1 { display: block; }
  
  .trustedsite-trustmark1 { display: none; }
  
  .mfes-trustmark1{ display: none; }
  
}

body.product div.container>div {
    margin: 0!important;
}


@media screen and (min-width: 768px) {
  .swym-button-bar{
  margin:10px 0px 10px 0px!important;
}
  
  .swym-add-to-wishlist{
  

padding-left: 16px!important;
    padding-right: 16px!important;
}
}
@media screen and (max-width: 768px) {
  .swym-button-bar{
  margin:40px 0px 10px 0px!important;
}
}
@media screen and (max-width: 768px) {
  .swym-btn-container[data-position=default] .swym-add-to-wishlist.swym-icontext {
    width: 200px!important;}
}
@media screen and (max-width: 798px){
#shopify-section-footer>.footer>.container>.three.columns:nth-of-type(3),#shopify-section-footer>.footer>.container>.three.columns:nth-of-type(2){display:inline-block;width:50%;}
}

@media only screen and (min-width: 1200px){
.gf-left #shopify-section-collection-template .sixteen.columns #gf-tree, .gf-left.theme-store-id-601 #shopify-section-search-template #gf-tree {
    width: 20% !important; 
}
  .gf-left #shopify-section-collection-template .sixteen.columns #gf-grid, .gf-left.theme-store-id-601 #shopify-section-search-template #gf-grid {
    max-width: 80% !important;
}
}
.spf-product-card.spf-product-card__template-4 .spf-product__form{z-index:99}
.ui-menu.ui-widget-content.ui-autocomplete>li>.gf-search-header {
    background: #EDE2FF!important;
    color: #E92AA9 !important;
}
.ui-menu.ui-widget-content.ui-autocomplete .gf-search-viewall a{color:#e92aa9 !important}
.ui-menu .gf-search-suggestions.ui-menu-item{padding-bottom:0 !important}
.ui-menu .gf-search-suggestions.ui-menu-item .ui-widget-content li{padding-bottom:0 !important}
.ui-menu.ui-widget-content.ui-autocomplete {
    max-width: 400px;
}
#reviewImporter {
margin-top:80px !important;
}
limespot-box{
margin-left:80px !important;
}

@media screen and (max-width: 768px) {
  .h4.spf-product-card__title a {
    font-size: 13px;
    line-height: 1.2;
}
  
  #shopify-section-collection-template  .sixteen.columns  .section{margin:10px auto !important}
}
#gfqv-modal img {max-width:100%}
  #shopify-section-collection-template  .sixteen.columns  .section{margin:10px auto !important}

.container div.collection_nav{padding-bottom:0}
#shopify-section-collection-template .collection_title + .sixteen.columns{margin-left:0;margin-right:0}


/* -Globo */
img.gf-banner-dsk-img {
    width: 100%;
}

.gf-block-title h3 {
    line-height: 1.5;
}

.gf-filter-footer {
    display: none!important;
}

@media(min-width: 768px) {
/*   .gf-left #gf-tree {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
  } */
}

/* EndGlobo */


span.icon-tiktok img {
    margin-bottom: 0;
}
