#contact_form_holder {
	position: relative;
	width: 100%;
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing:  border-box
}

.nomediv, .emaildiv {
	width: 100%;
	height: 35px;
	margin-bottom:15px;
	position: relative;
}

input[type=text], select {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	height:38px;
    width: 100%;
    padding-left:5px;
    border: 0;
	border-radius: 0 !important;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing:  border-box
}

#contact_form_holder input, #contact_form_holder textarea { 
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	border-radius: 0 !important;
    width:100%; 
    font-family:inherit;
	font-size:16px;
	color: #444;
}

#contact_form_holder textarea { 
    height:160px; 
	color: #444;
    outline:none;
	resize:none;
	padding: 10px;
	margin-bottom:15px;
	border: 1px solid white;
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing:  border-box
}

#send-button button{ 
	background: #FF9F32;
	color: white;
	border:0;
	cursor: pointer;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 2px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
}

#send-button button:hover{ 
    background: #e2881e;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
}

::-webkit-input-placeholder { /* WebKit browsers */
    color: #999;
	font-size:12px;
	letter-spacing: 1px;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #999;
	font-size:12px;
	letter-spacing: 1px;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #999;
	font-size:12px;
	letter-spacing: 1px;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #999;
	font-size:12px;
	letter-spacing: 1px;
}

#send_message {
	height: 100%;
	width: 100%;
}

#send-button { 
	height:50px;
	width:100%;
}

#name_error, #email_error, #message_error { 
    top:18px;
	right:5px;
	z-index:10;
}

.error { 
	display: none; 
	font-size:14px; 
	font-weight: 400;
	position: absolute; 
	line-height:0;
	color: #ed9f18; 
}

.error2 { 
	display: none; 
	position: absolute;
	margin: 20px auto 0 auto;
	left:0;
	right:0;
	width:220px;
	text-align: center;
	color: white;
	background: #c70018;
	padding: 4px 0;
	line-height: 1.5em;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	font-size:13px;
}

.success { 
	display: none; 
	color: white;
	position: absolute;
	background: green;
	width: 220px;
	text-align: center;
	margin: -37px auto 0 auto;
	left:0;
	right:0;
	padding: 3px 0;
	border-radius: 16px;
	line-height: 1.5em;
	font-size:14px;
}

.success i, .error2 i{ 
	font-size:18px;
}