ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 32px;
	/*border-bottom: 1px solid #333;*/
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
	width: 100%;
}

ul.tabs li {
	float: left;
	margin: 0;
	cursor: pointer;
	padding: 0px 21px;
	height: 31px;
	line-height: 31px;
/*	border-top: 1px solid #333;
	border-left: 1px solid #333;
	border-bottom: 1px solid #333;*/
	background-color: transparent;
	color: #ccc;
	overflow: hidden;
	position: relative;
}

/*.tab_last { border-right: 1px solid #333; }*/

ul.tabs li:hover {
	transition: 0.1s;
	background-color: #252525;
	
}

ul.tabs li.active {
    background-color: black;
    color: white;
    border: 2px solid #fff;
    display: block;
}
@media (max-width: 550px){
	ul.tabs li.active {
    background-color: black;
    color: white;
    border: 2px solid #fff;
    display: inline-table;}
}
.tab_container {
	/*border: 1px solid #333;*/
	border-top: none;
	clear: both;
	float: left;
	width: 100%;
	background: transparent;
	overflow: auto;
}

.tab_content {
	padding: 20px;
	display: none;
}

.tab_drawer_heading { display: none; }

@media screen and (max-width:375px) {
	.tabls{	
		font-size: 14px;
	}
	ul.tabs li{
		padding: 0px 15px;
	}
}
@media screen and (max-width:320px) {
	.tabls{	
		font-size: 6px;
	}
	ul.tabs li{
		padding: 0px 8px;
		top: 130%;
	}
}
@media screen and (max-width: 480px) {
	.tabs {
		/*display: none;*/
		position: absolute;left: 0

	}
	.tab_drawer_heading {
		background-color: #ccc;
		color: #fff;
		border-top: 1px solid #333;
		margin: 0;
		padding: 5px 20px;
		display: block;
		cursor: pointer;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}
	.d_active {
		background-color: #666;
		color: #fff;
	}
}