html, body {
	font-family: sans-serif;
	color: #333;
	background: #34495e;
	margin: 0;
	padding: 0;
}

.content {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}
.box-shadow {
	box-shadow: 0 0 8px rgba(0,0,0,0.4);
	background: #F9F9F9;
	padding: 20px;
	margin-bottom: 30px;
}
.box-shadow h2 {
	padding: 15px;
	margin: 0 0 25px 0;
	text-align: center;
	box-shadow: 0 0 5px rgba(0,0,0,0.4) inset;
	background: #34495e;
	color: #fff;
	text-transform: uppercase;
}
.box-shadow h2 .fa {
	margin-right: 10px;
}
h2 {
	font-variant: small-caps;
	font-size: 20px;
	color: #555;
}
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.hidden {
	display: none;
}
button {
	border: solid 1px #27ae60;
	background: #27ae60;
	padding: 10px 14px;
	width: 100%;
	color: #fff;
	transition: all 0.2s ease-in-out;
	font-size: 16px;
	border-radius: 2px;
}
button:hover {
	cursor: pointer;
	background: #fff;
	color: #27ae60;
}
a,
a:focus,
a:active,
a:visited {
	text-decoration: none;
	color: inherit;
}

/* INSTALLATION HEADER */
.install-header {
	text-align: center;
	margin: 30px 0 60px 0;
}
.install-header h1 {
	margin: 0;
	text-transform: uppercase;
	color: #16a085;
}

/* PROCESS TIMELINE */
.install-process-timeline ul {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin: 0 100px 20px 100px;
	position: relative;
}
.install-process-timeline ul::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: calc(100% - 40px);
	height: 2px;
	margin: 0 20px;
	background: #7f8c8d;
	z-index: 0;
}
.install-process-timeline ul li.process-step {
	position: relative;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: solid 2px #7f8c8d;
	display: flex;
	color: #7f8c8d;
	background: #fff;
	z-index: 1;
}
.install-process-timeline ul li.process-step .fa {
	margin: auto;
}
.install-process-timeline ul li.process-step .step-title {
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translate(-50%, 100%);
	text-transform: uppercase;
	font-size: 14px;
	font-weight: bold;
}
.install-process-timeline ul li.process-line {
	flex: 1;
	height: 2px;
	background: #7f8c8d;
}

.install-process-timeline ul li.process-step.completed {
	color: #27ae60;
	border-color: #27ae60;
}
.install-process-timeline ul li.process-line.completed {
	background: #27ae60;
}

/* FORM */
.form-input {
	position: relative;
	font-size: 14px;
	width: 100%;
	margin: 0 0 8px 0;
}
.form-input label {
	display: block;
	width: 100%;
	margin-bottom: 3px;
	color: #555;
	font-weight: bold;
}
.form-input input,
.form-input select {
	display: block;
	width: 100%;
	border: solid 3px #D6D6D6;
	padding: 10px 14px;
	border-radius: 2px;
	background: #fff;
}
.form-input select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.form-input .fa-sort {
	position: absolute;
	right: 15px;
	bottom: 15px;
	color: #555;
}
.form-input input:focus {
	border-color: #1ABC9C;
}

/* PROCESSING WRAPPER */
.install-processing-wrapper {
	text-align: center;
}
.processing-steps {
	display: inline-block;
}
.processing-steps li {
	margin-bottom: 10px;
	font-size: 18px;
}
.processing-steps li.validate {
	color: #27ae60;
}
.processing-steps li:not(.validate) .fa-check {
	display: none;
}
.processing-steps li.validate .fa-check {
	display: inline-block;
}
.processing-steps li.validate .fa-spinner {
	display: none;
}
.processing-steps li.failed {
	color: #c0392b;
}
.processing-steps li:not(.failed) .fa-times {
	display: none;
}
.processing-steps li.failed .fa-times {
	display: inline-block;
}
.processing-steps li.failed .fa-spinner {
	display: none;
}