/* content.css
 * Стандартные стили контента сайта (таблицы, изображения)
 *
 */

.b-content {
    padding-top: 32px;
}

.b-content td {
    vertical-align: top;
}

.b-table {
    margin: 30px 0;
    border: none !important;
}

    .b-table th,
    .b-table td {
        border: 0 !important;
        padding: 13px 18px !important;
    }

.passage .b-table th,
.passage .b-table td {
    background-color: #244640;
}

.passage .b-table tr:nth-of-type(2n) td {
    background-color: #162b27;
}

.grinvich .b-table th,
.grinvich .b-table td {
    background-color: #2d3c55;
}

.grinvich .b-table tr:nth-of-type(2n) td {
    background-color: #152744;
}

ul.b-list {
    padding-left: 0;
    list-style-type: none
}
    ul.b-list li {
        padding-left: 25px;
        margin-bottom: 10px;
        position: relative
    }
        ul.b-list li:before {
            content: "";
            position: absolute;
            left: 4px;
            top: 8px;
            width: 4px;
            height: 4px;
            background-color: #dcbb25;
            border-radius: 100px;
            display: block
        }