.sameHeight {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

ul#checkout_steps {
    list-style: none;
    text-align: center;
    margin: 20px 0 60px;
    padding: 0;
}

ul#checkout_steps .circle {
    background: #9A9A9A;
    display: block;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    padding: 18px 0;
    fill: #FFF;
    margin: auto;
}

ul#checkout_steps li {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0 10px;
    position: relative;
}

ul#checkout_steps li a {
    display: block;
    pointer-events: none;
}

ul#checkout_steps .title {
    display: block;
    margin-top: 20px;
    max-width: 150px;
    margin: 20px auto 0;
    font-size: 18px;
    line-height: 1.2;
}

ul#checkout_steps .ativo .circle {
    background: #A1001D;
}

ul#checkout_steps li a:before {
    content: '';
    border-bottom: dashed 2px #E1E1E1;
    display: block;
    left: calc(50% + 55px);
    top: 34px;
    position: absolute;
    width: calc(100% - 110px);
}

ul#checkout_steps li:last-child a:before {
    display: none;
}

ul#checkout_steps li a.old {
    pointer-events: all;
}

ul#checkout_steps .old .circle {
    background: #D22B44;
}

#checkout_steps svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    ul#checkout_steps .circle {
        width: 50px;
        height: 50px;
        padding: 13px 0;
    }

    ul#checkout_steps li a:before {
        top: 25px;
        left: calc(50% + 35px);
        width: calc(100% - 70px);
    }

    ul#checkout_steps .title {
        display: none;
    }

    ul#checkout_steps .ativo .title {
        display: block;
        font-size: 14px;
        font-weight: 600;
        margin: 10px 0 0;
        color: #606060;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        max-width: 170px;
    }

    ul#checkout_steps {
        margin: 0 0 60px;
    }
}
