.PolicyLabel {
	padding: 10px;
	border-bottom: 1px solid #e8eaed;
}

.PolicyTypeSelection {
	display: grid;
	grid-template-columns: auto auto auto auto auto;
	width: 100%;
	margin: 5px 0 20px;
}

.PolicyTypeSelection a {
	display: flex;
	align-items: center;
	flex-flow: row nowrap;
	justify-content: center;
	color: #000;
	text-decoration: none;
	padding-bottom: 5px;
	border-bottom: 1px solid #e8eaed;
	transition: border-bottom .2s;
}

.PolicyCheckbox {
	display: none;
}

.selected.PolicyCheckbox {
	background-color: #666;
}

.PolicyText {
	padding: 8px 10px;
	margin: 0 2px;
	border-radius: 6px;
	transition: background-color .2s;
	min-width: 75px;
	text-align: center;
}

.selected .PolicyText{
	background-color: #F6F6F6;
	font-weight: 600;
}

.PolicyText:hover {
	background-color: #F6F6F6;
}

a.selected, .PolicyTypeSelection a:hover {
	border-bottom: 2px solid #548c3b;
}

.ResultHeader {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-content: center;
	margin-bottom: 30px;
}

.Results {
	margin-bottom: 60px;
}

@media only screen and (max-width: 450px) {
	.ResultHeader {
		flex-flow: column;
		align-items: center;
		margin-bottom: 10px;
	}

	.ResultHeader h2 {
		margin: 20px 0;
	}
}

/*** Mobile ***/
@media only screen and (max-width: 700px) {
	.table {
		font-size: 14px;
	}

	.content {
		padding: 2rem 0 0 !important;
	}

	.PolicyTypeTitle {
		padding: 0 30px;
		font-weight: 600;
	}
	
	.PolicyTypeSelection {
		grid-template-columns: 100%;
		margin: 0;
		padding-bottom: 15px;
	}

	.PolicyText {
		padding: 5px 10px;
	}

	.PolicyTypeSelection a {
		padding-left: 8px;
		padding-bottom: 0;
	}

	.PolicyTypeSelection {
		display: flex;
		flex-flow: row nowrap;
		overflow-x: auto;
		padding: 15px 25px 10px;
		margin-bottom: 35px;
	}

	.PolicyText {
		white-space: nowrap;
	}
}