@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700");

.table {
    width: 100%;
    border: 1px solid #EEEEEE;
}

.table-header {
    display: flex;
    width: 100%;
    background: #000;
    padding: 18px 0;
    color: #f15d30;
}

.table-row {
    display: flex;
    width: 100%;
    padding: 18px 0;
}

.table-row:nth-of-type(odd) {
    background: #EEEEEE;
}

.table-data, .header__item {
    flex: 1 1 20%;
    text-align: left;
    margin-left: 10px;
}

.header__item {
    text-transform: uppercase;
}