/* REQUIRED for core functionality */
.responsive-tabs__heading { display: none;}
/* .responsive-tabs__list__item { display: inline-block; cursor:pointer;} */

@media (max-width: 767px) {
	.responsive-tabs__list { display: none;}
	.responsive-tabs__heading { display: block; cursor: pointer; }
	.responsive-tabs__panel--closed-accordion-only { display: none;}
	.responsive-tabs__panel--active{ display: block;}
}
@media (min-width: 768px) {
	.responsive-tabs__panel--closed-accordion-only { display: block !important;}
}

/* END - Required for core functionality */
/* OPTIONAL - Basic Skin */
.responsive-tabs-wrapper { 
	clear: both;
	zoom: 1; 
	margin-top: 20px;
}
.responsive-tabs-wrapper:before,
.responsive-tabs-wrapper:after {
    content: "";
    display: table;
} 
.responsive-tabs-wrapper:after {
    clear: both;
}

.responsive-tabs__heading:focus,
.responsive-tabs__list__item:focus {outline: none;}

.responsive-tabs__heading--active:focus,
.responsive-tabs__list__item--active:focus { outline: none !important;}

.responsive-tabs__list {
	height: auto;
	overflow: hidden;
}
.responsive-tabs__list__item {
	float: left;
	background: #eee;
	padding: 0 30px;
	margin-right: 2px;
	height: 40px;
	line-height: 40px;
	cursor: pointer;
	font-size: 14px;
	transition: 0.6s;
}
.responsive-tabs__list__item:hover {background: #ff5500; color: #fff; }
.responsive-tabs__list__item--active, 
.responsive-tabs__list__item--active:hover {
	background-color: #ff5500;
	color: #fff;
}

.responsive-tabs__panel {
	height: auto;
	overflow: hidden;
	border: 1px solid #eee;
	padding: 20px;
	margin-bottom: 10px;
}

@media (max-width: 767px) {
	.responsive-tabs__heading { 
		background: #eee;
		position: relative;
		height: 40px;
		line-height: 40px;
		margin-top: 10px;
		margin-bottom: 0;
		padding-left: 15px;
		font-size: 14px;
		transition: 0.6s;
		padding-right: 50px;
	}

	.responsive-tabs__heading:after {
		content:"";
		display: block;
		position: absolute;
		right: 5px;
		top: 50%;
		transform: translateY(-50%);
		width: 30px; 
		height: 30px; 
		background: url(icon-accordion.gif) no-repeat top center;
		background-size: 30px;
		transition: 0.6s;
	}
	.responsive-tabs__heading--active{
		display: block;
	}
	/* .responsive-tabs__heading:hover,
	.responsive-tabs__heading--active:hover {
		background-color: #ff5500;
		color: #fff;
	} */
	.responsive-tabs__heading--active {
		background-color: #ff5500;
		color: #fff;
	}
	.responsive-tabs__heading--active:after {
		background-position: bottom center;
	}
}
/* END - Optional - Basic Skin */