@font-face {
	font-family: 'Lato';
	src: url( ./fonts/Lato-Regular.ttf ) format( 'truetype' ), url( ./fonts/Lato-Bold.ttf ) format( 'truetype' );
}

body {
	margin: 0;
	height: 100vh;
	background-image: url( ./images/BS_Icon_BG.svg );
	background-size: 30%;
	background-repeat: no-repeat;
	background-position: center;
	font-family: 'Lato', sans-serif;
}

.main {
	width: 100%;
	text-align: center;
	padding-top: 10%;
}

.instance-name {
	font-weight: bold;
	display: block;
	font-size: 3em;
}

.maintenance-message {
	display: block;
	font-size: 2em;
	margin-top: 40px;
	color: #2e6096;
	font-weight: bold;
}

.status-image {
	background-size: 200px;
	background-repeat: no-repeat;
	background-position: center;
	height: 200px;
	margin-top: 5%;
}

#maintenance-image {
	background-image: url( ./images/Maintenance.svg );
}

#suspended-image {
	/* TODO: Add image */
	/* background-image: url("./images/Maintenance.svg"); */
}

.creation-desc {
	font-size: 1.2em;
	margin-top: 50px;
	display: block;
}

#process-steps {
	text-align: center;
	margin-top: 20px;

	ul { /* stylelint-disable-line plugin/no-unsupported-browser-features */
		display: inline-block;
		padding: 0;
		width: auto;
		text-align: left;
		list-style-type: none;

		li { /* stylelint-disable-line plugin/no-unsupported-browser-features */
			font-size: 1.3em;
			padding: 10px 0;

			.step-label { /* stylelint-disable-line plugin/no-unsupported-browser-features */
				vertical-align: middle;
				padding-left: 30px;
				position: relative;
			}

			.step-label.completed::before { /* stylelint-disable-line plugin/no-unsupported-browser-features */
				content: '';
				background-repeat: no-repeat;
				background-position: center;
				position: absolute;
				margin-left: -30px;
				background-image: url( ./images/SuccessCheck.svg );
				background-size: 20px;
				width: 20px;
				height: 30px;
			}

			.step-label.pending::before { /* stylelint-disable-line plugin/no-unsupported-browser-features */
				content: '';
				box-sizing: border-box;
				position: absolute;
				top: 50%;
				width: 20px;
				height: 20px;
				margin-top: -10px;
				margin-left: -30px;
				border-radius: 50%;
				border: 4px solid #747474;
				border-top-color: white;
				animation: spinner 0.6s linear infinite;
			}
		}
	}
}

@keyframes spinner {
	to {
		transform: rotate( 360deg );
	}
}
