﻿.tab-container {
	width: 100%;
	display: inline-block;
	overflow: hidden;
}

.tab-title-container {
	display: inline-flex;
}

.tab-title {
	font-weight: bold;
	background: #EFEFEF;
	padding: 15px 25px;
	font-weight: bold;
	border: 1px solid #949494;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	margin-left: -1px;
	border-bottom: 3px solid lightgray;
	z-index: 1;
	cursor: pointer;
}

	.tab-title:first-child {
		margin-left: 0px;
	}

	.tab-title.tab-selected {
		background: white;
		/*font-weight: bold;*/
		color: black;
		/*border-bottom: 3px solid #1C84C6;*/
		border-bottom-color: transparent;
	}

	.tab-title > i {
		font-size: 130%;
		cursor: pointer;
	}

	.tab-title > span {
		cursor: pointer;
	}

.tab-panel {
	display: none;
	min-height: 400px;
	min-width: 850px;
	width: 100%;
	border: 1px solid #949494;
	margin-top: -1px;
	padding: 20px;
	z-index: 0;
	overflow: auto;
}

	.tab-panel.tab-selected {
		display: inline-block;
	}

