.next-steps-card {
    border: 0;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    padding: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    background-color: white;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: stretch;
    /* Stretches the items to fill the container */
}

.progress {
    margin-bottom: 10px;
    height: 1.5rem;
    background-color: #F0FDB3;
}

.highlight:before {
    box-shadow: 0 0 20px 10px var(--blue);
}

.progress-percentage {
    font-weight: 700;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, .15);
    padding: 5px;
    border-radius: 20%;
    position: absolute;
    font-size: large;
    transform: translateX(20%);
}

#plan-progress {
    color: var(--orange);
}

#plan-progress .active {
    color: var(--blue);
}

#plan-progress div {
    position: relative;
    width: 33%;
    transition: all 0.2s ease;
}


/*Icons in the Plan Progress*/

#plan-progress > div:hover:not(.no-data):not(.highlight) {
    cursor: pointer;
    &:before {
        transform: scale(1.2);
    }
}

#plan-progress #focus:before {
    text-align: center;
    font-family: FontAwesome;
    content: "\f002";
    transition: transform 0.2s ease;
}
#plan-progress #inquire:before {
    text-align: center;
    font-family: FontAwesome;
    content: "\f059";
    transition: transform 0.2s ease;
}
#plan-progress #transform:before {
    text-align: center;
    font-family: FontAwesome;
    content: "\f06d";
    transition: transform 0.2s ease;
}

/*Icon ProgressBar before any progress*/

#plan-progress div:before {
    width: 80px;
    height: 80px;
    line-height: 75px;
    display: block;
    font-size: 32px;
    color: #ffffff;
    background: var(--orange);
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}

#plan-progress div.no-data strong{
    color: #cccccc;
}
#plan-progress div.no-data:before {
    background: #cccccc;
}
#plan-progress div.no-data:hover .tooltip-text{
    visibility: visible;
}


/*ProgressBar connectors*/

#plan-progress div:nth-child(-n+2):after {
    content: '';
    width: 100%;
    height: 5px;
    background: #cccccc;
    position: absolute;
    left: 50%;
    top: 35px;
    z-index: -1;
}

#plan-progress div#focus::after {
    background: var(--foc-bar);
}

#plan-progress div#inquire::after {
    background: var(--inq-bar);
}


/*Color number of the step and the connector before it*/

#plan-progress div.active:before {
    background: var(--blue);
    transform: scale(1.2);
}