.wizard-Form-Back {
    background: #00000099;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    z-index: 100;
}

#wizard-Form {
    background-color: #f1f1f1;
    margin: 100px auto;
    /* padding: 5px; */
    width: 600px;

    min-width: 300px;
    position: absolute;
    top: 150px;
    left: 0;
    margin: auto;
    right: 0;


}

#wizard-Form h5 {
    text-align: center;
    padding: 0;
    margin: 0;
    background-color: red;
    color: white;
}

#wizard-Form input {
    padding: 10px;
    width: 100%;
    font-size: 17px;

    border: 1px solid #aaaaaa;
}

/* Mark input boxes that gets an error on validation: */
#wizard-Form input.invalid {
    background-color: #ffdddd;
}

#wizard-Form button:hover {

    color: #ffffff !important;
    background-color: #333333 !important;
}



#wizard-Form button {
    border: 1px solid #ccc !important;
    /* background-color: #4CAF50;
    color: #ffffff;
    border: none;*/
    padding: 5px 5px;
    font-size: 17px;

    cursor: pointer;
}


.wizard-tab {
    display: none;
    padding: 10px;
}


.wizard-next-button {
    width: 100px;
    margin-right: 10px;
    margin-bottom: 10px;
    outline: 0;
    font-weight: 500;
    font-size: 11px !important;
}


.wizard-step {
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

.wizard-step.active {
    background-color: red;
    /* opacity: 1; */
}

/* Mark the steps that are finished and valid: */
.wizard-step.finish {
    background-color: #4CAF50;
}

.wizard-rotate-button {
    width: 100%;
}