﻿

html{ 
  background-size: cover;
  height:100%;
}

#feedback-page{
	text-align:center;
}

#form-main{
	width:100%;
	float:left;
	padding-top:0px;
}

#form-div {
	padding: 10px;
	background-color: rgba(72,72,72,0.4);
	float: none;
	position: relative;
	margin-top: -5px;
/*	margin-left: -260px;*/
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
}


.asterisk{
	color:red;
}

.feedback-input {
	color: #3c3c3c;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: 500;
	font-size: 1em;
	border-radius: 4px;
	line-height: 18px;
	background-color: #F5F2E7;
	padding: 7px;
	margin-bottom: -10px;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	border: 3px solid rgba(0,0,0,0);
}
.feedback-input:focus{
	background: #fff;
	box-shadow: 0;
	border: 3px solid #FF0000;
	color: #FF0000;
	outline: none;
	padding: 7px;
}

.focused{
	color: #FF0000;
	border: 3px solid #FF0000;
}

select {
    width: 100%;
    padding: 7px;
    border: none;
    border-radius: 4px;
    background-color: #fff;	
   	margin-bottom: -20px;

}



/* Icons ---------------------------------- */
#name,
#email,
#phone,
#sitetype,
#comment{
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}

#name{
	margin-top:-10px;}

#name:focus,
#email:focus,
#phone:focus,
#sitetype:focus {
	background-size: 30px 30px;
 	background-position: 11px 8px;
	background-repeat: no-repeat;
}


textarea {
    width: 100%;
    height: 85px;
    line-height: 150%;
    resize:vertical;
}

input:hover, 
textarea:hover,
input:focus, 
textarea:focus {
	background-color:white;
}

#button-send{
	border: 2px solid #663300;
	float: left;
	width: 100%;
	cursor: pointer;
	background-color: #99FF66;
	color: #000000;
	font-size: 1em;
	padding-top: 12px;
	padding-bottom: 12px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	margin-top: 3px;
	font-weight: 700;
}
#button-send:hover{
	background-color: #008000;
	color: #ffffff;
}
	
.submit:hover {
	color: #ffffff;
}
	
.ease {
	width: 0px;
	height: 80%;
	background-color: #000000;
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease;
	-o-transition: .3s ease;
	-ms-transition: .3s ease;
	transition: .3s ease;
}

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

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