/****Form****/


#form input {
	border: #4f4e4e solid 1px;
	width: 100%;
	font-family: 'Roboto', sans-serif;
	background: #303030;
  	height: 42px;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-box-sizing: border-box; /*Firefox 1-3*/
	-webkit-box-sizing: border-box; /* Safari */
  	padding: 10px 13px 7px;
	line-height: 16px;
	color: #656565;
	font-size: 14px;
	font-weight: 400;
}
#form textarea {
	border: #4f4e4e solid 1px;
	height: 258px;
	font-family: 'Roboto', sans-serif;
	position: relative;
	width: 100%;
	background: #303030;
	resize: none;
	line-height: 16px;
	color: #656565;
	font-size: 14px;
	font-weight: 400;
	overflow: hidden;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-box-sizing: border-box; /*Firefox 1-3*/
	-webkit-box-sizing: border-box; /* Safari */
	padding: 10px 13px 7px;
	margin-bottom: 25px;
}
#form label {
	position: relative;
	display: block;
	width: 500px;
	cursor: text;
	margin-bottom: 15px;
}

#form .error, #form .empty {
    color: #FF0000;
    display: none;
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 10px;
	line-height:14px;
	margin-top:2px;
}
#form .error-empty {margin: 4px 0 0 5px !important; display:none; float:left;}
#form .success {
    position: relative;
	background: #f9f9f9;
    width: 99%;
    text-align: center;
    top: 0;
    left: 0;
    border: 1px solid #333333;
    display: none;
    position: absolute;
    z-index: 1;
    padding: 15px 0;
}

#form .success .success_txt {
    color: #000;
    position: relative;
    text-align: center;
}

.btns {
	text-align: left;
}

.btns a.btn {
	margin-left: 30px;
}

.success_wrapper {
	position: relative;	
}
#form .success-message {
	border: #4f4e4e solid 1px;
	background: #303030;
	display: none;
	opacity: 0;
	position: absolute;
	width: 100%;
	height: 100px;
	text-align: center;
	padding: 20px 10px;
	z-index: 999;
    font: 12px/15px Arial, Helvetica, sans-serif;
	box-sizing: border-box;
	-moz-box-sizing: border-box; /*Firefox 1-3*/
	-webkit-box-sizing: border-box; /* Safari */
	transition: 0.5s ease;
	color: #656565;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
#form.success .success-message {
	display: block;
	opacity: 1;
}

@media only screen and (max-width: 1199px) {

#form input, #form textarea {
	width: 100%;
	float: none;
}

#form label {
	float: none !important;	
	width: 100%;
	margin-left: 0 !important;
}
.btns {
	padding-right: 0;
}




}

@media only screen and (max-width: 767px) {


  .btns {
		padding-bottom: 0;  
  }
  #form  textarea {
		height: 300px !important; 
	} 

  
}
@media only screen and (max-width: 479px) {


  #form textarea {
		height: 200px !important; 
  }
}