.text-holder {
	color: #aaaaaa;
	text-align: center;
	padding-top: 40px;
}

.button-holder {
	padding-top: 100px;
}

.ajax-button {
	position: relative;
	text-align: center;
}

.ajax-button .done {
	color: green;
}

.ajax-button .failed {
	color: red;
}

input[type="submit"].submit.loading {
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	width: 100px !important;
	height: 40px !important;
	background-color: #111111 !important;
	border: 2px solid #FFFFFF !important;
	border-radius: 10px !important;
	color: #FFFFFF !important;
	font-size: 17px !important;
	cursor: pointer !important;
	outline: none !important;
	font-size: 0 !important;
	width: 30px !important;
	height: 30px !important;
	margin-top: 5px !important;
	border-radius: 15px !important;
	padding: 0 !important;
	border: 3px solid #152635 !important;
	border-bottom: 3px solid rgba(255, 255, 255, 0.0) !important;
	border-left: 3px solid rgba(255, 255, 255, 0.0) !important;
	background-color: transparent !important;
	animation-name: rotateAnimation !important;
	-webkit-animation-name: wk-rotateAnimation !important;
	animation-duration: 1s !important;
	-webkit-animation-duration: 1s !important;
	animation-delay: 0.2s !important;
	-webkit-animation-delay: 0.2s !important;
	animation-iteration-count: infinite !important;
	-webkit-animation-iteration-count: infinite !important;
	background: none !important;
	display: inline-block !important;
}

@keyframes rotateAnimation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes wk-rotateAnimation {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}

#ajax-form .fa {
	color: #ffffff;
	font-size: 18px !important;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -9px;
	margin-top: -9px;
	-webkit-transform: scaleX(0) !important;
	transform: scaleX(0) !important;
}

.finish {
	-webkit-transform: scaleX(1) !important;
	transform: scaleX(1) !important;
}

.hide-loading {
	opacity: 0;
	-webkit-transform: rotate(0deg) !important;
	transform: rotate(0deg) !important;
	-webkit-transform: scale(0) !important;
	transform: scale(0) !important;
}

#errors {
    color: red;
    background: rgba(255, 255, 255, 0.6);
    padding: 10px;
    text-align: center;
    margin: 5px 0px;
    border-radius: 5px;
    display: none;
}