.product-header{
	background-color: #c71c22;
}
.product-header::after{
	clear: both;
	content: '';
	display: block;
}
.product-header .breadcrumbs{
	display: inline-block;
}

.product-nav{
	display: inline-block;
	float: right;
	font-size: 0;
	border-top: 1px solid #c71c22;
}
.product-nav a{
	font-size: 18px;
	color: white;
	text-decoration: none;
	height: 60px;
	line-height: 60px;
	display: inline-block;
	//min-width: 95px;
	text-align: center;
	transition: background-color 0.3s ease;
	padding-left: 10px;
	padding-right: 10px;
}
.product-nav a:hover{
	background-color: #72191d;
}
.product-nav a:active{
	background-color: #4b1313;
}
.product-nav a.current {
	background-color: #f2f2f2;
	color: black;
}

@media screen and (max-width: 520px) {
	.product-header{
		text-align: center;
	}
	.product-nav{
		border-top: 1px solid rgba(255, 255, 255, 0.3);
		text-align: center;
	}
	.product-nav, .product-nav a {
		display: block;
		width: 100%;
	}
	.product-nav a{
		height: 45px;
		line-height: 45px;
	}
}

