<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/************************/
/*		    FONTS   	    */
/************************/
@font-face {
  font-family: Readex;
  src: url(../fonts/ReadexPro/RP.ttf) format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

/************************/
/*		GENERAL CSS 	    */
/************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a, h2, .prix, .productDetailsDescription{
  text-decoration: none;
  color: #000;
  font-family: 'Readex', sans-serif;
}
hr{
  margin: 2.5em auto;
  border-top: solid #1c1d1d;
}
.mw{
  max-width: 90%;
  margin: auto;
}
.mt{
  margin-top:1.5em;
}
.mb{
  margin-bottom: 1.5em;
}
.small{
  width: 10%;
}
.homeP{
  margin-top: 2.5em;
  text-align: center;
  line-height: 1.5em;
}
/************************/
/*		HEADER/NAV  	    */
/************************/
.header{
	background-color: #fff;
	display:flex;
	align-items:center;
	height:3.5em;
	width: 100%;
	z-index: 1000;
}
.wrapper{
	text-align:center;
}
.linksPC{
	display: none;
}
.headerLinks{
	display:flex;
	align-items:center;
	width:0;
}
.linky{
	margin:0 0.5em 0;
	font-size:1.5em;
	visibility:hidden;
}
.linky a{
	color:#000;
	text-decoration: none;
}
.headerLogo{
  display: flex;
  justify-content: center;
}
/************************/
/*		BURGER MENU 	    */
/************************/
.hamburger a{
	font-size:1.5rem;
	font-weight:bold;
}
.hamburger a:link, .hamburger a:visited, .hamburger a:active{
	text-decoration: none;
	color:white;
}
.hamburger a:hover{
	color:orange;
}
.hamburger{
	position: absolute;
	left: -18.5em;
	top: 2em;
	width: 18.5em;
	height: 100%;
	transition: all 0.2s ease-in-out;
	z-index:99;
}
nav ul{
	padding:0;
	top: 20%;
	position: relative;
}
.hamburger.active{
	background-color: rgba(0, 0, 0, 0.95);
	position: fixed;
	z-index: 1001;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transition: all 0.05s ease-in-out;
}
.hamburger ul li{
	margin: 0.2em;
	padding: 1em 0.5em;
	list-style-type: none;
}
.toggle #btnBurger{
	position:relative;
	left:15em;
	top:0.7em;
	width:3em;
	height:3em;
	background-color:#fff;
	border:none;
	border-radius:2.5em;
}
#btnBurger i{
	font-size:2em;
	text-align:center;
}
.hamburger .toggle .check{
	position: absolute;
	left: 17em;
	height: 4em;
	width: 4em;
	top: 2.5em;
	opacity: 0;
	cursor: pointer;
}
.hamburger .toggle{
	position: fixed;
	top: 0;
	left: -10em;
}
/************************/
/*		SCROLL TO TOP     */
/************************/
.to_top{
  background: #fff;
  position: fixed;
  bottom: 1em;
  right: 2em;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375em;
  color: orange;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: all .4s;
}
.to_top.enable{
  bottom: 2em;
  pointer-events: auto;
  opacity: 1;
}
/************************/
/*		SLIDER MENU 	    */
/************************/
.slider{
	position:relative;
	max-width: 100%;
}
.slide {
	position: relative;
	width: 100%;
	display: none;
}
.slide.active {
	display: block;
	animation: show-items 3.0s;
}
.slide img{
	height: 42.5em;
  width: 100%;
  object-fit: cover;
}

@keyframes show-items {
	from{
		opacity: 0.4;
	}to{
		opacity: 1;
	}
}
.btn-nav {
	position: absolute;
	padding: 1rem;
	top: 50%;
	font-size: 2rem;
	margin: 0 1.5rem;
	cursor: pointer;
	transform: translateY(-50%);
}
.btn-nav i{
	z-index:100;
	font-size:3rem;
	padding: 1rem;
}
.right{
	right: 0;
}
/************************/
/*		SLIDER MULTI 	    */
/************************/
.controllerClass{
  display: flex;
  justify-content: space-around;
  position: relative;
  top: 5em;
}
.recentGroup{
  position: relative;
	width: 100%;
	display: none;
  text-align: center;
  max-width: 50%;
  margin: auto;
  margin-top: 1.5em;
}
.recentGroup img{
  width: 50%;
  height: 6em;
  object-fit: scale-down;
}
.recentGroup.ad{
  display: block;
	animation: show-items 3.0s;
}
/************************/
/*		CATALOG     	    */
/************************/
.categorieSection{
  display: flex;
  flex-direction: column;
}
.categories{
  text-align: center;
  margin-bottom: 1.25em;
}
.categories img{
  width: 6em;
  height: 6em;
  object-fit: scale-down;
}
.sousCatList{
  display: flex;
  flex-direction: column;
  text-align: center;
}
.sousCat{
  margin: 0.5em;
}
/************************/
/*		PRODUCT DETAILS  	*/
/************************/
#confirmation{
  margin: 1.5em 0;
}
.hiddenClass{
  opacity: 0;
}
.showClass{
  opacity: 1;
}
.productDetails{
  text-align: center;
}
.productDetails img{
  height: 20em;
  width: 100%;
  object-fit: contain;
}
.productDetailsBtn{
  margin-top: 0.313em;
  padding: 0.625em;
  border: none;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  border-radius: 0.313em;
  letter-spacing: .1em;
}
.space{
  margin: 1.2em 0;
}
/************************/
/*		YOUTUBE VID 	    */
/************************/
.video{
  width:100%;
  height: 12.5em;
}
/************************/
/*		FORM GENERAL 	    */
/************************/
.formClass{
  text-align: center;
  font-size: 1.75em;
}
.form{
  display: flex;
  flex-direction: column;
}
.formLink{
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 0.875em;
}
.formGroup{
  padding: 1.25em 0; 
}
input{
  width: 100%;
  padding: 0.625em;
  border: none;
  background-color: #eeeeee;
  margin: 0.313em 0;
  border-radius: 0.313em;
}
input:focus{
  outline: none;
  border: 0.063em solid Blue;
}
.formBtn{
  margin-top: 0.313em;
  padding: 0.625em;
  border: none;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  border-radius: 0.313em;
}
.formBtn:active{
  transform: scale(0.95);
}
.errorMessage{
  padding-top: 1.25em;
  color: red;
  font-size: 1em;
  text-align: center;
}
/************************/
/*		CLIENT AREA  	    */
/************************/
.dashLink{
  text-align: center;
}
.maj, .userName{
  text-transform: uppercase;
}
.letterSpace{
  letter-spacing: 0.09em;
}
.info{
  font-family: 'Readex', sans-serif;
}
/************************/
/*		ADMIN AREA  	    */
/************************/
.btnAdmin{
    margin: 2em 0;
}
.editImg{
  width: 15em;
}
.edit button{
  display: flex;
}
.box{
  border-radius: 0.2em;
  background-color: #4d8677;
  height: 5em;
  width: 15em;
  padding: 0.8em;
}
.box a{
  color: #fff;
}
.box p{
  color: #fff;
}
.boxSpace{
  margin-bottom: 0.5em;
}
.tableProduct{
  background: white;
  border-radius:0.188em;
  border-collapse: collapse;
  height: 10em;
  margin: auto;
  max-width: 37.5em;
  padding:0.313em;
  width: 100%;
  box-shadow: 0 0.313em 0.625em rgba(0, 0, 0, 0.1);
  animation: float 5s infinite;
}
.tableProduct a{
  margin-top: 2em;
}
.tableProduct th{
  color:#D5DDE5;;
  background:#1b1e24;
  border-bottom:0.125em solid #9ea7af;
  border-right: 0.063em solid #343a45;
  font-size:0.875em;
  padding:0.313em;
  text-align:center;
  text-shadow: 0 0.063em 0.063em rgba(0, 0, 0, 0.1);
}
.tableProduct tr{
  text-align: center;
}
.tableProduct td{
  height: 1em;
}
.tableProduct tr:nth-child(odd){
  background:#EBEBEB;
}
.tableProduct img{
  width: 3.125em;
  height: 3.125em;
}
.addSelect{
  color: #1c87c9;
  background-color: #eee;
  border-radius: 0.3125em; 
}
.back{
  margin-bottom: 1.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/************************/
/*		SHOPPING CART	    */
/************************/
.shopping{
  text-align: center;
}
.shoppingArticle{
  display: flex;
  flex-direction: column;
}
.shoppingTable{
  padding: 2em;
}
.disable{
  visibility: hidden;
}
#clearLs{
  padding-top: 1em;
}
#arrayTarget{
  display: flex;
  flex-direction: column;
}
#arrayTarget tr{
  display: flex;
  justify-content: center;
}
#arrayTarget td{
  padding-right: 0.2em;
}
#footTarget tr{
  display: flex;
  justify-content: center;
}
/************************/
/*		    ORDER   	    */
/************************/
.adminOrder{
  display: flex;
  flex-direction: column;
}
/************************/
/*		FOOTER      	    */
/************************/
.footerGroup{
  display: flex;
  justify-content: space-around;
}
.groupFooter{
  margin-top: 1.5em;
  text-align: center;
}
.logo{
  margin-right: 0.625em;
}
.footerPlogo{
  
}
.logoFooter{
  font-size: 1.563em;
  display: flex;
  justify-content: space-evenly;
}
/************************/
/*		MEDIAS QUERIES    */
/************************/

/*Tablette*/
@media screen and (min-width: 780px){
  .mw{
    max-width: 70%;
  }
  /*Form General*/
  .formGen{
    max-width: 40%;
    margin: auto;
  }
  .formLink{
    font-size: 1.06em;
  }
  
  /*Client area*/
  .infoGroup{
    text-align: center;
  }
  .orderGroup{
    display: flex;
    justify-content: space-evenly;
  }
  .info{
    font-size: 1.375em;
  }
  .infoPage{
		width:48%;
		margin-bottom:3em;
	}
	.infoPage img{
		width: 50%;
	}
	.articleInfo{
		text-align:center;
	}
	.hamburger.active{
		width:30%;
	}
	
	.video{
  height: 25em;
}
  .categorieSection{
    justify-content: space-evenly;
    flex-direction: unset;
  }
}

/*Desktop*/
@media screen and (min-width: 1200px){
  /*General*/
  .fa-arrow-left{
    margin-right: 1em;
  }
  .back{
    justify-content: center;
  }
  /*Header / navbar*/
  .header{
    height: 5em;
  }
  .wrapper{
    width: 100%;
  }
	.hamburger.active{
		width:20%;
	}
	.toggle #btnBurger{
		visibility:hidden
	}
	.linksPC{
	  display: flex;
	  justify-content: space-evenly;
	}
	.linky{
		visibility:visible;
	}
	.headerLinks{
		width:auto;
	}
	/*Slider*/
	.slide img{
	  height: 51.875em;
  }
  /*Form*/
  .formGen{
    max-width: 30%;
  }
  /*Catalogue*/
  .categorieSection{
    display: flex;
    justify-content: space-around;
    flex-direction: unset;
  }
  .pa{
    padding: 7em 0;
  }
  /*Video*/
  .video{
    height: 37.5em;
  }
  /*admin*/
  .box p{
    font-size: 1em;
  }
  .adminDs:nth-child(1){
    margin-top: 5em;
  }
  .adminDs{
    margin-top: 2em;
    display: flex;
  }
  /*user*/
  .userInfo{
    display: flex;
    justify-content: space-around;
  }
}</pre></body></html>