/* Container for the horizontal stepper */
.stepper-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    margin-bottom: 40px;
    width: 100%;
}

/* Individual Step Group */
.stepper-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* The Circle/Dot */
.stepper-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #999;
    transition: all 0.3s ease;
}

/* State: Done (Blue with checkmark) */
.stepper-dot.done {
    background-color: #26618b;
    border-color: #26618b;
    color: #fff;
}

/* State: Active (Blue border only) */
.stepper-dot.active {
    border-color: #26618b;
    border-width: 3px;
    color: #26618b;
}

/* Stepper Text */
.stepper-text {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
    font-weight: 500;
}

.stepper-text.active {
    color: #26618b;
    font-weight: 700;
}

/* Connecting Lines */
.stepper-line {
    flex-grow: 1;
    height: 2px;
    background-color: #e0e0e0;
    margin: 0 10px;
    margin-top: -20px; /* Adjust based on dot size to center vertically */
    z-index: 1;
}

/* State: Line Done (Blue) */
.stepper-line.done {
    background-color: #26618b;
}
.bmi-display strong {
    color: #26618b;
}
@media (max-width: 567px) {
   .stepper-text {
    display: none;
   }
   .stepper-line{
    margin-top: 0;
}
.stepper-container{
    margin-bottom: 0;
    padding: 1rem;
}
}


/* custom css changes here - moved it to custom.css file later on when dynamic*/

body {
    background-color: #eff6ff !important;
    /* background-color: #f8faff !important; */
    /* background-color: #dbeafe !important; */
}

input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 1px solid #26618b;
}


.custom-checkbox label .checkbox-box:before {
    background-color: #26618b !important;
    border: 2px solid #26618b !important;
}
.benefit-icon  {
        background: #26618b !important;
}

.header-promonational {
    /* background: #dbeafe !important; */
        background: #06162cf2 !important;
}

.header-promonational .gradient-btn {
   background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
}
.header-promonational .gradient-btn p {
    margin-bottom: 0.5rem !important;
    color: #fff !important;
}
.header-promonational .gradient-btn div {
    color: #fff !important;
}

footer {
    background: #06162cf2 !important;
    /* background: #f7f7f7f2 !important; */
    padding: 20px 0 !important;
}
footer > p {
    color: #fff !important;
    margin-bottom: 0 !important;
}
.card-body {
    margin-bottom: 20px;
}
.logo-cont {
    justify-content: center;
}






.stepper-group{
    flex-direction: row;
}

.stepper-text{
    margin-top: 0px;
}

.stepper-group{
    gap: .75rem;
}

.stepper-line{
    margin-top: 0;
}

.stepper-dot.done{
    position: relative;
    background-color: #5c97ce;
    border-color: #5c97ce;
    color: #fff;
}

.stepper-dot.done + .stepper-text {
    color: #5c97ce;
}

.stepper-dot.active {
    border-color: #5c97ce;
    border-width: 3px;
    color: #5c97ce;
}

.stepper-text.active{
    color: #5c97ce;
}

.stepper-dot.done:before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background: #5c97ce;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    /* border-width: 6px; */
    outline: 7px solid #fff;
}

.stepper-container{
    padding: 0;
}

.stepper-container{
    margin: 0;
    padding-block:2rem;
}

@media (min-width: 80rem) {
    .stepper-text{
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media (min-width: 64rem) {
    .stepper-line{
        min-width: 40px;
        max-width: 40px;
        margin: 0 .5rem;
    }
}

