.bs-stepper-header {
    margin: 1.25rem auto;
    justify-content: center;
}

.bs-stepper .step-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.12rem 0.875rem 6px 2.3rem;
    text-align: center;
    color: #363642;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background-color: #e6e8ed;
    position: relative;
    transition: background-color .15s ease-out,color .15s ease-out;
}

.bs-stepper .step-trigger:hover {
    text-decoration: none;
    background-color: #e6e8ed;
}
.step.active .step-trigger {
    background-color: #00a28a;
    color: #fff;
}
.step.active+.step .step-trigger:before {
    background-color: #00a28a;
}
.step.success .step-trigger {
    background-color: #00a28a;
}
.step.active .step-indicator {
    color: #fff;
}
.bs-stepper-header .step:first-child .step-trigger {
    border-top-left-radius: 999px;
    border-bottom-left-radius: 999px;
}
.bs-stepper-header .step:last-child .step-trigger {
    border-top-right-radius: 999px;
    border-bottom-right-radius: 999px;
}
.step-indicator-icon > .fa{
    /*font-size: 1.6em;*/
    margin-left: 3px;
}
.step .step-trigger:before {
    content: "";
    position: absolute;
    top: 5px;
    left: -1.5rem;
    z-index: 1;
    display: block;
    height: 2.7rem;
    width: 2.7rem;
    border: 2px solid #fff;
    border-top-right-radius: 0.5rem;
    background-color: #e6e8ed;
    transform: rotate(45deg);
}
.step:first-child .step-trigger:before {
    display: none;
}
.bs-stepper .step-trigger:hover+.bs-stepper .step-trigger:before{
    background-color: #dde0e7;
}
.bs-stepper-label{
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    margin-left: 5px;
    margin-right: 5px;
}
.step-indicator-icon{

}
.bs-stepper-pane .card-title{
    display: none;
    margin-bottom: 20px;
}
.bs-stepper-content {
    padding: 20px;
}

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    .d-sm-inline {
        display: inline!important;
    }
    .d-sm-none {
        display: none!important;
    }
}

/* X-Small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {

}

/* Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    .bs-stepper-pane .card-title{
        display: block !important;
    }
    .bs-stepper-label{
        display: none!important;
    }
    .bs-stepper .step-trigger{
        padding: 0.8rem 1.35rem .65rem 2rem
    }
    .bs-stepper-content {
        padding: 0px;
    }
}
