﻿.sectionContainer {
	background: white;
	margin: 30px 20px;
	border-radius: 8px;
	min-width: 200px;
}

.sectionHeader {
	width: 100%;
	display: flex;
	align-items: center;
	background: #04273C;
	border-radius: 8px 8px 0 0;
	height: 40px;
}
	.sectionHeader h3 {
		color: snow;
		font-weight: normal;
		margin-left: 20px;
	}

	.sectionHeader img {
		width: 20px;
		height: 20px;
		margin: 0 15px 0 auto;
	}


.sectionContainer.alternate {
	border: 1px solid #b0b0b0;
	border-radius: 4px;
}

.sectionHeader.alternate {
	border-radius: 3px 3px 0 0;
	border-bottom: 1px solid #b0b0b0;
	cursor: default;
}

.sectionBody {
	display: block;
	padding: 30px 20px;
	height: 100%;
	position: relative;
}

.sectionBodyCollapsed {
	display: none;
}

.sectionContainer .sectionLeft {
	float: left;
	width: 48%;
}

.sectionContainer .sectionSeperator {
	float: left;
	width: 2px;
	height: calc(90% - 10px);
	margin-top: 10px;
	background: #C8C8C8;
	margin-left: 0.5%;
}

.sectionContainer .sectionRight {
	width: 48%;
	margin-left: 50%;
}

.sectionQuarter {
	width: 50%;
	float: left;
}

.sectionHeading {
	clear: both;
	font-weight: bold;
	font-size: 16px;
	margin-top: 20px;
	margin-bottom: 5px;
}

@media screen and (max-width: 600px) {
	.sectionBody {
		padding: 15px 10px;
		overflow-x: auto;
	}
}