/* ------------ Form steps indicators -------------- */
.wizard-step {
    display: flex;
    align-items: center;
    position: relative;
    width: 33.33%;
}

.wizard-step p {
    margin: 0 0 0 10px;
    position: relative;
    font-size: 11px;
    z-index: 1;
}

.wizard-step::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(58% + 12px);
    width: 33%;
    height: 2px;
    background-color: #ccc;
    z-index: 0;
}

.wizard-step.completed::after {
    background-color: var(--primary-color);
}

.wizard-step:last-child::after {
    display: none;
}

.wizard-step button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid #ccc;
    background-color: #fff;
    font-size: 10px;
    line-height: 29px;
    position: relative;
    z-index: 1;
}

.wizard-step button::after {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #e1e1e1;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wizard-step button.active {
    border-color: #C5D8F6;
    background-color: #007bff;
    border-width: 4px;
    color: #fff;
}

.wizard-step button.active::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wizard-step button.completed {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
}

.setup-content {
    display: none;
}

.setup-content.active {
    display: block;
}