<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

.placeHolderUp {
	height: 300px;
	background: #1a1a1a;
}
.placeHolderDown {height: 50px;}

html, body {
    width: 100%;
    height: 100%;
}
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background-image: url(/static/app/base/img/BG.jpg);
	background-position: 50% 50%;
	background-attachment: fixed;
}

header, footer {
    color: whitesmoke;
    width: 100%;
    font-size: 1em;
	font-weight: bold;
    position: fixed;
    display: block;
	z-index: 10;
}
header {
    height: 75px;
    top: 0;
    left: 0;
    background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,1.00) 0%,rgba(255,255,255,0.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(0,0,0,1.00) 0%,rgba(255,255,255,0.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(0,0,0,1.00) 0%,rgba(255,255,255,0.00) 100%);
	background-image: linear-gradient(180deg,rgba(0,0,0,1.00) 0%,rgba(255,255,255,0.00) 100%);
}
#box-nav {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
header ul {
	width: 70%;
	list-style-type: none;
	text-align: center;
    display: block;
	padding-left: 0;
    margin: 0 auto;
    transition: .5s;
}
header ul li {
	height: 50px;
	display: inline-block;
	padding-top: 24px;
}
header ul a {
    color: whitesmoke;
	text-decoration: none;
	font-weight: 600;
	font-size: .85em;
}
header ul a:hover {
    color: white;
	text-decoration: underline;
	transition: .5s;
}
header ul p {
	display: block;
	padding-left: 4px;
	padding-right: 10px;
	border-right: 1px solid whitesmoke;
}
.lastp {
	border-right: none;
}
header ul img {
	display: none;
	width: 30px;
	float: left;
}
.forhdsd {display: block;}
.formobile {display: none;}

.logo {
	width: 100px;
	height: 50px;
    float: left;
    margin-left: 10px;
    margin-top: 5px;
    background: no-repeat;
    background-size: auto 50px;
}
.bouton-mobile {
	width: 100%;
	height: 50px;
	display: none;
	background-size: auto 50px;
	background-repeat: no-repeat;
	background-position: 50% 0;
	background-color: black;
	-webkit-box-shadow: 0 0 10px #000000;
	box-shadow: 0 0 10px #000000;
	cursor: pointer;
}

#mobilelist {
	display: none;
	position: absolute;
	z-index: +800;
	top: 16px;
	left: 6%;
	color: whitesmoke;
	font-size: 1.2em;
	text-transform: uppercase;
}

#panier {
	position: absolute;
	width: 30px;
	height: 30px;
	top: 0;
	right: 8%;
	margin-top: 12px;
	background-image: url(/static/app/base/img/panier.svg);
	background-size: 100% auto;
	z-index: 11;
}
#panier a {
	display: block;
	width: 35px;
	height: 35px;
	color: black;
}
#panier p {
	display: block;
	float: right;
	width: 15px;
	height: 15px;
	text-align: center;
	font-size: 12px;
	font-weight: 500;
	background-color: #C4A886;
	border-radius: 50%;
	margin-top: 20px;
	line-height: 15px;
}

#language-box {
	position: fixed;
	top: 75px;
	right: 50px;
	z-index: 12;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 5px;
	border: 1px solid #C4A886;
}
#language-box li {
	font-size: .8em;
	font-weight: bold;
	display: inline-block;
	padding: 5px 10px;
	cursor: pointer;
}
#language-box li:hover {color: #C4A886;}

footer {
    height: 50px;
    background: #2d2d2d;
    bottom: 0;
    left: 0;
}
footer p {
	text-align: center;
	font-size: .7em;
	font-weight: 400;
	padding: 12px;
}
footer p a {color: #C4A886;}


/*------自适应性------*/
@media (max-width: 1280px) {
	.placeHolderUp {height: 210px;}
	/*.placeHolderDown {height: 35px;}*/
	header {height: 60px;}
	#language-box {
		top: 52px;
		right: 35px;
	}
	#language-box li {padding: 4px 7px;}
	footer {height: 35px;}
	footer p {padding: 8px;}
}

@media (max-width: 768px) {
	header ul p {display: none;}
	header ul li {
		margin-left: 10px;
		margin-right: 10px;
		padding-top: 18px;
	}
	header ul img {display: block;}
	.forhdsd {display: none;}
	.formobile {display: block;}
}

@media (max-width: 580px) {
	.placeHolderUp {height: 180px;}
	header {
		background-color: transparent;
		height: 50px;
		/*position: relative;*/
	}
	#box-nav {width: 100%;}
	.bouton-mobile {
		display: block;
		z-index: 9;
		position: relative;
	}
	.logo {display: none;}
	.logo-mobile {display: block;}
	#mobilelist{display: block;}
	header ul {
		margin-top: -200px;
		width: 100%;
		z-index: 8;
		position: relative;
		background-color: #4e4e4e;
	}
	header ul li {
		display: block;
		padding: 0;
		margin: 0;
		border-bottom: 1px solid #989898;
	}
	header ul li:last-child {border-bottom: none}
	header ul p {
		display: block;
		border-right: none;
		padding: 0;
	}
	header ul img {display: none;}
	header ul a {
		color: whitesmoke;
		display: block;
		width: 100%;
		height: 50px;
		line-height: 50px;
	}
	header ul a:hover {
		background-color: #989898;
		text-decoration: none;
	}
	#panier {margin-top: 8px;}
	.show {margin-top: 0;}
	#language-box {right: 20px;}
	footer p span {display: none;}
}
</pre></body></html>