body{
	font-family:'FreightSans Pro', sans-serif;
	margin:0;
}

#header{
	background: #636C70;
	width: 100%;
	height: 75px;
}

#main{
	margin: 10px 0;
}

.container{
	max-width: 900px;
	margin:0 auto;
	padding: 10px 25px;
}

.flex-left{
	align-items: left;
	-ms-flex-align: left;
	-webkit-align-items: left;
	-webkit-box-align: left;
	justify-content: left;
	display: flex;
}

img.logo{
	max-width: 120px;
}

h1{
	font-family:'FreightSans Pro', sans-serif;
	font-size: 64px;
	line-height: 72px;
	font-weight: 300;
	color: #7D888D;
	display: block;
}

h2{
	font-family:'FreightSans Pro', sans-serif;
	font-size: 30px;
	line-height: 34px;
	font-weight: 300;
	color: #7D888D;
	display: block;
	padding:0;
}

h3{
	font-family:'FreightSans Pro', sans-serif;
	font-size: 18px;
	line-height: 28px;
	font-weight: 600;
	color: #7D888D;
	display: block;
	padding:25px 0 0;
	margin-top: 25px;
	border-top: 1px solid RGBA(90, 209, 216, 0.5);
}

h4{
	font-family:'FreightSans Pro', sans-serif;
	font-size: 22px;
	line-height: 30px;
	font-weight: 300;
	color: #7D888D;
	display: block;
	padding:0;
	margin:10px 0;
}

p, ul, ol, li{
	font-family:'FreightSans Pro', sans-serif;
	font-size: 16px;
	line-height:26px;
	font-weight: 300;
	color: #636C70;
}

li{
	padding: 5px 0;
}

p a, li a{
	color:#50BBC2;
	text-decoration: none;
	transition: color 0.2s ease;
}

p a:hover, li a:hover{
	color:#5AD1D8;
	transition: color 0.2s ease;
}

hr{
	border:1px solid RGBA(125, 136, 141, 0.2);
}

@media only screen and (max-device-width: 400px){

}

/* Livongo */

.livongo{
	margin:0 auto;
	text-align: center;
	padding: 10px;
	max-width: 680px;
}

img.livongo{
	margin-top: 20px;
}

.button{
	color: #fff;
	font-size: 18px;
	border-radius: 2px;
	padding: 10px;
	margin: 10px;
	text-decoration: none;
	display: inline-block;
	cursor: pointer;
}

input[type="submit"].button:disabled{
	background-color: RGBA(210, 210, 212, 1.00);
	border:1px solid RGBA(210, 210, 212, 1.00);
	cursor: default;
}

.button.button-blue{
	transition: background-color 0.5s ease;
	background-color: RGBA(18, 101, 248, 0.8);
	border: 1px solid RGBA(18, 101, 248, 1.00);
}

.button.button-blue:hover{
	transition: background-color 0.5s ease;
	background-color: RGBA(18, 101, 248, 1.00);
}

.button.button-green{
	transition: background-color 0.5s ease;
	background-color: RGBA(64, 212, 105, 0.85);
	border: 1px solid RGBA(64, 212, 105, 1.00);
	font-size: 22px;
	padding:12px 10px 14px;
}

.button.button-green:hover{
	transition: background-color 0.5s ease;
	background-color: RGBA(64, 212, 105, 1.00);
}

/* Check */

.label {
	display: block;
	position: relative;
	padding-left: 30px;
	padding-top: 3px;
	cursor: pointer;
	font-size: 18px;
	color: RGBA(104, 107, 113, 1.00);
	user-select: none;
}

.label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.check {
	position: absolute;
	top: 0;
	left: 0;
	height: 22px;
	width: 22px;
	background-color: RGBA(106, 108, 114, 0.3);
}

.label:hover input ~ .check {
	transition: background-color 0.5s ease;
	background-color: RGBA(106, 108, 114, 0.4);
}

.label input:checked ~ .check {
	transition: background-color 0.5s ease;	
	background-color: RGBA(64, 212, 105, 1.00);
}

.check:after {
	content: "";
	position: absolute;
	display: none;
}

.label input:checked ~ .check:after {
	display: block;
}

.label .check:after {
	left: 8px;
	top: 4px;
	width: 4px;
	height: 9px;
	border: solid white;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}