[type=color], [type=date], [type=datetime-local], [type=datetime],
[type=email], [type=month], [type=number], [type=password], [type=search],
[type=tel], [type=text], [type=time], [type=url], [type=week] {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height:auto;
    margin: 0 0 1.5rem 0;
    padding: 0.5rem;
	border: none;
    border-bottom: 2px solid #c0e0e0;
    border-radius: 0;
    background-color: rgba(214,214,214,0);
    box-shadow:none;
    font-family: inherit;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    color: #3e3e3e;
    transition: box-shadow .5s, border-color .25s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}
[type=color]:focus, [type=date]:focus, [type=datetime-local]:focus,
[type=datetime]:focus, [type=email]:focus, [type=month]:focus, [type=number]:focus,
[type=password]:focus, [type=search]:focus, [type=tel]:focus, [type=text]:focus,
[type=time]:focus, [type=url]:focus, [type=week]:focus,  {
    outline: 0;
    border-bottom: 2px solid #339999;
    box-shadow: none;
    transition: box-shadow .5s, border-color .25s ease-in-out;
	color: #339999;
	background-color: rgba(214,214,214,0.1);
}
textarea {
	border: 0;
	background-color: rgba(214,214,214,0.1);
	padding: 0.5rem;
	font-family: inherit;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
	color: #3e3e3e;
	box-shadow:none;
	border-bottom: 2px solid #c0e0e0;
}
/**
* Make the field a flex-container, reverse the order so label is on top.
*/
 
.field {
  display: flex;
  flex-flow: column-reverse;
  margin-bottom: 1em;
}
/**
* Add a transition to the label and input.
* I'm not even sure that touch-action: manipulation works on
* inputs, but hey, it's new and cool and could remove the 
* pesky delay.
*/
label, input, textarea {
  transition: all 0.2s;
  touch-action: manipulation;
}
input:focus {
  outline: 0;
}
label {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  font-weight: 600;
  color: #97cccc;
}

/**
* By default, the placeholder should be transparent. Also, it should 
* inherit the transition.
*/
::-webkit-textarea-placeholder,
::-webkit-input-placeholder {
  opacity: 0.5;
  transition: inherit;
  color: #339999;
}
/**
* Show the placeholder when the input is focused.
*/
textarea:focus::-webkit-textarea-placeholder,
input:focus::-webkit-input-placeholder {
  opacity: 1;
}
/**
* When the element is focused, remove the label transform.
* Also, do this when the placeholder is _not_ shown, i.e. when 
* there's something in the input at all.
*/
div.wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #ff0000;
}

div.wpcf7-mail-sent-ok,
div.wpcf7-mail-sent-ng,
div.wpcf7-aborted,
div.wpcf7-spam-blocked,
div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
	border: none;
}
div.wpcf7-response-output {
	padding: 1em;
}
[type=submit] {
    padding: 1rem 2rem;
	background-color: #339999;
	color: #ffffff;
	display: inline-block;
	line-height: 100%;
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
}
[type=submit]:hover {
	background-color: #000000;
}
.wpcf7-recaptcha {
	float: left;
}

input.search-field {
	border-bottom: none;
	background-color: rgb(214,214,214);
	padding: 1rem;
}
/* Style the input container */
.input-container {
  display: flex;
  width: 100%;
  margin-bottom: 15px;
  position: relative;
}

/* Style the form icons */
.icon {
 padding: 0.5rem 0.5rem 0.5rem 2rem;
  color: #aaaaaa;
  background-color: rgb(214,214,214);
  min-width: 50px;
  text-align: center;
  line-height: 1.5;
}

/* Style the input fields */
.input-field {
  width: 100%;
  outline: none;
  margin-bottom: 0;
}

[type=color]:focus, [type=date]:focus, [type=datetime-local]:focus,
[type=datetime]:focus, [type=email]:focus, [type=month]:focus, [type=number]:focus,
[type=password]:focus, [type=search]:focus, [type=tel]:focus, [type=text]:focus,
[type=time]:focus, [type=url]:focus, [type=week]:focus, textarea:focus {
    outline: 0;
	border: none;
    border-bottom: 2px solid #339999;
    background-color: transparent;
    box-shadow: none;
    transition: box-shadow .5s, border-color .25s ease-in-out;
}
 textarea:focus {
 	background-color: rgba(214,214,214,0.1);
 }
 

