.northings-filter.show {
  transform: none;
}
.northings-filter__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .northings-filter__title {
    display: none;
  }
}
.northings-filter__substrate {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #09080d;
  opacity: 0;
  transition: opacity 0.4s linear;
}
.northings-filter__substrate:after {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background: url("../images/close.svg");
  position: absolute;
  right: 16px;
  top: 8px;
}
.northings-filter__wrapper {
  position: relative;
  transform: none;
  padding: 0;
}
@media (min-width: 768px) {
  .northings-filter {
    position: relative;
    transform: none;
  }
  .northings-filter__substrate {
    display: none;
  }
  .northings-filter__wrapper {
    max-width: 100%;
    background: #ffffff;
    position: relative;
    width: 100%;
  }
}
.northings-filter .filter-list__wrap {
  max-height: 269px;
  padding-top: 5px;
  overflow-y: auto;
}
.northings-filter .filter-list__wrap::-webkit-scrollbar {
  width: 8px;
}
.northings-filter .filter-list__wrap::-webkit-scrollbar-track {
  background: #e1e1e1;
}
.northings-filter .filter-list__wrap::-webkit-scrollbar-thumb {
  background: #373737;
}
.northings-filter .filter-list__wrap::-webkit-scrollbar-thumb:hover {
  background: #777;
}
.northings-filter .loader {
  display: none;
  position: absolute;
  z-index: 11;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #ffffff; /* The Fallback */
  background: rgba(255, 255, 255, 0.6);
}
.northings-filter .loader:before {
  display: none;
}
.northings-filter .loader__item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.northings-filter .loader__item img {
  animation: pulse 1s infinite ease-in-out;
}
.northings-filter.loading .loader {
  display: block;
}
.northings-filter__item:not(:first-child) {
  padding-top: 25px;
}
.northings-filter__item .title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1em;
  color: var(--yith-wcan-filters_colors_titles, #000);
  padding-bottom: 5px;
  padding-right: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
@media (min-width: 768px) {
  .northings-filter__item .title {
    color: #303C5E;
  }
}
.northings-filter__item .title:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("../images/dropdown.svg");
  transform: rotate(180deg);
  transition: all 0.3s ease-in-out;
}
.northings-filter__item.active .title:after {
  transform: rotate(0);
}
.northings-filter__item .filter-list {
  display: none;
}
.northings-filter__item .filter-list.active {
  display: block;
}
.northings-filter__item .filter-list__item {
  margin: 16px 0;
}
.northings-filter__item .filter-list__item .name {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.northings-filter__item .filter-list__item .name .open {
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../images/icon-plus.svg");
  background-size: contain;
  margin-left: 8px;
  cursor: pointer;
}
.northings-filter__item .filter-list__item .name .amount:first-child {
  margin-right: 3px;
}
.northings-filter__item .filter-list__item .name .amount:last-child {
  margin-left: 3px;
}
.northings-filter__item .filter-list__item label {
  line-height: 24px;
  color: #808799;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 0;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: flex-start;
}
.northings-filter__item .filter-list__item label .count {
  margin-left: 3px;
  margin-right: 7px;
}
.northings-filter__item .filter-list__item label:before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-image: url("../images/checkbox.svg");
  margin-right: 8px;
}
.northings-filter__item .filter-list__item input {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.northings-filter__item .filter-list__item input:checked + label {
  color: #ffffff;
}
@media (min-width: 768px) {
  .northings-filter__item .filter-list__item input:checked + label {
    color: #303C5E;
  }
}
.northings-filter__item .filter-list__item input:checked + label > .count {
  display: none;
}
.northings-filter__item .filter-list__item input:checked + label:before {
  background-image: url("../images/checkbox-filled.svg");
}
.northings-filter__item .filter-list__item input[type=radio] + label:before {
  background: none;
  border: 2px solid #9dafc8;
  width: 16px;
  height: 16px;
  margin: 2px 8px 2px 2px;
  border-radius: 50%;
}
.northings-filter__item .filter-list__item input[type=radio]:checked + label:before {
  background-image: url("../images/checkbox-filled.svg");
  border-color: #7dbcc0;
  background-position: center;
}
.northings-filter__item .filter-list__item .children {
  display: none;
  padding-left: 15px;
}
.northings-filter__item .filter-list__item.active > .name .open {
  background-image: url("../images/icon-minus.svg");
}
.northings-filter__item .filter-list__item.active > .children {
  display: block;
}

.northings-filter-button {
  margin-bottom: 0;
  color: #303c5e;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  background: #ebeffa;
  border-radius: 2px;
  padding: 8px 16px;
  cursor: pointer;
  width: 48%;
}
.northings-filter-button:before {
  content: url("../images/filters.svg");
  margin-top: 3px;
  padding-right: 8px;
}
@media (min-width: 768px) {
  .northings-filter-button {
    display: none;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.9;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.9;
  }
}
body.archive #secondary {
  display: block !important;
}

.northings-filter-tags {
  width: 100%;
  position: relative;
  z-index: 99;
  clear: both;
  margin: 5px 0 15px;
}
@media (max-width: 568px) {
  .northings-filter-tags {
    transform: translate(-1.41575em, 0);
    padding: 0 1.41575em;
  }
}
@media (min-width: 768px) {
  .northings-filter-tags {
    background: transparent;
    width: 100%;
    transform: none;
    padding: 0;
  }
}
.northings-filter-tags__wrapper {
  padding: 5px 0;
}
.northings-filter-tags__title {
  font-size: 14px;
  padding-right: 16px;
  color: #808799;
}
.northings-filter-tags__content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.northings-filter-tags__content .item {
  border: 1px solid white;
  border-radius: 30px;
  font: normal normal normal 14px/14px Lato;
  letter-spacing: 0px;
  color: #333333;
  background: white;
  padding: 10px 25px;
  margin: 0;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 12px;
  line-height: 26px;
  cursor: pointer;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .northings-filter-tags__content .item {
    font-size: 14px;
    line-height: 32px;
  }
}
.northings-filter-tags__content .item.progress {
  background: #808799;
  opacity: 0.3;
  cursor: not-allowed;
}
.northings-filter-tags__content .item:after {
  content: "";
  width: 8px;
  height: 8px;
  background-image: url("../../assets/images/delete-filter.svg");
  background-size: cover;
  margin-left: 16px;
}
.northings-filter-tags__clear {
  color: #000;
  font-size: 14px;
  line-height: 32px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  margin-left: 8px;
  white-space: nowrap;
  padding: 0 8px;
  border-radius: 16px;
}
.northings-filter-tags__clear.progress {
  background: #808799;
  opacity: 0.3;
  cursor: not-allowed;
}
.northings-filter-tags__clear:before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../../assets/images/refresh.svg");
  background-size: cover;
  margin-right: 10px;
}

.northings-filter-load-more {
  display: none;
}
.northings-filter-load-more__button {
  display: flex;
  justify-content: center;
}
.northings-filter-load-more__button .button {
  outline: 0;
  background: #d19563;
  color: #fff;
  border-radius: 2px;
  align-items: center;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 500;
  width: 256px;
  transition: all 0.25s ease-in-out;
}
.northings-filter-load-more__button .button:hover {
  background-color: #f2e6da;
  color: #d19563;
  text-decoration: none;
}
.northings-filter-load-more__button .button.loading {
  cursor: not-allowed;
  background: #808799;
}

.nfti-submit {
  width: 100% !important;
  border-radius: 50px !important;
  background-color: var(--yith-wcan-filters_colors_accent, #000);
  border-color: var(--yith-wcan-filters_colors_accent, #000);
  height: 44px;
  line-height: 26px;
  color: white;
}

.nfti-clear-mobile {
  width: 100% !important;
  margin: 10px auto;
  padding: 10px 20px;
  color: var(--bs-link-color, #000);
  text-decoration: underline;
  text-align: center;
  display: block;
}

/*# sourceMappingURL=northings-filter.css.map */
