.tabs {
	overflow: hidden;
	border-bottom: 1px solid #e7e5e6;
	margin-bottom: 15px;
}
.tabs li {
	float: left;
}
.tabs li a {
	color: #777777;
	font-size: 15px;
	display: block;
	font-weight: 600;
	padding: 15px 20px;
	position: relative;
}
.tabs li:first-child a {
	border-left: none;
}
.tabs li a:hover, .tabs li a:focus {
	color: #f95e2e;
}
.tabs .active a {
	color: #f95e2e;
	position: relative;
}
.tabs .active a:after {
	height: 2px;
	background: #f95e2e;
	width: 100%;
	position: absolute;
	bottom: 0;
	z-index: 1;
	display: block;
	content: "";
	margin: 0 auto;
	left: 0;
}
/* == accordion */
.accordion_tabs {
	display: none;
	border-top: 1px solid #e7e5e6;
	padding: 10px;
	font-weight: 400;
}
.tab_content_wrapper > .accordion_tabs:first-child {
	border-top: none;
}
a.accordion_tabs:link, a.accordion_tabs:visited {
}
a.accordion_tabs:hover, a.accordion_tabs:focus {
}
a.accordion_tabs.active {
	color: #fff;
	background: #f95e2e;
	border: none;
}
/*  == tab content  */
.tab_content_wrapper {
	overflow: hidden;
	position: relative;
	transition: all .3s ease-in-out .3s;
}
.tab_content_wrapper:before, .tab_content_wrapper:after {
	content: " ";
	display: table;
}
.tab_content_wrapper:after {
	clear: both;
}
.tab_content {
	background: #fff;
	transition: all .6s ease-in-out;
}
.tab_content .heading {
	margin-bottom: 15px;
}
.toggle_display {
	display: block;
}
.toggle_position {
	width: 100%;
	position: absolute;
}
.toggle_border {
}
.invert_border {
}

/* Media Queries
***********************/
@media screen and (max-width: 600px) {
.accordion_tabs {
	display: block;
}
.tab_content_wrapper {
	border: solid 1px #e7e5e6;
	border-radius: 2px;
	height: auto !important;
}
.tab_content {
	transition: none;
	padding: 10px;
}
.toggle_display {
	display: none;
}
.toggle_position {
	position: relative;
}
.toggle_border {
	border-width: 1px;
}
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
.tabs li a {
	font-size: 14px;
	font-weight: 400;
	padding: 15px 13px;
}
}
