/*!
 * Bootstrap Steps v1.0.2 (https://github.com/ycs77/bootstrap-steps)
 * Copyright 2019 Lucas Yang <yangchenshin77@gmail.com>
 * Licensed under MIT (https://github.com/ycs77/bootstrap-steps/blob/master/LICENSE)
 */

.steps {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    overflow-x: hidden;
    height: 50px;
}

    .steps .step:first-child {
        margin-left: auto
    }

    .steps .step:last-child {
        margin-right: auto
    }

.step:first-of-type .step-circle::before {
    display: none
}

.step:last-of-type .step-content {
    padding-right: 0
}

.step-content {
    box-sizing: content-box;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 8rem;
    min-width: 8rem;
    max-width: 8rem;
    padding-top: .5rem;
    padding-right: 1rem
}

.step-circle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    color: #F6F6F6;
    border: 1px solid #E4E4E4;
    border-radius: 100%;
    background-color: #F6F6F6
}

    .step-circle::before {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        left: -2px;
        width: calc(8rem + 1rem - 1.5rem);
        height: 2px;
        transform: translate(-100%,-50%);
        color: #F6F6F6;
        background-color: currentColor
    }

.step-text {
    color: #adb5bd;
    word-break: break-all;
    margin-top: .25em
}

.step-active-dot {
    display: none;
    background-color: #72BF44;
    border-color: #72BF44;
    width: 8px;
    height: 8px;
    border-radius: 50%
}
.step-active .step-active-dot {
    display: block;
}

.step-active .step-circle {
    color: #72BF44;
    background-color: #fff;
    border-color: #fff;
    -webkit-box-shadow: 0px 2px rgba(14,14,14,0.06);
    -moz-box-shadow: 0px 2px rgba(14,14,14,0.06);
    box-shadow: 0px 2px rgba(14,14,14,0.06);
}

    .step-active .step-circle::before {
        color: #72BF44
    }

.step-active .step-text {
    color: #007bff
}

.step-error .step-circle {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

    .step-error .step-circle::before {
        color: #dc3545
    }

.step-error .step-text {
    color: #dc3545
}

.step-success .step-circle {
    color: #fff;
    background-color: #72BF44;
    border-color: #72BF44;
}

    .step-success .step-circle::before {
        color: #72BF44;
    }

.step-success .step-text {
    color: #28a745
}
/*# sourceMappingURL=bootstrap-steps.min.css.map */
.step-success-dot {
    display: none;
    color: #fff;
}
    .step-success-dot:before {
        content: '\2713';
    }
.step-success .step-success-dot {
    display: block;
}