.checkout-timeline{
    color: #000;
    position: relative;
    display: block;
    background: #BDBDBD;
}

/* ---- Begin Timeline ---- */
ol.checkout-timeline {
    margin: 50px 80px;
    height: 2px;
    background: #BDBDBD;
    padding-left: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* ---- Timeline elements ---- */
.checkout-timeline li {
    list-style-type: none;
    width: 3em;
    height: 3em;
    border: 10px solid #BDBDBD;
    border-radius: 50px;

    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
}
.checkout-timeline li .point {
    content: "";
    width: 1.33em;
    /*height: 1.36em;*/
    border-radius: 50px;
    background: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 140%;
    margin-bottom: 35%;
    line-height: 130%;
}

.checkout-timeline li .diplome {
    font-weight: 500;
    font-size: 80%;
    text-transform: uppercase;
    color: #BDBDBD;
}

.checkout-timeline li.active{
    border: 10px solid #56CCF2;
}

.checkout-timeline li.active p{
    font-size: 110%;
}

.checkout-timeline li.active .diplome{
    color: #56CCF2;
}

.checkout-timeline li.success{
    border: 10px solid #4AD46E;
}

.checkout-timeline li.success .diplome{
    color: #4AD46E;
}
/* ---- End Timeline ---- */

@media (max-width: 768px) {
    ol.checkout-timeline {
        background: transparent;
        justify-content: center;
    }

    .checkout-timeline li:not(.active){
        display: none;
    }
}