.flexsearch--wrapper {
	float:left;
	height: auto;
	width: 800px;
	max-width: auto;
	overflow: hidden;
	background: transparent;
	margin: 0;
	position: static;
	padding-bottom:20;
	padding-left:0;
	padding-right:10;
}
	
.flexsearch--form {
	overflow: hidden;
	position: relative;
}
	
.flexsearch--input-wrapper {
	padding: 0 65px 0 0; /* Right padding for submit button width */
	overflow: hidden;
}

.flexsearch--input {
  width: 100%;
}

/***********************
 * Configurable Styles *
 ***********************/
.flexsearch {
  padding: 0 0px 0 0px; /* Padding for other horizontal elements */
}

.flexsearch--input {
  -webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
 	height: 60px;
  padding: 0 43px 0 10px;
	border-color: #7bb7e5;
  border-radius: 35px; /* (height/2) + border-width */
  border-style: solid;
	border-width: 2px;
  margin-top: 5px;
  color: #3b6482;
  font-family: 'Helvetica', sans-serif;
	font-size: 26px;
	-webkit-appearance: none;
	-moz-appearance: none;
}
	
.flexsearch--submit {
  position: absolute;
	right: 0;
	top: 0;
	display: block;
	width: 60px;
	height: 60px;
  padding: 0;
  border: none;
	margin-top: 5px; /* margin-top + border-width */
  margin-right: 5px; /* border-width */
	background: transparent;
  color: #3b6482;
  font-family: 'Helvetica', sans-serif;
  font-size: 40px;
  line-height: 60px;
}

.flexsearch--input:focus {
  outline: none;
  border-color: #3b6482;
}

.flexsearch--input:focus.flexsearch--submit {
 	color: #3b6482; 
}

.flexsearch--submit:hover {
  color: #7bb7e5;
  cursor: pointer;
}

::-webkit-input-placeholder {
	color: #3b6482;  
}

input:-moz-placeholder {
  color: #3b6482
}

