.filter__item:not(:last-child) {
  margin-bottom: 10px
}
.filter__head {
  padding: 12px 20px;
  background-color: #f6f6f6;
  display: flex;
  align-items: center;
  cursor: pointer
}
.filter__head.default-open ~ .filter__body {
  transition: none;
  max-height: initial
}
.filter__title {
  font-size: 20px;
  line-height: 26px;
  margin-right: 12px
}
.filter__arrow {
  margin-left: auto
}
.filter__arrow svg {
  width: 12px;
  height: 12px;
  transition: transform .3s linear
}
.filter__head.is-active .filter__arrow svg {
  transform: rotate(180deg)
}
.filter__body {
  padding: 0 20px;
  background-color: #f6f6f6;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s linear
}
.filter__body-wrap {
  padding: 20px 0 40px;
  border-top: 1px solid #cfcfcf
}
.filter__body-wrap_dual {
  display: flex;
  justify-content: space-between
}
.filter__body-wrap_dual .filter__list {
  width: 48%
}
.filter__list_col-2 {
  -moz-column-count: 2;
  column-count: 2
}
.filter__list-item {
  display: flex;
  align-items: center;
  position: relative
}
.filter__list-item:not(:last-child) {
  margin-bottom: 10px
}
.filter__list-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  cursor: pointer
}
.filter__list-input:checked ~ .filter__list-text::before {
  background-image: url(../img/svg/icon-mark.svg)
}
.filter__list-text {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 23px;
  cursor: pointer
}
.filter__list-text::before {
  content: "";
  min-width: 17px;
  width: 17px;
  height: 17px;
  border: 1px solid #6f6f6f;
  margin-right: 14px;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat
}
@media (max-width:768px) {
  .filter__head {
    padding: 10px 15px
  }
  .filter__title {
    font-size: 16px;
    line-height: 120%
  }
  .filter__body {
    padding: 0 15px
  }
  .filter__body-wrap {
    padding: 10px 0 20px
  }
  .filter__list-text {
    font-size: 14px;
    line-height: 120%
  }
  .filter__list-text::before {
    margin-right: 10px;
    min-width: 15px;
    width: 15px;
    height: 15px
  }
}