*,
::after,
::before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

@font-face {
	font-family: "Gothic";
	src: url("/fonts/gothic.ttf");
}

@font-face {
	font-family: "Gothic-bold";
	src: url("/fonts/NanumGothic-ExtraBold.ttf");
}

html,
button,
input,
select,
textarea {
	font-family: "Gothic";
	font-size: 1em;
}

html,
body {
	background-color: #fff;
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

h1,
h2,
h3 {
	font-family: "Gothic-bold"
}

/* modal */

.modal-backdrop,
.modal-backdrop.fade.in {
	opacity: .8;
	filter: alpha(opacity=80);
}

.modal-backdrop.fade {
	opacity: 0;
}

.fade.in {
	opacity: 1;
}

.modal-backdrop,
.modal-backdrop.fade.in {
	opacity: .8;
	filter: alpha(opacity=80);
}

.modal-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1040;
	background-color: #000;
}

.fade {
	opacity: 0;
	-webkit-transition: opacity .15s linear;
	-moz-transition: opacity .15s linear;
	-o-transition: opacity .15s linear;
	transition: opacity .15s linear;
}

.modal.fade {
	top: -100%;
	-webkit-transition: opacity .3s linear, top .3s ease-out;
	-moz-transition: opacity .3s linear, top .3s ease-out;
	-o-transition: opacity .3s linear, top .3s ease-out;
	transition: opacity .3s linear, top .3s ease-out
}

.modal.fade.in {
	top: 80px;
}

.modal {
	position: fixed;
	left: 50%;
	z-index: 1050;
	width: 450px;
	margin-left: -225px;
	background-color: #fff;
	border: 1px solid #999;
	border: 1px solid rgba(0, 0, 0, 0.3);
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	outline: 0;
	-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding-box;
	background-clip: padding-box;
}

.full-modal {
	width: 100%;
	height: 100%;
	z-index: 1050;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.full-modal img {
	max-width: 1050px !important;
}

.full-modal-footer {
	width: 100%;
	max-width: 1050px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.modal-header {
	padding: 9px 15px;
	border-bottom: 1px solid #eee;
}

.modal-header h3 {
	margin: 0;
	line-height: 30px;
	font-size: 22.5px;
}

button.close {
	padding: 0;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
}

.close {
	float: right;
	font-size: 32px;
	font-weight: bold;
	line-height: 20px;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	opacity: .5;
	filter: alpha(opacity=20);
}

.modal-body {
	position: relative;
	max-height: 400px;
	padding: 15px;
	overflow-y: auto
}

.modal-footer {
	padding: 14px 15px 15px;
	margin-bottom: 0;
	text-align: right;
	background-color: #f5f5f5;
	border-top: 1px solid #ddd;
	-webkit-border-radius: 0 0 6px 6px;
	-moz-border-radius: 0 0 6px 6px;
	border-radius: 0 0 6px 6px;
	*zoom: 1;
	-webkit-box-shadow: inset 0 1px 0 #fff;
	-moz-box-shadow: inset 0 1px 0 #fff;
	box-shadow: inset 0 1px 0 #fff
}

.modal-footer:before,
.modal-footer:after {
	display: table;
	line-height: 0;
	content: ""
}

.modal-footer:after {
	clear: both
}

.modal-footer .btn.cancel {
	float: left;
}

.modal-footer .btn.valid {
	float: right;
}

/* end modal */

/* tooltip */

.tooltip {
	position: absolute;
	z-index: 1030;
	display: block;
	font-size: 11px;
	line-height: 1.4;
	opacity: 0;
	filter: alpha(opacity=0);
	visibility: visible
}

.tooltip.in {
	opacity: .8;
	filter: alpha(opacity=80)
}

.tooltip.top {
	padding: 5px 0;
	margin-top: -3px
}

.tooltip.right {
	padding: 0 5px;
	margin-left: 3px
}

.tooltip.bottom {
	padding: 5px 0;
	margin-top: 3px
}

.tooltip.left {
	padding: 0 5px;
	margin-left: -3px
}

.tooltip-inner {
	max-width: 200px;
	padding: 8px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	background-color: #000;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px
}

.tooltip-arrow {
	position: absolute;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid
}

.tooltip.top .tooltip-arrow {
	bottom: 0;
	left: 50%;
	margin-left: -5px;
	border-top-color: #000;
	border-width: 5px 5px 0
}

.tooltip.right .tooltip-arrow {
	top: 50%;
	left: 0;
	margin-top: -5px;
	border-right-color: #000;
	border-width: 5px 5px 5px 0
}

.tooltip.left .tooltip-arrow {
	top: 50%;
	right: 0;
	margin-top: -5px;
	border-left-color: #000;
	border-width: 5px 0 5px 5px
}

.tooltip.bottom .tooltip-arrow {
	top: 0;
	left: 50%;
	margin-left: -5px;
	border-bottom-color: #000;
	border-width: 0 5px 5px
}

/* end tooltip */

main {
	flex-grow: 1;
}

.buttoncmd {
	margin: 32px auto;
	text-align: center;
}

.btn {
	white-space: nowrap;
	box-shadow: inset 0px 1px 0px 0px #ffffff;
	background: linear-gradient(to bottom, #ededed 5%, #dfdfdf 100%);
	background-color: #ededed;
	border-radius: 3px;
	border: 1px solid #dcdcdc;
	display: inline-block;
	cursor: pointer;
	font-size: 15px;
	font-weight: revert;
	color: #333;
	text-decoration: none;
	text-shadow: 0px 1px 0px #ffffff;
	padding: 8px 16px;
	margin: 4px;
}

.btn:hover {
	background: linear-gradient(to bottom, #dfdfdf 5%, #ededed 100%);
	background-color: #dfdfdf;
	text-decoration: none;
}

.btn:active {
	position: relative;
	top: 1px;
}

.pageprofil,
.pagecontact {
	margin: 32px auto 0;
}

.pagecontact fieldset {
	margin: 0 auto;
	max-width: 534px;
	border: none;
}

.pagecontact fieldset>legend {
	display: block;
	color: #333;
	font-size: 21px;
	line-height: 40px;
	margin-bottom: 20px;
	padding: 0;
	width: 100%;
	border-bottom: 1px solid #e5e5e5;
}

.pagecontact label {
	display: block;
}

label,
input,
button,
select,
textarea {
	font-size: 14px;
	font-weight: normal;
	line-height: 20px;
}

.input-xxlarge {
	width: 534px;
}

.input-large {
	width: 220px;
}

.input-small {
	width: 102px;
}

input,
textarea {
	padding: 4px 2px;
	border-radius: 4px;
	line-height: 20px;
	background-color: #FFFFFF;
	border: 1px solid #CCCCCC;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
	transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
}

.ficheproduit {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	padding-top: 1em;
	justify-content: space-evenly;
}

.ficheproduit .col.monture {
	flex-grow: 3;
	max-width: 800px;
}

.ficheproduit .col.details {
	flex-grow: 1;
	max-width: 400px;
}

.ficheproduit .col.details .command {
	display: flex;
	justify-content: space-between;
}

.ficheproduit .col.details .command span {
	font-weight: 100;
	font-size: 0.9em;
}

.ficheproduit h2,
.ficheproduit h3 {
	border-bottom: 1px solid #a6a6a6;
}

.ficheproduit .price {
	font-size: 1.5rem;
}

.ficheproduit ul {
	margin: 0;
	padding: 0;
}

.ficheproduit li {
	list-style: none;
	display: block;
	text-align: left;
	padding-left: 0;
}

.ficheproduit li.name {
	font-weight: bold;
	margin-top: 1rem;
}

.ficheproduit li.value {
	font-style: italic;
	color: #454545;
}

.ficheproduit .dimensions td {
	text-align: center;
}

.ficheproduit #mainimagecontainer {
	line-height: 200px;
	text-align: center;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-top: 8px;
}

.ficheproduit #mainimage {
	display: block;
	max-height: 100%;
	width: 100%;
}

.ficheproduit #mainimagecontainer a {
	position: absolute;
	display: block;
	font-size: 4em;
	width: 20%;
	height: 200px;
	color: #000;
	background: rgba(0, 0, 0, 0);
	transition: background 0.3s;
}

.ficheproduit #mainimagecontainer a.prev:hover,
.ficheproduit #mainimagecontainer a.next:hover {
	color: grey;
}

.ficheproduit #mainimagecontainer a.prev {
	left: 0;
}

.ficheproduit #mainimagecontainer a.next {
	right: 0;
}

.ficheproduit .title {
	margin: 16px 0 0;
	font-size: 27px;
}

.ficheproduit #allitemstable {
	margin: 0 auto;
	max-width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

.ficheproduit #allitemstable .sku {
	max-width: 130px;
}

.ficheproduit #allitemstable .sku .img {
	height: 48px;
}

.ficheproduit #allitemstable .sku .verre,
.ficheproduit #allitemstable .sku .indice {
	height: 24px;
	white-space: nowrap;
	font-size: 0.9rem;
}

.ficheproduit #allitemstable .sku .itemselector {
	height: 32px;
	margin: 12px 2px;
	padding: 8px 2px;
}

.ficheproduit .tooltip-inner {
	white-space: pre-wrap;
}

.ficheproduit .percage {
	margin-top: 2rem;
}

.smallimg,
.viewsmallimg {
	width: 100%;
	max-width: 100px;
	vertical-align: middle;
}

.fitmix {
	display: none;
	cursor: pointer;
}

#PRODUCT .fitmix {
	position: absolute;
	top: 16px;
	left: 16px;
	width: 48px;
	height: 33px;
}

#DESKTOP .ficheproduit #mainimagecontainer {
	height: 350px;
}

#DESKTOP #mainimage {
	margin: 2em auto 4em;
}

#MOBILE .ficheproduit #mainimagecontainer a.prev,
#MOBILE .ficheproduit #mainimagecontainer a.next {
	display: none;
}

.cmd_detail {
	max-width: content;
	display: grid;
	grid-template-columns: auto 1fr;
	grid-column-gap: 1rem;
}

.Off img {
	display: none;
}

.On img {
	position: absolute;
	border: 4px solid #afd0f0;
}

#cmd_mobile {
	display: none;
}

@media (orientation:landscape) {
	#MOBILE .ficheproduit {
		display: flex;
		flex-direction: column;
		flex-wrap: wrap;
		padding-top: 1em;
		justify-content: space-evenly;
	}
}

@media (orientation:portrait) {
	#MOBILE .ficheproduit #cmd_subsection {
		display: block !important;
		opacity: 1;
		position: relative;
		z-index: 0;
		border: 0;
		box-shadow: none;
	}

	#MOBILE .ficheproduit #cmd_subsection .modal-header {
		display: none;
	}
}

#DESKTOP #cmd_subsection {
	opacity: 1;
	position: relative;
	z-index: 0;
	border: 0;
	box-shadow: none;
	text-align: center;
}

#DESKTOP #cmd_subsection .modal-header {
	display: none;
}

#RESULTS .item {
	width: 250px;
	height: auto;
	display: inline-block;
	padding: 1em;
	border: 1px solid #eee;
	margin: 0;
	text-align: center;
}

#RESULTS .item .monture img {
	cursor: pointer
}

@media (max-width: 640px) {
	#RESULTS .item {
		width: 100%;
	}
}

#RESULTS .item .monture img {
	height: 80px;
}

#RESULTS .item .dispo img {
	max-width: 240px;
}

#RESULTS .item header {
	display: flex;
	justify-content: space-between;
}

#RESULTS .item .miniature {
	height: 48px;
}

#RESULTS .item img.fitmix {
	width: 48px;
	height: 33px;
}

#RESULTS .item .miniature .smallimg {
	max-width: 24px;
	;
}

#RESULTS .item .prix {
	font-weight: bold;
}

.tauxpromo {
	color: rgb(206, 13, 13);
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
	padding: 0;
	width: 80px;
}

.push {
	height: 100px;
	clear: both;
}

button.search {
	margin-top: 32px;
	width: 210px;
	padding: 12px 6px;
	font-size: 1.2em;
}

.wrapper {
	clear: both;
	padding: 8px 12px;
}

.logo .sublogo {
	display: block;
	text-align: left;
	color: #203B6E;
	font: bold 10px "Arial";
	margin-top: 22px;
	float: left;
	left: 20px;
}

.logondesktop,
.logonmobile {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background-color: #F7F7F7;
	display: flex;
	flex-direction: column;
}

.logondesktop .logon {
	position: relative;
}

.logon,
.subscription {
	width: 420px;
	margin: auto;
	box-shadow: 5px 5px 10px #757575;
	border: 1px solid #333;
	border-radius: 4px;
	padding: 46px 24px;
	font-weight: normal;
	background: #fff;
	border: 1px solid #e5e5e5;
}

.logon div {
	display: flex;
	margin: 2rem 0.5rem;
}

@media(max-width: 640px) {
	.logon {
		width: 100%;
		box-shadow: none;
	}
}

.logon form h1 {
	text-align: center;
}

.logon input {
	background-color: #fff;
	width: 100%;
	margin: 0 0 16px 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	font-size: 22px;
}

.logon input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px white inset;
	background-color: #fff !important;
	color: #2a2a2a !important;
	-webkit-appearance: button;
}

.logon .forgot {
	margin-top: 8px;
	text-decoration: underline;
	text-align: right;
}

.logon button {
	font-size: 12px;
	text-transform: uppercase;
	padding: 8px 12px;
	margin-bottom: 1em;
}

.logon form button {
	width: 100%;
}

.logon .error {
	background-color: #ffebe8;
	padding: 12px;
	border-radius: 3px;
	border-color: #c00;
	border-width: 1px;
	border-style: solid;
	font-size: 18px;
	color: #c00;
}

.logon .error i {
	vertical-align: middle;
	font-size: 48px;
	float: left;
	padding-right: 24px;
}

.logon .subscribe {
	clear: both;
	margin-top: 60px;
	text-align: center;
}

.avertissementpromo {
	text-align: center;
	font-size: 10px;
	line-height: 14px;
	color: #A45D63;
	border: 1px solid #A45D63;
	border-radius: 8px;
	margin: 24px auto;
	padding: 12px 24px;
	max-width: 1000px;
}

.panier .small {
	font-size: 0.9em;
}

.panier .nobr {
	white-space: nowrap;
}

.panier table {
	width: 100%;
}

.panier table th {
	font-size: 0.8em;
}

.panier table td {
	vertical-align: middle;
}

.panier .fraisport {
	text-align: right;
	font-size: .8em;
	margin-top: 1em;
}

.panier .commentaire textarea {
	margin-top: 24px;
	padding: 0;
	width: 100%;
	height: 50px;
}

.panier .validation {
	text-align: right;
	padding-top: 48px;
}

#MOBILE .validation {
	text-align: center;
}

.panier .validation input[type=checkbox] {
	margin: 0;
}

.toolbar {
	display: flex;
	justify-content: space-between;
}

.toolbar .tools {
	display: flex;
	align-items: center;
}

.navbar .toolbar i.la,
.navbar #nav-mobile i.la {
	font-size: 1.6rem;
}

@media (max-width: 640px) {

	.navbar .toolbar i.la,
	.navbar #nav-mobile i.la {
		font-size: 1.4rem;
	}
}

.navbar .logo img {
	border: 0 !important;
	width: 148px;
	height: auto;
	margin-top: 10px;
}

.navbar .nav>.active>a,
.navbar .nav>.active>a:hover,
.navbar .nav>.active>a:focus {
	border-bottom: 3px solid white;
}


/* language chooser */
.langchooser {
	padding-left: 32px;
}

.langchooser img {
	height: 1.6rem;
}

.toolbar,
.toolbar a:link,
.toolbar a:visited {
	color: white;
}

.panier span.outofcollection {
	text-decoration: line-through;
}

.footer-timer {
	display: none;
}

h1.red {
	color: #BF360C;
}

table.red {
	background: #Fee;
}

table.stripped tbody tr:nth-child(even) {
	background-color: #eee;
}

.On {
	background-color: #dae9f8 !important;
	cursor: pointer;
}

.Off {
	background-color: #FFF;
	color: #000;
}

.cadre_recherche {
	border-right-width: thin;
	border-right-style: solid;
	border-right-color: #6B939C;
}

.btnblanc {
	font-size: 9px;
	color: #333;
	text-decoration: none;
	background-color: #FFF;
}

.cadreseparateur {
	border-left-style: dotted;
	border-color: #999;
	border-width: thin;
}

.itemselector.vert {
	border-top: 5px solid #090;
}

.itemselector.rouge {
	border-top: 5px solid red;
}

.legend.vert {
	background-color: #090;
}

.legend.rouge {
	background-color: red;
}

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

.search_criteria h1 {
	font-weight: bold;
	font-size: 16px;
	color: #000;
	border-bottom: 1px solid black;
}

.search_criteria h1.entete {
	display: flex;
	justify-content: space-between;
}

.search_criteria h1.entete a.reset {
	text-decoration: none;
	color: gray;
	font-style: italic;
	font-weight: 100;
}

.texte {
	color: #333;
}

.tailledispo {
	font-size: 14px;
	color: #060;
	text-decoration: none;
	font-weight: bolder;
}

.taillesous8 {
	font-size: 14px;
	font-weight: bolder;
	color: #F60;
}

.tailleindispo {
	font-size: 14px;
	font-weight: bolder;
	color: red;
	text-decoration: none;
}

.zoneMenu {
	height: 90px;
	position: relative;
	margin: 0;
}

.zoneMenu * {
	font-size: 10px;
}

.zoneMenu div {
	position: absolute;
	width: 100px;
}

.menu2 {
	left: 10px;
	top: 0;
}

.smenu2 {
	visibility: hidden;
	left: 0;
}

.menu2 a,
.menu2 a:visited,
.menu2 #actif {
	text-decoration: none;
	font-weight: 700;
	display: block;
	text-align: center;
	color: #fff;
	background-color: #f90;
	border: #804000 1px solid;
	border-left: #facd8a 1px solid;
	border-top: #facd8a 1px solid;
	padding: 3px;
}

* html .menu2 a {
	height: 1px;
}

.menu2 a:hover {
	background-color: #999;
	border: #aaa 1px solid;
	border-top: #333 1px solid;
	border-left: #333 1px solid;
	text-decoration: none;
}

.menu2 #actif {
	cursor: default;
	background-color: #fc0;
	color: #000;
}

.ENTETABLO {
	font-size: 9px;
	font-weight: 700;
	color: #FFF;
	text-decoration: none;
	background-color: #959595;
}

.SEPARATEURDELIGNE,
.recap {
	border-top-width: thin;
	border-top-style: dashed;
	border-top-color: #333;
	font-weight: 700;
	color: #49666D;
}

.SEPARATEURDELIGNE i.la,
.recap i.la {
	color: #49666D;
}

.tailleindispo_legende {
	font-size: 10px;
	font-weight: bolder;
	color: red;
	text-decoration: none;
}

.taillesous8_legende {
	font-size: 10px;
	font-weight: bolder;
	color: #F60;
}

.tailledispo_legende {
	font-size: 10px;
	color: #060;
	text-decoration: none;
	font-weight: bolder;
}

form {
	margin: 0;
	padding: 0;
}

.menuOn {
	background-color: #e6e6e6;
	cursor: pointer;
	text-decoration: underline;
	color: #000;
	padding: 1px 21px;
}

.menuOff {
	text-decoration: none;
	color: #fff;
	padding: 1px 21px;
}

.confirmation {
	text-align: center;
	height: 130px;
	width: 70%;
	max-width: 700px;
	font-size: 21px;
	font-weight: 200;
	line-height: 30px;
	margin: auto;
}

.clear {
	clear: both;
	height: 0;
	overflow: hidden;
	font-size: 0;
	line-height: 0;
}

.footer {
	background: linear-gradient(to bottom right, #222, #444);
	padding: 20px 5% 0 5%;
	width: 100%;
	margin-top: 30px;
	font-size: 14px;
	line-height: 2rem;
	color: #fff;
}

.footer a,
.footer a:link,
.footer a:visited {
	color: #fff;
}

.footer .wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

@media (max-width: 640px) {
	.footer .wrapper {
		flex-direction: column;
		min-height: auto;
	}
}

.footer .wrapper div {
	margin: 0;
	padding: 0;
	font-size: 1.2rem;
}

@media (max-width: 640px) {
	.footer .wrapper div {
		font-size: 1rem;
		text-align: center;
		margin-top: 2rem;
		width: 100%;
	}
}

.footer ul li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer .social {
	display: flex;
	align-items: center;
	flex-direction: row;
	text-align: center;
}

.footer .social a {
	display: inline-block;
	text-align: center;
}

.footer .social img {
	width: 50%;
	height: 50%;
}

@media (max-width: 640px) {
	.footer .social a {
		margin: 0px;
	}

	.footer .social a img {
		width: 50%;
	}
}

.footer .legals {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: right;
}

@media (max-width: 640px) {
	.footer .legals {
		text-align: center;
	}
}

.footer .legals a {
	line-height: 32px;
}

.footer .bottom_box {
	padding-left: 12px;
}

.footer #copyright {
	float: right;
}

.footer #copyright ul {
	list-style-type: none;
	margin: 0 12px 0 0;
	padding: 0;
}

.footer #copyright ul li {
	float: left;
	padding-left: 12px;
	color: #969696;
	font-size: 10px;
	margin: 0 0 0 8px;
}

.footer #copyright ul li a {
	color: #969696;
	font-size: 10px;
}

.panier .recap,
.panier .commentaire {
	text-align: right;
	padding-top: 1em;
}

.panier img,
.table img {
	max-width: 150px;
}

.search_criteria #showprice,
.search_criteria #maskprice {
	width: 100%;
	margin-bottom: 1em;
}

.search_criteria span {
	font-size: 12px;
}

.menu2 #sel,
.footer .search ul li.active a,
.footer #copyright ul li.active a {
	color: #000;
}

.footer .search a:hover,
.container .login_popup a.login:hover,
.container .send_popup a.login:hover {
	text-decoration: none;
}

a.cgv {
	text-decoration: underline;
}

.search_form input[type='text'] {
	width: 100%;
}

.search_form select {
	width: 210px;
}

/*PANELS*/

#DESKTOP #RESULTS {
	margin-left: 250px;
}

#DESKTOP .search_form {
	float: left;
	border: 0;
	padding: 26px 4px 0;
	max-width: 250px;
}

#DESKTOP .search_form #IDSEARCH {
	margin-bottom: 10px;
}

#MOBILE .search_form {
	z-index: 1050;
	position: absolute;
	right: 80px;
	top: 0px;
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 7px;
}

#MOBILE .search_form,
#MOBILE #IDSEARCH,
#MOBILE #STANDARDSEARCH,
#MOBILE #EXTENDEDSEARCH,
#MOBILE #searchButton {
	display: none;
}

#WAIT {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.73);
}

#WAIT img {
	position: absolute;
	top: 50%;
	left: 50%;
}

#PRODUCT {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 100%;
	background-color: #fff;
	z-index: 1000;
}

#PRODUCT>.close,
.modal-backdrop>.close {
	position: fixed;
	top: 16px;
	right: 16px
}

.modal-backdrop>.close {
	color: #FFF;
}

#RESULTS>a.close,
#RESULTS div.buttoncmd {
	display: none;
}

/* PUB */

.pub,
.pub iframe {
	height: 91px;
	width: 100%;
}

.pub {
	text-align: center;
	margin-top: 8px;
}

.pub iframe {
	overflow: hidden;
	margin: 0;
	padding: 0;
	border: 0;
}

#showpricebtn,
#maskpricebtn {
	width: 100%;
	margin-bottom: 1em;
}

/*UTILITIES*/

.show {
	display: initial !important;
}

.hidden {
	display: none !important;
}

.browserAlert {
	background-color: darkred;
	color: white;
	font-size: 1.4em;
	padding: 20px 13px;
}

.browserAlert a {
	background-color: cornsilk;
	padding: 4px 8px;
	margin-top: 8px;
	text-align: center;
	display: block;
}

.browserAlert img {
	width: 100%;
	border: 0;
}

/* noUiSlider */

.noUi-target,
.noUi-target * {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-ms-touch-action: none;
	-ms-user-select: none;
	-moz-user-select: none;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

.noUi-target {
	position: relative;
	direction: ltr
}

.noUi-base {
	width: 100%;
	height: 100%;
	position: relative
}

.noUi-origin {
	position: absolute;
	right: 0;
	top: 0;
	left: 0;
	bottom: 0
}

.noUi-handle {
	position: relative;
	z-index: 1
}

.noUi-stacking .noUi-handle {
	z-index: 10
}

.noUi-state-tap .noUi-origin {
	-webkit-transition: left .3s, top .3s;
	transition: left .3s, top .3s
}

.noUi-state-drag * {
	cursor: inherit !important
}

.noUi-base {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}

.noUi-horizontal {
	height: 18px
}

.noUi-horizontal .noUi-handle {
	width: 34px;
	height: 28px;
	left: -17px;
	top: -6px
}

.noUi-vertical {
	width: 18px
}

.noUi-vertical .noUi-handle {
	width: 28px;
	height: 34px;
	left: -6px;
	top: -17px
}

.noUi-background {
	background: #FAFAFA;
	box-shadow: inset 0 1px 1px #f0f0f0
}

.noUi-connect {
	background: #3FB8AF;
	box-shadow: inset 0 0 3px rgba(51, 51, 51, .45);
	-webkit-transition: background 450ms;
	transition: background 450ms
}

.noUi-origin {
	border-radius: 2px
}

.noUi-target {
	border-radius: 4px;
	border: 1px solid #D3D3D3;
	box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB
}

.noUi-target.noUi-connect {
	box-shadow: inset 0 0 3px rgba(51, 51, 51, .45), 0 3px 6px -5px #BBB
}

.noUi-dragable {
	cursor: w-resize
}

.noUi-vertical .noUi-dragable {
	cursor: n-resize
}

.noUi-handle {
	border: 1px solid #D9D9D9;
	border-radius: 3px;
	background: #FFF;
	cursor: default;
	box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB
}

.noUi-active {
	box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB
}

.noUi-handle:after,
.noUi-handle:before {
	content: "";
	display: block;
	position: absolute;
	height: 14px;
	width: 1px;
	background: #E8E7E6;
	left: 14px;
	top: 6px
}

.noUi-handle:after {
	left: 17px
}

.noUi-vertical .noUi-handle:after,
.noUi-vertical .noUi-handle:before {
	width: 14px;
	height: 1px;
	left: 6px;
	top: 14px
}

.noUi-vertical .noUi-handle:after {
	top: 17px
}

[disabled] .noUi-connect,
[disabled].noUi-connect {
	background: #B8B8B8
}

[disabled] .noUi-handle {
	cursor: not-allowed
}

#SIZESLIDER,
#PRICESLIDER {
	width: 190px;
	margin: 12px 24px;
}

#SIZESLIDERMAX,
#PRICESLIDERMAX {
	float: right;
}

.noUi-connect {
	background: #aaa;
}

.navbar {
	position: fixed;
	width: 100%;
	z-index: 980;
	top: 0px;
	display: block;
	margin: 0;
	padding: 0;
	background: linear-gradient(to top right, #222, #444);
	text-align: center;
}

@media (max-width: 640px) {
	.navbar {
		height: 123px;
	}
}

#MOBILE .navbar {
	padding: 12px 0 0 0;
}

#MOBILE #nav-mobile {
	display: flex;
	justify-content: space-around;
	padding-top: 6px;
}

#MOBILE .other-menu .menu-action i {
	color: #b3b2b2;
	cursor: pointer;
}

#MOBILE .other-menu .menu-action i:active {
	border-radius: 50px;
	color: #333;
	background-color: #b3b2b2;
}

#MOBILE #mobile-other-menu {
	display: none;
}

#MOBILE .other-menu nav {
	position: absolute;
	top: 100px;
	right: 0;
	background-color: #333;
	margin: 0;
	display: flex;
	flex-direction: column;
	max-width: 0px;
	overflow: hidden;
	transition: all 0.5s;
}

#MOBILE .other-menu nav a {
	display: inline-block;
	padding: 1em;
	line-height: 1em;
}

#MOBILE .other-menu #mobile-other-menu:checked~nav {
	max-width: 200px;
}

#MOBILE .other-menu #menu-checkbox~.menu-action .menu-close {
	display: none;
}

#MOBILE .other-menu #mobile-other-menu:checked~.menu-action .menu-close {
	display: inline-block;
}

#MOBILE .other-menu #menu-checkbox~.menu-action .menu-icon {
	display: inline-block;
}

#MOBILE .other-menu #mobile-other-menu:checked~label .menu-icon {
	display: none;
}

main {
	margin-top: 72px;
}

@media (max-width: 640px) {
	main {
		margin-top: 132px;
	}
}

ul {
	margin: 0;
	padding: 0;
	display: inline-block;
	height: 24px;
	text-align: center;
	width: 100%;
}

ul li {
	display: inline-block;
	padding: 0px 4px;
}

ul li a,
.navbar ul li a,
.toolbar a {
	text-decoration: none;
	color: #b3b2b2;
	font-size: 14px;
}

.visual img {
	max-width: 100%
}

.backdrop {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 300;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
}

#pubgroup {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#pubgroup .visual {
	position: relative;
	max-width: 1050px;
	z-index: 400;
	margin: 250px auto;
}

#pubgroup #close {
	position: absolute;
	z-index: 399;
	top: 4px;
	right: 5px;
	font-size: 2rem;
	border: 1px solid gray;
	border-radius: 3rem;
	background-color: rgba(255, 255, 255, 0);
	cursor: pointer;
	color: gray;
}

#brands {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	max-width: 1380px;
	margin: 0 auto;
}

#brands .visual {
	width: 100%;
	padding: 24px 8px;
}

#brands .visual img {
	width: 100%;
}

#brands .indexitem {
	flex-basis: 50%;
	padding: 8px;
	transition: .2s;
}

#brands .indexitem:hover,
.visual a[href]:hover {
	opacity: 0.5;
}

#pubgroup .visual a[href]:hover {
	opacity: 1;
}

#brands .indexitem button {
	width: 100%;
	padding: 0px;
	margin: 0px;
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
}

#brands .indexitem button img {
	width: 100%;
}

#download {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

#download .visual {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 2.5em;
}

@media (max-width: 640px) {
	#download {
		flex-direction: column;
	}
}

@media (max-width: 640px) {
	#brands .visual {
		padding: 8px;
		height: inherit;
	}

	#brands .indexitem {
		flex-basis: inherit;
		padding: 4px;
	}

	#brands .indexitem button {
		padding: 4px;
		font-size: 1rem;
	}
}

#welcome {
	width: 100%;
	max-width: 1050px;
	margin: 0 auto;
	padding-top: 1rem;
}

#welcome .secondline,
#welcome .thirdline {
	display: flex;
	flex-direction: row;
}

#welcome .situation {
	border: 1px solid black;
	padding: 0.4rem;
	height: 200px;
	min-width: 250px;
	flex-grow: 1;
	overflow: auto;
}

#welcome .conditions {
	border: 1px solid black;
	width: 450px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#welcome .conditions a {
	font-weight: bold;
	font-size: large;
	text-align: center;
}

#welcome .achats ul {
	display: flex;
	flex-direction: row;
	list-style: none;
}

#welcome .achats ul li {
	margin-left: 24px;
}

@media (max-width: 640px) {

	#welcome .secondline,
	#welcome .thirdline {
		flex-direction: column;
	}

	#welcome .command,
	#welcome .top,
	#welcome .promos,
	#welcome .conditions {
		width: 100%;
	}
}

#welcome .carousel {
	min-height: 330px;
	position: relative;
	overflow: hidden;
}

#welcome .carousel .item {
	position: absolute;
	left: 1050px;
}

#welcome .carousel #avance {
	position: absolute;
	z-index: 99;
	right: 0;
	font-size: 3rem;
	border: 1px solid gray;
	border-radius: 3rem;
	background-color: rgba(255, 255, 255, 0.43);
	top: 141px;
	cursor: pointer;
	color: gray;
}

#cart-add-message .modal-body {
	text-align: center;
}

#cart-add-message .modal-body img {
	margin: 12px;
}

#MOBILE #cart-add-message .modal-body img {
	display: block;
	margin: 0 auto;
}

#MOBILE #cart-add-message {
	width: 80%;
	margin-left: -40%;
}

.left {
	float: left
}

.right {
	float: right
}

.badge {
	background-color: #FFF;
	color: #000;
	border-radius: 0.5em;
	display: inline-block;
	width: 1.2em;
	height: 1.2em;
	text-align: center;
	font-size: 1.2em;
	margin-left: 0.3em;
	line-height: 1.2em;
}

.badge:empty {
	display: none;
}

#pastilles {
	display: flex;
	flex-wrap: wrap;
}

#pastilles .pastille {
	display: inline-block;
	width: 40px;
	height: 40px;
	border: 1px solid #fff;
	cursor: pointer;
}

.reference {
	line-height: 1.5em;
}

.reference .brand {
	font-weight: bolder;
	font-size: 1.2em;
}

.reference .ref {
	color: rgb(173, 173, 173);
}

.taille {
	margin: 1em;
	color: rgb(173, 173, 173);
	height: 24px;
}

.taille label {
	margin-right: 1em;
}

.dispo {
	margin-top: 1em;
}

#sav {
	margin: 1em;
}

.flex-container {
	display: flex;
	flex-wrap: wrap;
}

.flex-item {
	padding: 10px 0 0 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.flex-item img {
	width: 100%;
}

.flex-col {
	flex-direction: column;
}

.flex-50 {
	flex: 50%;
}

.flex-25 {
	flex: 25%;
}

.ml1 {
	margin-left: 1rem;
}

.ml2 {
	margin-left: 2rem;
}

.mt1 {
	margin-top: 1rem;
}

.mt2 {
	margin-top: 2rem;
}

.pl8 {
	padding-left: 8rem;
}

.pr8 {
	padding-right: 8rem;
}

.center {
	text-align: center;
}

#MOBILE .flex-50,
#MOBILE .flex-25 {
	flex: 100%;
}

#MOBILE .pl8,
#MOBILE .pr8 {
	padding-left: 0rem;
	padding-right: 0rem;
}

.subscription .flex-item {
	justify-content: flex-start;
	padding: 0;
}

.subscription .control-group {
	padding: 0.5rem 0
}

.subscription .controls input {
	width: 100%;
}

.subscription .controls input,
#subscription .controls select {
	height: 30px;
	padding: 5px 0;
	font-size: 14px;
	line-height: 1.42857143;
	color: #00214d;
	background-color: #eee;
	background-image: none;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	transition: none;
}

.subscription .controls button {
	width: 100%;
	border: 0;
	color: #fff;
	background-color: #444;
	cursor: pointer;
	display: inline-block;
	padding: 12px 23px 10px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
}

@media (max-width: 640px) {

	.flex-50,
	.flex-25 {
		flex: 100%;
	}
}
