input[type=text], select {
	width: 100%;
	padding: 13px 13px 13px 54px;
	background-image: url(svgs/fi-marker.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: 500;
	font-size: 18px;
	border-radius: 0;
	line-height: 22px;
	background-color: #fbfbfb;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	border: 3px solid rgba(0,0,0,0);
	color: #666;
	-webkit-appearance:none;
}

#form-main{

}

#form-div {
	padding-left:35px;
	padding-right:35px;
	padding-top:5px;
	padding-bottom:50px;
    margin-top:5px; 
	border-radius: 7px;
}

#success_message {color:#0F4486;}

.form-main .feedback-input {
	color:#3c3c3c;
	font-family: Helvetica, Arial, sans-serif;
    font-weight:500;
	font-size: 18px;
	border-radius: 0;
	line-height: 22px;
	background-color: #fbfbfb;
	padding: 13px 13px 13px 54px;
	margin-bottom: 10px;
	width:100%;
	box-sizing: border-box;
	border: 3px solid rgba(0,0,0,0);
}
/*Inputs styles*/
.form-main .feedback-input:focus{
	background: #fff;
	border: 3px solid #333333;
	color: #000;
	outline: none;
    padding: 13px 13px 13px 54px;
}


/* Icons ---------------------------------- */
.form-main  #name{
	background-image: url(svgs/fi-torso.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
	border-radius: 15px;
}

.form-main  #name:focus{
	background-image: url(svgs/fi-torso.svg);
	background-size: 30px 30px;
	background-position: 8px 5px;
    background-position: 11px 8px;
	background-repeat: no-repeat;
	border-radius: 15px;
}

.form-main  #email{
	background-image: url(svgs/fi-mail.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
	border-radius: 15px;
}

.form-main  #email:focus{
	background-image: url(svgs/fi-mail.svg);
	background-size: 30px 30px;
    background-position: 11px 8px;
	background-repeat: no-repeat;
	border-radius: 15px;
}

.form-main  #comment{
	background-image: url(svgs/fi-pencil.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
	border-radius: 15px;
}

.form-main  #telephone{
	background-image: url(svgs/fi-telephone.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
	border-radius: 15px;
}

.form-main  #service-choice{
	background-image: url(svgs/fi-filter.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
	border-radius: 15px;
}

.form-main  #file{
	background-image: url(svgs/fi-photo.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
	border-radius: 15px;
}

.form-main  textarea {
    width: 100%;
    height: 150px;
    line-height: 150%;
    resize:vertical;
}

.form-main  input:hover, .form-main  textarea:hover,
.form-main  input:focus, .form-main  textarea:focus {
	background-color:#e6e6e6;
	border-radius: 15px;
}

.button-form{
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
	float:left;
	width: 100%;
	border: #fff solid 2px;
	border-radius: 15px;
	cursor:pointer;
	background-color: #273339;
	color:white;
	font-size:24px;
	padding-top:22px;
	padding-bottom:22px;
	transition: all 0.3s;
    margin-top:-4px;
    font-weight:700;
}

.button-form:hover{
	background-color:#71797E;
	color: #fff;
}
	
.form-main  .submit:hover {
	color: #3498db;
}
	
.ease {
	width: 0px;
	height: 74px;
	background-color: #fbfbfb;
	transition: .3s ease;
	border-radius: 15px;
}

.submit:hover .ease{
  width:100%;
  background-color:white;
}

/*Styles for small screens*/

@media  only screen and (max-width: 580px) {
	#form-div{
		left: 3%;
		margin-right: 3%;
		width: 100%;
		margin-left: 0;
		padding-left: 3%;
		padding-right: 3%;
	}
}

