.stepper-wrapper {
    margin-top: 25px;
    margin-bottom: 0px;
}

.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stepper-item::before {
    position: absolute;
    display: flex;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: -50%;
    z-index: 2;
}

.stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 2;
}

.stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ccc;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.stepper-item.active {
    font-weight: bold;
}

.stepper-item.active .step-counter {
    background-color: rgb(181, 19, 30);
    color: #fff;
    box-shadow: 0 0 10px #132653;
}

.stepper-item.active::before,
.stepper-item.active::after {
    border-color: #132653;
}

.stepper-item:first-child::before {
    content: none;
}

.stepper-item:last-child::after {
    content: none;
}

.step-name {
    color: #fff;
    margin-top: 6px;
    font-size: 14px;
    text-align: center;
}

.step-counter i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .step-name {
        font-size: 12px;
    }

    .stepper-item .step-counter {
        width: 30px;
        height: 30px;
    }

    .step-counter i {
        font-size: 1rem;
    }
}

.progress {
    position: fixed;
    width: 0%;
    margin: 20px auto;
    left: 50%;
    transform: translateX(-50%);
}

.progress-bar {
    background-color: #132653;
    transition: width 0.3s ease;
}

.btn {
    min-width: 100px;
    transition: all 0.3s ease;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}