﻿.steps {
    position: relative;
    margin-bottom:1rem;
}

    .steps hr {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        border-top: 1px solid #886cff
    }

    .steps .step-item {
        display: flex;
        flex:1;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-left: 1rem;
        padding-right: 1rem;
        margin-bottom: 2rem;
        z-index: 1000;
    }

        .steps .step-item .step-number {
            border: solid 1px #886cff;
            background-color: #e5e5e5;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            width: 40px;
            height: 40px;
            border-radius: 20px;
            margin-bottom: 0.5rem;
        }

        .steps .step-item .step-label {
            text-align: center;
        }

    .steps .step-item-active .step-number {
        background-color: #886cff;
        color: #fff;
    }

    .steps .step-item-active .step-label {
        color: #886cff
    }
