.wizard .wizard-nav.dots .wizard-step.active .dot {
    background-color: #608553;
    box-shadow: 0 0 0 3px rgba(91, 128, 80, 0.40);
}

.wizard .wizard-buttons .wizard-btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    border-radius: 0.15rem;
    transition: all 0.3s ease-in;
    margin: 0 10px;
    background-color: #608553;
    color: #fff;
}

.wizard .wizard-nav.dots .wizard-step:before {
    content: "";
    position: absolute;
    top: -17px;
    left: 50%;
    width: 100%;
    height: 2px;
    z-index: 2;
    background: #85b470;
}

.wizard .wizard-nav.dots .wizard-step .dot {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    z-index: 3;
    height: 8px;
    width: 8px;
    background: #608553;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff;
    transition: all 0.5s ease-in-out;
}