.input {
  border: 1px solid #666;
  padding: 5px;
  color: #111;
  background: #fff;
}

input:focus,
input.form-control:focus {
  outline: none;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  font-size: 1em;
  height: 1em;
  width: 1em;
  border-radius: 50em;
  background: url("/assets/icons/clear-circle.svg") no-repeat 50% 50%;
  background-size: contain;
  opacity: 0;
  pointer-events: none;
}

input[type="search"]:focus::-webkit-search-cancel-button {
  opacity: 1;
  pointer-events: all;
}

input[type="search"].dark::-webkit-search-cancel-button {
  filter: invert(1);
}
