* {margin: 0; padding: 0;}

html {
	min-height: 100%;
}

body {
	min-height: 100%;
	font-family: sans-serif;
	font-size: 13px;
	color: #000;
	background: #fff url('../styles-all/images/sidebar_bg.gif?v=2') repeat-y 0 0 scroll;
}
body.sidebar-closed {
	background-position: -220px 0;
}
html.overlay-open,
body.overlay-open {
	overflow: hidden;
}

a {
	color: #ed1c24;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

.svg-icon {
	display: none;
}

input[type=text],
input[type=number],
input[type=password],
textarea,
select
	{border: 1px solid #ccc; background: #fff;}
input[type=text]:hover,
input[type=number]:hover,
input[type=password]:hover,
textarea:hover,
select:hover
	{border-color: #9c9c9c;}
input[type=text]:focus,
input[type=number]:focus,
input[type=password]:focus,
textarea:focus,
select:focus
	{border-color: #333;}
input[type=text],
input[type=number],
input[type=password],
textarea,
option
	{padding: 0 2px;}

input[type=number] {
	-moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

button {
	padding-left: 3px;
	padding-right: 3px;
}

h2 {
	position: relative;
	min-height: 26px;
	margin-bottom: 20px;
	padding: 2px 0 2px 36px;
	color: #000;
	font-size: 16px;
	line-height: 22px;
	font-weight: bold;
	background-repeat: no-repeat;
}
h2 span {font-weight: normal;}

/*#home > h2,
#include > h2,
#order > h2,
#help > h2,
.home-banner {
	margin-left: 50px;
}*/

hr.cl {
	clear: both;
	border: none;
	background: none;
	height: 0;
}

body.masquable-hidden .masquable {
	display: none !important;
}


#content .page-notice {
	margin: 15px 0;
	padding: 5px 15px;
	background-color: #eee;
}

.notifs {
	position: fixed;
	left: 25px;
	top: 25px;
	z-index: 100000;
}
.notif {
	position: relative;
	width: 275px;
	max-width: calc(100vw - 50px);
	padding: 20px 10px 10px;
	margin-bottom: 10px;
	border: 1px solid rgba(0,0,0,.25);
	border-radius: 2px;
	background-color: #fff;
	box-shadow: 0 4px 12px -5px #000;
}
.notif.error {
	color: #600;
	border-color: #c00;
	background-color: #fdd;
}
.notif.error h3 {
	color: #900;
	font-weight: bold;
}
.notif .close {
	position: absolute;
	right: 5px;
	top: 5px;
	width: 15px;
	height: 15px;
	background: transparent url('images/cross-grey.svg') no-repeat 50% 50% scroll;
	-webkit-background-size: contain;
	background-size: contain;
	cursor: pointer;
}
.notif .close span {
	visibility: hidden;
	position: absolute;
}
.notif h3 {
	color: #666;
	font-size: 13px;
	font-weight: normal;
}
.notif .data {
	margin: 10px 0;
	font-size: 12px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.notif .data .img {
	background-color: #fff;
	border-radius: 2px;
	width: 55px;
	padding-right: 5px;
	flex: 0 0 0;
}
.notif .data .img img {
	display: block;
	margin: 0 auto;
	border-radius: 2px;
}
.notif .data .txt {
	flex: 1 0 0;
	padding: 2px 5px;
	background-color: #eee;
}
.notif .data .txt .ref {
	font-weight: bold;
	margin-right: 5px;
}
.notif .actions {
	text-align: right;
	font-size: 0;
}
.notif .actions .btn {
	display: inline-block;
	font-size: 13px;
	margin-left: 10px;
	padding: 5px 10px;
	color: #fff;
	background: #444;
	border-radius: 2px;
	box-shadow: 0 1px 2px -1px #000;
	cursor: pointer;
}
.notif .actions .btn:hover {
	text-decoration: none;
	background: #ed1c24;
}

.page {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-flow: column nowrap;
	min-height: 100vh;
	background: #fff;
}

#header {
	order: 1;
	position: relative;
	z-index: 10;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	width: 100%;
	flex: 0 0 75px;
	background: #fff;
}
#header::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 5px;
	box-shadow: 0 15px 5px -15px rgba(0,0,0,.35) inset;
}
#header .logo {
	display: block;
	height: 75px;
	flex: 0 0 auto;
}
#header img#logo {
	display: block;
	/*position: absolute;*/
	/*left: 0;*/
	/*top: 0;*/
	max-height: 75px;
	width: auto;
}

#header .options {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	/*align-items: stretch;*/
	flex: 1 1 auto;
}

#header .lang {
	padding: 5px 10px;
	text-align: right;
	font-size: 0;
}
#header .lang a {
	display: inline-block;
	margin-left: 5px;
	padding: 2px 5px;
	color: #999;
	font-size: 12px;
}
#header .lang a:hover {
	text-decoration: underline;
}
#header .lang a.active {
	color: #000;
}

#header #user {
	position: relative;
	padding: 5px 15px;
	color: #999;
	font-size: 12px;
	line-height: 25px;
	text-align: right;
}
#header #user a#logout {
	padding-left: 10px;
	color: #797979;
	text-decoration: none;
}
#header #user a#logout:hover {color: #ed1c24;}

#header .prix-clients {
	/*position: absolute;*/
	/*left: auto;*/
	/*right: 100%;*/
	/*top: 5px;*/
	/*bottom: auto;*/
	color: #999;
	font-size: 12px;
	white-space: nowrap;
	display: inline-block;
	margin-right: 15px;
}
#header .prix-clients a {
	display: block;
	background: transparent url(../styles-all/images/credit_card.png) no-repeat right 0 scroll;
	line-height: 26px;
	padding-right: 29px;
	padding-left: 5px;
	color: #999;
	text-decoration: none;
}
#header .prix-clients a span {
	display: inline-block;
	color: transparent;
	line-height: 15px;
	padding-right: 5px;
	border-right: 7px solid #999;
	transition: all .25s ease-out;
}
#header .prix-clients.on a span {
	border-right-color: #9c0;
}
#header .prix-clients a:hover {
	background-color: #fff;
}
#header .prix-clients a:hover span {
	color: #797979;
	text-decoration: underline;
}
#header .prix-clients span b {
	font-weight: normal;
}
#header .prix-clients span b.on {
	display: none;
}
#header .prix-clients.on span b.on {
	display: inline;
}
#header .prix-clients.on span b.off {
	display: none;
}

#header .user-infos {
	display: inline-block;
}



/* barre de gestion des commandes */

.orders-bar {
	flex: 0 0 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	height: 36px;
	order: 2;
	color: #fff;
	line-height: 36px;
	/* background-color: #ed1c24; */
	background-color: #389dd7;
	/*box-shadow: 0 15px 5px -15px rgba(0,0,0,.35) inset;*/
}
.orders-bar a {
	color: #fff;
}

.orders-bar .open-new-order {
	flex: 0 0 250px;
	box-sizing: border-box;
	background-color: rgba(0,0,0,.12);
	box-shadow: -15px 0 5px -15px rgba(0,0,0,.3) inset;
}
.orders-bar .open-new-order a {
	display: block;
	padding: 0 15px 0 30px;
	position: relative;
}
.orders-bar .open-new-order a:hover {
	text-decoration: none;
	background-color: rgba(0,0,0,.12);
}
.orders-bar .open-new-order a::before {
	content: '';
	position: absolute;
	left: 15px;
	top: 50%;
	width: 9px;
	height: 1px;
	background-color: #fff;
}
.orders-bar .open-new-order a::after {
	content: '';
	position: absolute;
	left: 19px;
	top: calc(50% - 4.5px);
	width: 1px;
	height: 9px;
	background-color: #fff;
}

.orders-bar .current-order {
	flex: 1 0 auto;
	padding: 0 15px;
}
.orders-bar .current-order a:hover {
	text-decoration: underline;
}
.orders-bar .current-order .main-action {
	margin-left: 15px;
}

.orders-bar .all-orders {
	flex: 0 1 auto;
	position: relative;
	/* background-color: #ed1c24; */
	background-color: #389dd7;
	/*box-shadow: 0 15px 5px -15px rgba(0,0,0,.35) inset;*/
}
.orders-bar .all-orders-title {
	position: relative;
	padding: 0 30px 0 15px;
	text-align: right;
	white-space: nowrap;
	cursor: pointer;
	background-color: rgba(0,0,0,.12);
}
.orders-bar .all-orders-title:hover {
	background-color: rgba(0,0,0,.24);
}
.orders-bar .all-orders-title::after {
	content: '';
	position: absolute;
	right: 15px;
	top: 50%;
	top: calc(50% - 3px);
	width: 0;
	height: 0;
	border: 8px solid transparent;
	border-left-width: 4px;
	border-right-width: 4px;
	border-top-color: #fff;
	box-sizing: border-box;
}
.orders-bar .all-orders-list {
	display: none;
	position: absolute;
	right: 0;
	top: 100%;
	z-index: 10;
	width: 400px;
	line-height: 16px;
	/* background-color: #d01920; */
	background-color: #318abd;
}
.orders-bar .all-orders-list ul {
	list-style: none;
}
.orders-bar .all-orders-list .order {
	list-style: none;
}
.orders-bar .all-orders-list .order a {
	display: block;
	padding: 10px 15px 10px 25px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.orders-bar .all-orders-list .order a:hover {
	text-decoration: none;
	background-color: rgba(0,0,0,.12);
}
.orders-bar .all-orders-list .order.active {
	/*padding: 2px;*/
}
.orders-bar .all-orders-list .order.active a {
	/* background-color: #ff2f3c; */
	background-color: #51aadd;
	position: relative;
}
.orders-bar .all-orders-list .order.active a::before {
	content: '';
	position: absolute;
	left: 10px;
	top: 12px;
	z-index: 1;
	width: 0;
	height: 0;
	border: 6px solid transparent;
	border-left-color: #fff;
}

/*.orders-bar li.open-new a {
	margin-top: 15px;
	padding-left: 30px;
	position: relative;
}
.orders-bar .open-new a::before {
	content: '';
	position: absolute;
	left: 15px;
	top: 50%;
	width: 9px;
	height: 1px;
	background-color: #fff;
}
.orders-bar .open-new a::after {
	content: '';
	position: absolute;
	left: 19px;
	top: calc(50% - 4.5px);
	width: 1px;
	height: 9px;
	background-color: #fff;
}*/

.orders-bar .all-orders-list .order .nb {
	display: inline-block;
	position: relative;
	top: 0;
	min-width: 12px;
	margin-right: 4px;
	padding: 0 3px;
	text-align: center;
	border-radius: 3px;
	/*border: 1px solid #fff;*/
	background-color: rgba(0,0,0,.2);
	position: relative;
	top: -1px;
}
.orders-bar .all-orders-list .order .date {
	opacity: .65;
}



/* barre de progression de la commande (étapes) */

.order-steps {
	display: flex;
	margin-bottom: 20px;
	background-color: #e0e0e0;
}
.order-step {
	box-sizing: border-box;
	flex: 0 0 25%;
	padding: 10px;
	text-align: center;
	line-height: 16px;
	position: relative;
	z-index: 1;
	background-color: #e0e0e0;
}
.order-step::before,
.order-step::after {
	content: '';
	position: absolute;
	top: 0;
	z-index: 2;
	width: 0;
	height: 0;
	border: 18px solid transparent;
	border-left-width: 10px;
	border-right-width: 10px;
	border-left-color: #e0e0e0;
}

.order-step::before {
	left: 0;
}
.order-step::after {
	left: 100%;
}

.order-step:first-child::before {
	border-left-color: #fff;
}
.order-step:last-child::after {
	left: auto;
	right: 0;
	border-top-color: #fff;
	border-bottom-color: #fff;
	border-right-color: #fff;
	border-right-width: 0;
}

/*.order-step.done {
	z-index: 2;
	color: #fff;
	background-color: #d01920;
}
.order-step.done + .order-step::before {
	border-left-color: #d01920;
}*/
/*.order-step.active {
	z-index: 2;
	color: #fff;
	font-weight: bold;
	background-color: #ed1c24;
}
.order-step.active::after {
	border-left-color: #ed1c24;
}*/

/* active */
.order-steps.current-1 .step1,
.order-steps.current-2 .step2,
.order-steps.current-3 .step3,
.order-steps.current-4 .step4 {
	z-index: 2;
	color: #fff;
	font-weight: bold;
	background-color: #ed1c24;
}
.order-steps.current-1 .step1::after,
.order-steps.current-2 .step2::after,
.order-steps.current-3 .step3::after,
.order-steps.current-4 .step4::after {
	border-left-color: #ed1c24;
}

/* done */
.order-steps.current-2 .step1,
.order-steps.current-3 .step1,
.order-steps.current-3 .step2,
.order-steps.current-4 .step1,
.order-steps.current-4 .step2,
.order-steps.current-4 .step3 {
	/*z-index: 2;*/
	color: #fff;
	background-color: #d01920;
}
.order-steps.current-2 .step1::before,
.order-steps.current-2 .step2::before,
.order-steps.current-3 .step1::before,
.order-steps.current-3 .step2::before,
.order-steps.current-3 .step3::before,
.order-steps.current-4 .step1::before,
.order-steps.current-4 .step2::before,
.order-steps.current-4 .step3::before,
.order-steps.current-4 .step4::before {
	border-left-color: #d01920;
}



#main {
	order: 3;
	flex: 1 0 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	min-height: calc(100vh - 111px); /* IE11 */
	padding-left: 0;
	position: relative;
}
#main #sidebar {
	display: block;
	position: relative;
	width: 250px;
	flex: 0 0 250px;
	padding-top: 20px;
	background: #e0e0e0;
	box-shadow: -15px 0 5px -15px rgba(0,0,0,.35) inset;
}
#main #sidebar a {
	color: #000;
	transition: color .1s linear;
}
#main #sidebar a:hover {
	color: #ed1c24;
	text-decoration: none;
}
#main #sidebar li {list-style: none; padding-bottom: 10px;}
#main #sidebar li.label {font-weight: bold;}
#main #sidebar label {display: block; padding-bottom: 3px;}
#main #sidebar .block {
	display: block;
	/*width: 195px;*/
	padding: 15px 15px 20px;
	border-bottom: 1px solid rgba(0,0,0,.1);
}

#main #sidebar .form_liquidonly_details {
	display: none;
	margin-top: 2px;
	padding: 10px 5px 0;
	margin-left: -5px;
	background-color: #ccc;
	position: relative;
	border-radius: 2px;
}
#main #sidebar .form_liquidonly_details::before {
	content: '';
	display: block;
	position: absolute;
	left: 6px;
	top: 0;
	width: 0;
	height: 0;
	border: 6px solid transparent;
	border-top-color: #e0e0e0;
	border-bottom: none;
	box-sizing: border-box;
}
#main #sidebar .form_liquidonly_details div {
	padding-bottom: 5px;
}
#main #sidebar .form_liquidonly_details div input {
	position: relative;
}
#main #sidebar #search .form_liquidonly_details select {
	width: auto;
	min-width: 75px;
}

#main #sidebar #search .choose_cat a.change_selected_elm {
	color: #ed1c24;
	white-space: nowrap;
}
#main #sidebar #search .choose_cat a.change_selected_elm span.path-part {
	display: block;
	margin: 1px 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
#main #sidebar #search .choose_cat a.change_selected_elm span.path-part b {
	display: block;
	padding: 0 2px;
	border-radius: 2px;
	font-weight: normal;
	background-color: #ccc;
	position: relative;
}
#main #sidebar #search .choose_cat a.change_selected_elm span.path-part + span.path-part b::before {
	content: '\21B3';
	display: block;
	position: absolute;
	left: -10px;
	top: -2px;
	line-height: 16px;
	color: #666;
	width: 10px;
	text-align: center;
}

#main #sidebar #search {padding-top: 0;}
#main #sidebar #search select,
#main #sidebar #search input[type=text],
#main #sidebar #search input[type=number] {
	box-sizing: border-box;
	display: block;
	width: 100%;
	padding: 1px 2px;
}
#main #sidebar #search input.no-page {width: 60px;}
#main #sidebar #search input[type=checkbox] {
	margin-right: 2px;
}
#main #sidebar #search input[type=checkbox] + label {
	display: inline;
}
/*#main #sidebar #search select {width: 195px;}*/
#main #sidebar #search h2 {background: transparent url(../styles-all/images/menu_icons.png?v=4) no-repeat 0 -900px scroll;}
#main #sidebar #search li.buttons {overflow: hidden; padding-top: 10px;}
#main #sidebar #search li.buttons .submit-search {float: left; font-weight: bold; padding: 0 3px;}
#main #sidebar #search li.buttons #reset {
	float: right;
	padding: 3px;
	color: #900;
	border: none;
	background: transparent;
	cursor: pointer;
	text-decoration: underline;
}

#main #sidebar #menu1 li,
#main #sidebar #menu2 li {padding: 0;}
#main #sidebar #menu1 a,
#main #sidebar #menu2 a {
	display: block;
	padding: 7px 0 7px 35px;
	line-height: 18px;
	background-image: url(../styles-all/images/menu_icons.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-color: transparent;
}
#main #sidebar #menu2 {border-bottom: none;}

#main #sidebar #menu1 li.m1_1 a       {background-position: 0    3px;}
#main #sidebar #menu1 li.m1_1 a:hover {background-position: 0  -47px;}
#main #sidebar #menu1 li.m1_2 a       {background-position: 0  -97px;}
#main #sidebar #menu1 li.m1_2 a:hover {background-position: 0 -147px;}
#main #sidebar #menu1 li.m1_3 a       {background-position: 0 -194px;}
#main #sidebar #menu1 li.m1_3 a:hover {background-position: 0 -244px;}
#main #sidebar #menu1 li.m1_4 a       {background-position: 0 -295px;}
#main #sidebar #menu1 li.m1_4 a:hover {background-position: 0 -345px;}
#main #sidebar #menu1 li.m1_5 a       {background-position: 0 -1147px;}
#main #sidebar #menu1 li.m1_5 a:hover {background-position: 0 -1197px;}
#main #sidebar #menu1 li.m1_6 a       {background-position: 0 -1247px;}
#main #sidebar #menu1 li.m1_6 a:hover {background-position: 0 -1297px;}
#main #sidebar #menu1 li.m1_7 a       {background-position: 0 -1347px;}
#main #sidebar #menu1 li.m1_7 a:hover {background-position: 0 -1397px;}
#main #sidebar #menu2 li.m2_1 a       {background-position: 0 -397px;}
#main #sidebar #menu2 li.m2_1 a:hover {background-position: 0 -447px;}
#main #sidebar #menu2 li.m2_2 a       {background-position: 0 -497px;}
#main #sidebar #menu2 li.m2_2 a:hover {background-position: 0 -547px;}
#main #sidebar #menu2 li.m2_3 a       {background-position: 0 -593px;}
#main #sidebar #menu2 li.m2_3 a:hover {background-position: 0 -643px;}
#main #sidebar #menu2 li.m2_4 a       {background-position: 0 -697px;}
#main #sidebar #menu2 li.m2_4 a:hover {background-position: 0 -747px;}
#main #sidebar #menu2 li.m2_5 a       {background-position: 0 -797px;}
#main #sidebar #menu2 li.m2_5 a:hover {background-position: 0 -847px;}
#main #sidebar #menu2 li.m2_6 a       {background-position: 0 -997px;}
#main #sidebar #menu2 li.m2_6 a:hover {background-position: 0 -1047px;}

#sidebar .has-items strong {
	float: right;
	display: inline-block;
	min-width: 15px;
	padding: 2px 3px 0;
	color: #fff;
	text-align: center;
	background-color: #ed1c24;
	border-radius: 2px;
}

#sidebar .last-article {
	display: none;
	background-color: rgba(0,0,0,.1);
	margin-top: 5px;
	margin-left: -5px;
	margin-right: -15px;
	margin-bottom: 10px;
	padding: 2px 15px 5px 5px;
	border-radius: 2px 0 0 2px;
	font-size: 12px;
}
#sidebar .last-article h3 {
	margin: 0;
	color: #666;
	font-size: 12px;
	font-weight: normal;
}
#sidebar .last-article .data {
	margin: 5px 0 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
#sidebar .last-article .img {
	background-color: #fff;
	border-radius: 2px;
	width: 50px;
	height: 50px;
	flex: 0 0 50px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#sidebar .last-article .img img {
	display: block;
	margin: 0 auto;
	border-radius: 2px;
}
#sidebar .last-article .txt {
	flex: 1 0 0;
	padding-left: 5px;
}
#sidebar .last-article .txt .ref {
	font-weight: bold;
	margin-right: 5px;
}
#sidebar .last-article .txt .desc {}

.article-qt {
	margin-top: 5px;
	text-align: right;
}
.article-qt .less,
.article-qt .more {
	display: inline-block;
	line-height: 18px;
	width: 18px;
	height: 18px;
	text-align: center;
	border-radius: 2px;
	color: #000;
	background-color: #fff;
	cursor: pointer;
	vertical-align: top;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.article-qt span:hover {
	background-color: #eee;
}
.article-qt input {
	display: inline-block;
	width: 30px;
	height: 16px;
	/*line-height: 14px;*/
	padding: 0;
	vertical-align: middle;
	text-align: center;
	-moz-appearance: textfield;
}
.article-qt input::-webkit-inner-spin-button,
.article-qt input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

#sidebar .article-qt {
	transition: opacity .25s ease-out;
}
#sidebar .article-qt input {
	border-color: #fff;
}
#sidebar .working .article-qt {
	opacity: .25;
	cursor: not-allowed;
}
#sidebar .working .article-qt * {
	cursor: not-allowed;
}

table .article-qt {
	display: inline-block;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	min-width: 101px;
	margin: 0;
	text-align: center;
	transition: all .25s ease-out;
}
table .article-qt .qt-input,
table .article-qt .qt-btn,
table .article-qt .add-btn {
	float: left;
}

table .article-qt .qt-input .qt {
	height: 22px;
}
table .article-qt .qt-btn .more {
	display: block;
	margin-bottom: 1px;
}
table .article-qt .qt-btn .less {
	display: block;
	margin-top: 1px;
}

table .article-qt .less,
table .article-qt .more {
	background-color: #ddd;
}
table .article-qt span:hover {
	background-color: #bbb;
}
table .article-qt input {
	width: 25px;
	margin: 0 3px;
}


#content {
	padding: 15px 15px 25px;
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	flex: 1 0 calc(100vw - 255px);
}
#content::after {
	content: "";
	display: table;
	clear: both;
}
#content a#print {
	position: absolute;
	left: auto; right: 15px;
	top: 5px;
	color: #666;
}
#content h3 {
	color: #000;
	margin: 15px 0;
	padding: 2px 4px;
	font-size: 15px;
	border: 1px solid #999;
	background-color: #eee;
}
#content h3.alt {
	padding: 0;
	border: none;
	background-color: transparent;
}
#content h4 {margin: 5px 0;}
#content p {margin: 5px 0;}
#content ol {margin: 15px 0 15px 15px;}
#content ul {margin: 15px 0 15px 15px; list-style: square outside none;}

#content .cols {overflow: hidden;}
#content .col {
	width: 45%;
	float: left;
	margin-right: 5%;
}

/* titre avec icône : la numérotation des ID correspond à celle des ID du menu */
#content h2#t1_1::before,
#content h2#t1_2::before,
#content h2#t1_3::before,
#content h2#t1_4::before,
#content h2#t1_5::before,
#content h2#t1_6::before,
#content h2#t1_7::before,
#content h2#t2_1::before,
#content h2#t2_2::before,
#content h2#t2_3::before,
#content h2#t2_4::before,
#content h2#t2_5::before,
#content h2#search::before,
#content h2#admin::before,
#home h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 36px;
	height: 26px;
	background: transparent url(../styles-all/images/menu_icons.png) 0 0 scroll no-repeat;
}

#content h2#t1_1::before    {background-position: 0    1px;}
#content h2#t1_2::before    {background-position: 0 -100px;}
#content h2#t1_3::before    {background-position: 0 -198px;}
#content h2#t1_4::before    {background-position: 0 -298px;}
#content h2#t1_5::before    {background-position: 0 -1150px;}
#content h2#t1_6::before    {background-position: 0 -1250px;}
#content h2#t1_7::before    {background-position: 0 -1350px;}
#content h2#t2_1::before    {background-position: 0 -400px;}
#content h2#t2_2::before    {background-position: 0 -500px;}
#content h2#t2_3::before    {background-position: 0 -596px;}
#content h2#t2_4::before    {background-position: 0 -700px;}
#content h2#t2_5::before    {background-position: 0 -800px;}
#content h2#search::before  {background-position: 0 -900px;}
#content h2#admin::before   {background-position: 0 -950px;}

#content table {border-collapse: collapse;}
table.dataTable thead th,
#content table th {
	padding: 2px;
	color: #333;
	text-align: left;
	font-weight: bold;
	background: #e0e0e0;
	border-bottom: 1px solid #999;
	vertical-align: top;
}
table.fixedHeader-locked {
	position: fixed !important;
	top: 0 !important;
	z-index: 100;
}
#content table tfoot th {
	border-bottom: none;
}
#content table tbody tr:last-child td {
	border-bottom: 1px solid #999 !important;
}
#content table th.vide {
	background: transparent;
	border-bottom: none;
}
#content #basket table tbody tr,
#content table#results tbody tr {
	height: 41px;
}
#content table td {
	padding: 2px;
	text-align: left;
	border: 1px solid #e9e9e9;
	border: 1px solid rgba(0,0,0,.1);;
	vertical-align: top;
}
#content table td.ref a {
	display: inline-block;
	position: relative;
	padding-right: 14px;
	white-space: nowrap;
}
#content table td.ref a::after {
	content: '';
	width: 9px;
	height: 9px;
	position: absolute;
	right: 0;
	/*top: 0;*/
	bottom: 5px;
	background: transparent url(../styles-all/images/new-window-black.png) no-repeat 50% 50% scroll;
	-webkit-background-size: contain;
	background-size: contain;
	opacity: .5;
}
#content table td.ref a:hover::after {
	opacity: 1;
}
#content table tbody tr:nth-child(2n+1) {background: #f9f9f9;}
#content table td.nobr {white-space: nowrap;}
#content table td.prix {text-align: right;}
#content table td.number {text-align: right;}
#content table td.pc {text-align: right;}
#content table td.stock {text-align: left;}
#content table td.stocktxt {text-align: left;}
#content table td.lowercase {text-transform: lowercase;}
.mode-representant #content table td.stock {text-align: right;}

#content table .article-row-2 {}
#content table .article-row-2 .comp {
	display: flex;
	flex-wrap: wrap;
}
#content table .article-row-2 dl {
	flex: 0 0 175px;
	padding-right: 25px;
}
#content table .article-row-2 dt {
	display: inline;
	font-weight: bold;
}
#content table .article-row-2 dd {
	display: inline;
}


/* dimensions */
#caddie tbody .ref,
#caddie tbody .nb,
#caddie tbody .var,
#caddie tbody .prix,
#caddie tbody .remove {
	width: 80px;
}

#content table td .long {
	min-width: 180px;
}

#content table td.actions {
	text-align: center;
}
#content table td .btn-order {
	position: relative;
	display: inline-block;
	margin: 0 3px;
	padding: 0;
	width: 44px;
	height: 38px;
	background-image: url(../styles-all/images/menu_icons.png);
	background-position: 49% 7px;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-color: #ccc;
	border: none;
	border-radius: 2px;
	cursor: pointer;
}
#content table td .btn-order:hover {
	background-position: 50% -1095px;
	background-color: #ed1c24;
}
#content table td .btn-order span {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	text-indent: 10px;
}

#content table td .article-qt.working {
	opacity: .25;
	cursor: not-allowed;
}
#content table td .article-qt.working * {
	cursor: not-allowed;
}

#content .message {
	padding: 0 15px;
	/*margin-right: 100px;*/
	margin: 25px 0;
	border: 1px solid #666;
	background: #fff;
	box-shadow: 0 2px 10px -5px #666;
}
#content .message h2 {
	height: auto;
	margin: 0 -15px 0;
	padding: 5px 15px 5px 51px;
	background-position: 15px 5px;
	background-color: #ccc;
	border-bottom: 1px solid #666;
}
#content .message p {
	margin: 0 -15px;
	padding: 15px;
	/*border-top: 1px solid #fff;*/
	/*border-bottom: 1px solid #bbb;*/
}
#content .message p:last-child {border-bottom: none;}
#content .error h2 {
	background-image: url(../styles-all/images/delete.png);
	background-color: #fdd;
	color: #c00;
	border-color: #caa;
	min-height: 26px;
}
#content .confirm h2 {
	background-image: url(../styles-all/images/lightbulb.png);
	background-color: #dfd;
	color: #090;
	border-color: #aca;
}
#content .warning h2 {
	background-image: url(../styles-all/images/warning.png);
	background-color: #fc6;
	color: #740;
	border-color: #f94;
}


/* cas particuliers */

/* home */
#home h2 {
	font-size: 28px;
	font-weight: normal;
}
#home h2::before {
	background-position: 0 -400px;
}
#home #maj {
	font-style: italic;
	text-align: right;
	color: #666;
	margin-top: 40px;
}
#home .home-banner + #maj {
	margin-top: 0;
}
#home .more-info {
	margin-top: 0;
	padding: 8px 20px;
	color: #000;
	line-height: 19px;
	border: none;
	background-color: #e0e0e0;
}
/* #home h3 {border-bottom: none;} */
#home h3 a {border-bottom: 1px dotted;}
#home h3 a:hover {border-bottom: 1px solid; text-decoration: none;}
#home .info {
	margin: 25px 0;
	padding: 0 15px;
	border: 1px solid #e7cb00;
	color: #674441;
	background: #fff397;
	box-shadow: 0 2px 15px #fff397;
	text-shadow: 0 1px 0 #fffad7;
}

.products-box {
	padding: 10px;
	background-color: #ddd;
	margin: 25px 0;
}
#content .products-box h2 {
	margin: 5px 10px;
	padding: 0;
	font-size: 18px;
	font-weight: bold;
	background: none;
	text-align: center;
}
.products-box h2::before {
	content: none;
	display: none;
	background: none;
}

#content .products-box ul.products {
	/*margin: 0 -15px;*/
	/*padding: 15px 10px;*/
	margin: 0 auto;
	padding: 0;
	max-width: 1200px;
	text-align: center;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
}
#content .products-box ul.products::after {
	content: '';
	display: table;
	clear: both;
}

#popup .products-box {
	clear: both;
}
#popup .products-box h2 {
	text-align: left;
}
#popup .products-box ul.products {
	flex-wrap: wrap;
	justify-content: flex-start;
}
#popup .products-box ul.products li {
	display: list-item;
	flex: 0 0 25%;
	width: 25%;
	max-width: 190px;
}

#content .products-box.suggestions-bw ul.products {
	flex-wrap: wrap;
}
.products-box ul.products li {
	flex: 1 1 20%;
	float: left;
	list-style: none;
	width: 20%;
	min-width: 150px;
	max-width: 200px;
}
.products-box ul.products .product {
	display: block;
	margin: 10px;
	text-align: center;
	border: 1px solid #999;
	background: #eee;
	transition: all .15s ease-out;
}
.products-box ul.products .product a {
	text-decoration: none;
}
.products-box ul.products .product:hover {
	border-color: #000;
	text-decoration: none;
	box-shadow: 0 4px 15px -5px rgba(0,0,0,.5);
}
#content .products-box ul.products h3 {
	/*height: 38px;*/ /*deux lignes*/
	margin: 0;
	padding: 3px;
	border: none;
}
#content .products-box ul.products a:hover h3 {
	border-color: #ddd;
}
.products-box ul.products .ref {
	padding: 2px 2px 0;
	color: #000;
	font-size: 12px;
}
#content .products-box ul.products p {
	height: 32px; /* 2 lignes */
	margin: 0;
	padding: 0 5px;
	line-height: 16px;
	overflow: hidden;
	border-bottom: 4px solid #eee;
	border-top: 4px solid #eee;
	transition: all .15s ease-out;
}
.products-box ul.products a:hover p {
	/*border-color: #fff;*/
}
.products-box ul.products .img {
	position: relative;
	overflow: hidden;
	height: 125px;
	padding: 5px;
	background: #fff;
	border-top: 1px solid #ccc;
	transition: all .15s ease-out;
}
.products-box ul.products a:hover .img {
	border-top-color: #999;
}
.products-box ul.products .img img {
	display: block;
	margin: 0 auto;
	border: none;
	max-width: 100%;
	max-height: 125px;
}
.products-box ul.products .img .rabais {
	position: absolute;
	right: -46px;
	bottom: -18px;
	padding: 0 30px;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	line-height: 24px;
	background-color: #ed1c24;
	transform: rotate(-45deg);
	transform-origin: bottom left;
}

.products-box ul.products .infos {
	min-height: 37px;
	padding: 2px 40px 2px 10px;
	position: relative;
	color: #444;
	background-color: #eee;
	border-top: 1px solid #ccc;
	cursor: pointer;
}
/*.products-box ul.products .infos .ref {
	padding: 0;
	color: #888;
	font-size: 10px;
	line-height: 10px;
	text-align: left;
	word-wrap: break-word;
}*/
.products-box ul.products .infos .prix {
	min-height: 37px;
	line-height: 21px;
	text-align: right;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: stretch;
	flex-wrap: wrap;
	align-items: center;
}
.products-box ul.products .infos .prix .prix-base {
	flex: 1 1 0;
	padding-right: 2px;
	line-height: 15px;
	text-align: left;
	opacity: .7;
}
.products-box ul.products .infos .prix .prix-base span {
	display: block;
}
.products-box.liquidations ul.products .infos .prix .prix-base {
	text-decoration: line-through;
}
.products-box ul.products .infos .prix .prix-bwo {
	flex: 0 1 0;
	font-size: 20px;
	font-weight: bold;
}
.products-box ul.products .infos .btn {
	position: absolute;
	left: auto;
	right: 0;
	top: 3px;
	height: 34px;
	width: 45px;
	color: #fff;
	background-image: url(../styles-all/images/menu_icons.png);
	background-position: 50% 4px;
	background-repeat: no-repeat;
	background-attachment: scroll;
}
.products-box ul.products .infos .btn .svg-icon {
	display: none;
}
.products-box ul.products .infos:hover {
	background-color: #ed1c24;
	border-top-color: #900;
}
.products-box ul.products .working .infos {
	background-color: #a00;
	border-top-color: #600;
	cursor: not-allowed;;
}
.products-box ul.products .working .infos * {
	cursor: not-allowed;;
}
.products-box ul.products .working .infos .ref,
.products-box ul.products .working .infos .prix,
.products-box ul.products .infos:hover .ref,
.products-box ul.products .infos:hover .prix {
	color: #fff;
}
.products-box ul.products .working .infos .btn,
.products-box ul.products .infos:hover .btn {
	background-position: 50% -1096px;
}
.products-box ul.products .infos .btn span {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

#home img.deco {
	display: block;
	margin: 25px auto;
	border: 1px solid #666;
}

#home .col1 {
	float: left;
	width: 55%;
}
#home .col2 {
	width: 45%;
	float: left;
}
#home .col2 div {
	max-width: 350px;
	padding-left: 15px;
	text-align: center;
}
#home .col2 div img {
	max-width: 100%;
}

.home-banner {
	font-size: 0;
	margin-bottom: 25px;
}
.home-banner a {
	display: inline-block;
	text-decoration: none;
	border: none;
}
.home-banner img {
	display: block;
	border: none;
	max-width: 100%;
	height: auto;
}

/* commandes effectuées */
#content .orders-history tbody td {
	white-space: nowrap;
	padding-right: 10px;
}
#content .orders-history tbody td.com {
	white-space: normal;
	padding-right: 2px;
}

/* détail d'une commande */
.order-meta {
	margin: 20px 0;
	padding: 3px 0;
	background-color: #eee;
}
.order-meta dl {
	padding: 5px 15px;
	white-space: nowrap;
	display: flex;
}
.order-meta dt {
	display: inline-block;
	flex: 0 0 200px;
	min-width: 200px;
	font-weight: bold;
}
.order-meta dd {
	flex: 1 0 auto;
	display: inline-block;
}
.order-meta .line {
	display: block;
}
.order-meta .line:empty {
	display: none;
}
.order-rem {
	margin: 25px 0;
}
.order-rem + .order-rem {
	margin-top: -25px;
}


.order-actions {
	/*margin: 20px 0;*/
	display: flex;
	flex-wrap: wrap;
}
.order-action {
	margin-right: 25px;
}
.order-action:last-child {
	margin-right: 0;
}
.order-action a {
	display: block;
	padding: 5px;
	font-weight: normal !important;
	background: transparent none no-repeat 0 50% scroll;
	background-size: auto 24px;
}
.order-action a:hover {
	/*text-decoration: none;*/
	/*border-color: #999;*/
	/*background-color: #eee;*/
}
.order-action.order-action-csv a {
	padding-left: 30px;
	background-image: url('../styles-all/images/file-red.svg');
}
.order-action.order-action-images a {
	padding-left: 30px;
	background-image: url('../styles-all/images/images-red.svg');
}



/* mon caddie */
table#caddie th {text-align: center; border: 1px solid #999;}
table#caddie thead tr:first-child  th {border-bottom: none;}
table#caddie thead tr:first-child  th.prix {background: #999; color: #fff; border: 1px solid #999;}
table#caddie thead tr:nth-child(3) th.prix {border-bottom: 1px solid #999;}
table#caddie thead th.prix {background: #d0d0d0;}
table#caddie thead th.vide {border: none;}
table#caddie thead th.net {background: #d3bebe; border-color: #a28c8d !important;}
table#caddie tbody td.nb {
	text-align: right;
	font-weight: bold;
}
.archive table#caddie tbody td.nb {
	font-weight: normal;
}
table#caddie tfoot td {border: none;}
table#caddie tfoot td.nb {
	text-align: right;
}
table#caddie tfoot .shipping td {
	text-align: right;
	background: #ddd;
}
table#caddie tfoot .shipping .title {
	font-weight: bold;
}
table#caddie tfoot .shipping .vide {
	background: transparent;
}
table#caddie tfoot td.total {
	color: #fff;
	font-weight: bold;
	text-align: right;
	background: #999;
	border: none;
}
table#caddie tfoot td.prix.vide {background: #999;}
table#caddie tfoot td.net {background: #a28c8d; color: #fff; font-weight: bold;}
table#caddie tbody td {height: 24px;}
table#caddie tbody td.ref span {
	display: inline-block;
	min-width: 110px;
}
table#caddie tbody td.nb input {width: 35px;}
table#caddie tbody td.prix input {width: 50px; text-align: right;}
table#caddie td.net {background: #fde8e9; color: #ed1c24; border-color: #e9d4d5;}
table#caddie tbody tr:nth-child(2n+1) td.net {background: #f7e3e4;}

table#caddie tbody tr.quantity-changed td.nb {background-color: #fd9; border-color: #e9ca8c;}
table#caddie tbody tr.quantity-changed:nth-child(2n+1) td.nb {background-color: #f9d895;}
table#caddie tbody tr.quantity-changed td.nb strong {color: #c30;}
table#caddie td.remove {text-align: center;}

table#caddie td.buttons {
	padding: 0;
	text-align: right;
}

table#caddie td.desc .status-msg {
	display: block;
	margin-top: 5px;
	/*padding: 2px 5px 3px;*/
	/*border-radius: 2px;*/
	/*background-color: rgba(0,0,0,.1);*/
}
table#caddie .status0 td.desc,
/*table#caddie .status2 td.desc,*/
table#caddie .status99 td.desc {
	/*color: #777;*/
	background-color: #f9d895;
}
table#caddie .status0 td.desc .status-msg,
/*table#caddie .status2 td.desc .status-msg,*/
table#caddie .status99 td.desc .status-msg {
	color: #c30;
	/*background-color: #c30;*/
}

.basket-client-infos {
	margin: 20px 0;
	padding: 3px 15px;
	background-color: #eee;
	display: flex;
}
.basket-client-infos span:empty {
	display: none;
}
.basket-client-infos .label {
	flex: 0 0 auto;
	padding: 5px 25px 5px 0;
	font-weight: bolder;
}
.basket-client-infos .data {
	flex: 1 0 auto;
}
.basket-client-infos .name {
	padding: 5px 0;
}
.basket-client-infos .name1 {
	font-weight: bold;
}
.basket-client-infos .name2::before {
	content: ', ';
}
.basket-client-infos .addr {
	padding: 5px 0;
}
.basket-client-infos .addr1::after,
.basket-client-infos .addr2::after {
	content: ', ';
}
.basket-client-infos .country::before {
	content: ', ';
}

.discount-info,
.small-order {
	width: 400px;
	max-width: 100%;
	margin: -2px;
	padding: 2px 5px;
	color: #666;
	background: #f3f3f3;
}
.discount-info {
	padding-bottom: 10px;
}
#content .discount-info h4,
#content .small-order h4 {
	margin: 0 0 5px;
}
#content .discount-info p,
#content .small-order p {
	margin: 0;
}

.shipping-info {
	margin: 15px 0;
	text-align: right;
}
#order.archive .shipping-info {
	/* ne pas afficher dans l'historique car ce n'est peut-être pas juste */
	display: none;
}

.next-step {
	margin: 25px 0;
	padding: 5px 10px;
}

.found2 button.next-step {
	position: relative;
	padding-left: 30px;
	white-space: nowrap;
}
.found2 button.next-step::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 25px;
	background-image: url(../styles-all/images/checkmark-32.png);
	background-repeat: no-repeat;
	background-position: 5px 50%;
	-webkit-background-size: 18px auto;
	background-size: 18px auto;
}
.found2 button.next-step.offer {
	padding-left: 10px;
}
.found2 button.next-step.offer::before {
	display: none;
	content: none;
}

.empty-basket {
	position: relative;
	margin: 25px 0;
	padding: 5px 10px 5px 30px;
	color: #c00;
	text-align: left;
	text-decoration: underline;
	white-space: nowrap;
	border: none;
	background: transparent none;
	cursor: pointer;
}
.empty-basket:focus {
	outline: 1px dotted;
}
.empty-basket::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 25px;
	background-image: url(../styles-all/images/trash-32.png);
	background-repeat: no-repeat;
	background-position: 5px 50%;
	-webkit-background-size: 18px auto;
	background-size: 18px auto;
}


/* devis envoyés */
.is-section-quotes.is-quote-archived .quote-sent,
.is-section-quotes.is-quote-archived .basket-empty {
	display: none;
}


/* confirmation de paiement */
.payement-status .message {display: none;}
.payment-status-ok       .payement-status .message.confirm,
.payment-status-error    .payement-status .message.error,
.payment-status-canceled .payement-status .message.warning {display: block;}


/* page d'envoi de la commande */
#order .message_erreur {
	padding: 1px 5px;
	color: #c00;
	border: 1px solid #c66;
	background: #fdd;
	box-shadow: 0 3px 5px -2px #ccc;
}
#order label {cursor: pointer;}
#order #addr {margin-top: 10px;}
#order #addr td {border: none; padding: 3px 15px 3px 6px;}
#order #addr input[type="radio"] {margin-right: 5px;}
#order #addr tr {border-top: 1px solid #e9e9e9;}
#order #addr tr:first-child {border-top: none;}
#content #addr tbody tr:last-child td {
	border-bottom: none !important;
}
#order textarea {
	box-sizing: border-box;
	max-width: 100%;
	width: 500px;
	height: 100px;
}
#order .form-rem-note {
	margin: 10px 0;
	color: #666;
}
#order #send {
	margin-top: 25px;
	/*text-align: right;*/
}
.order-notes,
#order #remarques {
	padding: 10px 30px;
	color: #333;
	font-family: monospace;
	border: 1px dotted #ccc;
	background:
		url(../styles-all/images/quote1.png) top left no-repeat,
		url(../styles-all/images/quote2.png) bottom right no-repeat;
	background-color: #f9f9f9;
}
#order label.form-yourref {
	margin-right: 5px;
}
#order .form-yourref-note {
	margin-left: 5px;
}
#order .notice {
	margin: 15px 0;
	padding: 5px 15px;
	background-color: #f9d895;
}
#order .notice-saved-addr {
	margin-top: 0;
	padding-left: 28px;
}
#order .notice.important {
	color: #fff;
	background-color: #c00;
}
#content #order .message {
	padding: 0 20px;
	margin: 25px 0;
}
#content #order .message.warning {
	background: #f9d895 url(../styles-all/images/delete.png) no-repeat 15px 50% scroll;
	border-color: #c60;
	padding-left: 55px;
}
#content #order .message h2,
#content #order .message p {
	margin-left: -20px;
	margin-right: -20px;
}
#content #order .message.warning p {
	border: none;
}
#content #order .message.warning p + p {
	padding-top: 0;
}
#content .wait {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: -46px;
	background-color: #fff;
}
#content .wait p {
	width: 60%;
	margin: 100px auto 0;
	padding: 50px;
	text-align: center;
	border: 1px solid #999;
	background-color: #eee;
	box-shadow: 0 5px 15px -5px rgba(0,0,0,.35);
}
/* erreur si commande vide */
.order-empty-msg {
	display: none;
}
#order.order-empty * {
	display: none;
}
#order.order-empty > h2,
#order.order-empty #caddie,
#order.order-empty .order-empty-msg {
	display: block;
}

#content .ul-radio {
	margin: 15px 0;
	list-style: none;
}
.ul-radio > li {
	position: relative;
	padding: 0 0 5px 0;
	list-style: none;
}
.ul-radio > li > label {
	display: block;
	padding: 5px 0 5px 28px;
}
.ul-radio > li > label:hover {
	background-color: #f3f3f3;
}
.ul-radio > li > label > span {
	font-weight: bold;
}
.ul-radio > li > input {
	position: absolute;
	left: 5px;
	top: 6px;
}
.ul-radio > li > input:checked + label {
	background-color: #e6e6e6;
}

.ul-radio .option-comp {
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 28px;
}
.ul-radio .option-comp:empty {
	display: none;
}
.ul-radio .option-comp.normal-addr {
	position: relative;
	padding-top: 0;
	padding-left: 38px;
	color: #666;
}
.ul-radio .option-comp.normal-addr::before {
	content: '';
	position: absolute;
	left: 28px;
	top: 0;
	bottom: 5px;
	width: 1px;
	background-color: #bbb;
}
.ul-radio > li > label:hover + .option-comp {
	background-color: #f3f3f3;
}
.ul-radio > li > input:checked + label + .option-comp,
.ul-radio > li > input:checked + label + .option-comp + .option-comp {
	background-color: #e6e6e6;
}
.ul-radio > li > input ~ .notice-saved-addr {
	display: none;
}
.ul-radio > li > input:checked ~ .notice-saved-addr {
	display: block;
}
.ul-radio .option-comp select {
	max-width: 100%;
}

#content .ul-form {
	margin: 0;
	list-style: none;
}
.ul-form > li {
	list-style: none;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	padding: 0 0 5px 0;
}
.ul-form > li.check {
	display: block;
	padding-top: 10px;
	padding-left: 125px;
}
.ul-form > li.check input[type=checkbox] {
	margin-right: 5px;
}

.ul-form > li > label,
.ul-form > li > .label {
	flex: 0 0 125px;
}
.ul-form > li > input[type=text],
.ul-form > li > .input {
	padding: 2px 5px;
	width: 200px;
}
.ul-form > li > .input {
	padding: 0;
	display: flex;
}
.ul-form > li > .input input {
	padding: 2px 5px;
	flex: 0 0 auto;
}
.ul-form > li > .input .field-short1 {width: 144px; margin-right: 4px;}
.ul-form > li > .input .field-short2 {width: 40px;}

table .qt-note {
	display: block;
	line-height: 1;
	font-size: .9em;
	font-weight: bold;
}

.mode-envoi-intro,
.mode-reliquats-intro {
	font-style: italic;
}
.mode-envoi li .com,
.mode-reliquats li .com {
	padding: 3px 0 0;
	color: #666;
}
.mode-envoi li .com-more,
.mode-reliquats li .com-more {
	display: none;
	padding-top: 10px;
	padding-bottom: 2px;
}
.mode-envoi li .com-more strong,
.mode-reliquats li .com-more strong {
	color: #333;
}


/* tous les paniers (commandes) */
.all-baskets {}
#content .all-baskets thead th {
	text-align: center;
	border: 1px solid #999;
}
#content .all-baskets thead th.empty {
	border: none;
	background-color: transparent;
}
#content .all-baskets tbody .nb,
#content .all-baskets tbody .date {
	text-align: right;
}
#content .all-baskets tbody .sep,
#content .all-baskets tbody .action {
	border-right-color: #999;
}
#content .all-baskets tbody .client:first-child {
	border-left-color: #999;
}
#content .all-baskets tbody tr:first-child .action {
	border-top-color: #999;
}


/* confirmation de la commande */
.confirm-banner {
	margin: 10px 0;
}
.confirm-banner img {
	display: block;
	margin: 0 auto;
}
#order.archive .confirm-banner {
	display: none !important;
}


/* page contact */
.person-info {
	margin: 15px 0;
	padding: 5px 10px;
	background-color: #eee;
}
#content .person-info .name {
	margin: 0 0 10px;
}
#content .person-info .name .name2 {
	display: block;
	font-weight: normal;
}
#content .person-info .name .name2:empty {
	display: none;
}
#content .person-info p {
	margin: 10px 0;
}
#content .person-info p:last-child {
	margin-bottom: 0;
}
.person-info .addr .line {
	display: block;
}
.person-info .addr .line:empty {
	display: none;
}


/* page mon compte */
.account-options {
	margin: 25px 0;
	/*padding-left: 36px;*/
}
.account-options .opt {
	display: inline-block;
}
.account-options .opt a {
	display: block;
	padding: 10px 15px;
	color: #333;
	background-color: #f9f9f9;
	border: 1px solid #e3e3e3;
}
.account-options .opt a:hover {
	color: #000;
	background-color: #eee;
	border-color: #ccc;
	text-decoration: none;
}


/* changer le mot de passe */
.change-password {
	display: block;
	/* max-width: 800px; */
}
.change-password .form-item {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	padding: 5px 0;
}
.change-password .form-help {
	font-style: italic;
	color: #666;
	padding-left: 200px;
	padding-bottom: 10px;
}
.change-password .form-help .car {
	display: inline-block;
	margin-left: 2px;
	padding: 0 2px;
	background-color: #e9e9e9;
	color: #444;
	border-radius: 2px;
	text-align: center;
	min-width: 15px;
	font-style: normal;
}
.change-password .form-item label {
	min-width: 190px;
	padding: 5px;
}
.change-password .form-item .form-input {
	position: relative;
}
.change-password .form-item input {
	width: 200px;
	padding: 5px;
}
.change-password .form-item input.error {
	box-shadow: 0 0 0 2px #c00 inset;
	border-color: #c00;
}
.change-password .form-action {
	padding: 25px 0 25px 199px;
}
.change-password .form-action button {
	padding: 5px 10px;
}
.change-password .form-action button:disabled {
	cursor: not-allowed;
}

.change-password .pwd-strength {
	position: absolute;
	left: 100%;
	top: 0;
	width: 250px;
	padding: 8px 5px 5px 10px;
}
.change-password .pwd-strength .pwd-strength-text {
	/*position: relative;*/
	position: absolute;
	left: 10px;
	right: 5px;
	bottom: 100%;
	margin: 10px 0 0;
	padding: 5px 10px;
	color: #fff;
	background-color: #666;
	border-radius: 2px;
}
.change-password .pwd-strength .pwd-strength-text::before {
	content: '';
	position: absolute;
	left: 50%;
	left: calc(50% - 6px);
	top: 100%;
	border: 6px solid transparent;
	border-top-color: #666;
	transition: left .35s ease-out;
}
.change-password .pwd-strength .pwd-strength-text:empty {
	display: none;
}
.change-password .pwd-strength meter {
	/* Reset the default appearance */
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	display: block;
	margin: 0;
	width: 100%;
	height: 10px;

	/* Applicable only to Firefox */
	background: none;
	background-color: #e9e9e9;
}
.change-password .pwd-strength meter::-webkit-meter-bar {
	background: none;
	background-color: #e9e9e9;
}
.change-password .pwd2-no-match {
	display: none;
	flex: 0 0 100%;
	padding-left: 200px;
	padding-top: 5px;
}
.change-password .pwd2-no-match div {
	display: inline-block;
	padding: 7px 10px;
	color: #fff;
	background-color: #c00;
}

/* Webkit based browsers */
.change-password .pwd-strength meter[value="1"]::-webkit-meter-optimum-value {background: #900;}
.change-password .pwd-strength meter[value="2"]::-webkit-meter-optimum-value {background: #c00;}
.change-password .pwd-strength meter[value="3"]::-webkit-meter-optimum-value {background: #f80;}
.change-password .pwd-strength meter[value="4"]::-webkit-meter-optimum-value {background: #9c0;}

/* Gecko based browsers */
.change-password .pwd-strength meter[value="1"]::-moz-meter-bar {background: #900;}
.change-password .pwd-strength meter[value="2"]::-moz-meter-bar {background: #c00;}
.change-password .pwd-strength meter[value="3"]::-moz-meter-bar {background: #f80;}
.change-password .pwd-strength meter[value="4"]::-moz-meter-bar {background: #9c0;}

.change-password .pwd-strength meter[value="0"] + .pwd-strength-text::before {left: 6px;}
.change-password .pwd-strength meter[value="1"] + .pwd-strength-text::before {left: calc(25%/2 - 6px);}
.change-password .pwd-strength meter[value="2"] + .pwd-strength-text::before {left: calc(50%/2 - 6px);}
.change-password .pwd-strength meter[value="3"] + .pwd-strength-text::before {left: calc(75%/2 - 6px);}
.change-password .pwd-strength meter[value="4"] + .pwd-strength-text::before {left: calc(50% - 6px);}


/* résultats de la recherche */
#order.confirmation #t1_1,
#order.confirmation #t1_2 {
	font-size: 20px;
}
#order #t1_1 span,
#order #t1_2 span {
	font-weight: bold;
}
#order #t1_1 span.order-id {
	font-size: 16px;
	font-weight: normal;
}

#order.confirmation #t1_1 {text-align: center; background: transparent none !important;}
#order.confirmation #t1_1::before {display: none;}

#order.confirmation #t1_1 .confirm-text {display: inline;}
#order.confirmation #t1_1 .archive-text {display: none;}

#order.archive #t1_1 .confirm-text {display: none;}
#order.archive #t1_1 .archive-text {display: inline;}
#order.archive #t1_2 .confirm-text {display: none;}
#order.archive #t1_2 .archive-text {display: inline;}

#order .confirm-apayer {display: none;}
#order.confirmation.apayer .confirm-apayer {display: block;}
#order.confirmation.apayer .confirm-banner {display: none;}

#order .archive-apayer {display: none;}
#order.archive.apayer .archive-apayer {display: block;}

#order .notice-apayer {
	padding: 5px 10px;
	border: 1px solid #f80;
	background-color: #fb3;
	margin-bottom: 25px;
	font-weight: bold;
}
#order .notice-apayer form,
#order .notice-apayer .action {
	margin: 10px 0;
	text-align: center;
}
#order .notice-apayer form input,
#order .notice-apayer .action button {
	display: inline-block;
	padding: 5px 15px;
}

/* résultats de la recherche */
.found1 .preview {margin: 15px 0;}
.found1 .preview img {
	border: 1px solid #999;
	box-shadow: 0 2px 15px #ccc;
	vertical-align: top;
}
/*.found table {margin-bottom: 100px;} /* espace pour logo Commodo */
.found {
/*	padding-left: 15px;
	padding-right: 15px;
	margin-left: -15px;
	margin-right: -15px;
	overflow: auto;
	border-right: 10px solid transparent;*/
}
.found table thead th {
	white-space: nowrap;
}

body.page-results .datatables-before,
body.page-results .datatables-after,
body.page-results #results th:last-child,
body.page-results #results td:last-child {
	padding-right: 15px;
}

/* hover pour image miniature */
#content .img-viewer .img {
	text-align: center;
	vertical-align: top;
	width: 10px;
	cursor: pointer;
	border-left: 6px solid #fff;
	transition: border-left-color .25s ease-out;
}
#content .img-viewer .no-image .img {
	cursor: default;
}
#content .img-viewer .viewer-current .img {
	border-left-color: #000;
}
.img-viewer .img .img-tn {
	display: block;
	margin: 0 auto;
}
.img-viewer .img .img-big {
	display: none;
}


/* affichage des images en mouse-over */
.found2 table .img .preview {
	position: relative;
}
.found2 table .img:hover .preview::before {
	display: block;
	content: '';
	width: 25px;
	height: 25px;
	position: absolute;
	right: -15px;
	bottom: -15px;
	z-index: 1;
}
.found2 table .img:hover .preview::after {
	display: block;
	content: '';
	width: 0;
	height: 0;
	border: 7px solid transparent;
	border-top-color: #000;
	position: absolute;
	right: -22px;
	top: 100%;
	top: calc(100% + 2px);
	z-index: 11;
}
.found2 table .img .preview .img-big {
	display: none;
	position: absolute;
	left: 100%;
	left: calc(100% + 2px);
	right: auto;
	top: 100%;
	top: calc(100% + 2px);
	border: 1px solid #999;
	background-color: #fff;
	box-shadow: 0 3px 10px -5px rgba(0,0,0,.5);
	z-index: 10;
	max-width: 90vw;
	max-width: calc(100vw - 140px);
	max-height: 90vh;
}
.found2 table .img:hover .preview .img-big {
	display: block;
}



.overlay.viewer-overlay {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	/*flex-direction: column;*/
	justify-content: center;
	align-items: center;
	background-color: rgba(0,0,0,.65);
}
.viewer-overlay .overlay-inner {
	padding: 0 40px;
}
.viewer-overlay .viewer-overlay-img {
	position: relative;
	z-index: 10;
	display: block;
	margin: 0 auto;
	/*max-width: 90vw;*/
	max-width: 100%;
	max-height: 80vh;
	max-height: calc(100vh - 60px);
	box-shadow: 0 5px 25px -10px rgba(0,0,0,.5);
}
.viewer-overlay .viewer-overlay-desc {
	position: relative;
	z-index: 11;
	max-width: 90vw;
	margin-top: 10px;
	padding: 5px 10px 3px;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	border-radius: 2px;
	background-color: rgba(0,0,0,.5);
}
.viewer-overlay .viewer-overlay-desc.no-desc {
	display: none;
}
.viewer-overlay nav {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 5;
	cursor: pointer;
}
.viewer-overlay nav .action {
	position: absolute;
	z-index: 1;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.viewer-overlay nav .close {
	right: 0;
	top: 0;
	z-index: 2;
	display: block;
}
.viewer-overlay nav .prev {
	left: 0;
	top: 0;
	bottom: 0;
}
.viewer-overlay nav .next {
	right: 0;
	top: 0;
	bottom: 0;
}
.viewer-overlay nav .action b {
	display: block;
	width: 40px;
	height: 80px;
	color: #fff;
	font-size: 40px;
	font-weight: normal;
	line-height: 40px;
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	text-indent: 500px;
	/*background-color: rgba(0,0,0,.5);*/
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-attachment: scroll;
	-webkit-background-size: 40px 40px;
	background-size: 40px 40px;
	cursor: pointer;
	transition: background-color .2s ease-out;
}
.viewer-overlay nav .action b:hover {
	background-color: rgba(0,0,0,.25);
}

.viewer-overlay nav .close b {
	height: 40px;
	background-image: url('images/cross-white.svg');
}
.viewer-overlay nav .prev b {
	background-image: url('images/double-arrow-left-white.svg');
}
.viewer-overlay nav .next b {
	background-image: url('images/double-arrow-right-white.svg');
}


/* système de tooltip */
.tooltip {
	display: inline-block;
	position: relative;
	white-space: nowrap;
}
.tooltip::after {
	content: '?';
	font-size: 10px;
	color: #fff;
	background: #666;
	border-radius: 50px;
	display: inline-block;
	height: 12px;
	width: 12px;
	text-align: center;
	line-height: 12px;
	margin-left: 3px;
	position: relative;
	top: -1px;
}
.tooltip .tip {
	display: none;
	position: absolute;
	top: 100%;
	top: calc(100% + 6px);
	right: -5px;
	z-index: 10;
	min-width: 100px;
	padding: 2px 5px;
	color: #fff;
	font-size: 11px;
	white-space: normal;
	background-color: #333;
	cursor: default;
}
.tooltip:hover .tip {
	display: block;
}
.tooltip .tip::before {
	content: '';
	position: absolute;
	/*left: 50%;*/
	/*left: calc(50% - 3px);*/
	right: 5px;
	bottom: 100%;
	width: 0;
	height: 0;
	border: 6px solid transparent;
	border-bottom-color: #333;
}
.tooltip .tip::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	height: 7px;
	background-color: transparent;
}

/*.tooltip-stock-extern::after {
	content: '!';
}
*/.tooltip-stock-extern .tip {
	text-align: left;
	white-space: nowrap;
}

.tooltip.next-season {
	white-space: initial;
	min-width: 90px;
}



/* pagination dataTables */
#content .dataTables_paginate {
	margin-top: 10px;
	padding-top: 0;
}
#content .dataTables_paginate .ellipsis,
#content .dataTables_paginate .paginate_button {
	display: inline-block;
	padding: 4px 4px 2px;
	margin: 0 0 0 5px;
	min-width: 22px;
	background: #666;
	color: #fff !important;
	text-align: center;
	text-decoration: none;
	border-radius: 2px;
	border: none;
	transition-property: color, background;
	transition-duration: .15s;
}
#content .dataTables_paginate .paginate_button:hover {
	background: #999;
}
#content .dataTables_paginate .paginate_button.previous {
	margin-right: 30px;
	padding-left: 8px;
	padding-right: 8px;
}
#content .dataTables_paginate .paginate_button.next {
	margin-left: 30px;
	padding-left: 8px;
	padding-right: 8px;
}
#content .dataTables_paginate .paginate_button.current {
	background: #ed1c24;
}
#content .dataTables_paginate .paginate_button.disabled {
	color: #666 !important;
	background: #ccc;
}
#content .dataTables_paginate .ellipsis {
	color: #666 !important;
	background: #ccc;
	cursor: default;
}

/* pagination */
.pager {
	margin-top: -50px;
	margin-bottom: 25px;
	text-align: center;
	cursor: default;
}

.pager .pages {
	padding: 5px 0 10px;
}

.pager a,
.pager span {
	display: inline-block;
	padding: 4px;
	margin: 0 0 5px 0;
	min-width: 22px;
	background-color: #666;
	color: #fff;
	text-align: center;
	text-decoration: none;
	border-radius: 2px;
	transition-property: color, background-color;
	transition-duration: .25s;
}
.pager a:hover {
	background-color: #999;
}
.pager .current,
.pager .current:hover {
	background-color: #ed1c24;
}
.pager .first {}
.pager .prev {margin-right: 34px;}
.pager .next {margin-left:  34px;}
.pager .last {}
.pager .nb {}
.pager .etc {
	color: #666;
	background-color: #ddd;
}
.pager .current {}
.pager .nb-pages {
	float: right;
	padding: 5px 0 10px;
}
.pager .nb-pages span {
	background-color: transparent;
	color: #666
}
.pager .nb-pages select {}



/* pop-up */
body#popup {
	background: #fff;
}

body#popup .product-infos {
	min-width: 280px;
	max-width: 800px;
	margin: 0 auto;
}
body#popup .product-infos::after {
	content: "";
	display: table;
	clear: both;
}

body#popup .product-infos .data {
	/*margin-right: 15px;*/
}

body#popup .data {
	padding: 5px 0;
}
body#popup .data .title {
	padding: 15px 3px 5px;
	font-weight: bold;
}
body#popup .data .desc {
	padding: 10px 3px;
}
body#popup .data .desc > * {
	font-family: sans-serif !important;
	font-size: 13px !important;
	line-height: initial !important;
}
body#popup .data .desc iframe {
	max-width: 100%;
}
body#popup .data .desc img {
	max-width: 100%;
	height: auto;
}
body#popup #content .desc h3 {
	border: none;
	padding: 5px 10px;
	background-color: #ddd;
}
body#popup #content .message {margin-right: 0;}
body#popup h1 {
	padding: 5px 3px;
	font-size: 1.2em;
	font-weight: normal;
}
body#popup h1 span {
	display: block;
	padding: 3px 0;
	font-size: .8em;
	font-style: italic;
	color: #666;
}
body#popup dl {
	overflow: hidden;
	background: #fff;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	box-sizing: border-box;
	max-width: 50%;
	max-width: calc(50% + 20px);
}
body#popup dl:nth-child(2n) {
	background: #eee;
}
body#popup dt,
body#popup dd {
	flex: 1 1 40%;
	box-sizing: border-box;
	width: 45%;
	float: left;
	padding: 5px 10px;
}
body#popup dd {flex-basis: 55%;}
body#popup dt {font-weight: bold;}
body#popup dt span {vertical-align: middle;}
body#popup dd .tooltip::after {
	display: none;
}
body#popup dd .tooltip .tip {
	display: inline;
	position: static;
	min-width: 0;
	padding: 0;
	color: #000;
	color: inherit;
	font-size: 13px;
	font-size: inherit;
	background-color: transparent;
	cursor: text;
	cursor: initial;
}
body#popup dd .tooltip .tip::before {
	content: ' - ';
	position: static;
	width: auto;
	height: auto;
	border: none;
}
body#popup dd .tooltip .tip::after {
	display: none;
}
body#popup dd .product-qt {
	width: 40px;
}
body#popup div.categorie {
	font-style: italic;
	padding: 0 3px;
	color: #666;
	font-size: 11px;
	margin-bottom: 10px;
}

body#popup div.order {
	box-sizing: border-box;
	max-width: 50%;
	max-width: calc(50% + 20px);
	padding: 2px 3px;
	text-align: center;
	background: #666;
}

/* preview et slideshow */
body#popup .preview {
	box-sizing: border-box;
	width: 100%;
	max-width: 45%;
	max-width: calc(50% - 20px);
	float: right;
	border-left: 15px solid #fff;
	margin: 0 auto;
	padding: 10px 0;
	text-align: center;
	list-style: none;
	position: relative;
}
body#popup .slideshow {
	margin: 0 auto;
	padding: 0;
	list-style: none;
}
body#popup .slideshow li {
	list-style: none;
	margin: 0;
	padding: 0;
	display: none;
}
body#popup .slideshow li.first {
	display: block;
}
body#popup .preview img {
	box-sizing: border-box;
	display: block;
	position: relative;
	max-width: 100%;
	margin: 0 auto;
	border: 1px solid #999;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
body#popup .preview .controls {
	display: none;
	position: relative;
	height: 0;
	margin: 0 auto;
	z-index: 10;
}
body#popup .preview .controls div {
	width: 32px;
	height: 32px;
	position: absolute;
	left: 0;
	right: auto;
	top: 0;
	bottom: auto;
	font-size: 32px;
	line-height: 25px;
	color: #fff;
	text-align: center;
	background-color: #ccc;
	background-color: rgba(0,0,0,.25);
	border: 1px solid #999;
	border-color: rgba(0,0,0,.2);
	border-top-color: #999;
	cursor: pointer;
	transition: all .25s ease-out;
}
body#popup .preview .controls .prev {
	border-left-color: #999;
}
body#popup .preview .controls .next {
	left: auto;
	right: 0;
	border-right-color: #999;
}
body#popup .preview .controls div:hover {
	border-color: #333;
	background-color: #777;
	border-color: rgba(0,0,0,.5);
	background-color: rgba(0,0,0,.6);
}
body#popup .preview .controls div::-moz-selection    {background: transparent; color: #fff;}
body#popup .preview .controls div::-webkit-selection {background: transparent; color: #fff;}
body#popup .preview .controls div::selection         {background: transparent; color: #fff;}
body#popup .preview .progress {
	display: none;
	position: relative;
	height: 4px;
	margin: 0 auto 4px;
	background-color: #ccc;
	background-color: rgba(0,0,0,.25);
}
body#popup .preview .progress div {
	width: 0;
	height: 4px;
	background-color: #ed1c24;
	transition: width .2s ease-out;
}
body#popup .preview .progress div.init {
	transition: none;
}

/* fenêtre d'erreur */
body#error {background: #f4f4f4;}
body#error #main {padding: 0;}
body#error #content {
	width: auto;
	margin: 15px;
	padding: 0;
}
body#error #content .message {margin-right: 0;}

/* options datatables */
/*.table-header {
	overflow: hidden;
	padding-bottom: 10px;
}
.table-header .dataTables_info {
	float: left;
	padding-top: 0;
	color: #666;
}
.table-header .dataTables_filter {
	float: right;
	color: #666;
}*/

.dataTables_wrapper .dataTables_info {
	padding: 0;
	margin-top: 1px;
	margin-bottom: 10px;
}
.dataTables_wrapper .dataTables_length {
	margin: 13px 0 0;
	padding: 0;
}

.dataTables_filter,
.dataTables_filter + .dataTables_paginate,
.dataTables_length {
	margin-top: 0;
	margin-bottom: 10px;
}

.datatables-before {
	overflow: hidden;
	padding: 5px 0;
}
.datatables-before .dataTables_info {
	float: left;
	margin-top: 3px;
	margin-right: 50px;
}
.datatables-before .dataTables_filter {
	float: left;
	margin-left: 50px;
	margin-right: 50px;
}
.datatables-before .dataTables_filter input {
	padding: 1px;
}
#content .datatables-before .dataTables_paginate {
	float: right;
	margin-left: 50px;
	margin-top: -2px;
}

.datatables-after {
	padding: 5px 0;
	margin-bottom: 50px;
}

.found .note-prix {
	text-align: center;
	font-style: italic;
	margin-bottom: 50px;
}


#content .dataTables_empty {
	padding: 20px;
	color: #666;
	font-style: italic;
	text-align: center;
}

#content .dataTables_wrapper .dataTables_processing {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
	height: auto;
	margin: 0;
	padding: 25px 0;
	font-size: 16px;
	line-height: 40px;
	font-weight: bold;
	background: #fff;
}
#content .dataTables_wrapper .dataTables_processing::before {
	content: '';
	display: inline-block;
	width: 40px;
	height: 40px;
	margin-right: 5px;
	background: transparent url('images/loading.gif') no-repeat 50% 50% scroll;
	vertical-align: middle;
}

th em.placeholder {
	display: block;
	min-width: 25px;
}

tfoot th.sort span,
th.sorting span,
th.sorting_asc span,
th.sorting_desc span {
	display: block;
	position: relative;
	padding-left: 15px;
}
th.sorting span::before,
th.sorting_asc span::before,
th.sorting_desc span::before,
th.sorting span::after,
th.sorting_asc span::after,
th.sorting_desc span::after {
	/*
		::before -> flèche en haut
		::after  -> flèche en bas
	*/
	content: '';
	position: absolute;
	left: 0;
	right: auto;
	top: 2px;
	width: 0;
	height: 0;
	border-top: none;
	border-bottom: 5px solid rgba(0,0,0,.25);
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
}
th.sorting span::after,
th.sorting_asc span::after,
th.sorting_desc span::after {
	top: 8px;
	border-top: 5px solid rgba(0,0,0,.25);
	border-bottom: none;
}

th.sorting_asc span::before {
	border-bottom-color: #b30;
}
th.sorting_desc span::after {
	border-top-color: #b30;
}

#results thead,
#results-simple thead,
#results tfoot,
#results-simple tfoot {
	border-left: 1px solid #e9e9e9;
}
#results thead tr th,
#results-simple thead tr th {
	border-bottom: none;
}
#results tfoot tr th,
#results-simple tfoot tr th {
	border-top: none;
}
#results tfoot tr th.search-sort,
#results-simple tfoot tr th.search-sort {
	padding: 2px 1px;
}
#results tfoot tr th input,
#results-simple tfoot tr th input {
	padding: 2px 3px;
	/*max-width: 70px;*/
	display: block;
	width: auto;
}
#results tfoot tr th input::placeholder,
#results-simple tfoot tr th input::placeholder {
	color: #aaa;
	opacity: 1;
}
#results tfoot tr th.ref input,
#results-simple tfoot tr th.ref  input {width: 100px;}
#results tfoot tr th.desc input,
#results-simple tfoot tr th.desc input {width: 250px;}
#results tfoot tr th.var input,
#results-simple tfoot tr th.var  input {width: 100px;}

#content table tbody tr.hover td,
#content table tbody tr:hover td {
	background-color: rgba(0,0,0,.05);
}
#content table tbody td.img {
	background-color: #fff;
}
#content table th.sorting_asc,
#content table th.sorting_desc {
	background-color: #f0d6a3;
}
#content table td.sorting_1 {
	background-color: #fff5cf;
}
#content table tr:hover td.sorting_1 {
	background-color: #f2e9c4;
}

#content table td.stock {
	/*border-left-width: 6px;*/
	/*padding-left: 4px;*/
}

#content table td.stocktxt {
	border-left-width: 6px;
	padding-left: 4px;
}

.multi-row tbody .multi-row-1 {
	border-top: 2px solid #999;
}
#content table.multi-row tbody tr:nth-child(2n+1) {
	background-color: transparent;
}
table#caddie.multi-row tbody .row-empty td,
.multi-row tbody .row-empty td {
	display: none;
}
.multi-row tbody tr:last-child {
	border-bottom: 2px solid #999;
}

/* codes couleurs pour stocks */

/* vert */
#content table tr.stock-oui .stocktxt {
	border-left-color: #9c0;
}
/* vert sombre */
#content table tr.stock-lim .stocktxt,
#content table tr.stock-plusfabr .stocktxt {
	border-left-color: #690;
}
/* orange */
#content table tr.stock-non .stocktxt,
#content table tr.stock-surcomm .stocktxt {
	border-left-color: #fb3;
}
/* rouge */
#content table tr.stock-pluslivr .stocktxt,
#content table tr.stock-epuise .stocktxt {
	border-left-color: #f44;
}
/* bleu */
#content table tr.stock-plussais .stocktxt {
	border-left-color: #33b5e5;
}

div.no-results .datatables-before {
	padding-right: 0;
}
.no-results #results.dataTable,
.no-results .dataTables_length {
	display: none;
}
.no-results .dataTables_info {
	float: none;
	margin-right: 0;
	padding: 25px 0;
	text-align: center;
	font-style: italic;
}
.no-results .note-prix {
	display: none;
}


/* page de recherche client */
#content .searchcustomer ul {
	margin: 15px 0;
}
#content .searchcustomer li {
	margin: 0;
	padding: 2px 0;
	list-style: none;
}
#content .searchcustomer li label {
	display: inline-block;
	min-width: 125px;
}
#content .searchcustomer li input {
	width: 200px;
}
#content .searchcustomer li.btn {
	padding-top: 10px;
	padding-left: 128px;
}

.foundcustomer table thead th {
	white-space: nowrap;
}


/* sélection de catégories et overlay */

ul.select_elms li {
	background-color: transparent;
	background-image: url(images/tree_arrows.png);
	background-position: left top;
	background-repeat: no-repeat;
	background-attachment: scroll;
}
ul.select_elms li.level0,
ul.select_elms li.leaf
	{background-image: none;}
ul.select_elms li.level1                {background-position:  0      5px;}
ul.select_elms li.level1:hover          {background-position:  0    -45px;}
ul.select_elms li.level1.expanded       {background-position:  0    -95px;}
ul.select_elms li.level1.expanded:hover {background-position:  0   -145px;}
ul.select_elms li.level2                {background-position: 15px -195px;}
ul.select_elms li.level2:hover          {background-position: 15px -245px;}
ul.select_elms li.level2.expanded       {background-position: 15px -295px;}
ul.select_elms li.level2.expanded:hover {background-position: 15px -345px;}
ul.select_elms li.level3                {background-position: 30px -195px;}
ul.select_elms li.level3:hover          {background-position: 30px -245px;}
ul.select_elms li.level3.expanded       {background-position: 30px -295px;}
ul.select_elms li.level3.expanded:hover {background-position: 30px -345px;}
ul.select_elms li.level4                {background-position: 45px -195px;}
ul.select_elms li.level4:hover          {background-position: 45px -245px;}
ul.select_elms li.level4.expanded       {background-position: 45px -295px;}
ul.select_elms li.level4.expanded:hover {background-position: 45px -345px;}

ul.select_elms li label {display: block; padding-right: 10px;}
ul.select_elms li.level0 label {padding-left:  0px; width: 295px; color: #000; font-weight: bold;}
ul.select_elms li.level1 label {padding-left: 15px; width: 280px; color: #000;}
ul.select_elms li.level2 label {padding-left: 30px; width: 265px; color: #666;}
ul.select_elms li.level3 label {padding-left: 45px; width: 250px; color: #666;}
ul.select_elms li.level4 label {padding-left: 60px; width: 235px; color: #999;}
ul.select_elms li.level5 label {padding-left: 75px; width: 220px; color: #999;}

.change_selected_elm {display: none;}
li#choose_cat .change_selected_elm {white-space: nowrap;}
#filter_cat form .change_selected_elm,
#add_cat    form .change_selected_elm
	{float: left; max-width: 200px;}
#filter_cat form li.buttons
	{clear: both; text-align: right;}
.change_selected_elm.multi {display: inline-block !important; color: #000;}
.change_selected_elm.multi:hover {text-decoration: none;}
.change_selected_elm.multi span {color: #ec131c;}
.change_selected_elm.multi span:hover {text-decoration: underline;}

div.overlay {
	display: block;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	width: 100vw;
	height: 100%;
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	background: url(img/bg_black_75_trans.png) repeat scroll left top transparent;
	background: rgba(0, 0, 0, .5);
	z-index: 1000;
}
div.overlay .wrapper {
	position: relative;
	min-width: 350px;
	max-width: 80vw;
	max-height: 557px;
	padding: 0;
	background-color: #fff;
	border: 1px solid #666;
	box-shadow: 0 15px 40px #666;
}
div.overlay .wrapper .actions {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	display: block;
	/*width: 330px;*/
	height: 16px;
	padding: 5px 10px;
	text-align: right;
	line-height: 16px;
	background-color: #fff;
	border-bottom: 1px solid #999;
}
div.overlay .wrapper .actions a {
	background-color: #fff !important;
	outline: none;
}
div.overlay .wrapper .actions a.close  {font-weight: bold; float: right;}
div.overlay .wrapper .actions a.cancel {float: left;}
div.overlay .wrapper .actions button.move_to_cat {
	float: right;
	margin-top: -4px;
}
div.overlay .wrapper .actions #buffer {display: none;}
div.overlay ul.select_elms {
	margin-top: 27px;
	padding: 5px 10px;
	max-height: 493px;
	overflow: auto;
	overflow-y: scroll;
}
div.overlay ul.select_elms li {
	margin: 0;
	border-top: 1px solid #eee;
	border-color: rgba(0, 0, 0, .1);
	overflow: hidden;
}
div.overlay ul.select_elms li:hover {background-color: #eee;}
div.overlay ul.select_elms li:first-child {border-top: none;}
div.overlay ul.select_elms li.yes {background-color: #dfd;}
div.overlay ul.select_elms li.yes label {color: #060 !important;}
div.overlay ul.select_elms li.yes:hover {background-color: #cec;}
div.overlay ul.select_elms li.yes:hover label {color: #050 !important;}
div.overlay ul.select_elms li label {float: left; padding-top: 2px; padding-bottom: 2px; padding-right: 0;}
div.overlay ul.select_elms li input {float: right; margin-top: 4px; max-width: 15px;}

div.overlay ul.select_elms li.yes.remove {background-color: #fdd;}
div.overlay ul.select_elms li.yes.remove label {color: #600 !important;}
div.overlay ul.select_elms li.yes.remove:hover {background-color: #ecc;}
div.overlay ul.select_elms li.yes.remove:hover label {color: #500 !important;}

/* système d'onglet */

.tabs {
	margin: 0 0 25px;
	padding: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #000;
	background-color: #fff;
}
#content ul.tabs {
	margin: 0 0 25px;
}
.tabs li {
	position: relative;
	bottom: -2px;
	margin-right: 10px;
	padding: 5px 12px;
	font-size: 14px;
	list-style: none;
	cursor: pointer;
	border-bottom: 3px solid transparent;
}
.tabs li a {
	display: block;
	margin: -5px -12px;
	padding: 5px 12px;
	color: #444;
	text-decoration: none;
}
.tabs li.active {
	background-color: #eee;
	border-bottom-color: #000;
}
.tabs li.active a {
	color: #000;
}
.tabs li:hover {
	border-bottom-color: #000;
}

.tabs-content .tab::after {
	content: "";
	display: table;
	clear: both;
}


/* menu escamotable */
	.page #main {
		display: block;
		padding-left: 250px;
		transition: padding-left .35s ease-out;
	}
	.sidebar-closed .page #main {
		padding-left: 0;
		transition-duration: .2s;
	}
	.page .sidebar-toggle {
		position: absolute;
		top: 15px;
		left: 170px;
		z-index: 6;
		display: block;
		box-sizing: content-box;
		width: 40px;
		height: 36px;
		padding-left: 36px;
		padding-right: 5px;
		text-align: right;
		cursor: pointer;
		background: #fff url('images/menu-toggle.svg') no-repeat 11px 50% scroll;
		-webkit-background-size: 15px 15px;
		background-size: 15px 15px;
		box-shadow: 0 1px 5px 0 rgba(0,0,0,.3);
		transition: all .35s ease-out;
		transition-property: left, background-color, box-shadow, padding-right;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}
	.page .sidebar-toggle span {
		z-index: 1;
		max-width: 50px;
		box-sizing: border-box;
		line-height: 36px;
		background-color: #fff;
		text-align: center;
		text-transform: uppercase;
		transition: background-color .35s ease-out;
	}
	.sidebar-closed .page .sidebar-toggle {
		left: 5px;
		padding-right: 10px;
		background-color: #e0e0e0;
		box-shadow: 0 0 0 0 rgba(0,0,0,0);
		transition-duration: .2s;
	}
	.sidebar-closed .page .sidebar-toggle span {
		background-color: #e0e0e0;
		transition-duration: .2s;
	}
	.page .sidebar-toggle::after {
		content: '';
		position: absolute;
		left: 100%;
		width: 10px;
		top: -5px;
		bottom: -5px;
		background-color: #fff;
		opacity: 1;
		transition: opacity .35s ease-out;
	}
	.sidebar-closed .page .sidebar-toggle::after {
		/*left: auto;*/
		/*right: 100%;*/
		opacity: 0;
		transition-duration: .2s;
	}
	.page #main #sidebar {
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		z-index: 5;
		display: block;
		transition: all .35s ease-out;
		transition-property: left, box-shadow;
	}
	.sidebar-closed .page #main #sidebar {
		left: -245px;
		box-shadow: 0 0 0 0 rgba(0,0,0,0);
		transition-duration: .2s;
	}
	.page #home > h2,
	.page #help > h2,
	.page #order > h2,
	.page #include > h2 {
		margin-top: 5px;
	}
	.page .tabs,
	.page .order-steps,
	.page #main .home-banner,
	.page #home > h2,
	.page #home > *:first-child,
	.page #help > h2,
	.page #order > h2,
	.page #include > h2,
	.page #include > .message {
		transition: margin-left .35s ease-out;
	}
	.sidebar-closed .tabs,
	.sidebar-closed #content ul.tabs,
	.sidebar-closed .order-steps,
	.sidebar-closed .page #main .home-banner,
	.sidebar-closed .page #home > h2,
	.sidebar-closed .page #home > *:first-child,
	.sidebar-closed .page #help > h2,
	.sidebar-closed .page #order > h2,
	.sidebar-closed .page #include > h2,
	.sidebar-closed .page #include > .message {
		margin-left: 90px;
		transition-duration: .2s;
	}

/* responsive */

@media (min-width: 1401px) {
	.orders-bar .current-order {
		/* bouton "commandes en cours" calé directement à la suite de "commande active" */
		flex: 0 0 auto;
	}
}

@media (max-width: 1155px) {
	.products-box ul.products li:nth-child(8),
	.products-box ul.products li:nth-child(7),
	.products-box ul.products li:nth-child(6) {
		display: none;
	}
}
@media (max-width: 1005px) {
	.products-box ul.products li:nth-child(5) {
		display: none;
	}
}
@media (max-width: 855px) {
	.products-box ul.products li:nth-child(4) {
		display: none;
	}
	#popup .products-box ul.products li {
		flex-basis: 33.33%;
		width: 33.33%;
	}
}
@media (max-width: 705px) {
	.products-box ul.products li:nth-child(3) {
		display: none;
	}
}
@media (max-width: 600px) {
	#popup .products-box ul.products li {
		flex-basis: 50%;
		width: 50%;
	}
}
@media (max-width: 555px) {
	#content .products-box ul.products {
		flex-wrap: wrap;
	}
}
@media (max-width: 400px) {
	#popup .products-box ul.products li {
		flex-basis: 100%;
		width: 100%;
	}
}

@media (max-width: 740px) {
	#content .dataTables_paginate .ellipsis,
	#content .dataTables_paginate .paginate_button {
		margin-bottom: 5px;
		margin-left: 0;
		margin-right: 5px;
	}
}


@media (max-width: 679px) {
	#header .prix-clients {
		position: relative;
		right: auto;
		top: auto;
		text-align: right;
	}
}

/* la sidebar devient un menu latéral */
/*@media (max-width: 600px) {
	.page #main {
		padding-left: 0;
	}
	.page #main #sidebar {
		box-shadow: -5px 0 4px 5px rgba(0,0,0,.5);
		position: fixed;
		z-index: 100;
		max-height: 100vh;
		overflow: auto;
	}
	.page .sidebar-toggle {
		box-shadow: none;
		position: fixed;
		z-index: 101;
	}
	.page .sidebar-toggle::after {
		display: none;
	}

	.sidebar-closed .page #main .home-banner,
	.sidebar-closed .page #home > h2,
	.sidebar-closed .page #help > h2,
	.sidebar-closed .page #order > h2,
	.sidebar-closed .page #include > h2 {
		margin-left: 0;
	}
}*/

@media (max-width: 600px) {
	.home-banner {
		margin-left: 0;
		margin-top: 50px;
	}
	.sidebar-closed .page #main .home-banner {
		margin-left: 0;
	}
}

@media (max-width: 549px) {
	#header {
		display: block;
	}
	#header #user {
		position: static;
		padding-top: 0;
		text-align: right;
	}
	#header .prix-clients {
		position: absolute;
		right: 15px;
		top: 38px;
		margin: 0;
	}
	#header .options #lang {
		position: absolute;
		top: 0;
		right: 0;
	}
}

@media (max-width: 500px) {
	table .article-qt span {
		display: none;
	}
	.datatables-before .dataTables_info {
		float: none;
		margin-right: 0;
		text-align: left;
	}
	#content .datatables-before .dataTables_paginate {
		margin-left: 0;
		float: none;
	}
	#content .dataTables_paginate {
		text-align: left;
	}
	.dataTables_wrapper .dataTables_length {
		text-align: left;
	}
	#content .dataTables_paginate .paginate_button.previous {
		margin-left: 0;
		margin-right: 10px;
	}
	#content .dataTables_paginate .paginate_button.next {
		margin-left: 10px;
	}
/*	#content .dataTables_paginate .ellipsis,
	#content .dataTables_paginate .paginate_button {
		margin-bottom: 5px;
		margin-left: 0;
		margin-right: 5px;
	}*/

	body#popup .preview {
		max-width: 100%;
		float: none;
		width: auto;
		border-left: none;
	}
	body#popup dl,
	body#popup div.order {
		max-width: 100%;
	}
}

@media (max-width: 400px) {
	#home .more-info:first-child {
		margin-top: 50px;
		margin-left: 0 !important;
	}
}


/* données DKEU masquées ici */
.col-prixrevendeur {
	display: none !important;
}

