
/*    	    *** *** *** *** 	        */
/*    	    				 	        */
/*    	    	INTERFACE 	        	*/
/*    	    				 	        */
/*    	    *** *** *** *** 	        */


body {
	margin: 0;
	padding: 0;
	/* font-family: open_sanslight, "Trebuchet MS", sans-serif; */
	font-family: "Open Sans", "Trebuchet MS", sans-serif;
	color: #000;
	background: #fff;
}

/* 			en-tete			 */
header{
	position: fixed;
	top: 0;
	left: 0px;
	height: auto;
	width : 100vw;
	z-index: 1000;
	background-color: rgba(0,0,0,0.8);
	background-color: rgba(0,0,0,1);
	border-bottom: 1px solid #000;
	border-bottom: 1px solid #4B4943;
	transition: 0.4s;
}
header:hover{
	background-color: #000;
	transition: 0.2s;
}

#nav_haut {
	position: relative;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
}

#logo {
	position: relative;
	box-sizing: border-box;
	margin: 6px 1vw 0;
	padding: 0px;
	z-index: 700;
	/* width: 189px; */
	height: 80px;
	color: #fff;
	font-size: 2em;
	border: 0;
	flex: 0 0 auto;
}
#logo img#logo_img {
	height: 80px;
	/* width : auto; */
}
#navHaut li#logo a {
	padding: 0px;
}
#logo_halo {
	position: absolute;
	top: 0px;
	left: 0px;
	height: 80px;
	width: 15px;
	opacity: 0;
	background: url("style/logo_lumineux.png") no-repeat;
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	animation-duration: 2s;
	-webkit-animation-name: Halo_traversant;
	-moz-animation-name: Halo_traversant;
	animation-name: Halo_traversant;
	-webkit-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	animation-timing-function: linear;
	animation-delay: 2s;
	-webkit-animation-delay: 2s;
	-moz-animation-delay: 2s;
}
#logo_halo i {
	position: absolute;
	top: 20px;
	left: 7px;
	height: 40px;
	width: 0px;
	box-shadow: 0px 0px 3px 1px rgba(255, 255, 255, 0.2);
}
/* Halo_traversant */
@keyframes Halo_traversant {
    0% {
		opacity: 0.5;
		left: 0px;
		background-position: 0px 0px;
    }
    40% {
		opacity: 1;
   }
	99% {
		opacity: 0.2;
    }
	99% {
		opacity: 1;
    }
	100% {
		opacity: 0;
		left: 180px;
		background-position: -180px 0px;
    }
}
@-moz-keyframes Halo_traversant {
    0% {
		opacity: 0.5;
		left: 0px;
		background-position: 0px 0px;
    }
    40% {
		opacity: 1;
   }
	99% {
		opacity: 0.2;
    }
	99% {
		opacity: 1;
    }
	100% {
		opacity: 0;
		left: 180px;
		background-position: -180px 0px;
    }
}
@-webkit-keyframes Halo_traversant {
    0% {
		opacity: 0.5;
		left: 0px;
		background-position: 0px 0px;
    }
    40% {
		opacity: 1;
   }
	99% {
		opacity: 0.2;
    }
	99% {
		opacity: 1;
    }
	100% {
		opacity: 0;
		left: 180px;
		background-position: -180px 0px;
    }
}

#NH_tel {
	text-align: center;
	color: #bba666;
	font-weight: bold;
}

#nav_pages {
	/* position: relative; */
	flex: 1 1 auto;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-evenly;
	align-items: stretch;
	list-style: none;
	margin: 0;
	padding: 0;
	height: 100px;
	height: 80px;
	box-sizing: border-box;
	/* background-color: #000; */
}
#nav_pages > li {
	margin: 0;
	padding: 0;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	flex: 1 1 auto;
	/* border: 1px dashed #f00; */
}
#nav_pages > li > a {
	display: block;
	color: #fff;
	/* border: 1px dashed #fff; */
}
.nav_panneau {
	display: none;
	position: absolute;
	top: 90%;
	left: 0;
	flex-flow: row nowrap;
	justify-content: space-evenly;
	/* justify-content: center; */
	justify-content: right;
	align-items: center;
	width: 100vw;
	box-sizing: border-box;
	padding: 1vh 0;
	background-color: #fff;
}
@media screen and (min-width: 1024px) {
	li:hover .nav_panneau {
		display: flex;
	}
	li:hover .nav_panneau > span {
		flex: 0 1 33%;
	}
	li:hover .nav_panneau > ul {
		flex: 1 0 33%;
		min-width: 400px;
		/* background-color: #ccc; */
	}
	li:hover .nav_panneau > div {
		flex: 0 0 33%;
	}
}
.nav_panneau span {
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 1.6em;
	text-transform: uppercase;
	text-align: right;
}
.nav_panneau ul {
	list-style: none;
	margin: 0 0 0 1vw;
}
.nav_panneau ul a {display: inline-block;
	color: #763;
	color: #430;
	color: #000;
	text-decoration: none;
	line-height: 1.8em;
	font-size: 1.2em;
	border-radius: 1em;
	transition: 0.4s;
	padding: 0 2em 0 0;
}
.nav_panneau ul a:hover {
	padding: 0 1em;
	color: #a99360;
	color: #fff;
	background-color: #bba666;
	background-color: #a99360;
}
.nav_panneau img {
	/* max-width: 400px; */
	height: 250px;
}

.bt_navMobile {
	border: 1px solid #FFF;
	border-radius: 6px;
	background: #000;
	color: #fff;
	font-size: 24px;
}
#bt_navMobile_a{
	display: none;
	position: absolute;
	top: 10px;
	right: 10px;
	/* width: 30px; */
	padding-left: 8px;
	padding-right: 8px;
}
#bt_navMobile_x{
	display: none;
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 0 2px;
	width: 30px;
}

/* Navigation panier/client */

#ban_nav_droite {
	display: inline-flex;
	flex-basis: 100px;
}
#ban_nav_droite a {
	display: block;
	padding: 1em;
}
#ban_nav_droite a:hover {
	filter: brightness(200%); 
}

/* NAVIGATION BOUTIQUE (CLIENT et PANIER) */


#nav_profil , #nav_panier {
	display: none;
	border-top: 1px solid #605c4f;
	border-top: 1px solid #4B4943;
	border-top: 1px solid #3B3933;
	padding: 0em 0;
	text-align: center;
}

/* NAVIGATION CLIENT */

.nav_profil_fond {
	vertical-align: -0.6em;
	filter: invert(0.5);
	margin-right: 1.2em;
}
#nav_profil a{
	color: #999;
	font-size: 1em;
	line-height: 1.2em;
	margin: 0 1.2em;
}
#nav_profil a:hover{
	color: #E3D691;
}
.nav_profil_nom {
	display: inline-block;
	padding: 0.5em 1.2em;
	margin: 0.5em 0em;
}
.nav_profil_nom a {
	margin: 0em;
}
#nav_profil_menu {
	border-top: 1px dashed #605c4f;
	display: block;
	padding: 1.0em;
	margin: 0em 0em;
}
#nav_profil_form {
	display: inline-block;
	margin: 0em;
	padding: 0em;
	position: relative;
}
#nav_profil_form  label{
	font-size: 1.2em;
	line-height: 2em;
	color: #999;
}
#nav_profil_form  .nav_pro_entree{
	width: 90px;
	border: none;
	border-bottom: 1px solid #999;
	font-size: 1.0em;
	background: transparent;
	margin-right: 1em;
	color: #fff;
}
#nav_profil_form  .nav_pro_log{
	width: 110px;
}
#nav_profil_form  .nav_pro_submit{
	display: inline-block;
	padding: 0.5em 1.2em;
	margin: 1em 1.2em;
	border: none;
	background: #333;
	color: #999;
	transition: 0.3s;
}
#nav_profil_form  .nav_pro_submit:hover{
	background: #999;
	color: #fff;
}
/* pictos clients */
@media screen and (max-width: 720px) {
	#nav_profil_haut {
		display: none;
	}
	#nav_profil_menu {
		border-top: none;
		display: flex;
		flex-direction : row;
		justify-content: space-between;
	}
	#nav_profil_menu a {
		/* margin: 0 3vw; */
	}
	#nav_profil_menu a span {
		display: none;
	}
	#nav_profil_menu a:nth-child(1)::before {
		content: url("style/boutons/bt_client-infos.png");
	}
	#nav_profil_menu a:nth-child(2)::before {
		content: url("style/boutons/bt_client-modifier.png");
	}
	#nav_profil_menu a:nth-child(3)::before {
		content: url("style/boutons/bt_client-adresses.png");
	}
	#nav_profil_menu a:nth-child(4)::before {
		content: url("style/boutons/bt_client-commandes.png");
	}
	#nav_profil_menu a:nth-child(5)::before {
		content: url("style/boutons/bt_client-deconnexion.png");
	}
	#nav_profil_menu a::before {
		opacity: 0.6;
	}

}

@media screen and (max-width: 1000px) {
	#NH_tel {
		padding-right: 2em;
	}
	.nav_panneau {
		flex-flow: column nowrap;
		gap: 1vh 0;
		align-items: flex-start;
		padding-left: 1vw;
	}
	.nav_panneau span {
		padding-left: 1vw;
	}
	.nav_panneau ul {
		padding-left: 1vw;
		margin: 0;
	}
}

@media screen and (max-width: 570px) {
	
	#ban_nav_droite {
		flex-basis: auto;
	}
	#nav_haut {
		flex-flow: column wrap;
		padding-bottom: 1em;
	}
	#logo {
		margin: 6px auto;
	}
	#NH_tel {
		padding-right: 0;
	}
	#bt_navMobile_a{
		display: inline-block;
	}
	#bt_navMobile_x{
		display: inline-block;
	}
	#nav_pages {
		position: absolute;
		z-index: 1000;
		top: 0;
		left: -100%;
		flex-flow: column nowrap;
		justify-content: space-evenly;
		align-items: stretch;
		margin: 0;
		height: 100vh;
		width: 100vw;
		background-color: #000;
		transition: 0.5s;
		padding: 1vh 5vw;
		box-sizing: border-box;
	}
	#nav_pages > li {
		flex-flow: column nowrap;
		align-items: stretch;
		text-align: center;
	}
	.navPageLib {
		font-weight: 700;
		font-size: 1.2em;
		background: rgba(100,100,100,0.2);
		padding: 1em 2em;
		border-radius: 2em;
		border: 1px solid #a99360;
	}
	.nav_panneau {
		/* display: flex; */
		position: relative;
		top: initial;
		left: initial;
		color: #fff;
		background: #000;
		text-align: center;
		align-items: center;
	}
	#nav_pages .nav_panneau > span {
		display: none;
	}
	#nav_pages .nav_panneau > img {
		display: none;
	}
	#nav_pages .nav_panneau ul a {
	  color: #ddd;
	}
	#nav_pages .nav_panneau ul li {
	  margin: 0;
	  padding: 0;
	}
}


/*	__--oO°		°Oo-__	*/
/*				 		*/
/*			BAS 		*/
/*			___	 		*/
/*	~...__ 		__...~	*/

footer  {
	clear: both;
	margin: 0 auto;
	padding: 0px 0px 50px;
	text-align: center;
	/* border-top: 1px solid #000; */
	background-color: #000;
}

#bas_follow {
	background: #222;
	margin: 0px;
	padding: 10px;
	/* height: 40px; */

	border: 1px solid #999;
}
#bas_follow form {
	margin: 0px;
	padding: 0px;
	display: inline-block;
	float: left;
}
#bas_follow form input {
	margin: 0px;
	padding: 10px 20px;
	height: 20px;
}
#bas_follow form label {
	color: #999;
	font-size: 1.2em;
}
#bas_follow form input.bas_news_email {
	color: #999;
	margin: 0px 10px 0px 25px;
	width: 250px;
	font-size: 1.1em;
}
#bas_follow form input.bas_news_entrer {
	color: #fff;
	background: #7fbf00;
	border: none;
	width: 140px;
	height: 42px;
	font-family: open_sansbold, sans-serif;
	text-transform: uppercase;
}

#navReseaux {
	margin: 0px 0px 0px 40px;
	margin: 0px;
	/* float: left; */
	display: flex;
	justify-content: center;
}
#navReseaux img {
	vertical-align: middle;
	margin: 0 1vw;
	width: 50px;
}
#navReseaux a {
	padding: 0px 0px 0px 10px;
	padding: 0px 10px;
	opacity: 0.6;
	transition: 0.2s;
	color: #fff;
}
#navReseaux a.gluglu {/* pour test */
	opacity: 1;
}
#navReseaux a:hover {
	opacity: 1;
}
#navReseaux a span {
	display: none;
}

@media screen and (max-width: 1000px) {
	#bas_follow {
		margin: 0px;
		padding: 10px;
		height: auto;
		text-align: center;
	}
	#bas_follow form {
		margin: 0px;
		padding: 3em 10px;
		display: block;
		float: initial;
		font-size: 2.4em;
		text-align: center;
	}
	#bas_follow form input {
		margin: 20px;
		padding: 10px 20px;
		height: 3em;
	}
	#bas_follow form input.bas_news_email {
		display: block;
		margin: 10px auto 10px auto;
		width: 92%;
		text-align: center;
		font-size: 0.9em;
	}
	#bas_follow form input.bas_news_entrer {
		display: block;
		margin: 10px auto 10px auto;
		width: 100%;
		height: 100px;
		font-size: 0.9em;
	}
	#navReseaux {
		margin: 20px auto 20px auto;
		float: initial;
	}
	#navReseaux a {
		display: inline-block;
		margin: 20px 40px;
	}
	#navReseaux a img{
		/* width: 200%; */
	}
	
}

#bas_reseaux {
	display: block;
	display: none;
	height: 30px;
	padding: 20px 0px 10px;
	/* border-bottom: 1px dashed #333; */
}

/* Nav pied (blocs) */

#nav_pied {
	padding: 5vh 0px 5vh;
	margin-top: 5vh;
	margin-bottom: 5vh;
	/* border-top: 1px solid #333; */
	/* border-bottom: 1px solid #333; */
	/* text-align: center; */
	display: flex;
	flex-flow: row wrap;
	justify-content: space-evenly;
}
.nav_pied_col {
	/* float: left; */
	/* width: 191px; */
}
.nav_pied_ico {
	margin: 0px 0px 20px 0px;
	padding: 0px;
	display: block;
	height: 50px;
}
.nav_pied_titre {
	display: block;
	margin: 0px;
	padding: 0px;
	color: #fff;
	text-transform: uppercase;
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 1.3em;
	line-height: 4em;
}
.nav_pied_texte {
	color: #999;
	color: #ccc;
	font-size: 1.1em;
	line-height: 1.8em;
}
.nav_pied_bas {
	color: #fff;
	font-family: "Open Sans", sans-serif;
	font-weight: normal;
	font-style: italic;
	font-size: 1.2em;
	line-height: 3em;
	margin: 0px;
	padding: 0px;
	display: block;
}
.nav_pied_lien {
	font-size: 0.9em;
	margin: 2em 0px 0px;
	text-transform: uppercase;
	font-family: "Open Sans", sans-serif;
	font-weight: 900;
}
.nav_pied_lien  a{
	/* padding-left: 16px; */
	/* background: url("style/fleche_1.png") no-repeat 0px center; */
	color: #ca0;
	/* color: #f5bb02; */
	color: #a99360;
	/* background-size: 6px 9px; */
}
.nav_pied_lien  a:hover{
	color: #fc0;
}
@media screen and (max-width: 1024px) {
	.nav_pied_col {
		display: block;
		float: none;
		width: auto;
	}
	.nav_pied_ico {
		margin: 50px 0px 0px 0px;
		width: 100%;
		height: auto;
	}
	.nav_pied_titre {
		line-height: 2.2em;
	}
	.nav_pied_col:nth-child(1) {
		order: 0;
	}
	.nav_pied_col:nth-child(2) {
		order: 2;
	}
	.nav_pied_col:nth-child(3) {
		order: 1;
	}
}
@media screen and (max-width: 800px) {
	#nav_pied {
		justify-content: center;
		font-size: 2em;
		gap: 6vh 2vw;
	}
	.nav_pied_texte {
		font-size: 0.8em;
	}
	.nav_pied_bas {
		font-size: 0.9em;
	}
	.nav_pied_titre {
		font-size: 1em;
	}
}

/* nav bas */

#navBas {
	margin: 0px 0px 0px 0px;
	padding: 1vh 1vw;
	line-height: 1.6em;
	text-align: center;
	color: #ccc;
	font-size: 0.9em;
	font-family: "Open Sans", sans-serif;
	/* font-weight: 900; */
	font-style: normal;
	text-transform: uppercase;
}
#navBas a {
	color: #bfbcb3;
	padding: 0 1vw;
}
#navBas a:hover {
	color: #fff;
}

@media screen and (max-width: 1000px) {
	#navBas {
		display: none;
	}
	address {
		display: none;
	}
	#logo_bas {
		display: none;
	}
}

/* adresse bas */

address {
	margin: 0px 0px 50px;
	padding: 1vh 1vw;
	line-height: 1.6em;
	color: #998;
	font-family: "Open Sans", sans-serif;
	font-size: 0.8em;
	font-weight: 700;
	font-style: italic;
	text-transform: uppercase;
}
#add_raison {
	color: #fff;
}
#add_email {
	color: #fc0;
}
#add_email:hover{
	color: #fff;
}


/*    	    Signature 	        */

#siteWeb{
	margin: 2vh 0px 0px;
	padding: 2vh 20px 2vh;
	text-align: center;
	line-height: 14px;
	font-family: "open_sans", "Trebuchet MS", "Arial Narrow", Arial, sans-serif;
    font-weight: 200;
    font-style: normal;
	letter-spacing: 3px;
	border-top: 1px solid #333;
}
#siteWeb a {
	text-decoration: none;
	font-size: 0.8em;
    text-shadow: none;  
	color: #999;
}
#siteWeb a:hover {
	color: #fff;
	text-decoration: none;
}
#siteWeb img{
	height: 40px;
	vertical-align: middle;
	padding: 0.5em 2em;
}

@media screen and (max-width: 955px) {
	#siteWeb{
		margin: 0px 0px 0px;
		padding: 20px;
		text-align: center;
		padding: 40px 0px 60px;
		font-size: 1em;
		line-height: 1.4em;
	}
	#siteWeb img{
		height: 55px;
	}
}


/***********************/
/* STRUCTURE / CONTENU */
/***********************/

#corps_main {
	/* display: flex; */
	/* flex-flow: column nowrap; */
	/* justify-content: center; */
	margin: 0px  auto;
	position: relative;
	padding: 80px 0px 0px;
	padding: 85px 0px 0px;
	overflow: hidden;
}

@media screen and (max-width: 1000px) {
	#corps_main {
		padding-top: 100px;
	}
}
@media screen and (max-width: 800px) {
	#corps_main {
		padding-top: 165px;
	}
}

@media screen and (max-width: 570px) {
	#corps_main {
		padding-top: 187px;
	}
}

#corps {
	margin: 0;
	padding: 0px 0px 0px;
	z-index: 400;
}


/* Ancres */
.ancre_header {
	position: absolute;
	top: -100px;
}


/* fil d'ariane */

#filAriane {
	position: relative;
	margin: 0px auto 50px;
	padding: 4px 0px 4px 0px;
	font-size: 1em;
	line-height: 1.8em;
	color: #fff;
	border-bottom: 1px solid #4B4943; 
	border-top: 1px solid #4B4943;
}
#filAriane a {
	padding: 0px 4px;
	color: #fff;
	color: #bbb;
}
#filAriane a:first-child {
	padding-left: 10px;
}
#filAriane a:hover {
	/*text-decoration: underline;*/
	color: #C2A32F;
	color: #BA9933;
}
#filAriane strong {
	padding: 0px 4px;
	color: #fff;
}
@media screen and (max-width: 1000px) {
	#filAriane { display: none;
		padding: 8px 0px 8px 0px;
		line-height: 2em;
		font-size: 0.7em;
	}
	#filAriane strong {
		display: none;
	}
}

#fp_partager {
	display: none;
}
