.checkout-steps {
    font-size: 14px;
}
.checkout-steps .steapbar {
    width: 100%;
    float: left;
} 
.checkout-steps .steapbar .steps {
    position: relative;
    clear: both;
    font-weight: 700;
    display: inline-block;
    width: 100%;
}
.checkout-steps .steapbar .steps ul {
    padding-left: 20px;
    margin-left: 10px;
}
.checkout-steps .steapbar .steps ul li {
    position: relative;
    width: 25%;
    float: left;
    list-style: none !important;
    padding: 0;
    margin: 0;
    text-align: center;
}

.checkout-steps .steapbar .steps a {
    color: #000;
    font-weight: 400;
    background-color: #eee;
    position: relative;
    display: block;
    width: 88%;
    margin-right: 30px;
    padding: 0px;
    float: left;
    line-height: 44px;
    text-decoration: none;
    transition: 0.1s;
}
.checkout-steps .steapbar .steps a .before {
    border-top: 22px solid #eee;
    border-bottom: 22px solid #eee;
    border-left: 22px solid transparent;
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    transition: 0.1s;
    left: -20px;
}
.checkout-steps .steapbar .steps a .after {
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    border-left: 22px solid #eee;
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    transition: 0.1s;
    right: -20px;
}
.checkout-steps .steapbar .steps a:focus {
    outline: none;
}

.checkout-steps .steapbar .steps .current-info {
    position: absolute;
    left: -999em;
}

@media only screen and (max-width: 990px) {
	.steapbar .steps ul li {
		width: 50%;
		margin-bottom: 10px !important;
	}
}

@media only screen and (max-width: 767px) {
	.steapbar .steps ul li {
		width: 100% !important;
		margin-bottom: 8px !important;
    }
    .steapbar .steps ul li.previous-step, .steapbar .steps ul li.next-step {
        display:none;
    }
}