.catalog__sticky {
  position: relative;
  display: flex;
  gap: 24px;
}
.catalog__sticky .catalog__filters {
  max-width: 100%;
}
.catalog__sticky .catalog-filters {
  overflow: visible;
  min-width: 298px;
  max-width: 298px;
  width: 100%;
}
.catalog__sticky .catalog-filters__container {
  display: flex;
  justify-content: space-between;
  border-radius: 16px;
  background: #fff;
  padding: 24px;
  box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.0588235294);
}
.catalog__sticky .filter__btn_container {
  flex-wrap: wrap;
}
.catalog__sticky .filter__btn_container .button {
  max-width: 100%;
  width: 100%;
  justify-content: center;
}

.filter-mobile-container {
  justify-content: flex-end;
  cursor: pointer;
  color: #BE221D;
  text-decoration: underline;
  font-size: 16px;
  padding: 8px 0;
}

.filter-chips__container {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-chips__item {
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 16px;
  color: #fff;
  background: #BE221D;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  justify-content: space-between;
  gap: 16px;
}

.catalog-category-chip__container {
  margin: 0;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.catalog-category-chip__container .catalog-category-chip {
  padding: 4px 16px;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 1000px) {
  .catalog-category-chip__container {
    min-height: 100%;
    overflow-y: auto;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    z-index: 110;
    background: #fff;
    padding: 24px;
  }
  .catalog-category-chip__container .catalog-category-chip {
    max-width: fit-content;
    margin-bottom: 16px;
  }
}

.catalog__filters_inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.catalog-filters__title {
  padding-bottom: 8px;
  border-bottom: 1px solid #E0E0E0;
  margin-bottom: 16px;
}

.parameter__title {
  margin-bottom: 10px;
  font-size: 16px;
}

.catalog__parameter {
  margin-bottom: 12px;
}
.catalog__parameter:last-child {
  margin-bottom: 0;
}

.filter-sort-container {
  display: flex;
  height: 36px;
  padding: 4px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s linear;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 1000px) {
  .first-on-mobile {
    order: -1;
  }
}

@media screen and (max-width: 1340px) {
  .catalog-page-inner.grid-3columns-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 1000px) {
  .catalog-page-inner.grid-3columns-container {
    grid-template-columns: 1fr;
  }
  .sort-wrapper {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .catalog__sticky .catalog-filters {
    overflow-y: auto;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    z-index: 110;
  }
  .catalog__sticky .catalog-filters__container {
    min-height: 100%;
    overflow-y: auto;
  }
  .catalog__sticky .catalog-filters .filter__btn_container {
    margin-bottom: 24px;
  }
  .catalog__sticky .catalog-filters .filter-mobile-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex !important;
    max-width: fit-content !important;
    align-items: center;
    padding: 16px;
    justify-content: center;
  }
}
.category-list-mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  max-width: fit-content !important;
  align-items: center;
  padding: 12px 16px;
  justify-content: center;
}

.category-list {
  overflow-y: auto;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  max-width: 100%;
  width: 100%;
  height: 100%;
  z-index: 110;
}
.category-list__container {
  min-height: 100%;
  overflow-y: auto;
}
.category-list .filter__btn_container {
  margin-bottom: 24px;
}
.category-list .filter-mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex !important;
  max-width: fit-content !important;
  align-items: center;
  padding: 16px;
  justify-content: center;
}

.catalog-item-sort__mobile {
  display: none;
  position: absolute;
  left: 0;
  top: 40px;
  z-index: 10;
  background: #fff;
  padding: 16px 16px 0;
  border-radius: 16px;
  box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.0588235294);
}
.catalog-item-sort__mobile .catalog-item-sort__item {
  margin-bottom: 16px;
  box-shadow: none;
  justify-content: flex-start;
  padding: 0;
}
@media screen and (max-width: 1000px) {
  .catalog-item-sort__mobile {
    top: 44px;
    left: 0;
    right: inherit;
  }
}

.parameter__item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.parameter__item:last-child {
  margin-bottom: 0;
}

.parameter__container.color {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.color .parameter__item {
  margin-bottom: 0;
}

.color .parameter__item_checkbox:checked ~ label {
  border: 1px solid #be221d;
}

.color .parameter__item label {
  border: 1px solid #9e9e9e;
}

.parameter__item_input {
  font-size: 14px;
  border: 1px solid #9e9e9e;
  border-radius: 6px;
  min-height: 16px;
  padding: 4px 8px;
  max-width: 120px;
}

.parameter__number_input::-webkit-outer-spin-button,
.parameter__number_input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.parameter__number_input {
  border-bottom: 1px solid #9e9e9e;
  min-height: 16px;
  padding: 4px 8px;
  font-size: 14px;
  color: #9e9e9e;
  width: fit-content;
  max-width: 60px;
  text-align: center;
}

.parameter__item_label {
  display: flex;
  align-items: center;
  color: #9e9e9e;
  position: relative;
}

.parameter__item_checkbox {
  width: 0;
  height: 0;
  opacity: 0;
}

.parameter__item_label > span {
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  border: 1px solid #9e9e9e;
  margin-right: 15px;
  border-radius: 3px;
  transition: all 0.3s;
}

.parameter__item_checkbox:checked + .parameter__item_label > span {
  border: 8px solid #BE221D;
}

.parameter__item_checkbox + .parameter__item_label > span::before {
  display: none;
}

.parameter__item_checkbox:checked + .parameter__item_label > span::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  top: 4px;
  left: 4px;
  color: #fff;
}

.parameter__item_checkbox:checked + .parameter__item_label {
  color: #BE221D;
}

@keyframes checked-box {
  0% {
    width: 0;
    height: 0;
    border-color: #212121;
    transform: translate(0, 0) rotate(45deg);
  }
  33% {
    width: 4px;
    height: 0;
    border-color: #212121;
    transform: translate(0, 0) rotate(45deg);
  }
  100% {
    width: 4px;
    height: 8px;
    border-color: #212121;
    transform: translate(0, 0) rotate(45deg);
  }
}
@keyframes bounce {
  0% {
    transform: scale(1);
  }
  33% {
    transform: scale(0.7);
  }
  100% {
    transform: scale(1);
  }
}

/*# sourceMappingURL=styles.css.map */
