
body{
	/*background-image: url('../img/pressepoule.webp');*/
}

.popupBgImg{
	
	/* The image used */
  background-image: url("../img/restBlur.webp");
  
	/* Add the blur effect */
  /* filter: blur(2px);
  -webkit-filter: blur(2px); */
  
	/* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.popupBgTxt{
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
}

.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;
	
}


.btnGenerique{
	display:flex;
	bottom: 5px;
	height: 25px;
	background-color:transparent;
	border:1px solid;
	border-radius:5px;
	color:#4c79ff;
	font-size:14px;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.cardToolbar{
	display: flex;
	align-items: center;
	position: absolute;
    bottom: 0px;
    height: 30px;
    border-radius: 4px;
    background-color: #272e48;
    width: 100%;
}


.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;
}


.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;
	background-color: #946955;
}

#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: 16px;
    left: -18px;
    width: 30px;
    height: 16px;
	border-radius: 6px;
	background: var(--ColorPastille);
	color: white;
	z-index: 9;
	font-size: 12px;
}

/* .vegan{
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 196px;
	right: 3px;
	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);
	cursor: pointer;
}

#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;
}

.pricePhoto{
	position: absolute;
	bottom: 1px;
	right: 5px;
	height: 25px;
	color: var(--Font_color_Dark);
}

.pricePhotoDcto{
	position: absolute;
	bottom: 30px;
	right: 5px;
	height: 25px;
	color: var(--Font_color_Dark);
}

.logo{
	font-family: var(--Font_logo);
	font-size: 54px;
	margin-top: 36px;
}

div.wineAdvice {
	display: flex;
	justify-content: center;
    align-items: center;
	position: absolute;
	top: 4px;
	left: 4px;
	width: 40px;
    height: 40px;
    border-radius: 20px;
	background-color: white;
	z-index: 50;
}

div.descuento {
	display: flex;
	justify-content: center;
    align-items: center;
    height: 35px;
    width: 180px;
    background-color: #9C1B21;
    position: absolute;
    top: 48px;
    right: -6px;
    color: #FFF;
    font-size: 24px;
    white-space: nowrap;
  -webkit-transform: rotate(35deg);
    -moz-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    -o-transform: rotate(35deg);
    transform: rotate(35deg);
}

.descuento:before {
    box-sizing: border-box;
    border-style: solid;
    border-color: transparent;
    border-width: 37px;
    border-left-width: 53px;
    border-right-width: 26px;
    content: "";
    display: block;
    left: -49px;
    position: absolute;
    width: 141%;
    border-top-width: 0px;
    border-bottom-color: #9c1b21;
    top: -2px;
    z-index: -1;
}


	
@media screen and (min-width: 640px) {/*sur ordi et tablette*/

.prodListDetail{
	justify-content: center;
	position: absolute;
	padding: 5px;
	left: 15px;
	width: 30%;
	/*height: 400px;*/
	background: #465066;
	opacity: 1;
	color: #d8deea;
	z-index: 19;
	font-size: 14px; 
	box-shadow: 1px 1px 15px #555;
	overflow-y: auto;
}

.flagLang{
	display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 40px;
    width: 100%;
}

.btnToolbar{
	display:flex;
	min-width: 62px;
	height: 30px;
	background-color:transparent;
	border:1px solid;
	border-radius:5px;
	/*color:#4c79ff;*/
	font-size:16px;
	justify-content: center;
    align-items: center;
}

.MenuTab{
	font-size: 20px;
}
.MenuTab2{
	font-family: Open Sans;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: 1px;
}

.box{
	width: 70%;
}
  
.picto{
	width: 28px;
}

.vegan{
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 176px;
	right: 3px;
	width: 28px;
	z-index: 9;
	cursor: pointer;
	background-color: white;
	border-radius: 14px;
}

.hot{
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 176px;
	right: 40px;
	width: 28px;
	z-index: 9;
	cursor: pointer;
	background-color: white;
	border-radius: 14px;
}

.seed{
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 176px;
	right: 77px;
	width: 28px;
	z-index: 9;
	cursor: pointer;
	background-color: white;
	border-radius: 14px;
}

.regalo{
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 176px;
	right: 3px;
	z-index: 9;
	cursor: pointer;
}
  
.descriptPhoto{
	margin-left: 20px;
    margin-right: 20px;
	padding-right: 5px;
	height: 72px;
	text-align: justify;
	overflow-y: auto;
	font-family: var(--FontCard_Detail);
	color: var(--Font_color_Dark);
}	
	.connected{
		display: flex;
		flex-direction: row-reverse;
		position: absolute;
		top: 17px;
		right: 0%;
		margin-left: -50px;
		margin-top: -17px;
		background-color: #272e48;
		color: white;
		cursor: pointer;
		width: 60%;
		height: 40px;
		justify-content: space-around;
		align-items: center;
		border-radius: 4px;

	}
	
	.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;
	}
	
	#addressMob{
		display: none;
	}
	
	#address{
		position: relative;		
		top: 0px;
		left: 0px;
		font-family: var(--FontCard_Detail);
		letter-spacing: 1.5px;
		font-size: 19px;
		color: black;
		text-align: center;
		justify-content: center;
	}
	

	#identity{
		z-index: 99;
		position: sticky;	
		top: 0px;
		background-color: var(--BgColor_bandeau_Top);
		/*background-color: #efeae7;*/
		min-height: 110px;
		width: 100%;
	}

	/* .nav{
		display: block;
		orverflow: overlay;
		width: 300px;
		height: 95%;
		position: static;
		top: 110px;
		min-width: 250px;
		overflow-y: auto;
		overflow-x: hidden;
		background-color: var(--BgColor_bandeau_Left);
	} */
	
	.nav2{
		display: block;
		orverflow: overlay;
		/*flex-direction: column;*/
		width: 300px;
		height: 95%;
		position: static;
		top: 110px;
		min-width: 250px;
		overflow-y: auto;
		overflow-x: hidden;
		background-color: var(--BgColor_bandeau_Left);
	}
	

	
	#nav > div{
		/*width: 150px;*/
		margin-top: 36px;
		margin-left: 26px;		
		font-size: 18px;
	}

	img{
		object-fit: cover;
		border-radius: 25px;
	}

	#center{
		width: 100%;
		position: static;
		top: 110px;
		background-color: var(--BgColor_Panel_Center);
		/*background-color: #efeae7;*/
		overflow-y: auto;
		overflow-x: hidden;
		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: 90%;
		width: 100%;
		background-color: #f2eced;
	}
	
	.divButton{
		width: 80%;
		border-radius: 4px;
		padding: 5px;
		text-transform: uppercase;
		font-family: var(--Font_Section_title);
		color: var(--Font_color_Dark);
		color: black;
	}
	
	.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);
		background-color: #4a3734;
		color: white;
	}
	
	.classMessAlt{
		display: flex; 
		height: auto;
		width: 100%;
		justify-content: space-around;
		text-align: justify;
		padding-bottom: 5px;
		padding-left: 20px;
		padding-right: 20px;
		font-size: 12px;
		letter-spacing: 0.5px;
		font-family: var(--Font_Card_title);
		/*background-color: #4a3734;*/
	}

	.classTitle a{
		margin: auto; /* Important */ 
        text-align: center; 
		font-family: var(--Font_Section_title);
		font-size: 32px;
		font-weight: normal;
		/*letter-spacing: 1px;*/
		line-height: 1.5em;
		text-transform: uppercase;
		color: var(--Font_color_Dark);
	}
	 
	.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: 15px;
		font-family: var(--Font_Card_title);
		text-align: center;
		font-size: 22px;
		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;
	}
	
	.btnEditProd{
		display: flex;
		align-items: center;
		justify-content: center;
		/*position: absolute;*/
		/* bottom: 5px;
		left: 5px; */
		width: 40px;
		height: 20px;
		border-radius: 4px;
		/*background: #4a3734;*/
		background: transparent;
		color: white;
		z-index: 9;
		font-size: 26px;
		cursor: pointer;
	}
	
	.btnMetrics{
		display: flex;
		align-items: center;
		justify-content: center;
		/*position: absolute;*/
		/* bottom: 5px;
		left: 5px; */
		width: 40px;
		height: 20px;
		border-radius: 4px;
		/*background: #4a3734;*/
		background: transparent;
		color: white;
		z-index: 9;
		font-size: 26px;
		cursor: pointer;
	}
	
	.btnIndispo{
		display: flex;
		align-items: center;
		justify-content: center;
		/*position: absolute;*/
		/* bottom: 5px;
		left: 5px; */
		width: 40px;
		height: 20px;
		border-radius: 4px;
		/*background: #4a3734;*/
		background: transparent;
		color: white;
		z-index: 9;
		font-size: 26px;
		cursor: pointer;
	}
	
	.indispo {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 195px;
		left: 0px;
		width: 150px;
		height: 30px;
		border-radius: 0px 5px 5px 0px;
		box-shadow: 1px 1px 5px #555;
		/*background: #A83B24;*/
		background: #543F38;
		color: white;
		z-index: 9;
		font-size: 18px;
		font-family: var(--FontCard_Detail);
	}
	
	.millesim{
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 20px;
		left: 0px;
		width: 60px;
		height: 25px;
		border-radius: 0px 5px 5px 0px;
		box-shadow: 1px 1px 5px #555;
		background: #543F38;
		color: white;
		z-index: 9;
		font-size: 12px;
		font-family: var(--FontCard_Detail);
		
		
		border: hidden;
		border-width: thin;
		border-color: black;
		background-color: white;
		color: black;
	}
	
	.cepage{
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 20px;
		right: 0px;
		width: 120px;
		/*height: 25px;*/
		border-radius: 5px 0px 0px 5px;
		box-shadow: 1px 1px 5px #555;
		background: #543F38;
		color: white;
		z-index: 9;
		font-size: 12px;
		font-family: var(--FontCard_Detail);
		
		
		border: hidden;
		border-width: thin;
		border-color: black;
		background-color: white;
		color: black;
	}

}

@media screen and (max-width: 640px) {/*sur mobile*/
	
.MenuTab{
	font-size: 16px;
}

.flagLang{
	display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 24px;
    width: 30px;
}

.btnToolbar{
	display:flex;
	min-width: 54px;
	height: 30px;
	background-color:transparent;
	font-size:16px;
	justify-content: center;
    align-items: center;
	color: white;
}

.picto{
	background-color: white;
	border-radius: 10px;
	width: 20px;
}

.vegan{
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 125px;
	right: 1px;
	z-index: 9;
}

.hot{
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 125px;
	right: 21px;
	z-index: 9;
}

.seed{
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 125px;
	right: 41px;
	z-index: 9;
}

.regalo{
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 122px;
	right: 3px;
	z-index: 9;
	cursor: pointer;
}

.descriptPhoto{
	margin-left: 4px;
    margin-right: 4px;
	padding-right: 5px;
	/*height: 36px;*/
	height: 4em;
	text-align: justify;
	overflow-y: auto;
	font-size: 0.65em;
	line-height: 1.3em;
	font-family: var(--FontCard_Detail);
	color: var(--Font_color_Dark);
}

.connected{
	display: flex;
	flex-direction: row-reverse;
	position: absolute;
	top: 40px;
	right: 0%;
	margin-left: -50px;
	margin-top: -40px;
	cursor: pointer;
	width: 85%;
	justify-content: space-evenly;
	background-color: #272e48;
}

.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: 30px;
	right: 0px;
	width: 350px;
	height: 400px;
	background: white;
	opacity: 1;
	color: black;
	z-index: 400;
	font-size: 16px; 
	box-shadow: 1px 1px 15px #555;
	overflow-y: auto;

}

.prodListDetail{
	/*display: flex;*/
	/*align-items: center;*/
	justify-content: center;
	position: absolute;
	padding: 5px;
	top: 70px;
	left: 15px;
	width: 230px;
	background: #465066;
	opacity: 1;
	color: #d8deea;
	z-index: 400;
	font-size: 16px; 
	box-shadow: 1px 1px 15px #555;
	overflow-y: auto;
}

#tProdList{
	width:100%;
	font-size: 12px;
}

#tProdList tr{
	height: 20px;
}

	
	.branding{
		position: fixed;
		/*top: 7px;*/
		left: 16%;
		margin-left: -50px;
		margin-top: -17px;
	}

	#address{
		display: none;
	}
	
	#addressMob{
		position: relative;		
		top: 0px;
		left: 0px;
		font-family: var(--FontCard_Detail);
		letter-spacing: 1.5px;
		font-size: 8px;
		color: black;
		text-align: center;
		justify-content: center;
	}

	#cart{
		position: relative;
		top: 18px;
		left: 85%;
		margin-right: -35px;
	}
	
	#divCartLogo > img{
		width:30px;
	}
	
	#identity{
		display: flex;
		flex-direction: row;
		border-bottom: 1px solid;
		width: 100%;
		min-height: 130px;
		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: 115px;
		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%;
		
	}
	
	.pricePhoto {
		position: absolute;
		bottom: 1px;
		right: 5px;
		height: 25px;
		font-size: 12px;
		color: var(--Font_color_Dark);
	}
	
	.pricePhotoDcto{
		position: absolute;
		bottom: 26px;
		right: 5px;
		height: 16px;
		font-size: 12px;
		color: var(--Font_color_Dark);
	}
	
	.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: 12px;
		font-weight: bold;
		line-height: 1.5em;
		/*text-transform: uppercase;*/
		font-family: var(--Font_Card_title);
		/*letter-spacing: 1px;*/
		color: var(--Font_color_Dark);
	}
	
	.photoAdds{
		width: 100%;
		height: auto;
		text-align: center;
	}
	
	#nav{
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 170px;
		padding-left:20px;
		z-index:10;
		background-color: transparent;
	}
	
	#nav > div{
		/*margin-top: 20px;*/
		padding: 10px;		
		font-size: 16px;
	}
	
	.cadreSup{
		position: absolute;
		top: -30px;
		background-color: transparent;
	}
	
	.navTest{
		display: flex;
		justify-content: flex-end;
		flex-direction: row;
		position: fixed;
		height: 34px;
		width: 100%;
		background-color: transparent;
		z-index: 310;
	
	}
	
	.divButton{
		width: 90%;
		border-radius: 4px;
		box-shadow: 1px 1px 5px #555;
		padding: 5px;
		background-color: #F2ECED;
		text-transform: uppercase;
		/*font-family: var(--Font_Card_title);*/
		color: var(--Font_color_Dark);
	}
	
	.classTitle{		
		display: flex; 
		/*height: 40px;*/
		width: 100%;
		color: var(--Font_color_Dark);
		font-family: var(--Font_Card_title);
		scroll-margin-top: 120px;
	}
	
	.classMess{
		display: flex; 
		height: auto;
		width: 100%;
		justify-content: space-around;
		text-align: justify;
		padding-bottom: 5px;
		padding-left: 20px;
		padding-right: 20px;
		font-size: 12px;
		letter-spacing: 0.5px;
		font-family: var(--Font_Card_title);
		background-color: #4a3734;
		color: white;
	}
	
	.classMessAlt{
		display: flex; 
		height: auto;
		width: 100%;
		justify-content: space-around;
		text-align: justify;
		padding-bottom: 5px;
		padding-left: 20px;
		padding-right: 20px;
		font-size: 12px;
		letter-spacing: 0.5px;
		font-family: var(--Font_Card_title);
		/*background-color: #4a3734;*/
	}
	
	.classTitle a{
		margin: auto; /* Important */ 
        text-align: center; 
		font-size: 24px;
		font-weight: normal;
		/*letter-spacing: 2px;*/
		line-height: 1.5em;
		text-transform: uppercase;
		color: var(--Font_color_Dark);
		font-family: var(--Font_Section_title);
	}
	
	.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;
	}
	
	.btnEditProd{
		display: flex;
		align-items: center;
		justify-content: center;
		/*position: absolute;*/
		/* bottom: 5px;
		left: 5px; */
		width: 40px;
		height: 20px;
		border-radius: 4px;
		/*background: #4a3734;*/
		background: transparent;
		color: white;
		z-index: 9;
		font-size: 22px;
		cursor: pointer;
	}
	
	.btnMetrics{
		display: flex;
		align-items: center;
		justify-content: center;
		/*position: absolute;*/
		/* bottom: 5px;
		left: 5px; */
		width: 40px;
		height: 20px;
		border-radius: 4px;
		/*background: #4a3734;*/
		background: transparent;
		color: white;
		z-index: 9;
		font-size: 22px;
		cursor: pointer;
	}
	
	.btnIndispo{
		display: flex;
		align-items: center;
		justify-content: center;
		/*position: absolute;*/
		/* bottom: 5px;
		left: 5px; */
		width: 40px;
		height: 20px;
		border-radius: 4px;
		/*background: #4a3734;*/
		background: transparent;
		color: white;
		z-index: 9;
		font-size: 22px;
		cursor: pointer;
	}
	
	.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;
	}
	
	
	.millesim{
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 10px;
		left: 0px;
		width: 50px;
		height: 20px;
		border-radius: 0px 5px 5px 0px;
		box-shadow: 1px 1px 5px #555;
		background: #543F38;
		color: white;
		z-index: 9;
		font-size: 8px;
		font-family: var(--FontCard_Detail);
		
		
		border: hidden;
		border-width: thin;
		border-color: black;
		background-color: white;
		color: black;
	}
	
	.cepage{
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 10px;
		right: 0px;
		width: 60px;
		border-radius: 5px 0px 0px 5px;
		box-shadow: 1px 1px 5px #555;
		background: #543F38;
		color: white;
		z-index: 9;
		font-size: 8px;
		font-family: var(--FontCard_Detail);
		line-height: 120%;
		border: hidden;
		border-width: thin;
		border-color: black;
		background-color: white;
		color: black;
	}
	
	.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;*/
		background-color: var(--BgColor_bandeau_Bottom_Mob);
		padding: 10px;
		height: 10px;
		bottom: 0px;
	}
	
	div.descuento {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 35px;
		width: 100px;
		background-color: #9C1B21;
		position: absolute;
		top: 7px;
		right: -19px;
		color: #FFF;
		font-size: 14px;
		white-space: nowrap;
		-webkit-transform: rotate(35deg);
		-moz-transform: rotate(35deg);
		-ms-transform: rotate(35deg);
		-o-transform: rotate(35deg);
		transform: rotate(35deg);
	}

}

