.category-container {
  width: 100%;
  margin-bottom: 40px;
}

.category-items{
  padding: 40px 35px;
  border: 1px solid #DFE4EB;
  border-radius: 14px;
  background: white;
  overflow: auto;
}

.avatar img {
  width: 52px;
  height: 52px;
  border-radius: 50%;

}

.rating {
  background-color: #EAEFFC;
  font-size: 12px;
  border-radius: 80px;
  display: flex;
  padding: 8px;
  gap: 6px;
}

.category__about {
  min-width: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-color: rgba(120, 131, 148, 0.2);
}

.category__info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  margin-left: 8px;
}

.category__text {
  font-weight: 700;
  font-size: 16px;
  color: #27AA34;
}

.category__description {
  position: relative;
  z-index: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  margin: 5px 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 110%;
  color: #282828;
}

.category__subject {
  margin-top: 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid #788394;
  border-color: rgba(120, 131, 148, 0.2);
  color: #788394;
  font-size: 12px;
}

.info-discount {
  display: flex;
  gap: 3px;
  margin-top: 2px;
}

.info-discount .circle {
  width: 28px;
  height: 22px;
  margin-top: 2px;
  text-align: center;
  border-radius: 50%;
  padding-top: 4px;
}

.info-discount .circle.red {
  background: #eb5757;
}

.category__statistics{
  display: flex;
  gap: 35px;
  margin: 0 35px;
  align-items: center;
}
.statistic__item{
  font-weight: 700;
  font-size: 16px;
  line-height: 110%;
  color: #282828;
  white-space: nowrap;
}

.text_price .amount {
  margin-right: 4px;
}

.category__price {
  display: flex;
  font-weight: 700;
  font-size: 16px;
  line-height: 110%;
  color: #282828;
  flex-direction: column;
  align-items: center;
}

.category__price .price {
  display: flex;
  align-items: center;
  color: #27AA34;
}
.category__format .select{
  width: 100px;
  height: 30px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  padding: 0px 10px;
  border-radius: 12px;
  margin-top: 4px;
}
.action-buy {
  cursor: pointer;
}

.category__price .format {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  opacity: 1;
}

.category__price .format__title {
  font-size: 12px;
  color: #808080;
}

.category__price .quantity {
  display: flex;
  align-items: center;
  padding: 4px 0;
  margin-bottom: 8px;
  border-top: 1px solid #788394;
  border-bottom: 1px solid #788394;
  border-color: rgba(120, 131, 148, 0.2);
  gap: 5px;
}

@media (max-width: 980px) {
  .category {
    flex-wrap: wrap;
  }

  .category__info {
    /*width: calc(100% - 100px);*/
    flex: 5;
    margin-bottom: 10px;
  }

  .category__statistics {
    order: 4;
    flex: unset;
    width: 100%;
    margin: 10px;
  }

  .category__price {
    order: 3;
    flex: 2;
  }
}


@media (max-width: 550px) {
  .category__about {
    flex: 1;
  }

  .category__info {
    /*width: calc(100% - 100px);*/
    flex: 7;
    margin-bottom: 10px;
  }

  .category__statistics {
    order: 3;
  }

  .category__price {
    order: 4;
    width: 100%;
  }
  .category__price .price{
    width: 100%;
    padding: 12px 8px;
  }
  .category__price div {
    width: 100%;
  }
}
.channel__info{
  display: flex;
  max-width: 340px;
}
.channel__price{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}