.progress {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}

.progress > div {
    flex: 1;
    text-align: center;
    position: relative;
}

.progress a,
.progress label {
    display: block;
}

.progress a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #FFF1;
    border: 1px solid #ED1E26;
    border-radius: 50%;
    text-decoration: none;
    vertical-align: middle;
}

.progress a.disabled {
    background-color: #213159;
    color: #999;
    cursor: default;
}

.progress a.current {
    font-weight: bold;
    border-width: 3px;
    margin-top: -2px;
}

.progress a.current,
.progress a:hover:not(.disabled) {
    background-color: #FFF;
    color: #213159;
}

.progress a.current { cursor: default; }

.progress a:hover:not(.disabled) { cursor: pointer; }

.progress div:not(:first-child)::before,
.progress div:not(:last-child)::after {
    position: absolute;
    top: 20px;
    display: block;
    content: '';
    width: calc(50% - 20px);
    height: 1px;
    background-color: #ED1E26;
}

.progress div:not(:first-child)::before {
    right: calc(50% + 20px);;
}

.progress div:not(:last-child)::after {
    left: calc(50% + 20px);
}