.main-sub {
	.page-title {
		text-align: center;
		font-weight: 400;
		font-size: 26px;
		margin: 0;
		padding: 20px 10px;
	}
}

.main-splash {
	.logo {
		margin: 15vh 0 15vh;
	} 
	.loading {
		color: #fff;
		text-align: center;
		position:relative;
		margin: 80px auto;
		width:220px; height:220px;
		canvas {
			display: block;
			position:absolute;
			top:0;
			left:0;
		}
		span {
			color:#fff;
			display:block;
			line-height:220px;
			text-align:center;
			width:220px;
			font-family:sans-serif;
			font-size:40px;
			font-weight:100;
			margin-left:5px;
		}
		input {
			width: 200px;
		}
	}
}

.main-login {
	position: relative;
	.logo {
		margin: 15vh 0 15vh;
	}
	.btn-login {
		margin-top: 10vh;
	}
	.create-account {
		text-align: center;
		color: #fff;
		margin-top: 20px;
		a {
			color: $lightBlue;
			&:focus,
			&:hover {
				color: $lightBlue;
			}
		}
	}
}

.main-settings {
	.btn-save {
		margin-top: 20px;
	}
	.info {
		font-size: 18px;
		margin-bottom: 40px;
		.info-item {
			// clear: both;
			.info-item-name {
				float: left;
			}
			.info-item-answer {
				float: right;
			}
		}
		.account-type {
			.free-account & {
				color: red;
			}
		}
	}
	.collapse-label {
		position: relative;
		cursor: pointer;
		margin: 0px;
		padding: 10px 0 10px;
		border-top: 1px solid #5d6069;
		font-size: 26px;
		font-weight: 400;
		text-transform: uppercase;
		color: #979797;
		&[aria-expanded="true"] {
			&:after {
				-webkit-transform: rotate(90deg);
				-moz-transform: rotate(90deg);
				-ms-transform: rotate(90deg);
				-o-transform: rotate(90deg);
				filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
			}
		}
		&:after {
			transition: 250ms;
			position: absolute;
			right: 0;
			top: 10px;
			display: inline-block;
			font: normal normal normal 14px/1 FontAwesome;
			font-size: inherit;
			text-rendering: auto;
			-webkit-font-smoothing: antialiased;
			-moz-osx-font-smoothing: grayscale;
			content: "\f0da";
		}
		// ~ .collapse-label {
		// }
		.small {
			color: #fff;
		}
	}
}

.main-home,
.main-incident {
	.report-field {
		display: table;
		border-bottom: 1px solid $gray;
		width: 100%;
	}
	.report-item-icon {
		display: table-cell;
	}
	.report-item-icon {
		display: table-cell;
		width: 40px;
		color: $lightBlue;
		font-size: 30px;
		text-align: center;
		vertical-align: top;
		padding: 10px 0;
	}
	.report-item-container {
		display: table-cell;	
		vertical-align: top;
		padding: 16px 15px;
		.report-item-title {
			font-size: 13px;
			line-height: 1;
			color: $lightGray;
		}
	}
}