/*
Theme Name:   	Storefront Child Theme
Theme URI:    	https://github.com/stuartduff/storefront-child-theme
Author:       	Stuart Duff
Author URI:     http://stuartduff.com
Template:     	storefront
Description:  	This is a blank child theme for WooThemes StoreFront theme
Version:      	1.0.0
License:      	GNU General Public License v2 or later
License URI:  	http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  	storefront
Tags:         	black, white, light, two-columns, left-sidebar, right-sidebar, responsive-layout, custom-background, custom-colors, custom-header, custom-menu, featured-images, full-width-template, threaded-comments, accessibility-ready
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
Storefront is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.
Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
FontAwesome License: SIL Open Font License - http://scripts.sil.org/OFL
Images License: GNU General Public License v2 or later
*/
/*
 * Add your own custom css below this text.
 */

/* ANIMATIONS*/

.animation-element {
 /* opacity: 0;*/
  position: relative;
}
.visible, .invisible {
  opacity: 0.0;
  transition: opacity 0.8s ease;
}
.visible {
  opacity: 1.0;
}

/* 
.bounce-up {
  opacity: 0;
  -moz-transition: all 700ms ease-out;
  -webkit-transition: all 700ms ease-out;
  -o-transition: all 700ms ease-out;
  transition: all 700ms ease-out;
  -moz-transform: translate3d(0px, 100px, 0px);
  -webkit-transform: translate3d(0px, 100px, 0px);
  -o-transform: translate(0px, 100px);
  -ms-transform: translate(0px, 100px);
  transform: translate3d(0px, 100, 0px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.bounce-up.in-view  {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.animation-element.slide-left {
  opacity: 0;
  -moz-transition: all 500ms linear;
  -webkit-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
  -moz-transform: translate3d(-100px, 0px, 0px);
  -webkit-transform: translate3d(-100px, 0px, 0px);
  -o-transform: translate(-100px, 0px);
  -ms-transform: translate(-100px, 0px);
  transform: translate3d(-100px, 0px, 0px);
}

.animation-element.slide-left.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.animation-element.slide-right {
  opacity: 0;
  -moz-transition: all 500ms linear;
  -webkit-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
  -moz-transform: translate3d(100px, 0px, 0px);
  -webkit-transform: translate3d(100px, 0px, 0px);
  -o-transform: translate(100px, 0px);
  -ms-transform: translate(100px, 0px);
  transform: translate3d(100px, 0px, 0px);
}

.animation-element.slide-right.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}


.animation-element.fadein,.animation-element.fadeinprod, .animation-element.fadein-one, .animation-element.fadein-two, .animation-element.fadein-three, .animation-element.fadein-four, .animation-element.fadein-five {
  opacity: 0;
  -moz-transition: opacity 2s linear;
  -webkit-transition: opacity 2s linear;
  -o-transition: opacity 2s linear;
  transition: opacity 2s linear;
  
}
.animation-element.fadeinprod.first.in-view {
 -webkit-animation-name: fade-in;
-webkit-animation-duration: 1s;
-webkit-animation-delay: 0s;
-webkit-animation-fill-mode: forwards;
}
.animation-element.fadeinprod.in-view {
 -webkit-animation-name: fade-in;
-webkit-animation-duration: 1s;
-webkit-animation-delay: .5s;
-webkit-animation-fill-mode: forwards;
}
.animation-element.fadeinprod.last.in-view {
 -webkit-animation-name: fade-in;
-webkit-animation-duration: 1s;
-webkit-animation-delay: 1s;
-webkit-animation-fill-mode: forwards;
}


.animation-element.fadein.in-view {
 -webkit-animation-name: fade-in;
-webkit-animation-duration: 1s;
-webkit-animation-delay: 0s;
-webkit-animation-fill-mode: forwards;
}
.animation-element.fadein-one.in-view {
   -webkit-animation-name: fade-in;
-webkit-animation-duration: 0.5s;
-webkit-animation-delay: 0.3s;
-webkit-animation-fill-mode: forwards;
}

.animation-element.fadein-two.in-view {
    -webkit-animation-name: fade-in;
-webkit-animation-duration: 0.5s;
-webkit-animation-delay: 0.6s;
-webkit-animation-fill-mode: forwards;
}

.animation-element.fadein-three.in-view {
   -webkit-animation-name: fade-in;
-webkit-animation-duration: 0.5s;
-webkit-animation-delay: 0.9s;
-webkit-animation-fill-mode: forwards;
}

.animation-element.fadein-four.in-view {
 -webkit-animation-name: fade-in;
-webkit-animation-duration: 0.5s;
-webkit-animation-delay: 1.2s;
-webkit-animation-fill-mode: forwards;
}

.animation-element.fadein-five.in-view {
   -webkit-animation-name: fade-in;
-webkit-animation-duration: 0.5s;
-webkit-animation-delay: 1.5s;
-webkit-animation-fill-mode: forwards;
}


@keyframes fade-in{
from { opacity:0;}
to {opacity:1;}
}

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

@keyframes appearFromLeft {
  0%    { transform:translateX(-1.5rem); opacity: 0; }
  30%   { transform:translateX(-1.5rem); opacity: 0; }
  100%  { transform:translateX(0); opacity: 1; }
}

@keyframes appearFromRight {
  0%    { transform:translateX(1.5rem); opacity: 0;}
  30%   { transform:translateX(1.5rem); opacity: 0; }
  100%  { transform:translateX(0); opacity: 1; }
}

@keyframes appearFromBottom {
  0%    { transform:translateY(2rem); opacity: 0; }
  30%   { transform:translateY(2rem); opacity: 0; }
  100%  { transform:translateY(0); opacity: 1; }
}

@-webkit-keyframes appearFromLeft {
  0%    { transform:translateX(-1.5rem); opacity: 0; }
  30%   { transform:translateX(-1.5rem); opacity: 0; }
  100%  { transform:translateX(0); opacity: 1; }
}

@-webkit-keyframes appearFromRight {
  0%    { transform:translateX(1.5rem); opacity: 0;}
  30%   { transform:translateX(1.5rem); opacity: 0; }
  100%  { transform:translateX(0); opacity: 1; }
}

@-webkit-keyframes appearFromBottom {
  0%    { transform:translateY(2rem); opacity: 0; }
  30%   { transform:translateY(2rem); opacity: 0; }
  100%  { transform:translateY(0); opacity: 1; }
}



.bounce-upcol1 {
  opacity: 0;
  -moz-transition: all 700ms ease-out;
  -webkit-transition: all 700ms ease-out;
  -o-transition: all 700ms ease-out;
  transition: all 700ms ease-out;
  -moz-transform: translate3d(0px, 200px, 0px);
  -webkit-transform: translate3d(0px, 200px, 0px);
  -o-transform: translate(0px, 200px);
  -ms-transform: translate(0px, 200px);
  transform: translate3d(0px, 200, 0px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.animation-element.in-view .bounce-upcol1  {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.bounce-upcol2 {
  opacity: 0;
  -moz-transition: all 800ms ease-out;
  -webkit-transition: all 800ms ease-out;
  -o-transition: all 800ms ease-out;
  transition: all 800ms ease-out;
  -moz-transform: translate3d(0px, 200px, 0px);
  -webkit-transform: translate3d(0px, 200px, 0px);
  -o-transform: translate(0px, 200px);
  -ms-transform: translate(0px, 200px);
  transform: translate3d(0px, 200, 0px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.animation-element.in-view .bounce-upcol2  {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.bounce-upcol3 {
  opacity: 0;
  -moz-transition: all 900ms ease-out;
  -webkit-transition: all 900ms ease-out;
  -o-transition: all 900ms ease-out;
  transition: all 900ms ease-out;
  -moz-transform: translate3d(0px, 200px, 0px);
  -webkit-transform: translate3d(0px, 200px, 0px);
  -o-transform: translate(0px, 200px);
  -ms-transform: translate(0px, 200px);
  transform: translate3d(0px, 200, 0px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.animation-element.in-view .bounce-upcol3  {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px); 
}
.bounce-upcol4 {
  opacity: 0;
  -moz-transition: all 1000ms ease-out;
  -webkit-transition: all 1000ms ease-out;
  -o-transition: all 1000ms ease-out;
  transition: all 1000ms ease-out;
  -moz-transform: translate3d(0px, 200px, 0px);
  -webkit-transform: translate3d(0px, 200px, 0px);
  -o-transform: translate(0px, 200px);
  -ms-transform: translate(0px, 200px);
  transform: translate3d(0px, 200, 0px);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.animation-element.in-view .bounce-upcol4  {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
*/

 /* GENERAL */
 select {
     -webkit-appearance:none;
 }
 *:focus {
    outline:0 !important;
 }
 body {
     font-family: 'Open Sans', sans-serif;
     font-weight: 400;
     font-size: 16px;
     line-height: 30px;
      -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
 }
 img {
    border-radius: 0;
 }
 h1,h2,h3,h4,h5 {
     font-family: 'Playfair Display', serif;
 }
 a {
       transition: opacity 300ms ease-in;
    -webkit-transition: opacity 300ms ease-in;
    -moz-transition: opacity 300ms ease-in;
 }
 a:hover {
       transition: opacity 300ms ease-in;
    -webkit-transition: opacity 300ms ease-in;
    -moz-transition: opacity 300ms ease-in;
 }
 .button {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.03rem;
    transition: opacity 300ms ease-in;
    -webkit-transition: opacity 300ms ease-in;
    -moz-transition: opacity 300ms ease-in;
 }
  .button:hover {
    background-color: #B3885A;
    transition: opacity 300ms ease-in;
     -webkit-transition: opacity 300ms ease-in;
    -moz-transition: opacity 300ms ease-in;
 }
  .button:active {
    background-color: #9A5826;
 }

 input[type="button"], input[type="reset"], input[type="submit"], .button, .widget a.button {
  font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    min-width: 210px;
    height: 60px;
    padding-top: 15px;
    text-align: center;
    letter-spacing: 0.03rem;
    transition: all 300ms ease-in;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
 }
.coupon button[name="apply_coupon"] {
    border: 1px solid #002750 !important;
    color: #002750 !important;
    height: 46px;
    min-width: 146px;
    padding-top: 9px;
    display: inline-block;
    vertical-align: bottom;
    background-color: #FFFFFF !important;
}
 button[name="update_cart"] {
   height: 46px;
    padding-top: 8px;
}
#coupon_code {
    height: 46px;
}
.wc-proceed-to-checkout .button {
    display: block;
    text-align: center;
    height: 65px;
    padding-top: 16px;
    margin-bottom: 1em;
}
 input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover, .button:hover, .widget a.button:hover {
 background-color: #B3885A;
    transition: all 300ms ease-in;
     -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
 }
  input[type="button"]:active, input[type="reset"]:active, input[type="submit"]:active, .button:active, .widget a.button:active {
background-color: #9A5826;
 }

 button.alt, input[type="button"].alt, input[type="reset"].alt, input[type="submit"].alt, .button.alt, .widget-area .widget a.button.alt {
    background-color: #b3885a;
    border-color: #b3885a;
    color: #ffffff;
}
 button.alt:hover, input[type="button"].alt:hover, input[type="reset"].alt:hover, input[type="submit"].alt:hover, .button.alt:hover, .widget-area .widget a.button.alt:hover {
    background-color: #b3885a;
    border-color: #b3885a;
    color: #ffffff;
}

 /* NOTICE */
 .notice-shop {
     background-color: #CAA37A;
     height: 50px;
     width: 100%;
     text-align: center;
     position: relative;
 }
 .notice-shop  .close-notice {
    display: block;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
      width: 24px;
     height: 24px;
  -webkit-mask-image: url('images/close.svg');
  -webkit-mask-repeat: no-repeat;
   background-color:#FFF;
   z-index: 10;
}

 .no-svg .notice-shop  .close-notice {
   background-color: transparent;
    background-repeat: no-repeat;
    background-image:url('images/close.png');
 }   
.notice-shop p {
      text-align: center;
      font-size:13px;
      color: #FFF;
      line-height: 50px;
 }
 /* HEADER **************/
 header {
     position: relative;
 }
 header .col-full {
     position: relative;
 }
 .site-search {
     display:none;
  position: absolute;
    top: 0;
    left: 0;
 }
 .woocommerce-active .site-header .site-search {
    width: 100%;
    float: right;
    margin-right: 0;
    clear: none;
        z-index: 1;
}
.close-search {
    display: block;
    position: absolute;
    right: 0;
    top: 15px;
      width: 24px;
     height: 24px;
  -webkit-mask-image: url('images/close.svg');
  -webkit-mask-repeat: no-repeat;
   background-color:#002750;
}
.woocommerce-active .site-header .site-search input {
    border:0;
    background-color:#FFFFFF;
    padding-left:60px !important;
}
.woocommerce-active .site-header .site-search input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color:#999999;
  font-size: 14px;
   font-family: 'Open Sans', sans-serif;
     font-weight: 400;
  opacity: 1; /* Firefox */
}
.woocommerce-active .site-header .site-search input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color:#999999;
   font-family: 'Open Sans', sans-serif;
     font-weight: 400;
    font-size: 14px;
}
.woocommerce-active .site-header .site-search input::-ms-input-placeholder { /* Microsoft Edge */
  color:#999999;
   font-family: 'Open Sans', sans-serif;
     font-weight: 400;
    font-size: 14px;
}
 .storefront-secondary-navigation.woocommerce-active .site-header .site-branding {
     width: 60px;
     display: inline-block;
     vertical-align: top;
    margin-right: 0%;
    margin-bottom: 15px;
 }
 .woocommerce-active .site-header .main-navigation {
   width: 100%;
    float: left; 
    margin-right: 4.347826087%; 
   clear: both;
}
.storefront-primary-navigation {
    clear: both;
    display: inline-block;
    vertical-align: top;
}
.woocommerce-active .site-header .site-header-cart {
       width: auto;
    margin-left: 15px;
    padding-left: 15px;
    float: none;
    vertical-align: top;
    margin-right: 0;
    display: inline-block;
    margin-bottom: 0;
   margin-top: 10px; 
   border-left:1px solid #EBEBEB;
}
.woocommerce-active .site-header .site-header-cart span.amount {
    font-weight: 700;
    font-size:14px;
}
.site-header-cart .cart-contents .count {
    font-weight: 400;
    opacity: 1;
    font-size: 14px;
}
.home.woocommerce-active .site-header .site-header-cart {
    width: 43px;
    margin-top: 12px;
}
.home.woocommerce-active .site-header .site-header-cart span {
    display: none;
}
.home.woocommerce-active .site-header .site-header-cart {
    margin-left: 0px;
    border-left: 0px solid #EBEBEB;
}

.site-header-cart .widget_shopping_cart {
    width: 200px;
}  
.search-icon-button {
        display: inline-block;
    vertical-align: bottom;
    margin-left: 70px;
    
} 
.search-icon-button a {
  display: block;
     width: 24px;
     height: 24px;
  -webkit-mask-image: url('images/search.svg');
  -webkit-mask-repeat: no-repeat;
   background-color:#002750;
    transition: all 300ms ease-in;
     -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    
}
.no-svg .search-icon-button a, .no-svg .search-icon-button a:hover {
    background-color: transparent;
    background-repeat: no-repeat;
    background-image:url('images/search.png');
}    
.search-icon-button a:hover {
   background-color: #CAA37A;
    transition: all 300ms ease-in;
     -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
;
}
.widget_search form::before, .widget_product_search form::before {
    top: 14px !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    line-height: inherit;
    vertical-align: baseline;
    content: "";
      width: 24px;
     height: 24px;
  -webkit-mask-image: url('images/search.svg');
  -webkit-mask-repeat: no-repeat;
   background-color:#002750;
    position: absolute;
    top: 1em;
    left: 1em;
    line-height: 1;
}
.navigation-right {
    display: inline-block;
    float: right;
    text-align: right;
}
.site-header-cart .cart-contents .count {
    margin-right: 15px;
}
.main-navigation ul.menu > li > a, .main-navigation ul.nav-menu > li > a {
    text-transform: uppercase;
    font-size:13px;
    font-weight: 700;
    padding: 0;
    margin-left: 40px;
    margin-top: 12px;
    transition: all 500ms ease-in;
     -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
}
.main-navigation ul.menu > li > a:hover, .main-navigation ul.nav-menu > li > a:hover {
  color:#CAA37A;
  transition: all 300ms ease-in;
     -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
}   
.main-navigation ul li a:hover, .main-navigation ul li:hover > a, .site-title a:hover, .site-header ul.menu li.current-menu-item > a, .site-header ul.menu li.current_page_parent > a{
    color:#CAA37A;
}
.site-header {
    padding-top: 15px;
}
.site-header-cart .cart-contents {
    padding:0;
}
.site-header-cart .cart-contents::after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    line-height: inherit;
    vertical-align: baseline;
    content: "";
    background-image: url('images/cart.svg');
    height: 1em;
    float: right;
    width: 16px;
    height: 20px;
   margin-top: 5px;
}
.main-navigation ul.menu ul.sub-menu, .main-navigation ul.nav-menu ul.children {
    background-color: #ffffff;
    padding: 10px 10px 0px 10px;
    -webkit-box-shadow: 10px 10px 5px 0px rgba(235,235,235,1);
-moz-box-shadow: 10px 10px 5px 0px rgba(235,235,235,1);
box-shadow: 10px 10px 5px 0px rgba(235,235,235,1);

}
.main-navigation ul ul li, .secondary-navigation ul ul li {
    display: block;
    margin-left: 10px;
    border-bottom: 1px solid #EBEBEB;
}
.main-navigation ul ul li:last-child, .secondary-navigation ul ul li:last-child {
    display: block;
    border-bottom: 0px solid #EBEBEB;
}
/* SLIDER HOMEPAGE */
#slider-homepage {
    /* max-height: 620px; */
    overflow: hidden;
    display: none;
    background-color: #FCFAF8;
}
.image-slider {
    display: inline-block;
    vertical-align: top;
    width: 58%;
    height: 560px;
    background-repeat: no-repeat; 
    background-position: right top; 
    background-size: cover;    
}
.content-slider {
    position: relative;
}

#slider-homepage .content-text {
    display: inline-block;
    vertical-align: top;
    background: #FFF;
    padding: 80px;
/* width: 560px; */
    padding: 80px;
    margin-right: 7%;
    width: auto;
    margin-left: -110px;
        position: absolute;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
}
#slider-homepage .content-text h2 {
    font-size: 58px;
    line-height: 64px;
}
.content-text .button {
     padding: 15px 60px;
    margin-top: 30px;
    min-width: 210px;
    min-height: 60px;
    text-align: center;
}
.feat-blogpost .content-text .button {
    margin-top: 10px !important;
}
.slick-dots {
        display: block;
    position: absolute;
       right: 3%;
    top: 50%;
}
.slick-dots li {
    list-style: none;
}
.slick-dots li button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    list-style: none;
    font-size: 0rem;
    background-color: #CCCCCC;
}
.slick-dots li.slick-active button {
    background-color: #02315a;
}    

/* FEAT BOX */
.storefront-featured-products {
     margin: 50px auto;
    position: relative;
    max-width: 930px; 

}
.storefront-featured-products:after {
    content:"";
    background-image: url('images/Stamp.svg');
    background-repeat: no-repeat;
    width: 400px;
    height: 413px;
        top: -90px;
    right: -145px;
        z-index: -1;
    position: absolute;
}
.storefront-featured-products li {
    margin-bottom: 0px !important;
}
.storefront-product-section .section-title {
    text-align: left;
    font-weight: 700;
    float: left;
}
.storefront-product-section.storefront-featured-articles .section-title {
     margin-top: 17px;
} 
.woocommerce-loop-product__link {
     text-align:left;
}
h2.woocommerce-loop-product__title {
    text-align:left;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px !important;
    margin-bottom: 0px !important;
    
}
span.price {
    font-weight: 700 !important;
}
.storefront-featured-articles .related-prod h2.woocommerce-loop-product__title {
  text-transform: none;
  margin-bottom: 7px !important;
      margin-top: 20px !important;
    display: block;
}    
.featured .product_type_simple.add_to_cart_button {
  display: none;
}

.visit-shop {
    float: right;
    padding-right: 10px;
    margin-right: 28px;
    position: relative;
    font-size: 13px;
    margin-top: 10px;
	z-index:1;
}
.visit-shop a {

}
.visit-shop a:hover {
    text-decoration: underline;
}
.visit-shop:after {
    content:"";
    background-image: url('images/arrowlink.svg');
    background-repeat: no-repeat;
    width: 30px;
    height: 10px;
        top: 12px;
    right: -25px;
    position: absolute;
}
.woocommerce-breadcrumb a, .woocommerce-breadcrumb span {
    text-decoration: none;
    font-weight: 300;
}
.woocommerce-breadcrumb {
  font-weight: 700;
      margin-left: -6px;
}
.woocommerce-mini-cart-item a {
    line-height: 20px;
}
.post-type-archive-product .woocommerce-breadcrumb {
    font-size:0px;
} 
.post-type-archive-product .woocommerce-breadcrumb a {
    font-size: 14px;
    font-weight: 700;
} 
.woocommerce-breadcrumb .breadcrumb-separator {
    text-indent: 0px;
}
.woocommerce-breadcrumb a:first-of-type {
    /* display: none; */
}
.woocommerce-breadcrumb a:first-of-type::before, .woocommerce-breadcrumb .breadcrumb-separator::after {
    content:'';
}

.page-template-template-fullwidth-php .site-main ul.products.columns-3 li.product,
.page-template-template-fullwidth-php .header-widget-region ul.products.columns-3 li.product, 
.page-template-template-homepage-php .site-main ul.products.columns-3 li.product, 
.page-template-template-homepage-php .header-widget-region ul.products.columns-3 li.product, 
.storefront-full-width-content .site-main ul.products.columns-3 li.product, 
.storefront-full-width-content .header-widget-region ul.products.columns-3 li.product {
    width: 290px;
    float: left;
    margin-right: 30px;
}
/*.site-main ul.products.columns-3 li.product {
     width: 290px;
    float: left;
    margin-right: 30px;
}*/
ul.products li.product img, ul.products .wc-block-grid__product img, .wc-block-grid__products li.product img, .wc-block-grid__products .wc-block-grid__product img {
    display: block;
    margin: 0 auto 15px;
}
/* INSTAGRAM */
b, strong {
    font-weight: 700;
}
#instagram-social {
    background-color: #FCFAF8;
    padding: 80px;
}
#instagram-social .content-text {
    display: inline-block;
    vertical-align: middle;
    background: transparent;
    padding: 0px;
    width: 30%;
    max-width: 370px;
    margin-top: auto;
    margin-left: 110px;
    text-align: left;
}
.gallery-insta {
  width: 55%;
  max-width: 705px;
  vertical-align: middle;
  display: inline-block;
}
.gallery-insta img {
    width:33.33%;
    height:33.33%;
    float: left;
}
#instagram-social .content-text h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    background: transparent;
}
#instagram-social .content-slider {
     margin: 0px auto;
    text-align: center;
}
#instagram-social .content-text .button {
    margin-top: 10px;
}

/* FEAT COMMUNITY */
.storefront-featured-articles {
  margin: 50px auto;
  max-width: 930px;
}
.storefront-featured-articles h2 {
    text-transform: uppercase;
 font-family: 'Open Sans', sans-serif;
 font-size: 14px;
 font-weight: bold;
     margin-bottom: 40px !important;
}
.storefront-featured-articles li h4 {
   font-size: 18px !important;
 font-weight: 700 !important;
 margin-bottom: 3px !important;
}
.storefront-featured-articles li p {
   font-size: 13px !important;
 line-height: 20px;
}

/* BLOCK ABOUT*/
.block-about {
   background-color: #FCFAF8;
   padding: 115px 80px; 
}
.block-about .col-full {
    max-width: 930px;
}
.block-about .content-text {
    display: inline-block;
    vertical-align: middle;
    background: transparent;
    padding: 0px;
   width: 50%;
    max-width: 450px;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 20px;
    text-align: left;
}
.block-about .content-text h4 {
        text-transform: uppercase;
 font-family: 'Open Sans', sans-serif;
 font-size: 14px;
 font-weight: bold;
 margin-bottom: 30px;
}
.block-about .content-text h2 {
  font-size: 46px;
  line-height: 56px;
}
.block-about .img-about {
      display: inline-block;
    vertical-align: middle;
        width: 49%;
        position: relative
}
.block-about .img-about:after {
    content:"";
    background-image: url('images/small-stamp.svg');
    background-repeat: no-repeat;
    width: 138px;
    height: 143px;
    top: -66px;
    right: -65px;
    position: absolute;
}
/* FOOTER */
.top-footer, .bottom-footer {
    width: 100%;
    float: left;
}
.top-left-footer, .bottom-left-footer {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    float: left;
}
.top-right-footer, .bottom-right-footer  {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    float: right;
    text-align: right;
}
.top-left-footer h4 {
     text-transform: uppercase;
 font-family: 'Open Sans', sans-serif;
 font-size: 12px;
 font-weight: bold;
}
.top-left-footer p {
     font-family: 'Playfair Display', serif;
 font-size: 20px;
 font-weight: 400;
}
.top-left-footer p a {
text-decoration: none;
}
.bottom-right-footer {
    float:right;
}
.bottom-right-footer p {
        float:right;
        margin-bottom: 0px;
    margin-top: 7px;
}
.footer-menu {
  margin-left: 0px;
  padding-left: 0px;
  margin-bottom: 17px;
}
.footer-menu li {
    list-style: none;
  font-size: 11px;
 opacity: 0.3;
  display:inline-block;
  margin-right: 22px;
   transition: all 300ms ease-in;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
}
.footer-menu li a {
font-size: 11px;
color: #FFF !important;
text-decoration: none;
}
.footer-menu li:hover{
  opacity: 1;
   transition: all 300ms ease-in;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
}
.social-menu li {
     list-style: none;
     margin-left: 16px;
     display:inline-block;
}
.social-menu li a {
     position: relative;
     display: block;
     width: 22px;
     height: 22px;
     background-color: #FFF;
}
.social-menu li a:hover {
     background-color: #B3885A;
}
.no-svg .social-menu li a:hover {
     background-color: transparent;;
}
.social-menu li a.facebook {
  content: '';
  -webkit-mask-image: url('images/Facebook.svg');
  -webkit-mask-repeat: no-repeat;
      -webkit-mask-position: center;
}
.no-svg .social-menu li a.facebook {
    background-color: transparent;
    background-repeat: no-repeat;
    background-image:url('images/Facebook.png');
}    
.social-menu li a.twitter{
    content: '';
 -webkit-mask-image: url('images/Twitter.svg');
  -webkit-mask-repeat: no-repeat;
      -webkit-mask-position: center;
}
.no-svg .social-menu li a.twitter {
    background-color: transparent;
    background-repeat: no-repeat;
    background-image:url('images/Twitter.png');
}
.social-menu li a.instagram{
    content: '';
 -webkit-mask-image: url('images/Instagram.svg');
 -webkit-mask-repeat: no-repeat;
     -webkit-mask-position: center;
}
.no-svg .social-menu li a.instagram {
    background-color: transparent;
    background-repeat: no-repeat;
    background-image:url('images/Instagram.png');
}
.social-menu li a.pinterest{
    content: '';
 -webkit-mask-image: url('images/Pin.svg');
  -webkit-mask-repeat: no-repeat;
      -webkit-mask-position: center;
}
.no-svg .social-menu li a.pinterest {
    background-color: transparent;
    background-repeat: no-repeat;
    background-image:url('images/Pin.png');
}
.social-menu li a.tumblr{
    content: '';
 -webkit-mask-image: url('images/Tumbir.svg');
  -webkit-mask-repeat: no-repeat;
      -webkit-mask-position: center;
}
.no-svg .social-menu li a.tumblr {
    background-color: transparent;
    background-repeat: no-repeat;
    background-image:url('images/Tumbir.png');
}
a.madeby {
    display: block;
    width: 140px;
     height: 20px;
     -webkit-mask-image: url('images/credits.svg');
   -webkit-mask-repeat: no-repeat;
    background-color: #FFF;
        opacity: 0.3;
}
.no-svg a.madeby {
     background-color: transparent;
    background-repeat: no-repeat;
    background-image:url('images/credits.png');
}
a.madeby:hover {
    opacity: 1;
}
.site-footer {
    padding-top: 40px;
    padding-bottom: 0px;
    position: relative;
}
.site-footer .col-full {
    max-width: 930px;
}
.site-footer:before {
    content:"";
    background-image: url('images/footer-stamp.svg');
    background-repeat: no-repeat;
    width: 194px;
    height: 200px;
    top: 0px;
    right: 38%;
    position: absolute;
}


/* SHOP PAGE */
.storefront-breadcrumb {
    padding: 31px 0px 31px 0px;
    margin: 0;
}
.post-type-archive.right-sidebar .content-area {
     width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
}  
.post-type-archive.right-sidebar #secondary {
    display: none;
}
.single-product .storefront-product-pagination {
    display:none;
}
header.woocommerce-products-header h1 {
     font-size: 32px;
    font-weight: 700;
    margin-bottom: 23px;
}
li.product-category h2 {
    text-align: left;
 font-family: 'Open Sans', sans-serif;
 font-size: 14px;
 font-weight: 400;
}
li.product-category h2 mark{
 display: none;
}
.woocommerce-pagination .page-numbers li .page-numbers.current {
    background-color: #002750;
    color: #FFF;
    border-radius: 3px;
}
.pagination .page-numbers li .page-numbers, .woocommerce-pagination .page-numbers li .page-numbers {
    background-color: #FFF;
    color: #002750;
    border-radius: 3px;
     border: 1px solid #EBEBEB;
}
.pagination .page-numbers li .page-numbers:hover, .woocommerce-pagination .page-numbers li .page-numbers:hover {
     background-color: #002750 !important;
     opacity: 1;
    color: #FFF;
    border: 1px solid ##002750 !important;
}
.pagination .page-numbers li .page-numbers.current {
   background-color: #002750 !important;
     opacity: 1;
    color: #FFF;
    border: 1px solid #002750 !important;
}
.pagination .page-numbers li .page-numbers, .woocommerce-pagination .page-numbers li .page-numbers {
  padding: 0px;
  width: 32px;
 height: 32px;
 font-size: 14px;
}
.pagination .page-numbers li {
   margin: 0px 2px !important;
} 
.pagination .page-numbers li .page-numbers span{
font-size: 14px;
}     
.pagination .page-numbers li .prev.page-numbers {
  padding: 0px;
  width: auto;
 height: 32px;
 font-size: 14px;
  border: 0px solid #002750 !important;
  position: relative;
} 
.pagination .firstpage{
  float: left;
}   
.pagination .lastpage{
  float: right;
}   
.pagination-blog .pagination {
    border: 0px;
    margin: 40px auto 0px;
    max-width: 860px;
}
.pagination .page-numbers li .prev.page-numbers:hover {
  background-color: transparent !important;
  border: 0px solid #002750 !important;
  color:#002750 !important;
 
}  
.pagination .page-numbers li .next.page-numbers {
  padding: 0px;
  width: auto;
 height: 32px;
 font-size: 14px;
  border: 0px solid #002750 !important;
   position: relative;
}  
.pagination .page-numbers li .next.page-numbers:hover {
  background-color: transparent !important;
  border: 0px solid #002750 !important;
  color:#002750 !important;
 
}  
.pagination {
    border:0px;
    margin-top: 40px;
}    
.pagination .page-numbers li .prev.page-numbers::after {
    content: "";
   width: 30px;
    height: 10px;
    -webkit-mask-image:url('images/arrowlink.svg');
     -webkit-mask-repeat: no-repeat;
    background-color:#002750;
    position: absolute;
        top: 11px;
    left: -40px;
    transform: rotate(-180deg);
}
.pagination .page-numbers li .next.page-numbers::after {
    content: "";
   width: 30px;
    height: 10px;
    -webkit-mask-image:url('images/arrowlink.svg');
     -webkit-mask-repeat: no-repeat;
    background-color:#002750;
    position: absolute;
   top: 11px;
    right: -34px;;
    transform: rotate(0deg);
}

.woocommerce-pagination .next::after {
    content: "";
    width: 20px;
    height: 20px;
    -webkit-mask-image:url('images/arrow-pagination.svg');
     -webkit-mask-repeat: no-repeat;
    background-color:#002750;
    position: absolute;
    top: 20px;
    left: 20px;
}
.woocommerce-pagination .next:hover::after {
    background-color:#FFFFFF;
}

.woocommerce-pagination .prev::after {
    content: "";
    width: 20px;
    height: 20px;
    -webkit-mask-image:url('images/arrow-pagination.svg');
     -webkit-mask-repeat: no-repeat;
    background-color:#002750;
    position: absolute;
    top: 0px;
    left: -3px;
    transform: rotate(-180deg);
}
.woocommerce-pagination .prev:hover::after {
    background-color:#FFFFFF;
}
.storefront-sorting select {
    width: auto;
    border-radius: 5px;
    border: 1px solid #EBEBEB;
    padding: 10px 8px;
}
.woocommerce-ordering {
    border: 1px solid #EBEBEB;
    padding: 0px 10px;
    border-radius: 5px;
}
.storefront-sorting select {
    border-radius: 5px;
    color: #002750;
     border: 0px solid #EBEBEB; 
}
.woocommerce-result-count {
    padding: 0.7em 0;
}
span.widget-title {
      font-family: 'Playfair Display', serif;
 font-size: 18px !important;
 font-weight: 700 !important;
}
.button.product_type_simple.add_to_cart_button {
    display: none;
}
.woocommerce-cart .site-content {
    min-height: 600px;
}
a.remove::before {
    color: #002750;
}
.mini_cart_item span.quantity {
    font-weight: 700;
}
.woocommerce-mini-cart__total strong {
  font-weight: 400;
}
.woocommerce-mini-cart__total .amount {
    font-weight: 700;
}
.woocommerce-mini-cart__buttons .wc-forward {
 border:1px solid #002750 !important;
 color: #002750 !important;
  background-color:#FFFFFF !important;
} 
.woocommerce-mini-cart__buttons a.button.wc-forward:after {
  content:"";
} 
.woocommerce-mini-cart__buttons .checkout.wc-forward {
    border:1px solid #002750 !important;
  background-color:#002750 !important;
  color: #FFFFFF !important;
} 
.widget-area .widget a.button {
    font-weight: 700 !important;
    padding: 15px;
}
.widget_shopping_cart p.total, .widget_shopping_cart p.buttons {
    margin-bottom: 30px;
}
.widget-area .widget a {
    font-weight: 400;
}
.widget_product_categories ul li:before, .widget_product_categories ul li.current-cat::before {
    content:"";
}
.widget_product_categories ul li.cat-item a {
  font-family: 'Open Sans', sans-serif;
 font-size: 13px;
 text-transform: uppercase;
 font-weight: 700;
 text-decoration: none;
}
.widget_product_categories ul li {
    padding-left: 0px;
    position: relative;
}
.widget_product_categories ul li.cat-item ul.children li {
    padding-left: 20px;
}
.widget_product_categories ul li.cat-item ul.children li a {
  font-family: 'Open Sans', sans-serif;
 font-size: 13px;
 text-transform: none;
 font-weight: 400;
 text-decoration: none;
}
.widget_product_categories ul li ul.children li:before {
    content:"";
    width:10px;
    height: 1px;
    background-color: #02315A;
    display: block;
    position: absolute;
   top: 10px;
left: 23px;
}
button.alt {
    padding: 14.5px 40px;
}
.quantity .qty {
    border: 1px solid #EBEBEB;
    box-shadow:none;
    background-color: #FBFBFB;
}
h1.product_title {
    font-size: 32px;
    font-weight: 700;
}
.single-product div.product p.price {
    font-size: 21px;
    font-weight: 700;
}
.woocommerce-product-details__short-description p {
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
}
.sku_wrapper span {
    font-weight: 700;
}
.single-product div.product .product_meta a {
    text-decoration: none !important;
}
.woocommerce-Tabs-panel h2 {
    font-size: 24px;
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
}
.woocommerce-Tabs-panel h4 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif !important;
}
.woocommerce-Tabs-panel p {
     font-size: 14px;
    line-height: 26px;
    font-weight: 400;
}
.woocommerce-tabs ul.tabs li a {
     font-size: 13px;
}
.woocommerce-tabs ul.tabs li.active::after {
     color: #B3885A !important;
}
.woocommerce-tabs ul.tabs li.active a {
    color: #B3885A !important;
    font-size: 13px;
}
.woocommerce-tabs table td, table th {
    font-size: 14px;
    padding: 1em 0em;
}
.woocommerce-tabs.wc-tabs-wrapper {
    border-top:1px solid #CCCCCC;
    border-bottom:1px solid #CCCCCC;
}
#respond {
    padding: 0;
}
.related.products {
    margin-top: 40px;
}
.related.products h2 {
     font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 20px;
}
.related.products h2.woocommerce-loop-product__title {
      font-size: 14px !important;
 text-transform: none !important;
}    
.single-product div.product .product_meta {
    border-top: 1px dotted #CCCCCC;
}
.woocommerce-tabs ul.tabs, .woocommerce-product-attributes-item th, .woocommerce-product-attributes-item td {
     border-top:1px solid #CCCCCC;
}
.woocommerce-tabs ul.tabs li {
    border-bottom:1px solid #CCCCCC;
}
.widget .widget-title, .widget .widgettitle, .widget_shopping_cart p.total, .product_list_widget li{
    border-bottom:1px solid #CCCCCC;
}
.woocommerce-Tabs-panel table:not( .has-background ) th, .woocommerce-Tabs-panel table:not( .has-background ) tbody td, .woocommerce-Tabs-panel table:not( .has-background ) tbody tr:nth-child(2n) td {
    background-color: transparent;
}
.woocommerce-product-attributes-item table tbody {
     border-bottom:1px solid #CCCCCC;
}
table.shop_table:not( .has-background ) th {
  background-color: #CAA37A;
}
.woocommerce-order-received table.shop_table:not( .has-background ) th {
    padding-left: 20px;
}
table.cart th, table.cart td {
   font-size: 13px;
   text-transform: uppercase;
   color: #FFFFFF;
}
table.cart td.product-name {
    text-transform: none;
     font-size: 14px;
}
.woocommerce-cart-form__cart-item.cart_item .product-price,.woocommerce-cart-form__cart-item.cart_item .product-subtotal {
    color: #002750 !important;
    font-size: 14px !important;
}
.woocommerce-cart h1.entry-title {
 font-size: 32px;
 font-weight: 700;
 margin-bottom: 50px;
}
.woocommerce-cart table:not( .has-background ) tbody tr:nth-child(2n) td {
    background-color: transparent;
     border-top:1px solid #CCCCCC;
         padding-top: 20px;
}
table.cart td.product-quantity .qty {
    background-color: #FBFBFB;
     border: 1px solid #EBEBEB;
}
input[type='text'], input[type='number'], input[type='email'], input[type='tel'], input[type='url'], input[type='password'], input[type='search'], textarea, .input-text {
    background-color: #FBFBFB;
    box-shadow: none;
     border: 1px solid #EBEBEB;
     height: 50px;
}
.single_add_to_cart_button {
      height: 50px;
}

.woocommerce-form-login p {
    font-size: 14px;
}
.form-row .button {
    width: auto;
    text-align: center;
    padding: 0;
}
#order_comments {
    height: 130px;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color:#999999;
  opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color:#999999;
}
::-ms-input-placeholder { /* Microsoft Edge */
  color:#999999;
}
.coupon button[name="apply_coupon"] {
 border:1px solid #002750 !important;
 color: #002750 !important;
  background-color:#FFFFFF !important;
}
.cart_totals  h2 {
    font-size: 18px !important;
    font-weight: 700;
    margin-bottom: 20px;
}
a.checkout-button:after {
    content: '';
}
a.checkout-button {
    border:1px solid #002750 !important;
  background-color:#002750 !important;
  color: #FFFFFF !important;
  font-size: 13px !important;
  text-transform: uppercase;
  padding: 20px;
} 
.cart_totals table.shop_table.shop_table_responsive th, .cart_totals table.shop_table.shop_table_responsive td {
    background-color: #FBFBFB;
    font-size: 13px;
    padding-left: 20px;
     border-top: 1px solid #CCCCCC;
}
.cart_totals table:not( .has-background ) tbody tr:nth-child(2n) td {
    background-color: #FBFBFB !important;
}
.woocommerce-info, .woocommerce-noreviews, p.no-comments {
    background-color: #CAA37A;
    font-size: 14px;
}
.checkout.woocommerce-checkout h3 {
    font-size: 18px;
    font-weight: 700;
}
.checkout.woocommerce-checkout label {
    font-size:14px;
    font-weight: 400;
}
.required {
    border-bottom: 0 !important;
    color: #002750;
    text-decoration: none;
}
.woocommerce-checkout header h1 {
     font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}
table.shop_table.woocommerce-checkout-review-order-table thead th {
    text-transform: uppercase;
    color: #FFFFFF;
}
table.shop_table.woocommerce-checkout-review-order-table tbody, .woocommerce-privacy-policy-text p {
  font-size: 14px;
}
table.shop_table.woocommerce-checkout-review-order-table tfoot th {
  background-color: #FBFBFB;
    font-size: 14px;
    padding-left: 20px;
     border-top: 1px solid #CCCCCC;
}
table.shop_table.woocommerce-checkout-review-order-table tfoot td {
  background-color: #FBFBFB;
    font-size: 14px;
     border-top: 1px solid #CCCCCC;
}

button[name="woocommerce_checkout_place_order"] {
 border:1px solid #002750 !important;
 color:#FFFFFF !important;
 font-size:13px !important;
 padding:20px;
  background-color:#002750  !important;
}
.woocommerce-checkout select {
        background-color: #FBFBFB;
    box-shadow: none;
     border: 1px solid #EBEBEB;
}
/* DEFAULT PAGE */
.page-template-default.right-sidebar .content-area {
     width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
}  
.page-template-default .storefront-breadcrumb {
    display: none;
}
.page-template-default .intro-post h1 {
    text-align: left;
}
.page-template-default .intro-post p {
    text-align: left;
    font-size: 16px;
}
.page-template-default .content-page-general ul {
    padding-left: 20px;
    margin-left: 0;
}
.page-template-default .content-page-general a {
 text-decoration: underline;
}
.page-template-default .site-main {
     max-width: 610px; 
     margin: 0px auto;
}
/* COMMUNITY PAGE */
.colouredbackground {
        background-color: #FCFAF8;
   
}
.blog.right-sidebar .content-area, .category.right-sidebar .content-area {
     width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
}  
.blog.right-sidebar #secondary, .blog .storefront-breadcrumb {
    display: none;
}
.blog .site-main, .blog .content-area {
    margin-bottom: 0px;
}
#blog-filter {
    text-align: center;
}
#filter {
     padding-top:30px;
     padding-bottom: 10px;
 text-align: center;
 list-style: none;
 margin-bottom: 0px;
}
#filter li {
 display: inline-block;
}   
#filter a {
    font-weight: 600;
    font-size: 12px;
    margin: 0px 30px;
    border-bottom:2px solid transparent;
    padding-bottom: 10px;
      color:#999999;
    text-transform: uppercase;
}
#filter a:hover, #filter a.active, #filter li.current-cat a {
    font-weight: 600;
    font-size: 12px;
    color:#002750;
     border-bottom:2px solid #002750;
    text-transform: uppercase;
}
.feat-blogpost {
    padding: 35px 0px;
}  
.feat-blogpost.reversed {
    padding-top: 80px;
}
.feat-blogpost .col-full {
    max-width: 70em;
}
.feat-blogpost .feat-image {
    width: 50%;
    /* float:left; */
    display: inline-block;
       vertical-align: middle;
}
.feat-blogpost p {
    font-size: 14px;
}
.feat-blogpost .feat-image img {
 width: 100%;
}
.feat-blogpost .content-text {
    width: 40%;
    background-color: transparent;
    margin-left:99px;
    padding: 0px;
    display: inline-block;
      vertical-align: middle;
    margin-top:auto;
}

.feat-blogpost.reversed .content-text {
    margin-left:0px;
    margin-right: 99px;
}
.feat-blogpost.reversed .feat-image  {
    /* float: right; */
    padding-left: 2%;
}
.feat-blogpost .content-text h2{
  font-size: 32px;
  font-weight: 700;
}    
.list-articles {
       margin-top: 120px;
    margin-bottom: 30px !important;
     max-width: none;
}
.bloglisting .col-full {
    max-width: 930px;
}
#instagram-social.footer-position {
    padding:0;
    margin-top: 120px;
}
#instagram-social.footer-position .gallery-insta {
    max-width: none;
        width: 45%;
}
#instagram-social.footer-position .content-slider {
text-align: left;
}
.community-picks {
    margin-top: 60px;
}
.page-template-template-about .community-picks {
    margin-bottom: 100px;
}
.community-picks .storefront-featured-products, .community-picks .storefront-featured-articles {
 border-top:1px solid #CCCCCC;
 padding-top: 60px;
}
.community-picks .storefront-featured-products:after {
    content: '';
    background-image: none;
}
.community-picks .storefront-product-section .section-title {
  font-family: 'Open Sans', sans-serif;
 font-size: 14px;
 text-transform: uppercase;
     margin-bottom: 40px;
}
.community-picks .storefront-product-section .visit-shop {
     margin-top: -7px;
}
 
/* BLOG POST */
.single-post.right-sidebar .content-area {
     width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
}  
.single-post.right-sidebar #secondary, .single-post .storefront-breadcrumb {
    display: none;
}
.single-post .site-main, .single-post .content-area {
    margin-bottom: 0px;
}
.feature-image-block {
    /* background-color: #CAA37A; */
    text-align: center;
    margin-bottom: 60px;
}
.feature-image-block .image {
    margin:0px auto;
    display: inline-block;
    padding:0px 0px;
}
.intro-post {
    text-align: center;
    margin-top:120px;
    padding-bottom: 60px;
}
.author-avatar {
   margin: 40px auto 10px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
}
.author-avatar img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
}
.intro-post .author {
    font-family: 'Playfair Display', serif;
 font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.intro-post .category {
     font-family: 'Open Sans', sans-serif;
 font-size: 14px;
 font-weight: 700;
 text-transform: uppercase;
 margin-bottom: 10px;
}
.intro-post h1 {
    font-size:58px;
    line-height: 60px;
    text-align: center;
}
.intro-post .subtitle {
    text-align: center;
        font-family: 'Open Sans', sans-serif;
 font-size: 14px;
 font-style: italic;
}
.page-template-template-about {
     font-size: 16px;
}
.block_text {
    margin: 60px auto auto;
    max-width: 610px;
}
.quote {
  margin: 60px auto auto;
 max-width: 770px;
font-family: 'Playfair Display', serif;
 font-size: 36px;
 line-height: 53px;
 font-weight: 400;
 text-align: center;
}
.large-image {
    margin: 60px auto auto;
}
.caption {
    font-size: 13px;
}
/* SHARE POST*/
.share-article {
     margin: 60px auto auto;
    max-width: 610px;
   
}
.social-share {
    margin-left: 0px;;
}
.social-share li {
     list-style: none;
     margin-right: 16px;
     display:inline-block;
}
.social-share li a {
     position: relative;
     display: block;
     width: 22px;
     height: 22px;
}
.social-share li a.facebook {
  content: '';
   width: 22px;
     height: 22px;
  -webkit-mask-image: url('images/Facebook.svg');
  -webkit-mask-repeat: no-repeat;
   background-color:#002750;
   -webkit-mask-position: center;
}
.social-share li a.twitter{
    content: '';
 -webkit-mask-image: url('images/Twitter.svg');
  -webkit-mask-repeat: no-repeat;
   background-color:#002750;
   -webkit-mask-position: center;
}
.social-share li a.instagram{
    content: '';
 -webkit-mask-image: url('images/Instagram.svg');
  -webkit-mask-repeat: no-repeat;
   background-color:#002750;
   -webkit-mask-position: center;
}
.social-share li a.pinterest{
    content: '';
 -webkit-mask-image: url('images/Pin.svg');
  -webkit-mask-repeat: no-repeat;
   background-color:#002750;
   -webkit-mask-position: center;
}
.social-share li a.tumblr{
    content: '';
  -webkit-mask-image: url('images/Tumbir.svg');
  -webkit-mask-repeat: no-repeat;
   background-color:#002750;
   -webkit-mask-position: center;
}
.social-share li a.mail{
    content: '';
  -webkit-mask-image: url('images/mail.svg');
  -webkit-mask-repeat: no-repeat;
   background-color:#002750;
   -webkit-mask-position: center;
}

/* ABOUT */
.page-template-template-about .storefront-breadcrumb {
    display: none;
}
/* 404 */
.error404 .storefront-breadcrumb {
    display: none;
}
.error404 .page-header {
     position: relative;
    padding-top: 180px;
    padding-bottom: 180px;
    text-align: center;
}
.error404 .page-header.search h1 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    letter-spacing: 0.02rem;
}
.img404 {
    margin: 0px auto 30px;
}
/* SEARCH */
.search-results .storefront-breadcrumb, .search-no-results .storefront-breadcrumb  {
    display: none;
}
.search-results.right-sidebar .content-area, .search-no-results.right-sidebar .content-area  {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
}
.search-results.right-sidebar #secondary, .search-no-results.right-sidebar #secondary  {
    display: none;
}
.page-header.search {
     position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}
.page-header.search h1 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    letter-spacing: 0.02rem;
}
.search-no-results .page-header.search {
    min-height: 1000px;
}
.search-no-results .page-header.search  p{
   margin-top:25px;
}   

.storefront-featured-search h2 {
    text-transform: uppercase;
 font-family: 'Open Sans', sans-serif;
 font-size: 14px;
 font-weight: bold;
     margin-bottom: 40px !important;
}
.storefront-featured-search h2.woocommerce-loop-product__title {
    text-transform: none !important;
    margin-bottom: 0px !important;
}
.storefront-featured-search li h4 {
   font-size: 18px !important;
 font-weight: 700 !important;
}
.storefront-featured-search li p {
   font-size: 14px !important;
 line-height: 20px;
}
/* CONTACT */
.page-template-template-contact .storefront-breadcrumb {
    display: none;
}
.intro-contact {
    position: relative;
    padding-top: 120px;
    padding-bottom: 60px;
}
.intro-contact .col-full, .contact-form .col-full {
    max-width: 930px;
}
.intro-contact h1 {
    font-size: 58px;
    margin-bottom: 60px;
}
.contact-box {
  margin-bottom: 38px;
  float: left;
    width: 100%;
}
.contact-box.email {
    margin-top: 34px;
}
.contact-box h4 {
 font-family: 'Open Sans', sans-serif;
 font-size: 14px;
 font-weight: 700;
 text-transform: uppercase;
     margin-bottom: 14px;
    padding-bottom: 6px;
 border-bottom: 1px solid #CCCCCC;
}
.contact-box p {
 font-size: 14px;
 line-height: 14px;
 font-weight: 400;
}
.left-contact-infos {
  display: inline-block;
  vertical-align: top;
  max-width: 370px;
  min-width: 370px;
  margin-right: 110px;
  width:auto;
}
.right-contact-infos {
   display: inline-block;
  vertical-align: top;
    max-width: 210px;
  min-width: 210px;
  width:auto;
}
.hours p {
    display: inline-block;
    width: 50%;
    float: left;
    vertical-align: top;
}
.hours p + p {
    text-align: right;
}

.intro-contact:after {
    content:"";
    background-image: url('images/Stamp.svg');
    background-repeat: no-repeat;
    width: 400px;
    height: 413px;
    top: 30px;
    right: 0px;
    position: absolute;
}
.contact-form {
    padding-top: 120px;
}
.contact-form h3 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    letter-spacing: 0.1rem;
   margin-bottom: 60px; 
}
.form-box {
    margin-bottom: 30px;
}
.form-box label, .form-box .rule {
    font-size: 13px;

}
.form-box .rule {
    text-align: right;
}   
.form-box input[type=text], .form-box input[type=email],.form-box input[type=tel] {
    width: 100%;
    display: block;
}
.half-width-form {
    width: 44%;
    display: inline-block;
    vertical-align: top;
}
.half-width-form.last {
    float:right;
}
.form-box textarea {
  min-height: 200px;
}   
.form-box input[type=submit] {
    font-size: 14px;
    width: 300px;
    padding-top: 11px;
        margin-top: 30px;
    text-transform: uppercase;
}
span.wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 0em;
}
.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 13px;
    font-weight: normal;
    display: block;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    border-color:transparent;
}
.wpcf7 form .wpcf7-response-output {
    border:0 !important;
    margin: 0 !important;
    padding:0 !important;
    font-size:14px;
}

.wpcf7-acceptance span {
  margin-left: 8px;
  color:#999999;
}

/* MOBILE MENU*/
button.menu-toggle {
    position: absolute;
    right: 20px;
   top: 17px;
    border:0px;
}
button.menu-toggle::before, button.menu-toggle::after, button.menu-toggle span::before {
    height: 2px;
    width: 22px;
    margin-top: 0px;
    border-radius: 0px;
    position: relative;
}
button.menu-toggle::after {
    width: 16px;
}
.toggled button.menu-toggle::after, .toggled button.menu-toggle::before {
    width: 22px;
}
.toggled button.menu-toggle::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transform-origin: 27% 0;
      -ms-transform-origin: 27% 0;
      -webkit-transform-origin: 27% 0;
}
.linkmobile {
    display: none;
}
.main-navigation ul.nav-menu ul li.focus,.main-navigation ul.nav-menu ul li.focus:hover, .main-navigation ul.nav-menu ul li.focus, .main-navigation ul.nav-menu ul li.focus:hover {
    background-color: none;
} 
.main-navigation ul.nav-menu ul li a:hover {
    background-color: transparent;
    color: #9A5826;
}

.ss-main .ss-single-selected {
    display: flex;
    cursor: pointer;
    width: 100%;
    height: 50px;
    padding: 6px;
    background-color: #FBFBFB !important;
    box-shadow: none;
    border: 1px solid #EBEBEB;
    border-radius: 2px;
    background-color: #fff;
    outline: 0;
    box-sizing: border-box;
    transition: background-color .2s;
}
.ss-main .ss-single-selected .placeholder {
    font-size: 14px;
    color: #999;
    padding-left: 5px;
}   
.ss-main .ss-single-selected .ss-arrow span {
    border: solid #002750 ;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transition: transform .2s, margin .2s;
}
.ss-content .ss-list .ss-option {
    color:#002750;
     background-color: #FBFBFB !important;
}
.ss-content .ss-list .ss-option:hover {
    color:#002750;
    background-color:#FCFAF8!important;
}

.ss-content .ss-search {
    display: flex;
    flex-direction: row;
    display: none;
    padding: 8px 8px 6px 8px;
}

.storefront-sorting .ss-main .ss-single-selected {
    padding: 6px 10px 6px 10px;
    background-color: #FFF !important;
}
.storefront-sorting .ss-main .ss-single-selected .ss-arrow {
    margin: 0 6px 0 20px;
}
.woocommerce-ordering {
    border:0;
   padding-left: 0px;
}

/* MEDIA QUERIES*/

@media screen and (max-width: 1024px) {
 #instagram-social .content-text {
    width: 34%;
    max-width: 370px;
    margin-left: 63px
}
.gallery-insta {
    width: 57%;
    max-width: 705px;
}
.block-about .content-text {
    margin-top: auto;
}
.pagination .lastpage {
    width: 94px;
}   
.pagination .firstpage {
    width: 134px;
}
.feat-blogpost .content-text {
    margin-left: 70px;
}  
.feat-blogpost.reversed .content-text {
    margin-right: 85px;
}  
}    

@media screen and (max-width: 980px) {
    #slider-homepage .content-text h2 {
    font-size: 36px;
    line-height: 38px;
    }
    #slider-homepage .content-text {
        width:auto;
        margin-right: 0px;
    }
    .block-about .content-text h2 {
     font-size: 35px;
    line-height: 44px;
    }
    #instagram-social .content-text h2 {
    font-size: 28px;
    line-height: 30px;
    }
    .content-text .button {
    margin-top: 0px;
    }
}   
@media screen and (max-width: 910px) {
    .gallery-insta {
        width: 54%;
    }
    #instagram-social .content-text {
    width: 38%;
    margin-left: 40px;
  }
}
@media screen and (max-width: 769px) {
.main-navigation.toggled .handheld-navigation, .main-navigation.toggled .menu > ul:not(.nav-menu), .main-navigation.toggled ul[aria-expanded=true] {
    max-height: 1000px;
    height: 1000px;
}
.feature-image-block {
    margin-bottom: 0px;
}
.caption {
    font-size: 13px;
    line-height: 20px;
    margin-top: 10px;
}
.menuopen .search-icon-button {
    display: none;
}
.menuopen .site-header-cart {
    display: none !important;
}
.menuopen .site-branding {
     display: none !important;
}
.handheld-navigation, .nav-menu, .main-navigation div.menu > ul:not(.nav-menu) {
    overflow: hidden;
    max-height: 0;
    height: 0;
} 
.top-right-footer, .bottom-right-footer {
    padding-bottom: 20px;
}  
.storefront-product-section.storefront-featured-articles .section-title {
    margin-top: 0px;
}
  #slider-homepage .content-text {
      padding:0px;
      background: transparent;
      width: 80%;
    margin-left: 20px;
    top: 64%;
    z-index: 1;
    left: 0;
    color: #FFF;
    transform: translateY(-50%);
  }
  .site-header-cart .cart-contents::after {
      background-image: none;
  }
  #slider-homepage .content-text h2 {
      color: #FFF;
  }
  .image-slider {
      width: 100%;
      height: 540px;
          background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
  }
    .image-slider img {
    opacity: 0;
    }
  .slick-dots {
    display: block;
    position: absolute;
    right: auto;
    left: -20px;
    top: 20px;
  }
  .slick-dots li {
    list-style: none;
    display: inline-block;
    margin-right: 17px;
}
.storefront-featured-products, .storefront-featured-articles {
  margin-right: -20px;
}
.storefront-featured-articles ul.products li.product img {
    width: 100%;
}
.storefront-featured-products:after {
    background: none;
}
ul.products li.product img, ul.products .wc-block-grid__product img, .wc-block-grid__products li.product img, .wc-block-grid__products .wc-block-grid__product img {
    display: block;
    margin: 0;
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
}
.tax-product_cat .site-main ul.products.columns-3 li.product {
    width: 100%;
}
#instagram-social {
    padding:20px 0px;
}
.gallery-insta {
    max-width: none;
      width: 94%;
    margin-left: 1.41575em;
    margin-right: 1.41575em;
}
#instagram-social .content-slider {
    margin: 0;
    text-align: left;
    width: 100%;
}
#instagram-social .content-text {
     width: 88%;
    margin-left: 1.41575em;
    margin-top: 30px;
}
.block-about {
    padding: 0px 0px;
    padding-top: 40px;
}
.block-about .col-full {
    margin-left: 0em;
    margin-right: 0em;
    padding: 0;
}
  
.block-about .content-text {
     width: 88%;
    margin-left: 1.41575em;
    margin-right: 1.41575em;
    max-width: none;
}  
.block-about .img-about {
    width: 100%;
    margin-top: 65px;
    float: none;
} 
.block-about .img-about:after {
    right: 0px;
} 
.top-left-footer, .bottom-left-footer {
    width: 100%;
}
.top-right-footer, .bottom-right-footer {
    width: 100%;
    float: left;
    text-align: left;
}
.social-menu {
    margin-left: 0;
    padding-left: 0;
}
.social-menu li {
    margin-left: 0px;
    margin-right: 16px;
}
.bottom-right-footer p {
    float: none;
}
.site-footer:before {
    right: 6%;
}
.search-icon-button {
    position: absolute;
    top: 20px;
    right: 90px;
}
#site-header-cart {
    position: absolute;
    top: 2px;
    right: 62px;
}
.linkmobile {
    display: block;
}
.linkmobile a {
    display: block;
    position: relative;
}
.linkmobile a::after {
    content: "" !important;
    background-image: url(images/cart.svg) !important;
    height: 1em;
    float: right;
    width: 16px;
    height: 20px;
    margin-top: 5px;
}
#slider-homepage {
    height: 540px;
    position: relative;
}
.image-slider:before {
    content: '';
    position: absolute;
    background: rgba(0,0,0,0.3);
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    right: 0;
    bottom:0;
    z-index: 1;
}
#slider-homepage .slick-slide img {
    display: block;
    width: 100%;
    height: 100%;
}

.handheld-navigation ul {
    margin: 0;
}
.navigation-right {
    display: inline-block;
    float: left;
    text-align: left;
    width: 100%;
        position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    padding-top: 55px;
}
.storefront-primary-navigation {
    width: 100%;
}
.woocommerce-active .site-header .main-navigation {
    width: 100%;
    margin-right: 0px;
      
}
.woocommerce-active .site-header .main-navigation.toggled {
  /* background-color: #FFF;
    height: 1000px;  */
    padding-bottom: 1000px;
}   
.storefront-primary-navigation
.handheld-navigation {
    clear: both;
    background-color: #FFF;
}
.main-navigation ul.menu > li > a, .main-navigation ul.nav-menu > li > a {
    margin-left: 20px;

}
header .col-full {
    position: relative;
    margin-left: 0;
    margin-right: 0;
}
button.dropdown-toggle {
    padding: 0px 20px;
}
.storefront-secondary-navigation.woocommerce-active .site-header .site-branding {
    margin-left: 20px;
    position: relative;
    z-index: 2;
}
.main-navigation ul.menu ul.sub-menu, .main-navigation ul.nav-menu ul.children {
    padding: 0px 10px 0px 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow:  none;
    box-shadow:  none;
}
.main-navigation ul ul {
    display: block;
    margin-left: 10px;
}
.main-navigation ul li a {
    padding: 0.5em 1em;
    display: block;
        font-size: 18px !important;
    margin-bottom: 20px!important;
}
.close-search {
    right: 10px;
}  
.woocommerce-active .site-header .site-search {

    z-index: 3;
}
.woocommerce-active .site-header .site-header-cart {
    border-left:0px solid;
}
#filter a {
    margin: 0px 10px;
}   
.feat-blogpost .feat-image {
    width: 100%;
} 
.feat-blogpost .content-text {
    width: 100%;
    margin-left: 0px;
    margin-top: 40px;
}  
.list-articles {
    margin-top: 40px;
    margin-bottom: 0px !important;
       
}
.community-picks .visit-shop {
    margin-right: 30px;
    margin-top: 0px;
}
#instagram-social.footer-position {
    padding: 0;
    margin-top: 60px;
    padding-bottom: 60px;
}

.feat-blogpost.reversed .feat-image {
    float: none;
    margin-top: 40px;
}
.intro-post {
    text-align: center;
    margin-top: 60px;
    padding-bottom: 40px;
}
.intro-contact {
    padding-top: 60px;
    padding-bottom: 40px;
}
.half-width-form {
    width: 100%;
}
.form-box .rule {
    text-align: left;
}
.intro-contact:after {
    background: none;
    width: 0px;
}
.left-contact-infos, .right-contact-infos {
    max-width: none;
    min-width: none;
    width: 100%;
    margin-right: 0px;
}
.contact-box, .contact-box.email {
    margin-bottom: 10px;
}
.contact-form {
    padding-top: 60px;
}
.form-box input[type=submit] {
    width: 100%;
}  
.site {
    margin-top: 60px;
}
#filter {
    margin-left: 0px;
}
.feat-blogpost {
    padding: 60px 0px;
}
.blog .feat-blogpost {
   margin-bottom: 17px;
}
.single .storefront-product-section.storefront-featured-articles .section-title {
    font-size: 14px;
    width: 80%;
}
.page-template-template-about .feat-blogpost .col-full {
    max-width: 70em;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}   
.feat-blogpost.reversed .feat-image {
    order: 1;
}
.feat-blogpost.reversed .content-text {
    margin-left: 0px;
    margin-right: 0px;
    order: 2;
}
.notice-shop {
    background-color: #CAA37A;
    height: auto;
    width: 100%;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}
.notice-shop p {
    text-align: center;
    font-size: 13px;
    color: #FFF;
    line-height: 19px;
    padding: 10px;
    width: 70%;
    margin: 0px auto;
}
.storefront-secondary-navigation.woocommerce-active .site-header .site-branding {
    width: 40px;
    display: inline-block;
    vertical-align: top;
    margin-right: 0%;
    margin-bottom: 0px;
    margin-top: 10px;
}
.site-header {
  padding-top: 2px;
  height: 60px;
    position: fixed;
    width: 100%;
    padding-bottom: 0;
     top:0px;
    z-index: 1;
}

.home .site-header {
    top:39px;
} 
.home .site-header.ontop {
    top:0px;
}   
.site-header-cart .cart-contents {
    padding: 0;
    display: none;
}
#instagram-social.footer-position .gallery-insta {
    max-width: none;
    width: 94%;
}
.feat-blogpost.reversed .feat-image {
    padding-left:0px;
}
} 

@media screen and (max-width: 681px) {
    #instagram-social.footer-position .gallery-insta {
    max-width: none;
    width: 88%;
}
.home .site-header {
    top:55px;
} 
.left-contact-infos {
        min-width: auto;
    width: 100%;
}

.site-main ul.products.columns-3 li.product-category.product {
  width: 100%;
}
.woocommerce-message {
    font-size: 14px;
    line-height: 22px;
}
.woocommerce-message .button, .woocommerce-info .button, .woocommerce-error .button, .woocommerce-noreviews .button, p.no-comments .button {
float: none;
    padding: 0;
    background: none;
    color: #fff;
    box-shadow: none;
    text-align: left;
    width: auto;
    max-width: none;
    padding: 0px !important;
    margin-left: 4px;
    padding-left:0px;
    height: auto;
    border-width: 0;
    border-left-width: 0px;
    border-left-style: solid;
    border-left-color: rgba(255, 255, 255, 0.25) !important;
    border-radius: 0;
}
 .page-template-template-homepage:not(.has-post-thumbnail) .site-main {
    padding-top: 0.235801032em;
}
.woocommerce-active .site-header .site-header-cart {
    width: auto;
    margin-left: 0px;
    padding-left: 0px;
}   
.site-footer:before {
    width: 142px;
    height: 113px;
    background-size: cover;
}
.storefront-product-section .section-title {
    font-size: 26px;
    width: 50%;
}
.home .storefront-featured-articles .section-title {
    font-size: 14px !important;
}
.visit-shop {
    margin-right: 30px;
    margin-top: 40px;
}
.home .storefront-featured-articles .visit-shop {
    margin-top: -5px;
}
.footer-menu li {
    display: inline-block;
    margin-right: 10px;
}
.home ul.products li.product{
    margin-bottom: 0.235801032em;
}
.storefront-featured-products li, .storefront-featured-articles li {
    width: 285px;
    margin-right: 20px;
}
/* ul.products li.product img {
    width: auto;
} */
.storefront-product-section.storefront-featured-articles .section-title {
    font-size: 25px;
    width: 50%;
}
table.cart .product-thumbnail img {
    margin: 0 auto;
 max-width: 3.706325903em;
    height: auto;
    /* width: 100%; */
}
.woocommerce-cart table:not( .has-background ) tbody tr:nth-child(2n) td {
    background-color: transparent;
    border-top: 0px solid #CCCCCC; 
}
.product-subtotal {
    margin-bottom: 25px;
    border-bottom: 1px solid #CCCCCC;
}

.woocommerce-tabs.wc-tabs-wrapper {
    border-top: 0px solid #CCCCCC;
}   
table.cart th, table.cart td {
    font-size: 13px;
    text-transform: uppercase;
    color: inherit;
}
.gallery-insta {
    max-width: none;
    width: 88%;
    margin-left: 1.41575em;
    margin-right: 1.41575em;
}
}