input,
textarea {
  padding: 5px 15px;
  border: 2px solid $gray-400;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: $gray-400;
}

h1, h2, h3, h4, h5, h6, p {
  input,
  textarea,
  select {
    border: 0;
    width: 100%;
    margin: inherit;
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
    font-family: inherit;
    padding: inherit;
  }
}

.search {
  position: relative;
  border: 2px solid $gray-400;
  min-width: 300px;

  &:before {
    @include icon-font($gray-400);
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    content: '\e90c';
    pointer-events: none;
  }

  input {
    padding-left: 3rem;
    border: 0;
    width: 100%;
  }
}

.dropdown {
  position: relative;
  margin-right: 15px;
  background-color: $white;

  select {
    transition: $transition-base;
    height: 2rem;
    color: $dark;
    background-color: inherit;
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
    text-indent: 1px;
    text-overflow: '';
    padding: 5px 40px 5px 10px;
    min-width: 50px;
    width: 100%;
  }

  &:before {
    @include icon-font($gray-400);
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    content: '\e904';
    pointer-events: none;
  }
}
