

/*********
** Tabs **
**********/

.stock-post {
	padding: 20px 10px;
	border-bottom: solid 2px #495057;
}
.stock-title {
	margin: 0;
	padding: 0;
}
.stock-title a {
    color: #2273ba !important;
    font-size: 18px;
    text-transform: capitalize !important;
}

.stock-date {
	font-size: 14px;
	font-weight: bold;
}

ul.tabs {
	margin: 0!important;
	padding: 0!important;
	list-style: none;
	height: 50px;
	border-bottom: 2px solid #2273ba;
	width: 100%;
}

ul.tabs li {
	float: left;
	margin: 0;
	cursor: pointer;
	padding: 5px 21px;
	line-height: 36px;

	color: #666;
	border: 2px solid transparent;
    border-top-left-radius: .25rem;
	border-top-right-radius: .25rem;
	
	overflow: hidden;
	position: relative;
}

.tab_last { border-right: 1px solid #333; }

ul.tabs li:hover {
	border: 2px solid transparent;
	color: #333;
}

ul.tabs li.active {
    color: #495057;
    background-color: #fff;
	border: solid 2px;
	border-bottom: solid 1px;
	border-color: #2273ba;
	display: block;
}

.tab_container {
}

.tab_content {
	display: none;
}

.tab_drawer_heading { display: none; }

@media screen and (max-width: 480px) {
	ul.tabs {
		height: auto;
	}
	ul.tabs li {
		float: none;
	}
	.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;
	}
}