.table {
    margin: 20px auto;
    width: 90%;
    border-spacing: 0;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 10px;
    background-color: #12192c;
}

.table th {
    font-weight: 300;
    font-size: 16px;
    color: #FDC830;
    line-height: 26px;
    padding: 18px 30px;
}

.table thead tr {
    background: #12192c;

}

.table td {
    padding: 30px 10px;
    font-weight: 300;
    font-size: 16px;
    color: black-2;
    line-height: 26px;
    text-transform: uppercase;
    color: #fff
}

.table tbody tr:nth-child(odd) {
    background: #002147;
}

.table tbody tr:nth-child(even) {
    background: #12192c;
}

.table__wrapper {
    padding-top: 40px;
}

@media (max-width: 768px) {
    .table td {
        display: block;
        text-align: right;
    }

    .table td:before {
        content: attr(data-label);
        float: left;
        text-transform: uppercase;
        font-weight: bold;
    }

    .table thead display none tr {
        margin-bottom: 30px;
        display: block;
    }
}