/* .grid_type_produit {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	text-align: center;
	grid-gap: 25px;
}

.type_produit {
	padding: 35px 15px;
	background-color: #fff;
	width: 100%;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 20px;
	position: relative;
	z-index: 10;
	cursor: pointer;
}

.type_produit a {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.type_produit p {
	margin-bottom: 0 !important;
	transition: color .5s;
}

.type_produit:hover p {
	color: white !important;
	z-index: 5;
}

.type_produit:hover::before {
	width: 100%;
	z-index: -1 !important;
	-webkit-transition: width 1s;
	transition: width 1s;
}

.type_produit::before {
    content: '';
    position: absolute;
    display: block;
    width: 15px;
    height: 100%;
    background-color: #D82C24;
    z-index: 2;
    top: 0;
    left: 0;
}

.single_produit {
	background-color: #fff;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.single_produit img {
	width: 100%;
	object-fit: cover;
	height: 250px;
	margin-bottom: 25px;
}

.single_produit .titre_produit {
	text-transform: uppercase;
	text-align: left;
	display: block;
	font-weight: 700;
	margin-right: 25px;
	margin-left: 25px;
}

.single_produit .description_produit {
	text-align: left;
	margin-left: 25px;
	line-height: 1.5;
	margin-right: 25px;
}

.single_produit .pdf_produit {
	font-weight: bold;
	border-radius: 0px;
	border-width: 2px;
	border-color: #d82c24;
	border-style: solid;
	background:	#ffffff;
	color:	#d82c24;
	padding: 15px 30px;
	margin: 0 auto 25px auto;
	transition: all 0.3s;
	cursor: pointer;
}

.single_produit .pdf_produit:hover {
	background: rgb(216, 44, 36) none repeat scroll 0% 0%;
	color: white;
}

.primary_type_produit {
	width: 100% !important;
}

 */