/**
 * @file
 * Visual styles for Newsplus Lite's search elements.
 */

.form-item input.form-search {
  background: #fff;
  color: #333;
  font-size: 12pt;
  width: 100%;
  padding: 5px 10px;
  outline: none;
  border: 2px solid #c5c5c5;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  height: 30px;
  -webkit-appearance: none;
}
input.form-search:focus {
  border-color: #c5c5c5;
}

/*Search Block*/
.block-search form {
  position: relative;
}
.block-search .form-actions {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
}
.block-search .form-actions:after {
  font-family: 'FontAwesome';
  content: "\f002";
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 0;
  display: block;
  background-color: #c5c5c5;
  right: 0;
  text-align: center;
  color: white;
  height: 30px;
  font-size: 18px;
  line-height: 1.6;
}
.block-search .form-actions input {
  margin: 0;
  min-width: 0;
  z-index: 1;
  position: relative;
  background-color: transparent;
  height: 30px;
  text-indent: -999999px;
}
.block-search .form-actions input:hover {
  background-color: transparent;
}
