.multi-step {margin: 1em 0 0 0;}
.multi-step-list {
    position: relative;
	display: flex;
    flex-direction: row;
    justify-content: space-between;
    list-style-type: none;
    padding: 0;
}
.multi-step-list .multi-step-item:first-child {
    margin-left: 0;
}
@media all and (min-width: 1024px) and (max-width: 1366px) and (orientation:portrait) {
    .tip-label{
        width: 45px;
        height: 45px;
    }
}
@media only screen and (max-width: 786px) {
    .multi-step-item {
        margin: 0 0.3333333333em;
    } 
    .tip-container {
        flex-direction: row;
    }
}

@media (max-width: 767px) {
.item-title { font-size:12px !important;}
.item-wrap { padding:10px 4px !important; }
}

.multi-step-item {
    position: relative;
    width: 100%;
    margin: 0 0.3333333333em;
    z-index: 2;
    border-radius: 0.2em;
}
.current.multi-step-item:first-child .item-wrap {
    background: linear-gradient(to right, var(--theme-color) 95%, transparent 5%);
}
.multi-step-item:first-child .item-wrap {
    background: linear-gradient(to right, #F0F0F1 95%, transparent 5%);
}
.current.multi-step-item:last-child .item-wrap{
    background: linear-gradient(to right, var(--theme-color) 95%, transparent 5%);
}
.multi-step-item:first-child .item-wrap, .multi-step-item:last-child .item-wrap {
    width: 100%;
    border-radius: 0.2em;
}
.item-wrap {
    padding: 1em;
    position: relative;
    height: 100%;
}
.multi-step-item:first-child .item-wrap:before, .multi-step-item:first-child .item-wrap:after {
    left: 50%;
}
.multi-step-item:first-child .item-wrap:before, .multi-step-item:first-child .item-wrap:after, .multi-step-item:last-child .item-wrap:before, .multi-step-item:last-child .item-wrap:after {
    width: 50%;
}
.current .item-wrap:before, .current .item-wrap:after {
    background-color: var(--theme-color);
}
.item-wrap:before {
    top: 0;
    transform: skew(20deg);
    border-radius: 0.2em 0.2em 0 0;
}
.item-wrap:before, .item-wrap:after {
    position: absolute;
    left: 0;
    content: " ";
    width: 100%;
    height: 50.5%;
    z-index: 1;
    background-color: #F0F0F1;
}
.item-title {font-size:18px;}
.multi-step-item.current .item-title, .multi-step-item.current .item-subtitle {
    color: #fff;
}
.multi-step-item .item-title {
    color: var(--theme-color);
    font-weight: 600;
    margin: 0;
}
.multi-step-item .item-title, .multi-step-item .item-subtitle {
    position: relative;
    margin: 0;
    z-index: 2;
}
.multi-step-item:first-child .item-wrap:before, .multi-step-item:first-child .item-wrap:after {
    left: 0%;
}
.multi-step-item:first-child .item-wrap:before, .multi-step-item:first-child .item-wrap:after, .multi-step-item:last-child .item-wrap:before, .multi-step-item:last-child .item-wrap:after {
    width: 100%;
}

.current .item-wrap:before, .current .item-wrap:after {
    background-color:var(--theme-color);
}
.item-wrap:after {
    bottom: 0;
    transform: skew(-20deg);
    border-radius: 0 0 0.2em 0.2em;
}
.item-wrap:before, .item-wrap:after {
    position: absolute;
    left: 0;
    content: " ";
    width: 100%;
    height: 50.5%;
    z-index: 1;
    background-color: #fff;
}

.multi-step-item:last-child .item-wrap {
    background: linear-gradient(to left, #fff 95%, transparent 5%) !important;
}

.step-done .item-wrap {background:linear-gradient(to right, #1f7964 95%, transparent 5%) !important;}
.step-done .item-wrap:before, .step-done .item-wrap:after, .step-done .item-wrap:before, .step-done .item-wrap:after{ background:#1f7964 !important;}
.step-done .item-title { color:#FFFFFF !important;}
