/** http://thecodeplayer.com/walkthrough/css3-breadcrumb-navigation **/
/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Merriweather+Sans);

.breadcrumb {

	/*centering*/
  	text-align: center;
	margin: 0 auto;
	float: none;
	      
	margin-left: auto;
	margin-right: auto;
	      
	display: inline-block;
	overflow: block;
	border-radius: 5px;

/* 	background-color: white; */
	padding: 4px;
	margin-bottom: 20px;
}

.breadcrumb a {
	text-decoration: none;
	outline: none;
	display: block;
	float: left;
	font-size: 12px;
	line-height: 36px;
	color: white;

	padding: 0px 10px 0px 60px;
	background: #666;
	background: linear-gradient(#666, #333);
	position: relative;
	
}

.breadcrumb a:first-child {
	padding-left: 24px;
/* 	padding-left: 46px; */
	border-radius: 5px 0 0 5px; 
}
.breadcrumb a:first-child:before {
	left: 14px;
}
.breadcrumb a:last-child {
	border-radius: 0 5px 5px 0; 
	padding-right: 20px;
}

.breadcrumb a.active{
	background: #333;
	background: linear-gradient(#333, #000);
}
.breadcrumb a.active:after {
	background: #333;
	background: linear-gradient(135deg, #333, #000);
}


.breadcrumb a:after {
	content: '';
	position: absolute;
	top: 0; 
	right: -18px;
	width: 36px; 
	height: 36px;
	transform: scale(0.707) rotate(45deg);
	z-index: 1;
	background: #666;
	background: linear-gradient(135deg, #666, #333);
	box-shadow: 
		2px -2px 0 2px rgba(0, 0, 0, 0.4), 
		3px -3px 0 2px rgba(255, 255, 255, 0.1);
	border-radius: 0 5px 0 50px;
}




.breadcrumb a:last-child:after {
	content: none;
}

.breadcrumb.flat {
	background-color: transparent;

}
.flat a, .flat a:after {
	
	background: white;
	color: black;
	transition: all 0.5s;
}
.flat a:before {
	background: white;
	box-shadow: 0 0 0 1px #ccc;
}
.flat a.active, .flat a.active:after{/* 	background: #00af07; */background: #478988;color: white;}


@media screen and (max-width: 768px) { 

	.breadcrumb a {
		line-height: 24px;
		padding: 0px 10px 0px 24px;

	}
	.breadcrumb a:first-child {
		padding-left: 20px;
	}

	.breadcrumb a:after {
		right: -12px;
		width: 24px; 
		height: 24px;
	}
}
@media screen and (max-width: 550px) {


	.breadcrumb a {
		font-size: 8px;
		line-height: 16px;
		padding: 0px 10px 0px 16px;

	}
	.breadcrumb a:first-child {
		padding-left: 10px;
		border-radius: 5px 0 0 5px; 
	}
	.breadcrumb a:first-child:before {
		left: 14px;
	}

	.breadcrumb a:after {
		right: -8px;
		width: 16px; 
		height: 16px;	
	}
	.breadcrumb a:before {
		border-radius: 100%;
		width: 8px;
		height: 8px;
		line-height: 8px;
		margin: 5px 0;
		position: absolute;
		left: 16px;
	}
	.breadcrumb a:last-child {
		border-radius: 0 5px 5px 0; 
		padding-right: 10px;
	}
	.flat a {
		padding-left: -10px;
	}
}