#checkoutSteps{
    margin-bottom: 20px;
}
#flowBoxes {
    margin:auto;
    padding: 0 0;
    /* min-width:700px; */
}
#flowBoxes div {
    display:inline-block;
    position:relative;
    height: 41px;
    line-height: 37px;
    width: 29%;
    padding: 0 20px 0 26px;
    box-sizing: border-box;
    border: 2px solid #000;
    margin-right: 4%;
    color: #000;
    font-weight: 600;
    background-color:white;
    font-size: 14px;
}

#flowBoxes div.right:after{
    content:'';
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    width: 28px;
    height: 29px;
    position:absolute;
    right: -6px;
    top: 0px;
    background-color:white;
    z-index:150;
    -webkit-transform: translate(10px,4px) rotate(45deg);
    -moz-transform: translate(10px,4px) rotate(45deg);
    -ms-transform: translate(10px,4px) rotate(45deg);
    -o-transform: translate(10px,4px) rotate(20deg);
    transform: translate(10px,4px) rotate(45deg);
}

#flowBoxes div.left:before{
    content:'';
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    width: 28px;
    height: 29px;
    position:absolute;
    left: -5px;
    top: 0px;
    background-color:white;
    z-index:50;
    -webkit-transform: translate(-10px,4px) rotate(45deg);
    -moz-transform: translate(-10px,4px) rotate(45deg);
    -ms-transform: translate(-10px,4px) rotate(45deg);
    -o-transform: translate(-10px,4px) rotate(20deg);
    transform: translate(-10px,4px) rotate(45deg);
}
#flowBoxes .active{
    background-color: #000;
    color:white;
    padding-left: 12px;
}
#flowBoxes div.active:after{
    background-color: #000;
}


#flowBoxes div:last-child{
    margin-right: 0;
}


#flowBoxes div.active i{
    color: #fff;
}
#flowBoxes i{
    color: #000;
}



@media (max-width: 575px){
    #checkoutSteps{
        display: none;
    }
}