/*// CHROME SCROLLBAR STYLING //*/
::-webkit-scrollbar {
    background: #ECD6BD;
    width: 12px;
    height: 6px;
}
::-webkit-scrollbar-corner {
    background: #742d03;
}
::-webkit-scrollbar-thumb {
    background: #742d03;
}
html, body{overflow-x:hidden;}
body{
    line-height:1.7;
    font-size:20px;
    color:#2E241B;
    font-family: 'Chivo', sans-serif;
    font-weight: 400;
    font-style: normal;
    margin:0;
}
strong{font-weight:700;}
*:focus{
  outline:0;
}
.prevent-select, body.home .entry-title, body.home .entry-description, .section-tab-toggle-title, #nav-group div, #nav-group a, .menu-mid.left, .tab-title, .menu-toggle, .btn, button, .wp-block-button__link {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
::selection, .select {
    background-color: #ef9f44;
    display: inline-block;
}
* {
  box-sizing: border-box;
}
/* WP blocks */
.wp-block-column .wp-block-image{
    margin:0;
}
.wp-block-column.photo-menu-cafe .wp-block-image {
    margin: 0 0 1.5vw;
}
/**/
/* animation start */
.full-opacity{
    opacity:1;
}
.fade-in{
    opacity:1;
    animation: fadeIn 3s;
    -webkit-animation: fadeIn 3s;
    -moz-animation: fadeIn 3s;
    -o-animation: fadeIn 3s;
    -ms-animation: fadeIn 3s;
}
@keyframes fadeIn{
    0% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes fadeIn{
    0% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes fadeIn{
    0% { opacity:0; }
    100% { opacity:1; }
}
@-o-keyframes fadeIn{
    0% { opacity:0; }
    100% { opacity:1; }
}
.fade-in-second{
    opacity:1;
    animation: fade-in-second 3s;
    -webkit-animation: fade-in-second 3s;
    -moz-animation: fadeIn 3s;
    -o-animation: fade-in-second 3s;
    -ms-animation: fade-in-second 3s;
}
@keyframes fade-in-second{
    0% { opacity:0; }
    20% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes fade-in-second{
    0% { opacity:0; }
    20% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes fade-in-second{
    0% { opacity:0; }
    20% { opacity:0; }
    100% { opacity:1; }
}
@-o-keyframes fade-in-second{
    0% { opacity:0; }
    20% { opacity:0; }
    100% { opacity:1; }
}
.fade-in-noDelay{
    opacity:1;
    animation: fadeInNoDelay 3s;
    -webkit-animation: fadeInNoDelay 3s;
    -moz-animation: fadeInNoDelay 3s;
    -o-animation: fadeInNoDelay 3s;
    -ms-animation: fadeInNoDelay 3s;
}
@keyframes fadeInNoDelay{
    0% { opacity:0; }
    10% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes fadeInNoDelay{
    0% { opacity:0; }
    10% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes fadeInNoDelay{
    0% { opacity:0; }
    10% { opacity:0; }
    100% { opacity:1; }
}
@-o-keyframes fadeInNoDelay{
    0% { opacity:0; }
    10% { opacity:0; }
    100% { opacity:1; }
}
.fade-out {
  opacity: 0.3;
  animation: fadeOut 4s;
  -webkit-animation: fadeOut 4s;
  -moz-animation: fadeOut 4s;
  -o-animation: fadeOut 4s;
  -ms-animation: fadeOut 4s;
}
@keyframes fadeOut {
  0% {opacity:1;}
  100% {opacity:0.3;}
}
@-moz-keyframes fadeOut {
  0% {opacity:1;}
  100% {opacity:0.3;}
}
@-webkit-keyframes fadeOut {
  0% {opacity:1;}
  100% {opacity:0.3;}
}
@-o-keyframes fadeOut {
  0% {opacity:1;}
  100% {opacity:0.3;}
}
/* animation end */
/**/
/* ajout de cercle animation */

body.home .circle-container {
    top:0;
}

.circle-container {
    top:10vh;
    position: absolute;
    z-index: 8;
    left:auto;
    right:auto;
    /*display:none;*/
    animation: fadeIn 1s;
    -webkit-animation: fadeIn 1s;
    -moz-animation: fadeIn 1s;
    -o-animation: fadeIn 1s;
    -ms-animation: fadeIn 1s;
}
.circle-container.left {
    left:-2vw;
}
.circle-container.right {
    right:-2vw;
}
.circle {
    display: block;
    border-radius: 50%;
    position:absolute;
    background-color: #ef9f44;
    /*box-shadow: 0 0 30px rgba(224,148,62,0.2);*/
    -webkit-transition: linear 0.5s;
    -moz-transition: linear 0.5s;
    -ms-transition: linear 0.5s;
    -o-transition: linear 0.5s;
    transition: linear 0.5s;
}
.circle:before{
    content:'';
    background: url(../img/granulaine-texture.jpg) no-repeat scroll center center / 100% auto transparent;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border-radius: 50%;
    opacity: 0.05;
}
.circle.one {
    width: 10vw;
    height: 10vw;
}
.circle.two {
    width: 12vw;
    height: 12vw;
}
body.home .circle.one, body.home .circle.two {
    background-color: #f8e2c6;
}
.circle.tree {
    width: 5vw;
    height: 5vw;
    background-color: #ef9f44;
}
.circle-container.left .circle.tree {
    left:2vw;
}
.circle-container.right .circle.one {
    width: 8vw;
    height: 8vw;
}
.circle-container.right .circle.two {
    width: 6vw;
    height: 6vw;
}
.circle-container.right .circle.tree {
    width: 4vw;
    height: 4vw;
    right:0;
}
/* LEFT */
body:not(.home) .circle-container.left .circle.one {
    left: -8vw;
    top: -10vw;
    width: 6vw;
    height: 6vw;
}
body:not(.home) .circle-container.left .circle.two {
    left: -6vw;
    top: 6vw;
    width: 5vw;
    height: 5vw;
}
body:not(.home) .circle-container.left .circle.tree {
    left: -4vw;
    top: -2vw;
    width: 7vw;
    height: 7vw;
}
/* RIGHT */
body:not(.home) .circle-container.right .circle.one {
    top:-10vw;
    right:-7vw;
    width: 7vw;
    height: 7vw;
}
body:not(.home) .circle-container.right .circle.two {
    top:2vw;
    right: -7vw;
    width: 5vw;
    height: 5vw;
}
body:not(.home) .circle-container.right .circle.tree {
    width: 3vw;
    height: 3vw;
}

/* locator plugin */
#wpsl-wrap{
    margin-top: -103px;
    overflow:unset;
}
#wpsl-wrap #wpsl-search-wrap .wpsl-input, #wpsl-wrap #wpsl-search-wrap .wpsl-select-wrap, #wpsl-wrap #wpsl-search-wrap form, #wpsl-wrap #wpsl-radius, #wpsl-wrap #wpsl-results, #wpsl-wrap .wpsl-search{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
}
#wpsl-wrap .wpsl-search {
    margin-bottom: 3em;
    padding: 0;
    background: transparent;
}
#wpsl-wrap .wpsl-input label, #wpsl-wrap #wpsl-radius label, #wpsl-wrap #wpsl-category label{
    width:auto;
}
#wpsl-wrap wpsl-category, #wpsl-wrap .wpsl-input, #wpsl-wrap .wpsl-select-wrap {
    margin-bottom: 0;
}
#wpsl-wrap .wpsl-search-btn-wrap #wpsl-search-btn{
    background-image:none;
    background-repeat:unset;
    box-shadow:none;
    text-transform:unset;
    border:none;
    line-height: 1.428571429;
    padding: 7px 10px;
}
#wpsl-wrap #wpsl-radius .wpsl-dropdown{
    width: 7rem;
}
#wpsl-wrap .wpsl-input, #wpsl-wrap #wpsl-radius, #wpsl-wrap #wpsl-results{
    margin-right: 3vw;
}
#wpsl-wrap .wpsl-search-btn-wrap{
    margin-right:0;
}
#wpsl-wrap #wpsl-search-wrap{
    padding: 2em 2.5em;
    background: #fff;
    width:auto;
    border-radius: 3px;
    box-shadow: 0 0 2.5em rgba(0,0,0,0.1);
}
#wpsl-wrap .wpsl-direction-wrap{
    display:flex;
    align-items:center;
}
#wpsl-wrap .wpsl-directions {
    text-decoration: underline;
    text-transform: uppercase;
    font-size: 0.7em;
    letter-spacing: 1px;
    margin-left: 15px;
    line-height: 1.1;
    margin-top: 2px;
    color:#4F8342;
}
#wpsl-wrap .wpsl-directions:after {
    
}
#wpsl-wrap .wpsl-store-location{
    font-size:1.2em;
}
#wpsl-wrap .wpsl-store-location span{
    font-size:0.65em;
    line-height: 1.2;
}
#wpsl-wrap .wpsl-store-location strong {
    margin-bottom: 0.5em;
    display: block;
}
#wpsl-wrap #wpsl-result-list li {
    padding: 2em;
    border-bottom: 1px solid #eee;
}
#wpsl-wrap #wpsl-result-list li:hover{
    background-color: #eee;
}
#wpsl-wrap #wpsl-stores{
    border: 1px solid #eee;
    background-color: #fff;
}
h1,h2,h3{
    color:#41271D;
    line-height: 1.2;
    hyphens: auto;
}
h2{
    font-size: 1.6em;
}
h3{
    font-size: 1.4em;
}
a {
    text-decoration: none;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    font-weight:500;
}
a, a:visited, strong a:visited{
    color:#4F8342;
}
#nav-group a{
    color:#000;
}
strong a{font-weight:700;}
a:hover, a:focus, strong a:focus, strong a:hover {
    color:#437437;
}
#nav-group a:hover,#nav-group a:focus{
    opacity:0.7;
}
a.button, a.button:hover, a.button:focus, a.button:visited {
    color:#fff;
}
.box-padding{
    padding: 20px 50px 30px;
}
.box-decal{
    margin-bottom: calc(60px + 1.75em);
}
.box-decal .wp-block-column .wp-block-image{
    margin-top: 60px;
    margin-bottom: -120px;
}
body .wp-block-quote {
    font-style: italic;
    padding: 1em 3em 2em 3em!important;
    margin-top: 4em;
    position: relative;
    background-color: #FBF3E1;
    margin-bottom: 3em;
}
body .wp-block-quote:before{
    background: url(../img/icon-avis.svg) no-repeat scroll center center / 100% auto transparent;
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 35px;
    height: 35px;
    display: block;
}
body .wp-block-quote cite {
    font-size: 0.7em;
}
.assistive-text, .site .screen-reader-text {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    /*overflow: hidden;*/
    height: 1px;
    width: 1px;
}
/* general custom class styling */
.margin0, .wp-block-columns.margin0{
    margin:0;
    margin-top: 0;
    margin-bottom: 0;
}
.wp-block-group.is-vertical.is-layout-flex{
    justify-content: center;
    align-content: center;
    height: 100%;
}
.wp-block-columns.droite {
    justify-content: flex-end;
}
.displayNone{display:none!important;}
.inline-flex{
    display:inline-flex;
}
.mid-size{
    width:700px;
    max-width:100%;
}
.center{
    margin-left:auto;
    margin-right:auto;
}
.gap-0{
    gap:0;
}
.margin-60{
    margin:60px 0;
}
.full-width{position:relative;}
.full-width:after, .full-width:before{
    content:"";
    top:0;
    width:100%;
    height:100%;
    position:absolute;
    background-color:inherit;
    z-index:-1;
}
.full-width:after{
    right:-100%;
}
.full-width:before{
    left:-100%;
}
.full-width-content, .wp-block-group.alignfull, figure.wp-block-image.full-width-content {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
figure.wp-block-image.full-width-content img{
    width:100vw;
}
.full-width-left {
    width: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw!important;
}
/* full-column */
.is-layout-flex.wp-block-columns .full-column.wp-block-column{
    max-width:unset;
}
/**/
.no-margin, .wp-block-columns.no-margin{margin:0;}
.wrapper {
    width:100%;
    max-width: 90vw;
    padding:0 5vw;
    margin: 0 auto;
}
.wp-block-columns.padding30 .wp-block-column{
    padding:30px;
}
body .wp-block-columns.no-wrap{
    flex-wrap: nowrap!important;
}
.is-layout-flex.wp-block-columns.justify-content-flex-start{
    justify-content:flex-start;
}
.gap0{gap:0;}

.box-shadow{
    box-shadow: 0 0 30px rgb(0 0 0 / 6%);
    border: 1px solid #f5f5f5;
}
.absolute{
    position:absolute!important;
}
.z-index-1{
    z-index:-1;
}
.padding-min{
    padding:0 5vw;
}
figure.wp-block-table{
    font-size:1em;
}
.wp-block-table figcaption.wp-element-caption{
    line-height:1.2;
}
/**/
/* header*/
#adresse{
    font-size: 0.75em;
    display: block;
    max-width: 100%;
}
footer #adresse{
    width: 220px;
}
#social-group{
    display:flex;
    align-items: center;
}
header #header-right-group {
    display:flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 5%;
    height: 100%;
}
#point-de-vente-header {
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    display: flex;
    position: relative;
    margin-right: 3vw;
    border: 2px solid #fff;
    border-radius: 5px;
    padding: 8px 10px;
    line-height: 1;
    font-size: 0.8em;
}
body.single-product header #point-de-vente-header {
    color: #000;
    border: 2px solid #000;
}
#point-de-vente-header:after, body.single-product header #point-de-vente-header:after{
    content:'';
    margin-left:8px;
    height: 1em;
    width: 15px;
}
#point-de-vente-header:after{
    background: url(../img/icon-pointer-light.svg) no-repeat scroll center center / auto 100% transparent;
}
body.single-product header #point-de-vente-header:after{
    background: url(../img/icon-pointer-dark.svg) no-repeat scroll center center / auto 100% transparent;
}
.devenir-detaillant{
    position:relative;
    display:flex;
    align-items:center;
    justify-content: center;
}
.devenir-detaillant:before{
    background: url(../img/icon-add-location.svg) no-repeat scroll center center / auto 100% transparent;
}
.devenir-detaillant:before{
    content:'';
    width: 1.4em;
    height: 1.5em;
    margin-right: 0.8em;
}
.devenir-detaillant a{
    margin-left:5px;
    position:relative;
}
.devenir-detaillant a:after{
content: '';
    position: absolute;
    width: 100%;
    bottom: 0px;
    height: 2px;
    background-color: #4F8342;
    left: 0;
}
header #navbarSupportedContent #social-group {
    justify-content: center;
    position: relative;
    top: unset;
    right: unset;
    height: unset;
}
header #social-group .social-icon{
    margin-left: 12px;
    margin-right: 12px;
}
header #social-group .social-icon:hover, #point-de-vente-header:hover {
    opacity: 0.7;
}
.social-icon{
    height:30px;
    display:block;
    margin-right: 25px;
}
#facebook.social-icon{
    background: url(../img/icon-facebook.svg) no-repeat scroll center center / 100% auto transparent;
    width:12px;
}
#instagram.social-icon{
    background: url(../img/icon-instagram.svg) no-repeat scroll center center / 100% auto transparent;
    width:30px;
}
#youtube.social-icon{
    background: url(../img/icon-youtube.svg) no-repeat scroll center center / 100% auto transparent;
    width:42px;
}
header #navbarSupportedContent #facebook.social-icon, body.single-product header #facebook.social-icon {
    background: url(../img/icon-facebook-dark.svg) no-repeat scroll center center / 100% auto transparent;
}
header #navbarSupportedContent #instagram.social-icon, body.single-product header #instagram.social-icon{
    background: url(../img/icon-instagram-dark.svg) no-repeat scroll center center / 100% auto transparent;
}
header #navbarSupportedContent #youtube.social-icon, body.single-product header #youtube.social-icon{
    background: url(../img/icon-youtube-dark.svg) no-repeat scroll center center / 100% auto transparent;
}
body.home .entry-title{
    margin-bottom:20px;
}
.photo-page{
    background-color: #E8DBCF;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    overflow:hidden;
}
.photo-page img{
    height: 100%;
    width: 100%;
    object-fit:cover;
}
.photo-page:after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
body.home .photo-page:after{
    background: rgb(24,8,0);
    background: radial-gradient(circle, rgba(24,8,0,0.9) 0%, rgba(92,34,11,0.5) 100%);
    opacity:0.8;
}
body:not(.home) .photo-page:after{
    background: rgb(49,13,0);
    opacity: 0.5;
}

header .columns-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1220px;
    max-width: 100%;
}
header .columns-2 #header-img img{
    max-height:50vh;
    margin-right: 3vw;
}
#top-header {
    background-color: #ef9f44;
    padding: 10px 0;
    font-size: 0.7em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 1;
    position: relative;
    line-height: 1.1;
}
#top-header .wrapper p, #top-header .wrapper div{
    margin:0;
}

.headerSmallBloc {
    position: absolute;
    background-color: #555;
    border-radius: 2px;
    opacity:1;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.headerSmallBloc:hover, .headerSmallBloc:focus{
    opacity:0.8;
}
#site-navigation.toggled-on .headerSmallBloc {
    opacity:0;
}
body:not(.home) #site-navigation:not(.toggled-on) #header-logo .header-image.menu-open, body:not(.home) #site-navigation.toggled-on #header-logo .header-image.menu-close{
    display:none;
}
.tel.headerSmallBloc {
    background: url(../img/mini-tel.svg) no-repeat scroll center center / 40% auto #555;
    width: 80px;
    height: 80px;
    left: -90px;
}
.heures.headerSmallBloc {
    background: url(../img/mini-horloge.svg) no-repeat scroll center center / 50% auto #555;
    width: 60px;
    height: 60px;
    bottom: -70px;
    right:0;
}
.message a:before{
    content:"";
    background: url(../img/message.svg) no-repeat scroll center center / 100% auto transparent;
    width: 47px;
    height: 39px;
    display: inline-flex;
    margin-right: 15px;
    -webkit-animation: moveLetter 2s infinite;
    -moz-animation: moveLetter 2s infinite;
    -o-animation: moveLetter 2s infinite;
    -ms-animation: moveLetter 2s infinite;
    animation: moveLetter 2s infinite;
    transform: translateX(0);
}
@keyframes moveLetter {
  0%, 100% {transform: translateX(0)}
  50% {transform: translateX(-10px)}
}
.agenda a:before{
    content:"";
    background: url(../img/icon-agenda.svg) no-repeat scroll center center / 100% auto transparent;
    width: 44px;
    height: 49px;
    display: inline-flex;
    margin-right: 30px;
}
.wp-block-columns.last{
    margin-bottom:0;
}
.bloc {
    padding: 2vw 4vw 4vw;
}
.bloc .wp-block-heading{
    margin-top:0;
}
.bloc.is-layout-flow{
    padding: 4vw;
}
.bloc .wrapper {padding:0;}
h2, h3{
    margin-bottom:0.5em;
}
@media (min-width: 1200px){
    body .wp-block-columns {
        flex-wrap: nowrap!important;
    }
}
.wp-block-eedee-block-gutenslider.content-change {
    height: unset!important; 
}
body .is-layout-flex > h3 {
    margin-bottom:0.5em;
}
body .is-layout-flex > h2 {
    margin-bottom:0.5em;
}
h3, .bloc.beige .desc {
    position:relative;
}

/**/
/*footer*/
.groupe-medias-sociaux.wp-block-group figure a {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    padding: 12px;
    border-radius: 50%;
    background-color: #9B836D;
}

.etoiles-google{
    margin: 30px 0;
}
.etoiles-google, #colophon .footer-widget .etoiles-google a{
    color: #fff;
}
.etoiles-google, #colophon .footer-widget .etoiles-google a, .etoiles-google a:before, .etoiles-google #rate, .etoiles-google #avis-texte{
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.etoiles-google #avis-texte{
    font-size: 0.7em;
    margin-left: 10px;
}
.etoiles-google #rate{
    font-size: 1.5em;
}
.etoiles-google a:before {
    content:"";
    position:relative;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    margin-top: -0.25em;
    -webkit-animation: scaling 0.8s linear infinite alternate;
    -moz-animation: scaling 0.8s linear infinite alternate;
    -o-animation: scaling 0.8s linear infinite alternate;
    -ms-animation: scaling 0.8s linear infinite alternate;
    animation: scaling 0.8s linear infinite alternate;
}
@keyframes scaling {
    from {
        transform: scale(1);background: url(../img/etoile-google-jaune.svg) no-repeat scroll center center / 100% auto transparent;
    }
    to {
        transform: scale(1.3);background: url(../img/etoile-google-pleine-jaune.svg) no-repeat scroll center center / 100% auto transparent;
    }
}

.heures-footer.wp-block-table td {
    border-color: #9B836D;
}
.heures-footer.wp-block-table{
    border-bottom-color: #9B836D;
    font-size: 0.8em;
}
#nav_menu-3{
    margin-top:40px;
}
/**/
/* START Pour corriger prob de border radius & background-color sur iphone */
input:not([type="checkbox"]), input[type="submit"], select{
  /* Remove First*/
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Then Style */
  border-radius: 4px;
  -webkit-border-radius: 4px;
  outline: none;
}
input[type="submit"] {
  -webkit-background-clip: content-box; 
  background:#437437;
}
input[type="checkbox"] {
  width:12px;
  height:12px;
}
/* END Pour corriger prob de border radius & background-color sur iphone */
/**/
button, input[type=submit]{
    cursor:pointer;
}
button, input[type=submit], .btn, .button, body .wp-block-button .wp-block-button__link, .wp-block-search__inside-wrapper .wp-block-search__button, #wpsl-wrap #wpsl-search-btn, .wc-block-cart__submit a{
    font-family: inherit;
    font-size: inherit;
    font-weight: 700;
    padding: 0.8em 2em;
    letter-spacing: 1px;
}
button, input[type=submit], .btn, .button, body .wp-block-button .wp-block-button__link, .wp-block-search__inside-wrapper .wp-block-search__button, #wpsl-wrap #wpsl-search-btn{
    line-height: 1.428571429;
}
button:not(.menu-toggle), input[type=submit], .btn, .button, body .wp-block-button .wp-block-button__link, .wp-block-search__inside-wrapper .wp-block-search__button, #wpsl-wrap #wpsl-search-btn, .wc-block-cart__submit a{
    background-color:#4F8342;
    border:2px solid #4F8342;
    border-radius:3px;
    color:#fff;
    display: inline-block;
}
.wc-block-cart__submit a{
    padding:0 2em;
    display:block;
}
body .entry-content button.light, body .entry-content .btn.light, body .entry-content .button.light, body .entry-content .wp-block-button.light .wp-block-button__link, .wpcf7-form input[type=submit].btn.light, .wpcf7-form .light input[type=submit]{
    background-color:#fbf3e1;
    border-color:#fbf3e1;
    color:#4F8342;
}
.wpcf7-form input[type=submit].btn.light, .wpcf7-form .light input[type=submit]{
    border:2px solid #fbf3e1;
}
button.dark, .btn.dark, .button.dark, body .entry-content .wp-block-button.dark .wp-block-button__link{
    background-color:#4F8342;
    border-color:#4F8342;
    color:#fff;
}
body .entry-content .wp-block-button.dark .wp-block-button__link:hover, body .entry-content .wp-block-button.dark .wp-block-button__link:visited:hover, .btn.default:hover, body .entry-content .wp-block-button.default .wp-block-button__link:hover, .wpcf7-form input[type="submit"]:hover, input[type="submit"]:hover, button.light, .btn.light, .button.light:hover, .wp-block-button.light .wp-block-button__link:hover, .wpcf7-form input[type=submit].btn.light:hover, .wpcf7-form .light input[type=submit]:hover, button:not(.menu-toggle):hover, input[type=submit]:hover, .btn:hover, .button:hover, body .wp-block-button:hover .wp-block-button__link, .wp-block-search__inside-wrapper .wp-block-search__button:hover, button:not(.menu-toggle):focus, input[type=submit]:focus, .btn:focus, .button:focus, body .wp-block-button:focus .wp-block-button__link, body .wp-block-search__inside-wrapper .wp-block-search__button:focus, body .entry-content .wp-block-button__link:hover, body .entry-content .wp-block-button__link:visited:hover, body .entry-content .wp-block-button__link:focus, #wpsl-wrap #wpsl-search-btn:hover, #wpsl-wrap #wpsl-search-btn:focus, .wc-block-cart__submit a:hover, .wc-block-cart__submit a:focus{
    background-color:#437437;
    color:#fff;
    border-color: #437437;
}
.wpcf7-response-output{
    line-height: 1.2;
}
body .wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-background){
    background-image: unset;
    background-repeat: unset;
}
.wp-block-button__link:not(.has-text-color), body .wp-block-button__link:not(.has-text-color):active {
    box-shadow: unset;
}
body .entry-content .wp-block-button__link, body .entry-content .wp-block-button__link:visited {
    background-color: #4F8342;
    color: #fff;
}
.entry-content{
    padding: 60px 0;
    position:relative;
}
body.home .entry-content{
    padding: 0;
}
.full-width.wp-block-group.has-background{
    padding: 60px 0 20px;
}
.wp-block-button.widget .wp-block-button__link  {
    background-color: transparent;
    color: inherit;
    border-color: inherit;
    line-height: 1;
    font-size:0.9em;
    margin-top: 20px;
    margin-bottom: 0;
}
.wc-block-components-totals-coupon-link{
    font-size:0.75em;
}
.icon-arrow-right .wp-block-button__link:after, a.icon-arrow-right:after, .icon-arrow-right a:after, .returnLink:before,  .wc-block-components-totals-coupon-link:after, #wpsl-wrap .wpsl-directions:after{
    content:"";
    position:relative;
    display:inline-block;
}
.icon-arrow-right .wp-block-button__link:after, a.icon-arrow-right:after, .icon-arrow-right a:after, .wc-block-components-totals-coupon-link:after, #wpsl-wrap .wpsl-directions:after{
    background: url(../img/icon-arrow-right-light.svg) no-repeat scroll center center / 100% auto transparent;
    width:23px;
    margin-top: -3px;
    height:15px;
    vertical-align: middle;
}
.icon-arrow-right .wp-block-button__link:after, a.icon-arrow-right:after, .icon-arrow-right a:after{
    background: url(../img/icon-arrow-right-light.svg) no-repeat scroll center center / 100% auto transparent;
}
.wc-block-components-totals-coupon-link:after, #wpsl-wrap .wpsl-directions:after{
    background: url(../img/icon-arrow-right-dark.svg) no-repeat scroll center center / 80% auto transparent;
    margin-left: 10px;
}
.icon-arrow-right.dark .wp-block-button__link:after, a.icon-arrow-right.dark:after, .icon-arrow-right.dark a:after, .returnLink:before{
    background: url(../img/icon-arrow-right-light.svg) no-repeat scroll center center / 100% auto transparent;
}
.lirePlus.icon-arrow-right:not(.wp-block-button) a:after, .returnLink:before{
    width:20px;
}
.lirePlus, .wc-block-components-order-summary-item__description, .woocommerce div.product .summary.entry-summary p.price, .woocommerce-variation-description, #section-achat-bas-page .btn, #temoignages-produit .btn{
    font-size:0.8em;
}
.icon-arrow-right:after, a.icon-arrow-right:after, .icon-arrow-right a:after{
    margin-left: 8px;
}
.wp-block-button.icon-arrow-right .wp-block-button__link:after{
    margin-left: 15px;
}
/* content */
ul.check{
    margin: 1.5em 0;
    padding:0;
}
ul.check li {
    background: url(../img/icon-check.svg) no-repeat left 3px;
    padding: 3px 0px 3px 40px;
    list-style: none;
    margin: 0;
    line-height: 26px;
    margin-bottom: 15px;
}
ul.check.light li {
    background: url(../img/icon-check-light.svg) no-repeat left 3px / auto 80%;
}
/* search form */
#searchform input[type="text"] {
    margin-right: 20px;
    width: 500px;
    max-width: 100%;
    font-size: 1em;
}
#searchsubmit{
    margin-bottom:0;
}
/* form */
.wpcf7-form .multiple-columns{
    display:flex;
}
.wpcf7-form .multiple-columns p{
    margin:0;
}
.grecaptcha-badge{
    display:none!important;
}
.wpcf7-form .wpcf7-form-control-wrap[data-name="moment"]{
    font-size: 0.8em;
    line-height: 1;
    display: inline-block;
    vertical-align: top;
}
.wpcf7-form .wpcf7-form-control-wrap[data-name="moment"] .wpcf7-list-item{
    display: inline-flex;
    margin-right:15px;
    flex-wrap: wrap;
    align-content: center;
}
.wpcf7-form .wpcf7-form-control-wrap[data-name="moment"] .wpcf7-list-item input[type="checkbox"]{
    width: auto;
    margin-right: 5px;
}
.wpcf7-form input:not([type="checkbox"]), .wpcf7-form select, .wpcf7-form textarea, input:not([type="checkbox"]), select, textarea {
    padding: 15px;
    font-family:inherit;
    border-radius:4px;
}
.wpcf7-form input:not([type="checkbox"]), .wpcf7-form select, .wpcf7-form textarea, input:not([type="checkbox"]), select, textarea{
    border:2px solid #4F8342;
    width: 100%;
    font-size: 1em;
}
.wpcf7-form input[type="submit"], input[type="submit"] {
    border-color: #4F8342;
}
.wpcf7-form .mc4wp-checkbox input{
    width:auto;
    margin-right:8px;
}
.wpcf7-form input[type="checkbox"], input[type="checkbox"]{
    border-radius:0;
    font-size:1em;
}

.wpcf7-form .mc4wp-checkbox label {
    font-size: 0.8em;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    line-height: 1.2;
    color:#A1C3B8;
}
.wpcf7-form input::placeholder, .wpcf7-form select, .wpcf7-form textarea::placeholder, input::placeholder, select:not(#pa_formats), textarea::placeholder {
    color:#ccc;
}
.wpcf7-form .duo-input, .duo-input{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}
.wpcf7-form .duo-input p, .duo-input p{
    margin:10px;
}
.wpcf7-form .single-input, .single-input {
    margin:10px;
}
.wpcf7-form .single-input p, .single-input p{
    margin:0;
}
.wpcf7-form textarea, textarea {
    resize: vertical;
}
.wpcf7 .screen-reader-response{
    display:none;
}
.wpcf7-form-control-wrap {
    font-size: 0.8em;
}
input:not([type=submit]), textarea, select{
    font-size: 0.8em;
}
/* panier  */
body .wc-block-components-radio-control .wc-block-components-radio-control__input{
    left:0;
}
.wc-block-components-totals-item__description.wc-block-components-totals-shipping__via {
    line-height: 1.4;
}
span.wc-block-formatted-money-amount.wc-block-components-formatted-money-amount {
    font-weight: bold;
}
/* menu */
#site-navigation ul, #site-navigation ul li, .widget_nav_menu ul, .widget_nav_menu ul li{
    list-style: none;
}
#site-navigation ul{
    font-size:0.9em;
    padding: 0;
}
#site-navigation ul li{
    font-weight: 800;
    line-height: 1.1;
    position: relative;
    margin: 2vw 0;
} 
#site-navigation ul li.secondaire.first{
    margin-top:3.5vw;
}
#site-navigation ul li.secondaire a{
    font-size: 1.5vw;
}
body.woocommerce-page #site-navigation{
    margin-bottom: 10vh;
}

#site-navigation{
    position:relative;
    z-index: 2;
}
#nav-group{
    display:inline-flex;
    position:relative;
    justify-content: flex-start;
    /*width: 400px;*/
    -webkit-transition: width ease-out 0.2s;
    -moz-transition: width ease-out 0.2s;
    -ms-transition: width ease-out 0.2s;
    -o-transition: width ease-out 0.2s;
    transition: width ease-out 0.2s;
}
#nav-group:before, #nav-group:after{
    content:'';
    background-color:#fbf3e1;
    position:absolute;
    top:0;
    height:100%;
    width:100%;
    z-index: -1;
}
#nav-group:before{
    left:-100%;
}
#nav-group:after{
    right:60px;
}
#nav-group, #menu-droit {
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
}
#menu-droit {
    margin: 0 0 0 20px;
    display: flex;
    width: 120px;
    height: 120px;
    justify-content: center;
    background-color: #ECD6BD;
    border-radius: 50%;
    z-index:99;
    -webkit-transition: background-color ease-out 0.4s;
    -moz-transition: background-color ease-out 0.4s;
    -ms-transition: background-color ease-out 0.4s;
    -o-transition: background-color ease-out 0.4s;
    transition: background-color ease-out 0.4s;
}
header #lien-panier, header #lien-produit-header{
    margin:0 20px;
}

#lien-panier{
    position: relative;
}
header #lien-produit-header:before, #lien-panier:before{
    content: '';
    display: inline-block;
    margin-right: 8px;
}
header #lien-produit-header:before{
    background: url(../img/icon-acheter.svg) no-repeat scroll center center / 100% auto transparent;
    width: 18px;
    height: 14px; 
}
#lien-panier:before{
    background: url(../img/icon-panier.svg) no-repeat scroll 0 0 / 100% auto transparent;
    width: 23px;
    height: 23px;
    margin-bottom: -3px;
}
#lien-panier .count {
    width: 20px;
    height: 20px;
    background-color: #4F8342;
    color:#fff;
    position: absolute;
    display: block;
    border-radius: 50%;
    font-size: 13px;
    text-align: center;
    line-height: 20px;
    top: -2px;
    left: -16px;
}
/* Bootstrap CSS */
.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    /* extra */
    z-index: 1;
    position: relative;
}
.center {
    justify-content: center;
}
.full {
    justify-content: space-between;
}
.start {
    justify-content: flex-start;
}
.end {
    justify-content: flex-end;
}
.middle{
    align-items: center;
}
.col{
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
@media (min-width: 768px){
    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}
@media (min-width: 992px){
    .col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-lg-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}
@media (min-width: 1200px){
    .col-xl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xl-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-xl-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* home */
#header-text-container .btn {
    font-size: 1.2em;
}
body .section-temoignages-accueil .ti-widget.ti-goog {
    margin-bottom: 3em;
}
body .section-temoignages-accueil .wp-block-column{
    z-index:10;
}
body .ti-widget.ti-goog .ti-controls .ti-next:before, body .ti-widget.ti-goog .ti-controls .ti-prev:before, body .ti-widget.ti-goog .ti-controls .ti-next:after, body .ti-widget.ti-goog .ti-controls .ti-prev:after {
    content: "";
    background: #000;
    height: 2px;
    width: 25px;
    border-radius: 0;
}
body .ti-widget.ti-goog .ti-controls .ti-next:before, body .ti-widget.ti-goog .ti-controls .ti-prev:after {
    top: 2px;
}
body .ti-widget.ti-goog .ti-controls .ti-next{
    right:18px;
}
body .ti-widget.ti-goog .ti-controls .ti-prev{
    left:18px;
}
body .ti-widget.ti-goog .ti-controls {
    top: calc(50%) !important;
}
body .ti-widget.ti-goog .ti-review-item{
    padding:0 45px;
}
body .ti-widget.ti-goog .ti-reviews-container-wrapper{
    padding: 52px 0;
}
body .ti-widget.ti-goog.ti-no-profile-img .ti-reviews-container-wrapper{
    padding-top: 52px;
}
body .ti-widget.ti-goog .ti-review-item>.ti-inner{
    box-shadow: 0 0 40px rgb(107,74,55,0.1);
}
body.page .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: unset!important;
}
body .is-layout-flex .section-temoignages-accueil-texte{
    margin-top:3em;
}
.section-tab-toggle .tab-title-principal{
    font-size: 1.6em;
    line-height: 1.2;
    text-align:left;
    margin-left: 0 !important;
}
.section-tab-toggle{
    margin:12vh auto 0;
    position:relative;
}
.section-tab-toggle .section-tab-toggle-content:before{
    content:'';
    background: url(../img/fond-basilique-ombrage-moins.webp) no-repeat scroll left top / cover transparent;
    left: -26.5vw;
    top: -17vw;
    max-width: 1000px;
    width: 35vw;
    height: 25vw;
    position: absolute;
    transform: rotate(-32deg);
    opacity: 1;
    z-index: -1;
}
.section-tab-toggle:after{
    content:'';
    background: url("https://lesgranulaines.com/wp-content/uploads/2024/01/fond-panier.webp") no-repeat scroll left center / auto 100% transparent;
    position:absolute;
    top:0;
    left:40%;
    height:100%;
    width:100%;
    opacity:0.8;
}
.section-tab-toggle:before{
    content:'';
    background-color:#2e1202;
    position:absolute;
    top:0;
    left:40%;
    height:100%;
    width:100%;
    z-index:-2;
}
.section-tab-toggle-content{
    position:relative;
    min-height: 68vh;
    margin-top: 2.5em;
    margin-bottom: -80px;
}
.section-tab-toggle-text{
    overflow:hidden;
    position: absolute;
    padding: 2vw 3.5vw;
    top: 0;
    left: 30%;
    width:70%;
    background-color:/*#FBF5ED*/ #f8f0e0;
    z-index:1;
    opacity:0;
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    -ms-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
}
.section-tab-toggle-title {
    border-left: 3px solid #000;
    padding: 0 20px;
    line-height: 1.4;
}
body .is-layout-flex .section-tab-toggle-title {
    margin-bottom:40px;
}
.section-tab-toggle-title p {
    margin:0;
}
.section-tab-toggle-title.tab-toggled-on{
    font-weight:700;
    border-color:#ef9f44/*#E0943E*/;
    color:#ef9f44;
}
.section-tab-toggle-text.tab-toggled-on{
    opacity:1;
    z-index:2;
}
body.home .wp-block-columns{
    margin-bottom:0;
}
.zone-video-accueil {
    position:relative;
    margin-left: -9.7vw;
    width: calc( 100% + 9.7vw);
}

.zone-video-accueil .text-content{
    position:relative;
    padding: 5vw 5vw 5vw 10vw;
    color: #fff;
}
.zone-video-accueil:before{
    content:"";
    position:absolute;
    background: url("https://lesgranulaines.com/wp-content/uploads/2024/01/photo-jardinage.webp") no-repeat scroll center center / cover transparent;
    left:0;
    top:0;
    width:65%;
    height:100%;
    opacity: 1;
    z-index:-1;
}
.zone-video-accueil:after{
    content:"";
    position:absolute;
    background-color:#2f6024;
    left:0;
    top:0;
    width:65%;
    height:100%;
    opacity: 0.6;
    z-index:-1;
}
/* Utilisation */
.bloc-granu-container{
    margin: 15vh 0 12vh;
}
.bloc-granu {
    background:url(../img/rockywall-jaune-80-opacity.webp) repeat scroll left top #ef9f44;
    padding: 2em;
    font-size: 0.8em;
    z-index: 1;
    border-radius:5px;
}
.bloc-granu-central {
    margin: -2em!important;
    background-color: #4F8342;
    padding: 2em;
    box-shadow: 0 0 60px rgba(224,148,62,0.7);
    z-index: 2;
    border-radius:5px;
    color:#fff;
    position:relative;
}
.bloc-granu-central:before{
    background: url(../img/granu-laines-500g-transparent-ombrage.webp) no-repeat scroll 0 0 / 100% auto transparent;
    content: '';
    position: absolute;
    top: -49px;
    left: -70px;
    width: 12vw;
    height: 17vw;
    z-index: 0;
}
.rond-poid {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-top:0;
}
.bloc-granu-central .rond-poid {
    width: 150px;
    height: 150px;
    border: 3px solid #fff;
}
.bloc-granu .rond-poid {
    width: 120px;
    height: 120px;
    border: 2px solid #000;
}
/* a propos */
.mid-section-apropos .wp-block-column{
    padding-top:0;
    padding-bottom:0;
}
.wp-block-group.extrait mark{
    cursor:default;
    user-select: none;
}
.lire-plus-content{
    max-height:0;
    overflow:hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
.lire-plus-content.full{
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
}

/* Actualitée */
body .wp-block-columns.row-actualites{
    justify-content: center;
}
.link-bloc-texte p.link-bloc-titre{
    margin-top:10px;
}
.bloc-avis p:nth-child(1){
    line-height:1.2;
}
.bloc-avis{
    position:relative;
    margin: 10vh 0 4vh;
    /*justify-content: center;*/
}
.bloc-avis:before{
    content: '';
    background: url(../img/icon-google-avis.svg) no-repeat scroll 0 0 / 100% auto transparent;
    width: 300px;
    height: 280px;
    left: 0;
    top: 0;
    max-width: 30%;
    margin-right: 3vw;
}

body.page-id-40 .entry-header {
    padding-bottom: 25vh!important;
}
body.page-id-40 .entry-content {
    padding-top: 0;
    margin-top: -18vh;
}
.link-bloc{
    position:relative;
}
.link-bloc a.lien-complet:hover::before{
    width: 38px;
    height: 38px;
    bottom: calc(2em - 5px);
    right: calc(2em - 5px);
}
.link-bloc a.lien-complet:before{
    content: '';
    background: url(../img/icon-link.svg) no-repeat scroll center center / 60% auto #fff;
    position: absolute;
    bottom: 2em;
    right: 2em;
    width: 28px;
    height: 28px;
    padding: 10px;
    border-radius: 50%;
    z-index: 1;
}
.link-bloc figure:before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgb(90,35,3,1);
    background: linear-gradient(0deg, rgba(90,35,3,1) 0%, rgba(90,35,3,0) 100%);
    opacity: 0.8;
}
.link-bloc-texte{
    position:absolute;
    bottom:4em;
    left:2em;
    color:#fff;
    max-width:70%;
    line-height:1.2;
}
.link-bloc-texte p{
    margin: 0;
}
/* Complianz */ 
#cmplz-document {
    margin-left: auto;
    margin-right: auto;
}
/* WOO */
body.woocommerce-cart .editor-styles-wrapper .wc-block-grid__products .wc-block-grid__product .wc-block-components-product-image img, body.woocommerce-cart .wc-block-components-product-image img{
    width:80%;
}
.wc-block-components-notice-banner.is-success {
    display:none!important;
}
#temoignages-produit{
    margin-top: 4em;
}
.woocommerce div.product form.cart .variations select, select {
    background-color: #fff;
}
.woocommerce.single-product #page{
    background: url(../img/rockywall-jaune-80-opacity.webp) repeat scroll left top transparent;
}
body.single-product .photo-page{
    position: absolute;
    right: 60%;
    height: 150vh;
    z-index: 0;
}
.woocommerce div.product div.summary{
    margin-bottom: 5em;
}
.woocommerce-tabs {
    margin-top: 3em;
    background-color: #fff;
    padding-bottom:100px;
    /*display: inline-block;
    position: relative;
    width: 100%;*/
}
.woocommerce-tabs .tab-content{
    padding: 30px 0 40px;
    display:none;
    position:relative;
    margin-left: auto;
    margin-right: auto;
}
.woocommerce-tabs .tab:nth-child(1){
    margin-top: 0;
}
.woocommerce-tabs .tab{
    margin-top: -2px;
}
.woocommerce-tabs .tab:before {
    content: '';
    border-top:2px solid #4F8342;
    display: block;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.woocommerce-tabs .tab-title {
    color: #4F8342;
    margin: 0;
    padding:20px 0;
    text-align: center;
    font-size: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    position:relative;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.woocommerce-tabs .tab.open .tab-title {
    color: #fff;
    background-color:#4F8342;
}
.woocommerce-tabs .tab.open .tab-title:before, .woocommerce-tabs .tab.open .tab-title:after {
    content:'';
    background-color:inherit;
    position:absolute;
    top:0;
    width:100%;
    height:100%;
}
.woocommerce-tabs .tab.open .tab-title:before {
    left:-100%;
}
.woocommerce-tabs .tab.open .tab-title:after {
    right:-100%;
}
.woocommerce-tabs .tab .tab-title span:after {
    background:url(../img/icon-arrow-toggle-dark.svg) no-repeat scroll center center / 100% auto transparent;
    content: '';
    width: 18px;
    height: 10px;
    display: inline-block;
    margin-left: 8px;
    margin-bottom:2px;
}
.woocommerce-tabs .tab.open .tab-title span:after {
    background:url(../img/icon-arrow-toggle-light.svg) no-repeat scroll 0 0 / 100% auto transparent;
    -webkit-transform: scaleY(-1);
    -moz-transform: scaleY(-1);
    -o-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    transform: scaleY(-1);
}
.woocommerce-tabs .tab:after {
    content: '';
    border-bottom:2px solid #4F8342;
    display: block;
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.woocommerce-tabs .tab.detaillant .tab-content{
    color:#fff;
}
.woocommerce-tabs .tab.detaillant .tab-content:before{
    content:'';
    position:absolute;
    background: url("https://lesgranulaines.com/wp-content/uploads/2024/01/photo-fond-points-de-vente.webp") no-repeat scroll center center / cover transparent;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    top: 0;
    height: 100%;
}
.woocommerce-tabs .tab-content:after{
    content:'';
    position:absolute;
    background-color:#fbf3e1;
    opacity:1;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    top: 0;
    height: 100%;
}
.woocommerce-tabs .tab.detaillant .tab-content:after{
    background-color:#4F8342;
    opacity:0.8;
}
.add-product-var {
    font-size: 1.2em;
    position: absolute;
    top: -5em;
    right: 0;
    cursor:pointer;
}
.add-product-var:before {
    background:url(../img/arrow-var.svg) no-repeat scroll 0 0 / 90% auto transparent;
    content: '';
    position: absolute;
    width: 203px;
    height: 150px;
    display: block;
    top: -60px;
    left: -60%;
}
.cross-sells-product{
    padding: 0;
    width: unset;
    max-width: 300px; 
}
.cross-sells-product .wc-block-components-product-title{
    margin-bottom:0;
}
.wc-block-components-product-sale-badge.wc-block-components-product-sale-badge--align-left.wp-block-cart-cross-sells-product__product-onsale, .woocommerce span.onsale, .wc-block-grid__product .wc-block-grid__product-onsale{
    display: none!important;
}
.wp-block-woocommerce-cart-cross-sells-block{
    position:relative;
    margin-top: 5em;
}
.wp-block-woocommerce-cart-cross-sells-block div{
    display: flex;
    justify-content: space-around;
}
.wp-block-woocommerce-cart-cross-sells-block h2{
    margin-bottom:2em;
}
.wp-block-woocommerce-cart-cross-sells-block .cross-sells-product div{
    display:block;
}
.wp-block-woocommerce-cart-cross-sells-block .cross-sells-product{
    width: unset!important;
    max-width: 300px;
    padding: 0;
}
.wp-block-woocommerce-cart .wp-block-woocommerce-cart-cross-sells-block .cross-sells-product:only-child{
    padding-right: 0;
}
body.single-product.woocommerce div.product{
    margin-top:2em;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a{
    font-weight:inherit;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:last-child{
    font-weight:inherit;
}
.pswp__bg{
    opacity:0.7!important;
}
button.pswp__button{
    border:none;
}
.woocommerce #content div.product .woocommerce-tabs ul.tabs li, .woocommerce div.product .woocommerce-tabs ul.tabs li, .woocommerce-page #content div.product .woocommerce-tabs ul.tabs li, .woocommerce-page div.product .woocommerce-tabs ul.tabs li {
    display: block;
    text-align: center;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before, .woocommerce div.product .woocommerce-tabs ul.tabs li.active::after, .woocommerce div.product .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::after{
    display:none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li{
    background: transparent!important;
    border-radius:0;
    margin: 0;
    padding: 0;
    border:none;
    border-bottom-color:transparent;
}
.woocommerce div.product .woocommerce-tabs ul.tabs{
    overflow:unset;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    width: 300%;
    left: -100%;
    border-bottom: 2px solid #4F8342;
    top:0;
    bottom:auto;
}
.woocommerce-product-details__short-description{
    line-height:1.3;
}

body.woocommerce-page.single-product .site-header, body.woocommerce-page.woocommerce-shop .site-header{
    min-height: unset!important;
    background-color:transparent;
}
body.woocommerce-page.woocommerce-shop .site-content #content {
    padding: 0 0 100px;
}
body.woocommerce-page.single-product .site-content #content{
    padding:0;
}
body.woocommerce-cart .wc-block-components-product-metadata__description, body.woocommerce-checkout .wc-block-components-product-metadata__description{
    display:none;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item:not(:first-child) {
    padding-top: 36px!important;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
    width: 30px;
    height: 30px;
    border: none!important;
    box-shadow: 0 0 10px rgba(0,0,0,0.1)!important;
}
.wc-block-components-order-summary .wc-block-components-panel__content{
    padding:1em 0 0;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item{
    align-items: center;
}
.wc-block-components-order-summary .wc-block-components-order-summary-item__image, .wc-block-components-order-summary .wc-block-components-order-summary-item__image>img{
    max-width: 100px!important;
    width: 100px!important;
}
body.woocommerce-cart .wc-block-cart .wc-block-cart-items tr.wc-block-cart-items__row:not(:only-child) td, body.woocommerce-cart .wc-block-cart .wc-block-cart-items tr.wc-block-cart-items__row:not(:only-child) td{
    padding:1.2em;
}
body.woocommerce-cart .wc-block-cart .wc-block-cart-items td{
    vertical-align: middle;
    margin-bottom:0;
    width:50%;
    padding:2em;
}
body.woocommerce-cart .wc-block-cart .wc-block-cart-items tr.wc-block-cart-items__row:only-child td{
    padding:2em!important;
}
body.woocommerce-cart .wc-block-cart .wc-block-cart-items tr.wc-block-cart-items__row:not(:only-child) td.wc-block-cart-item__product{
    padding-top:2em!important;
    padding-bottom:2em!important;
}
body.woocommerce-cart .wc-block-cart .wc-block-cart-items td, .wc-block-components-totals-wrapper, .wp-block-woocommerce-checkout-order-summary-cart-items-block.wc-block-components-totals-wrapper{
    border-top:none;
}
.wc-block-components-order-summary.wc-block-components-panel .wc-block-components-panel__button{
    background-color:transparent;
    border:none;
    color:inherit;
    line-height:1.2;
}
.wp-block-woocommerce-checkout-order-summary-block{
    background-color: #FFFAF3;
    padding: 1em;
}
.is-medium table.wc-block-cart-items .wc-block-cart-items__row, .is-mobile table.wc-block-cart-items .wc-block-cart-items__row, .is-small table.wc-block-cart-items .wc-block-cart-items__row{
    padding:0!important;
}
body.woocommerce-cart .wc-block-cart-items__header, body.woocommerce-cart .wc-block-cart .wc-block-cart__totals-title{
    display:none;
}
body.woocommerce-cart .wc-block-cart .wc-block-cart-items tr.wc-block-cart-items__row:only-child td.wc-block-cart-item__total, body.woocommerce-cart .wc-block-cart .wc-block-cart-items tr.wc-block-cart-items__row td.wc-block-cart-item__total{
    position: absolute;
    top: 25px;
    right: 30px;
    padding: 0!important;
    font-size: 0.7em;
    opacity: 0.5;
}
body.woocommerce-cart .wc-block-cart .wc-block-cart-items tr.wc-block-cart-items__row td.wc-block-cart-item__total .wc-block-cart-item__total-price-and-sale-badge-wrapper{
    align-items: flex-end;
}
body.woocommerce-cart .wc-block-cart-items tbody{
    font-size: 1.2em;
    display: flex;
    flex-wrap: wrap;
}
tr.wc-block-cart-items__row:not(:only-child) .wc-block-components-product-details__name {
    display: none;
}
.price.wc-block-components-product-price .wc-block-components-product-price__value.is-discounted{
    margin-left:0;
}
tr.wc-block-cart-items__row:only-child{
    width: 100%;
    display: flex!important;
    align-items: center;
    background-color: #f8f8f8;
}
.wc-block-cart-item__remove-link{
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 11px!important;
}
.wc-block-cart-item__remove-link:after{
    content: 'x';
    font-size: 2em;
    position: absolute;
    margin-left: 8px;
    line-height: 1;
    display: inline-block;
    margin-top: -3px;
}
tr.wc-block-cart-items__row:not(:only-child) .wc-block-cart-item__remove-link:after{
    margin-top: -5px;
}
tr.wc-block-cart-items__row{
    position:relative;
    margin-bottom: 1em;
}
tr.wc-block-cart-items__row:not(:only-child){
    display: flex;
    width: 100%;
    align-items: center;
    background-color: #f8f8f8;
}
tr.wc-block-cart-items__row:not(:only-child) td.wc-block-cart-item__image{
    width: 20%!important;
    min-width: 150px;
}
tr.wc-block-cart-items__row:not(:only-child) td.wc-block-cart-item__product{
    width: 80%!important;
}
table.wc-block-cart-items .wc-block-cart-items__row:not(:only-child) .wc-block-components-product-metadata, .wc-block-cart-items__row:not(:only-child) .wc-block-components-product-details.wc-block-components-product-details{
    margin-top:0;
    /*margin-bottom:0;*/
}
tr.wc-block-cart-items__row:not(:only-child) td.wc-block-cart-item__product .wc-block-cart-item__wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1.2;
    font-size:0.75em;
}
tr.wc-block-cart-items__row:not(:only-child) .wc-block-components-product-metadata{
    font-size:1em;
}
tr.wc-block-cart-items__row:not(:only-child) .wc-block-components-product-name, tr.wc-block-cart-items__row:not(:only-child) .wc-block-cart-item__prices, tr.wc-block-cart-items__row:not(:only-child) .wc-block-components-product-badge.wc-block-components-sale-badge, tr.wc-block-cart-items__row:not(:only-child) .wc-block-components-product-metadata{
    margin-right:10px;
}
.wc-block-components-product-badge.wc-block-components-sale-badge{
     display:none;
}
tr.wc-block-cart-items__row:not(:only-child) .wc-block-components-product-name{
    min-width:150px;
    font-size:1.2em;
}
tr.wc-block-cart-items__row:only-child .wc-block-components-product-name{
    margin-bottom: 10px;
}
tr.wc-block-cart-items__row .wc-block-components-product-name{
    line-height:1.1;
}
body.woocommerce-cart .wc-block-cart .wc-block-cart-items{
    border-bottom:none;
    width: 100%;
    display: block;
}

body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product{
    background-color: #f8f8f8!important;
}
body.woocommerce-cart .wc-block-cart .wc-block-cart__submit-container--sticky{
    background-color:#fff!important;
}
body.woocommerce-cart .wc-block-cart-item__total-price-and-sale-badge-wrapper {
    align-items: flex-start;
}
.woocommerce span.onsale {
    line-height: 3.726;
    z-index:2;
}
table.variations tbody{
    display:grid;
}
table.variations .label{
    width: 100%;
    display: block;
    text-align: left;
}
.woocommerce div.product form.cart .reset_variations{
    display:none!important;
}
.woocommerce.single-product div.product div.images img {
    padding: 15%;
    /*background-color: #E0943E;*/
}
.woocommerce-product-gallery__image {
    background: rgb(241,177,103);
    background: linear-gradient(-45deg, rgba(241,177,103,1) 0%, rgba(224,148,62,1) 100%);
}
body.woocommerce-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image{
    background: rgb(241,177,103)!important;
    background: linear-gradient(-45deg, rgba(241,177,103,1) 0%, rgba(224,148,62,1) 100%)!important;
    height: 100%;
    align-items: center;
    display: flex;
}
.woocommerce div.product div.images .flex-control-thumbs {
    margin-right: -30px;
    margin-top: -30px!important;
    z-index: 2;
}
.woocommerce.single-product span.onsale {
    left: 40%;
}
.woocommerce div.product div.images .flex-control-thumbs{
    display: grid;
    align-content: start;
    margin-top:0;
    width: 25%;
}
.woocommerce.single-product .woocommerce-variation-add-to-cart{
    display:flex;
}
.woocommerce-variation.single_variation {
    margin: 0 0 1em;
}
.flex-viewport{
    width: 75%;
    height:100%!important;
}
.woocommerce div.product div.images .flex-control-thumbs li{
    width:100%;
    margin:10px 0;
    background-color: #fff;
    border-radius: 50%;
}
.woocommerce div.product div.images .flex-control-thumbs li img{
    border-radius: 50%;
    background-color:#ECD6BD;
}
.woocommerce-product-gallery {
    display: flex;
    flex-direction: row-reverse;
}
/* footer */
#section-achat-bas-page{
    position:relative;
    background: url(../img/rockywall-jaune-80-opacity.webp) repeat scroll left top transparent;
    margin-top: 80px;
    padding: 20px 0;
}
.btn.default, body .entry-content .wp-block-button.default .wp-block-button__link{
    background-color: transparent;
    border-color: #4F8342;
    color: #4F8342;
}
body .entry-content .wp-block-cart-cross-sells-product__product-add-to-cart .wp-block-button__link{
    background-color: transparent;
    border: 2px solid #4F8342;
    color: #4F8342;
    font-size: 0.8em;
}
body .entry-content .wp-block-cart-cross-sells-product__product-add-to-cart .wp-block-button__link:hover{
    background-color: #4F8342;
    border: 2px solid #4F8342;
    color: #fff;
}
#section-achat-bas-page img{
    margin-bottom: -150px;
    margin-top: -75px;
    margin-right: 3vw;
    max-width: 100%;
    height: auto;
}
#section-achat-bas-page-titre{
    font-size: 1.2em;
    margin-bottom: 0.8em;
    display: block;
}
#section-achat-bas-page:before, #section-achat-bas-page:after{
    content:'';
    position:absolute;
    top:0;
    width:100%;
    height:100%;
    background: url(../img/rockywall-jaune-80-opacity.webp) repeat scroll left top transparent;
    z-index:-1;
}
#section-achat-bas-page:before{
    left:-100%;
}
#section-achat-bas-page:after{
    right:-100%;
}
#colophon li.secondaire.first, .menu-item.wpml-ls-item{
    margin-top:1.5em;
}
#colophon li.secondaire a{
    font-size: 0.9em;
}
#colophon .footer-widget a {
    font-size:1.4em;
    color: #eee;
    text-decoration:none;
}
#colophon .footer-widget a:hover {
    opacity:0.7;
}
#colophon .footer-widget h3{
    color: #9B836D;
}
#colophon .footer-widget{
    margin: 0 20px 60px;
}
#colophon #widget-1, #colophon #widget-1 a {
    font-size:0.9em;
    font-weight: 500;
}
#colophon #widget-1 p{
    margin:0.5em 0;
}
#colophon .logo-pied-de-page{
    margin-bottom:40px;
}
#colophon{
    background: rgb(107,74,55);
    background: linear-gradient(180deg, rgba(116,45,3,1) 0%, rgba(41,23,13,1) 100%);
    position:relative;
    color:#fff;
    font-weight:300;
}
body.home #colophon{
    margin-top: 0;
}
#colophon:before{
    content:"";
    position:absolute;
    background: url("https://lesgranulaines.com/wp-content/uploads/2024/01/photo-fond-footer.webp") no-repeat scroll center center / cover transparent;
    left:0;
    top:0;
    width:100%;
    height:100%;
    opacity: 0.15;
}
#footer-widgets {
    padding: 6vh 0 0;
    position:relative;
}
#footer-widgets:before {
    content:'';
    background: url(../img/fond-basilique-ombrage-plus.webp) no-repeat scroll left top / cover transparent;
    right: 0;
    top: -15vh;
    max-width: 1000px;
    width: 35vw;
    height: 25vw;
    position: absolute;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.wp-block-image.logo-footer {
    margin-bottom: 60px;
}
.site-info{
    padding: 15px 0;
    font-size: 0.8em;
    line-height: 1.2;
}
.site-info, .site-info a, .site-info a:hover, .site-info a:focus, .site-info a:visited{
    color:#fff;
}
.site-info .wrapper{
    opacity:0.4;
}
/* header */
.woocommerce-store-notice a, p.demo_store a {color: #fff!important;}
p.woocommerce-store-notice.demo_store{display:none!important;}
.demo_store_header {
    box-shadow: none;
    width: 100%;
    max-width: 90vw;
    padding: 1em 5%;
    margin: 0 auto;
    background-color: #4F8342;
}
.demo_store_header:before, .demo_store_header:after{
    content:'';
    background-color:inherit;
    position:absolute;
    top:0;
    width:100%;
    height:100%;
}
.demo_store_header:before{
    left:-100%;
}
.demo_store_header:after{
    right:-100%;
}
#header-text-container{z-index:1;}
#fleche-go-to-next-container-inside{
    padding: 15px 15px 5px;
}

#fleche-go-to-next-container {
    display: flex;
    position: absolute;
    bottom: 62px;
    left: 0;
    right: 0;
    -webkit-animation: move 2s infinite;
    -moz-animation: move 2s infinite;
    -o-animation: move 2s infinite;
    -ms-animation: move 2s infinite;
    animation: move 2s infinite;
    transform: translateY(0);
    flex-wrap: wrap;
    justify-content: center;
    cursor:pointer;
    z-index: 1;
}
@keyframes move {
  0%, 100% {transform: translateY(0)}
  50% {transform: translateY(20px)}
}
.line-diago {
    width: 3px;
    height: 20px;
    display: inline-flex;
    background-color: #fff;
    margin-top: -10px;
}
.line-diago.droite {
    transform: rotate(45deg);
    margin-left: 10px;
}
.line-diago.gauche {
    transform: rotate(-45deg);
}
.fleche-go-to-next{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#site-navigation ul li a{font-weight:700;color:#fff;}
.entry-description{
    display: block;
    margin-bottom: 50px;
    font-size: 1.2em;
    line-height: 1.2;
    color: #fff;
    font-weight:300;
}
body:not(.home) .entry-description{
    color: #000;
    margin-top: 0.5em;
    margin-bottom: 0;
}
#site-navigation ul li a{
    font-size: 2vw;
}
#site-navigation ul li.wpml-ls-item a{
    position: relative;
    font-size: 1em;
    padding-bottom:6px;
}
#site-navigation ul li.wpml-ls-item a:not(.wpml-ls-link):hover::after{
    content: '';
    display: block;
    position: absolute;
    border-bottom: 2px solid #000;
    width: calc(100% - 20px);
}
body.single-product header #site-navigation ul li.wpml-ls-item a{
    color:#000;
}
#header-container{
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    position:relative;
    overflow-x: unset;
    margin-top:10vh;
}
body:not(.home) #header-container{
    /*text-align: center;*/
    align-content: end;
    margin-top:5vh;
}
.entry-title{
    font-size: 2.4vw;
    line-height: 1.1;
    color: #41271D;
    margin-top:0;
}
body.home .entry-title{
    color: #fff;
}
body:not(.single-product):not(.home) .entry-title{
    position: absolute;
    bottom: 25px;
    z-index: 1;
    color: #fff;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    margin-bottom: 0;
}
.midsize {
    width: 1024px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.midsize-2 {
    width: 1280px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

body.error404 .entry-title{
    margin-bottom: 0;
}
body.error404 article {
    padding: 60px 0;
}
.site-header {
    width: 100%;
    margin:auto;
    position: relative;
    background-color:#eee;
    z-index:0;
}
.site-header.toggled-on, body.single-product .site-header{
    z-index: 9;
}
body:not(.home) .site-header {
    min-height:40vh;
}

#header-container .wp-post-image {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    left: 0;
    object-fit: cover;
}
#header-text {
    width: 100%;
}
body:not(.home) .entry-header{
    background-color:#ECD6BD;
    padding:2em 0 2.5em;
    position:relative;
    text-align: center;
}
body.page-id-38 .entry-header, body.page-id-17448 .entry-header{
    padding: 2em 0 4.5em;
}
body:not(.home) .entry-header:before, body:not(.home) .entry-header:after{
    content:'';
    background-color:inherit;
    position:absolute;
    top:0;
    width:100%;
    height:100%;
}
body:not(.home) .entry-header:before{
    left:-100%;
}
body:not(.home) .entry-header:after{
    right:-100%;
}
.entry-header img{display:none;}

header #header-logo, header .menu-toggle{
    z-index:10;
}
#site-navigation.toggled-on #navbarSupportedContent #header-logo{
    margin-bottom:20px;
}
#nav-group #header-logo{
    width:120px;
    height:120px;
    margin-right: 20px;
    position: relative;
}
#nav-group #header-logo img{
    width:100%;
    height:auto;
    padding:10px;
}
footer #header-logo{
    margin-top:1.8em;
    margin-bottom:30px;
    width: 165px;
    height: 165px;
    background-color: #fff;
    border-radius: 50%;
    padding: 16px 16px 14px 14px;
    align-content: flex-start;
}
footer #header-logo img{
    padding:0;
    max-width:100%;
}
.menu-toggle {
    padding: 10px;
    border: 0;
    background-color: transparent;
    background:none;
    color: transparent;
}
#navbarSupportedContent {
    position: absolute;
    top: -60px;
    z-index: 9;
    background-color: #fff;
    width: 100%;
    min-height: 100vh;
    box-shadow: none;
    left: 100vw;
    letter-spacing: normal;
    opacity:0;
    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

#site-navigation.toggled-on #navbarSupportedContent{
    left:0;
    opacity:1;
    /*display:block;*/
}


#site-navigation .menu-mid{
    position:relative;
}
#site-navigation .menu-mid.right{
    flex: 1 1 40%;
    padding-left: 5%;
    display: grid;
    align-content: center;
    justify-content: center;
}
#menu-right-inside{
    position: relative;
    text-align:center;
    z-index: 1;
    width:300px;
    max-width:100%;
}
#menu-container-groupe{
    display: flex;
    height: 100vh;
}
.titre{
    line-height:1.2;
    margin-top:0;
}
.sous-titre-menu{
    font-weight: 700;
    color: #555;
    font-size: 1.2em;
    margin: 1em 0;
    display: block;
    line-height: 1.3;
}
#horaire-container{
    display:flex;
    justify-content: space-between;
}
#site-navigation .menu-mid.left {
    flex: 1 1 60%;
    padding-right:5%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}
#site-navigation.toggled-on .menu-mid.right{
    background-color: #fbf3e1/*#FFFAF3*/;
}
.menu-mid.left:before, .menu-mid.right:after{
    position:fixed;
    content:"";
    top:0;
    bottom:0;
    width:100%;
    background-color: inherit;
}
.menu-mid.left:before, .menu-mid.right:after{
    left:100vw;
}
#site-navigation.toggled-on .menu-mid.left:before{
    left:0;
    background: url(../img/rockywall-dark.webp) repeat scroll left top rgba(116,45,3,0.8);
}
#site-navigation.toggled-on .menu-mid.right:after{
    right: 0;
    width: 42%;
    z-index: 0;
    left:auto;
}

.menu-toggle:focus-visible{
    outline: none;
}
.menu{
    padding-left: 0;
}
.navbar-toggler-icon {
    cursor: pointer;
}
.navbar-toggler-icon {
    display: flex;
    width: 100%;
    content: "";
    justify-content: flex-start;
    padding: 0 35px;
    height: 100%;
    align-items: center;
}
.header__menu-button-icon {
    display: inline-block;
    position: relative;
    width: 1.7rem;
    height: 3px;
    transition: all .2s ease-in;
    vertical-align: middle;
}
.header__menu-button-icon:before {
    width: 3rem;
    top: -0.8rem;
}
.header__menu-button-icon:after {
    width: 2.2rem;
    bottom: -0.8rem;
}
.header__menu-button-icon, .header__menu-button-icon:after, .header__menu-button-icon:before{
    background-color: #41271D;;
}
#main-navigation:not(.toggled-on) .header__menu-button-icon, #main-navigation:not(.toggled-on) .header__menu-button-icon:after, #main-navigation:not(.toggled-on) .header__menu-button-icon:before{
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}
.header__menu-button-icon:after, .header__menu-button-icon:before {
    display: block;
    position: absolute;
    content: "";
    height: 3px;
    transform-origin: top left;
    transition: all .2s ease-in;
}
header #groupe_text_coordonnees{
    text-align:center;
    line-height: 1.2;
}
#site-navigation.toggled-on .header__menu-button-icon {
    width: 0;
}
#site-navigation.toggled-on .header__menu-button-icon:after, #site-navigation.toggled-on .header__menu-button-icon:before {
    width: 2.7rem;
}
#site-navigation.toggled-on .header__menu-button-icon:before {
    transform: rotate(45deg);
}
#site-navigation.toggled-on .header__menu-button-icon:before {
    top: -0.95rem;
    left: 0.8rem;
}
#site-navigation.toggled-on .header__menu-button-icon:after {
    transform: rotate(-45deg);
}
#site-navigation.toggled-on .header__menu-button-icon:after {
    bottom: -0.9rem;
    left: 0.7rem;
}
.wp-block-columns:last-child{
    margin-bottom: 0;
}

/* Media Queries*/
@media (min-width: 768px){
    .bloc-avis.wp-block-columns:last-child{
        margin: 12vh 0 4vh;
    }
    .section-tab-toggle .tab-title-principal{
        max-width: 35%;
    }
    .section-tab-toggle-text {
        box-shadow: 50px 30px 50px rgba(0,0,0,0.2);
    }
    .zone-video-accueil .text-content{
        height: 120%;
    }
    .zone-video-accueil .wp-block-image{
        padding-top: 100px;
        padding-bottom: 20px;
    }
    .bloc-avis p:nth-child(1){
        margin-top:0;
    }
    .link-bloc-texte {
        bottom: 4vw;
        left: 3vw;
    }
    .link-bloc-titre{
        font-size: 1.6vw!important;
    }
    .woocommerce.single-product div.product div.summary{
        background-color: rgba(256,256,256,0.6);
        box-shadow: 0 0 100px 100px rgba(256,256,256,0.6);
    }
    #site-navigation.toggled-on #nav-group{
        justify-content: flex-end;
        width:100%;
    }
    #site-navigation.toggled-on #lien-panier{
        display:none;
    }
    #site-navigation.toggled-on #nav-group #header-logo{
        opacity:0;
    }
    .gap4{gap:4em;}
    .gap8{gap:8em;}
    .wpcf7-form p#SelectMoment, .duo-input.multiple{
        position:relative;
    }
    .wpcf7-form .single-input.your-message, .single-input.your-message{
        z-index: 0;
        position: relative;
    }
    .wpcf7-form .duo-input p, .duo-input p{
        width: calc(50% - 20px);
    }
}

@media (max-width: 871px){
    header #social-group{
        display:none;
    }
}
@media (min-width: 992px){

    .add-product-var:before {
        background-size:80% auto;
    }
    body:not(.home) .site-header {
        min-height:35vh;
    }
    .demo_store_header {
    	position:relative;
    }
    .nav-menu>li:not(.bouton-call-to-action):hover>a:after {
        -webkit-transform: scaleX(1);
        -moz-transform: scaleX(1);
        -ms-transform: scaleX(1);
        -o-transform: scaleX(1);
        transform: scaleX(1);
        opacity: 1;
    }
    .nav-menu>li:not(.bouton-call-to-action)>a:after {
        content: "";
        background-color: #FFFAF3;
        display: block;
        position: absolute;
        right: 0;
        left: 0;
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        -ms-transform: scaleX(0);
        -o-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transition: opacity .3s ease 0s,transform .3s ease 0s;
        -moz-transition: opacity .3s ease 0s,transform .3s ease 0s;
        -ms-transition: opacity .3s ease 0s,transform .3s ease 0s;
        -o-transition: opacity .3s ease 0s,transform .3s ease 0s;
        transition: opacity .3s ease 0s,transform .3s ease 0s;
        opacity: 0;
        bottom: 5px;
        height: 3px;
        margin: 0 auto;
        width: 100%;
    }
    .wpcf7-form .duo-input p, .duo-input p {
        flex: 1;
    }
    #footer-widgets .wrapper{display:flex;}
    .footer-widget {
        width: 25%;
    }
    .entry-description{
        font-size:1.2vw;
    }
    .entry-description.bloginfo{
        font-size:2vw;
    }
    .header__menu-button:hover .header__menu-button-icon, .header__menu-button:hover>:before, .header__menu-button:hover>:after{
        width: 3rem;
    }
    #site-navigation ul li a{
        padding-bottom: 15px;
        position:relative;
    }
    body.home .site-header{
        height: 100vh;
    }

    body.home .entry-title{
        font-size: 3.5vw;
    }
}
@media (max-width: 1355px) and (min-width: 768px){
    #site-navigation .menu-mid.left, #site-navigation .menu-mid.right{
        flex: 1 1 50%;
    }
}
@media (min-width: 876px) and (max-width: 1365px){
    .wc-block-components-order-summary .wc-block-components-order-summary-item {
        display: grid!important;
    }
    .wc-block-components-order-summary .wc-block-components-order-summary-item__description {
        padding-left: 0!important;
        padding-right: 0!important;
    }
    .wc-block-components-order-summary .wc-block-components-order-summary-item__total-price {
        margin-left: 0!important;
        margin-bottom: 10px!important;
        text-align: left!important;
    }
}

@media (max-width: 1480px){
    #site-navigation{
        padding:0;
    }
}

@media (max-width: 1365px){
    header #header-right-group{
        right:0;
    }
    .section-tab-toggle .section-tab-toggle-content:before{display:none;}
    #site-navigation.toggled-on .menu-mid.right:after {
        width: 100%;
        left: 50%;
    }
    #point-de-vente-header{
        font-size: 0.6em;
    }
    .social-icon {
        height: 20px;
        margin-right: 20px;
    }
    #facebook.social-icon {
        width: 9px;
    }
    #instagram.social-icon {
        width: 20px;
    }
    #youtube.social-icon {
        width: 28px;
    }
}
@media (min-width: 1366px){
    .section-tab-toggle {
        width: 80%;
    }
}

@media (min-width: 876px) and (max-width: 1234px){
    tr.wc-block-cart-items__row:not(:only-child) td.wc-block-cart-item__product div {
        margin-top: 10px;
    }
}
@media (max-width: 1234px){
    .section-temoignages-accueil .wp-block-column{
        flex-basis: 50%!important;
    }
    #point-de-vente-header{
        display:none;
    }
    tr.wc-block-cart-items__row:not(:only-child){
        display: flex!important;
        padding:0!important;
    }
    tr.wc-block-cart-items__row:not(:only-child) td.wc-block-cart-item__product .wc-block-cart-item__wrap {
        display: grid;
    }
    tr.wc-block-cart-items__row:not(:only-child) td.wc-block-cart-item__product, table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total{
        padding: 0 16px!important;
    }
    tr.wc-block-cart-items__row:not(:only-child) td.wc-block-cart-item__product div{
        margin-bottom:10px;
    }
    tr.wc-block-cart-items__row:not(:only-child) td.wc-block-cart-item__product, tr.wc-block-cart-items__row:not(:only-child) td.wc-block-cart-item__image{
        margin-bottom: 0;
    }
}
@media (min-width: 782px) and (max-width: 991px){
    body.home .wp-block-columns.zone-video-accueil .wp-block-column{
        flex-basis: 50%!important;
    }
    .zone-video-accueil:before, .zone-video-accueil:after{
        width: 55%;
    }
}
@media (max-width: 991px){
    .section-temoignages-accueil{
        padding-left: 0;
        padding-right: 0;
    }
    .circle-container{
        display:none;
    }
    header .columns-2 #header-img img{
        margin-bottom: 2em;
    }
    .wp-block-woocommerce-cart-cross-sells-block {
        margin-top: 8em;
    }
    .add-product-var {
        top: -6.5em;
        right: 0;
    }
    .demo_store_header{
        position:fixed;
    }
    body {
        font-size: 16px;
    }
    button, input[type=submit], .btn, .button, body .wp-block-button .wp-block-button__link, .wp-block-search__inside-wrapper .wp-block-search__button, #wpsl-wrap #wpsl-search-btn{
        padding: 0.8em 1.5em;
    }
    .icon-arrow-right:not(.wp-block-button):after, .wp-block-button.icon-arrow-right .wp-block-button__link:after{
        width: 23px;
    }
    .entry-title {
        font-size: 5vw;
    }
    .footer-widget:last-child ul, .footer-widget:last-child div{
        margin-bottom:0;
    }
    #menu-menu-pied-de-page{
        padding-left:0;
    }
    #site-navigation {
        justify-content: space-between;
    }
    #colophon .footer-widget {
        margin: 0 0 60px;
    }
    #fleche-go-to-next-container{
        display:none;
    }
}
@media (max-width: 781px){

    .zone-video-accueil {
        width: calc(100% + 10vw);
        margin-left: -5vw;
    }
    .zone-video-accueil:before, .zone-video-accueil:after {
        width: 100%;
        height: 75%;
    }
    .zone-video-accueil .wp-block-image img{
        width:75%;
    }
    .zone-video-accueil .text-content{
        padding: 30px;
    }
    body.home .section-tab-toggle .wp-block-columns{
        margin-bottom:unset;
        gap:0;
    }
    .wp-block-columns.gauche-droite:nth-child(odd) {
        flex-direction: column-reverse;
    }
    .wp-block-columns.gauche-droite {
        gap: 0;
    }
    .entry-title {
        font-size: 8vw;
    }
}
@media (min-width: 768px) and (max-width: 781px){
    .zone-video-accueil {
        width: calc(100% + 19.4vw);
        margin-left: -9.7vw;
    }
}
@media (max-width: 767px){
    #wpsl-search-wrap div label, #wpsl-wrap .wpsl-input label, #wpsl-wrap #wpsl-radius label, #wpsl-wrap #wpsl-category label{
        font-size: 0.8em;
        line-height: 1.1;
        margin: 10px 0 5px;
    }
    .mid-section-apropos{
        margin-top:-30px;
        margin-bottom:3em;
    }
    .box-padding.has-background  {
        padding: 10px 5vw 15px;
    }
    .box-padding  {
        padding: 10px 0 15px;
    }
    .full-width-left .box-padding{
        margin-right: -10vw;
    }
    .full-width-left .wp-block-image{
        width:75%;
    }
    header #social-group, #point-de-vente-header, header #lien-produit-header, #site-navigation.toggled-on .menu-mid.right:after, #site-navigation ul li.wpml-ls-item a, .wp-block-spacer{
        display:none;
    }
    .section-tab-toggle{
        color:#fff;
        padding-top:1em;
        margin:2em auto 0;
    }
    .section-tab-toggle-title{
        border-color:#fff;
    }
    .section-tab-toggle-text{
        color:#2E241B;
        padding: 2vw 2em;
    }
    .section-tab-toggle:after, .section-tab-toggle:before {
        left: -5vw;
        height: 100%;
        width: 100vw;
    }
    .section-tab-toggle:after {
        opacity: 0.3;
        z-index:-1;
    }
    #footer-widgets:before {
        max-width: 100%;
        width: 60vw;
        height: 45vw;
        top: -20px;
    }
    .bloc-avis:before{
        background-position: bottom left;
        max-width: 100%;
        height: 171px;
        width: 183px;
    }
    body.page-id-40 .entry-content {
        margin-top: -10.5em;
    }
    .bloc-granu-central {
        box-shadow: none;
        margin: 2em 0!important;
    }
    .wp-block-group{
        margin-bottom: 0;
    }
    body .wp-block-columns.is-layout-flex{
        gap:0;
        padding-left:0;
        padding-right:0;
    }
    body .wp-block-columns.is-layout-flex.row-actualites{
        gap:1.75em;
    }
    body .ti-widget.ti-goog .ti-review-item {
        padding: 0 15px;
    }
    body .ti-widget.ti-goog .ti-review-item>.ti-inner {
        box-shadow: 0 0 15px rgb(107,74,55,0.1);
    }
    body .ti-widget.ti-goog .ti-controls{
        display:none;
    }
    body .ti-widget.ti-goog .ti-reviews-container-wrapper {
        padding: 52px 0 10px;
    }
    body .ti-widget.ti-goog .ti-reviews-container-wrapper{
        margin:0;
    }
    #section-achat-bas-page img{
        margin-bottom: -110px;
    }
    .bloc-granu-container{
        margin: 7vh 0 6vh;
    }
    .bloc-granu-central:before {
        top: -2em;
        left: -8vw;
        width: 40vw;
        height: 56vw;
        max-width: 40%;
    }
    body.woocommerce-cart .wc-block-cart .wc-block-cart-items tr.wc-block-cart-items__row:not(:only-child) td.wc-block-cart-item__product {
        padding-top: 3.5em!important;
        padding-bottom: 1em!important;
    }
    body.woocommerce-cart .wc-block-cart .wc-block-cart-items tr.wc-block-cart-items__row:only-child td.wc-block-cart-item__product {
        padding-top: 3.5em!important;
    }
    body.woocommerce-cart .wc-block-cart .wc-block-cart-items tr.wc-block-cart-items__row:only-child td {
        padding: 1.2em!important;
    }
    #section-achat-bas-page-titre{
        font-size:1em;
    }
    body .is-layout-flex .section-tab-toggle-title{
        margin-bottom:20px;
    }
    .section-tab-toggle-text{
        position:relative;
        height:0;
        left:0;
    }
    .section-tab-toggle-text.tab-toggled-on{
        height:auto;
        margin-bottom:40px;
    }
    #site-navigation.toggled-on .menu-mid.right:after{
        display:none;
    }
    header #navbarSupportedContent #social-group{
        display:flex;
    }
    .link-bloc a.lien-complet:before {
        bottom: 1.5em;
        right: 1.5em;
        width: 15px;
        height: 15px;
    }
    .link-bloc-texte {
        bottom: 1.5em;
        left: 1.5em;
    }
    .woocommerce .quantity .qty{
        width:50px;
    }
    body.home #header-text-container{
        max-width: unset;
        padding: 0 5%;
    }
    .devenir-detaillant:before {
        margin-bottom: 15px;
    }
    .devenir-detaillant a {
        margin-left: 0;
    }
    body.home #header-text-container, .devenir-detaillant{
        display:grid;
    }
    body.home #header-text-container #header-img, body.home #header-text-container #header-text{
        max-width: 100%;
    }
    body.home #header-text-container #header-img img {
        max-width: 80%;
        margin-right: 0;
    }
    body.home .entry-title, body.home .entry-description{
        margin-bottom: 20px;
    }
    body.home .entry-title{
        font-size:7vw;
    }
    body.home #header-container{
        padding-bottom: 8vh;
        margin-top: 8vh;
    }
    .navbar-toggler-icon {
        padding: 0 30px;
    }
    #site-navigation.toggled-on .header__menu-button-icon:before {
        left: 0.4rem;
    }
    #site-navigation.toggled-on .header__menu-button-icon:after {
        left: 0.3rem;
    }
    .header__menu-button-icon:after {
        width: 2rem;
        bottom: -0.65rem;
    }
    .header__menu-button-icon:before {
        width: 2.8rem;
        top: -0.65rem;
    }
    #nav-group:after {
        right: 50px;
    }
    #menu-droit{
        margin: 0 0 0 10px;
    }
    #menu-droit, #nav-group #header-logo{
        width: 100px;
        height: 100px;
    }
    header #lien-panier {
        margin: 0 10px;
    }
    #nav-group #header-logo{
        margin-right:10px;
    }
    .row .col-12{
        margin-right:0!important;
    }
    body.single-product .photo-page {
        height: 60vh;
        right:0;
    }
    .woocommerce-product-gallery {
        justify-content: center;
    }
    #wpsl-wrap .wpsl-input, #wpsl-wrap #wpsl-radius, #wpsl-wrap #wpsl-results {
        margin-right: 0;
    }
    #wpsl-wrap #wpsl-search-wrap .wpsl-input, #wpsl-wrap #wpsl-search-wrap .wpsl-select-wrap, #wpsl-wrap #wpsl-search-wrap form, #wpsl-wrap #wpsl-radius, #wpsl-wrap #wpsl-results, #wpsl-wrap .wpsl-search{
        justify-content: flex-start;
    }
    #wpsl-wrap{
        margin-top: -60px;
    }
    #site-navigation #nav-group{
        z-index:10;
    }
    #top-header p, #top-header .has-text-align-center{
        text-align:left;
    }
    .entry-content {
        padding: 20px 0 50px;
    }
    .wrapper {
        padding:0;
    }
    .wpcf7-form .duo-input p, .duo-input p {
        width: 100%;
    }
    .wp-block-image.logo-footer img {
        width:200px;
    }
    #site-navigation ul li a, #site-navigation ul li.secondaire a {
        font-size: 1.5em;
    }
    #site-navigation.toggled-on .menu-mid {
        padding: 0;
        display: block;
        background-color: transparent;
        position: relative;
    }
    #site-navigation.toggled-on .menu-mid.left {
        padding: 80px 0 30px;
    }
    #site-navigation.toggled-on .menu-mid.left:before{
        content:"";
        position:absolute;
        background-color:inherit;
        top:0;
        width:250%;
        height:100%;
    }
    #site-navigation.toggled-on .menu-mid.left:before{
        left:-100%;
    }
    #site-navigation.toggled-on .menu-mid.right {
        padding: 60px 5% 40px;
        margin-left: -5%;
        width: calc(100% + 10%);
    }
    #menu-container-groupe {
        display: block;
        padding: 0;
    }
    #site-navigation.toggled-on #navbarSupportedContent {
        position: relative;
    }
    #site-navigation.toggled-on {
        background-color: #fff;
        margin: 0;
        max-width: 100%;
        padding-left: 5%;
        padding-right: 5%;
    }
    #menu-right-inside {
        width: 100%;
    }
    #navbarSupportedContent, #menu-container-groupe{height: unset;min-height: unset;}
    #site-navigation ul li {
        margin: 20px 0;
    }
}
/**/