@charset "UTF-8";
/**
needs bootstrap function str-replace()
 */
/**
* Метод дополняет svg-sprite.scss.
* Позволяет получить чистый урл элемента спрайта для использования в псевдоэлементах или background-image
* Example: content: url(get-svg-url('checkmark', $user-variables: (fill: 'tomato')));
* Example: background-image: url(get-svg-url('heart', $user-variables: (stroke: 'red', fill: 'pink')));
*/
/**
вертикальные отступы
для каждого цвета указываются в порядке как в $grid-breakpoints
 */
.search-form {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
}
.search-form__row {
  display: flex;
  align-items: center;
  position: relative;
}
.search-form__input {
  box-shadow: none;
  border: 1.5px solid #e4e4e4;
  border-radius: 50px;
  line-height: 50px;
  color: #808080;
  font-weight: 500;
  font-size: 18px;
  width: 100%;
  max-width: 100%;
  padding-left: 64px;
}
.search-form__input::-moz-placeholder {
  color: #e4e4e4;
  -moz-transition: color 0.5s linear;
  transition: color 0.5s linear;
}
.search-form__input::placeholder {
  color: #e4e4e4;
  transition: color 0.5s linear;
}
.search-form__input:focus {
  outline: none;
  border-color: black;
}
.search-form__input:focus::-moz-placeholder {
  color: transparent;
}
.search-form__input:focus::placeholder {
  color: transparent;
}
.search-form__submit {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 26 26'%3e%3ccircle cx='12' cy='12' r='11' fill='transparent' stroke='%23a4a4a4'/%3e%3cpath d='m24.875 25-4.644-4.644' fill='transparent' stroke='%23a4a4a4'/%3e%3c/svg%3e") center no-repeat;
  color: transparent;
  display: block;
  position: absolute;
  width: 25px;
  height: 40px;
  left: 20px;
  background-color: #fff;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-shadow: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
}
.search-form__submit:hover {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 26 26'%3e%3ccircle cx='12' cy='12' r='11' fill='transparent' stroke='%23A9FFC6'/%3e%3cpath d='m24.875 25-4.644-4.644' fill='transparent' stroke='%23A9FFC6'/%3e%3c/svg%3e") center no-repeat;
}
