:root {

	--current-color: #000;
	--primary-color: #0071b9;
	--secondary-color: rgba(248,174,1,1);
	--secondary-color-50: rgba(248,174,1,0.5);
	--secondary-color-25: rgba(248,174,1,0.25);
	--secondary-color-10: rgba(248,174,1,0.1);
	--warning-color: #a60018;
	--grey-color: rgba(224, 224, 224, 1);
	--grey-color-50: rgba(224, 224, 224, 0.5);
	--grey-color-25: rgba(224, 224, 224, 0.25);
}
/* 
 ---- FIL D'ARIANE
*/
.nav-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0;
    font-size: 12px;
    margin: 0 5%;
}
.nav-wrapper a {
    text-decoration: none;
    color: var(--secondary-color) !important;
    font-weight: 700;
    cursor: pointer;
}
.nav-wrapper a:hover,
.nav-wrapper a:focus {
    color: var(--primary-color) !important;
}
.nav-wrapper a + a::before {
    content: ">";
    margin: 0 5px;
    color: var(--secondary-color)!important;
}