<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.badge {
    background: none !important;
}

.static-stepper .badge {
    border-radius: 0;
    margin: 0;
    height: 40px;
    width: 100%;
    display: flex !important;
    align-content: center !important;
    justify-content: flex-start !important;
    flex-direction: row !important;
}

.static-stepper [class^=col]:not(:first-child) .badge:before,
.static-stepper [class^=col]:not(:last-child) .badge:after {
    width: 0;
    height: 0;
    top: 0;
    content: '';
    position: absolute;
}

.static-stepper [class^=col]:not(:first-child) .badge.badge-primary:before,
.static-stepper [class^=col]:not(:first-child) .badge.badge-secondary:before,
.static-stepper [class^=col]:not(:first-child) .badge.badge-light:before {
    left: 0;
    border-left: 15px solid transparent;
}

.static-stepper [class^=col]:not(:last-child) .badge.badge-primary:after,
.static-stepper [class^=col]:not(:last-child) .badge.badge-secondary:after,
.static-stepper [class^=col]:not(:last-child) .badge.badge-light:after {
    right: 0
}

.static-stepper [class^=col]:not(:first-child) .badge.badge-primary:before {
    border-top: 20px solid #008768;
    border-bottom: 20px solid #008768;
}

.static-stepper [class^=col]:not(:last-child) .badge.badge-primary:after {
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 15px solid #008768;
}

.static-stepper [class^=col]:not(:first-child) .badge.badge-secondary:before {
    border-top: 20px solid #6c757d;
    border-bottom: 20px solid #6c757d;
}

.static-stepper [class^=col]:not(:last-child) .badge.badge-secondary:after {
    /*     border-top: 20px solid transparent; */
    /*     border-bottom: 20px solid transparent; */
    /*     border-left: 15px solid #6c757d; */
}

.static-stepper [class^=col]:not(:first-child) .badge.badge-light:before {
    /* border-top: 20px solid #d7d7d7; */
    /* border-bottom: 20px solid #d7d7d7; */
}

.static-stepper [class^=col]:not(:last-child) .badge.badge-light:after {
    /* border-top: 20px solid transparent; */
    /* border-bottom: 20px solid transparent; */
    /* border-left: 15px solid #d7d7d7; */
}

.static-stepper [class^=col]:not(:first-child) .badge.badge-secondary:before {
    animation: color-before 2s infinite;
}

.static-stepper [class^=col]:not(:last-child) .badge.badge-secondary:after {
    animation: color-after 2s infinite;
}


.static-stepper .badge-secondary {
    animation: color 2s infinite;
}

.static-stepper {
    counter-reset: step-count;
    margin-bottom: 24px;
    width: 80%;
}


.static-stepper .badge span {
    position: relative;
    width: 100%;
    color: #97999B;
    text-transform: none;
    font-size: 13px;
    line-height: 40px;
}
.static-stepper .active .badge span { color: #006FCF }
.static-stepper .step-icon {
    width: 30px;
    height: 30px;
}

.static-stepper .step-icon.on {
    display: none
}

.static-stepper .step-icon.off {
    display: inline-block
}

.static-stepper .active .step-icon.on {
    display: inline-block
}

.static-stepper .active .step-icon.off {
    display: none
}

.static-stepper .badge span:before {
    counter-increment: step-count;
    content: counter(step-count);
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 50%;
    color: #006fcf;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    line-height: 38px;
    border: 2px solid #c0dbf3;
    z-index: 1;
    display: none;
}

.static-stepper .active .badge span:before {
    border-color: #006fcf;
}

.static-stepper .badge span:after {
    content: '';
    position: absolute;
    top: -1.5em;
    right: 5.1vw;
    width: 4vw;
    transform: translateX(-50%);
    height: 5px;
    background: #97999B;
    z-index: 0;
    opacity: 0.15;
    border-radius: 5px;
}

.static-stepper .active .badge span:after {
    opacity: 1;
    background: #006fcf;
}

.static-stepper [class^=col]:first-child .badge span::after {
    display: none;
}

.static-stepper .active .badge span:before {
    background-color: #006fcf;
    color: #fff;
}

.static-stepper [class^=col] {
    padding: 0;
}

.col-custom {
    width: 14.28571428571429%;
}


@media screen and (max-width: 1180px) {
    .static-stepper {
        width: 100%;
    }
    .static-stepper .badge span:after {
        width: 4vw;
        right: 7.45vw;
    }

}
@media screen and (max-width: 920px) {
    .static-stepper .badge span,
    .static-stepper .active .badge span{
        color: transparent; !important
    }

}

@media screen and (max-width: 624px) {
    .static-stepper .step-icon {
        width: 25px;
        height: 25px;
    }
    .static-stepper .badge span:after {
        width: 3.2vw;
        height: 4px;
        top: -1.3em;
    }
}
</pre></body></html>