*, *::before, *::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	position: relative;
	background-color: #fff;
	color: #333;
	font-family: 'Open Sans', sans-serif;
}

a { color: #333; }

#wrapper {
	position: relative;
	height: 100%;
	min-height: 100%;
}

.content {
	text-align: center;
}

.content h1 {
	font-size: 26px;
	font-weight: 700;
}

.brand {
	margin: 60px auto 80px;
	display: block;
	width: 300px;
	height: 258px;
	background: url('../img/brand.png') no-repeat;
	background-size: contain;
}

.cover {
	width: 400px;
	border: 2px solid #fff;
	box-shadow: 0 2px 5px rgba(0,0,0,.3);
}

.contact {
	padding: 0;
	margin: 20px 0;
}

.contact li {
	margin-bottom: 5px;
	list-style-type: none;
	font-weight: 700;
}

.contact li a {
	font-weight: 700;
}

.contact li a:hover, .contact li a:focus {
	text-decoration: none;
}

.modal-body {
	overflow: auto;
}

form .fa-spinner {
	-webkit-animation: rotating 2s linear infinite;
	animation: rotating 2s linear infinite;
}

.loading {
	display: inline-block;
	float: right;
}

.footer {
	padding: 40px 0 15px;
	width: 100%;
}

.saikoo {
	margin: 0 auto;
	display: block;
	max-width: 140px;
	height: 44px;
	background: url('../img/brand-saikoo.png') no-repeat;
	background-size: contain;			
}

.saikoo:hover, .saikoo:focus {
	opacity: .6;
}

@media (min-width: 768px) {
	html, body {
		height: 100%;
	}
}

@-webkit-keyframes rotating {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}