/*your custom css goes here*/

.max-w-xxl {
    max-width: 1200px;
    margin-bottom: 50px;
}

.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 14px;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 15px;
}

.step {
    display: flex;
    align-items: center;
    position: relative;
    gap: 10px;
    padding: 0 18px;
    white-space: nowrap;
}

.circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #eee;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    z-index: 1;
    line-height: 2;
}

.label {
    color: #888;
    font-size: 14px;
}

.step.active .circle {
    background-color: #5b0fff;
    color: white;
}

.step.active .label {
    color: #000;
    font-weight: 500;
}

.line {
    position: absolute;
    top: 16px;
    left: 100%;
    width: 60px;
    height: 2px;
    background-color: #ddd;
    z-index: 0;
}

.step.active + .step .line {
    background-color: #ddd;
}

.step:last-child .line {
    display: none;
}

@media (max-width: 767px) {
    .stepper {
        gap: 30px;
    }

    .stepper .step {
        padding: 0 10px;
        flex-flow: column;
        justify-content: center;
    }

    .stepper .line {
        display: none;
    }
}

.card-payment-method {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border: 1px solid var(--soft-primary);
    color: var(--white);
    border-radius: 5px;
    cursor: pointer;
    background: var(--dark);
}

.card-payment-method-title {
    display: flex;
    align-items: center;
    gap: 10px;
}
