.menuAnim a::before{
	display: block;
	content: ' ';
	width: 100%;
	height: 100%;
	border-radius: 3px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	-webkit-animation: 3s ease-in-out 0s infinite menuAnim;
	animation: 3s ease-in-out 0s infinite menuAnim;
}
@-webkit-keyframes menuAnim{
	0{
		background-color: #000;
	}
	20%{
		background-color: rgb(var(--color-contraste));
	}
	40%{
		background-color: #000;
	}
}
@keyframes menuAnim{
	0{
		background-color: #000;
	}
	20%{
		background-color: rgb(var(--color-contraste));
	}
	40%{
		background-color: #000;
	}
}

/* roboto-100 - latin */
@font-face{
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 100;
	src: local(''),
		url('../roboto-v20/100.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
		url('../roboto-v20/100.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	font-display: swap;
}

/* roboto-regular - latin */
@font-face{
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: local(''),
		url('../roboto-v20/regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
		url('../roboto-v20/regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	font-display: swap;
}

/* roboto-700 - latin */
@font-face{
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 700;
	src: local(''),
		url('../roboto-v20/700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
		url('../roboto-v20/700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
	font-display: swap;
}

/* formulaire */
select, input[type=text], input[type=password], input[type=email], input[type=phone], input[type=website], input[type=number], input[type=file], input[type=button], textarea{
	width: 98%;
	padding: 5px 1%;;
	border: 1px solid #aaa;
	font-family: inherit;
	font-size: inherit;
	border-radius: 0;
	background-color: transparent;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	outline: none;
	-moz-outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	transition: border-color 0.2s ease-in, color 0.2s ease-in;
	-webkit-transition: border-color 0.2s ease-in, color 0.2s ease-in;
}
select{
	background-image: url(../img/picto-arrow-b-on@30.png);
	background-repeat: no-repeat;
	background-size: 10px 10px;
	background-position: right 10px center;
}
select:hover, input[type=text]:hover, input[type=password]:hover, input[type=email]:hover, input[type=website]:hover, input[type=number]:hover, input[type=phone]:hover, input[type=file]:hover, input[type=button]:hover, textarea:hover{
	border-color: rgb(var(--color-contraste));
}
input[type=range]{
	width: 98%;
	height: 40px;
	margin-top: -8px;
	-moz-appearance: range;
	-moz-binding: none;
	-moz-user-select: none;
	-webkit-appearance: none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	cursor: default;
	display: inline-block;
}
input[type=range]:focus, input[type=range]::-moz-focus-outer{
	outline: none;
	border: none;
}
input[type=range]::-webkit-slider-thumb{
	box-shadow: none;
	border: 4px solid #dcdcdc;
	height: 24px;
	width: 24px;
	border-radius: 16px;
	background: #fff;
	cursor: pointer;
	-webkit-appearance: none;
	margin-top: -7px;
}
input[type=range]:hover::-webkit-slider-thumb{
	border-color: rgb(var(--color-contraste));
}
input[type=range]::-moz-range-thumb{
	box-shadow: none;
	border: 4px solid #dcdcdc;
	height: 20px;
	width: 20px;
	border-radius: 16px;
	background: #fff;
	cursor: pointer;
}
input[type=range]:hover{
	border-color: rgb(var(--color-contraste));
}
input[type=range]::-webkit-slider-runnable-track{
	width: 100%;
	height: 10px;
	cursor: pointer;
	background: #dcdcdc;
	border-radius: 5px;
	border: none;
}
input[type=range]:focus::-webkit-slider-runnable-track{
	background: #e9e9e9;
}
input[type=range]::-moz-range-track{
	width: 100%;
	height: 10px;
	cursor: pointer;
	box-shadow: none;
	background: #dcdcdc;
	border-radius: 5px;
	border: 0px solid rgba(0, 0, 0, 0);
}
input::-moz-focus-inner, input::-moz-focus-inner, select::-moz-focus-inner{
	outline: none;
}
input[type=submit], input[type=button], .formSubmitCancel input.cancel{
	width: 98%;
	margin-top: 10px;
	padding: 12px 1%;
	background-color: #fff;
	border: 1px solid #aaa;
	color: #444;
	font-size: 1.1em;
	font-weight: 400;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.2s ease-in, color 0.2s ease-in;
	-webkit-transition: background-color 0.2s ease-in, color 0.2s ease-in;
}
input[type=submit]:hover, input[type=button]:hover, .formSubmitCancel input.cancel:hover{
	color: #fff;
	background-color: rgb(var(--color-contraste));
}
input[type=submit]:disabled{
	opacity: 0.5;
	background: none;
	cursor: default;
}
label{
	display: block;
}
label:empty{
	display: none;
}
p.formInfo{
	font-size: 0.95em;
	color: #999;
}

/* calendrier */
.calendarMain{
	position: relative;
	width: 98%;
}
.calendarMain > div{
	position: absolute;
	background-color: rgba(0, 0, 0, 0.85);
	color: #fff;
}
.calendarMain .calendarTitle{
	text-align: center;
}
.calendarMain .calendarNav input{
	position: absolute;
	top: 0;
	width: auto;
	padding: 10px 20px;
	cursor: pointer;
	background: none;
	border: none;
	color: #fff;
	transition: background-color 0.2s ease-in;
	-webkit-transition: background-color 0.2s ease-in;
}
.calendarMain .calendarNav input:hover{
	background-color: rgb(var(--color-contraste));
}
.calendarMain .calendarNavML{
	left: 0;
}
.calendarMain .calendarNavMR{
	right: 0;
}
.calendarMain .jsCalendar{
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}
.calendarMain .jsCalendar th, .calendarMain .jsCalendar td{
	text-align: center;
}
.calendarMain .jsCalendar td{
	padding: 10px 5px;
}
.calendarMain .jsCalendar .day:hover{
	background-color: rgb(var(--color-contraste));
	cursor: pointer;
}
.calendarMain .jsCalendar .selectedDay{
	color: rgb(var(--color-contraste));
}
/* diaporama : visualiseur : DEBUT */
#jsPhotoViewer{
	position: fixed;
	z-index: 30000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	text-align: center;
	opacity: 0;
	visibility: hidden;
}
/* arrière plan */
#jsPhotoViewer.close{
	transition: opacity .3s ease-in, visibility 0s linear .3s;
}
#jsPhotoViewer.open{
	opacity: 1;
	visibility: visible;
	transition: opacity .3s ease-in, visibility 0s;
}
/* la photo */
#jsPhotoViewer_img{
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	border: 3px solid #555;
	box-shadow: 0 0 10px 0 #000;
	cursor: pointer;
	transform: translate(-50%, -50%);
}
/* titre */
#jsPhotoViewer_title, #jsPhotoViewer_subtitle, #jsPhotoViewer_nav li{
	position: absolute;
	padding: 10px;
	background-color: rgba(0, 0, 0, 0.5);
}
#jsPhotoViewer_title{
	top: 2%;
	left: 2%;
	color: #fff;
	font-size: 0.9em;
}
#jsPhotoViewer_subtitle{
	bottom: 2%;
	right: 2%;
	color: #fff;
}
/* navigation */
#jsPhotoViewer_nav li{
	z-index: 2002;
	top: 50%;
	display: inline;
	width: 40px;
	height: 40px;
	color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 25px 25px;
	font-size: 60px;
	text-decoration: none;
	transition: all 0.3s ease 0s;
	transform: translateY(-50%);
	cursor: pointer;
}
#jsPhotoViewer_nav li:hover{
	background-color: rgba(0, 0, 0, 1);
}
#jsPhotoViewer_nav li span{
	display: none;
}
#jsPhotoViewerBtPrev{
	left: 0;
	background-image: url(../img/picto-arrow-w-l-off.png);
}
#jsPhotoViewerBtNext{
	right: 0;
	background-image: url(../img/picto-arrow-w-r-off.png);
}
#jsPhotoViewer_nav li#jsPhotoViewerBtClose{
	top: 0;
	right: 0;
	background-image: url(../img/picto-close-w@60.png);
	transform: none;
}
/* diaporama : visualiseur : FIN */

/* footer */
#footerImg{
	display: block;
	width: 100%;
	height: auto;
}
#footer{
	padding: 50px 5% 40px;
	background-color: #000;
	color: #fff;
}
#footer hr{
	margin: 50px 0;
	height: 1px;
	border: none;
	border-bottom: 1px solid #555;
}
#footer .logo{
	display: block;
	width: 50%;
	max-width: 450px;
	height: auto;
	margin: auto;
}

/* footer réseaux sociaux */
#footerSoc{
	margin-top: 25px;
}
#footerSoc p{
	font-size: 1.5em;
}
#footerSoc ul{
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}
#footerSoc li{
	flex: 1;
	list-style: none;
}
#footerSoc li a{
	display: block;
	width: 75px;
	height: 75px;
	margin: auto;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 25px;
	border-radius: 2px;
	font-size: 0;
	transition: background-color ease-in 0.25s;
	-webkit-transition: background-color ease-in 0.25s;
}
#footerSoc #footerSoc1 a{
	background-image: url(../img/logo-fb-W@100.png);
}
#footerSoc #footerSoc1 a:hover{
	background-color: #0000FF;
}
#footerSoc #footerSoc2 a{
	background-image: url(../img/logo-inst-W@100.png);
}
#footerSoc #footerSoc2 a:hover{
	background-color: #FFB300;
}
#footerSoc #footerSoc3 a{
	background-size: 50px;
	background-image: url(../img/logo-yt-W@100.png);
}
#footerSoc #footerSoc3 a:hover{
	background-color: #FF0000;
}

/* footer : texte et menu */
#infoSite, #infoSite div.twoColumn{
	display: flex;
	flex-direction: column;
}
#infoSite .twoColumn > div, #infoSite .twoColumn > nav{
	flex: 0 0 42%;
	margin: 0 4%;
}
#infoSite #textPresentation p{
	margin: 0.5em 0;
	text-align: justify;
}
#infoSite .twoColumn nav{
	order: 2;
	margin-top: 0;
}
#infoSite nav li{
	list-style: none;
}
#infoSite nav a{
	display: block;
	padding: 10px 16px;
	color: #fff;
	text-decoration: none;
	font-size: 1.1em;
	transition: background-color 0.2s ease-in, color 0.2s ease-in;
}
#infoSite nav a:hover{
	background-color: #fff;
	color: #000;
}

/* footer : coordonnées */
#coordinate h2, #coordinate p{
	display: flex;
	margin: 0.7em 0;
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 20px;
	font-size: 1em;
	text-align: left;
}
#coordinate{
	order: 1;
	font-size: 1.1em;
}
#coordinate label{
	flex: 0 0 40px;
	float: none;
	width: auto;
	margin: 0;
	font-size: 0;
}
#coordinate .adress{
	background-image: url(../img/coord-position-W@50.png);
}
#coordinate .hours{
	background-image: url(../img/coord-hours-W@50.png);
}
#coordinate .phone{
	background-image: url(../img/coord-mobile-W@50.png);
}
#coordinate .email{
	background-image: url(../img/coord-chat-W@50.png);
}
#coordinate a{
	color: rgb(var(--color-contraste));
}


/*produit catégorie*/
#productLst, #productCatLst{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: flex-start;
}
#productLst li, #productCatLst li{
	width: 46%;
	margin: 2%;
	background-color: #fff;
	list-style: none;
	box-shadow: var(--shadowColor);
}
#productLst li a, #productCatLst li a{
	display: block;
	border-bottom: none;
	color: #000;
	font-size: 1em;
	text-align: center;
}
#productCatLst li a{
	padding: 15px 5px 10px;
}
#productCatLst li a p{
	margin-bottom: 0;
}
#productLst li a img, #productCatLst li a img{
	display: block;
	width: 150px;
	height: 150px;
	object-fit: contain;
	margin: auto;
}
#productLst li a .productImg{
	margin: 0;
	padding: 20px 10px 10px;
}
#productLst li a .productName{
	margin: 0;
	padding: 0 10px;
}
#productLst .promo .productImg, #productLst .destockage .productImg, #productLst .nouveaute .productImg{
	position: relative;
}
#productLst .promo .productImg::after, #productLst .destockage .productImg::after, #productLst .nouveaute .productImg::after{
	display: block;
	content: ' ';
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	background-repeat: no-repeat;
	background-position: top right;
	background-size: contain;
}
#productLst .promo .productImg::after{
	background-image: url(../img/shop/promo.png);
}
#productLst .destockage .productImg::after{
	background-image: url(../img/shop/destockage.png);
}
#productLst .nouveaute .productImg::after{
	background-image: url(../img/shop/nouveaute.png);
}
.priceStroke{
	position: relative;
	margin-right: 10px;
}
.priceStroke::after{
	display: block;
	content: ' ';
	position: absolute;
	background: rgb(var(--color-contraste));
	width: 100%;
	height: 2px;
	top: 50%;
	left: 0;
}
/* catégorie sans fond blanc */
#cat23  #productCatLst li{
	background: transparent;
	box-shadow: none;
}

/*produit liste*/
.productPrice{
	text-align: center;
	color: rgb(var(--color-contraste));
}
.productAdd{
	margin: 10px;
	text-align: center;
}
.productAdd select{
	display: none;
}
.productAdd input[type=submit]{
	width: 60px;
	height: 60px;
	margin: auto;
	font-size: 0;
	border-radius: 50%;
	border: 2px solid #000;
	background-image: url(../img/nav1ShopB@160.png);
	background-size: 50px 90px;
	background-position: 5px 10px;
	background-repeat: no-repeat;
}
.productAdd input[type=submit]:hover{
	background-color: rgb(var(--color-contraste));
	border-color: rgb(var(--color-contraste));
	background-position: 5px -40px;
}
.productAdd input[type=submit]:disabled:hover{
	background-color: transparent;
	border-color: #000;
	background-position: 5px 10px;
}

/*produit content*/
#product{
	position: relative;
}
#product .productGoBack{
	padding-left: 20px;
	font-size: 0.9em;
	font-weight: bold;
	background-image: url(../img/picto-arrow-b-l-off.png);
	background-size: 15px;
	background-position: left center;
	background-repeat: no-repeat;
	cursor: pointer;
}
#product .productGoBack:hover{
	background-position: 3px center;
}
#product h1, #product h2{
	margin-bottom: 30px;
}
#product h3{
	margin: 0.6em 0;
	font-size: 1em;
}
#productImg figure{
	margin: 0;
	text-align: center;
}
#productImg figure img{
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 500px;
	margin: auto;
}
#productImgLst{
	margin-top: 40px;
}
#productImgLst li:before{
	display: none;
}
#productImgLst li{
	display: inline-block;
	list-style: none;
	cursor: pointer;
	vertical-align: middle;
}
#productImgLst li img{
	width: auto;
	max-width: 85px;
	height: auto;
	max-height: 85px;
	margin-right: 10px;
}
#productTech label{
	margin: 0 20px 0 0;
	color: #999;
}
#productDescr img{
	max-width: 100%;
	height: auto;
}
#productDescr iframe{
	max-width: 100%;
}
#productPriceOptionWrap{
	position: -webkit-sticky;
	position: sticky;
	bottom: 0;
	text-align: center;
}
#productPriceOption{
	display: flex;
	flex-direction: column;
}
#produitOption, #productPrice{
	flex: 1;
	flex-wrap: wrap;
	background-color: #f4f4f4;
	padding: 5px;
}
#produitOption{
	text-align: left;
}
#produitOption p{
	margin-bottom: 0;
}
#produitOption select{
	width: auto;
	font-size: 0.9em;
	padding-right: 30px;
}
#productPrice{
	display: flex;
	align-items: center;
	justify-content: space-around;
	color: rgb(var(--color-contraste));
	font-weight: bold;
	font-size:  1.5em;
	text-align: center;
}
.productAddInfo{
	display: none;
}
p.productInfoShipping{
	flex: 1 0 auto;
	margin: 0.2em 0;
	font-size: 0.75em;
	font-weight: normal;
}
#productPrice .price{
	font-size: 1.25em;
}
#productPrice .price .priceStroke{
	font-size: 0.85em;
}
#productPrice h2{
	display: none;
}
.productPriceCurrency{
	bottom: 0.3em;
	font-size: 0.7em;
	position: relative;
}
#producPrice strong{
	font-size: 1.2em;
}
#producAdd2CartBt{
	opacity: 0;
	visibility: hidden;
	border-radius: 50%;
	border: 2px solid rgb(var(--color-contraste));
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	animation-name: producAdd2CartBtAnim;
	animation-duration: 2s;
	animation-fill-mode: both;
	animation-timing-function: ease-in-out;
	-webkit-animation-name: producAdd2CartBtAnim;
	-webkit-animation-fill-mode: both;
	-webkit-animation-duration: 2s;
	-webkit-animation-timing-function: ease-in-out;
}
@keyframes producAdd2CartBtAnim{
	0%{
		visibility: visible;
	}
	10%{
		opacity: 1;
	}
	75%{
		opacity: 1;
		transform: translate(0px, 0px);
	}
	100%{
		opacity: 0;
		visibility: hidden;
		transform: translate(0px, 0px);
	}
}
@-webkit-keyframes producAdd2CartBtAnim{
	0%{
		visibility: visible;
	}
	10%{
		opacity: 1;
	}
	75%{
		opacity: 1;
		-webkit-transform: translate(0px, 0px);
	}
	100%{
		opacity: 0;
		visibility: hidden;
		-webkit-transform: translate(0px, 0px);
	}
}

/* shopping bag preview */
.productLstSide{
	opacity: 0;
	visibility: hidden;
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
/*	transition: opacity 0.2s ease-in, visibility 0s linear 0.2s;
	-webkit-transition: opacity 0.2s ease-in, visibility 0s linear 0.2s;*/
}
.productLstSide.open{
	opacity: 1;
	visibility: visible;
	transition: opacity 0.2s ease-in, visibility 0s;
	-webkit-transition: opacity 0.2s ease-in, visibility 0s;
}
.productLstSide > div{
	position: absolute;
	top: 0;
	right: 0;
	min-width: 300px;
	height: 100%;
	max-height: 100%;
	background-color: #fff;
	text-align: left;
	transform: translateX(100%);
	-webkit-transform: translateX(100%);
	transition: transform 0.2s ease-in;
	-webkit-transition: transform 0.2s ease-in;
}
.productLstSide.open > div{
	transform: translateX(0);
	-webkit-transform: translateX(0);
	transition: transform 0.2s ease-in 0.2s;
	-webkit-transition: transform 0.2s ease-in 0.2s;
}
.productLstSideContent{
	max-height: 80vh;
	overflow-y: auto;
}
.productLstSide input[type=button].productLstSideClose, .productLstSide input[type=submit], #shoppingBagView{
	margin: 0;
	padding-top: 5px;
	padding-bottom: 5px;
	background-image: url(../img/picto-arrow-w-l-off.png);
	background-repeat: no-repeat;
	background-position: 10px center;
	background-size: 15px 15px;
	cursor: pointer;
}
.productLstSide input[type=button].productLstSideClose{
	width: 100%;
	padding-left: 30px;
	background-color: #000;
	border: none;
	color: #ccc;
	text-align: left;
	transition: background-color 0.2s ease-in;
	-webkit-transition: background-color 0.2s ease-in;
}
.productLstSide input[type=button].productLstSideClose:hover{
	background-color: rgb(var(--color-contraste));
	color: #fff;
}
.productLstSideContent form{
	margin: 0;
}
.productLstSideContent p.emptyCart{
	margin: 10px;
}
.productLstSideContent li{
	display: flex;
	margin: 0 10px;
	padding: 5px 0;
	list-style: none;
	border-bottom: 1px solid #ddd;
	font-size: 0.9em;
}
.productLstSideContent li img{
	max-width: 60px;
	height: auto;
	max-height: 50px;
	margin: 0 10px;
}
.productLstSideContent li span{
	flex: 1;
}
.productLstSideContent li span.remove{
	display: block;
	flex: 0 0 40px;
	height: 30px;
	background-image: url(../img/picto-close-b@60.png);
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: center;
	font-size: 0;
}
.productLstSideContent li span.remove:hover{
	background-image: url(../img/picto-close-on@60.png);
}
#shoppingBagTotal{
	font-weight: bold;
	text-align: right;
	font-size: 0.9em;
	margin: 10px;
}
.productLstSideContent input[type=submit], #shoppingBagView{
	width: calc(100% - 20px);
	margin: 10px 10px 0;
	background-position: right 10px center;
}
.productLstSideContent input[type=submit]{
	background-color: rgb(var(--color-contraste));
	color: #fff;
	border: none;
	background-image: url(../img/picto-arrow-w-r-off.png);
}
.productLstSideContent input[type=submit]:hover{
	background-color: #000;
}
#shoppingBagView{
	background-image: url(../img/picto-arrow-b-r-off.png);
}
#shoppingBagView:hover{
	background-image: url(../img/picto-arrow-w-r-off.png);
}

/* shoppingBag */
#shoppingBagChange{
	margin: 0 10% 30px 10%;
	padding: 10px;
	border: 1px solid #bf961c;
	background-color: #f7e7b9;
	color: #000;
}
#shoppingBagChange p{
	margin: 10px;
	padding: 0;
}
#shoppingBagChange ul{
	margin: 0;
	padding: 0;
}
#shoppingBagChange li{
	margin: 0;
	padding: 10px 0 4px 10px;
	list-style: none;
	border-top: 1px dotted #555;
}
.panier{
	margin: 30px 0 0 0;
	border-spacing: 0px;
	border-collapse: collapse;
}
.panier tr:first-child{
	border-bottom: 1px solid #999;
}
.panier tr{
	border: none;
	border-bottom: 1px solid #999;
}
.panier th{
	margin: 0;
	padding: 15px 5px;
	text-align: center;
	font-size: 0.8em;
	text-transform: uppercase;
}
.panier td{
	margin: 0;
	padding: 20px 0 20px 0;
	text-align: center;
}
.panier td a{
	border-bottom: none;
	text-decoration: none;
	color: #574836;
}
.panier .colProductName, .panier .colProductOpt{
	display: none;
}
.panier .colProductPrice{
	width: 10%;
}
.panier .colProductQuantity{
	width: 10%;
}
.panier .colProductQuantity input{
	width: 50%;
	text-align: center;
	border: 1px solid #eee;
}
.panier .colProductImg{
	width: 15%;
	padding: 5px 0;
}
.panier .colProductImg img{
	width: 100px;
	height: 100px;
	object-fit: contain;
	padding: 5px 0;
}
.panier .colDelete{
	width: 10%;
}
.panier .colDelete a{
	display: block;
	width: 40px;
	height: 30px;
	background-image: url(../img/picto-close-b@60.png);
	background-size: 20px 15px;
	background-repeat: no-repeat;
	background-position: center;
	font-size: 0;
}
.panier .colDelete a:hover{
	background-image: url(../img/picto-close-on@60.png);
}

/* mise à jour quantité */
.colUpdateQty{
	text-align: center;
}
.colUpdateQty input[type=submit]{
	width: 50%;
	padding: 6px;
	border: 1px solid #eee;
	font-size: 0.8em;
	text-transform: uppercase;
}
/* */
#shoppingBagFooter{
	display: flex;
	flex-direction: column;
	text-align: left;
	justify-content: space-between;
}
#shoppingBagFooter h2{
	display: inline-block;
	padding-bottom: 10px;
	margin-bottom: 20px;
	font-size: 1em;
	font-weight: normal;
	text-transform: uppercase;
	border-bottom: 2px solid #574836;
}
#shoppingBagInfo, #shoppingBagCodePromo, #shoppingBagCodePromoUsed, .total, .totalFinal{
	margin: 40px 5px 0;
}
#shoppingBagInfo{
	order: 3;
}

/* promo */
#shoppingBagCodePromo, #shoppingBagCodePromoUsed{
	order: 2;
}
#shoppingBagCodePromo input[type=text], #shoppingBagCodePromo input[type=submit], #shoppingBagCodePromoUsed input[type=submit]{
	width: 100%;
	margin-left: 0;
	border: 1px solid #000;
	font-size: 1em;
}
#shoppingBagCodePromoUsed p{
	font-weight: bold;
	color: rgb(var(--color-contraste));
}

/* total */
.total, .totalFinal{
	order: 1;
	padding: 15px 10px;
	border: 2px solid #574836;
}
.total table, .totalFinal table{
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}
.total td, .totalFinal td{
	width: 45%;
	padding: 5px 0;
	font-size: 1.3em;
	text-align: right;
}
.total td.colProductTotal, .totalFinal td.colProductTotal{
	width: 55%;
	text-align: right;
}

/* bouton continue */
#shoppingBagFooter .btContinue input{
	width: 100%;
	border: 1px solid #574836;
	font-size: 1em;
}

/* bouton payement */
#paymentButton{
	margin: 10px 0 0 0;
	border: 1px solid #574836;
}
#paymentButton:disabled{
	opacity: 0.5;
	cursor: default;
}

/* checkout */
#checkout h2{
	margin-top: 40px;
}
#checkout #submitWrap{
	position: sticky;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.85);
}

/* shipping */
.shipProduct{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
	background-color: rgba(255, 255, 255, 0.5);
}
.shipProduct:after{
	content: ' ';
	display: block;
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 25px;
	height: 25px;
	background-size: contain;
	background-image: url(../img/picto-triangle-W@50.png);
	background-position: top center;
	transform: translate(-50%, 100%);
	opacity: 0.5;
}
.shipProduct li{
	flex: 0 0 150px;
	list-style: none;
	font-size: 0.9em;
	text-align: center;
}
.shipProduct li p{
	font-size: 0.8em;
}
.shipProduct li img{
	display: block;
	width: auto;
	height: 50px;
	margin: auto;
	padding-bottom: 5px;
}
.shipMethod, #paymentMethod{
	margin: 20px 0 0 0;
	padding: 0;
	text-align: center;
}
.shipMethod li, #paymentMethod li{
	margin: 0;
	padding: 0;
	display: inline-block;
}
.shipMethod li div, #paymentMethod li div{
	width: 200px;
	text-align: center;
}
.shipMethod li div h3, #paymentMethod li div h3{
	margin: 0;
	padding: 0;
	font-size: 12px;
}
.shipMethod li div p, #paymentMethod li div p{
	margin: 5px 0 0 0;
	padding: 0;
	font-size: 14px;
}
.shipMethod li label, #paymentMethod li label{
	width: 100%;
	margin: 0;
	text-align: center;
}
.shipMethod li label img, #paymentMethod li label img{
	margin: 10px 0;
}
.shipMethodBt{
	text-align: center;
}

/* affiche les conditions de vente */
#cgvText{
	margin: 20px 40px 20px 40px;
	padding: 5px 10px 5px 10px;
	border: 1px solid #777777;
}
#cgvText h1, #cgvText h2, #cgvText h3, #cgvText h4, #cgvText h5, #cgvText h6{
	margin: 20px 0 0 0;
}
#cgvText p{
	margin: 10px 0 0 15px;
}

/* helpinfo */
#helpInfo{
	margin: 50px 3%;
	padding: 30px 20px;
	background-color: #fafafa;
	background-repeat: no-repeat;
	background-position: center 15px;
	background-size: 90px 90px;
	text-align: center;
	font-size: 1.2rem;
	line-height: 1.2rem;
}
#helpInfo p{
	 margin: 0.6em 0;
}
#helpInfo p:first-child{
	margin-top: 0;
	color: rgb(var(--color-contraste));
	font-weight: bold;
}
#helpInfo p:last-child{
	margin-bottom: 0;
}
#helpInfo a{
	color: #574836;
	text-decoration: none;
}
#helpInfo a:hover{
	color: rgb(var(--color-contraste));
}
#helpInfo #helpTel, #helpInfo #helpEmail{
	display: block;
	margin: 0.5em;
}
#helpInfo #helpTel a, #helpInfo #helpEmail a{
	display: inline-block;
	background-repeat: no-repeat;
	background-size: 25px 25px;
	background-position: left center;
}
#helpInfo #helpTel a{
	padding-left: 30px;
	background-image: url(../img/pictoHelpTelB.png);
}
#helpInfo #helpEmail a{
	margin-left: 20px;
	padding-left: 40px;
	background-image: url(../img/pictoHelpEmailB.png);
}
/*actu*/
.articleTn{
	display: flex;
	margin: 30px 0;
	padding: 20px 30px;
	flex-wrap: wrap;
	box-shadow: var(--shadowColor);
	transition: box-shadow 0.3s ease-in;
	-webkit-transition: box-shadow 0.3s ease-in;
	cursor: pointer;
}
.articleTn:hover{
	box-shadow: var(--shadowColorHover);
}
.articleTn:hover h2 a{
	color: rgb(var(--color-contraste));
}
.articleTn .articleTnImg{
	flex: 0 0 100%;
	text-align: center;
}
.articleTn .articleTnImg img{
	width: 100px;
	height: auto;
}
.articleTn header h2{
	margin-top: 0;
}
.articleTn header h2 a, .articleTn header h2 a:hover{
	border-bottom: none;
	transition: color 0.3s ease-in;
	-webkit-transition: color 0.3s ease-in;
}
.articleTn footer{
	flex: 0 0 100%;
	margin-top: 20px;
	color: #555;
	font-size: 0.8em;
}
.articleTn footer li{
	list-style: none;
}
.articleImg{
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
}
.articleImg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#article{
	margin-top: calc(50vh + 30px);
}

/* a propos */
#aboutWTCExtreme h2{
	margin-top: 0;
	border-bottom: 2px solid rgb(var(--color-contraste));
	text-align: center;
	font-size: 1em;
}



@media screen and (min-width: 500px){
/* actu */
.articleTn .articleTnImg{
	flex: 0 0 100px;
	margin-right: 30px;
}
#article{
	padding: 30px 50px;
}
}



@media screen and (min-width: 750px){
/* home */
#homeImgLstWrap{
	height: calc(100vh - 140px);
}
#homeNav ul{
	display: flex;
	flex-direction: row;
}
#homeNav li{
	flex: 1 1 100%;
	height: 500px;
}
#homeInfoTarif h2{
	width: 30%;
	padding: 40px;
}

/* footer réseaux sociaux */
#footerSoc ul{
	width: 500px;
	margin-left: auto;
	margin-right: auto;
}

/* footer : texte et menu */
#infoSite div.twoColumn{
	flex-direction: row;
}
#infoSite #textPresentation p{
	font-size: 0.9em;
}
#infoSite .twoColumn nav{
	order: 1;
}
#infoSite #coordinate{
	margin-top: 0;
	font-size: 1em;
}

/* contenu */
.textContent h1{
	text-align: inherit;
}

/* produit cat */
#productLst li, #productCatLst li{
	width: 29%;
	margin: 20px 2%;
}
#productLst li, #productCatLst li{
	transition: color 0.3s ease-in, box-shadow 0.3s ease-in;
}
#productLst li:hover, #productCatLst li:hover{
	box-shadow: var(--shadowColorHover);
}
#productLst li:hover a, #productCatLst li:hover a{
	color: rgb(var(--color-contraste));
}
#productLst li a img, #productCatLst li a img{
	width: 200px;
	height: 200px;
}
#productImg, #productDescr, #productTech{
	width: calc(100% - 270px);
}
#productPriceOptionWrap{
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
}
#productPriceOption{
	display: inline;
	position: -webkit-sticky;
	position: sticky;
	top: 100px;
}
#produitOption{
	text-align: center;
}
#produitOption label{
	width: auto;
	float: none;
	text-align: center;
}
#productPrice{
	width: 250px;
	padding: 0 10px;
	flex-direction: column;
	font-size: 1em;
	border-radius: 6px;
}
.productAddInfo{
	display: block;
	font-size: 0.7em;
	color: #000;
	font-weight: normal;
}
p.productInfoShipping{
	font-size: 1em;
}

/* shoppingBag */
#shoppingBagFooter{
	flex-direction: row;
}
#shoppingBagInfo, #shoppingBagCodePromo, #shoppingBagCodePromoUsed, .total, .totalFinal{
	flex: 0 1 30%;
}
#shoppingBagInfo{
	order: 2;
}
#shoppingBagCodePromo, #shoppingBagCodePromoUsed{
	order: 1;
}

/* helpinfo */
#helpInfo{
	margin: 50px 5%;
}
#helpInfo #helpTel, #helpInfo #helpEmail{
	display: inline;
	margin: inherit;
}

/* panier */
.panier .colProductName, .panier .colProductOpt{
	display: table-cell;
	width: 35%;
	text-align: left;
}
.panier .colProductOpt{
	width: 10%
}

/* mise à jour quantité */
p.colUpdateQty{
	width: 200px;
	margin-left: 50%;
	text-align: center;
}
/* total */
.total, .totalFinal{
	order: 3;
}
.total td, .totalFinal td{
	font-size: 1em;
}

/* bouton continue */
#shoppingBagFooter .btContinue input{
	margin-left: 0;
}

/* a propos */
#aboutWTCExtreme h2{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0;
	border-bottom: none;
	text-align: center;
	font-size: 1.2em;
}
#aboutWTCExtreme h2::before, #aboutWTCExtreme h2::after{
	content: ' ';
	flex: 1;
	width: 50px;
	height: 10px;
}
#aboutWTCExtreme h2::before{
	margin-right: 10px;
	background: linear-gradient(90deg, rgba(9,203,0,0) 0%, rgba(9,203,0,1) 100%);
}
#aboutWTCExtreme h2::after{
	margin-left: 10px;
	background: linear-gradient(-90deg, rgba(9,203,0,0) 0%, rgba(9,203,0,1) 100%);
}
}




@media screen and (min-width: 750px) and (min-height: 600px){
/*home*/
#homeImgLstWrap{
	height: calc(100vh - 180px);
}
}




@media screen and (min-width: 800px){
/* formulaire */
select, input[type=text], input[type=password], input[type=email], input[type=phone], input[type=website], input[type=number], input[type=file], input[type=button], input[type=range], input[type=submit], textarea, .calendarMain{
	width: 68%;
}
.calendarMain, form input[type=submit]{
	margin-left: 26%;
}
label{
	float: left;
	width: 25%;
	margin: 5px 1% 0 0;
	text-align: right;
}
label:empty{
	display: inline;
}

/* activite */
#activite{
	flex-direction: row;
}
#activiteImg{
	margin-left: 5%;
	width: 40%;
}
#activiteImg ul{
	flex-direction: column;
}

/* contenu */
.textContent{
	margin-left: 5%;
	margin-right: 5%;
}

/* vente en ligne */
/* shoppingBag */
#shoppingBagFooter{
	flex-direction: row;
}
#shoppingBagInfo, #shoppingBagCodePromo, #shoppingBagCodePromoUsed, .total, .totalFinal{
	flex: 0 1 40%;
}

/* panier */
.panier .colProduitImg{
	padding-right: 5px;
}
.panier .colProductName, .panier .colProductOpt{
	display: table-cell;
	width: 35%;
	text-align: left;
}
.panier .colProductOpt{
	text-align: center;
}
.panier .colProductOpt{
	width: 10%
}

/* mise à jour quantité */
main.content p.colUpdateQty{
	width: 200px;
	margin-left: 50%;
	text-align: center;
}
.colUpdateQty input[type=submit]{
	width: auto;
}

/* total */
.total, .totalFinal{
	order: 3;
}
.total td, .totalFinal td{
	font-size: 1em;
}

/* bouton continue */
.btContinue{
	text-align: center;
}
.btContinue input[type=submit]{
	width: auto;
	margin: auto;
}
/* vente en ligne */

/* diaporama : visualiseur : DEBUT */
#jsPhotoViewer_nav li{
	background-color: transparent;
}
#jsPhotoViewer.open:hover #jsPhotoViewer_nav li{
	background-color: rgba(0, 0, 0, 0.5);
}
#jsPhotoViewer_img, #jsPhotoViewer_subtitle, #jsPhotoViewer_title{
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease-in, visibility 0s linear .3s;
}
#jsPhotoViewer.open #jsPhotoViewer_img, #jsPhotoViewer.open:hover #jsPhotoViewer_subtitle, #jsPhotoViewer.open:hover #jsPhotoViewer_title{
	opacity: 1;
	visibility: visible;
	transition: opacity .3s ease-in, visibility 0s;
}
}




@media screen and (min-width: 1000px){
body{
	font-size: 16px;
}

/* footer */
#footer{
	padding-left: 10%;
	padding-right: 10%;
}

/* contenu */
.textContent{
	margin-top: 120px;
	margin-left: 10%;
	margin-right: 10%;
}

/*helpinfo*/
#helpInfo{
	margin-left: 10%;
	margin-right: 10%;
}

/* actu */
.articleImg{
	top: 70px;
	height: calc(50% - 70px);
}
}



@media screen and (min-width: 1200px){
body{
	font-size: 17px;
}

/* formulaire */
select, input[type=text], input[type=password], input[type=email], input[type=phone], input[type=website], input[type=number], input[type=file], input[type=button], input[type=range], input[type=submit], textarea, .calendarMain{
	width: 48%;
}
.calendarMain, form input[type=submit]{
	margin-left: 31%;
}
label{
	width: 30%;
}

/* footer */
#footer{
	padding-left: 12%;
	padding-right: 12%;
}

/* contenu */
.textContent{
	margin-left: 14%;
	margin-right: 14%;
}

/*helpinfo*/
#helpInfo{
	margin-left: 14%;
	margin-right: 14%;
}

/* actu */
.articleImg{
	top: 100px;
	height: calc(50% - 100px);
}
}



@media screen and (min-width: 1400px){
/* contenu */
.textContent{
	margin-left: 17%;
	margin-right: 17%;
}

/*helpinfo*/
#helpInfo{
	margin-left: 17%;
	margin-right: 17%;
}
}




@media screen and (min-width: 1600px){
/* contenu */
.textContent{
	margin-left: 25%;
	margin-right: 25%;
}

/*helpinfo*/
#helpInfo{
	margin-left: 25%;
	margin-right: 25%;
}
}