/* ================================
   Styled Table
================================ */

.styled-table-wrap {
    margin: 24px 0;
    overflow-x: auto;
    border: 1px solid #e5e8ef;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(19, 35, 60, 0.03);
}

.styled-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: 15px;
    line-height: 1.55;
    color: #41506A;
}

.styled-table th,
.styled-table td {
    padding: 16px 18px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #edf0f5;
}

.styled-table thead th {
    font-weight: 600;
    color: #13233C;
    background: #f8fafc;
}

.styled-table tbody th {
    font-weight: 600;
    color: #13233C;
    background: #ffffff;
}

.styled-table tbody tr:last-child th,
.styled-table tbody tr:last-child td {
    border-bottom: none;
}


/* Highlighted column */

.styled-table .is-highlighted-column {
    background: #fff5f7;
}

.styled-table thead .is-highlighted-column {
    color: #13233C;
    background: #ffe6ec;
}

.styled-table tbody .is-highlighted-column {
    font-weight: 600;
    color: #13233C;
}

.styled-table tbody th.is-highlighted-column {
    background: #fff5f7;
}


/* Mobile */

@media (max-width: 767px) {
    .styled-table-wrap {
        margin: 20px 0;
        border-radius: 12px;
    }

    .styled-table {
        min-width: 680px;
        font-size: 14px;
    }

    .styled-table th,
    .styled-table td {
        padding: 14px 16px;
    }
}