#wizard {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
        rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
/*
    Steps Content
*/

.step-btn:disabled:hover,
.step-btn[disabled]:hover {
    background-color: #5b6938 !important;
}

.step-btn:disabled,
.step-btn[disabled] {
    opacity: 0.8;
}
/*
    Steps Indicator
*/

.step-indicator {
    margin-top: 50px;
    display: flex;
    align-items: center;
}

.step {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.step-indicator .step-icon {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 3px solid #c2c2c2;
    text-align: center;
    color: #c2c2c2;
    position: relative;
    line-height: 50px;
    font-size: 20px;
}

.step.active .step-icon {
    border: 3px solid #5b6938;
}
.step.active .step-icon i {
    color: #5b6938;
}

.step p {
    text-align: center;
    position: absolute;
    bottom: 4rem;
    color: #c2c2c2;
    font-size: 14px;
    font-weight: bold;
}

.step.active p {
    color: #5b6938;
}

.step.step2 p,
.step.step3 p {
    left: 50%;
    transform: translateX(-50%);
}

.indicator-line {
    width: 100%;
    height: 2px;
    background: #c2c2c2;
    flex: 1;
}

.indicator-line.active {
    background: #5b6938;
}

@media screen and (max-width: 500px) {
    .step p {
        font-size: 11px;
        bottom: 4rem;
    }

    .step-indicator .step-icon {
        height: 35px;
        width: 35px;
        line-height: 35px;
        font-size: 14px;
    }
}
