﻿.wizard {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top:10px;
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    position: relative;
}

    .wizard-steps::before {
        /*colors*/
        background: #e0e0e0;
        /*colors*/

        content: "";
        position: absolute;
        top: 18px;
        left: 0;
        right: 0;
        height: 2px;
        z-index: 0;
    }

.wizard-step {
    /*colors*/
    color: #999;
    /*colors*/
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.step-index {
    /*colors*/
    background: #e0e0e0;
    /*colors*/
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 6px;
}

.step-label {
    font-size: 14px;
}

.wizard-step.active .step-index,
.wizard-step.completed .step-index {
    /*colors*/
    background: #4f46e5;
    color: #fff;
    /*colors*/
}

.wizard-step.active,
.wizard-step.completed {
    /*colors*/
    color: #4f46e5;
    /*colors*/
}

.wizard-content {
    /*colors*/
    background: #fafafa;
    border: 1px solid #e5e5e5;
    /*colors*/
    padding: 24px;
    border-radius: 8px;
    min-height: 150px;
}

.wizard-panel {
    display: none;
}

    .wizard-panel.active {
        display: block;
    }

.wizard-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}


/*.btn {
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}*/

