.photoRender{
	text-align: center;
}

.allPop{
	display: flex;
	flex-direction: column;
	width: 100%;
}

.dropdown-menu-DG{
	font-size: 14px;
	font-family: RobotoSlab;
}

.dropdown-submenu {
    position: relative;
	font-size: 14px;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
	font-size: 14px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
	
}





.userMess{
	display: flex;
	flex-direction: column;
	position: absolute;
	bottom: 50px;
	/*margin: 15px;*/
	color: black;
	width: 100%;
}

.userMess textarea{
	width: 100%;
	
}

.dispoCmd{
	display: flex;
	flex-direction: column;
	position: absolute;
	bottom: 50px;
	left: 0px;
	background-color: #e66161;
	color: white;
	width: 100%;
	height: 30px;
	text-align: center;
	justify-content: center;
	align-items: center;
}

.domicilioGratis{
	display: flex;
	flex-direction: column;
	position: absolute;
	bottom: 80px;
	left: 0px;
	background-color: #568856;
	color: white;
	width: 100%;
	height: 30px;
	text-align: center;
	justify-content: center;
	align-items: center;
}

/* 
.dropdown {
	position: relative;
	display: inline-block;
	background-color: var(--BgColor_Card_Top);
	width: 100%;
	height: 20px;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	width: 250px;
	max-height: 350px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	overflow: auto;
	z-index: 30;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: var(--BgColor_Card_Top);} */

.choicePopup{
	width: 100%;
	height: 40px;
	color: black;
	
}



html {
	height: 100%;
	width: 100%;
	scroll-behavior: smooth;
}
body {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	font-family: var(--Font_Cart);
	font-size: 14px;
    line-height: 1.3em;
}

#grayBack {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	z-index: 1999;
	opacity: 0.5;
}

hr {
	width: 50%;
}

label {
  /* Pour être sûrs que toutes les étiquettes ont même taille et sont correctement alignées */
  display: inline-block;
  width: 110px;
  text-align: right;
}

input:focus, textarea:focus {
  /* Pour souligner légèrement les éléments actifs */
  border-color: #000;
}

.annimCart {
	/*display: none;*/
	width: 50px;
	height: 25px;
	position: relative;
	background-color: white;
	animation-name: goCart;
	animation-duration: 4s;
}

@keyframes goCart{
	0% { left: 250px; top: 250px;}
	/* 25% { left: 250px; top: 250px;}
	50% { left: 250px; top: 250px;}
	75% { left: 250px; top: 250px;} */
	100% { right: 50px; top: 50px;}
}



/* ------------------------------popup ------------------------------------------- */

h1 {
  text-align: center;
  font-family: Tahoma, Arial, sans-serif;
  color: #06D85F;
  margin: 80px 0;
}
.box {
  width: 40%;
  margin: 0 auto;
  /*background: rgba(255,255,255,0.2);*/
  padding: 35px;
 /*  border: 2px solid #fff;
  border-radius: 20px/50px; 
  background-clip: padding-box;*/
  text-align: center;
}

.popButton {
  /*font-size: 1.8em;*/
  padding: 5px;
  color: #fff;
  /*border: 2px solid #06D85F;
  border-radius: 20px/50px;*/
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.popButton > img{
	border-radius: 0;
}
.popButton:hover {
  /*background: #06D85F;*/
  color: green;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 300;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.smallMessage {
	position: fixed;
	top: 50px;
	right: 50px;
	width: 300px;
	height: 30px;
	border-radius: 5px;
	background: linear-gradient(0deg, #3A1D26, #542D39);
	transition: opacity 1000ms;
	visibility: hidden;
	opacity: 0;
	z-index: 300;
}

.smallMessage:target {
  visibility: visible;
  opacity: 1;
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #06D85F;
}

.popup .content {
  max-height: 30%;
  /*overflow: auto;*/
  width: 50%;
  color: orange;
  margin: 25%;
  padding: 20px;
  font-size: 1rem;
  line-height: 1.6;
  border: solid;
  border-radius: 10px;
}

.smallContent{
	color: white;
	margin: 5px;
}

.popup{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	align-items: center;
  }

.indisp{
	display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 5px;
    right: 55px;
    z-index: 9;
}

.indispHide{
	display: none;
}

.connectedMess{
	position: absolute;
	width: 150px;
	top: 15px;
	right: 0px;
	margin-left: -50px;
	margin-top: -17px;
	margin-right: 10px;
	text-align: right;
	color: var(--Font_color_Dark);
}

.cartChoiceDelivery{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;

	justify-content: space-around;
}

.cartConnecter{
	display: flex;
	width: 150px;
	height: 30px;
	border-radius: 15px;
	border: solid;
    border-width: 1px; 
	margin-top: 20px;
	margin-left: 25%;
	color: var(--Font_color_Dark);
	cursor: pointer;
	align-items: center;
	justify-content: center;
	font-size: 16px;

}

.btn_DG{
	font-size: 0.7rem;
	position: relative;
    left: 230px;
}

.btnDomicilio{
	display: flex;
	width: 150px;
	height: 30px;
	border-radius: 15px;
	border: solid;
    border-width: 1px; 
	margin-top: 20px;
	/*margin-left: 25%;*/
	color: var(--Font_color_Dark);
	cursor: pointer;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}

.btnDomicilioDate{
	width: 320px;
}

.dpDG{
	width: 190px;
	border: none;
    height: 28px;
}

.btnDomicilioSelect{
	background-color: var(--Font_color_Dark);
	Color: white; 
}

.cartDomicilio{
	width: 80%;
	height: 340px;
}

.cartDomicilioSet2{
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
}

.cartConnecter:hover{
	color: white;
	background-color: var(--Font_color_Dark);
}

.cartWrongCnx{
	display: flex;
	width: 100%;
	color: red;
	align-items: center;
    text-align: center;
	justify-content: center;
}

.mini{
	width: 1px;
	height: 1px;
	overflow: hidden; 
}

.pastilleCart{
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: -12px;
	left: 29px;
	width: 30px;
	height: 30px;
	border-radius: 15px;
	background: var(--ColorPastille);
	color: white;
	z-index: 9;
	font-size: 16px;
}

.vegan{
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 5px;
	right: 50px;
	z-index: 9;
	cursor: pointer;
}

.info {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 5px;
	right: 5px;
	z-index: 9;
}

.info:hover{
	cursor: pointer;
}

.alerg {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 5px;
	left: 5px;
	z-index: 9;
}

.alergCloseButton{
	display: flex;
	width: 80px;
	height: 30px;
	border: solid;
	border-width: 1px;
	border-radius: 4px;
	box-shadow: 1px 1px 5px #555;
	color: var(--Color_Card_Bottom);
	cursor: pointer;
	align-items: center;
	text-align: center;
	justify-content: center;
	font-family: var(--Font_Cart);
}

.messCartEmpty{
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 0px;
	width: 75%;
	margin: 20% 13%;
	font-weight: bold;
	font-family: Spartan;
	font-size: 1rem;
	text-align: center;
	align-items: center;
}

.cartTitle{
	display: flex;
	position: absolute;
	justify-content: space-between;
	top: 0px;
	width: 100%;
	height: 30px;
	align-items: center;
	background: var(--BgColor_Card_Top);
	color: var(--Color_Card_Top);
}

.cartTotalSend{
	display: flex;
	justify-content: space-between;
	position: absolute;
	bottom: 0px;
	width: 100%;
	height: 50px;
	align-items: center;
	background: var(--BgColor_Card_Bottom);
	color: var(--Color_Card_Bottom);
	padding-right: 20px;
	padding-left: 20px;
}

#aCartTitle{
	margin-left: 10px;
	font-family: var(--Font_Cart);
}

.cartSpecMess1{
	position: absolute;
	top: 30px;
	width: 90%;
	height: 20px;
	background-color: white;
	font-family: Spartan;
	font-size: .80rem;
	overflow: hidden;
	overflow-y: auto;
	font-family: var(--Font_Cart);
	font-style: italic;
	cursor: pointer;
	border: solid;
	border-width: 1px;
	border-top: 0px;
	border-radius: 0px 0px 4px 4px;
	padding-left: 10px;
	z-index: 10;
}

.cartSpecMess2{
	display: flex;
	position: absolute;
	top: 30px;
	width: 90%;
	height: 150px;
	background-color: white;
	border: solid;
	border-width: 1px;
	border-top: 0px;
	border-radius: 0px 0px 4px 4px;
	padding-top: 25px;
	z-index: 9;
}

.cartListProd{
	position: absolute;
	top: 65px;
	width: 90%;
	height: 310px;
	font-family: Spartan;
	font-size: .85rem;
	overflow: hidden;
	overflow-y: auto;
	font-family: var(--Font_Cart);
}

	
table{
	width:100%;
}

td{
	height: 30px;
}
.tdPrice{
	width:25%;
	text-align: right;
	font-family: var(--Font_Cart);
}

.tdQty{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	text-align: center;
	align-items: center;
	font-size: .95rem;
	font-family: var(--Font_Cart);
}

.tdMessage{
	/*width:25%;*/
	text-align: left;
	font-family: var(--Font_Cart);
}

.classQty{
	width: 25px;
	height: 25px;
	border: solid;
	border-width: 1px;
	border-radius: 4px;
	box-shadow: 1px 1px 5px #555;
	color: #bda663;
	cursor: pointer;
	align-items: center;
	text-align: center;
	font-weight: bold;
}



.tdName{
	width:70%;
	text-align: left;	
	font-size: 1.05rem;
	font-family: var(--Font_Cart);
}

#aCartTotal{
	margin-left: 10px;
	font-family: var(--Font_Cart);
}

.cartCmdButton{
	display: flex;
	width: 70px;
	height: 30px;
	border: solid;
	border-width: 1px;
	border-radius: 4px;
	box-shadow: 1px 1px 5px #555;
	color: var(--Color_Card_Bottom);
	cursor: pointer;
	align-items: center;
	text-align: center;
	justify-content: center;
	font-family: var(--Font_Cart);
}

.cartCmdButton:hover{
	background-color: #8c7373;
}


.footerAdds{
	display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 30px;
    align-items: center;
    padding-right: 10px;
    padding-left: 10px;
	background: var(--BgColor_Card_Bottom);
	color: var(--Color_Card_Bottom);
}

#formAddsProd{
	width: 100%;
	font-family: var(--Open_Sans_Regular);
}

.footerCmdButton{
	display: flex;
	justify-content: center;
	width: 70px;
	height: 20px;
	border: solid;
	border-width: 1px;
	border-radius: 10px;
	/*box-shadow: 1px 1px 5px #555;*/
	color: var(--Color_Card_Bottom);
	cursor: pointer;
	align-items: center;
	text-align: center;
}

.footerCmdButton:hover{
	background-color: #401000;
}

.footerCmdButtonInactif{
	/*display: none;*/
	cursor: not-allowed;
	opacity: 0.2;
}

.closeBtn{
	width: 20px;
	border: none;
	border-radius: 2px;
	box-shadow: none;
}

.backBtn{
	width: 20px;
	border: none;
	border-radius: 2px;
	box-shadow: none;
	right: 0px;
}

.aOptTitle{
	display: flex;
	justify-content: center;
	text-align: center;
	width: 100%;
	height: 20px;
	background-color: var(--BgColor_Card_Top);
	color: var(--Color_Card_Top);
	align-items: center;
	text-align: center;
}

.addsOptionBtn{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 40%;
	height: 35px;
	border: solid;
	border-width: 1px;
	border-radius: 4px;
	color: black;
	cursor: pointer;
	align-items: center;
	text-align: center;
	margin: 8px;
}

.addsOptionBtn:hover{
	background-color: #8c7373;
	color: white;
}

.addsOptionBtnSelected{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 40%;
	height: 35px;
	border: solid;
	border-width: 1px;
	border-radius: 4px;
	cursor: pointer;
	align-items: center;
	text-align: center;
	margin: 8px;
	color: white;
	background-color: #8c7373;
}

.addsBtnContainer{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	font-family: var(--Open_Sans_Regular);
}


.aAddsTotal{
	/*font-weight: bold;*/
}

.addsPrice{
	font-size: 0.6rem;
}

.addsName{
	font-size: 0.8rem;
}

@media screen and (min-width: 640px) {/*sur ordi et tablette*/

.box{
    width: 70%;
  }
  
	.connected{
		position: absolute;
		top: 58px;
		right: 10%;
		margin-left: -50px;
		margin-top: -17px;
		cursor: pointer;
	}
	
	.modalAddsProd{
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 110px;
		width: 220px;
		left: 990px;
		z-index: 30;
		background-color: white;
		box-shadow: 1px 1px 15px var(--Font_color_Dark);
		border-radius: 4px;
		padding: 10px;
	}

	.cartDetail{
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 110px;
		right: 0px;
		width: 400px;
		height: 500px;
		background: white;
		/*opacity: 0.9;*/
		color: black;
		z-index: 19;
		font-size: 16px; 
		box-shadow: 1px 1px 15px var(--Font_color_Dark);
	}



	.divLay{
/* 		display: flex;
		flex-direction: column; */
		height: 100%;
	}

	#cart{
		position: absolute;		
		top: 45px;
		right: 3%;
		/*margin-right: -35px;*/
		margin-top: -17px;
		cursor: pointer;
	}
	
	#address{
		position: absolute;		
		top: 33px;
		left: 110px;
		font-family: var(--Font_Card_title);
		letter-spacing: 0.5px;
		font-size: 16px;
	}

	#identity{
		z-index: 99;
		position: sticky;	
		top: 0px;
		background-color: var(--BgColor_bandeau_Top);
		min-height: 110px;
		width: 100%;
	}

	/* .nav{
		display: flex;
		flex-direction: column;
		width: 300px;
		height: 100%;
		position: sticky;
		top: 110px;
		min-width: 250px;
		background-color: var(--BgColor_bandeau_Left);
	} */
	
	.nav2{
		display: flex;
		flex-direction: column;
		width: 300px;
		height: 100%;
		position: sticky;
		top: 110px;
		min-width: 250px;
		background-color: var(--BgColor_bandeau_Left);
	}
	
	/* a:link {
		text-decoration: none;
	} */
	
	#nav > div{
		/*width: 150px;*/
		margin-top: 25px;
		margin-left: 26px;		
		font-size: 16px;
	}

	img{
		object-fit: cover;
		border-radius: 25px;
	}

	#center{
		width: 100%;
		position: static;
		top: 110px;
		background-color: var(--BgColor_Panel_Center);
		overflow-y: auto;
		scroll-behavior: smooth;
	}
	
	.TestPHPcenter{
		width: 100%;
		position: relative;
		top: 110px;
		background-color: #9e9191;
	}
	
	#paneContainer{
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		flex-wrap: wrap;
	}
	
	

	.divLayCenter{
		display: flex;
		flex-direction: row;
		position: fixed;
		top: 100px;
		height: 100%;
		width: 100%;
	}
	
	.divButton{
		width: 90%;
		border-radius: 4px;
		/*box-shadow: 1px 1px 5px #555;*/
		padding: 5px;
		text-transform: uppercase;
		font-family: var(--Font_Card_title);
		color: var(--Font_color_Dark);
	}
	
	.divButton:hover{
		transition-duration: 0.5s;
		box-shadow: 1px 1px 4px var(--ColorOmbre);
		cursor: pointer;
	}
	
	.classTitle{		
		display: flex; 
		height: 70px;
		width: 100%;
		color: var(--Font_color_Dark);
	}
	
	.classMess{
		display: flex; 
		height: auto;
		/*margin: 10px;*/
		justify-content: space-around;
		padding-bottom: 20px;
		font-size: 16px;
		letter-spacing: 0.5px;
		font-family: var(--Font_Card_title);
	}

	.classTitle a{
		margin: auto; /* Important */ 
        text-align: center; 
		font-family: var(--Font_Card_title);
		font-size: 32px;
		font-weight: bold;
		letter-spacing: 1px;
		line-height: 1.5em;
		text-transform: uppercase;
		color: var(--Font_color_Dark);
		/*color: #e5e5e5;
		 text-shadow: 1px 2px 0 rgba(0,0,0,0.4),
             -1px -2px 0 rgba(255,255,255,1); */
	}
	 
	.paneStarter{
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-around;
		padding: 10px;
	}
	
	.photo{
		height: 210px;
		width: 315px;
		overflow: hidden;
	}
	
	.photo2{
		height: 210px;
		width: 315px;
		overflow: hidden;
		object-fit: cover;
		border-radius: 4px;
	}
	
	.titlePhoto{
		padding-top:55px;
		font-family: var(--Font_Card_title);
		text-align: center;
		font-size: 20px;
		letter-spacing: 0.6px;
		line-height: 1.5em;
		/*text-transform: uppercase;*/
		color: var(--Font_color_Dark);
	}
	
	.photoAdds{
		display: none;
		/*position: center;
		width: 40%;
		height: auto;
		overflow: hidden;
		object-fit: cover;
		opacity: 0.3;
		z-index: 1;*/
	}
	
	.cSpecial{
		width: 315px;
		height: 400px;
		min-width: 315px;
		max-width: 315px;
		padding-right: 0px;
		padding-left: 0px;
		border-radius: 4px;
		background-color: var(--BgColor_Card);
	}
	
	.cSpecial:hover{
		transition-duration: 0.5s;
		box-shadow: 1px 1px 10px var(--ColorOmbre);
	}
	
	
	.cSpecialReverso{
		display: flex;
		overflow-y: auto;
		/*text-align: center;
		padding-left: 15px;
		 padding-right: 15px;
		padding-top: 16%; */
		/*color: white;*/
	}
	
	.descProd{
		display: flex;
		height: 210px;
		width: 315px;
		border: solid;
		border-width: 1px;
		border-radius: 4px;
		padding: 20px;
		color: white;
		background-color: #8c7373;
		font-family: var(--FontCard_Detail);
	}
	
	.divHidden{
		display: none;
	}
	
	.divVisible{
		display: block;
	}
	
	.cadreSup{
		position: absolute;
		top: -30px;
		background-color: transparent;
	}
	
	.pastille {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 194px;
		right: 45%;
		width: 30px;
		height: 30px;
		border-radius: 15px;
		background: var(--ColorPastille);
		color: white;
		z-index: 9;
		font-size: 18px;
	}

	
	.pastille:hover{
		cursor: pointer;
	}
	
	.indispo {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 215px;
		left: 0px;
		width: 150px;
		height: 30px;
		border-radius: 0px 5px 5px 0px;
		box-shadow: 1px 1px 5px #555;
		background: #A83B24;
		color: white;
		z-index: 9;
		font-size: 18px;
		font-family: var(--FontCard_Detail);
	}
	
	
}

@media screen and (max-width: 640px) {/*sur mobile*/
	
.connected{
	position: absolute;
	top: 58px;
	right: 17%;
	margin-left: -50px;
	margin-top: -17px;
	cursor: pointer;
}

.modalAddsProd{
	position: absolute;
	top: 90px;
	width: 200px;
	z-index: 30;
	background-color: white;
	box-shadow: 1px 1px 15px #555;
	border-radius: 4px;
	padding: 10px;
}

.cartDetail{
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 90px;
	right: 0px;
	width: 350px;
	height: 400px;
	background: white;
	opacity: 1;
	color: black;
	z-index: 19;
	font-size: 16px; 
	box-shadow: 1px 1px 15px #555;
	overflow-y: auto;

}


	
	.branding{
		position: fixed;
		top: 7px;
		left: 15%;
		margin-left: -50px;
		margin-top: -17px;
	}

	#address{
		display: none;
	}

	#cart{
		position: relative;
		top: 45px;
		left: 85%;
		margin-right: -35px;
	}
	
	#divCartLogo > img{
		width:30px;
	}
	
	#identity{
		display: flex;
		flex-direction: row;
		border-bottom: 1px solid;
		width: 100%;
		min-height: 90px;
		position: fixed;
		z-index:200;
		background-color: var(--BgColor_bandeau_Top_Mob);
	}
	
	.paneStarter{
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-around;
		padding: 10px;
	}
	
/* 	#center{
		display: flex;
		flex-direction: row;
		width: 100%;
		position: relative;
		top: 100px;
		background-color: #9e9191;
		z-index:0;
	} */
	
	#center{
		display: flex;
		flex-direction: column;
		position: relative;
		top: 90px;
		background-color: var(--BgColor_Panel_Center);
		height: 100%;
		width: 100%;
		scroll-behavior: smooth;
	}
	
	.TestPHPcenter{
		width: 100%;
		position: relative;
		top: 110px;
		background-color: #9e9191;
	}
	
	#paneContainer{
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		flex-wrap: wrap;
	}
	
	.divLayCenter{
		display: flex;
		flex-direction: row;
		height: 100%;
		
	}
	

	
	.cSpecial{
		width: 175px;
		height: 250px;
		min-width: 150px;
		/*max-width: 315px;*/
		background-color: #f0f1f2;
		padding-right: 0px;
		padding-left: 0px;
		border-radius: 4px;
		background-color: var(--BgColor_Card);
	}
	
	.cmdAdds{
		position: fixed;
		top: 90px;
		left: 0px;
		width: 100%;
		height: 81%;
		z-index: 100;
	}
	
	
	.cSpecialReverso{
		/*text-align: center;
		padding-left: 5px;
		 padding-right: 5px;
		padding-top: 16%; */
		/*color: white;*/
	}
	
	.descProd{
		display: flex;
		height: 118px;
		width: 165px;
		border: solid;
		border-width: 1px;
		border-radius: 4px;
		padding: 10px;
		margin-left: 5px;
		margin-top: 5px;
		overflow-y: auto;
		color: white;
		background-color: #8c7373;
	}
	
	.divHidden{
		display: none;
	}
	
	.divVisible{
		display: block;
	}
	
	.photo{
		height: 125px;
		/*width: 175px;*/
		overflow: hidden;
		border-radius: 4px;
	}
	
	.photo2{
		/*max-height: fit-content;*/
		height: 115px;
		width: 175px;
		overflow: hidden;
		object-fit: cover;
		border-radius: 4px;
	}
	
	.titlePhoto{		
		padding-top: 15px;
		text-align: center;
		font-size: 13px;
		font-weight: bold;
		line-height: 1.5em;
		/*text-transform: uppercase;*/
		font-family: var(--Font_Card_title);
		color: var(--Font_color_Dark);
	}
	
	.photoAdds{
		width: 100%;
		height: auto;
		text-align: center;
	}
	
	#nav{
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 100px;
		/*bottom: 0;*/
		width:100%;
		padding-left:20px;
		/*padding-top:50px;
		height:50%;*/
		
		z-index:10;
	}
	
	#nav > div{
		/*width: 150px;*/
		margin: 10px;		
		font-size: 16px;
	}
	
	.cadreSup{
		position: absolute;
		top: -30px;
		background-color: transparent;
	}
	
	.navTest{
		display: flex;
		flex-direction: row;
		position: fixed;
		height: 110px;
		background-color: white;
		z-index: 310;
	
	}
	
	.divButton{
		width: 90%;
		border-radius: 4px;
		box-shadow: 1px 1px 5px #555;
		/*padding: 5px;*/
		/*background-color: rgba(204, 151, 102, 0.9);*/
		text-transform: uppercase;
		/*font-family: var(--Font_Card_title);*/
		color: var(--Font_color_Dark);
	}
	
	.classTitle{		
		display: flex; 
		height: 70px;
		width: 100%;
		color: var(--Font_color_Dark);
	}
	
	.classMess{
		display: flex; 
		height: auto;
		width: 100%;
		justify-content: space-around;
		padding-bottom: 5px;
		padding-left: 20px;
		padding-right: 20px;
		font-size: 16px;
		letter-spacing: 0.5px;
		font-family: var(--Font_Card_title);
	}
	
	.classTitle a{
		margin: auto; /* Important */ 
        text-align: center; 
		font-family: 'Futura', sans-serif;
		font-size: 32px;
		font-weight: bold;
		letter-spacing: 1px;
		line-height: 1.5em;
		text-transform: uppercase;
		color: var(--Font_color_Dark);
		/*color: #e5e5e5;
		 text-shadow: 1px 2px 0 rgba(0,0,0,0.4),
             -1px -2px 0 rgba(255,255,255,1); */
	}
	
	.pastille {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 100px;
		right: 40%;
		width: 30px;
		height: 30px;
		border-radius: 15px;
		background: var(--ColorPastille);
		color: white;
		z-index: 9;
		font-size: 18px;
	}
	
	.indispo {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 100px;
		left: 0px;
		width: 100px;
		height: 30px;
		border-radius: 0px 5px 5px 0px;
		box-shadow: 1px 1px 5px #555;
		background: #A83B24;
		color: white;
		z-index: 9;
		font-size: 14px;
	}
	
	.bottomMenu{
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		align-items: center;
		border-top: 1px solid;
		width: 100%;
		min-height: 50px;
		position: fixed;
		z-index:18;
		background-color: white;
		padding: 10px;
		height: 10px;
		bottom: 0px;
	}
	

}

