/* --- */
.content_panier { padding:3% 0 5% }
.content_panier .wp50.left { padding:0 2% 0 0 }
.content_panier .wp50.right { padding:0 0 0 2% }

/* >>> container ------------------------------ */
#heading-panier {
	min-height: 200px;
}
#panier-content { 
	max-width: 1000px;
	min-height: 55vw;
	padding: 20px 0 60px;
	margin: 0 auto;
	background-color: #fff;
}
#panier-content h1 { margin-bottom: 0 }

/* --- boutons --- */
.submit,
.button,
input[type='submit'].submit,
input[type='button'].button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: transparent 1px solid;
	text-transform: uppercase;
	text-align: center;
	font-weight: 600;
	font-size: 14px;
	min-width: 180px;
	height: 40px;
	padding: 5px 10px;
	line-height: 20px;
	-webkit-transition: background-color .3s, border-color .3s, color .3s;
	-o-transition: background-color .3s, border-color .3s, color .3s;
	transition: background-color .3s, border-color .3s, color .3s;
}
.submit {
	color: #fff;
	border-color: #f29400;
	background-color: #f29400;
}
.button {
	color: #f29400;
	border-color: #f29400;
	background-color: transparent;
}
.submit:hover,
.button:hover {
	border-color: #4b4b4b;
	background-color:#4b4b4b;
	color: #fff;
}
#form-valid .submit,
#form-valid .button {
	min-width: 220px;
}

.article-prix { color: #f29400; }

/* > PANIER > index.php ---------------------------------------------------------------------------------------------- */

.empty-content {
	min-height: 40vh;
	padding: 8% 20px 10%;
	text-align: center;
}


/* >>> panier tunnel ------------------------------ */

#panier-tunnel {
	max-width: 1000px;
	flex-wrap: nowrap;
	margin: 0 auto;
	padding: 0;
}
#panier-tunnel li { 
	height: 50px;
	display: flex; 
	align-items: center;
	text-align: center;
	padding: 5px 10px;
	margin-left: 2px;
	font-size: 13px;
	flex: 25%;
	background-color: #004997;
	color: #fff;
	-webkit-transition: color .3s; 
	-o-transition: color .3s; 
	-moz-transition: color .3s; 
	transition: color .3s
}
#panier-tunnel li > a {
	display: flex; 
	align-items: center;
	margin: -5px -10px;
	padding: 5px 10px;
	width: calc(100% + 20px);
	height: calc(100% + 10px);
	-webkit-transition: background-color .3s, color .3s; 
	-o-transition: background-color .3s, color .3s; 
	-moz-transition: background-color .3s, color .3s; 
	transition: background-color .3s, color .3s
}
#panier-tunnel li:first-child { margin-left: 0; }
#panier-tunnel li span.num {
	width: 40px; 
	height: 40px;
	font-size: 24px; 
	line-height: 40px; 
	font-family: 'Lato', sans-serif;
	text-align: center;
	font-weight: 300;
	flex: 0 0 auto;
}
#panier-tunnel li span.text {
	flex: 1 1 auto;
	text-align: center;
	line-height: 1.2em;
}
#panier-tunnel li.active { background-color: #f29400; }
#panier-tunnel li > a:hover { background-color: #4b4b4b; }

@media screen and (max-width: 768px) {
	#panier-tunnel li {
		padding: 5px;
		height: 40px;
		font-size: 12px; 
	}
	#panier-tunnel li span.num {
		width: 20px;
		height: 20px;
		font-size: 20px;
		line-height: 20px;
	}
	#panier-tunnel li span.text { font-size: 12px; }
}
@media screen and (max-width: 640px) {
	#panier-tunnel { background-color: #fff; }
	#panier-tunnel li {
		flex: 0 0 auto;
		justify-content: center;
		width: 40px;
	}
	#panier-tunnel li span.text { display: none; }
	#panier-tunnel li.active {
		flex: 1 1 auto;
		width: auto;
	}
	#panier-tunnel li.active span.text { display: block; }
}

/* code promo */
#promo-info-commande { 
	margin: 20px auto;
	padding: 0 20px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	   -moz-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	   -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
#promo-info-commande #total-commande,
#promo-info-commande #panier-left-content {
	width: 50%;
	padding: 0;
	padding: 0 20px;
	max-width: 420px;
}
#panier-left-content h2 { font-size: 18px; }
#form-reduction {
	padding: 20px;
	background-color: #e3e3e3;
	margin-bottom: 30px;
}
#form-reduction h2  { margin-bottom: 10px; }
.form-reduction-content {
	display: flex;
	height: 40px;
}
#form-reduction #code_reduction {
	border: none;
	height: 40px;
	flex: 1 1 auto;
	padding: 0 10px;
	font-size: 14px;
}
#form-reduction #submit_reduction { 
	flex: 0 0 auto;
	padding: 0; margin: 0; 
	border: none;
	background-color: #f29400;
	border-left: #f29400 1px solid;
	color: #fff;
	min-width: 60px;
	text-align: center;
	margin-left: 5px;
	height: 40px;
	cursor:pointer;
	-webkit-transition:background-color .3s, color .3s;
	-o-transition:background-color .3s, color .3s;
	-moz-transition:background-color .3s, color .3s;
	transition:background-color .3s, color .3s;
}
#form-reduction #submit_reduction:hover {
	background: #f29400;
	color: #fff;
}
#panier-message textarea {
	height: 120px;
}
.privacy_checkbox,
#privacy_checkbox {
	position: relative;
	padding-left: 25px;
	line-height: 14px;
	font-size: 11px;
	color: #929292;
}
.privacy_checkbox input,
#privacy_checkbox input {
	position: absolute;
	top: 5px; left: 0;
}
.privacy_disclaimer,
#privacy_disclaimer {
	font-size: 11px;
	color: #929292;
}
#panier_compte #privacy_checkbox { margin: 0 0 30px }
#panier_compte p#privacy_disclaimer { font-size: 11px; margin: 30px 0 0 }

/* total TTC et infos commande */
#total-commande { font-size: 12px; }
#total-commande h4 { 
	font-size: 15px;
	margin-bottom: 15px;
	color: #004997;
}
.field-reduction, .field-livraison { padding:10px 0; }
.field-reduction p { position:relative; padding-right:25px; }
.field-reduction p {
	position:relative;
	line-height:24px;
	padding:5px 30px 5px 0;
	border-bottom:#e9e6e5 1px solid; 
}
.field-reduction p span { display:inline-block; line-height:normal; }
.field-reduction p strong { color:#000 }
.field-reduction .article-prix { float:right }
.field-reduction .bt-del { position:absolute; right:0; top:5px }

.field-livraison p.text-center { color:#e30613; padding:0 0 10px 0; }
.field-livraison .wp50.left  { margin-top:15px; }
.field-livraison .wp50.right { clear:right }
.field-livraison .wp50.right select  { margin:5px 0; }
.field-livraison .livraison-moyen {
	clear: right;
	padding: 5px 0; line-height: 24px; margin: 0;
	border-bottom:#e9e6e5 1px solid;
}
.field-livraison .livraison-moyen em.fc-gris { 
	display:block; padding: 0 0 10px 22px;
	line-height:16px; font-size:12px;
	clear:right;
}
.field-livraison .livraison-moyen input { vertical-align:middle }
.field-livraison .livraison-moyen .article-prix { float:right; }
#total-ttc {
	background-color: #e3e3e3;
	margin:20px 0;
	padding: 20px;
}
#total-ttc .wp50 { padding: 0; margin: 0 }
#total-ttc strong { 
	font-size: 18px; 
	color: #004997;
}
#total-ttc .article-prix { 
	font-size: 2.2em;
	margin-bottom: 0;
}
#accept-paiement { line-height:18px; float:right; }
#accept-paiement img { 
	width:30px; vertical-align:middle;
	margin-left:10px; 
}
#form-valid { 
	margin-top: 30px; 
	padding: 0 20px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
#form-valid.text-center {
	justify-content: center;
}
#form-valid.text-right {
	justify-content: flex-end;
}

/* TABLEAUX & FAKES */
.table-content {
	display:table;
	border-collapse:separate;
	margin: 20px auto; 
	width: 100%;
}
.table-content .table-row, 
.table-content .table-legend { 
	display:table-row; 
}
.table-content .table-cell { 
	display:table-cell;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	box-sizing:border-box;
}
.table-content .table-legend .table-cell {
	font-size: 12px; 
	color: #4b4b4b;
	padding: 5px 10px;
	font-weight: 300;
	border-bottom: #d7d7d7 1px solid;
}
.table-content .table-row .table-cell { 
	padding:10px; vertical-align:middle;
	border-bottom:#d7d7d7 1px solid; 
}
.table-content .article-info {
	text-align:left;
	font-size:13px; 
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.table-content .article-thumb {
	min-width: 50px;
	max-width: 100px;
	margin-right: 5%; 
	width: 20%; 
}
.table-content .article-thumb img { display:block; width:100%; }
.table-content .article-title {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 15px;
	margin:0 0 5px 
}
.table-content .article-infos span { 
	display:inline-block; 
	vertical-align:middle;
	margin-right:20px;
	color: #969696;
}
.table-content .article-infos span.fc-gris { }
.table-content .article-infos > a { display:inline-block; width:100%; }
.table-content .article-infos > a:hover .article-title { color:#000; }
.table-content .article-infos > a:hover .article-thumb > img { opacity:0.6; }
.table-content .article-prix { text-align:center; width:12%; min-width:110px; }
.table-content .article-prix .prix-barre { display:block; }
.table-content .table-cell .cell-text { 
	display:none;
	font-family: 'Source Sans Pro', sans-serif;
	vertical-align:middle; 
	margin-right:5px; 
}

/* TABLEAUX > panier */
#table-panier { 
	padding: 0 40px;
	margin: 0 auto 40px;
}
#table-panier .cell-action { width: 25px; }
#table-panier .cell-quantite { text-align:center; width:8%; min-width:80px; }
#table-panier .cell-quantite label { display:inline-block; vertical-align:m iddle; margin:0 }

/* TABLEAUX > reacapitulatif */
#table-panier-recapitulatif {
	max-width: 1030px;
}
#table-recap { 
	max-width: 990px; 
	margin:20px auto 40px;
}
#table-recap .quantite { 
	text-align:center; 
	width:50px; 
}

/* --- icons / boutons */
.icon-delete {
	width: 26px;
	height: 26px;
	-webkit-border-radius: 50%;
	        border-radius: 50%;
	line-height: 26px;
	display: inline-block;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M3 6v18h18v-18h-18zm5 14c0 .552-.448 1-1 1s-1-.448-1-1v-10c0-.552.448-1 1-1s1 .448 1 1v10zm5 0c0 .552-.448 1-1 1s-1-.448-1-1v-10c0-.552.448-1 1-1s1 .448 1 1v10zm5 0c0 .552-.448 1-1 1s-1-.448-1-1v-10c0-.552.448-1 1-1s1 .448 1 1v10zm4-18v2h-20v-2h5.711c.9 0 1.631-1.099 1.631-2h5.315c0 .901.73 2 1.631 2h5.712z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: 12px 12px;
	        background-size: 12px 12px;
	background-color: #004997;
	-webkit-transition: background-color .3s;
	-o-transition: background-color .3s;
	-moz-transition: background-color .3s;
	transition: background-color .3s;
}
.icon-delete:hover { background-color: #e66f57; }
/* --- */

/* PANIER > COORDONNEES > panier-coordonnees.php ------------------------------------ */
#coordonnees-content {
	width: 100%;
}
#coordonnees-content .order-1 {
	order: 1;
}
#coordonnees-content .order-2 {
	order: 2;
} 
#login_coordonnee { 
	padding: 30px;
	background-color: #e3e3e3
 }
label.floated-label {
	display: flex;
	justify-content: space-between;
}
span.inline-label,
label.floated-label span {
	font-weight: 700;
	font-size: 13px;
	flex: 0 0 auto;
}
label.floated-label textarea {
	min-height: 80px;
	height: auto;
}
@media screen and (max-width: 540px)  { 
	label.floated-label {
		display: block;
		margin-bottom: 0;
	}
}
.label-same-adress {
	background-color: #e3e3e3;
	padding: 5px 10px;
	margin: 10px auto 20px;
	display: flex;
	align-items: center;
}
.label-same-adress input {
	flex: 0 0 auto;
	margin-right: 10px;
}
.label-same-adress label { flex: 1 1 auto; }

legend,
fieldset h2 {
	margin: 0 0 10px;
	text-transform: uppercase;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	font-size: 16px;
	color: #f29400;
}
#login_coordonnee { }

/* adresse liste */
.adresse_radio_liste li { border-top:#e3e0de 1px solid; }
.adresse_radio_liste li.odd { background-color:#f5f5f5  }
.adresse_radio_liste li label { display:block; padding:10px; margin:0 }
.adresse_radio_liste li input { vertical-align:middle; }
.adresse_radio_liste li label span  {
	display:inline-block;
	vertical-align:middle;
	width:80%; margin-left:10px;
	line-height:1.2em;
}
.adresse_radio_liste li.add_adress a { margin:20px 40px; }
.adresse_radio_liste li.add_adress a strong {
	display:inline-block; vertical-align:middle;
	font-size:1.6em; margin-right:5px;
}

/* --- */
#panier_compte p { 
	clear:both; padding:10px; 
	font-size: 13px; margin:10px 0;
}
#panier_compte p strong { font-size: 14px; }
#panier_compte fieldset {
	padding: 0 0 20px; 
	margin-bottom: 20px;
	border-bottom:#e9e6e5 1px solid;
}
#panier_compte fieldset input[type="password"] { width: 40%; }
@media screen and (max-width: 540px)  { 
	#panier_compte fieldset input[type="password"] { width: 100%; }
}
/* ---- Creation ---- */
#bloc_new_client {
	min-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: #e3e3e3 1px solid;
}

/* PANIER > PAIEMENT > panier-paiement.php ------------------------------------ */
#panier_paiement { min-height: 400px; }
#list-paiement { 
	margin: 0; 
	padding: 20px 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 auto;
}
#panier_paiement.col3 #list-paiement { max-width: 980px; }
#panier_paiement.col2 #list-paiement { max-width: 680px; }
#panier_paiement.col1 #list-paiement { max-width: 480px; }
#panier-content #list-paiement li { padding:10px; }
#list-paiement a {
	display:block; text-align:center;
	padding:30px 10px; height:200px;
	border:#bebebe 1px solid;
	-webkit-transition:all .3s linear;
	-moz-transition:all .3s linear;
	-o-transition:all .3s linear;
	transition:all .3s linear;
}
#list-paiement a:active,
#list-paiement a:hover {
	border-color: #f29400;
	-webkit-box-shadow: #f29400 0 0 10px;
	        box-shadow: #f29400 0 0 10px;
}
#list-paiement a span,
#list-paiement a strong { display:block; margin-top:10px; }
#list-paiement a span { font-size:12px; }
#list-paiement span img { max-width:28%; margin: 0 2px; }

/* PANIER > RECAPITULATIF > panier-recapitulatif.php ------------------------------------ */

#recapitulatif-content { padding: 0 40px; }

.info-recapitulatif { 
	padding: 10px 0;
	font-size: 14px; 
	margin: 20px auto;
	border:#e3e0de 1px solid;
}
.info-recapitulatif h2 { 
	width: 100%;
	margin: 0;
	padding: 10px 20px;
	font-size: 24px;
}
.info-recapitulatif h3 { 
	margin: 0 0 15px;
	font-size:14px;
}
.info-recapitulatif .link-color-2 { text-decoration:underline }
.info-recapitulatif .wp50 > p { 
	font-size:12px; 
	min-height:140px;
	max-width:220px;
	border-bottom:#e3e0de 1px solid;
	margin-bottom:15px;
}
.info-recapitulatif .wp50 > p img { margin-top:8px; }
#field_cgv {
	padding: 10px 20px;
	font-size: 13px;
	background-color:#e3e3e3; 
	margin: 20px auto;
}
#recapitulatif-commande {
	padding: 10px 40px;
}
#page_panier-recapitulatif .field-reduction .article-prix { float:right; }
#page_panier-recapitulatif #promo-info-commande {
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	   -moz-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

/* PANIER > CONFIRMATION > panier-confirmation.php ------------------------------------ */


/* > FANCY AJOUT PANIER 
-------------------------------------------------------------------------------------------------------------------------------------------------------------- */
#fancy_ajout-panier {
	height: auto;
	width: auto;
	max-width: 840px;
	/*overflow: hidden;*/
}
#fancy_ajout-panier .fancy-wrapper { padding: 0; }
#fancy_ajout-panier h1 {
	padding: 30px 30px 0;
	text-transform: uppercase;
	text-align: center;
	font-weight: 300;
	font-size: 18px;
	color: #004997;
}
#ajout-panier { padding: 0 30px 40px; }
#ajout-panier .article.article-row {
	display: flex;
	background-color: #fff;
	justify-content: space-between;
	align-items: center;
	text-align: left;
	font-size: 12px;
	padding: 10px;
}
#ajout-panier .article.article-row + .article.article-row { margin-top: 5px; }
#ajout-panier .article.article-row figure { 
	width: 20%;
	max-width: 100px;
	align-self: center;
}
#ajout-panier .article.article-row figure img { 
	display: block;
	width: 100%;
	margin: 0 auto 
}
#ajout-panier .article.article-row section { 
	width: 50%;
	align-self: center;
}
#ajout-panier .article.article-row h2,
#ajout-panier .article.article-row p { margin: 0 0 10px; }
#ajout-panier .article.article-row h2 {
	text-transform: uppercase;
	margin-bottom: 0;
	font-weight: 700;
	font-size: 16px;
}
#ajout-panier .article.article-row .article-total {
	text-align: right;
	padding-right: 5%;
	width: 30%; 
}
#ajout-panier .article.article-row .article-prix { 
	font-size: 20px;
	color: #f29400;
}
#ajout-panier .article.article-row em {
	font-size: 12px;
	font-style: italic;
}
#ajout-panier-action {
	display: flex;
	justify-content: space-between;
	padding: 10px 0 0;
}
#ajout-panier-action a { margin: 10px }
#ajout-panier-action a:first-child { margin-left: 0; }
#ajout-panier-action a:last-child { margin-right: 0; }
@media screen and (max-width: 480px) {
	#ajout-panier .article.article-row figure,
	#ajout-panier .article.article-row section,
	#ajout-panier .article.article-row .article-total {
		width: 100%;
		padding: 5px 0;
		text-align: center;
	}
	#ajout-panier-action { flex-wrap: wrap; }
	#ajout-panier-action a { 
		flex: 1 1 auto; 
		margin: 5px 0;
	}
}
#fancy_ajout-panier #articles-associes .article .article-thumb {
	width: 70%;
	max-width: 160px;
	margin: 0 auto 5px;
}
#fancy_ajout-panier #articles-associes .article { width: 33.33%; }
@media screen and (max-width: 750px)  { #fancy_ajout-panier #articles-associes .article { width: 50%;    } }
@media screen and (max-width: 480px)  { #fancy_ajout-panier #articles-associes .article { width: 100%;   } }
#fancy_ajout-panier #articles-associes {
	background-color: #fff;
	padding: 20px 10px;
	margin: 0;
}
#fancy_ajout-panier #articles-associes h2 {
	text-transform: uppercase;
	text-align: center;
	font-weight: 300;
	font-size: 16px;
	color: #f29400;
}



/* > QUERIES
-------------------------------------------------------------------------------------------------------------------------------- */

/* tablette horizontale 1024px */
@media screen and (max-width: 990px) {
	
	/* panier > coordonnees */
	.formulaire-2 label.floated-label input,
	.formulaire-2 label.floated-label select,
	.formulaire-2 label.floated-label textarea,
	.formulaire-2 span.inline-label { width:50%; }
	.formulaire-2 label.inline-label { margin-right:5px; }

}

/* tablette verticale */
@media screen and (max-width: 840px) {

	#table-panier {	padding: 0; }

	/* panier > panier */
	#promo-info-commande { padding: 0 10px; }
	#promo-info-commande #total-commande,
	#promo-info-commande #panier-left-content { padding: 0 10px; }

	/* panier > coordonnee */
	#coordonnees-content { 
		padding: 10px;
		max-width: 640px;
		margin: 0 auto;
	}
	#coordonnees-content .wp50,
	#coordonnees-content .wp50 { 
		padding: 10px;
		width: 100%;
	}
	#coordonnees-content .order-1 {
		order: 2;
	}
	#coordonnees-content .order-2 {
		order: 1;
	} 

	/* panier > recapitulatif */
	#recapitulatif-content { padding: 0 20px; }
	.info-recapitulatif { padding: 10px; }
	.info-recapitulatif h2 { padding: 10px; }
}

/* tablette verticale */
@media screen and (max-width: 640px) {

	#table-panier {
		margin: 0;
		width: 100%;
	}

	/* panier > tableaux */
	.table-content { display:block; }
	.table-content .table-legend { display:none }
	.table-content .table-row {
		display:block; 
		padding-left: 120px;
		padding-bottom: 60px;
		width: 100%;
		position:relative;
		border-bottom: #e9e6e5 1px solid;
	}
	.table-content .table-row .table-cell { 
		display:block;
		border:none;
	 }
	.table-content .table-row:nth-child(2n+1) .thumbnails-article,
	.table-content .table-row:nth-child(2n+1) { background-color:#f6f6f6 }

	.table-content .article-thumb {
		position:absolute;
		top: 10px; left: 10px;
		width: 100px;
	}
	.table-content .table-row .article-prix { 
		width:auto;
		text-align:left;
		padding: 5px 10px;
	}
	#table-recap .cell-text,
	.table-content .cell-text,
	.table-content .article-prix .cell-text {
		display:inline-block;
		font-weight: 700;
		min-width: 70px;
		font-size: 12px;
		color: #4b4b4b;
	}
	#table-panier .table-legend .quantite,
	#table-panier .table-legend .cell-action { display:none }

	#table-panier .table-row .cell-action,
	#table-panier .table-row .cell-quantite {
		font-size: 13px;
		min-width: inherit;
		position: absolute;
		bottom: 0;
	}
	#table-panier .cell-quantite {
		min-width:none;
		left: 0;
		text-align: left;
		padding: 10px; 
	}
	#table-panier .cell-action { 
		right:0;
		width: 60px;
		height: 60px;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: right;
		line-height: 40px;
		padding: 10px;
	}

	#table-recap .table-row { padding-bottom:20px; }
	#table-recap .quantite { width:auto; text-align:left; }
	
	/* panier > panier */
	.field-livraison label.wp50,
	.field-livraison h4 { width: 100%; float: none; padding: 0 0 15px; margin:0; }
	#promo-info-commande #total-commande, 
	#promo-info-commande #panier-left-content { 
		width: 100%;
		max-width: inherit;
	}
	
	/* panier > coordonnee */
	.content_panier .wp50.right,
	.content_panier .wp50.left { width:100%; float:none; padding:20px 0 }

	/* panier > recapitulatif */
	#recapitulatif-content { padding: 0 20px; }
	.info-recapitulatif .wp50 {
		width: 100%;
		padding: 10px !important;
	}

}

/* smartphone horiz BIG */
@media screen and (max-width: 540px) {
			
	/* panier > coordonnee */
	.formulaire-2 label.floated-label { line-height:normal; padding:15px 0 0; margin:0; }
	.formulaire-2 label.floated-label input,
	.formulaire-2 label.floated-label select,
	.formulaire-2 label.floated-label input[type="password"],
	.formulaire-2 label.floated-label textarea { width:100%; float:none; margin-top:5px; }
	.formulaire-2 span.inline-label { display:block; width:100%; margin:20px 0 5px; }
	#panier_compte .submit { 
		display:block; float:none; width:100%;
		margin-top:20px; text-align:center;
	}
	#login_coordonnee { padding:20px; }
	#login_coordonnee > a,
	#login_coordonnee .submit { 
		display:block; float:none;
		margin-top:20px; text-align:center;
	}
		
	/* panier > paiement */
	#panier-content #list-paiement li { width:auto; padding:10px 0; float:none; }
	#list-paiement { margin: 0 }
	#list-paiement a { padding:20px; height:auto }
	
	/* --- */
	/* fancy detatil commande */
	#fancy_ajout-panier .fancy-wrapper { padding: 40px 20px 20px }

	#form-valid,
	#form-valid.text-right {
		flex-wrap: wrap;
		justify-content: center;
	}
	#form-valid .button,
	#form-valid .submit { 
		margin: 5px;
	 }
	
}

/* smartphone horiz */
@media screen and (max-width: 480px) {
	
	/* panier */
	/*#recapitulatif-content .info-recapitulatif { padding:20px; }
	#recapitulatif-content .info-recapitulatif .wp50 { float:none; width:100%; margin:30px 0 0; padding:0 }
	#recapitulatif-content .info-recapitulatif .wp50 > p { min-height:inherit; max-width:inherit; padding-bottom:10px; margin-bottom:10px; }
	#recapitulatif-content .info-recapitulatif .link-black-grey { font-size:12px; }
*/
}

/* smartphone verticale */
@media screen and (max-width: 360px) {

	
}