﻿.stepper-horizontal-container {
    width: 100%;
    min-height: 80px;
    background-color: #f0f3fc;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
}

.stepper-horizontal {
    position: relative;
    top: 15px;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

    .stepper-horizontal .step {
        position: relative;
        display: flex;
        align-items: center;
        z-index: 2;
    }

    .stepper-horizontal .step-bar {
        height: 2px;
        background-color: #D9E2EC;
        flex-grow: 1;
    }

    .stepper-horizontal .step .step-circle {
        width: 26px;
        height: 26px;
        margin: 0 auto;
        border-radius: 50%;
        text-align: center;
        z-index: 2;
        background-color: #dce8ff;
        color: #FFFFFF;
    }

    .stepper-horizontal .step.done .step-circle {
        background-color: #0ed065;
        color: #FFFFFF;
    }

.stepper-horizontal .step-bar.done {
    background-color: #0ed065;
}

    .stepper-horizontal .step.editing .step-circle {
        background: #fff;
        border-color: #588df6;
        padding: 1.5px;
        width: fit-content;
        height: fit-content;
        border: 1.5px solid #588df6;
    }

    .stepper-horizontal .step-bar.editing {
        background-color: #588df6;
    }

    .stepper-horizontal .step .step-circle-content {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
    }

    .stepper-horizontal .step.editing .step-circle-content {
        background: #588df6;
        color: #fff;
        border-radius: 50%;
    }
