.sb-filter-nest {
  position: sticky;
  top: 80px;
  margin: 15px 0 0 0;
}

@media screen and (max-width: 991px) {
  .sb-filter-nest {
    top: 20px;
  }
}

.sb-filter-wrap {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 768px) {
  .sb-filter-wrap {
    max-height: 85vh;
    overflow: auto;
    scrollbar-width: none;
  }
}

.sb-filter {
  overflow: hidden;
  color: #303030;
  font-size: 14px;
  font-weight: 400;
}

.sb-filter_field {
  height: 38px;
  color: #aaa;
  font-size: 14px;
  padding: 8px 8px 8px 30px;
  border: 1px solid #eee;
  border-radius: 4px;
}
.sb-filter_field:focus {
  color: #303030;
}

.sb-filter_elem {
  padding: 20px;
}
.sb-filter_elem + .sb-filter_elem {
  border-top: 1px solid #eee;
}
.sb-filter_elem .elem-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  cursor: pointer;
}
.sb-filter_elem .elem-heading.active .elem-heading_arrow {
  transform: rotate(180deg);
}
.sb-filter_elem h4 {
  font-family: "Roboto M", sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.sb-filter_elem .elem-inner .elem-inner-cont {
  padding-top: 20px;
}
.sb-filter_elem .inputs-bl {
  display: flex;
  justify-content: space-between;
}
.sb-filter_elem .inputs-bl .input-wr {
  position: relative;
  width: calc(50% - 4px);
  color: #aaa;
}
.sb-filter_elem .inputs-bl .input-wr::before {
  position: absolute;
  top: 11px;
  left: 9px;
  z-index: 1;
}
.sb-filter_elem .inputs-bl .input-wr.i-from::before {
  content: "от ";
}
.sb-filter_elem .inputs-bl .input-wr.i-till::before {
  content: "до ";
}
.sb-filter_elem .inputs-bl input {
  width: 100%;
  min-width: 10px;
}
.sb-filter_elem .crawler-bl {
  padding: 0 4px;
  margin-top: 20px;
}

.sb-filter_append {
  padding: 20px;
  border-top: 1px solid #eee;
  box-shadow: 0 -1px 12px rgba(0, 0, 0, 0.05);
}
.sb-filter_append .app-btn {
  width: 100%;
  height: 40px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  background-color: #42aaff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.sb-filter_append .app-btn:hover {
  background-color: #1975be;
}
.sb-filter_append .app-btn:disabled {
  color: #aaa;
  background-color: #eee;
  cursor: default;
}
.sb-filter_append .reset-btn-wr {
  display: none;
  margin-top: 12px;
}
.sb-filter_append .reset-btn-wr.active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sb-filter_append .reset-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #aaa;
  font-family: "Roboto M", sans-serif;
  font-size: 12px;
  font-weight: 500;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.sb-filter_append .reset-btn img {
  margin-right: 4px;
}

.chars-list {
  list-style-type: none;
}
.chars-list li + li {
  margin-top: 12px;
}

.collapsible {
  overflow: hidden;
  height: 0;
  transition: height 0.2s ease;
}

.noUi-target {
  background-color: #eee;
}

.noUi-horizontal {
  height: 4px;
  border: none;
  border-radius: 2px;
}
.noUi-horizontal .noUi-handle {
  width: 16px;
  height: 16px;
  right: -8px;
  border-radius: 50%;
}

.noUi-connect {
  background-color: #42aaff;
}

.noUi-handle {
  background-color: #42aaff;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  cursor: pointer;
}
.noUi-handle::before, .noUi-handle::after {
  content: none;
}

.check-toggle {
  padding: 2px 0;
}
.check-toggle .check-toggle_input {
  display: none;
}
.check-toggle .check-toggle_input:checked + .check-toggle_sim span {
  right: calc(100% - 30px);
  background-color: #42aaff;
}
.check-toggle .check-toggle_sim {
  display: block;
  position: relative;
  width: 28px;
  height: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
}
.check-toggle .check-toggle_sim span {
  display: block;
  position: absolute;
  top: -3px;
  right: 13px;
  width: 16px;
  height: 16px;
  background-color: #aaa;
  border-radius: 50%;
  transition: right 0.1s;
}

.check {
  display: flex;
  align-items: center;
}
.check .check_input {
  display: none;
}
.check .check_input:checked + .check_sim {
  background: url(/static/img/check.png) center no-repeat, #42aaff;
  border-color: #42aaff;
}
.check .check_sim {
  display: block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #eee;
  cursor: pointer;
}
.check .check_text {
  padding-left: 6px;
  cursor: pointer;
}

.mob-panel {
  position: fixed;
  top: 0;
  left: -400px;
  bottom: 0;
  z-index: 100;
  width: 390px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: left 0.2s;
}
.mob-panel.active {
  left: 0;
}

@media only screen and (max-width: 479px) {
  .mob-panel {
    left: -480px;
    width: 100%;
  }
}
.mob-panel-header {
  position: relative;
  text-align: center;
  padding: 20px 50px;
}
.mob-panel-header .mp-hide-btn {
  position: absolute;
  top: 50%;
  left: 20px;
  background-color: transparent;
  border: none;
  transform: translateY(-50%);
  cursor: pointer;
}
.mob-panel-header h3 {
  font-size: 20px;
}

.mob-panel-cont {
  height: calc(100% - 63px);
}
.mob-panel-cont .sb-filter-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.mob-panel-cont .sb-filter {
  overflow-y: auto;
}
.mob-panel-cont .sb-filter_append {
  flex-shrink: 0;
}

#mp-activate-btn {
  display: none;
}

@media only screen and (max-width: 767px) {
  #mp-activate-btn {
    display: flex;
  }
}
.cats {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  margin: -12px -6px 0 -6px;
  transition: max-height 0.2s;
}

.cat-item {
  width: auto;
  padding: 12px 6px 0 6px;
}
.cat-item a {
  display: flex;
  align-items: center;
  color: #303030;
  font-family: "Roboto M", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: color 0.2s, border-color 0.2s;
}
@media screen and (max-width: 767px) {
  .cat-item a {
    font-size: 12px;
  }
}
.cat-item a:hover {
  color: #42aaff;
  border-color: #42aaff;
}
.cat-item .img-wr {
  flex-shrink: 0;
  display: block;
  width: 48px;
  height: 48px;
}
.cat-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cat-item .txt-wr {
  padding: 8px;
}

@media only screen and (max-width: 767px) {
  .cats-wrap .toggle-cats-btn.v2 {
    display: none;
  }
  .cat-item.in-swiper {
    padding-top: 0;
  }
  .cat-item a {
    padding: 0;
  }
  .cat-item .img-wr {
    width: 44px;
    height: 44px;
  }
}
.toggle-cats-btn {
  font-family: "Roboto M", sans-serif;
  font-size: 12px;
  font-weight: 500;
  background-color: transparent;
  border: none;
  margin-top: 12px;
  cursor: pointer;
}
.toggle-cats-btn span:first-child {
  display: flex;
  align-items: center;
  color: #42aaff;
}
.toggle-cats-btn span:last-child {
  display: none;
  color: #aaa;
}
.toggle-cats-btn span svg {
  margin-left: 6px;
}
.toggle-cats-btn.active span:first-child {
  display: none;
}
.toggle-cats-btn.active span:last-child {
  display: flex;
  align-items: center;
}

.cats-swiper {
  margin: -12px -6px 0 -6px;
  transition: max-height 0.2s;
}
.cats-swiper .swiper-wrapper {
  flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  .cats-swiper {
    margin: 0 0 0 -6px;
  }
  .cats-swiper .swiper-wrapper {
    flex-wrap: nowrap;
  }
}
.swiper-button-prev,
.swiper-button-next {
  display: none;
  width: 70px;
  height: 100%;
  top: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%);
  margin: 0;
  cursor: pointer;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.swiper-button-prev .button-inner,
.swiper-button-next .button-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background-color: #1975be;
  border-radius: 4px;
}
.swiper-button-prev .button-inner svg,
.swiper-button-next .button-inner svg {
  width: 16px;
  height: 16px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: none;
}

@media only screen and (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
.swiper-button-prev {
  left: 0;
  padding-right: 6px;
  transform: rotate(180deg);
}

.swiper-button-next {
  right: 0;
}
/*# sourceMappingURL=main.css.map */
