/*Таблица*/
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    width: 100%;
    margin-bottom: 15px;
}

tbody, td, tfoot, th, thead, tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

.table > :not(caption) > * > * {
    padding: 8px;
    border-bottom-width: 1px;
    border-color: #dee2e6;
}

.table a:hover {
    color: var(--orange-color);
}

/*Документы*/
.service__notifications {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-bottom: 40px;
}

.service__notifications-item {
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
    padding: 16px 32px;
    margin-bottom: 2%;
    border: 1px solid #009fc2;
    border-radius: 12px;
}

.service__notifications-item:nth-child(odd) {
    margin-right: 2%;
}

.service__notifications-item_info p,
.service__notifications-item_info-description {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;

    color: #041229;
}

.service__notifications-item_info-description a {
    text-decoration: underline;
    transition: all 0.5s ease;
}

.service__notifications-item_info-description a:hover {
    color: var(--orange-color);
}
