.tab-labels{
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.tab-labels a{
	background: none;
	color: #222;
	display: inline-block;
	padding: 10px 15px;
	cursor: pointer;
}

.tab-content{
	display: none;
	padding: 15px;
}

.tab-content.active{
	display: inherit;
}

.tabs:not(.cloned){
	display: none;
}


@media screen and (max-width:600px){
	
	.tabs:not(.cloned){
		display: block;
		padding: 0;
	}

	.tabs.cloned{
		display: none;
	}

	.tab-label{
		border-right: 1px solid #f88e00 !important;
		border-top-right-radius: 3px;
		width: 100%;
	}

	.tab-label:after{
		content: '\f067';
		font-family: 'fontAwesome';
		float: right;
	}

	.tab-label.active:after{
		content: '\f068';
		font-family: 'fontAwesome';
		float: right;
	}

	.tab-label:not(.active){
		margin: 0 0 10px !important;
	}

	.tab-content{
		margin-bottom: 10px;
	}
}