.toutlachat{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.ensembledesservices{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	flex-grow: 1;
	width: 100%;
	overflow-y: auto;
}

.unachatdeservice{
	background-color: var(--gris-neuf);
	border-radius: 2px;
	padding:16px;
	margin:16px;
	max-width: 90%;
	box-sizing: border-box;
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-direction: column;
}

.titredeservice{
	font-size: 16pt;
	font-weight: 700;
	margin:16px;
	color: var(--bleu-neuf);
	text-align: center;
}

.listedeservice{
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	width:260px;
	margin: 0px 0px;
}

.blocsdeservice{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
}

.unelementdeservice{
	text-align: left;
	color: var(--bleu-neuf);
	border-radius: 2px;
	font-weight: 600;
	font-variant: small-caps;
	text-transform: capitalize;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: row;
	cursor: pointer;
}

.unelementdeservice:hover{
	background-color: hsl(0,0%,100%,0.34);
}

.fonddecoche{
	margin: 0px 8px;
	width:44px;
	height:44px;
	background-image: url('/img/case.png');
	background-size: 100% 100%;
	background-position: center;
	position: relative;
}

.petitfond{
	min-width: 30px;
	width:30px;
	height:30px;
	margin:0;
}

.imagedecoche{
	position: absolute;
	display: none;
	z-index:6;
	top:0;
	left:0;
	width:100%;
	height:100%;
	animation: apparitioncoche 0.3s ease-in-out forwards;
}

.serviceacquis{
	opacity:0.4;
}

.servicecomplet{
	opacity: 0.6;
}

.serviceacquis .imagedecoche{
	display: block;
}

.complet{
	position: absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight:800;
	transform: rotate(-15deg);
	transform-origin: 50% 50%;
}

.bandeaucomplet{
	border-radius: 2px;
	padding:2px;
	font-size: 8pt;
	background-color: var(--rouge-lmp);
	color:white;
}

@keyframes apparitioncoche{
	0%{
		opacity:0;
		transform: scale(1);
	}
	80%{
		opacity: 1;
		transform:scale(1.2);
	}
	100%{
		opacity:1;
		transform: scale(1);
	}
}

.jourdestage{
	text-transform: none;
	font-variant: normal;
	font-weight: 400;
	font-size: 8pt;
}

.infosdeservice{
	flex-grow: 1;
	text-align: right;
	margin: 0px 8px;
	font-weight:500;
}

.acceptation{
	margin:12px;
	max-width: 480px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: left;
	flex-direction: row;
	cursor: pointer;
	padding:8px;
}

.attirance{
	animation: attirance 1s ease-in-out forwards;
}

@keyframes attirance{
	0%{
		background-color: transparent;
	}
	20%{
		background-color: var(--orange-lmp);
	}
	100%{
		background-color: transparent;
	}
}

.recapachat{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding:12px;
	height: 80px;
}

.prixtotal{
	background-color: var(--gris-neuf);
	border-radius: 2px;
	padding:8px;
	margin:8px;
	font-size: 11pt;
	color:var(--bleu-neuf);
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.pourcents{
	color: var(--vert-correct);
	font-weight: 600;
	margin-right: 6px;
}

.chiffreprix{
	font-size:14pt;
}

.chiffrebarre{
	font-size: 12pt;
	font-weight: 500;
	text-decoration: line-through;
}

.boutondupaiement{
	text-align: center;
	background-color:var(--bleu-neuf);
	padding:8px;
	margin:8px;
	color:white;
	font-weight: 600;
	border-radius: 2px;
	font-size:11pt;
	text-decoration: inherit;
}

.paiementimpossible{
	pointer-events: none;
	opacity:0.6;
}

@media screen and (max-width:720px) {
	.unachatdeservice{
		margin-left: 0px;
		margin-right: 0px;
	}
}