/**
 * Product Quantity Styles
 * Стили для селекторов количества инверторов
 */

.quantity-group {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 80px;
  margin: 1rem 0;
}

.quantity-group:nth-child(2) {
  border-top: 1px solid #A4A4A4;
  border-bottom: 1px solid #A4A4A4;
  padding: 1rem 0;
}

.quantity-group-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quantity-group-left p {
  font-size: 14px;
  font-weight: bold;
  color: #008004;
}

.quantity-group-right {
  display: flex;
  gap: 20px;
}

.quantity-group-right span {
  font-weight: bold;
}