

/* Start:/price/style.css?17440258973701*/
/* Стиль для таблицы */
.price-table {
    width: 100%;
    border-collapse: collapse; /* Убирает промежутки между ячейками */
    border: 2px solid #ddd; /* Добавляем рамку вокруг таблицы */
}

/* Стиль для заголовков */
.price-table th {
    background-color: #f8f8f8;
    color: #333;
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid #ddd;
}

/* Стиль для ячеек таблицы */
.price-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    word-wrap: break-word;
    white-space: pre-wrap;
    font-family: Arial, sans-serif;
}

/* Центрирование текста в ячейках для заголовков с классом "center" */
.price-table th.center,
.price-table td.center {
    text-align: center;
vertical-align: middle;
}

/* Стиль для строк таблицы при наведении */
.price-table tr:hover {
    background-color: #f1f1f1;
}

/* Полная рамка для всей таблицы */
.price-table,
.price-table th,
.price-table td {
    border: 1px solid #ddd; /* Добавляем границу ко всем элементам */
}

/* Добавим отступы между строками таблицы */
.price-table tr {
    margin-bottom: 5px;
}

.price-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    color: #fff;
    background-color: #008000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.price-button:hover {
    background-color: #006400;
}

.table-number {
    text-align: right;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.detail_text {
margin-bottom: 25px;
font-size: 13px;
line-height: 22px;
}

.detail_text ul {
list-style: none;
margin-bottom: 30px;
padding-left: 10px;
}

.detail_text li {
margin-bottom: 8px;
padding-left: 10px;
position: relative;
color: #3b3b3b;
font-size: 13px;
line-height: 18px;
}

.detail_text li:before {
content: "";
width: 5px;
height: 5px;
position: absolute;
top: 8px;
left: 0px;
}

.detail_text h2 {
margin-bottom: 20px;
}

.detail_text h4 {
margin-bottom: 15px;
color: #494949;
font-size: 14px;
}

/* Контейнер для карточек */
.price-cards {
    display: none; /* Скрыто по умолчанию */
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* Карточка с ценами */
.price-card {
    border: 1px solid #ddd;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px;
    border-radius: 5px;
}

.price-card .config {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.price-card .price {
    margin-bottom: 5px;
}
.sub-config {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
}
/* Стили для мобильных устройств */
@media (max-width: 600px) {
    /* Показываем карточки только на мобильных устройствах */
    .price-cards {
        display: flex;
    }

    /* Скрываем таблицу на мобильных устройствах */
    .price-table {
        display: none;
    }
}

.highlighted {
    font-size: 18px; /* Размер шрифта */
    font-weight: bold; /* Полужирный шрифт */
    background-color: #f0f0f0; /* Цвет фона */
    padding: 10px; /* Отступы вокруг текста */
    margin-bottom: 15px; /* Отступ снизу */
    border-radius: 5px; /* Скругленные углы */
}
/* End */
/* /price/style.css?17440258973701 */
