.list-group-item.active {
    background: #ffc107;
}

/* end common class */
.top-status ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.top-status ul li {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border: 8px solid #ddd;
    box-shadow: 1px 1px 10px 1px #ddd inset;
    margin: 10px 5px;
}

.top-status ul li.active {
    border-color: #ffc107;
    box-shadow: 1px 1px 20px 1px #ffc107 inset;
}

/* end top status */

ul.claimtimeline {
    list-style-type: none;
    position: relative;
    padding-left: 40px;
}

ul.claimtimeline:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 400;
}

ul.claimtimeline>li {
    margin: 20px 0;
    padding-left: 30px;
}

ul.claimtimeline>li:before {
    content: '\2713';
    background: #fff;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 0;
    left: 5px;
    width: 50px;
    height: 50px;
    z-index: 400;
    text-align: center;
    line-height: 50px;
    color: #d4d9df;
    font-size: 24px;
    border: 2px solid #d4d9df;
}

ul.claimtimeline>li.active:before {
    content: '\2713';
    background: #28a745;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 0;
    left: 5px;
    width: 50px;
    height: 50px;
    z-index: 400;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-size: 30px;
    border: 2px solid #28a745;
}

/* end timeline */

.claim-status-timeline {
    position: relative;
}

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

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

.claim-status-timeline li:before {
    font-family: "FontAwesome";
    font-size: 20px;
    content: "\f111";
    width: 50px;
    height: 50px;
    border: 1px solid #6c5ffc;
    border-radius: 50%;
    display: block;
    text-align: center;
    line-height: 50px;
    margin: 0 auto 10px auto;
    background: #fff;
    color: #6c5ffc;
    transition: all ease-in-out .3s;
    cursor: pointer;
}

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

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

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

.claim-status-timeline li.active-tl:before {
    background: #6c5ffc;
    color: #F1F1F1;
    font-size: 20px;
}

.claim-status-timeline li.active-tl+li:after {
    background: #6c5ffc;
}