/* CSS Document */


/*gestion des sliders d'apllication sur page d'accueil*/
.accueil_h2{
	border-bottom: solid 5px #FF0;
	margin-bottom: 30px;
}
#accueil_applis{
	border-bottom: solid 5px #FF0;
	margin-bottom: 30px;
/*	background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 20%, rgba(255,255,255,0) 50%, rgba(255,255,255,0) 80%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 20%,rgba(255,255,255,0) 50%,rgba(255,255,255,0) 80%,rgba(255,255,255,1) 100%);
	background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 20%,rgba(255,255,255,0) 50%,rgba(255,255,255,0) 80%,rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 );*/
}
.appli_case{
	padding: 15px;
}
.appli_content{
	position: relative;
	padding: 10px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 0 4px gray;
	/*background-color: #1C146B;*/
}


.applis-slider .slick-arrow{
	border-radius: 15%;
	width: 30px;
	height: 30px;
	right: 0 !important;
	left: 0 !important;
}
/*.applis-slider{
	background-color: #1C146B;
	margin-bottom: 15px;
	border-radius: 15px;
}*/
.applis-slider:hover .slick-arrow{
	background-color: rgba(28,20,107, 0.3);
}

/*applications multicolor */
/*.appli_case:nth-child(7n+1) .appli_content{
	background-color: #0E3047;
}

.appli_case:nth-child(7n+2) .appli_content{
	background-color: #10828c;
}

.appli_case:nth-child(7n+3) .appli_content{
	background-color: gray;
}

.appli_case:nth-child(7n+4) .appli_content{
	background-color: #cc6a21;
}

.appli_case:nth-child(7n+5) .appli_content{
	background-color: #cec399;
}

.appli_case:nth-child(7n+6) .appli_content{
	background-color: #333;
}

.appli_case:nth-child(7n) .appli_content{
	background-color: #992020;
}*/

.appli_content img{
	margin: auto;
	width: 100%;
}
.appli_content:hover .appli_details{
	opacity: 1;
	background: rgba(0,0,0,0.8);
	transform: rotateY(0deg);
}
a.appli_details{
	color: inherit;
	transform: rotateY(180deg);
}
.appli_details{
	position: absolute;
	opacity: 0;
	width: 100%;
	height: 100%;
	margin: -10px;
	padding: 10px;
	color: white !important;
	text-align: center;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

#psa{
    display: block;
    float: left;
    /*max-width: 650px;
    width: 100%;*/
    border-radius: 5px;
    min-height: 400px;
    border: solid 2px #1C146B;
}

/*  /////////////////////////////////////////////////////////   */
.font-italic{
	font-style: italic;
}

.font-bold{
	font-weight: bold;
}

.kalamfont{
	font-family: 'Kalam', cursive !important;
}

.text-primary{
	color: #1C146B;
}

.btn-primary{
	background: #1C146B;
	border-color: #1C146B;
	color:white;
}

.btn-primary.active:hover, 
.btn-primary:active:hover,
.open > .dropdown-toggle.btn-primary, 
.open > .dropdown-toggle.btn-primary:hover,
.dropdown-toggle.btn-primary:hover,
.btn-primary:hover{
	background: #FF0;
	color: #1C146B;
	transition: ease 0.2s;
}

.btn-primary.active, .btn-primary:active, 
.btn-primary.active.focus, 
.btn-primary.active:focus, 
.btn-primary:active.focus, 
.btn-primary:active:focus,  
.open > .dropdown-toggle.btn-primary.focus, 
.open > .dropdown-toggle.btn-primary:focus, 
.btn-primary:focus, .btn-primary.focus{
	background: #1C146B;
	border-color: #1C146B;
	transition: ease 0.2s;
}


/*classe pour désactiver un lien en css*/
.not-active {
   pointer-events: none;
   cursor: default;
}

.large_label{
	width: 100%
}

html, body{
/*position: relative;   par défaut sur les html et body*/
	height: 100%; /*pour forcer le positionnement du footer en bas de page avec #page à 100% */
}

/*définition de la police et de sa couleur par défaut*/
body{
	color: #333;
	font-family: Helvetica, 'Lato', Arial, sans-serif; font-size: 14px;
}

/*définition du style et du comportement des liens*/
a{
	color: #1c146b;
}

a:hover, a:focus{
	color: #1c146b;
	text-decoration: none;
}

textarea{
	max-width: 100%;
	min-height: 50px;
}

/*création de 2 styles de hr pour fond blanc et fond bleu*/
hr.hr-bleu{
	margin-top: 0;
	margin-bottom: 20px;
	border: 0;
	height: 1px;
	background: -webkit-linear-gradient(left, white, #1c146b, white);
	background: -moz-linear-gradient(left, white, #1c146b, white);
	background: -ms-linear-gradient(left, white, #1c146b, white);
	background: -o-linear-gradient(left, white, #1c146b, white);
}

hr.hr-blanc{
	margin: 0 0 5px;
	border: 0;
	height: 1px;
	background: -webkit-linear-gradient(left, #1c146b, white, #1c146b);
	background: -moz-linear-gradient(left, #1c146b, white, #1c146b);
	background: -ms-linear-gradient(left, #1c146b, white, #1c146b);
	background: -o-linear-gradient(left, #1c146b, white, #1c146b);
}

.glyphicon-lg{
	font-size: 1.5em;
}

.glyphicon-lg-2{
	font-size: 2em;
}

.glyphicon-lg-3{
	font-size: 3em;
}

/*          //////////////////////////////////////////////////////////////////          */





/*fancybox*/

.fancybox-type-iframe .fancybox-next {
	right: -60px;
}

.fancybox-type-iframe .fancybox-prev {
	left: -60px;
}


/*          /////////          Header et Barre d'outils          /////////          */
header{
	position: relative;
	z-index: 1000;
	background: white;
	border-bottom: solid yellow 5px;
	-webkit-box-shadow: 0 1px 10px 0 #000000;
	box-shadow: 0 1px 10px 0 #000000;

}

#fondtoolkit{
	background: #1c146b;
	position: fixed;
	z-index:1000;
	right: 0;
	left: 0;
	min-height: 40px;
	-webkit-box-shadow: 0 5px 5px -4px #333;
	box-shadow: 0 3px 5px -4px #333;
}

#toolkit{
	color: white;
	line-height: 40px;
	font-size: 1em;
	letter-spacing: 1px;
}

#toolkit a, footer a{
	color: white;
}

#toolkit > div > a:hover, footer a:hover{
	color: #FF0;
	transition: all ease 0.2s;
}

#toolkit img{
	margin: 0 5px;
}

#toolkit #img1{
	-moz-transform: scale(0.8);
	-webkit-transform: scale(0.8);
	-o-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
}

#toolkit>div{
	padding:0;
}

#toolkit .dropdown img{
	margin: 5px 0;
}


.mon_compte{
	background: #1c146b;
	margin-top: 0;
	border-radius: 0 0 10px 10px;
	padding: 5px 10px 10px;
	min-width: 190px;
	line-height: 20px;
	text-align: center;
	-webkit-box-shadow: 0 5px 10px -5px #333;
	box-shadow: 0 5px 10px -5px #333;
}


#form_moncompte input{
	color: #333;
	border: none;
	line-height: 25px;
	padding-left: 5px;
	margin-top: 10px;
	width: 100%;
	height: 35px;
}



#form_moncompte input:focus{
	-webkit-box-shadow:0 0 5px 1px #000;
	box-shadow:0 0 5px 1px #000;

	-moz-transform: scale(1.15);
	-webkit-transform: scale(1.15);
	-o-transform: scale(1.15);
	-ms-transform: scale(1.15);
	transform: scale(1.15);

	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/*personnalistion des placholder avec des kits*/
header form input::-moz-placeholder           {font-style: italic; letter-spacing: 2px;}
header form input:-moz-placeholder            {font-style: italic; letter-spacing: 2px;}
header form input-ms-input-placeholder        {font-style: italic; letter-spacing: 2px;}
header form input::-webkit-input-placeholder  {font-style: italic; letter-spacing: 2px;}

header form input:focus::-moz-placeholder           {color: lightgray;}
header form input:focus:-moz-placeholder            {color: lightgray;}
header form input:focus-ms-input-placeholder        {color: lightgray;}
header form input:focus::-webkit-input-placeholder  {color: lightgray;}

.mini{
	text-align: left;
	font-size: 10px;
}

#form_moncompte a:hover{
	color: #FF0;
}

#form_moncompte button{
	margin: 15px 0;
	background: #b6b6b6; /* Old browsers */
	background: -moz-linear-gradient(-45deg, #b6b6b6 0%, #b6b6b6 50%, #a4a4a4 50%, #a4a4a4 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, #b6b6b6 0%,#b6b6b6 50%,#a4a4a4 50%,#a4a4a4 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, #b6b6b6 0%,#b6b6b6 50%,#a4a4a4 50%,#a4a4a4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b6b6b6', endColorstr='#a4a4a4',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

#form_moncompte button:hover{
	color: #FF0;
	-webkit-box-shadow: 0 0 0 3px #FF0;
	box-shadow: 0 0 0 3px #FF0;
	transition: all ease 0.2s;
}

#moncompte_conecte ul{
	padding: 0;
	list-style-type: none;
}

#moncompte_conecte ul li a{
	padding-left: 10px;
}

#moncompte_conecte a{
	display: block;
	text-align: left;
	line-height: 30px;
}

#moncompte_conecte a:hover{
	color: #333;
	background: white url(../img/icons/puce_menu.png) no-repeat 95% 50% ;
}

#moncompte_conecte button{
	background: #b6b6b6; /* Old browsers */
	background: -moz-linear-gradient(-45deg, #b6b6b6 0%, #b6b6b6 50%, #a4a4a4 50%, #a4a4a4 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, #b6b6b6 0%,#b6b6b6 50%,#a4a4a4 50%,#a4a4a4 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, #b6b6b6 0%,#b6b6b6 50%,#a4a4a4 50%,#a4a4a4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b6b6b6', endColorstr='#a4a4a4',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	transition: all ease 0.2s;
	padding: 0 5px;
	line-height: 15px;
	font-size: 0.8em;
	width: 70%;
	margin: 15px auto 5px;
}


#moncompte_conecte button:hover{
	color: #FF0;
	-webkit-box-shadow: 0 0 0 3px #FF0;
	box-shadow: 0 0 0 3px #FF0;
}


/*page pop_up formulaire de connexion (avec ou sans JQuery)*/

#page_form_connexion{
	display: none;
	background: #1C146B;
	color: white;
	border: solid 10px white;
	border-radius: 30px;
	padding: 30px 10px;
    width: 650px;
}

#page_form_connexion h3{
	width: 55%;
	float: left;
	margin-top: 20px;
	text-transform: uppercase;
	font-size: 2.5em;
}

#page_form_connexion img.logo_connexion{
	float: right;
	border: solid 5px white;
	border-radius: 10px;
	padding: 5px 15px;
	margin-top: 20px;
	margin-right: 20px;
}

#page_form_connexion > img{
	display: block;
	margin: 10px auto;
	width: 70px;
}

#page_form_connexion input{
	color: #1C146B;
	width: 100%;
	height: 40px;
	font-size: 2em;
	margin-top: 30px;
}

#page_form_connexion a{
	display: block;
	color: white;
	margin: 10px auto;
	font-size: 1.2em;
}

#page_form_connexion a:hover{
	color: #FF0;
}

#page_form_connexion button{
	margin: 10px 0 30px;
	background: #b6b6b6; /* Old browsers */
	background: -moz-linear-gradient(-45deg, #b6b6b6 0%, #b6b6b6 50%, #a4a4a4 50%, #a4a4a4 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, #b6b6b6 0%,#b6b6b6 50%,#a4a4a4 50%,#a4a4a4 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, #b6b6b6 0%,#b6b6b6 50%,#a4a4a4 50%,#a4a4a4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b6b6b6', endColorstr='#a4a4a4',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

#page_form_connexion button:hover{
	color: #FF0;
	-webkit-box-shadow: 0 0 0 3px #FF0;
	box-shadow: 0 0 0 3px #FF0;

}


/*volet mon panier*/


#monpanier{
	position: relative;
}

#monpanier > a:first-child{
	padding-right: 10px;
	position: relative;
}

#qty_bubble{
	display: block; 
	float: right; 
	position: absolute; 
	bottom: -5px; 
	right: -5px; 
	border-radius: 50%; 
	width: 15px; 
	height: 15px; 
	line-height: 15px; 
	text-align: center;
	background: yellow; 
	color: #1C146B; 
	}


#monpanier:hover #volet_panier{
	visibility: visible;
	opacity: 1;
	z-index: 1000;
	transition: opacity ease 0.2s;
}

#volet_panier{
	visibility: hidden;
	opacity: 0;
	position: absolute;
	right: 0;
	width: 100%;
	background: #1c146b;
	-webkit-border-radius: 0 0 10px 10px;
	border-radius: 0 0 10px 10px;
	-webkit-box-shadow: 0 5px 10px -5px #333;
	box-shadow: 0 5px 10px -5px #333;
	padding: 5px 10px 0px !important;
	line-height: 20px;
	text-align: center;
}

#volet_panier .panel{
	margin-top: 16px;
	border-radius: 0px;
}

#volet_panier article{
	background: white;
	height: 75px;
	overflow: hidden;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	margin-bottom: 10px;
	padding: 5px;
	color: #333;
	font-size: 0.7em;
	line-height: 14px;
	position: relative;
}

.croix{
	position: absolute;
	left: 0;
	opacity: 0;
	transition: opacity ease 0.2s;
}

#volet_panier article:hover .croix{
	opacity: 1;
	transition: opacity ease 1.5s;
}

#volet_panier article .cadre_img_xs, #volet_panier article .ref, #volet_panier article .prix{
	height: 100%;
	overflow: hidden;
	padding: 1px;
}

#volet_panier article .cadre_img_xs{
	width: 25%;
}

#volet_panier article .ref{
	width: 50%;
	text-align: left;
	text-overflow: ellipsis;
}

#volet_panier article h6{
	font-size: 1em;
	font-weight: bold;
}

#volet_panier article .prix{
	width: 25%;
	text-align: right;
}

#volet_panier .cadre_img_xs img{
	width: 100%;
	height: auto;
	margin:0;
}

#volet_panier a.btn{
	margin: 15px 0;
	background: #b6b6b6; /* Old browsers */
	background: -moz-linear-gradient(-45deg, #b6b6b6 0%, #b6b6b6 50%, #a4a4a4 50%, #a4a4a4 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, #b6b6b6 0%,#b6b6b6 50%,#a4a4a4 50%,#a4a4a4 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, #b6b6b6 0%,#b6b6b6 50%,#a4a4a4 50%,#a4a4a4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b6b6b6', endColorstr='#a4a4a4',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	transition: all ease 0.2s;
}


#volet_panier a.btn:hover{
	color: #FF0;
	-webkit-box-shadow: 0 0 0 3px #FF0;
	box-shadow: 0 0 0 3px #FF0;
}

#volet_panier .pt{
	font-size: 1,4em;
	color: #FF0;
}

#volet_panier .calculprix{
	font-size: 2em;
}

/*          //////////////////////////////////////////////////////////////////          */



/*          /////////          Bannière        /////////          */

#contenuentete{
	padding-top: 40px;
	color: #1c146b;
}

#logo{
	float: left;
	padding-right: 0px;
	display: block;
	width: 206px;
}

#blockright{
	width: 934px;
	float: left;
}


#slogan{
	background: url(../img/logos/filet_header_backgound.png);
	height: 136px;
	width: 60%;
   /* border-bottom: solid #1c146b 4px; */
	padding: 40px 0 0 0px;
	text-align:center;
	float: left;
}

#slogan strong{
	/*text-shadow: 0 2px 6px #1c146b;*/
	letter-spacing: 3px;
	display: inline-block;
	-moz-transform: scale(1.2) rotate(-15deg) skewX(-15deg);
	-webkit-transform: scale(1.2) rotate(-15deg) skewX(-15deg);
	-o-transform: scale(1.2) rotate(-15deg) skewX(-15deg);
	-ms-transform: scale(1.2) rotate(-15deg) skewX(-15deg);
	transform: scale(1.2) rotate(-15deg) skewX(-15deg);
}

#recherche{
	/*border-bottom: solid #1c146b 4px; */
	float: left;
	width: 40%;
	height: 136px;
	text-align:center;
	padding: 82px 0 0;
}

#form_fondgauche{
	background: url(../img/logos/recherche_background_left.gif) no-repeat;
	height: 54px;
	width: 15px;
	float: left;}


#form_fonddroite{background: url(../img/logos/recherche_background_right.gif)
	no-repeat;
	height: 54px;
	width: 15px;
	float: left;}

#form_recherche{background: url(../img/logos/recherche_background_center.png);
	float: left;
	height: 54px;
	width: 343px;
	padding-top: 8px;
}

#form_recherche input{
	border: none;
	width: 85%;
	float: left;
	margin: 0 6px 0 0;
	color: black;
	letter-spacing: 1.1px;
	height: 38px;
	font-size: 1.1em;
}

#form_recherche input:focus{
	-webkit-box-shadow:inset 0 0 2px 0 #B5B5B5;
	box-shadow:inset 0 0 2px 0 #B5B5B5;
}

#form_recherche button{
	padding: 3px 5px 3px 3px;
	border: none;
	background: #1c146b;
	width: 40px;
	transition: transform ease 0.4s;
	margin-right: -18px;
}

#form_recherche button:hover{
	-webkit-box-shadow: 0 0 0px 3px #FF0;
	box-shadow: 0 0 0px 3px #FF0;
}

#form_recherche button:active{
	transform: scale(0.9);
	-webkit-box-shadow: scale(0.9);
	box-shadow: inherit;
}


/*          //////////////////////////////////////////////////////////////////          */







/*          /////////          Barre de Menu principale          /////////          */

header nav{
	margin-bottom: 0;
}

header nav>ul>li>a{
	text-transform: uppercase;
	font-weight: bold;
}

header nav a{
	display: block;
	color: #1c146b;
	text-align: center;
	padding: 0 !important;
	line-height: 30px;
	font-size: 1.4em;
}

header nav> ul > li:hover{
	background: url(../img/icons/puce_menu.png) 95% 38% no-repeat;
	color: #1c146b;
}

header nav>ul>li:hover > a{
	text-shadow: 0px -2px 3px #1C146b;
	color: #ff0;
	text-decoration: none;
	background: -moz-radial-gradient(center, ellipse cover, rgba(28,20,107,1) 9%, rgba(255,255,255,0) 68%);
	background: -webkit-radial-gradient(center, ellipse cover, rgba(28,20,107,1) 9%,rgba(255,255,255,0) 68%);
	background: radial-gradient(ellipse at center, rgba(28,20,107,1) 9%,rgba(255,255,255,0) 68%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1c146b', endColorstr='#00ffffff',GradientType=1 );
}

header nav>ul>li:first-child:hover a, header nav>ul>li:first-child:hover{
	background: none;
}

header nav ul{
	margin: 0;
}

header nav > ul >li{
	border-left: solid 1px #1c146b;
}

header nav ul >li{
	list-style-type: none;
	margin: 5px 0 0;
}

header nav >ul >li:first-child, header nav > ul > li:nth-child(2){
	border: none;
}


/*          //////////////////////////////////////////////////////////////////          */








/*          /////////          Mega Menu          /////////          */

#contenuentete, #contenuentete>nav, #contenuentete>nav>ul, #contenuentete>nav>ul>li{
	position: static !important;
}

/*style general des megamenus*/
.megamenu{
	position: absolute;
	top: 210px;
	left: 0;
	right: 0;
	border-bottom: solid yellow 5px;
	font-weight: normal;
	border-radius: 0;
	background: white;
	-webkit-box-shadow: 0 10px 10px #000000;
	box-shadow: 0 6px 8px -3px #000000;
	min-height: 150px;
	margin-top: 0;
	padding: 10px 0 20px;
	text-transform: none;
	visibility: hidden;
	opacity: 0;

	/*délai pour laisser le .megamenu affiché après le hover*/
	-webkit-transition-delay: 0.4s;
	-moz-transition-delay: 0.4s;
	-ms-transition-delay: 0.4s;
	-o-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

header nav ul > li:hover > .megamenu{
	visibility: visible;
	opacity: 1;

	/*transition et délai pour afficher le .megamenu au hover insistant*/
	-webkit-transition: all ease 0.3s 0.25s;
	-moz-transition: all ease 0.3s 0.25s;
	-ms-transition: all ease 0.3s 0.25s;
	-o-transition: all ease 0.3s 0.25s;
	transition: all ease 0.3s 0.25s;
}

/*annule le padding naturel de ul*/
.categories{
	/*border-right: 1px solid lightgray;*/
	padding-left: 0;
}
.applications{
	border-left: 1px solid lightgray;
	padding-left: 0;
}

.megamenu h6{
	text-align: center;
	min-height: 20px;
	line-height: 20px;
	color: #333;
	margin-bottom: 10px;
	border-bottom: 1px solid lightgray;
}

.megamenu_gauche:hover h6, .megamenu_droite:hover h6{
	color: white;
	background: #1C146B;
	font-weight: bold;
	transition: background ease 1.5s;
}

.megamenu .row >div > ul >li:hover{
	background-color: rgba(28,20,107,0.03);
	transition: background ease 0.5s;
}

.megamenu_gauche h4{
	margin: 5px;
}

.megamenu_gauche h4 a{
	font-weight: bold;
	text-transform: uppercase;
	font-size: 0.9em;
	color: #1c146b;
}

.megamenu ul> li{
	border: none;
	margin: 0 0 5px;
}

.megamenu ul>li>ul{
	padding-left: 0;
}

.megamenu ul>li>ul>li{
	padding-left: 30px;
}

.megamenu ul>li>ul>li:hover{
	background: url(../img/icons/puce_bleu.gif) no-repeat 20px 0;
	transition: background ease 0.5s;
}

.megamenu a{
	color: #888;
	text-transform: capitalize;
	font-size: 0.8em;
	line-height: 1em;
	text-align: left;
}

.megamenu a:hover{
	color: #1C146B;
}

.megamenu_droite > ul > li{
	padding: 0 0 5px;
	margin: 0 0 5px;
}


.megamenu_droite h4{
	margin: 0 0 5px;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 20px;
	font-style: italic;
	color: #1c146b;
	padding-left: 10px;
	background-repeat: no-repeat;
	background-position: 10px 5px;
}

.megamenu_droite h4 img{
	margin: 2px 5px 0 0;
	float: right;
	height: 16px;
}

.megamenu_droite > ul > li:hover h4{
	color: white;
	background-color: #1C146B;
	background-repeat: no-repeat;
	background-position: 95% 2%;
	transition: background-color ease 0.5s;
}

.megamenu_droite a{
	font-style: italic;
	line-height: 0.8em;
}

/*          /////////         mise en page du megamenu assemblage        /////////          */

#megamenu_assemblage>p:first-child{
	margin-top: 20px;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
}

#megamenu_assemblage>p:first-child>img:first-child{
	height:100px;
	margin-right: 30px;
}


#megamenu_assemblage img.deco{
	width:12%;
	margin-bottom: 20px;
}

#megamenu_assemblage>p:nth-of-type(3){
	/*width: 60%;*/
	line-height: 2em;
	margin: auto;
	margin-bottom: 20px;
}

#megamenu_assemblage a.btn{
	line-height: 20px;
	font-size: 12px;
	padding: 5px !important;
}

#megamenu_assemblage a.btn:hover{
	color: #FF0;
	background-color: #1C146B;
}
/*          //////////////////////////////////////////////////////////////////          */



/*          /////////         Styles pour le Footer        /////////          */


footer{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

#fresque{
	background: url(../img/logos/fresque_footer.png) no-repeat center;
	background-size: 1200px;
	background-position: center 100%;
	height: 160px;/*
	-webkit-box-shadow: inset 0 -6px 5px -5px #000000;
	box-shadow: inset 0 -6px 5px -5px #000000;*/
}

#fond_footer{
	/*background-color: #252432;*/
	background-color: #171435;
	z-index: 999;
}

#contenu_footer{
	color: white;
	padding-top: 15px;
}

footer h6{
	border-bottom: solid 1px #FF0;
	line-height: 1.5em;
	font-size: 1.4em;
	font-weight: bold;
}

footer .bloc_info{
	padding: 0;
 }

footer .bloc_info:nth-of-type(-n+4) h6{
	width: 70%;
}

footer ul, #footer_compte p{
	padding: 0;
	list-style-type: none;
	font-family: 'lato';
	font-weight: lighter;
	font-size: 1.2em;
}

footer ul li a{
	display: block;
}

footer ul li a:hover{
	transition: none;
}

footer ul li{
	position: relative;
}

footer ul li img{
	-moz-transform: scale(0);
	-webkit-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	-moz-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	-ms-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	-o-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.400);
	visibility: hidden;
	position: absolute;
	right: 0;
	top: 8px;
}

footer ul li:hover img{
	transform: scale(1);
	visibility: visible;
}

.bloc_info p > a {
	display: inline-block;
	margin-right: 10px;
}

#footer_compte a{
	display: block;
	padding: 0;
	max-width: 90%;
	font-size: 0.8em;
	font-weight: bold;
	margin: auto;
	height: 50px;
	line-height: 50px;
	margin-bottom: 15px;
	border: solid 2px #BBB;
	-moz-border-image: -moz-linear-gradient(-80deg, rgba(255,255,255,1) 4%, rgba(127,127,127,1) 32%, rgba(255,255,255,1) 40%, rgba(255,255,255,1) 90%, rgba(127,127,127,1) 100%);
	-webkit-border-image: -webkit-linear-gradient(-80deg, rgba(255,255,255,1) 4%, rgba(127,127,127,1) 32%, rgba(255,255,255,1) 40%, rgba(255,255,255,1) 90%, rgba(127,127,127,1) 100%);
	border-image: linear-gradient(-80deg, rgba(255,255,255,1) 4%, rgba(127,127,127,1) 32%, rgba(255,255,255,1) 40%, rgba(255,255,255,1) 90%, rgba(127,127,127,1) 100%);
	border-image-slice: 1;
}

#footer_compte>div:first-of-type a{
	background-color: #ECE211;
	text-shadow: 0 0 3px gray;
}

#footer_compte>div:nth-of-type(2) a{
	background-color: #213f83;
}

footer img{
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

footer img:hover{
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

#footer_compte a:hover{
	color: white !important;
	-webkit-box-shadow: 0 0 5px 2px #FFFFFF;
	box-shadow: 0 0 5px 2px #FFFFFF;
}

#footer_compte a:active{
	-webkit-box-shadow:inset 0 0 10px #000;
	box-shadow:inset 0 0 10px #000;
}

#form_recherche_footer{
	height: 50px;
	margin: 30px 0 15px;
	background-color: white;
	border: none;
/*    -webkit-border-radius: 15px;
	border-radius: 15px;*/

}

#form_recherche_footer input{
	margin-left: 15px;
	height: 100%;
	width: 75%;
	border: none;
	padding: 0;
	color: #333;
	line-height: 38px;
}

/*#form_recherche_footer input:focus{
	background: #EEE;
}*/

#form_recherche_footer button{
	-webkit-border-radius: 30%;
	border-radius: 10%;
	background: #252432;
	padding: 3px;
	border: none;
	height: 45px;
	margin: 3px 5px 0 0;
}

#form_recherche_footer button:hover{
	-webkit-box-shadow: 0 0 0px 2px #FF0;
	box-shadow: 0 0 0px 2px #FF0;
}

#form_recherche_footer button:active{
	transform: scale(0.95);
	-webkit-box-shadow: scale(0.95);
	box-shadow: inherit;
}

#form_recherche_footer button img{
	height: 35px;
	padding: 0 3px;
}

#bas_footer{
	margin-top: 25px;
	border-top: solid 1px #FF0;
	color: white;
	font-size: 0.8em;
	min-height: 70px;
	padding: 10px 0;
}

#bas_footer img{
	margin-right: 5px;
}

#bas_footer div:first-child span{
	display: inline-block;
	margin: 0 30px;
}





/*          /////////         Styles pour le centre de page       /////////          */
#page{
	position: relative !important;
	min-height: 100%;
	/*à régler en fonction de la hauteur du footer pour chaque type d'ecran*/
	padding-bottom: 650px;
	background: -moz-linear-gradient(top, rgba(3,11,43,1) 0%, rgba(125,129,146,0.63) 16%, rgba(255,255,255,0) 33%);
	background: -webkit-linear-gradient(top, rgba(3,11,43,1) 0%,rgba(125,129,146,0.63) 16%,rgba(255,255,255,0) 33%);
	background: linear-gradient(to bottom, rgba(3,11,43,1) 0%, rgba(255,255,255,0) 50%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#030b2b', endColorstr='#a1ffffff',GradientType=0 ) ;
	/*background-color: #1C146B;*/
/*	background: -moz-radial-gradient(center, ellipse cover,  rgba(255,255,255,0.52) 57%, rgba(192,192,192,0.52) 75%, rgba(104,104,104,1) 100%);
	background: -webkit-radial-gradient(center, ellipse cover,  rgba(255,255,255,0.52) 57%,rgba(192,192,192,0.52) 75%,rgba(104,104,104,1) 100%);
	background: radial-gradient(ellipse at center,  rgba(255,255,255,0.52) 57%,rgba(192,192,192,0.52) 75%,rgba(104,104,104,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#85ffffff', endColorstr='#686868',GradientType=1 );*/
}

#principal{
	padding-top: 15px;
	padding-bottom: 35px;
	background: white;
	min-height: 300px;
	font-size: 14px;
/*	-webkit-box-shadow: 0 0 20px rgba(0,0,0,0.6);
	box-shadow: 0 0 20px rgba(0,0,0,0.6);*/
}
/*          //////////////////////////////////////////////////////////////////          */






/*          /////////         Styles pour le Fil d'Ariane      /////////          */


#fil_dariane{
	color: #BBB;
	font-style: italic;
	font-size: 0.7em;
	/*margin-bottom: 10px;*/
}

#fil_dariane a{
	color: #333;
}

#fil_dariane a:nth-of-type(n+2):before{
	content: " > "
}

#fil_dariane a:hover{
	display: inline-block;
	background: white;
	color: #1c146b;
	letter-spacing: 1px;
	font-style: normal;
}


/*          //////////////////////////////////////////////////////////////////          */




/*          /////////         Styles pour la Sidebar       /////////          */

/*#sidebar{
	padding: 0;
}*/

#sidebar_contenu{
	padding: 10px 0 1px;
	background: #1C146B;
	color: white;
	border-radius: 0 0 10px 10px;
}

#sidebar_contenu:hover #titre_filtre{
	color: #FF0;
}

#titre_filtre{
	text-transform: uppercase;
	margin-top: 10px;
}

#sidebar_contenu:hover div{
	display: block !important;
}

#filtres{
	padding: 10px;
}

#filtres .h4{
	border-bottom: solid 2px #FF0;
}

/*#filtres .h6{
	border-bottom: solid 1px white;
}*/

#filtres ul{
	list-style-type: none;
	padding-left: 5px;
}

#filtres a.active{
	color: white;
	line-height: 2em;
}

#filtres a.active:hover{
	padding-left: 5px;
	text-decoration: line-through;
}

#filtres a.active:hover .glyphicon{
	color: #FF0;
	visibility: visible;
}

#filtres a{
	display: block;
	padding-right: 5px;
	border-radius: 2px
}

#filtres a:hover{
	background-color: #E7E7F0;
	color: #1C146B;
}

#filtres ul{
	background: white;
	max-height: 90px;
	overflow: auto;
	box-shadow: inset 0 0 2px black;
	padding: 10px;
}

/*          //////////////////////////////////////////////////////////////////          */








/*          /////////         Styles pour le Listing articles public       /////////          */

#listing_zone h1{
	font-size: 22px;
	margin: 0;
}

#listing_zone h1 > strong{
	font-size: 25px;
	font-weight: 900;
}

#listing_zone hr{
	margin: 5px 0;
}

#listing_zone .nbr_pages{
	color: #999;
	font-style: italic;
	margin-bottom: 10px;
}

#article_zone{
	position: relative;
}

#article_zone article{
	padding: 15px;
	margin-bottom: 60px;
	transition: ease 0.5s;
}

#listing_zone article:hover{
	box-shadow: 0 0 10px;
}

#zone_categories article{
	margin-bottom: 30px;
}

#article_zone article h2, #zone_categories article h2{
	margin: 0;
	margin-bottom: 5px;
	font-size: 0.9em;
	text-transform: uppercase;
	height: 27px;
	overflow: hidden;
	color: #1C146B;
}

#article_zone article hr, #zone_categories article hr{
	margin: 0;
}

#article_zone article small, #zone_categories article small{
	display: block;
	font-size: 0.7em;
	color: #AAA;
	font-style: italic;
}

.img_block{
	height: 191px;
	/*position pour faire apparaitre la div article_ajoute en absolu sur la photo*/
	position: relative;
}

.img_block img{
	display: block;
	margin: auto;
	max-width: 100%;
	max-height: 191px;

	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

.img_block .glyphicon-zoom-in{
	visibility: hidden;
	opacity: 0;
	position: absolute;
	padding: 10px;
	-webkit-border-radius: 10% 10% 10% 0;
	border-radius: 10% 10% 0% 10%;
	line-height: 30px;
	font-size: 30px;
	color: lightgray;
	background: rgba(0, 0, 0, 0.5);
	-webkit-transition-delay: 1s;
	-moz-transition-delay: 1s;
	-ms-transition-delay: 1s;
	-o-transition-delay: 1s;
	transition-delay: 1s;
	-webkit-transition: opacity 0.5s ease;
	-moz-transition: opacity 0.5s ease;
	-ms-transition: opacity 0.5s ease;
	-o-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
}

.img_block> a:hover + .glyphicon-zoom-in, .img_block .glyphicon-zoom-in:hover{
	visibility: visible;
	opacity: 1;
}

.img_block .promo_pad{
	position: absolute;
	bottom: 20px;
	left: 10px;
	-moz-transform: rotate(-20deg);
	-webkit-transform: rotate(-20deg);
	-o-transform: rotate(-20deg);
	-ms-transform: rotate(-20deg);
	transform: rotate(-20deg);
	padding: 5px;
	max-width: 80px;
	font-size: 1.5em;
	line-height: 35px;
	background-color: rgba(255,255,255,0.8);
	-webkit-border-radius: 50%;
	border-radius: 22px;
	-webkit-box-shadow: -1px -1px 3px #000000;
	box-shadow: -1px -1px 3px #000000;
	border: 3px #F2686C solid;
	color: #F2686C;
}

.img_block .promo_pad.offer{
	box-shadow: -1px -1px 3px #000000;
	border: 3px #FF0 solid;
	color: #F2686C;
	background-color: rgba(28,20,107,0.7);
	color: white;
	bottom: 40px;
	font-size: 1.2em;
	line-height: 30px;

	border-radius: 0px;
}

.img_block .promo_pad.barre{
	background: -moz-linear-gradient(20deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 48%, rgba(242,104,108,1) 49%, rgba(242,104,108,1) 52%, rgba(255,255,255,1) 55%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(20deg, rgba(28,20,107,0) 0%,rgba(28,20,107,1) 48%,rgba(242,104,108,1) 49%,rgba(242,104,108,1) 52%,rgba(255,255,255,1) 55%,rgba(255,255,255,0) 98%);
	background: linear-gradient(20deg, rgba(255,255,255,0.8) 0%,rgba(255,255,255,0.8) 48%,rgba(242,104,108,1) 49%,rgba(242,104,108,1) 52%,rgba(255,255,255,0.8) 55%,rgba(255,255,255,0.8) 100%);
	/*text-decoration: line-through;*/
}

.article_ajoute{
	z-index: 1000;
	display:block;
	position: absolute;
	top: 0;
	width: 100%;
	padding: 10px;
	/*background-color: rgba(255,255,255,0.9);*/
	-webkit-border-radius: 10px 0;
	border-radius: 10px 0;
	-webkit-box-shadow: 0px 0px 5px #000000;
	box-shadow: 0px 0px 5px #000000;
	font-size: 1.5em;
	border: 3px solid #FF0;
	background: #1C146B;
	color: white;
	opacity: 0.8;
	transition: ease 1s;
}
.article_ajoute:hover{
	color: white;
	opacity: 1;
}


.article_ajoute img{
	width: 35px !important;
	padding: 3px;
}

p.ref_listing{
	margin: 0;
	font-size: 0.7em;
	overflow: hidden;
}

.purchase_zone_1{
	position: relative;
	padding-right: 0;
	padding-top: 5px;
}

.purchase_zone_2{
	padding: 37px 0 0 15px;
}

.purchase_zone_3{
	padding-left: 0;
	position: absolute;
	right: 0;
	bottom: 0;
	color: #1C146B;
	font-size: 0.6em;
	width: 27%;
}

.purchase_zone_1 label{
	-webkit-border-radius: 5px 5px;
	border-radius: 5px 5px 0 0;
	margin-bottom: 0px;
	padding: 0 10px;
	line-height: 18px;
	font-size: 0.6em;
	font-style: italic;
	font-weight: inherit;
}

.purchase_zone_1 .degressif_label{
	background: #1C146B;
	color: white;
	font-weight: lighter;
	border: 1px solid;
}


.purchase_zone_1 .volume_label{
	background: white;
	color: #1C146B;
	border: solid 1px #EEE;
	text-transform: capitalize;

}

.purchase_zone_1 label:hover{
	cursor:pointer
}


.purchase_zone_1 .span-orange{
	display: inline-block;
	color: orange;
	margin-left: 10px;
}

.purchase_zone_1 .degressif_panel{
	display: none;
	width: 165%;
	position: absolute;
	z-index: 100;
	background: white;
	border: solid 1px #CCC;
	-webkit-border-radius: 0 5px 5px;
	border-radius: 0 5px 5px;
	-webkit-box-shadow: 3px 3px 3px 0 #808080;
	box-shadow: 3px 3px 3px 0 #808080;
	padding: 5px;
	font-size: 0.7em;
}

.purchase_zone_1 .degressif_panel form h5{
	background: #F0F0F0;
}

.purchase_zone_1 .degressif_panel form button span{
	margin: 0;
}

.purchase_zone_1 input:checked ~ .degressif_panel{
	display: block;
}

.degressif_panel table{
	font-size: 1.2em;
	width: 100%;
}

.degressif_panel tr{
	/*border-bottom: solid 1px #CCC;*/
	vertical-align: top;
}

.degressif_panel tr:nth-child(2n){
	background-color: #F0F0F0
}

.degressif_panel td{
	padding: 10px;
	line-height: 1em;
	color: #1C146B;
	font-weight: bold;
}

.degressif_panel td:first-child{
	width: 40%;
	padding-left: 5px;
}

.degressif_panel table span{
	font-size: 0.7em;
	color: #666;
	font-style: italic;
	font-weight: normal;
}

.purchase_zone_1 .price_type{
	margin-top: 22px;
	margin-bottom: 0;
}

.purchase_zone_1 .unit_price{
	font-size: 1.5em;
	line-height: 0.9em;
	margin-top: 9px;
	color: #1C146B;
}

.purchase_zone_1_fiche .unit_price{
	font-size: 3em;
}

.purchase_zone_1 .unit_price .devise{
	display: inline-block;
	margin-left: 5px;
	font-size: 0.7em;
}

.purchase_zone_2 .stock_status img{
	width: 15px;
	margin-right: 3px
}

.purchase_zone_2 .stock_status{
	font-size: 0.8em;
	color: #1C146B;
	font-style: italic;
	text-transform: uppercase;
}

.purchase_zone_2 .stock_status:hover{
	cursor:help
}

.purchase_zone_2 a.btn{
	margin: 18px auto 0;
	color: white;
	line-height: 25px;
	height: 25px;
	font-size: 0.7em;
	text-shadow: 1px 1px 8px #050505;
	background: rgb(243,236,103);
	background: -moz-linear-gradient(-45deg, rgba(243,236,103,1) 0%, rgba(243,236,103,1) 51%, rgba(237,226,17,1) 51%, rgba(237,226,17,1) 100%);
	background: -webkit-linear-gradient(-45deg, rgba(243,236,103,1) 0%,rgba(243,236,103,1) 51%,rgba(237,226,17,1) 51%,rgba(237,226,17,1) 100%);
	background: linear-gradient(167deg, rgba(243,236,103,1) 0%,rgba(243,236,103,1) 51%,rgba(237,226,17,1) 51%,rgba(237,226,17,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3ec67', endColorstr='#ede211',GradientType=1 );
}

.purchase_zone_2 a.btn:hover{
	-webkit-box-shadow: 0 0 5px 0 #1C146B;
	box-shadow: 0 0 5px 0 #1C146B;
}

.purchase_zone_2_pro{
	padding-left: 15px !important;
	min-height: 85px;
	width: 60% !important;
}

.purchase_zone_3 > div:first-child{
	border: solid #1c146B 2px;
	border-bottom: none;
}

.purchase_zone_3 .panier{
	display: block;
}

.purchase_zone_3 .panier:hover, .purchase_zone_3 button:hover{
	-webkit-box-shadow: 0 0 5px 0 #1C146B;
	box-shadow: 0 0 5px 0 #1C146B;
}

.purchase_zone_3 .panier:active, .purchase_zone_3 button:active{
	-webkit-box-shadow: none;
	box-shadow: none;
}


.purchase_zone_3 .panier img{
	background-color: #1C146B;
	width: 100%;
}

.purchase_zone_3 label{
	margin: 0;
}

.purchase_zone_3 form.recond_panel{
	visibility: hidden;
	position: absolute;
	top: -121px;
	right: 0;
	/*bottom: -10px;*/
	padding: 10px;
	z-index: 100;
	background: white;
	-webkit-box-shadow: 0 0 10px 0 #9C9C9C;
	box-shadow: 0 0 10px 0 #9C9C9C;
	-webkit-border-radius: 0 10px 0px 10px;
	border-radius: 0 10px 0px 10px;
	width: 370%;
	height: 210px;
	/*overflow: hidden;*/
	opacity: 0;
	-webkit-transition: opacity 0.5s ease-out;
	-moz-transition: opacity 0.5s ease-out;
	-ms-transition: opacity 0.5s ease-out;
	-o-transition: opacity 0.5s ease-out;
	transition: opacity 0.5s ease-out;
}

.purchase_zone_3 input:checked ~ form.recond_panel{
	visibility: visible;
	opacity: 1;
}


.purchase_zone_3_pro{
	width: 50% !important;
}

.purchase_zone_3_pro input{
	width: 100%;
	font-size: 1.5em;
}

.purchase_zone_3_pro button{
	width: 100%;
	font-size: 1.2em;
	color: white;
	background: #1C146B;
	background: -moz-linear-gradient(-45deg, #3e3781 0%, #3e3781 50%, #1c146b 50%);
	background: -webkit-linear-gradient(-45deg, #3e3781 0%,#3e3781 50%,#1c146b 50%);
	background: linear-gradient(165deg, #3e3781 0%,#3e3781 50%,#1c146b 50%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3e3781', endColorstr='#1c146b',GradientType=1 );
}

.purchase_zone_3_pro button:hover{
	color: white;
}

.purchase_zone_3_pro button:hover .glyphicon{
	color: #FF0;
}

.recond_panel > :first-child{
	width: 50%;
	height: 30px;
	background: #1C146B;
	color: white;
	font-size: 1.2em;
	padding: 8px 0 0 5px;
}

.recond_panel > :nth-child(2){
	width: 50%;
	height: 30px;
	padding-top: 6px;
	color: #666;
	font-size: 1.4em;
}

.recond_panel > div:nth-of-type(4){
}

.recond_left_zone{
	width: 20%;
	padding-top: 20%;
	margin-right: 2%;
	float: left;
}

.recond_right_zone{
	width: 78%;
	float: left;
	padding-top: 20px;
	padding-right: 5px;
	font-size: 1.1em;
}

.recond_right_zone label{
	width: 85%;
	margin-bottom: 10px;
}

.recond_right_zone input{
	width: 10%;
}

.recond_right_zone img{
	background: inherit;
	width: 10px;
}

.recond_right_zone span{
	color: orange;
}

.recond_right_zone label.fermer{
	margin: 0;
	width: inherit;
}

/*pagination*/
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
	background-color: white;
	color: #1C146B;
	border-color: #1C146B;
}

.pagination > li > a,
.pagination > li > span {
	background-color: #D4D5E2;
	color: #1C146B;
}

.pagination > li > a:hover, .pagination > li > span:hover {
	background-color: white;
	border-color: #FF0;
	font-weight: bold;
}

/*          //////////////////////////////////////////////////////////////////          */






/*          /////////         Styles pour la page article       /////////          */


#fiche_gauche{
	margin-top: 20px;
}

#zone_images .img_block{
	height: inherit;
	margin-bottom: 15px;
}

#zone_images .img_block img{
	max-height: inherit;
}

#zone_images .img_block #no_img{
    position: absolute;
    top: 45%;
    width: 100%;
    color: #1C146B;
    font-size: 2em;
    transform: rotate(-45deg);
}

#zone_images .img_block img.no_img{
	border: dotted 2px lightgray;
}

#zone_images .img_block a:hover{
	cursor: zoom-in;
}

#thumbnails_block{
	margin-bottom: 20px;
}

#thumbnails_block a{
	position: relative;
	-webkit-box-shadow: 5px 5px 10px -2px #000000;
	box-shadow: 2px 2px 4px -3px #000000;
	width: 18%;
	height: auto;
	margin: 1%;
	float: left;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

#thumbnails_block a:hover{
	-webkit-box-shadow: 0 0 6px #000000;
	box-shadow: 0 0 6px #000000;

	cursor:zoom-in;
}

#thumbnails_block a.video{
	-webkit-box-shadow: 0 0 0px 1px #1C146B;
	box-shadow: 0 0 0px 1px #1C146B;
}

#thumbnails_block a.video span{
	position: absolute;
	color: #1C146B;
	font-size: 1.6em;
	-webkit-box-shadow: 0 0 0 1px #1C146B;
	box-shadow: 0 0 0 1px #1C146B;
	background-color: rgba(255,255,255, 0.5);
	top: 16px;
	left: 29%;
	padding: 5px;
	padding-left: 8px;
	border-radius: 50%;

	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}

#thumbnails_block a.video:hover{
	 cursor: pointer;
}


#thumbnails_block a.video:hover span{
	background: rgba(28,20,107, 0.5);
	color: #FF0;
}

#thumbnails_block a:nth-of-type(5n+6){
	clear: left;
}

#thumbnails_block a:active{
	-webkit-box-shadow: inherit;
	box-shadow: inherit
}

#thumbnails_block a img{
	display: block;
	margin: auto;
}

.purchase_zone{
	position:relative;
}

.purchase_zone_1_fiche{
	width: 50%;
}

.purchase_zone_1_degressif{
	width: 100%;
	padding-right: 15px;
	padding-top: 30px;
}

.purchase_zone_1_degressif .degressif_panel{
	display: block;
	position: inherit;
	font-size: 1em;
	box-shadow: none;
	border: none;
	width: 100%;
	padding: 10px 0;
}

.purchase_zone_1_degressif label{
	line-height: 2em;
	font-size: 1em;
	width: 100%;
}

#fiche_gauche .purchase_zone_2 {
	padding-top:0;
	padding-left: 15px;
}

#fiche_gauche .purchase_zone_3_pro{
	position: inherit;
}

.purchase_zone_3_fiche{
	width: 22%;
}

.purchase_zone_3_fiche input{
	width: 99%;
	font-size: 1.5em
}

.recond_panel_fiche{
	margin: 15px 15px 5px;
	border: solid #1C146B;
	border-width: 0 1px 1px;
}

.recond_panel_fiche > div:nth-child(-n+2){
	font-size: 1em;
}

.purchase_zone_3_fiche, .purchase_zone_3_fiche_recond{
	top: -5px;
	width: 24%;
	height: 50px;
	z-index:0;
}

.purchase_zone_3_fiche button.panier, .purchase_zone_3_fiche_recond button.panier{
	padding: 0;
	background-color: #1C146B;
	width: 100%;
	margin-bottom: 15px;
}

.recond_panel_fiche .recond_left_zone{
	padding-top: 10%;
}

.recond_panel_fiche .recond_left_zone img{
	width: 80px;
}

.cotation_fiche{
	padding: 10px;
	background-color: #F0F0F0 !important;
}

.fiche_droite h1{
	color: #1C146B;
	font-size: 1.6em;
	/*min-height: 96px;*/
	margin-top: 0;
}

.fiche_droite h1 small{
	margin-top: 10px;
}

.etiquette_fiche{
	display: block;
	width: 35%;
	background: linear-gradient(171deg, rgba(243, 236, 103, 1) 0%, rgba(243, 236, 103, 1) 51%, rgba(237, 226, 17, 1) 51%, rgba(237, 226, 17, 1) 100%) repeat scroll 0 0;
	color: #1C146B;
	font-size: 1em;
	height: 40px;
	line-height: 40px;
	margin-top: 10px;
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
}

.fiche_droite .description{
	padding: 20px 5px;
	line-height: 1.5em;
	min-height: 275px;
}

.fiche_droite .pictos_block{
	margin-top: 20px;
}

.fiche_droite .pictos_supp a{
	margin-bottom: 15px;
}

.fiche_droite .pictos_block a{
	width: 11%;
	margin: 5px 5%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/*.fiche_droite .pictos_block a:nth-of-type(7n){
	margin-left: 0;
}*/

.fiche_droite .pictos_block a:hover{
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.pictos_block > span.glyphicon{
	/*margin-bottom: 10px;*/
	color: #1C146B;
}



.fiche_droite .pictos_block a img{
	width: 100%;
}


.pictos_block img.trame_picto {
    background: url(../img/pictos/applications/trame.svg) no-repeat;
    background-size: cover;
}


.fiche_droite .pictos_supp{
	display: none;
	clear: right;
}

.fiche_droite .tab_block{
	margin-top: 20px;
}

.fiche_droite .tab_block li{
	width: 33%;
}


.nav-tabs > li:last-child > a{
	border-radius: 4px 15px 0 0;
}

.fiche_droite .tab_block li > a{
	border: solid 1px #CCC;
}

.fiche_droite li.active a, .fiche_droite li.active a:focus{
	background: rgba(0, 0, 0, 0) linear-gradient(171deg, rgba(243, 236, 103, 1) 0%, rgba(243, 236, 103, 1) 51%, rgba(237, 226, 17, 1) 51%, rgba(237, 226, 17, 1) 100%) repeat scroll 0 0;
	color: #1c146b;
	border-color: white;
	border-bottom: #EDE211 1px solid;

}

#fiche_technique table td{
	border: none !important;
}

#fiche_technique table td:nth-child(3){
	width: 10%;
	padding-left: 0;
}

#fiche_technique .tab-pane:nth-of-type(n+2) td{
	width: 25%;
}

.table-striped > tbody > tr:nth-of-type(2n+1) {
	background-color: #f3f3f7;
}

/*section plus de la page article*/

#plus_zone{
	margin-bottom: 30px;
}

.comments_background{
	min-height: 290px;
	background: white;
	background: -moz-linear-gradient(top, rgba(230,230,239,1) 0%, white 15%, white 85%, rgba(230,230,239,1) 100%);
	background: -webkit-linear-gradient(top, rgba(230,230,239,1) 0%,white white 85%,rgba(230,230,239,1) 100%);
	background: linear-gradient(to bottom, rgba(230,230,239,1) 0%,white white 85%,rgba(230,230,239,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6e6ef', endColorstr='#e6e6ef',GradientType=0 );
}

.comments h4{
	margin-top: 30px;
	margin-right: 5%;
	margin-bottom: 30px;
	color: #1C146B;
	letter-spacing: 3px;
	font-size: 1.3em;
	width: 70%;
}

.comments_pictos{
	max-width: 100px;
}

.comments #bulle{
	margin-top: -15px;
}

.comments #ampoule{
	margin-top: -35px;
}

.comments .etiquette_fiche{
	width: 100%;
	margin-top: 0;
	padding-left: 30px;
}

.comments a.img_complementaire{
	display: block;
	float: left;
	width: 20%;
	padding: 5px;
	margin: 15px;
}









/*NOUVEAU CODE POUR LA MISE EN FORME DES balises et <table> GÉNÉRÉS PAR LE PLUGIN tinyMCE
ligne 1842 pour la page article*/
.description h2{
	font-size: 20px !important;
	margin-top: 20px !important;
	margin-bottom: 10px !important;
	font-weight: bold;
}

.description h3{
	font-size: 18px !important;
	font-weight: bold;
}

.description ul{
	list-style-image: url('assets/img/icons/puce_bleu.gif');
}

.description em{
	letter-spacing: 1px;
	color: #000;
}

/*mise en forme du tableau dans une "description"*/
.description table{
	margin: 30px auto;
	max-width: 90%;
	-webkit-box-shadow: 5px 5px 5px 0 #CCC;
	box-shadow: 5px 5px 5px 0 #CCC ;
	color: #000;
}
.description table th{
	border: 1px #1C146B ridge;
	padding: 5px 15px;
	color: #1C146B;
	background-color: #E7E7F0;
}
.description table td{
	border: 1px #1C146B ridge;
	padding: 15px 10px;
	background-color: #FAFAFA;
}
/*pour annuler le float sur l'élément apres un tableau en float*/
.description table + *{
	clear: both;
}

/*          //////////////////////////////////////////////////////////////////          */




/*          /////////         Styles pour la page Panier      /////////          */

#empty_basket{
	/*margin-top: 30px;*/
	padding: 15px;
}

#empty_basket .glyphicon-eye-close{
	margin-top: 15px;
	color: white;
	font-size: 3em;
}

#empty_basket label:hover{
	cursor: pointer;
}




#cartBreadcrumb{
	margin: 30px 0;
}
#cartLinks:before{
	content:" ";
	display: block;
	width: 50%;
	border-bottom: 1px solid rgba(28,20,107, 0.2);
	margin-top: 30px;
	margin-bottom: -30px;
}
#cartLinks .steps{
	position: relative;
	display: inline-block;
	width: 60px;
	height: 60px;
	line-height: 60px;
	margin-right: 10%;
	border-radius: 50%;
	box-shadow: inset 0 0 10px -2px rgba(28,20,107, 0.5);
	text-align: center;
	background: white;
	transition: ease 0.5s;
}
#cartLinks .steps:not(.stepBack){
	pointer-events: none;
	cursor: default;
}
#cartLinks .steps.stepOn{
	background-color: #EDE211;
	box-shadow: 0 0 5px rgba(0,0,0,0.5);
}
#cartLinks .steps.stepBack{
	background-color: #1C146B;
	box-shadow: none;
}
#cartLinks .steps.stepBack:after, #cartLinks .steps.stepOn:after{
	content:" ";
	display: block;
	margin-top: 8px;
	border-radius: 50%;
	height: 2px;
	background: black;
	opacity: 1;
	-webkit-transition: 0.5s ease;
	-moz-transition: 0.5s ease;
	-ms-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;
	filter: blur(5px);
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
}
#cartLinks .steps.stepBack:hover:after{
	opacity: 0;
}
#cartLinks .steps img{
  	max-width:70%;
}
/*#cartLinks .steps:not(a) img{
	opacity: 0;
}*/
#cartLinks a.steps:hover{
	box-shadow: 0 0 10px rgba(0,0,0, 0.8);
	transform: scale(1.1);
}
#cartLinks a.steps:active{
	box-shadow: none;
}




#lien_panier{
	position: absolute;
	height: 100%;
}

#lien_panier a{
	display: inline-block;
	height: 100%;
	color: #1C146B;
}

#lien_panier a:first-of-type{
	width: 110px;
}

#lien_panier a:nth-of-type(2), #lien_panier a:nth-of-type(3){
	width: 145px;
}

#lien_panier a:last-of-type{
	width: 110px;
}

#page_panier h1{
	font-size: 3em;
	color: #1C146b;
	letter-spacing: 3px;
}

.trash_zone{
	vertical-align: middle !important;
}

.apercu_article img{
	margin: 10px 10px 10px 0;
}

.apercu_article p{
	margin-bottom: 0;
	font-size: 0.8em;
}

.apercu_article .zone_ref{
	padding-top: 10px;
}

.apercu_article .zone_ref small:first-of-type{
	color: gray;
}

.apercu_article .zone_ref p:first-of-type{
	color: #1C146B;
}

.apercu_article .glyphicon{
	margin-top: 10px;
}

#page_panier tr .glyphicon-trash.visible-md{
	display: none;
	opacity: 0;
}

#page_panier tr:hover .glyphicon-trash.visible-md{
	display: block;
	opacity: 1;
	-webkit-transition: opacity 1s linear;
	-moz-transition: opacity 1s linear;
	-ms-transition: opacity 1s linear;
	-o-transition: opacity 1s linear;
	transition: opacity 1s linear;
}

.dispo_zone{
	font-size: 0.8em;
	vertical-align: middle !important;
	padding: 15px 0 !important;
}

.dispo_zone .glyphicon{
	font-size: 2em;
	margin-bottom: 10px;
}

.dispo_zone .glyphicon-question-sign{
	color: #F2686C;
}

.dispo_zone .glyphicon-exclamation-sign{
	color: #F5AE00;
}

.dispo_zone .glyphicon-ok-sign{
	color: #38B549;
}

.gestion_quantite .increment a{
	color: #1C146b;
	margin: 0 10px;
	line-height: 15px;
}

.gestion_quantite, .increment{
	vertical-align: middle !important;
}

.gestion_quantite .current_qty{
	float: right;
	font-size: 1.8em;
	color: #1C146B;
}

/*kit pour enlever l'apparence type number des input sur tous les navs*/
.gestion_quantite input[type=number] {
	-moz-appearance: textfield;
}
/* Chrome */
.gestion_quantite input::-webkit-inner-spin-button,
.gestion_quantite input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin:0;
}
/* Opéra*/
.gestion_quantite input::-o-inner-spin-button,
.gestion_quantite input::-o-outer-spin-button {
	-o-appearance: none;
	margin:0
}

/*.gestion_quantite input{
	float: right;
	width: 60%;
	margin:auto;
	height: 35px;
	font-size: 1.4em;
	text-align: center;
}*/

#page_panier tr:hover .gestion_quantite form{
	display: block !important;
}
#page_panier tr:hover .current_qty{
	display: none;
}

.presentation_prix span{
	color: #1C146B;
	font-size: 1.5em;
}

.presentation_prix span.cents{
	font-size: 1em;
}

.presentation_prix small{
	color: #999;
}

#recap_total{
	background-color: rgba(28, 20, 107, 0.1);
	padding: 15px;
	display: block;
	width: 100%;
}

#recap_total div:first-child{
	font-size: 1.5em;
	margin-bottom: 30px
}

#recap_total.presentation_prix span{
	font-size: 2.5em;
}

#recap_total.presentation_prix span.cents{
	font-size: 1.5em;
}

#recap_total.presentation_prix small{
	padding-right: 5px
}

#zone_reliquat{
	/*padding: 10px;*/
}

#zone_reliquat label{
	width: 90%;
	padding: 20px 10px 0;
}

/*#zone_reliquat input{
	width: 8%;
	height: 40px;
}*/


#basket_footer{
	position: relative;
	margin-bottom: 50px;
}




/*boutons de validation et retour panier*/

.valid_basket{
	background: -moz-linear-gradient(-45deg, #3e3781 0%, #3e3781 50%, #1c146b 50%);
	background: -webkit-linear-gradient(-45deg, #3e3781 0%,#3e3781 50%,#1c146b 50%);
	background: linear-gradient(165deg, #3e3781 0%,#3e3781 50%,#1c146b 50%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3e3781', endColorstr='#1c146b',GradientType=1);

	-webkit-border-radius: 15px 0 15px 15px;
	border-radius: 15px 0 15px 15px;

	border: none;
	margin: 15px 0;
	padding: 15px 20px;
	color: white !important;
	letter-spacing: 2px;
	font-size: 0.9em;
	text-align: left;

	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.valid_basket a{
	color: white;
}

.valid_basket:hover{
	-webkit-box-shadow: 0 0 10px #444;
	box-shadow: 0 0 10px #444;
	color: #FF0;
}

#page_panier .back_button:hover{
	background: #1C146B;
	color: #FF0;
}

.valid_basket:active, #page_panier .back_button:active{
	-webkit-box-shadow: none;
	box-shadow: none;
}

.valid_basket img{
	margin-top: 7px;
}

#page_panier .back_button{
	background-color: white;
	margin-top: 30px;
	margin-right: 25px;
	color: #1C146B;
	font-size: 1.5em;
	padding: 12px;
	border-radius: 0 15px 15px;
	border: solid 1px #1C146B;

	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

#direct_pay_button{
	margin-top: 30px;
	-webkit-border-radius: 15px 0 15px 15px;
	border-radius: 15px 0 15px 15px;
	border-color: #1C146B;
	padding: 15px;
	 -webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

#direct_pay_button span.glyphicon, .valid_basket span.glyphicon{
	color: #FF0;
}

#direct_pay_button:hover{
	background-color: #1C146B;
	color: white;
}







/*zone connexion dans le panier*/
#basket_connect{
/*	position: absolute;
	z-index: 1;
	left: 25%;
	top: 0;*/
	-webkit-box-shadow: 0 0 5px -2px #000000;
	box-shadow: 0 0 5px -2px #000000;
	background: white;
	padding: 15px;
	border: 3px solid #1C146B;
	-moz-border-image: -moz-linear-gradient(-45deg, rgba(28,20,107,1) 5%, rgba(255,255,255,1) 23%, rgba(28,20,107,1) 46%, rgba(255,255,255,1) 69%, rgba(28,20,107,1) 100%);
	-webkit-border-image: -webkit-linear-gradient(-45deg, rgba(28,20,107,1) 5%,rgba(255,255,255,1) 23%,rgba(28,20,107,1) 46%,rgba(255,255,255,1) 69%,rgba(28,20,107,1) 100%);
	border-image: linear-gradient(135deg, rgba(28,20,107,1) 5%,rgba(255,255,255,1) 23%,rgba(28,20,107,1) 46%,rgba(255,255,255,1) 69%,rgba(28,20,107,1) 100%);
	border-image-slice: 1;
}

#basket_connect > img{
	margin-bottom: 15px;
}

#basket_connect > p:nth-child(2){
	border-bottom: 2px solid #ECE211;
	padding-bottom: 10px;
}

#basket_connect a{
	display: block;
	font-size: 0.8em;
	font-weight: bold;
	height: 50px;
	line-height: 37px;
	border: none;
}

#basket_connect div:first-of-type a{
	background-color: #ECE211;
	color: white;
	text-shadow: 0 0 3px #1C146B;
}

#basket_connect div:nth-of-type(2) a{
	background-color: #1C146B;
	color: white;
}

/*          //////////////////////////////////////////////////////////////////          */





/*page_livraison*/

#page_panier h2{
	letter-spacing: 11px;
	font-size: 1.2em;
	line-height: 30px;
	border-bottom: solid 1px #EEE;
	margin-bottom: 15px;
}

.current_add h3{
	text-decoration: underline;
	font-size: 1.2em;
}

/*pour créer un scroll si adresse plus grandes*/
.current_add{
	height: 190px;
	overflow: auto;
	margin-bottom: 15px;
}

#zone_facturation, #zone_livraison{
	padding-top: 30px;
}

#zone_facturation .current_add > div{
	background: #1C146B url("../img/pictos/facturation.svg") no-repeat right;
	color: white;
}

#zone_livraison .current_add > div{
	background: white url("../img/pictos/livraison.svg") no-repeat right;
	color: #1C146B;
}

/*en relative pour placer le .corner*/
#zone_livraison .current_add > div, #zone_facturation .current_add > div{
	position: relative;
	padding: 1px 50px 1px 15px;
	font-size: 1.1em;
	background-size: 25%;
	background-position: 90% 60px;
	border: solid 3px #1C146B;
	min-height: 190px;
}

#zone_livraison .current_add > div{
	border: dashed;
}

.corner{
	position: absolute;
	right: -3px;
	top: -3px;
	height: 50px;
	width: 50px;
	background: rgb(85,79,144);
	background: -moz-linear-gradient(45deg, rgba(85,79,144,1) 50%, rgba(255,255,255,1) 50%);
	background: -webkit-linear-gradient(45deg, rgba(85,79,144,1) 50%,rgba(255,255,255,1) 50%);
	background: linear-gradient(45deg, rgba(85,79,144,1) 50%,rgba(255,255,255,1) 50%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#554f90', endColorstr='#ffffff',GradientType=1 );
}

.change_add, .create_add{
	border: solid 1px #EEE;
	padding: 1px 15px;
	margin-bottom: 5px;
}

.change_add .row{
	min-height: 95px;
	max-height: 190px;
	overflow: auto;
}

.change_add:hover .row, .create_add:hover{
	background-color: rgba(28, 20, 107, 0.1);

	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.change_add h3, .create_add h3{
	font-size: 1.1em;
	font-weight: lighter;
	color: #1C146B;
}

a.adress_choice_link{
	display: block;
	min-height: 75px;
	margin: 10px 0;
	font-size: 0.8em;
	padding: 5px;
	-webkit-border-radius: 2px;
	border-radius: 2px;;
}

a.adress_choice_link:hover{
	background-color: white;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a.adress_choice_link:hover:after{
	content:"\e062";
	font-family:"Glyphicons Halflings";
	position: absolute;
	top: 10px;
	right: 20px;
	font-size: 2em;
	font-style: italic;
	color: #FF0;
}

/*masquer le panneau de création d'adress, actif en jQuery*/
.create_add .collapse_panel{
	display: none;
}

.create_add form{
	margin: 20px 0;
}

.create_add form .btn_validation{
	background: #1C146B;
	background: -moz-linear-gradient(-45deg, #3e3781 0%, #3e3781 50%, #1c146b 50%);
	background: -webkit-linear-gradient(-45deg, #3e3781 0%,#3e3781 50%,#1c146b 50%);
	background: linear-gradient(165deg, #3e3781 0%,#3e3781 50%,#1c146b 50%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3e3781', endColorstr='#1c146b',GradientType=1 );
	-webkit-border-radius: 0 0 10px;
	border-radius: 0 0 10px;
	color: white;
	padding-left: 30px;
	padding-right: 30px;
}

.create_add form .btn_validation:hover{
	color: #FF0;
}

#zone_transport_form, #pay_zone{
	margin-top: 30px;
	color: #1C146B;
}

#zone_transport_form textarea{
	min-height: 80px;
	max-height: 200px;
	resize: vertical;
	font-size: 1.2em;
	border-color: #EEE;
	margin-bottom: 15px;
}

#zone_transport_form textarea:focus, #zone_transport_form textarea:hover{
	box-shadow:  0 0 5px #1C146B;
	border: none;
}

#zone_transport_form th{
	color: gray;
}

#zone_transport_form tr:last-child{
	border-bottom: solid 2px lightgray;
}

#pay_zone tr:last-child{
	border-bottom: solid 1px lightgray;
}

#zone_transport_form tr:hover input{
	margin: 0;
}

/*class jQuery pour cocher l'input au click sur la tr et ajouter un background*/
tr.jq_checked{
	background: -moz-linear-gradient(-45deg,  rgba(255,255,255,1) 67%, rgba(28,20,107,0.1) 100%);
	background: -webkit-linear-gradient(-45deg,  rgba(255,255,255,1) 67%,rgba(28,20,107,0.1) 100%);
	background: linear-gradient(135deg,  rgba(255,255,255,1) 67%,rgba(28,20,107,0.1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#1a1c146b',GradientType=1 );
}

#zone_transport_form .carrier_brand img{
	width: 50px;
}

#zone_transport_form .carrier_offer{
	padding: 0 40px;
	width: 250px;
}


#zone_transport_form .carrier_descr{
	padding-top: 15px;
}

#pay_zone .carrier_descr{
	text-align: middle;
}

#pay_zone .carrier_offer{
	vertical-align: middle;
	padding: 15px;
	width: 300px;
}

#pay_zone .carrier_offer img{
	margin: auto;
	width: 120px;
}

#pay_zone .pay_valid {
	position: relative;
	width: 220px;
	padding: 0;
}

#pay_zone .pay_valid a{
	position: absolute;
	bottom: 15px;
	width: 100%;
	margin-top: 0;
	padding: 5px 15px;
}

#zone_transport_form .carrier_descr q, #pay_zone .carrier_descr q{
	font-size: 0.7em;
	color: #AAA;
	width: 95%;
	display: block;
	text-align: justify;
}

#zone_transport_form .carrier_price{
	width: 240px;
	padding-left: 30px;
	font-size: 2em;
	vertical-align: middle;
}

#zone_transport_form .carrier_price.franco{
	font-size: 2.5em;
}


#zone_transport_form .cents{
   font-size: 0.6em;
}

#zone_transport_form .carrier_radios{
	padding: 0 30px;
	vertical-align: middle;
}

#zone_transport_form select{
	width: 100%;
	height: 50px;
	padding-left: 10px;
	margin-top: 0;
}

#zone_transport_form input[type="text"]{
	width: 100%;
	padding-left: 10px;
}

/*#zone_transport_form .carrier_radios input{
	height: 40px;
	width: 40px;
}*/

.required{
	box-shadow: 0 0 2px 1px red;
}


/*          //////////////////////////////////////////////////////////////////          */



/*page paiement*/

#zone_recap > div{
	margin-top: 20px;
	border-top: 3px solid #1C146B;
	border-bottom: 3px solid #1C146B;
	padding: 15px 30px;
}

#zone_recap table{
	margin: 0;
}

#zone_recap table th:nth-child(3){
	width: 160px;
}


#zone_recap table td{
	border: none;
	padding-top: 10px;
	line-height: 0.7em;
	color: #1C146B;
}

#zone_recap table td small{
	font-size: 0.6em;
}

#zone_recap .carrier_row td:nth-child(2){
	padding: 5px;
	width: 100px;
}

.table_legend{
	color: #AAA !important;
}

#ticket{
	position: relative;
	margin-top: -3px;
	margin-bottom: 40px;
	border: 3px solid #1C146B;
	border-top: none;
	background-color: white;
	padding: 0 30px 55px 15px;
	line-height: 3em;
	-webkit-border-radius: 0 0 15px 15px;
	border-radius: 0 0 15px 15px;
}

#ticket hr{
	margin-top: 0;
}

.sub_totals{
	color: #1C146B;
	font-size: 1.5em;
}

.totals{
	color: #1C146B;
	font-size: 2em;
	background-color: rgba(28,20,107, 0.1);
}

#ticket_corner{
	position: absolute;
	right: -3px;
	bottom: -3px;
	height: 50px;
	width: 50px;
	-webkit-border-radius: 15px 0 0;
	border-radius: 15px 0 0;

	background-color: white;
	background: -moz-linear-gradient(-135deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(85,79,144,1) 50%, rgba(85,79,144,1) 100%);
	background: -webkit-linear-gradient(-135deg, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 50%,rgba(85,79,144,1) 50%,rgba(85,79,144,1) 100%);
	background: linear-gradient(-45deg, rgba(255,255,255,1) 0%,rgba(255,255,255,1) 50%,rgba(85,79,144,1) 50%,rgba(85,79,144,1) 100%);
}

#zone_valid_buttons{
	padding-top: 30px;
}
/*          //////////////////////////////////////////////////////////////////          */



/*page récapitulatif*/

.recapitulatif h1{
	margin-bottom: 30px;
}

.recapitulatif #bapi{
	/*max-width: 100px;*/
}

.final_message{
	background: rgba(28, 20, 107, 0.05);
	padding: 20px;
	color: #1C146B;
	margin-top: 30px;
	margin-bottom: 30px;
	line-height:  30px;
}
#pay_modal {
	color: #1C146B;
	/*border: 4px ridge #1C146B;*/
}

#pay_modal img{
	margin: auto;
	margin-bottom: 20px;
}

.recapitulatif #zone_facturation .current_add > div{
	min-height: 130px;
	background-image: none;
}

/*          //////////////////////////////////////////////////////////////////          */









/*          /////////         Styles pour la page enregistrement de compte Pro       /////////          */

#registration h1{
	color: #1C146B;
	font-size: 3em;
	font-weight: bold;
	margin: 20px;
}

#registration h1>img{
	margin: 20px;
}

#registration h4{
	/*border-bottom: solid 1px lightgray;*/
	margin: 0;
	letter-spacing: 14px;
}



#registration form section{
	margin-bottom: 30px;
	-webkit-transition: background 0.8s ease-in-out;
	-moz-transition: background 0.8s ease-in-out;
	-ms-transition: background 0.8s ease-in-out;
	-o-transition: background 0.8s ease-in-out;
	transition: background 0.8s ease-in-out;
	}

#registration form section:hover, #registration form section:active{
	background-color: rgba(28, 20, 107, 0.05);
}

#registration .who_button{
	background-color: #DDD;
	color: #AAA;
	height: 40px;
	padding-top: 10px;
}

#registration .active_button{
	background-color: #1C146B;
	color: white;
}

#registration .active_button .glyphicon-ok{
	color: #FF0;
}

#registration #identification_zone a:hover{
	color: black;
	-webkit-box-shadow: 0 0 5px 0 #000000;
	box-shadow: 0 0 5px 0 #000000;
}


#registration label{
	color: #1c146b;
	font-weight: lighter;
}

#registration input:not([type=radio]){
	height: 40px;
	color: #1C146B;
}

#registration select{
	margin: 0;
	height: 40px;
}

#registration input:focus, #registration select:focus{
	-webkit-box-shadow: 0 0 10px -1px #1C146B;
	box-shadow: 0 0 10px -1px #1C146B;
	border-color: #1C146B;
}


/*definition des bulles alertes neutre, success et danger*/

span.help_text{
	display: block;
	min-height: 30px;
	line-height: 30px;
	padding: 5px 10px;
	margin-top: 5px;
	margin-bottom: 5px;
	border: solid 1px;
	-webkit-border-radius: 0 5px 5px 5px;
	border-radius: 0 5px 5px 5px;
	font-style: italic;
}

span.help_text_danger{
	border-color: #A94442;
	background-color: #EAE0E3;
	color: #A94442;
}

span.help_text_info{
   border-color: #1C146B;
   background-color: #E6E6EF;
   color: #1C146B;
}

span.help_text_success{
   border-color: #3c763d;
   background-color: #dff0d8;
   color: #3c763d;
}



#registration span.etoile{
	font-size: 1.3em;
	color: #1C146B;
}

#company_zone{
	margin-bottom: 0 !important;
}

#delivery_zone{
	margin-top: 15px;
}


#registration input[type="checkbox"]{
	height: inherit !important;
	margin: 0 0 30px 20px;
	-moz-transform: scale(1.7) skewX(6deg);
	-webkit-transform: scale(1.7) skewX(6deg);
	-o-transform: scale(1.7) skewX(6deg);
	-ms-transform: scale(1.7) skewX(6deg);
	transform: scale(1.7) skewX(6deg);
}

#registration #delivery_zone label:first-of-type{
	   font-style: italic;
}

#registration #delivery_zone input[type="checkbox"]:checked + label{
	font-style: inherit;
	font-weight: bold;
}

#registration input#delivery:checked ~ #delivery_panel{
	display: none;
}


#delivery_panel {
	border: 1px solid #1C146B;
	padding: 0 10px;
	margin-bottom: 15px;
	display: block;
	background: rgba(28, 20, 107, 0.05)
}

#delivery_panel .glyphicon-ok{
	font-size: 1.5em;
	color: #FF0;
	margin-left: 15px;
	background-color: rgba(28, 20, 107,0.3);
	border: 1px solid #1C146B;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

#registration>form>section:last-of-type{
	margin-bottom: 0;
}

#cookies_zone{
	position: relative;
}
#registration #cookies_zone input[type="checkbox"]{
	width: 10%;
	margin: 0;
	margin-top: 2%;
}

#registration #cookies_zone label{
	font-weight: bold;
	font-size: 0.8em;
	width: 86%;
	padding-right: 10px;
	border: solid 1px #C00;
}

#registration #cookies_zone input[type="checkbox"]:checked + label{
	border: solid 1px #1C146B;
	background: rgba(28, 20, 107, 0.05);
}

.bouton_submit{
	min-height: 60px;
	font-size: 1.7em;
	color: white;
	-webkit-border-radius: 15px 0 15px 15px;
	border-radius: 15px 0 15px 15px;
	background: #1C146B;
	background: -moz-linear-gradient(-45deg, #3e3781 0%, #3e3781 50%, #1c146b 50%);
	background: -webkit-linear-gradient(-45deg, #3e3781 0%,#3e3781 50%,#1c146b 50%);
	background: linear-gradient(165deg, #3e3781 0%,#3e3781 50%,#1c146b 50%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3e3781', endColorstr='#1c146b',GradientType=1 );
}

.bouton_submit:hover{
	-webkit-box-shadow: 0 0 5px 0 #000;
	box-shadow: 0 0 5px 0 #000;
}

.bouton_submit:active{
	-webkit-box-shadow:inset 0 0 5px #FFFFFF;
	box-shadow:inset 0 0 5px #FFFFFF;
}

#registration_button{
	width: 24%;
	margin-top: 40px;
}

/*          //////////////////////////////////////////////////////////////////          */






/*          /////////         Styles pour registration_results    /////////          */


#validation_zone h4{
	line-height: 50px;
	font-size: 1.5em;
}

#validation_zone h4.valid_pro{
	line-height: 50px;
	font-size: 1.4em;
	letter-spacing: 0.4em !important;
}

.glyph_group{
	display: inline-block;
	width: 180px;
}

.glyph_group .glyphicon-forward{
	width: 15px;
}

#validation_zone .success{
	color: green;
	font-size: 1.2em;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: solid 2px green;
	line-height:45px;
	padding-left: 10px;
}

#validation_zone .warning{
	color: orange;
	font-size: 1.2em;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: solid 2px orange;
	line-height:45px;
	padding-left: 12px;
}

#validation_zone .danger{
	color: #C00;
	font-size: 1.3em;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: solid 2px #C00;
	line-height:45px;
	padding-left: 10px;
}

#validation_zone p:last-of-type{
	margin-bottom: 70px;
	border: solid 1px #C00;
}

#link_zone h3{
	font-size: 1.4em;
	color: #1C146B;
	margin-bottom: 20px;
	padding-left: 9%;
}


#link_zone li{
	list-style-type: none;
	text-align: center;
	font-style: italic;
}

#link_zone li:hover{
	font-style: inherit;
	font-weight: bold;
}

#link_zone li div{
	min-height: 40px;
	margin-bottom: 10px;
}

#link_zone img{
	margin: 0 0 50px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

#link_zone li:hover img{
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-box-shadow: 2px 2px 4px 0 #707070;
	display: inline-block;
	box-shadow: 2px 2px 4px 0 #707070;
}

#link_zone img:active{
	box-shadow: inherit !important;
}




/*          //////////////////////////////////////////////////////////////////          */







/*          /////////         Styles pour PAGE informations et PAGE adresses    /////////          */

#page_infos_client{
	color: #1C146B;
}

.entete{
	margin-top: 30px;
}

#page_infos_client h1{
	width: 70%;
	margin: 0;
	margin-left: 15%;
	font-size: 1.8em;
}

#page_infos_client h1 img{
	margin-left: 3%;
}

#page_infos_client h1 .glyphicon{
	margin-left: 30px;
}

#page_infos_client .entete img{
	width: 40px;
}

#page_infos_client .entete a{
	display: inline-block;
	padding: 5px;
	border: 2px solid #1C146B;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

#page_infos_client .entete a:hover{
	border-color: #FF0;
}

.bandeau_client{
	background-color: #1C146B;
	color: white;
	font-size: 1.2em;
	margin: 0 0 20px;
	-webkit-border-radius: 15px 15px 0 0;
	border-radius: 15px 15px 0 0;
}

#page_infos_client .bandeau_client > span{
	display: inline-block;
	padding: 10px 0;
	font-weight: 100;
}

#page_infos_client .bandeau_client > span > span{
	font-weight: normal;
}

#page_infos_client .zone_informations{
	width: 85%;
	margin: auto;
	margin-bottom: 100px;
}

#page_infos_client .zone_informations h3{
	font-size: 1.4em;
	margin-top: 40px;
}

#page_infos_client .table-responsive{
	padding-top: 10px;
	background: -moz-linear-gradient(top, rgba(28,20,107,0.1) 0%, rgba(229,229,229,0) 76%);
	background: -webkit-linear-gradient(top, rgba(28,20,107,0.1) 0%,rgba(229,229,229,0) 76%);
	background: linear-gradient(to bottom, rgba(28,20,107,0.1) 0%,rgba(229,229,229,0) 76%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1a1c146b', endColorstr='#00e5e5e5',GradientType=0 );
	border: solid #1C146B;
	border-width: 0px 1px;
	margin-top: 30px;
}

#page_infos_client section .table-responsive:first-of-type{
	margin-top: 0px;
}

#page_infos_client .table{
	margin-bottom: 0;
}

#page_infos_client h5{
	margin-left: 15px;
}


#page_infos_client .table td{
	border-top: 0;
	padding-top: 10px;
}

#page_infos_client .table td:first-child{
	padding-left: 60px;
	font-weight: 100;
	width: 25%;
}

#page_infos_client .table td:nth-child(2){
	text-align: center;
	font-size: 1.4em;
	vertical-align: middle;
}

.table-hover > tbody > tr:hover {
	background-color: white;
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(28,20,107,0.1) 100%);
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(28,20,107,0.1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(28,20,107,0.1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#1a1c146b',GradientType=0 );
}

#page_infos_client input[type=checkbox]:checked + form{
	display: none;
}

#page_infos_client form{
	display: block;
	border: solid #1C146B;
	border-width: 0 1px 1px;
	position: relative;
	z-index: 10;

	padding-top: 30px;
	margin-bottom: 40px;

	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(28,20,107,0.1) 100%);
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(28,20,107,0.1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(28,20,107,0.1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#1a1c146b',GradientType=0 );
}

#page_infos_client form > label{
	margin-right: 15px;
}

#page_infos_client form h4{
	margin: 0 0 30px 15px;
}

#page_infos_client form .btn{
	margin: 15px;
}

#page_infos_client .btn_validation{
	background: #1C146B;
	background: -moz-linear-gradient(-45deg, #3e3781 0%, #3e3781 50%, #1c146b 50%);
	background: -webkit-linear-gradient(-45deg, #3e3781 0%,#3e3781 50%,#1c146b 50%);
	background: linear-gradient(165deg, #3e3781 0%,#3e3781 50%,#1c146b 50%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3e3781', endColorstr='#1c146b',GradientType=1 );
	-webkit-border-radius: 0 0 10px;
	border-radius: 0 0 10px;
	color: white;
	padding-left:  30px;
	padding-right:  30px;
}

#page_infos_client .btn_validation:hover{
	box-shadow: 0 0 5px -2px black;
	color: #FF0;
}

#page_infos_client .btn_validation:active{
	box-shadow: none;
}


/*          //////////////////////////////////////////////////////////////////          */



/*          /////////         Styles pour PAGE historique     /////////          */

#page_historique .bandeau_client{
	margin-bottom: 10px;
}

#page_historique .bandeau_nav ul{
	list-style-type: none;
	padding: 0;
}

#page_historique .bandeau_nav li{
	margin-bottom: 10px;
}

#page_historique .bandeau_nav li:first-child{
	padding-left: 0;
}

#page_historique .bandeau_nav li:last-child{
	padding-right: 0;
}

#page_historique .bandeau_nav li > :first-child{
	display: block;
	width: 100%;
	line-height: 40px;
	color: white;

	-webkit-border-radius: 0 0 15px 15px;
	border-radius: 0 0 15px 15px;

	background: #bdbfd3;
	background: -moz-linear-gradient(-45deg, rgba(206,207,222,1) 0%, rgba(206,207,222,1) 50%, rgba(189,191,211,1) 50%, rgba(189,191,211,1) 100%);
	background: -webkit-linear-gradient(-45deg, rgba(206,207,222,1) 0%,rgba(206,207,222,1) 50%,rgba(189,191,211,1) 50%,rgba(189,191,211,1) 100%);
	background: linear-gradient(167deg, rgba(206,207,222,1) 0%,rgba(206,207,222,1) 50%,rgba(189,191,211,1) 50%,rgba(189,191,211,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cecfde', endColorstr='#bdbfd3',GradientType=1 );
}

#page_historique .bandeau_nav li > :first-child span.maj{
	font-size: 1.5em;
}

#page_historique .bandeau_nav li.active > :first-child{
	color: #FF0;
	background: #1C146B;
}

#page_historique .bandeau_nav li a:hover{
	color: #1C146B;
	-webkit-box-shadow: 0 0 4px -2px #000000;
	box-shadow: 0 0 4px -2px #000000;
	background: #FAFAFA;
	background-position: 95%;
}

#page_historique .bandeau_nav li a:active{
	-webkit-box-shadow: inset 0 0 4px -2px #000000;
	box-shadow: inset 0 0 4px -2px #000000;
}

#page_historique .bandeau_nav li a .glyphicon{
	padding-left: 30px;
}

#page_infos_client #page_historique .zone_informations{
	width: 100%;
}

#page_infos_client #page_historique .table-responsive{
	width: 100%;
	font-size: 15px;
	padding: 0 15px;
	border: none;
}

#page_infos_client #page_historique .table th{
	border-top: none;
	font-size: 14px;
	padding: 15px 0 10px;
}

#page_infos_client #page_historique .table th:nth-child(n+2){
	text-align: right;
}



#page_infos_client #page_historique .table tr:nth-child(n+2){
	background: -moz-linear-gradient(top, rgba(28,20,107,0.14) 1%, rgba(28,20,107,0.13) 3%, rgba(255,255,255,0) 44%);
	background: -webkit-linear-gradient(top, rgba(28,20,107,0.14) 1%,rgba(28,20,107,0.13) 3%,rgba(255,255,255,0) 44%);
	background: linear-gradient(to bottom, rgba(28,20,107,0.14) 1%,rgba(28,20,107,0.13) 3%,rgba(255,255,255,0) 44%);
	border-bottom: 20px solid rgba(255,255,255,0);
}


#page_infos_client #page_historique .table td{
	font-size: 20px;
	color: #333;
	font-weight: normal;
	letter-spacing: 2px;
	vertical-align: middle;
	padding: 0;
}

#page_infos_client #page_historique .table td:first-child{
	padding-left: 10px;
}

#page_infos_client #page_historique .table td:nth-child(n+2){
	text-align: right;
}

#page_infos_client #page_historique .table td a{
	width: 40px;
	font-size: 25px;
	padding: 9px 0;
	color: white;
	text-align: center;
	background: #1C146B;
	-webkit-border-radius: 0 5px 5px 0;
	border-radius: 0 5px 5px 0;
}

#page_infos_client #page_historique .table td a:hover{
	color: #FF0;
}



/*          //////////////////////////////////////////////////////////////////          */







/*          /////////         Styles pour PAGE accueil Pro    /////////          */

.bandeau_client h2{
	font-size: 1.3em;
	padding: 10px 0;
	margin: 0;
	letter-spacing: 6px;
}

#myCarousel{
	color: white;
	margin-top: 0px;
	margin-bottom: 30px;
	padding: 8px 50px 30px;

	border-top: solid 4px #FF0;
	border-bottom: solid 4px #FF0;

	background: #1C146B;
	background: -moz-linear-gradient(45deg, rgba(28,20,107,1) 0%, rgba(224,228,255,1) 8%, rgba(28,20,107,1) 21%, rgba(28,20,107,1) 58%, rgba(224,228,255,1) 90%, rgba(28,20,107,1) 100%);
	background: -webkit-linear-gradient(45deg, rgba(28,20,107,1) 0%,rgba(224,228,255,1) 8%,rgba(28,20,107,1) 21%,rgba(28,20,107,1) 58%,rgba(224,228,255,1) 90%,rgba(28,20,107,1) 100%);
	background: linear-gradient(45deg, rgba(28,20,107,1) 0%,rgba(224,228,255,1) 8%,rgba(28,20,107,1) 21%,rgba(28,20,107,1) 58%,rgba(224,228,255,1) 90%,rgba(28,20,107,1) 100%);

	-webkit-border-radius: 15px !important;
	border-radius: 15px !important;

	-webkit-box-shadow: inset 3px 3px 8px -5px #000000;
	box-shadow: inset 3px 3px 8px -5px #000000;
}

#myCarousel > h3{
	margin: 0;
	line-height: 1.5em;
	letter-spacing: 4px;
	margin-bottom: 5px;

	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

#myCarousel#myCarousel:hover > h3{
	/*font-weight: bold;
	letter-spacing: 10px;
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);*/
}

.carousel-inner{
	margin-bottom: 15px;
	background-color: white;
	box-shadow: 0 0 5px black;
}

.img_block_carousel{
	max-height: 245px;
	padding: 0;
}

.img_block_carousel img{
	display: block;
	border: solid 5px white;
	max-height: 245px;
/*	-webkit-border-radius: 15px;
	border-radius: 15px;*/
	border: solid 4px red;
}

.img_block_carousel img.promo{
	border-color: #FF0;
}

.img_block_carousel .bandeau_promo, .img_block .bandeau_promo{
	position: absolute;
	right:30px;
	top:15px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	height: 60px;
	width: 60px;
	line-height: 60px;
	background: #FF0;
	color: red;
	-webkit-box-shadow: 0 0 6px -2px #000000;
	box-shadow: 0 0 6px -2px #000000;

	-moz-transform: rotate(20deg);
	-webkit-transform: rotate(20deg);
	-o-transform: rotate(20deg);
	-ms-transform: rotate(20deg);
	transform: rotate(20deg);

	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.img_block .bandeau_promo{
	right: 10px;
}

.img_block_carousel:hover .bandeau_promo{
	-moz-transform: scale(1.3) rotate(-12deg) translateX(-10px);
	-webkit-transform: scale(1.3) rotate(-12deg) translateX(-10px);
	-o-transform: scale(1.3) rotate(-12deg) translateX(-10px);
	-ms-transform: scale(1.3) rotate(-12deg) translateX(-10px);
	transform: scale(1.3) rotate(-12deg) translateX(-10px);
}

.img_block_carousel .coups_de_coeur{
	position: absolute;
	right: 25px;
	top: 10px;
	width: 75px;
	height: 100px;
	background: url(../img/backgrounds/coups_de_coeur.png) no-repeat;
	background-size: 100%;

	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.img_block_carousel:hover .coups_de_coeur{
	-moz-transform: scale(1.1) rotate(-30deg);
	-webkit-transform: scale(1.1) rotate(-30deg);
	-o-transform: scale(1.1) rotate(-30deg);
	-ms-transform: scale(1.1) rotate(-30deg);
	transform: scale(1.1) rotate(-30deg);
}

.item_description{
	height: 245px;
	color: #1C146b;
	background: white;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	padding: 0;
}

.item_description h4 a:hover{
	text-decoration: underline
}

.item_description img{
	width: 15%;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.item_description:hover img{
	-moz-transform: scale(1.1) rotate(-12deg);
	-webkit-transform: scale(1.1) rotate(-12deg);
	-o-transform: scale(1.1) rotate(-12deg);
	-ms-transform: scale(1.1) rotate(-12deg);
	transform: scale(1.1) rotate(-12deg);
}

/*.item_description img + p{
	width: 70%;
}*/

.item_description .price_zone{
	position: absolute;
	bottom: 0;
	right: 0;
	left:0;
	padding: 0px 25px 0px 15px;
}

.item_description .old_price{
	position: relative;
}

.item_description .barre_rouge{
	position: absolute;
	left: 0;
	display: inline-block;
	background: rgba(255,0,0, 0.7);
	width: 35px;
	height: 2px;
	-moz-transform: rotate(-18deg) translateX(-6px) translateY(4px);
	-webkit-transform: rotate(-18deg) translateX(-6px) translateY(4px);
	-o-transform: rotate(-18deg) translateX(-6px) translateY(4px);
	-ms-transform: rotate(-18deg) translateX(-6px) translateY(4px);
	transform: rotate(-18deg) translateX(-6px) translateY(4px);
}

.item_description .new_price{
	color: red;
	font-size: 2em;
	display: inline-block;
}

.item_description .price_type{
	color: red;
	font-size: 1.2em;
}

.item_description .coeur{
	height: 60px;
	width: 65px;
	padding: 13px 2px;
	font-size: 1.1em;
	color: white;
	background-image: url(../img/backgrounds/coeur.png);
	background-size: 100%;
	background-repeat: no-repeat;
}

.coeur_price_type{
	font-size: 0.6em;
}

/*animation du coeur sur les coups de coeur*/
@-webkit-keyframes battement{
	from    {    }

	5%  {   -moz-transform: scale(1.15);
		 -webkit-transform: scale(1.15);
			  -o-transform: scale(1.15);
			 -ms-transform: scale(1.15);
				 transform: scale(1.15); }

	10%     {    }

	to      {    }
}


@-moz-keyframes battement{
	from    {    }

	5%  {   -moz-transform: scale(1.15);
		 -webkit-transform: scale(1.15);
			  -o-transform: scale(1.15);
			 -ms-transform: scale(1.15);
				 transform: scale(1.15); }

	10%     {    }

	to      {    }
}


@-ms-keyframes battement{
	from    {    }

	5%  {   -moz-transform: scale(1.15);
		 -webkit-transform: scale(1.15);
			  -o-transform: scale(1.15);
			 -ms-transform: scale(1.15);
				 transform: scale(1.15); }

	10%     {    }

	to      {    }
}


@-o-keyframes battement{
	from    {    }

	5%  {   -moz-transform: scale(1.15);
		 -webkit-transform: scale(1.15);
			  -o-transform: scale(1.15);
			 -ms-transform: scale(1.15);
				 transform: scale(1.15); }

	10%     {    }

	to      {    }
}


@keyframes battement{
	from    {    }

	5%  {   -moz-transform: scale(1.15);
		 -webkit-transform: scale(1.15);
			  -o-transform: scale(1.15);
			 -ms-transform: scale(1.15);
				 transform: scale(1.15); }

	10%     {    }

	to      {    }
}

.item_description .coeur{
	 -webkit-animation: battement 1s infinite 0.3s;
		-moz-animation: battement 1s infinite 0.3s;
		 -ms-animation: battement 1s infinite 0.3s;
		  -o-animation: battement 1s infinite 0.3s;
			 animation: battement 1s infinite 0.3s;
}

#myCarousel .carousel-indicators{
	bottom: 0;
}

#myCarousel .carousel-indicators li, .carousel-indicators li.active{
	margin-left: 10px;
	height: 15px;
	width: 15px;
}


#myCarousel .carousel-indicators .active{
	background-color: #FF0;
}

#myCarousel .carousel-control{
	width: 5%;
	background-image: none !important;
	text-shadow: 0 3px 10px black;
}

#myCarousel .carousel-control:hover{
	color:#FF0;
}



#mes_produits_pro input[type="checkbox"]{
	display: none;
}

#mes_produits_pro input[type="checkbox"]:checked ~ div#filtres_pro{
	display: none;
}

#mes_produits_pro h3{
	font-size: 1.3em;
	margin: 0;
	color: #1C146B;
	padding-left: 15px;
}

#mes_produits_pro h3 > label:hover{
	text-shadow: 0 3px 3px #d4d5e2;
}

.filtre_pro{
	padding: 15px 30px 25px;
}

.filtre_pro:hover{
	background: #d4d5e2;
	-webkit-transition: background 1s ease;
	-moz-transition: background 1s ease;
	-ms-transition: background 1s ease;
	-o-transition: background 1s ease;
	transition: background 1s ease;
}

.filtre_pro h4{
	color: #1C146B;
}

.filtre_pro form select, .filtre_pro form input{
	width: 100%;
	margin-top: 0;
	font-size: 1em;
	color: gray;
}

.filtre_pro:nth-of-type(3) form select{
	width: 50%;
	float: left;
}

.filtre_pro .btn{
	background: #1C146B;
	color: white;
	-webkit-border-radius: 0 0 5px;
	border-radius: 0 0 5px;
	margin-top: 10px;
	padding: 5px 30px;
}

.filtre_pro .btn:hover{
	-webkit-box-shadow: 0 0 3px black;
	box-shadow: 0 0 3px black;
	color: #FF0;
}

.filtre_pro .btn:active{
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: #1C146B;
}

#zone_categories h4{
	font-size: 2.5em;
	line-height: 1.3em;
	color: white;
	background: #d4d5e2;
	font-style: italic;
	font-weight: bold;
	padding-right: 15px;
}

#zone_categories h4 .glyphicon-collapse-down{
	cursor: pointer;
}

/*#zone_categories h4 + div.collapse_panel{
	display:none;
}*/

#zone_categories ul{
	list-style-type: none;
	line-height: 25px;
}

#zone_categories ul a span{
	-webkit-transition: padding 0.2s ease;
	-moz-transition: padding 0.2s ease;
	-ms-transition: padding 0.2s ease;
	-o-transition: padding 0.2s ease;
	transition: padding 0.2s ease;
}

#zone_categories ul a:hover span{
	color: #FF0;
	padding-left: 10px;
	text-shadow: 0 0 3px #1C146B;
}

#zone_categories .favoris{
	color: #1C146B;
	margin-bottom: 20px;
}

#zone_categories .favoris a:hover .glyphicon{
	color: #FF0;
	text-shadow: 0 0 2px #1C146B;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

/*          //////////////////////////////////////////////////////////////////          */







/*          /////////         Styles pour la zone d'annonce      /////////          */
#announcement{
	/*border: solid 1px #1C146B;*/
	border-top: solid 4px #1C146B;
	border-bottom: solid 4px #1C146B;
	padding: 5px 15px 10px;
	margin: 20px 0;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	background: #FAFAFF;
}

#announcement .h3{
	border-bottom: 5px solid #FF0;
	font-size: 2em;
	margin-bottom: 30px;
}

#announcement img{
	margin: 20px auto;
	max-height: 200px;
}

/*          //////////////////////////////////////////////////////////////////          */





/*          /////////         Styles pour PAGE CONTACT     /////////          */

.svg_titre{
	width: 45px;
	background: #1C146B;
	padding: 10px;
	margin-bottom: 10px;
	border-radius: 5px;
}
.page_contact .postal{
	border: dashed #1C146B;
	padding: 10px;
}

.page_contact form{
	margin-bottom: 60px;
}

#medias_container{
	height: 50px;
	padding: 15px;
	border: 1px solid #CCC;
}

#medias_container input[type="file"]{
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
}

#logo_mag{
	display: inline-block;
}

#page_panier iframe{
	display: block;
	max-width: 100%;
	margin: 0 auto 100px;
}

#logo_colissimo{
	max-width: 230px;
	margin: 20px 30px;
}




/*          //////////////////////////////////////////////////////////////////          */




/*          /////////         Styles pour POP-UP COOKIES     /////////          */

#pop_up_cookies{
	border: solid 2px #CCC;
	background-color: rgba(0, 0, 20, 0.8);
	color: white;
	font-size: 0.8em;
	padding: 15px 0 70px 0;
	width: 100%;
	bottom: 0;
	position: fixed;
	z-index: 10000;
	overflow: auto;
}

#pop_up_cookies a{
	color: white;
	font-weight: bold;
}

#pop_up_cookies a.btn{
	margin: 5px;
}


/*          //////////////////////////////////////////////////////////////////          */

/*          //////////////////////////////////////////////////////////////////          */



/*          ///////////////////////////////////////////////////          */

/*          ///////////////////////////////////////////////////          */

/*          /////////          MEDIA QUERIES          /////////          */

/*          ///////////////////////////////////////////////////          */

/*          ///////////////////////////////////////////////////          */





/*          ////////////////////////////////////////////////////////////////////////          */
/*     /////     Media Query pour Ecrans 1201px et plus (Ecrans lg uniquement)     /////     */
@media screen and (min-width: 1200px){

	/*placement des clearfix automatiquement grâce aux selecteurs CSS pour ecran lg*/
	#principal article.col-lg-4:nth-of-type(3n+1){
		clear: left;
	}

/*	.appli_case:nth-child(3n+1){
		clear: left;
	}
	.appli_case:nth-child(6n+1){
		margin-left: 5%;
	}

	.appli_case:nth-child(6n+4){
		margin-left: 20%;
	}*/

	.applis-slider{
		width: 75%;
	}
	.applis-slider:nth-of-type(2n+1){
		margin-left: 5%;
	}

	.applis-slider:nth-of-type(2n){
		margin-left: 20%;
	}
}


/*          ////////////////////////////////////////////////////////////////////////////////////          */
/*     /////     Media Query pour Ecrans 993px juska 1200px et plus (Ecrans md uniquement)     /////     */
@media screen and (min-width: 992px) and (max-width: 1199px){

	/*placement des clearfix automatiquement grâce aux selecteurs CSS pour ecran md*/
	#principal article.col-md-6:nth-of-type(2n+1){
		clear: left;
	}

/*	.appli_case:nth-child(5n+4){
	    margin-left: 20%;
	}

	.appli_case:nth-child(5n+1){
	    clear: left;
	}*/

}

/*          ///////////////////////////////////////////////////////////////////          */
/*     /////     Media Query pour Ecrans 993px et plus (ecran md et plus)     /////     */
@media screen and (min-width: 992px){

	/*placement des clearfix automatiquement grâce aux selecteurs CSS pour ecran md et plus*/
	.megamenu ul>.col-md-4:nth-of-type(3n+1){
		clear: left;
	}

	.purchase_zone_2{
		padding-left: 0px;
		width: 31%;
	}

}
