#prices-block.prices-block {
  width: 100%;
  margin-top: 28px;
}

#prices-block .prices-block__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin: 0 auto;
}

#prices-block .prices-block__section {
  overflow: hidden;
  padding: 0 0 24px;
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

#prices-block .prices-block__section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

#prices-block .prices-block__section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 1px solid rgba(220, 38, 38, 0.75);
  border-radius: 8px;
  background: rgba(220, 38, 38, 0.14);
}

#prices-block .prices-block__section-icon-img {
  display: block;
  max-width: 30px;
  max-height: 30px;
  object-fit: contain;
}

#prices-block .prices-block__section-title {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.65);
}

#prices-block .prices-block__section-subtitle {
  margin: 5px 0 0;
  color: #bdbdbd;
  font-size: 15px;
  line-height: 1.45;
}

#prices-block .prices-block__rows {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(220, 38, 38, 0.38);
  border-radius: 8px;
  background: rgba(5, 7, 7, 0.32);
  overflow: hidden;
}

#prices-block .prices-block__table-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 230px);
  border-bottom: 1px solid rgba(220, 38, 38, 0.42);
  background:
    linear-gradient(180deg, rgba(220, 38, 38, 0.16), rgba(220, 38, 38, 0.05)),
    #111212;
}

#prices-block .prices-block__table-head-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

#prices-block .prices-block__table-head-cell--price {
  border-left: 1px solid rgba(220, 38, 38, 0.38);
}

#prices-block .prices-block__table-head-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #ff2f2f;
}

#prices-block .prices-block__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 230px);
  gap: 0;
  align-items: stretch;
  min-height: 56px;
  border-bottom: 1px solid rgba(220, 38, 38, 0.28);
}

#prices-block .prices-block__row:last-child {
  border-bottom: 0;
}

#prices-block .prices-block__row-name {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: #f3f3f3;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

#prices-block .prices-block__row-value {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 16px;
  border-left: 1px solid rgba(220, 38, 38, 0.32);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  white-space: nowrap;
}

#prices-block.prices-block--empty {
  padding: 24px;
  border: 1px solid rgba(220, 38, 38, 0.45);
  border-radius: 8px;
  background: #181818;
  color: #fff;
}

@media (max-width: 640px) {
  #prices-block .prices-block__section {
    padding: 18px;
  }

  #prices-block .prices-block__section-title {
    font-size: 21px;
  }

  #prices-block .prices-block__table-head,
  #prices-block .prices-block__row {
    grid-template-columns: 1fr;
  }

  #prices-block .prices-block__table-head-cell--price,
  #prices-block .prices-block__row-value {
    border-left: 0;
    border-top: 1px solid rgba(220, 38, 38, 0.24);
    white-space: normal;
  }
}
