

/* Start:/price/style.css?17818652952198*/
.col-md-9.col-sm-12.col-xs-12.content-md {
  width: 100% !important;
}

.price-container {
  margin: 0 auto;
}

.page-title {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
  font-size: 28px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.section {
  border: 2px solid #0dbc91;
  border-radius: 10px;
  overflow: hidden;
  background: white;
}

.section-header {
  background: #0dbc91;
  color: white;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.section-header:hover {
  background: #0aa57d;
}

.section-header::after {
  content: '▼';
  font-size: 16px;
  transition: transform 0.3s ease;
}

.section-header.active::after {
  transform: rotate(180deg);
}

.section-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.section-content.active {
  max-height: 5000px;
}

.items-container {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.item-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
  gap: 20px;
}

.item-row:last-child {
  border-bottom: none;
}

.item-row:hover {
  background: #f9f9f9;
}

.item-name {
  flex: 1;
  font-size: 16px;
}

.item-price {
  color: #0dbc91;
  font-weight: bold;
  font-size: 18px;
  white-space: nowrap;
  min-width: 120px;
  text-align: right;
}

.item-info {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-top: 5px;
}

.no-items {
  padding: 20px;
  text-align: center;
  color: #666;
  font-style: italic;
}

/* Адаптивность */
@media (max-width: 768px) {
  body {
      padding: 10px;
  }
  
  .page-title {
      font-size: 24px;
  }
  
  .section-header {
      padding: 15px;
      font-size: 18px;
  }
  
  .item-row {
      padding: 12px 15px;
      flex-direction: column;
      gap: 8px;
  }
  
  .item-price {
      text-align: left;
  }
}
/* End */
/* /price/style.css?17818652952198 */
