/*General Styles*/
body {
	display: flex;
	flex-direction: column;
	margin: 0;
}

html, body {
	height: 100%;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
	font-weight: normal;
}
p, ul, li, a {
	margin: 0;
	padding: 0;
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.2em;
	text-decoration: none;
}

.main {
	display: flex;
}

.email-link {
	font-style: italic;
	color: #002E5B;
}

/*Content centering*/
.centerBox {
	width: 55vw;
	margin: 0 auto;
}

/*Text-Styles*/
.bold {
	font-weight: 600;
}
.center {
	text-align: center;
}

/*Flex-Styles*/
.flex, .flex--1 { flex: 1; }
	   .flex--2 { flex: 2; }
	   .flex--3 { flex: 3; }
	   .flex--4 { flex: 4; }
	   .flex--5 { flex: 5; }
	   .flex--6 { flex: 6; }
	   .flex--7 { flex: 7; }
	   .flex--8 { flex: 8; }
	   .flex--9 { flex: 9; }
	  .flex--10 { flex: 10; }
	  .flex--11 { flex: 11; }
	  .flex--12 { flex: 12; }

.flexdir--row {
	display: flex;
	flex-direction: row;
}
.flexdir--col {
	display: flex;
	flex-direction: column;
}

/*BackgroundColors w/ TextColor*/
.bg, .bg--white {
	background: #FFF;
	color: #161b1d;
}
.bg--black {
	background: #000;
	color: #FFF;
}
.bg--lightblue {
	background: #80ceff;
	color: #000;
}
.bg--blue {
	background: #0071B9;
	color: #FFF;
}
.bg--darkblue {
	background: #002E5B;
	color: #FFF;
}
.bg--green {
	background: #39D50D;
	color: #FFF;
}
.bg--lightergrey {
	background: #e6e6e6;
	color: #FFF;
}
.bg--lightgrey {
	background: #D6D6D6;
	color: #000;
}
.bg--darkgrey {
	background: #3A454B;
	color: #FFF;
}
.bg--darkgreyAlt {
	background: #999999;
	color: #FFF;
}
.bg--red {
	background: #A91B1B;
	color: #FFF;
}

.bg--yellow {
	background: #F9C15F;
	color: #FFF;
}

/*Borders*/
.border {
	border-style: solid;
	border-width: 1px;
}
	
	/*BorderColor*/
	.border--lightgrey {
		border-color: #D6D6D6;
	}
	.border--grey {
		border-color: #bfbfbf;
	}
	.border--darkgrey {
		border-color: #3A454B;
	}
	
	/*Border-Round*/
	.border--round {
		border-radius: 3px;
	}
	
/*Header*/
.header {
	max-height: 4.5em;
	height: 100%;
	margin: 0 0 3em;
}

/*Logo*/
.logo {
	padding: 1.11em 0;
}

.logo--img {
	height: 36px;
}

/*Headline*/
.headline {
	padding: 1em 1.2em;
	text-align: right;
}
.headline > h1 {
	font-size: 1.8em;
}

/*Content*/
.content {}

.centerBox {
	max-width: 80%;
	margin: 0em auto;
}

/*OverallStatus*/
.overallStatus {
	max-height: 3.4em;
	font-size: 1.2em;
	border-radius: 3px;
}

.overallStatus__container {
	margin: 0 0 1.6em 0;
}

.overallStatus__label {
	padding: 0.8em;
	justify-content: center;
	border-radius: 3px 0 0 3px;
}

.overallStatus__message {
	padding: 0.8em;
	width: 100%;
	justify-content: center;
	border-radius: 0 3px 3px 0;
}

/*DetailStatus*/
.detailStatus {
	margin: 0 0 1.6em 0;
	font-size: 1.2em;
	border-radius: 3px;
}

.detailStatus__container {
	display: none
}

.detailStatus__itemContainer {
	border-radius: 3px;
}

.detailStatus__head {
	border-top: 1px solid #D6D6D6;
	padding: 1.6em 1.2em;
	font-size: 0.9em;
	cursor: pointer;
}

.detailStatus__item, .detailStatus__item--overall {
	border-top: 1px solid #D6D6D6;
	padding: 1.6em 1.2em;
	font-size: 0.9em;
}

.detailStatus__item--overall {
	
}

.detailStatus__item__text {
	font-weight: bold;
	color: #3A454B;
}

.detailStatus__item__label {
	color: #D6D6D6;
	text-align: right;
}

.detailStatus__item__label--1 {
	color: #39D50D;
}

.detailStatus__item__label--2 {
	color: #F9C15F;
}

.detailStatus__item__label--3 {
	color: #A91B1B;
}

.detailStatus__item__label--4 {
	color: #D6D6D6;
}

.detailStatus__item---caret {
	padding-right: 0.8em;
}

.detailStatus__item__description {
	padding: 0 1.2em 1.6em;
	font-size: 0.7em;
}

.detailStatus__item__description__text {
	color: #3A454B;
}

.detailStatus__item__description__caret {
	color: #3A454B;
	font-size: 1.25em;
	margin: auto 0.3em auto 0;
}

/*SupportButton*/
.supportBox {
	margin: 0 0 1.6em 0;
	font-size: 1.2em;
	border-radius: 3px;
}

.supportBox__container {
	border-radius: 3px;
}

.supportBox__text {
	padding: 1.6em 1.2em;
}

.supportBox__text > h3 {
	font-size: 1em;
}

.supportBox__text > h5 {
	font-size: 0.8em;
}

.supportBox__button {
	padding: 1.6em 1.2em;
	justify-content: center;
}

.supportBox__button__link {
	border: 10px solid #0071B9;
	border-radius: 20px;
	text-align: center;
	font-size: 0.8em;
	font-weight: bold;
}

/*Footer*/
.footer {
	padding: 0 0 1.8em;
}

.disclaimer {
	font-size: 0.8em;
	font-weight: bold;
	color: #A6A6A6;
	text-align: center;
}

/*Media-Queries*/
@media (max-device-width: 600px) { 
	body {
		font-size: 1.8em;
	}
	
	.header {
		max-height: 8.5em;
		margin: 0 0 1.8em;
	}
	
	.centerBox {
		flex-direction: column;
		text-align: center;
		max-width: 90%;
		width: 100%;
	}
	
	.logo {
		padding: 0.8em;
	}
	
	.logo--img {
		height: 3em;
	}
	
	.headline {
		padding: 0.5em;
		text-align: center;
	}
	
	.overallStatus {
		margin: 0 0 1em 0;
		font-size: 1.7em;
	}
	
	.detailStatus {
		margin: 0 0 1em 0;
		font-size: 1.7em;
	}
	
	.detailStatus__item {
		flex-direction: column;
		text-align: center;
		padding: 0.6em;
	}
	
	.detailStatus__item__label {
		text-align: center;
		font-size: 0.8em;
		padding-top: 0.4em;
	}
	
	.detailStatus__item__description {
		padding: 0 1.2em 0.8em;
	}
	
	.supportBox__container {
		flex-direction: column;
		font-size: 1.2em;
	}
	
	.supportBox__text {
		padding: 0.8em 1.2em;
	}
	
	.supportBox__text > h5 {
		padding-top: 0.4em;
	}
	
	.supportBox__button {
		padding: 0 1.2em 0.8em;
		font-size: 1.2em;
	}
	
	.supportBox__button__link {
		border-top-width: 20px; 
		border-bottom-width: 20px;
		border-radius: 50px;
	}
	
	.disclaimer {
		font-size: 1em;
	}
}


