


ul.tabs {
	margin: 0 0 15px 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 32px;
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
}

ul.tabs li {
	float: left;
	margin: 5px;
	cursor: pointer;
	padding: 10px 21px;
	background-color: #9bbb59;
	color: #fff;
	overflow: hidden;
	position: relative;
	text-transform: capitalize;
	    width: 50%;
    text-align: center;
}



ul.tabs li:hover {
	background-color: #294808;
	color: #fff;
}

ul.tabs li.active {
	background-color: #294808;
	color: #fff;
	display: block;
}

.tab_container {
	clear: both;
	float: left;
	width: 100%;
	background: #fff;
}

.tab_content {
	padding: 20px;
	display: none;
	margin: 0px 0px;
}

.tab_drawer_heading { display: none; }

@media screen and (max-width: 700px) {
	.tabs {
		display: none;
	}
	.tab_drawer_heading {
		background-color: #294808 !important;
		color: #fff;
		font-size: 25px !important;
		margin: 0;
		padding: 5px 20px;
		margin: 20px 0;
		display: none;
		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;
		text-transform: capitalize !important;
	}
	.d_active {
		background-color:#294808 !important;
		color: #fff;
	}
}



