/*
.sw-stepper {
    margin: auto;
}

.sw-stepper-wrapper {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    justify-content: space-between;
}



.sw-stepper-menu::after {
    content: "";
    background-color: #f5f5f5;
    height: 5px;
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 72%;
    z-index: -1
}

.sw-stepper-menu.active::after {
    background-color: #000000;
}*/

:root {
    --sw-stepper-active: #007bff; /* Primary theme color */
    --sw-stepper-inactive: #e0e0e0;
    --sw-stepper-line-height: 2px;
}

.sw-stepper-wrapper {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
}

/* Individual Step */
.sw-stepper-menu {
    flex: 1;
    position: relative;
    text-align: center;
    z-index: 1;
}

/* The Connecting Line */
.sw-stepper-menu::after {
    content: "";
    /*background-color: #f5f5f5;*/
    background-color: rgba(254, 179, 18, 0.2);
    height: 4px;
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 58%;
    z-index: -1;
    transition: background-color 0.3s ease;
}

/* Line positioning adjustment */
/* Since you have icons above the circle, we target the sw-round element's center */


/* Active State Colors */
/*.sw-stepper-menu.active .sw-round {
    background: var(--sw-stepper-active);
    color: white;
    border-color: var(--sw-stepper-active);
}*/

/*.sw-stepper-menu.active .sw-mb-3 i,
.sw-stepper-menu.active p {
    color: var(--sw-stepper-active);
}*/

/* Progress the line for active items */
/*.sw-stepper-menu.active:not(:last-child)::after {
    background-color: var(--sw-stepper-active);
}*/

.sw-stepper-menu .sw-stepper-icon {
    color: #FFFFFF;
}

.sw-stepper-menu .sw-stepper-item {
    background: rgba(254, 179, 18, 0.2) !important;
    color: #FFFFFF;
}

.sw-stepper-menu.active::after {
    background-color: rgb(254, 179, 18);
}

.sw-stepper-menu.active .sw-stepper-item {
    background: rgb(254, 179, 18) !important;
}

.sw-stepper-menu.active .sw-stepper-text {
    color: rgb(254, 179, 18) !important;
}

@media screen and (max-width: 991px) {
    .sw-stepper-wrapper {flex-direction: column;}
    .rp3-float-left {float: left !important;}
}