body {
    background: #fff;
}

h1 {
    text-align: center;
    text-transform: uppercase;
    font-size: 2em;
    color: #b42b2d;
}

.container {
    width: 1200px;
    margin: auto;
}

.timeline {
    counter-reset: test 0;
    position: relative;
}

.timeline li {
    list-style: none;
    float: left;
    width: 25%;
    position: relative;
    text-align: center;
    text-transform: uppercase;
}

ul:nth-child(1) {
    color: #b42b2d;
}

.timeline li:before {
    counter-increment: test;
    content: counter(test);
    width: 50px;
    height: 50px;
    border: 3px solid #b42b2d;
    border-radius: 50%;
    display: block;
    text-align: center;
    line-height: 50px;
    margin: 0 auto 10px auto;
    background: #fff;
    color: #000;
    transition: all ease-in-out 0.3s;
    cursor: pointer;
}

.timeline li:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: grey;
    top: 25px;
    left: -50%;
    z-index: -999;
    transition: all ease-in-out 0.3s;
}

.timeline li:first-child:after {
    content: none;
}

.timeline li.active-tl {
    color: #555555;
}

.timeline li.active-tl:before {
    background: #b42b2d;
    color: #f1f1f1;
}

.timeline li.active-tl + li:after {
    background: #b42b2d;
}

.styled-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.styled-table thead tr {
    background-color: #b42b2d;
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #b42b2d;
}

.styled-table tbody tr.active-row {
    font-weight: bold;
    color: #b42b2d;
}
