#breadcrumbs{
	line-height: 12px;
	overflow: hidden;
	font-size: 12px;
}

#breadcrumbs ul{
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

#breadcrumbs ul li{
	display: flex;
    white-space: nowrap;
}

#breadcrumbs ul li a{
	text-decoration: none;
    cursor: pointer;
    outline: none;
    transition: .3s;
}

#breadcrumbs li:not(:last-child) a:after {
	font-family: "FontAwesome";
    content: "\f054";
    display: inline-block;
    font-size: 6px;
    color: #c4c4c4;
    margin: 0 6px;
}
@media (max-width: 800px){
    #breadcrumbs{
        overflow-x: auto;
    }
    #breadcrumbs ul{
        white-space: nowrap;
        width: max-content;
    }
}