.filter-item_opened .filter-item__values {
  opacity: 1;
  visibility: visible;
  height: auto;
  padding: 0 30px 20px 30px;
}
.filter-item_opened .filter-item__label:after {
  transform: translateY(-50%) rotate(-180deg);
}
.filter-item:not(:last-child) {
  border-bottom: 1px solid #F1F1F1;
}
.filter-item__label {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: #111111;
  position: relative;
  padding: 15px 60px 15px 30px;
}
.filter-item__label:hover {
  cursor: pointer;
}
.filter-item__label:after {
  content: "";
  width: 16px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='12' viewBox='0 0 16 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_129_481)'%3E%3Cpath d='M14.8574 1.225L8.30031 10L1.74316 1.225' stroke='%238F96A2' stroke-width='1.6' stroke-linecap='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_129_481'%3E%3Crect width='12' height='16' fill='white' transform='matrix(0 -1 -1 0 16 12)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.1s linear;
}
.filter-item__values {
  opacity: 0;
  height: 0;
  visibility: hidden;
  transition: all 0.1s linear;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.filter-item__price-hint {
  font-size: 14px;
  line-height: 17px;
  color: #111111;
}
.filter-item__value:hover {
  cursor: pointer;
}
.filter-item__value input[type=checkbox] {
  display: none;
}
.filter-item__name {
  display: inline-block;
  padding-left: 30px;
  position: relative;
}
.filter-item__name:before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.filter-item__name:after {
  content: "";
  width: 14px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='13' viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5.58333L6.28 11L13 1' stroke='%23E74A41' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.1s linear;
}
.filter-item input[type=checkbox]:checked + .filter-item__name:after {
  opacity: 1;
}
.filter-item__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
}
.filter-item input[type=number] {
  -moz-appearance: textfield;
  width: 90px;
  height: 50px;
  padding: 0 10px;
  color: #777777;
  font-size: 14px;
  line-height: 17px;
  opacity: 0.9;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 4px;
  text-align: center;
}
.filter-item input[type=number]:focus {
  outline: none;
}
.filter-item input[type=number]::-webkit-inner-spin-button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.filter-item .slider-target {
  margin-top: 15px;
  height: 2px;
  padding: 0 8px 0 15px;
}
.filter-item .slider-connect {
  background: #E74A41;
}
.filter-item .slider-base {
  background: transparent;
}
.filter-item .slider-base:before {
  content: "";
  width: calc(100% + 20px);
  height: 2px;
  background: #D1D5D8;
  top: 0;
  left: -13px;
  position: absolute;
}
.filter-item .slider-handle {
  box-shadow: 0 0 6px rgba(182, 182, 182, 0.5);
  background: #ffffff;
  width: 22px;
  height: 22px;
  top: -11px;
}
.filter-item .slider-handle:focus {
  outline: none;
}
.filter-item .slider-handle:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #E74A41;
  position: absolute;
  top: 6px;
  left: 6px;
  border-radius: 50%;
}