ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	width: 100%;
}

ul.tabs li {
	margin: 0;
	cursor: pointer;
	padding: 8px 6px;
	line-height: 31px;
	color:#4595d2;
	border-bottom: 0px;
	overflow: hidden;
	position: relative;
	text-align: center;
	border-bottom: 1px solid #cccccc;
	font-size: 19px;
    letter-spacing: 9px;
}

ul.tabs li:first-child {
	border-top: 1px solid #cccccc;
}

ul.tabs li:hover {
	background-color: #4595d2;
	color:#fff !important; 
	transition:all 0.3s;
}

.tabs-active {
	background-color: #4595d2;
	color:#fff !important; 
	transition:all 0.3s;
}
       
    
.tab_container {
    border-top:0px;
    clear: both;
    float: left;
    width: 100%;
}

.tab_content {
    display: none;
}


.tab-accordion_heading { 
	display: none; 
}

 @media screen and (max-width: 767px) {
    .tabs {
		display: none;
    }
	
	.tab_container {
		border: 1px solid #ccc;
	}
	
    .tab-accordion_heading {
		background-color: #fff;
		border-top: 1px solid #ccc;
		margin: 0;
		padding: 10px 20px;
		display: block;
		cursor: pointer;
		font-weight:normal;
		color:#666;
		font-size:1em;
		text-align: center;
    }
	
    .tabs-active-xs {
      background-color: #4595d2;
      color: #fff;
    }
	
	.tab_content {
		padding: 15px;
	}
}