.breadcrumbs{
    padding: 10px 0;
    display: flex;
    gap: 14px;
    line-height: 1.6;
    
}
.breadcrumbs a{
    color: #87929D;
    font-weight: 500;
}
.breadcrumbs a:hover {
	color: var(--primary-color);
}
.breadcrumbs a, .breadcrumbs span{
    font-size: 13px;
    letter-spacing: 0.48px;
    font-weight: 600;
	white-space: nowrap;
}
.breadcrumbs .pageName{
    color: var(--black);
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.breadcrumb-slash{
    line-height: 1;
    color: var(--text-color);
}
@media screen and (max-width: 545px) {
    .breadcrumbs{
        gap: 10px;
		width:max-content;
    }
	.breadcrumb-wrapper{
		overflow-x: scroll;
	}
	.breadcrumb-wrapper {
		overflow-x: scroll;
		-ms-overflow-style: none;  /* For Internet Explorer and Edge */
		scrollbar-width: none;  /* For Firefox */
	}

	.breadcrumb-wrapper::-webkit-scrollbar {
		display: none;  /* For Chrome, Safari, and Opera */
	}
}