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

.ydu-breadcrumb li {
	display: inline-block;
}

.ydu-breadcrumb li a {
	color: var(--color_grey);
}

.ydu-breadcrumb .item-current {
	color: var(--color_blue);
}

.ydu-breadcrumb .seperator {
	margin: 0 8px;
	background-color: var(--color_grey);
	-webkit-mask-image: url(/wp-content/uploads/2023/02/angle_right_ok.svg);
	mask-image: url(/wp-content/uploads/2023/02/angle_right_ok.svg);
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	font-size: 0;
	width: 10px;
	height: 10px;
	vertical-align: middle;
	margin-top: -2px;
}

.btn_back_wrap {
	display: none;
}

.btn_back_wrap button {
	background-color: transparent;
	border: none;
	padding: 0;
	color: white;
	font-size: 0.9em;
}

.btn_back_wrap a {
	color: var(--color_grey);
	display: flex;
    align-items: center;
    gap: 8px;
}

.btn_back_wrap a::before {
	content: "";
	width: 10px;
	display: block;
	height: 12px;
	background-color: var(--color_grey);
	-webkit-mask-image: url(/wp-content/uploads/2023/02/angle_right_ok.svg);
	mask-image: url(/wp-content/uploads/2023/02/angle_right_ok.svg);
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	transform: rotate(180deg);
}

@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;
	}
	
}