/*Tabbed table for the static page Available Products*/

.tabbed-table {
	display: flex;
	flex-direction: column;
	margin-bottom: 80px;
}

/* TABS ======================= */

.tabbed-table ul.tabs {
	margin: 0;
	padding: 0;
	list-style: none;
	height: auto;
	width: 100%;
	display: flex;
}

.tabbed-table ul.tabs li {
	margin: 0;
	cursor: pointer;
	padding: 16px 12px;
	font-size: 15px;
	line-height: 22px;
	height: auto;
	background-color: #2a5673;
	color: #fff;
	overflow: hidden;
	position: relative;
	flex: 1;
	font-weight: bold;
	text-align: center;
	border-right: 1px solid #fff;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.tabbed-table .tab_last { border-right: none; }

.tabbed-table ul.tabs li:hover {
	background-color: #3d78a1;
	color: #fff;
	text-decoration: underline;
}

.tabbed-table ul.tabs li.active {
	background-color: #f7f7f7;
	color: #2a5673;
}

.tabbed-table .tab_container {
	border-top: none;
	clear: both;
	float: left;
	width: 100%;
	background: #f7f7f7;
	overflow: auto;
	padding: 0 32px;
}

.tabbed-table .tab_content {
	display: none;
}

.tabbed-table .tab_drawer_heading { display: none; }

@media screen and (max-width: 1439px) {
	
	.tabbed-table ul.tabs li {
		font-size: 12px;
		line-height: 16px;
	}
	
}

@media screen and (max-width: 1187px) {
	.tabbed-table ul.tabs {
		display: none;
	}
	.tabbed-table .tab_container {
		padding: 0;
	}
	.tabbed-table .tab_content {
		padding: 0 32px;
	}
	.tabbed-table .tab_drawer_heading {
		font-size: 18px;
		background-color: #2a5673;
		color: #fff;
		margin: 0;
		padding: 15px 32px;
		display: block;
		cursor: pointer;
		border-bottom: 1px solid #fff;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}
	.tabbed-table .d_active {
		background-color: #e1eef9;
		color: #2a5673;
	}
}



/* TABLE ======================= */

.tabbed-table .mobile-table {
	display: none;
}

.tabbed-table table {
	width: 100%;
}

.tabbed-table tr {
	display: table;
	table-layout: fixed;
	vertical-align: middle;
	width: 100%;
	border-bottom: 1px solid #D3D3D3;
}

.tabbed-table tr th,
.tabbed-table tr td {
	padding: 15px 5px;
}

.tabbed-table thead tr th {
	padding: 20px 5px;
}

.tabbed-table tbody tr:last-of-type {
	border-bottom: none;
}

.tabbed-table tbody tr:last-of-type th,
.tabbed-table tbody tr:last-of-type td {
	padding-bottom: 30px;
}

.tabbed-table thead {
	color: #2a5673;
}

.tabbed-table tbody {
	font-size: 13px;
}

.tabbed-table thead th:first-of-type,
.tabbed-table tbody th {
	text-align: left;
}

.tabbed-table td {
	text-align: center;
}

@media screen and (max-width: 1187px) {
	
	.tabbed-table .desktop-table {
		display: none;
	}
	
	.tabbed-table .mobile-table {
		display: block;
	}
	
	.tabbed-table .mobile-table table {
		margin: 20px 0;
	}
	
	.tabbed-table .mobile-table th {
		text-align: left;
	}
	
	.tabbed-table .mobile-table td {
		text-align: right;
	}
	
}


/* TABLE DISCLOSURES ======================= */

.tabbed-table .tabbed-table-disclosure {
	border-top: 1px solid #D3D3D3;
	margin-top: 10px;
	margin-bottom: 40px;
	padding-top: 15px;
}

.tabbed-table .tabbed-table-disclosure p {
	font-size: 10px;
	line-height: 14px;
}

.tabbed-table .tabbed-table-disclosure p > a {
	color: #212121;
}

.tabbed-table .tabbed-table-disclosure p > a:hover {
	text-decoration: none;
}






