/* Селект сортировки */
.t-store__sort-select-wrapper .t-store__sort-select {
  background-color: #F4F4F5 !important;
  color: #444444 !important;
  font-size: 11px !important;

  padding: 10px 12px !important;

  border: none !important;
  border-radius: 3px !important;

  outline: none !important;
  box-shadow: none !important;

  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;

  background-image: none !important; /* стрелка убрана */
}

/* Убираем обводку при фокусе */
.t-store__sort-select-wrapper .t-store__sort-select:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Цвет выпадающих пунктов */
.t-store__sort-select-wrapper .t-store__sort-select option {
  background-color: #F4F4F5;
  color: #444444;
  font-size: 11px;
}

/* Обёртка поиска */
.t-store__search-wrapper {
  position: relative;
}

/* Поле ввода */
.t-store__search-wrapper .t-store__filter__input {
  background-color: #F4F4F5 !important;
  color: #444444 !important;
  font-size: 11px !important;

  padding: 10px 35px 10px 12px !important;

  border: none !important;
  border-radius: 3px !important;

  outline: none !important;
  box-shadow: none !important;
}

/* Убираем фокус */
.t-store__search-wrapper .t-store__filter__input:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Placeholder */
.t-store__search-wrapper .t-store__filter__input::placeholder {
  color: #444444 !important;
  opacity: 0.6;
  font-size: 11px;
}

/* Иконка лупы */
.t-store__search-wrapper .t-store__search-icon path {
  fill: #444444 !important;
}

/* Иконка крестика */
.t-store__search-wrapper .t-store__search-close-icon path {
  fill: #444444 !important;
}

/* Подгоняем высоту только поиска */
.t-store__search-wrapper .t-store__filter__input {
  height: 36px !important;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  line-height: normal !important;
  

/* Скругляем сам квадрат чекбокса */
.t-checkbox__indicator {
    border-radius: 2px !important;
    overflow: hidden;
}

