.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);
}

@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%;
  }
}

@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%;
  }
}

@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%;
  }
}
/*# sourceMappingURL=item_card.css.map */
