/*General */
html {
  /*background:url('images/sun-2297961_1920.jpg') no-repeat;
  background-size: cover;
  height:100%;*/
}
body
{
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

#feedback-page {
	text-align:center;
}

#form-main {
	width:100%;
	float:left;
	padding-top:0px;
}

#form-div {
	/*background-color:rgba(72,72,72,0.4);
  	background-color:#0094C8; */
	background-color:#CCC;
	padding-left:10px;
	padding-right:30px;
	padding-top:10px;
	padding-bottom:10px;
	width:100%;
	float: left;
	/*left: 10%;*/
	position: relative;
    margin-top:10px;
    margin-bottom:10px;
	/*margin-left: -260px;*/
    border-radius: 10px;
}

.montform .feedback-input {
	color:grey;
	font-family: Helvetica, Arial, sans-serif;
    font-weight:400;
	font-size: 15px;
	border-radius: 0;
	line-height: 20px;
	background-color: #fbfbfb;
	padding: 10px;
	margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
	width:100%;
	box-sizing: border-box;
	border: 0px solid rgba(0,0,0,0);
    text-align:left;
}
/*Inputs styles*/
.montform .feedback-input:focus{
	background: #fff;
	border: 0px solid #3498db;
	color: black;
	outline: none;
}

/* Icons ---------------------------------- */
.montform  #name {
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/svgs/fi-address-book.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}

.montform  textarea {
    width: 100%;
    height: 300px;
    line-height: 100%;
    resize:both;
}

.montform  input:hover, .montform  textarea:hover,
.montform  input:focus, .montform  textarea:focus {
	background-color:#e6e6e6;
}

.button-blue {
	font-family: Arial, Helvetica, sans-serif;
	float:left;
	width: 100%;
	border: #fbfbfb solid 4px;
	cursor:pointer;
	background-color: #555;
	color:white;
	font-size:24px;
	padding-top:10px;
	padding-bottom:10px;
	transition: all 0.8s;
    margin-top:-4px;
    margin-right: 10px;
	margin-left: 10px;
    font-weight:600;
}

.button-blue:hover {
	background-color: rgba(0,0,0,0);
	color: #000000;
}

.button-blue:focus {
  outline: black solid 4px;
  background-color: grey;
  color: white;
}

.montform  .submit:hover {
	color: #3498db;
}

.ease {
	width: 0px;
	height: 51px;
	/*background-color: #fbfbfb;*/
    background-color: white;
	transition: .8s ease;
    margin-left: 10px;
}

.submit:hover .ease{
  width:100%;
  background-color:white;
}

/*Styles for small screens*/
@media only screen and (max-width: 400px) {
	#form-div {
		/*left: 3%;*/
		margin-right: 3%;
		width: 97%;
		margin-left: 0%;
		padding-left: 1.5%;
		padding-right: 5.5%;
	}
	.montform .feedback-input {
	margin-left: 2.3%;
    margin-right: 5%;
	}
}