.breadcrums {
	height: 20px;
}
.breadcrums.body {
	margin: 10px 0 0 -40px;
}


.breadcrums ul {
	list-style: none;
	margin: 0;
}
.breadcrums ul li a {
	position: relative;
	float: left;

	color: #000;
	background: rgba(255,255,255, 0.6);

	margin-right: 13px;
	height: 20px;

	font-size: 13px;
	line-height: 20px;
	padding: 0 15px;
	transition: all 0.3s;

	min-width: 90px;
	text-align: center;
}
.breadcrums ul li:first-child a {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}
.breadcrums ul li:last-child a {
	/*font-weight: bold;*/
	font-family: "FontAwesome";
}

.breadcrums ul li a::before {
    border-bottom: 10px solid rgba(255,255,255, 0.6);
    border-left: 10px solid transparent;
    border-top: 10px solid rgba(255,255,255, 0.6);

    content: " ";
    display: block;

    position: absolute;
    left: -10px;
    top: 0;
    transition: all 0.3s;
}
.breadcrums ul li:first-child a:before {
	display: none;
}
.breadcrums ul li a::after {
    border-bottom: 10px solid transparent;
    border-left: 10px solid rgba(255,255,255, 0.6);
    border-top: 10px solid transparent;

    content: " ";
    display: block;

    position: absolute;
    right: -10px;
    top: 0;
    transition: all 0.3s;
}

/* hover effect */
.breadcrums ul li a:hover {
	background: white;
}
.breadcrums ul li a:hover::before {
	border-bottom: 10px solid white;
	border-top: 10px solid white;
}
.breadcrums ul li a:hover::after {
	border-left: 10px solid white;
}

/* dark style */
.breadcrums.dark ul li a {
	color: #fff;
	background: rgba(0,0,0,0.6);
}
.breadcrums.dark ul li a::before {
    border-bottom: 10px solid rgba(0,0,0,0.6);
    border-left: 10px solid transparent;
    border-top: 10px solid rgba(0,0,0,0.6);
}
.breadcrums.dark ul li a::after {
    border-bottom: 10px solid transparent;
    border-left: 10px solid rgba(0,0,0,0.6);
    border-top: 10px solid transparent;
}
.breadcrums.dark ul li a:hover {
	background: black;
}
.breadcrums.dark ul li a:hover::before {
	border-bottom: 10px solid black;
	border-top: 10px solid black;
}
.breadcrums.dark ul li a:hover::after {
	border-left: 10px solid black;
}

/* flat style */
.breadcrums.flat ul li a {
	background: black;
	color: #ccc;
	margin: 0;
}
.breadcrums.flat ul li a:hover {
	color: white;
	text-shadow: 0 0 0 0 white;
}
.breadcrums.flat ul li a::before,
.breadcrums.flat ul li:last-child a::after {
	display: none;
}
.breadcrums.flat ul li:last-child a {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}
.breadcrums.flat ul li a::after {
	color: white;
	content: '>';
	border: none;
	right: 0;
	line-height: 17px;
}
