body, html {
	width: 100%;
	min-height: 100%;
}

body {
	background-image: url("../graphics/background.jpg");
	background-position: center center;
	background-size: cover;
}

.wrapper {
	width: 85%;
	max-width: 1120px;
	margin: 0px auto;
	padding: 50px 0px;
}

.logo {
	display: block;
	margin: 100px auto 75px auto;
}

#fcForm {
	margin: 0px 0px 80px 0px;
}

#fcLoader {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.85);
	background-image: url("../graphics/loading.gif");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100px 100px;
	display: none;
	z-index: 900;
}

#fcImageUpload {
	display: inline-block;
	width: 230px;
	height: 300px;
	position: relative;
	margin: 20px 0px 50px 0px;
	background-color: #00a4e3;
	cursor: pointer;
	overflow: hidden;
	transition: all 0.25s;
}

#fcImageUpload:hover {
	filter: brightness(1.25);
}

#fcImageUpload p {
	position: absolute;
	left: 0px;
	top: 50%;
	margin: 0px 30px;
	transform: translateY(-50%);
}

#fcImageUpload input {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 5;
}

.uploaded-image {
	position: absolute;
	top: 0px;
	left: -35px;
	width: 300px;
    height: 300px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.compensated {
	top: 35px;
	width: 300px;
    height: 230px;
}

#fcNotifier {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.9);
	display: none;
	text-align: center;
	z-index: 1000;
}

.checker {
	position: relative;
	width: 50px;
	height: 50px;
	background-color: #ffffff;
	float: left;
	margin: 0px 20px 20px 0px;
	cursor: pointer;
}

.checker img {
	width: 30px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.1;
	transition: opacity 0.25s;
}

.checked img {
	opacity: 0.9;
}

.button {
	display: inline-block;
	background-color: #00a4e3;
	padding: 15px 30px;
	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-radius: 40px;
    color: #ffffff !important;
    text-transform: uppercase;
    font-weight: 700;
    transition: background-color 0.25s;
    text-align: center;
}

.button:hover {
	background-color: #0174a0;
}

input, select {
	width: 100%;
	font-family: 'Work Sans', sans-serif;
	font-size: 18px;
	border: none;
	padding: 20px 30px;
	border-radius: 40px;
	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin: 10px 0px 20px 0px;
}

.clear {
	clear: both;
}

.mobile {
	display: none;
}

.half {
	width: 50%;
}

.third {
	width: 33%;
}

.left {
	float: left;
}

.right {
	float: right;
}

.height5 {
	height: 5px;
}

.height10 {
	height: 10px;
}

.height15 {
	height: 15px;
}

.height20 {
	height: 20px;
}

.height40 {
	height: 40px;
}

.hidden {
	display: none;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}


