:root {
    --main-selected-color: #d5ffd5;
}
.wizard-steps-wrapper .step.first.active:before {
    border-color: var(--main-selected-color) !important;
}
.wizard-steps-wrapper {
    border: none;
    display: table;
    /*width: calc(100% + 30px);*/
    table-layout: fixed;
    /*margin: -15px;*/
    padding: 0;
    /*padding-bottom: 15px;*/

    width: 100%;
    margin-left: 0px;
    margin-bottom: 15px;
    background-color: #fff;
}
.wizard-steps-wrapper .label {
    display: none;
}
.wizard-steps-wrapper .chevron {
    display: none;
}
.wizard-steps-wrapper .step {
    display: table-cell;
    padding: 5px 15px;
    margin: 0px;
    text-align: left;
    cursor: pointer;
    color: #666;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -mox-border-radius: 0px;
    white-space: nowrap;
    padding: 12px 12px 12px 25px;
    /*border: 1px solid #dddfe2;*/
    border-top: 0;
    border-left: 0;
    position: relative;

    height:54px;
}
.wizard-steps-wrapper .step a {
    width: calc(100% - 20px);
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
}
.wizard-steps-wrapper .step span {
    width: 30px;
    height: 30px;
    line-height: 27px;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    background-color: #fff;
    color: #ffffff;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #dee1e5;
    color: #666;
}
.wizard-steps-wrapper .step .status {
    padding-left: 0px;
    text-transform: capitalize;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    position: relative;
    -webkit-border-radius: 0;
    border-radius: 0;
    width: auto;
    height: auto;
    border: none;
    line-height: 1;
}
.wizard-steps-wrapper .step:before {
    display: block;
    content: '';
    width: 0;
    height: 100%;
    border-style: solid;
    border-width: 27px 0 27px 11px;
    border-color: #fff #fff #fff #dddfe2;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: 0;
    z-index: 1;
}
.wizard-steps-wrapper .step:after {
    display: block;
    content: '';
    width: 0;
    height: 100%;
    border-style: solid;
    border-width: 27px 0 27px 10px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 0;
    left: -1px;
    bottom: 0;
    margin: 0;
    z-index: 2;
}
.wizard-steps-wrapper .step:first-child {
    border-left: 0;
}
.wizard-steps-wrapper .step:first-child:before {
    display: none;
}
.wizard-steps-wrapper .step:first-child:after {
    display: none;
}
.wizard-steps-wrapper .step:last-child {
    border-right: 0;
}
.wizard-steps-wrapper .step.done {
    /*background-color: #e7f1fb;*/
    background-color: #fff;
    color: #333;
    /*border-right: 1px solid #e7f1fb;*/
    border-right: 1px solid #fff;
}
.wizard-steps-wrapper .step.done+.step.active {
    position: relative;
}
.wizard-steps-wrapper .step.active:before {
    display: block;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 27px 0 27px 11px;
    /*border-color: transparent transparent transparent #e7f1fb;*/
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--main-selected-color) !important;
    margin: 0;
}
.wizard-steps-wrapper .step.done span {
    background-color: #ECEFF2;
    color: #ffffff;
    color: #666;
    border-color: #dee1e5;
}
.wizard-steps-wrapper .step.done:not(.last)::before {
    background-color: #C8C8DD;
}
.wizard-steps-wrapper .step.active {
    background-color: var(--main-selected-color) !important;
    color: #333;
    border-right: 1px solid var(--main-selected-color);
}
.wizard-steps-wrapper .step.active span {
    background-color: #F4F5F6;
    border-color: #abd3fd !important;
}
.wizard-steps-wrapper .step.active:after {
    display: none;
}
.wizard-steps-wrapper .step.active+.step {
    position: relative;
}
.wizard-steps-wrapper .step.active+.step:before {
    display: block;
    content: '';
    width: 0;
    height: 100%;
    border-style: solid;
    border-width: 27px 0 27px 11px;
    border-color: transparent transparent transparent var(--main-selected-color);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: #fff !important;
    margin: 0;
    box-sizing: border-box;
}
.wizard-steps-wrapper .step.active+.step:after {
    display: none;
}
.wizard-steps-wrapper .step.active+.step.no-drop:after {
    display: none;
}
.wizard-steps-wrapper .step.active+.step.no-drop:before {
    border-color: #fff #fff #fff var(--main-selected-color);
}
.wizard-steps-wrapper .step+.step.done {
    position: relative;
}
.wizard-steps-wrapper .step+.step.done:before {
    display: block;
    content: '';
    width: 0;
    height: 100%;
    border-style: solid;
    border-width: 27px 0 27px 11px;
    border-color: #e7f1fb #e7f1fb #e7f1fb var(--main-selected-color);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: 0;
    z-index: 1;
}
.wizard-steps-wrapper .step+.step.done:after {
    display: block;
    content: '';
    width: 0;
    height: 100%;
    border-style: solid;
    border-width: 27px 0 27px 10px;
    border-color: transparent transparent transparent #e7f1fb;
    position: absolute;
    top: 0;
    left: -1px;
    bottom: 0;
    margin: 0;
    z-index: 2;
}
.wizard-steps-wrapper .step.no-drop {
    cursor: no-drop;
    background-color: #fff;
    border-right: 1px solid #dee1e5;
    position: relative;
}
.wizard-steps-wrapper .step.no-drop a {
    cursor: no-drop;
}
.wizard-steps-wrapper .step.no-drop {
    position: relative;
}
.wizard-steps-wrapper .step.no-drop:after {
    display: block;
    content: '';
    width: 0;
    height: 100%;
    border-style: solid;
    border-width: 27px 0 27px 10px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 0;
    left: -1px;
    bottom: 0;
    margin: 0;
    z-index: 2;
}
.wizard-steps-wrapper .step.no-drop:before {
    display: block;
    content: '';
    width: 0;
    height: 100%;
    border-style: solid;
    border-width: 27px 0 27px 11px;
    border-color: #fff #fff #fff #dee1e5;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: 0;
    z-index: 1;
}
.wizard-steps-wrapper .step.last {
    border-right: none;
}
@media (max-width: 1200px) {
    .wizard-steps-wrapper .step {
        padding: 15px 15px 15px 20px;
    }
    .wizard-steps-wrapper .step a {
        font-size: 12px;
    }
    .wizard-steps-wrapper .step .status {
        font-size: 13px;
        white-space: pre-wrap;
        text-align: left;
        padding-right: 8px;
        margin-left: 5px;
    }
}
@media (max-width: 800px) {
    .wizard-steps-wrapper .step .status {
        width: 70px;
        white-space: normal;
    }
}
@media (max-width: 600px) {
    .wizard-steps-wrapper .step span {
        display: none;
    }
    .wizard-steps-wrapper .step:before {
        border-width: 20px 0 20px 5px;
    }
    .wizard-steps-wrapper .step:after {
        border-width: 20px 0 20px 4px;
    }
    .wizard-steps-wrapper .step.active+.step:before {
        border-width: 20px 0 20px 3px;
    }
    .wizard-steps-wrapper .step.done+.step.active:before {
        border-width: 20px 0 20px 3px;
    }
    .wizard-steps-wrapper .step.no-drop:before {
        border-width: 20px 0 20px 3px;
    }
    .wizard-steps-wrapper .step.no-drop:after {
        border-width: 20px 0 20px 3px;
    }
    .wizard-steps-wrapper .step+.step.done:before {
        border-width: 20px 0 20px 3px;
    }
    .wizard-steps-wrapper .step+.step.done:after {
        border-width: 20px 0 20px 3px;
    }
}
@media (max-width: 400px) {
    .wizard-steps-wrapper .step {
        padding: 5px;
    }
    .wizard-steps-wrapper .step .status {
        font-size: 11px;
        line-height: 13px;
        white-space: normal;
        margin-left: 5px;
    }
    .wizard-steps-wrapper .step:before {
        border-width: 15px 0 15px 3px;
    }
    .wizard-steps-wrapper .step:after {
        border-width: 15px 0 15px 3px;
    }
    .wizard-steps-wrapper .step.active+.step:before {
        border-width: 15px 0 15px 3px;
    }
    .wizard-steps-wrapper .step.done+.step.active:before {
        border-width: 15px 0 15px 3px;
    }
    .wizard-steps-wrapper .step.no-drop:before {
        border-width: 15px 0 15px 3px;
    }
    .wizard-steps-wrapper .step.no-drop:after {
        border-width: 15px 0 15px 3px;
    }
    .wizard-steps-wrapper .step+.step.done:before {
        border-width: 15px 0 15px 3px;
    }
    .wizard-steps-wrapper .step+.step.done:after {
        border-width: 15px 0 15px 3px;
    }
}
