table.table-price {
    width: 100%;
    font-family: 'Rubik', Arial, sans-serif;
    text-align: left;
    border-collapse: collapse; /* Убираем отступы между ячейками */
    border-spacing: 0;
}

table.table-price thead {
    color: red;
    background-color: transparent;
}

table.table-price thead tr {
    color: red;
    background-color: transparent !important;
}

table.table-price tr:nth-child(2n-1) {
    background-color: #ff000066;
    border-radius: 10px; /* Радиус для углов */
    overflow: hidden; /* Обрезаем границы */
}

table.table-price thead tr th,
table.table-price tr td {
    padding: 20px 40px;
}

/* Радиус углов для первой и последней ячейки в нечётных строках */
table.table-price tr:nth-child(2n-1) td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

table.table-price tr:nth-child(2n-1) td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}


.uc-breadcrumbs .t396 {
    margin: 0 5% !important;
    margin-bottom: -50px !important;
}