/* reset small */
.wc-stepper-wrap {
    background: linear-gradient(180deg, rgba(5, 49, 84, 0.40) 0%, rgba(6, 61, 105, 0.20) 25%, rgba(8, 75, 129, 0.10) 50%, rgba(11, 109, 186, 0.00) 100%);
    height: 427px;
    padding-top: 125px;
}

.wc-stepper {
    position: relative;
}

.wc-stepper-line {
    position: absolute;
    top: 29px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: var(--second-color);
    transform: translateY(-50%);
    z-index: 1;
}

.wc-steps {
    display: flex;
    justify-content: space-around;
    position: relative;
    z-index: 2;
    padding: 0 5%;
}

.wc-step {
    text-align: center;
    width: 100px;
    max-width: 18%;
}

.wc-step-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #fff;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0f2f57;
}

.wc-step.active .wc-step-circle {
    background: var(--second-color);
    color: #fff;
}

.wc-step.active .wc-step-circle img,
.wc-steps .completed img {
    filter: brightness(100);
}

.wc-step.completed .wc-step-circle {
    background: #0f2f57;
    color: #fff;
}

.wc-step-label {
    font-size: 14px;
    color: #333;
}

/* step content wrappers */
.wc-stepper-forms .wc-step-content {
    border: 3px solid var(--second-color);
    border-radius: 6px;
    margin-bottom: 25px;
    padding: 70px 35px;
    position: relative;
    top: -75px;
}

.step-buttons {
    margin-top: 18px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.step-buttons .button {
    background: var(--second-color) !important;
    color: #fff !important;
    font-weight: 100 !important;
    padding: 11px 33px !important;
}

/* RTL support */
html[dir="rtl"] .wc-steps {
    direction: rtl;
}

html[dir="rtl"] .step-buttons {
    justify-content: flex-start;
}