.subscribe-frm {
	padding: 0 20px;
	
	max-width: 630px;
	margin: 0 auto;

}

.subscribe-frm h4 {
    margin-bottom: 15px;
    font-weight: 400;
}


.frm-inline {
	position: relative;
}

.frm-inline .btn {
	position: absolute;
	right: 0;
	top: 0;
}

/**/
.frm-ctrl {
	background-color: transparent;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
	outline: none;
	height: 55px;
	padding: 15px 25px;
	border-width: 1px;
	border-color: rgb(59, 59, 64);
	border-style: solid;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
	width: 100%;
	color: #fff;
	font-weight: 300;
}
.frm-inline .frm-ctrl {
	width: 100%;
	-webkit-border-radius: 30px;
	   -moz-border-radius: 30px;
			border-radius: 30px;
	border-color: rgb(76, 77, 83); 
}
.frm-ctrl:focus {
	border-color: #4c4d53; /* #28c9db */
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgb(76, 77, 83); /* rgba(102,175,233,.6) */
	-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgb(76, 77, 83); /* rgba(40, 201, 219, 0.6) */
		 box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgb(76, 77, 83);
}

/**/
.btn {
	/* text-transform: uppercase; */
	font-size: 16px;
	border: none;
	width: 200px;
	height: 55px;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
			border-radius: 0;
}

.btn-cyan {
	background-color: rgb(52, 52, 52); /*rgb(39, 201, 220)*/
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
	color: #848486;
}

.btn-cyan:hover {
	color: #bcbcbd;
	/*-webkit-box-shadow: 0px 3px 7px 0px rgb(76, 77, 80); /-* cyan rgba(39, 201, 220, 0.2) *-/
	   -moz-box-shadow: 0px 3px 7px 0px rgb(76, 77, 80);
			box-shadow: 0px 3px 7px 0px rgb(76, 77, 80);*/
}

.btn-round {
	-webkit-border-radius: 30px;
	   -moz-border-radius: 30px;
			border-radius: 30px;
}


/* Validation */
.wrap-err {
	margin-bottom: .5em;
}
/* Error and final message */
.subscribe-frm .error-message,
.subscribe-frm .final-message {
	/*position: absolute;*/
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
	font-size: 0.9em;
    font-weight: 100;
}

.subscribe-frm .error-message {
	padding: 0.4em 3.5em 0 0;
	width: 100%;
	/*color: color: #f97a12;
	font-style: italic;
	font-size: 0.9em;*/
}

.final-message {
	top: 50%;
	left: 0;
	padding: 0.5em;
	width: 100%;
	text-align: center;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.error-message.show,
.final-message.show {
	visibility: visible;
	opacity: 1;
}

.final-message.show {
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}

.error-message.show,
.final-message.show {
	visibility: visible;
	opacity: 1;
} 

.error-message {
	color: #f97a12;
}

.final-message {
	color: #7faf1b;	
}