.ydu-breadcrumb {
	margin: 0;
    padding: 0;
    list-style: none;
	font-size: 0.9rem;
	display: block;
    margin-top: 50px;
}

.ydu-breadcrumb li {
	display: inline;
    font-size: 1.1rem;
	font-weight: 300;
}

.ydu-breadcrumb li a {
	color: white;
	transition: .3s;
}

.ydu-breadcrumb li a:hover {
	opacity: .7;
}

.ydu-breadcrumb li.item {
	text-transform: uppercase;
	font-size: 0.9rem;
    font-weight: 400;
}

.ydu-breadcrumb li.item-current {
	color: var(--color_dark_blue);
	font-weight: 800;
}

.ydu-breadcrumb .seperator {
	margin: 0 10px;
}

.btn_back_wrap {
	display: none;
	margin-top: 50px;
	margin-bottom: 10px;
}

.btn_back_wrap a {
	color: white;
	display: flex;
    align-items: center;
	gap: 8px;
	text-transform: uppercase;
    font-size: 0.8rem;
	line-height:1;
}

.btn_back_wrap a::before {
	content: "";
	width: 10px;
	display: block;
	height: 10px;
	background-color: currentColor !important;
	-webkit-mask-image: url(/wp-content/uploads/2023/05/dropdown.svg);
	mask-image: url(/wp-content/uploads/2023/05/dropdown.svg);
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	margin-top: -2px;
	transform: rotate(90deg);
}

section:not(.mdm_entete) .btn_back_wrap a::before {
	background-color: var(--color_medium_text);
}



@media screen and (max-width: 767px) {
	
	body:not(.search) .btn_back_wrap {
		display: block;
	}
	
	body:not(.search) .ydu-breadcrumb {
		display: none;
	}
	
	body.search .ydu-breadcrumb .item:not(.item-current), 
	body.search .ydu-breadcrumb .seperator {
		display: none;
	}
	
	.ydu-breadcrumb {
		text-align: center;
	}
	
}