.item {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid #f1f1f1;
  margin-top: 15px;

  &.string_item {
    padding-bottom: 0;
    border-bottom: unset;

    .info {
      width: auto !important;
    }
  }
}

.wrapper {
}
.img {
  width: 84px;
  height: 84px;
  margin-right: 13px;
  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.title {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
.price {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 19px;
  color: #434343;
  margin: 10px 0;
}
.info {
  margin-right: 12px;
  width: calc(100% - 45px - 84px - 90px);
}
.number {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  color: #000000;
  margin: 0px 20px;
}

.hint {
  opacity: 0;
  display: none;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 130%;
  color: #ed1b34;

  &.active {
    opacity: 1;
    display: flex;
  }
}

.remove {
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;

  &::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 6px;
    height: 2px;
    width: 18px;
    background: #000;
  }
}
.content {
  width: 90px;
}
.add {
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;

  &::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 6px;
    height: 2px;
    width: 18px;
    background: #000;
  }

  &:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 6px;
    height: 18px;
    width: 2px;
    background: #000;
  }
}

.total {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.quantity {
  display: flex;
  align-items: center;
}
@media (max-width: 1600px) {
  .img {
    width: 44px;
    height: 44px;
  }
  .info {
    width: calc(100% - 44px - 90px);
  }
}

@media (max-width: 1024px) {
  .item {
    position: relative;
    width: 100%;
    padding-right: 100px;
  }
  .content {
    position: absolute;
    right: 0;
  }
  .title {
    font-size: 16px;
  }
}

@media (max-width: 470px) {
  .content {
    position: relative;
  }
  .item {
    padding-right: 0;
    justify-content: space-between;
  }
  .img {
    width: 34px;
    height: 34px;
    margin: 0;
    margin-left: -20px;
  }
  .title {
    font-size: 14px;
  }
  .price {
    font-size: 14px;
  }
  .info {
    width: calc(100% - 44px - 150px);
  }
}
