.elmt-form {
	border-bottom: 1px solid #f1f1f1;
	position: relative;
}

.elmt-form label {
	margin-top: 40px;
	margin-bottom: 20px;
	display:block;
	color: #0075cf;
	font-weight: 700;
}

.elmt-form label.error {
	color: #CC0000;
}

.elmt-form .fInput {
	padding: 14px 20px;
	width: 100%;
	border: 0;
	background-color: #fbfbfb;
}

.elmt-form .fTextarea {
	padding: 14px 20px;
	width: 100%;
	border: 0;
	background-color: #fbfbfb;
}

.elmt-form .bSubmit {
	margin: 0 0 0 0;
    padding: 14px 60px;
    color: #fff;
    background-color: #0075cf;
    display: inline-block;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875em;
    text-decoration: none;
    transition: all 0.5s;
    border: 0;
    cursor: pointer;
    outline: 0;
    background-position: center center;
}

.elmt-form .bSubmit.sending {
    background-image: url(/images/loader-contact-form.gif);
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #35373f;
}

.elmt-form .bSubmit.done {
    background-image: none;
    background-color: #3dad3d;
}

.elmt-form .bSubmit:hover {
    background-color: #35373f;
}

.elmt-form .status {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 117, 205,0.9);
	z-index: 1;
	display: none;
	text-align: center;
}

.elmt-form .status span {
	display: inline-block;
	margin-top: 100px;
	color: #fff;
	font-weight: 700;
}