.table {
    width: 100%;
    background: #FFFFFF;
    margin: 1em 0;
    border: 1px solid rgba(34, 36, 38, 0.15);
    -webkit-box-shadow: none;
    box-shadow: none;
    text-align: left;
    color: rgba(0, 0, 0, 0.87);
    border-collapse: separate;
    border-spacing: 0;
}

.table:first-child {
    margin-top: 0;
}

.table:last-child {
    margin-bottom: 0;
}

/* Table Content */
.table th,
.table td {
    -webkit-transition: background 0.1s ease, color 0.1s ease;
    transition: background 0.1s ease, color 0.1s ease;
}

.table tr td {
    border-left: 1px solid rgba(34, 36, 38, .1);
}

.table tr td:first-child {
    border-left: none;
}

/* Headers */
.table thead {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.table thead th {
    cursor: auto;
    background: #F3F3F3;
    text-align: inherit;
    color: rgba(0, 0, 0, 0.87);
    padding: 0.92857143em 0.78571429em;
    vertical-align: inherit;
    font-style: unset;
    font-weight: bold;
    text-transform: none;
    border-bottom: 1px solid rgba(34, 36, 38, 0.1);
    border-left: 1px solid rgba(34, 36, 38, .1);
}

.table thead tr > th:first-child {
    border-left: none;
}

.table thead tr:first-child > th:first-child {

}

.table thead tr:first-child > th:last-child {

}

.table thead tr:first-child > th:only-child {

}

/* Footer */
.table tfoot {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.table tfoot th {
    cursor: auto;
    border-top: 1px solid rgba(34, 36, 38, 0.15);
    background: #F9FAFB;
    text-align: inherit;
    color: rgba(0, 0, 0, 0.87);
    padding: 0.78571429em 0.78571429em;
    vertical-align: middle;
    font-style: normal;
    font-weight: normal;
    text-transform: none;
}

.table tfoot tr > th:first-child {
    border-left: none;
}

.table tfoot tr:first-child > th:first-child {

}

.table tfoot tr:first-child > th:last-child {

}

.table tfoot tr:first-child > th:only-child {

}

/* Table Row */
.table tr td {
    border-top: 1px solid rgba(34, 36, 38, 0.1);
}

.table tr:first-child td {
    border-top: none;
}

/* Repeated tbody */
.table tbody + tbody tr:first-child td {
    border-top: 1px solid rgba(34, 36, 38, 0.1);
}

/* Table Cells */
.table td {
    padding: 0.78571429em 0.78571429em;
    text-align: inherit;
}

/*--------------
 Text Alignment
---------------*/

.table[class*="left aligned"],
.table [class*="left aligned"] {
    text-align: left;
}

.table[class*="center aligned"],
.table [class*="center aligned"] {
    text-align: center;
}

.table[class*="right aligned"],
.table [class*="right aligned"] {
    text-align: right;
}

/*------------------
 Vertical Alignment
------------------*/

.table[class*="top aligned"],
.table [class*="top aligned"] {
    vertical-align: top;
}

.table[class*="middle aligned"],
.table [class*="middle aligned"] {
    vertical-align: middle;
}

.table[class*="bottom aligned"],
.table [class*="bottom aligned"] {
    vertical-align: bottom;
}
