/**********************************
  structure globale du site
***********************************/
h2 {
    color: var(--color03);
    margin: 3rem auto;
    font-family: 'sf_compact_displaymedium', sans-serif;
    font-size: 3.9rem;
    position: relative;
}

.color-grey {
    color: var(--color04);
}

/* ------------
HEADER (EN-TETE)
--------------*/
#header {
    background-color: #fff;
    position: relative;
    z-index: 100;
    width: 100%;
    box-shadow: 0 0 9px rgba(0,0,0,.075);
}
@media (min-width:992px){
	/*#header {
		width: calc(100% - 95px);
	}*/
}

header.scrollUp.nav-down {
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.4);
    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.4);
}
	#header > .inner {
		padding: 1rem;
		flex-wrap: wrap;
	}
		#header > .inner > * {
		    flex: 0 0 33.33%;
		    max-width: 33.33%;
		    align-items: flex-start;
		}
		@media screen and (max-width: 1200px) {
			#header > .inner > .logo {
			    flex: 0 0 42%;
			    max-width: 42%;
			}
			#header > .inner .social {
			    margin: .5rem 0;
			    flex: 0 0 40%;
			    max-width: 40%;
			    justify-content: flex-end;
			}
			#header > .inner > .right-header {			    
			    flex: 0 0 58%;
			    max-width: 58%;
			}
		}
		@media screen and (max-width: 767px) {
			#header > .inner > .logo {
			    flex: 0 0 75%;
			    max-width: 75%;
			    padding: 0 0 0 1.5rem;
			}
		}
		@media screen and (max-width: 575px) {
			#header > .inner > .social {
			    flex: 0 0 100%;
			    max-width: 100%;
			    padding: 0;
			    justify-content: center;
			}
			#header > .inner > .smart-menu {
			    flex: 0 0 25%;
			    max-width: 25%;
			    margin: 1rem 0;
			    padding: 2rem 0;
			}
		}
		@media screen and (max-width: 360px) {
			#header > .inner > .logo {
			    padding: 0;
			}
		}
		.logo img {
		    max-width: 90%;
		}
		.headertopBar {
			padding: 5px 0;
		}
		.headertopBarRs li {
			padding: 0 !important;
		}
		.headertopBarRs li:not(:first-child) {
			margin: 0 0 0 5px;
		}
		.headertopBarNav ul li a{
			padding: 0 10px;

		}


.left-header,
.social {
    display: flex;
    flex: 1;
}
@media screen and (max-width: 1200px) {
	#header > .inner > .left-header {
		flex: 0 0 100%;
		max-width: 100%;
		justify-content: space-between;
	}
}	
	.social {
	    margin: .5rem 0 0 1rem;
	}
		.social a {
		    background: var(--color04);
		    border-radius: 50%;
		    margin: 0 .5rem;
		    display: flex;
		    align-items: center;
		    justify-content: center;
		    width: 2.9rem;
		    height: 2.9rem;
		    transition: .5s ease 0s;
		}
			.social a:hover,
			.social a:active {
				background: var(--color03);
			}

.mm-panel .left-header {
    position: relative;
}
	.mm-panel .left-header .btn-back-site {
	    width: 100%;
	    transform: translate(0,0);
	    border-radius: 0;
	    color: var(--color00);
	    font-size: 1.3rem;
	}

.mm-panel .lang-selector {
    justify-content: flex-end;
    display: flex;
    margin: 1rem 0;
}
	.mm-panel .lang-selector ul {
	    top: 4rem;
	    right: 1rem;
	}
		.mm-panel .lang-selector ul li {
		    padding: .5rem 0;
		    text-align: center;
		}

header .logo {
    flex: 0 0 49rem;
    max-width: 33.33%;
}
	header .logo a {
	    text-align: center;
	    margin: 2rem auto;
	    max-width: 80%;
	}
	@media screen and (max-width: 1200px) {
		header .logo a {
		    width: 40rem;
		    margin: 2rem 0;
		    text-align: left;
		}
	}
	@media screen and (max-width: 800px) {
		header .logo a {
		    width: 30rem;
		    display: block;		    
		}
	}
	@media screen and (max-width: 575px) {
		header .logo a {
		    width: 100%;
		    max-width: 100%;	    
		}
	}
		header .logo p {
		    color: var(--color03);
		    font-size: 1.8rem;
		    line-height: 2.2rem;
		    letter-spacing: 2.85px;
		    margin: .75rem 0 0;
		}
		@media screen and (max-width: 1200px) {
			header .logo p {
			    font-size: 1.6rem;
			    line-height: 2rem;
			    letter-spacing: 0.85px;
			}
		}
		@media screen and (max-width: 800px) {
			header .logo p {
			    font-size: 1.1rem;
			    line-height: 2rem;
			    letter-spacing: 0;
			}
		}
		@media screen and (max-width: 767px){
			header .logo p {
			    font-size: 1.3rem;
			    line-height: 2rem;
			    letter-spacing: 0;
			}
		}
		@media screen and (max-width: 575px) {
			header .logo p {
			    font-size: 1.1rem;
			    line-height: 1rem;
			}
		}

.right-header {
    flex: 0 0 44%;
    max-width: 44%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0 1.5rem;
}
@media screen and (max-width: 1366px) {
	#header > .inner > .right-header {
	    flex-wrap: wrap;
	    flex-direction: column-reverse;
	    position: relative;
	}
}
@media screen and (max-width: 1200px) {
	#header > .inner > .right-header {
	    align-items: flex-end;
	}
}
@media screen and (max-width: 767px) {
	#header > .inner > .right-header {
	    align-items: center;
	    flex: 0 0 100%;
	    max-width: 100%;
	}
}
@media screen and (max-width: 575px) {
	#header > .inner > .right-header {
	    flex: 0 0 100%;
	    max-width: 100%;
	    align-items: center;
	    position: fixed;
	    bottom: 0;
	    width: 100%;
	    background: #F2F2F2;
	    left: 0;
	    padding: 1rem;
	    box-shadow: 0 1px 5px rgba(0,0,0,.16) inset;
	}
}

	.right-header > div {
	    display: flex;
	    align-items: center;
	}
	@media screen and (max-width: 575px) {
		.right-header > div {
		    display: flex;
		    align-items: center;
		    justify-content: space-around;
		    flex-direction: row-reverse;
		    width: 22rem;
		    max-width: 80%;
		}
	}

	.search-form {
	    width: 20rem;
	    display: flex;
	    border-bottom: 1px solid var(--color04);
	    margin: 1.25rem 0 1rem;
	    overflow: hidden;
	    transition: .5s ease 0s;
	}
	@media screen and (max-width: 1366px) {
		.search-form {
		    width: 0;
		    opacity: 0;
		    position: absolute;
		    z-index: 2;
		    top: 5rem;
		    background: var(--color00);
		    padding: .5rem 1rem;
		}
		.search-form.open {
			width: 100%;
			opacity: 1;
		}
	}
	@media screen and (max-width: 767px) {
		.search-form {
		    left: 0;
		}
	}
	@media screen and (max-width: 575px) {
		.search-form {
		    top: -8.75rem;
		    background: rgba(255,255,255,.8);
		    padding: 2rem;
		    border: none;
		    flex-direction: row-reverse;
		}
			.search-form .search-field {
			    border-bottom: 1px solid var(--color04);
			    border-radius: 0;
			    text-align: center;
			}
	}
		.right-header .btn-search {
		    display: none;
		}
		@media screen and (max-width: 575px) {
			.right-header .btn-search {
			    display: block;
			    padding: 18px 10px;
			}
		}



		.search-submit {
		    width: 2.7rem;
		    background: url(../img/charte/icon-search.svg) no-repeat scroll 50% transparent;
		    border: none;
		}
		@media screen and (max-width: 575px) {
			.search-submit {
			    position: absolute;
			    height: 3rem;
			}
		}
		.search-form .search-field, 
		.search-form .search-field:focus {
		    background: transparent;
		    padding: 1rem 0;
		    outline: none;
		    font-size: 1.2rem;
		    min-height: inherit!important;
		}

		.btn-cart, 
		.btn-cart:visited {
		    color: var(--color02);
		    border: 1px solid var(--color02);
		    font-size: 1.2rem;
		    border-radius: .5rem;
		    padding: 1.25rem 1.25rem 1.25rem 4rem;
		    background: url(../img/charte/icon-cart.svg) no-repeat scroll 1.25rem 50%;
		    background-color: #fff;
		    transition: background-color .5s ease 0s;
		    margin: 1rem 2rem 1rem 3rem;
		}
		@media screen and (max-width: 1366px) {
			.btn-cart, 
			.btn-cart:visited {
				margin: 1rem;
			}
		}
		@media screen and (max-width: 575px) {
			.btn-cart span {
				display: none;
				visibility: hidden;
			}
			.btn-cart, 
			.btn-cart:visited {
			    margin: 1rem;
			    width: 4rem;
			    height: 4rem;
			    display: block;
			    padding: 0;
			    border-radius: 50%;
			    background-position: 50%;
			}
		}
			.btn-cart:hover,
			.btn-cart:active {
				background-image: url(../img/charte/icon-cart-white.svg);
				background-color: var(--color02);
				color: var(--color00);
			}
			.btn-cart span:first-child {
			    max-width: calc(100% - 1rem);
			}

		.btn-account, 
		.btn-account:visited {
		    color: var(--color00);
		    border: 1px solid var(--color03);
		    font-size: 1.2rem;
		    border-radius: .5rem;
		    padding: 1.25rem 1.25rem 1.25rem 4rem;
		    background: url(../img/charte/icon-user-white.svg) no-repeat scroll 1.25rem 50% var(--color03);
		    transition: background-color .5s ease 0s;
		}
		.btn-account:hover,
		.btn-account:active {
		    background-color: var(--color06);
		}
			.btn-account span {
				color: var(--color00);
				max-width: 100%;
			}
			@media screen and (max-width: 575px) {
				.btn-account span {
					display: none;
					visibility: hidden;
				}
				.btn-account, 
				.btn-account:visited {
				    margin: 1rem;
				    width: 4rem;
				    height: 4rem;
				    display: block;
				    padding: 0;
				    border-radius: 50%;
				    background-position: 50%;
				}
			}

.select_language {
    width: 6rem;
    margin: 0 0 0 2rem;
}
@media screen and (max-width: 767px) {
	.right-header .select_language {
		display: none!important;
		visibility: hidden;
	}	
	.mm-panel .select_language {
	    float: right;
	    margin: 2rem 0;
	}
}
	.select_language ul:not(.noBefore) li::before {
	    display: none;
	}

#header > .inner > .nested {
    flex: 1;
    max-width: 100%;
    padding: 2.5rem 0 .5rem;
}
@media screen and (max-width: 1366px) {
	#header > .inner > .nested {
	    padding: .5rem 0;
	}
}


/* ----------------------
RIGHTBAR FIXED
-----------------------*/
/* 
		@media (max-width:1023px){
			#rightbarFixed {
				position: fixed;
				bottom: 0;
				right: 0;
				left: 0;
			}
		} */
		@media (min-width:768px){
			#rightbarFixed {
				position: fixed;
				top: 0;
				right: 0;
				z-index: 10000;
			}
		}

/* ----------------------
ZONE INTERIEURE (CONTENU)
-----------------------*/

section#contents {
	padding: 50px 0;
	position: relative;
	z-index: 10;
}

/* ----------------------
HEADER PAGE
-----------------------*/

.headerPage {
	/* background-image: url('../img/charte/font-headerpage.jpg');
	background-repeat: no-repeat;
	background-position: center top;
    height: 340px; */
}
	
	.headerPage .text, .headerPage .text .container {
		height: 100%;
	}
	.headerPage .text {
		z-index: 1;
		top: 0;
	}
	.headerPage .desc {
		font-size: 2rem;
		color: var(--color04);
	}
span.mobile-buton {
	display: none;
	width: 35px;
}
	span.mobile-buton span {
		width: 100%;
		height: 3px;
		background-color: #fff;
		display: block;
		margin: 6px 0;
	}
span.mobile-buton::before, span.mobile-buton::after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: #fff;
}

#header > .inner > .smart-menu {
    flex: 0 0 auto;
    margin: 1rem 3rem;
    padding: 2rem 0;
}
@media screen and (max-width: 575px) {
	#header > .inner > .smart-menu {
	    flex: 0 0 25%;
	    margin: 1rem 0;
	    padding: 2rem 2rem 2rem 0;
	    align-items: flex-end;
	    display: flex;
	    flex-direction: column-reverse;
	}
}
@media screen and (max-width: 360px) {
	#header > .inner > .smart-menu {
	    padding: 2rem 0;
	}
}



#wrapper {
	background-image: url('../img/charte/vague-2.svg');
	background-repeat: no-repeat;
	/* background-attachment: fixed; */
	background-size: 100% auto;
	background-position: 0 105%;
}
.single-product #wrapper,
.search-no-results #wrapper {
	background-image: none;
}
/* ------------
COLONNES
--------------*/
#leftbar >.inner{

}
#rightbar > .inner{
	
}


/* -------------------
FOOTER (PIED DE PAGE)
--------------------*/
footer#footer {
    background-color: var(--color00);
}
	footer#footer ul {
	    margin: 0;
	    height: 40px;
	    display: flex;
	    flex-wrap: wrap;
	    align-items: center;
	    justify-content: center;
	}
	@media screen and (max-width: 1024px) {
		footer#footer ul {
		    justify-content: flex-start;
		}
	}
	@media screen and (max-width: 575px) {
		footer#footer ul {
		    justify-content: center;
		}
	}
		footer#footer ul li {
			padding: 0;
		}
			footer#footer ul li a {
			    font-size: 1.2rem;
			    color: var(--color04);
			}
			footer#footer ul li:not(:last-child) a::after {
				content: "/";
				margin: 0 5px;
			}

.bandeau-reassurance {
    background: var(--color02);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
}
@media screen and (max-width: 575px) {
	.bandeau-reassurance {
	    flex-direction: column;
	}
}
	.bandeau-reassurance > div {
	    padding: 3rem 6rem;
	    position: relative;
	}
	@media screen and (max-width: 800px) {
		.bandeau-reassurance > div {
		    padding: 3rem 4rem;
		}
	}
	@media screen and (max-width: 575px) {
		.bandeau-reassurance > div {
		    padding: 2rem;
		}
	}
	.bandeau-reassurance div:after {
		content: "";
		display: block; width: 1px; height: calc(100% - 6rem);
		position: absolute; right: 0; top: 3rem;
		background-color: var(--color00);
	}
	@media screen and (max-width: 575px) {
		.bandeau-reassurance div:after {
		    display: none;
		}
	}
	.bandeau-reassurance div:last-child:after {
		display: none;
	} 
		.bandeau-reassurance .img-container {
		    margin: 0 auto;
		    display: flex;
		    align-items: center; justify-content: center;
		    height: 5rem;
		    transform: scale(.9);
		    transition: .5s ease 0s;
		}		
		.bandeau-reassurance div:hover .img-container  {
		    transform: scale(1);
		}
		.bandeau-reassurance h6 {
		    color: var(--color00);
		    font-family: 'open_sansbold', sans-serif;
		    font-size: 1.8rem;
		    margin: 1rem auto 0;
		    text-align: center;
		}

.subfooter {
    width: 166rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
}
	.subfooter > div {
	    flex: 33.33%;
	    max-width: 33.33%;
	}
	@media screen and (max-width: 1024px) {
		.subfooter > div {
		    flex: 75%;
		    max-width: 75%;
		}
		.subfooter > div:first-child {
		    flex: 0 0 100%;
		    max-width: 100%;
		    text-align: center;
		    margin: 0 auto 1rem;
		}
		.subfooter > div.social {
			flex: 0 0 25%;
			max-width: 25%;
		}
	}
	@media screen and (max-width: 575px) {
		body .subfooter > div,
		body .subfooter > div.social {
		    flex: 0 0 100%;
		    max-width: 100%;
		    justify-content: center;
		}
	}
		.logo-footer img {
		    width: 24.5rem;
		}
		.logo-footer p {
		    color: var(--color03);
		    margin: .5rem 0 .5rem .75rem;
		    font-size: 1.3rem;
		    letter-spacing: 1.75px;
		}

	.subfooter > div.social {
	    display: flex;
	    justify-content: flex-end;
	    margin: 0;
	    padding: .5rem 5rem 0 0;
	}
		.subfooter .social a {
		    background: transparent;
		    border: 1px solid var(--color04);
		    transform: scale(.9);
		    transition: .5s ease 0s;
		}
			.subfooter .social a:hover,
			.subfooter .social a:active {
			    background: transparent;
			    transform: scale(1);
			}
		

/* ------------
PAGE ERREUR
--------------*/
#error_page{

}
.error{
	color:#f00;
}
.error_form{
	color:#f00;
}

/*RESPONSIVE
01 - DESKTOP */
@media screen and (max-width: 1400px), (max-device-width: 1400px){
}
@media screen and (max-width: 1200px), (max-device-width: 1200px){
}
/*02 TABLETTE*/
@media screen and (max-width: 1024px), (max-device-width: 1024px){
}
/*03 MINI-TABLETTE et MOBILE */
@media screen and (max-width: 767px), (max-device-width: 767px){
		
	span.mobile-buton {
		display: flex;
	}
	
}

.headerPage > .text.position-relative.z-100 > img {
    display: none;
}

/* ------------
BOUTON RETOUR SITE PRINCIPALE
--------------*/

.btn-back-site, 
.btn-back-site:visited, 
.btn-back-site:link {
    background: var(--color04);
    color: var(--color00);
    width: 30rem;
    margin: 0;
    padding: 2.25rem;
    font-size: 1.2rem;
    border-radius: 0 0 3rem 0;
    text-align: center;
    transform: translate(-3rem, -1rem);
    transition: .5s ease 0s;
    justify-content: center;
}
@media screen and (max-width: 1024px) {
	.btn-back-site, .btn-back-site:visited, 
	.btn-back-site:link {
	    width: 22rem;
	    padding: 1.5rem;
	}
}
@media screen and (max-width: 767px) {
	.btn-back-site, .btn-back-site:visited, 
	.btn-back-site:link {
	    width: 22rem;
	    padding: 1.5rem;
	    transform: translate(-1rem,-1rem);
	}
}
@media screen and (max-width: 575px) {
	.btn-back-site, .btn-back-site:visited, 
	.btn-back-site:link {
	    width: 100%;
	    padding: 1.5rem 1rem;
	    transform: translate(-1rem,-1rem);
	    border-radius: 0 0 1.5rem 0;
	    font-size: 1.1rem;
	}
}
	.btn-back-site:hover, 
	.btn-back-site:active {
	    background: #484a4c;
	}
	.btn-back-site img {
	    transform: translate(-.5rem, .2rem);
	}