/* top-tabs */

.tabrow {
	position: relative;
	height: auto;
	padding: 5px 0 0 0;
	text-align: center;
	z-index: 1;
	/* additional */
	width: 100%;
	margin: 0;
	list-style: none;
	font-size: 0;
	line-height: 0;
	background-color: #ffffff /*#E6E6E6*/;
	overflow: hidden;
}
.tabrow * {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.tabrow::before {
	border-bottom-color: #C5C5C5;
}
.tabrow li {
	position: relative;
	display: inline-block;
	width: 270px;
	margin: 1px -12px;
	padding: 0 16px;
	border: none;
	background: none;
	text-decoration: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	/* additional */
	font-size: 15px;
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-weight:normal;
}
.tabrow li::before {
	position: absolute;
	top: -9px;
	right: 0;
	bottom: -1px;
	left: 0;
	border: none /*1px solid #005b4a*/;
	border-radius: 10px 10px 0 0;
	border-bottom: none;
	/*background: #DDD;*/
	background: #4BBB87;
	z-index: -1;
	-moz-box-shadow: 2px 2px hsla(0, 0%, 100%, 0.5) inset;
	-webkit-box-shadow: 2px 2px hsla(0, 0%, 100%, 0.5) inset;
	box-shadow: 2px 2px hsla(0, 0%, 100%, 0.5) inset;
	transform: perspective(5px) rotateX(2deg);
	transform-origin: bottom;
}
.ie9 .tabrow li::before {
	top: 0;
}
.tabrow li.selected {
	background: none;
	z-index: 2;
}
.tabrow li.selected::before {
	border-top-width: 0; /* 1px */
	background: #292727;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none; /* 2px 2px hsla(0, 0%, 100%, 0.5) inset */
}
.tabrow li::before,
.tabrow li::after {
	content: "";
	height: auto;
	width: auto;
}
.tabrow .tab-2 {
	z-index: -2;
}
.tabrow .tab-3 {
	z-index: -3;
}
.tabrow .tab-4 {
	z-index: -4;
}
.tabrow .tab-5 {
	z-index: -5;
}
.tabrow a {
	display: block;
	width: 100%;
	height: 26px;
	line-height: 27px;
	white-space: nowrap;
	/* additional */
	color: #fff;
	text-decoration: none;
}

.tabrow li.selected a {
	color: #fff;
}

.tabrow li a {
	/*color: #292727;*/
	color:#ffffff;
}

@media (max-width: 767px) {
	.tabrow::before {
		border-bottom: none;
	}
}
/* @media (max-width: 599px) { */
@media (max-width: 767px) {
	/* begin mobile tabs */
	.tabrow {
		padding-top: 0;
	}
	.tabrow li {
		width: 100%;
		margin-top: 0;
		margin-bottom: 0;
	}
	.tabrow li::before {
		top: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		border-radius: 0;
		transform: none;
	}
	.tabrow li.selected::before {
		border-top-width: 1px;
	}
	/* end mobile tabs */
	.tabrow li::before,
	.tabrow li.selected::before {
		border-bottom: 1px solid #C5C5C5;
	}
}