.item-card {
  display: grid;
  width: 100%;
  border-radius: 16px;
  background: var(--color-white-100);
}

.item-card_top {
  grid-column: 1/-1;
  border-bottom: 1px solid rgba(81, 83, 86, 0.1);
}

.item-card_top .title_S {
  font-size: 14px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.14px;
}

.item-card_top .item-card_right--code {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  padding: 8px 0;
  gap: 8px;
  margin-bottom: 0;
}

.item-card_top .item-card_right--code-title,
.item-card_top .item-card_right--code-value {
  color: var(--color-white-50);
  font-family: Roboto;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 10px;
  font-weight: 400;
  line-height: 150%;
}

.item-card_left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-card_left--badge {
  position: absolute;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 4px;
}

.item-card_left--badge .item_popular {
  background: linear-gradient(90deg, #CD43B9 0%, #7300FF 100%);
}

.item-card_left--badge .item_hit {
  background: linear-gradient(90deg, #C53434 0%, #FF4D00 100%);
}

.item-card_left--badge .item_new {
  background: linear-gradient(90deg, #1AB563 0%, #008185 100%);
}

.item-card_left--badge__gisp {
  position: absolute;
  z-index: 10;
}

.item-card_center .title_S {
  margin-bottom: 4px;
}

.item-card_center .title_XS {
  border-bottom: 1px solid rgba(81, 83, 86, 0.1);
  color: var(--color-black-70);
  font-family: Roboto;
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
  line-height: unset;
  height: 48px;
}

.item-card_center-properties {
  display: flex;
  flex-direction: column;
}

.item-card_center-properties__stroke {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}

.item-card_center-properties__title {
  overflow: hidden;
  color: var(--color-black-70);
  text-overflow: ellipsis;
  font-family: Roboto;
  font-style: normal;
}

.item-card_center-properties__value {
  overflow: hidden;
  color: var(--color-black-100);
  text-overflow: ellipsis;
  font-family: Roboto;
}

.item-card_center-showMore {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  width: -moz-max-content;
  width: max-content;
  color: var(--color-violet-90);
  font-family: Roboto;
  font-style: normal;
  cursor: pointer;
}

.item-card_center-showMore .icon-20-arrow {
  transition: transform 0.3s ease-in-out;
  transform: rotate(90deg);
  color: var(--color-black-100);
}

.item-card_right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.item-card_right--code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.item-card_right--code-title,
.item-card_right--code-value {
  color: var(--color-white-50);
  font-family: Roboto;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 2px;
}

.item-card_right--code-value:hover {
  cursor: pointer;
  color: var(--color-violet-90);
}

.item-card_right--code-value:hover svg path {
  fill: var(--color-violet-90);
}

.item-card_right--code__wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.item-card_right--code__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.item-card_right .button-simple {
  border-radius: 8px;
  background: var(--color-white-85);
  color: var(--color-white-60);
}

.item-card_right .button-simple:hover {
  border-radius: 8px;
  background: var(--color-white-85);
  color: var(--color-yellow-100);
}

.item-card_right--cart {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.item-card_right--cart .price {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  align-self: stretch;
  overflow: hidden;
  color: var(--color-black-100);
  text-overflow: ellipsis;
  font-family: Roboto;
  font-style: normal;
}

.item-card_right--cart .button {
  width: 100%;
}

.item-card_right--cart .button span {
  color: var(--color-white-100);
  font-family: Roboto;
  font-style: normal;
}

.item-card_right--cart .buttons-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.item-card_right--link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}

.item-card_right--link a {
  color: var(--color-violet-90);
  font-family: Roboto;
  font-style: normal;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}

.item-card_right--link a:hover {
  font-weight: 700;
}

.item-card.open {
  height: -moz-max-content;
  height: max-content;
}

.item-card.open .item-card_center-showMore .icon-20-arrow {
  transform: rotate(-90deg);
}

.catalog-items__current-type {
  display: flex;
  flex-direction: column;
}

.catalog-items__current-type h1 {
  color: var(--color-black-90);
}

.catalog-items__current-type__annotation {
  color: var(--color-black-100);
  font-family: Roboto;
  font-style: normal;
}

.catalog-items__filter.open {
  z-index: 10000;
}

.catalog-items__filter #vue_catalog_filter .mobile-filter-header span {
  color: var(--color-black-100);
  text-align: center;
  font-family: Roboto;
  font-size: 18px;
  width: -moz-max-content;
  width: max-content;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.18px;
  position: absolute;
  margin: 0 auto;
  right: 0;
  left: 0;
}

.catalog-items__filter #vue_catalog_filter .mobile-filter-header i {
  cursor: pointer;
}

.catalog-items__positions {
  width: 100%;
}

.catalog-items__positions-header {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: var(--color-white-100);
}

.catalog-items__positions-header__controls {
  display: flex;
}

.catalog-items__positions-header__controls-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.catalog-items__positions-header__controls-buttons-button {
  border-radius: 8px;
  border: 1px solid #F5F5F7;
  display: grid;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.catalog-items__positions-header__controls-buttons-button .title_XS {
  color: #26292C;
  opacity: 0.8;
  white-space: nowrap;
}

.catalog-items__positions-header__controls-buttons-button svg {
  height: 100%;
}

.catalog-items__positions-header__controls-buttons-button svg path {
  fill: #9796AA;
}

.catalog-items__positions-header__controls-buttons-button .chip_orange {
  color: var(--color-white-100);
  font-family: Roboto;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  line-height: 120%;
  position: absolute;
  min-width: 28px;
  border: solid 2px var(--color-white-100);
  border-right: 4px;
  padding: 2px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-items__positions-header__controls-buttons-button:hover,
.catalog-items__positions-header__controls-buttons-button.active {
  background: #F5F5F7;
  opacity: 1;
}

.catalog-items__positions-header__controls-buttons-button:hover .title_XS,
.catalog-items__positions-header__controls-buttons-button.active .title_XS {
  color: #100;
}

.catalog-items__positions-header__controls-buttons-button:hover svg path,
.catalog-items__positions-header__controls-buttons-button.active svg path {
  fill: var(--color-violet-90);
}

.catalog-items__positions-header__sort .sort-dropdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.catalog-items__positions-header__sort .sort-dropdown__label {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #121416;
  font-family: Roboto;
  font-style: normal;
}

.catalog-items__positions-header__sort .sort-dropdown__selected {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--color-gray-200);
  border-radius: 4px;
  background: var(--color-white-100);
  transition: border-color 0.3s ease;
  color: #5B35D4;
  font-family: Roboto;
  font-style: normal;
}

.catalog-items__positions-header__sort .sort-dropdown__selected:hover {
  border-color: var(--color-gray-400);
}

.catalog-items__positions-header__sort .sort-dropdown__selected i.icon-20-arrow {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
  color: var(--color-black-100);
}

.catalog-items__positions-header__sort .sort-dropdown__selected.open i {
  transform: rotate(-90deg);
}

.catalog-items__positions-header__sort .sort-dropdown__list {
  position: absolute;
  top: 110%;
  right: 0;
  z-index: 100;
  width: -moz-max-content;
  width: max-content;
}

.catalog-items__positions-header__sort .sort-dropdown__list--title {
  display: none;
}

.catalog-items__positions-header__sort .sort-dropdown__list--title .title_M {
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.18px;
}

.catalog-items__positions-header__sort .sort-dropdown__list .radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-items__positions-header__sort .sort-dropdown__list .button-purple {
  display: none;
}

.catalog-items__positions-header__sort .sort-dropdown__list .sort-option {
  cursor: pointer;
  width: -moz-max-content;
  width: max-content;
  color: var(--color-black-100);
  font-family: Roboto;
  font-style: normal;
  display: flex;
  align-items: center;
}

.catalog-items__positions-header__sort .sort-dropdown__list .sort-option:hover {
  color: var(--color-violet-90);
}

.catalog-items__positions-header__sort .sort-dropdown__list .sort-option.active {
  color: var(--color-violet-90);
}

.catalog-items__positions-header__sort .sort-dropdown__list .sort-option.active .radio {
  border: 5px solid var(--color-violet-90);
}

.catalog-items__positions-header__sort .sort-dropdown__list.hidden {
  display: none;
}

.catalog-items__positions-header__sort .filter-button {
  display: flex;
  align-items: center;
  gap: 4px;
}

.catalog-items__positions-header__sort .filter-button span {
  font-size: 12px;
  font-weight: 400;
  line-height: 135%;
}

.catalog-items__positions-header__sort .filter-button .filter_counter {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-violet-90);
  color: var(--color-white-100);
  font-size: 10px;
  font-weight: 600;
  line-height: 120%;
}

.catalog-items__positions-header__message span {
  overflow: hidden;
  color: #9796AA;
  text-overflow: ellipsis;
  font-family: Roboto;
  font-style: normal;
}

.catalog-items__positions-header__filter-params hr {
  margin: 14px 0;
  border: 1px solid #F5F5F7;
}

.catalog-items__positions-header__filter-params--wrapper {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.catalog-items__positions-header__filter-params .element {
  padding: 12px 24px;
  height: 41px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #EBECFF;
}

.catalog-items__positions-header__filter-params .element span {
  color: #623CDB;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  /* 16.8px */
}

.catalog-items__positions-header__filter-params .element--remove i {
  color: #623CDB;
  font-size: 14px;
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.catalog-items__positions-header__filter-params .button {
  padding: 12px 24px;
  height: 41px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #F5F5F7;
  color: #505050;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 16.8px */
}

.catalog-items__positions-header__filter-params .button i {
  color: #505050;
  font-size: 14px;
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.catalog-items__positions-list {
  display: flex;
  flex-direction: column;
}

.catalog-items__positions .button-paging {
  width: 100%;
}

.catalog-items__positions .button-paging .icon-20-arrow {
  transform: rotate(90deg);
}

.empty-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 16px;
  background: var(--color-white-100);
  padding: 20px;
}

.empty-list .button {
  color: var(--color-white-100);
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 19.2px */
}

@media (min-width: 1401px) {
  .item-card {
    grid-template-columns: 200px auto 270px;
    grid-gap: 16px;
    padding: 20px;
  }

  .item-card_left--badge {
    top: 8px;
    left: 8px;
  }

  .item-card_left--badge__gisp {
    bottom: 8px;
    left: 8px;
    width: 32px;
    height: 32px;
  }

  .item-card_center .title_S {
    font-size: 18px;
    font-weight: 700;
    line-height: 135%;
  }

  .item-card_center .title_XS {
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .item-card_center-properties {
    gap: 4px;
    margin-bottom: 12px;
  }

  .item-card_center-properties__title {
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
  }

  .item-card_center-properties__value {
    font-size: 12px;
    font-weight: 500;
    line-height: 120%;
  }

  .item-card_center-showMore {
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
  }

  .item-card_right {
    padding-left: 34px;
  }

  .item-card_right--code-title,
  .item-card_right--code-value {
    font-size: 10px;
    font-weight: 400;
    line-height: 120%;
  }

  .item-card_right .button-simple {
    width: 42px;
    height: 42px;
    padding: 16px;
  }

  .item-card_right--cart .price {
    font-size: 24px;
    font-weight: 700;
    line-height: 135%;
    letter-spacing: -0.24px;
  }

  .item-card_right--cart .button span {
    font-size: 16px;
    font-weight: 700;
    line-height: 120%;
  }

  .item-card_right--link a {
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
  }

  .catalog-items {
    padding: 40px 0;
  }

  .catalog-items__current-type {
    padding: 32px 0 44px 0;
    gap: 24px;
  }

  .catalog-items__current-type__annotation {
    font-size: 16px;
    font-weight: 400;
  }

  .catalog-items__wrapper {
    display: grid;
    grid-template-columns: 330px auto;
    grid-gap: 28px;
    scroll-margin-top: 44px;
  }

  .catalog-items__filter {
    width: 100%;
    height: -moz-max-content;
    height: max-content;
    padding: 28px;
    border-radius: 16px;
    background: var(--color-white-100);
  }

  .catalog-items__filter #vue_catalog_filter .mobile-filter-header {
    display: none;
  }

  .catalog-items__positions-header {
    padding: 20px;
    gap: 14px;
    margin-bottom: 26px;
  }

  .catalog-items__positions-header__controls {
    align-items: center;
    justify-content: space-between;
  }

  .catalog-items__positions-header__controls-buttons {
    gap: 8px;
  }

  .catalog-items__positions-header__controls-buttons-button {
    gap: 12px;
    padding: 8px 12px;
    width: 216px;
    height: 58px;
    grid-template-columns: 40px auto;
  }

  .catalog-items__positions-header__controls-buttons-button .chip_orange {
    right: -4px;
    top: -4px;
  }

  .catalog-items__positions-header__sort .sort-dropdown {
    position: relative;
  }

  .catalog-items__positions-header__sort .sort-dropdown__label {
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
  }

  .catalog-items__positions-header__sort .sort-dropdown__selected {
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
  }

  .catalog-items__positions-header__sort .sort-dropdown__list--wrapper {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--color-white-100);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
  }

  .catalog-items__positions-header__sort .sort-dropdown__list .sort-option {
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.14px;
    gap: 4px;
  }

  .catalog-items__positions-header__sort .filter-button {
    display: none;
  }

  .catalog-items__positions-header__message span {
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
  }

  .catalog-items__positions-list {
    gap: 12px;
  }

  .catalog-items__positions .button-paging {
    margin-top: 32px;
  }
}

@media (max-width: 833px) {
  .item-card {
    grid-template-columns: 100px auto;
    grid-gap: 16px;
    padding: 12px;
  }

  .item-card_left--badge {
    top: 0;
    left: 0;
  }

  .item-card_left--badge__gisp {
    bottom: 0;
    left: 0;
    width: 24px;
    height: 24px;
  }

  .item-card_center a,
  .item-card_center .title_XS {
    display: none;
  }

  .item-card_center-properties {
    gap: 2px;
    margin-bottom: 8px;
  }

  .item-card_center-properties__title {
    font-size: 10px;
    font-weight: 400;
    line-height: 150%;
  }

  .item-card_center-properties__value {
    font-size: 10px;
    font-weight: 600;
    line-height: 120%;
  }

  .item-card_center-showMore {
    font-size: 10px;
    font-weight: 400;
    line-height: 150%;
  }

  .item-card_right {
    grid-column: 1/-1;
    padding-left: 116px;
  }

  .item-card_right--code {
    display: none;
  }

  .item-card_right .button-simple {
    display: flex;
    width: 36px;
    height: 36px;
    padding: 16px;
  }

  .item-card_right .button-purple {
    height: 36px;
  }

  .item-card_right .button-purple span {
    font-size: 10px;
    font-weight: 700;
    line-height: 120%;
  }

  .item-card_right--cart .price {
    font-size: 14px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.14px;
  }

  .item-card_right--cart .button {
    height: 36px;
  }

  .item-card_right--cart .button span {
    font-size: 10px;
    font-weight: 700;
    line-height: 120%;
  }

  .item-card_right--link a {
    font-size: 12px;
    font-weight: 400;
    line-height: 135%;
  }

  .catalog-items {
    padding: 16px;
  }

  .catalog-items__current-type {
    padding: 16px 0;
    gap: 16px;
  }

  .catalog-items__current-type h1 {
    font-size: 25px;
    font-weight: 800;
    line-height: 25px;
  }

  .catalog-items__current-type__annotation {
    font-size: 10px;
    font-weight: 400;
    line-height: 150%;
  }

  .catalog-items__filter.open {
    height: calc(100vh - 62px);
  }

  .catalog-items__filter.open #vue_catalog_filter {
    width: 100%;
    padding: 20px 16px;
    height: -moz-max-content;
    height: max-content;
  }

  .catalog-items__filter {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    overflow-y: scroll;
    height: 0;
    width: 100vw;
    transition: all 0.3s ease;
    z-index: -1000;
  }

  .catalog-items__filter #vue_catalog_filter .mobile-filter-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    position: relative;
  }

  .catalog-items__filter #vue_catalog_filter .button-purple {
    position: sticky;
    bottom: 20px;
    width: calc(100% - 33px);
  }

  .catalog-items__filter #vue_catalog_filter .reset-button {
    display: none;
  }

  .catalog-items__positions-header {
    padding: 12px;
    gap: 12px;
    margin-bottom: 12px;
  }

  .catalog-items__positions-header__controls {
    flex-direction: column-reverse;
    gap: 12px;
  }

  .catalog-items__positions-header__controls-buttons {
    gap: 16px;
  }

  .catalog-items__positions-header__controls-buttons-button {
    gap: 8px;
    padding: 4px 8px;
    width: 50%;
    height: 36px;
    grid-template-columns: 28px auto;
  }

  .catalog-items__positions-header__controls-buttons-button .title_XS {
    font-size: 12px;
    font-weight: 600;
    line-height: 135%;
  }

  .catalog-items__positions-header__controls-buttons-button .chip_orange {
    right: -6px;
    top: -6px;
  }

  .catalog-items__positions-header__sort {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .catalog-items__positions-header__sort .sort-dropdown__label {
    font-size: 12px;
    font-weight: 500;
    line-height: 120%;
  }

  .catalog-items__positions-header__sort .sort-dropdown__selected {
    font-size: 12px;
    font-weight: 400;
    line-height: 135%;
  }

  .catalog-items__positions-header__sort .sort-dropdown__list {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    top: unset;
    bottom: 0;
    z-index: 100000;
    background: none;
    position: fixed;
    background: rgba(38, 41, 44, 0.4);
    backdrop-filter: blur(5px);
  }

  .catalog-items__positions-header__sort .sort-dropdown__list--wrapper {
    background: var(--color-white-100);
    width: 100vw;
    height: -moz-max-content;
    height: max-content;
    padding: 28px 20px 32px 20px;
    border-radius: 20px 20px 0 0;
  }

  .catalog-items__positions-header__sort .sort-dropdown__list--title {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .catalog-items__positions-header__sort .sort-dropdown__list .button-purple {
    display: flex;
    margin-top: 40px;
    width: 100%;
    color: var(--color-white-100);
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 135%;
    padding: 16px 28px;
  }

  .catalog-items__positions-header__sort .sort-dropdown__list .sort-option {
    font-size: 14px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.14px;
    padding: 20px 0 19px 0;
    border-bottom: 1px solid var(--color-white-80);
    width: 100%;
    gap: 8px;
  }

  .catalog-items__positions-header__sort .sort-dropdown__list .sort-option:last-child {
    border-bottom: none;
  }

  .catalog-items__positions-header__message span {
    font-size: 8px;
    font-weight: 400;
    line-height: 120%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: stretch;
  }

  .catalog-items__positions-header__filter-params {
    display: none;
  }

  .catalog-items__positions-list {
    gap: 12px;
  }

  .catalog-items__positions .button-paging {
    margin-top: 12px;
  }
}

@media (min-width: 834px) and (max-width: 1400px) {
  .item-card {
    grid-template-columns: 200px auto 270px;
    grid-gap: 16px;
    padding: 12px;
  }

  .item-card_left--badge {
    top: 8px;
    left: 8px;
  }

  .item-card_left--badge__gisp {
    bottom: 8px;
    left: 8px;
    width: 24px;
    height: 24px;
  }

  .item-card_center .title_S {
    font-size: 14px;
    font-weight: 700;
    line-height: 135%;
  }

  .item-card_center .title_XS {
    font-size: 10px;
    font-weight: 400;
    line-height: 135%;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }

  .item-card_center-properties {
    gap: 4px;
    margin-bottom: 12px;
  }

  .item-card_center-properties__title {
    font-size: 10px;
    font-weight: 400;
    line-height: 135%;
  }

  .item-card_center-properties__value {
    font-size: 10px;
    font-weight: 700;
    line-height: 120%;
  }

  .item-card_center-showMore {
    font-size: 10px;
    font-weight: 400;
    line-height: 135%;
  }

  .item-card_right {
    padding-left: 34px;
  }

  .item-card_right--code-title,
  .item-card_right--code-value {
    font-size: 12px;
    font-weight: 400;
    line-height: 135%;
  }

  .item-card_right .button-simple {
    width: 36px;
    height: 36px;
    padding: 16px;
  }

  .item-card_right .button-purple {
    height: 36px;
  }

  .item-card_right .button-purple span {
    font-size: 10px;
    font-weight: 700;
    line-height: 120%;
  }

  .item-card_right--cart .price {
    font-size: 20px;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: -0.2px;
  }

  .item-card_right--cart .button span {
    font-size: 10px;
    font-weight: 700;
    line-height: 120%;
  }

  .item-card_right--link a {
    font-size: 12px;
    font-weight: 400;
    line-height: 135%;
  }

  .catalog-items {
    padding: 20px;
  }

  .catalog-items__current-type {
    padding: 20px 0;
    gap: 20px;
  }

  .catalog-items__current-type h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 32px;
  }

  .catalog-items__current-type__annotation {
    font-size: 10px;
    font-weight: 400;
    line-height: 135%;
  }

  .catalog-items__filter.open {
    width: 100vw;
    background: rgba(38, 41, 44, 0.4);
    backdrop-filter: blur(5px);
  }

  .catalog-items__filter.open #vue_catalog_filter {
    width: 48vw;
    height: -moz-max-content;
    height: max-content;
    padding: 20px 16px 50px 16px;
    background: var(--color-white-100);
  }

  .catalog-items__filter {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    overflow-y: scroll;
    height: 100vh;
    width: 0;
    transition: all 0.3s ease;
    z-index: -1000;
  }

  .catalog-items__filter #vue_catalog_filter .mobile-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
  }

  .catalog-items__filter #vue_catalog_filter .mobile-filter-header .reset-button {
    display: block;
  }

  .catalog-items__filter #vue_catalog_filter .button-purple {
    position: sticky;
    bottom: 20px;
    width: calc(48vw - 33px);
  }

  .catalog-items__filter #vue_catalog_filter .reset-button {
    display: none;
  }

  .catalog-items__positions-header {
    padding: 12px;
    gap: 12px;
    margin-bottom: 16px;
  }

  .catalog-items__positions-header__controls {
    flex-direction: column-reverse;
    gap: 12px;
  }

  .catalog-items__positions-header__controls-buttons {
    gap: 12px;
  }

  .catalog-items__positions-header__controls-buttons-button {
    gap: 8px;
    padding: 8px 12px;
    width: 188px;
    height: 44px;
    grid-template-columns: 28px auto;
  }

  .catalog-items__positions-header__controls-buttons-button .title_XS {
    font-size: 12px;
    font-weight: 600;
    line-height: 135%;
  }

  .catalog-items__positions-header__controls-buttons-button .chip_orange {
    right: -6px;
    top: -6px;
  }

  .catalog-items__positions-header__sort {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .catalog-items__positions-header__sort .sort-dropdown {
    position: relative;
  }

  .catalog-items__positions-header__sort .sort-dropdown__label {
    font-size: 12px;
    font-weight: 500;
    line-height: 120%;
  }

  .catalog-items__positions-header__sort .sort-dropdown__selected {
    font-size: 12px;
    font-weight: 400;
    line-height: 135%;
  }

  .catalog-items__positions-header__sort .sort-dropdown__list--wrapper {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--color-white-100);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
    gap: 16px;
    padding: 12px;
    border-radius: 20px;
  }

  .catalog-items__positions-header__sort .sort-dropdown__list .sort-option {
    font-size: 10px;
    font-weight: 700;
    line-height: 120%;
    gap: 4px;
  }

  .catalog-items__positions-header__message:not(.tablet_only) {
    display: none;
  }

  .catalog-items__positions-header__message span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    flex: 1 0 0;
    font-size: 10px;
    font-weight: 400;
    line-height: 135%;
  }

  .catalog-items__positions-header__filter-params {
    display: none;
  }

  .catalog-items__positions-list {
    gap: 18px;
  }

  .catalog-items__positions .button-paging {
    margin-top: 18px;
  }
}
/*# sourceMappingURL=items.css.map */
