*
{
    border-radius: 0px!important;
}

.checkout-steps
{
    padding: 0px;
    margin: 0px;
    border: none;
    width: 100%;
    margin-bottom: 30px;
}
.checkout-steps .checkout-step
{
    position: relative;
    width: calc(100% / 4);
    background-color: var(--checkout-step-background-color);
    height: 40px;
    line-height: 40px;
    color: var(--checkout-step-text-color);
    text-align: center;
    border-left: 15px solid #ffffff;
    padding-left: 15px;
    font-weight: normal!important;
}
.checkout-steps.steps-5 .checkout-step
{
    width: calc(100% / 5);
}
.checkout-steps.steps-6 .checkout-step
{
    width: calc(100% / 6);
}
.checkout-steps .checkout-step:first-child
{
	border-radius: 2px 0 0 2px;
}
.checkout-steps .checkout-step:last-child
{
	border-radius: 0 2px 2px 0;
}
.checkout-steps .checkout-step:after
{
    content: "";
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 20px solid var(--checkout-step-background-color);
	position: absolute;
    right: -20px;
    top: 0;
    z-index: 2;
    padding: 0px;
}
.checkout-steps .checkout-step:before
{
    content: "";
	border-top: 20px solid transparent;
	border-bottom: 20px solid transparent;
	border-left: 20px solid #ffffff;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
}
.checkout-steps .checkout-step:first-child
{
    border-left: 0px solid transparent;
    padding-left: 15px;
}
.checkout-steps .checkout-step:first-child:before
{
    content: none;
}
.checkout-steps .checkout-step:last-child:after
{
	content: none;
}
.checkout-steps .checkout-step.current,
.checkout-steps .checkout-step.done
{
    background-color: var(--checkout-step-background-color-active);
    color: var(--checkout-step-text-color-active);
}
.checkout-steps .checkout-step.current:after,
.checkout-steps .checkout-step.done:after
{
    border-left: 20px solid var(--checkout-step-background-color-active);
}
