/* Style the modal */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.85);
    opacity:1 !important;
}

.modal-dialog {
    width: 450px;
}

.modal-header {
    border: 0;
}

#regForm h1, #regForm p {
    color: #fff;
    text-align: center;
}

.fillDetais {
    margin-bottom: 50px;
}

.modal-content {
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none !important;
    border: none !important;
}

/* Style the form */
#regForm {
    padding: 40px;
    width: 70%;
    min-width: 100%;
}

/* Style the input fields */
#regForm input {
    padding: 17px 10px;
    width: 100%;
    font-size: 17px;
    border-radius: 6px;
    color: #aaaaaa;
    outline: none;
    border: none;
    }

#regForm select {
    padding: 17px 10px;
    width: 100%;
    font-size: 17px;
    border-radius: 6px;
    background: #fff;
    color: #aaaaaa;
    outline: none;
}

.flex-container {
    display: flex;
    justify-content: space-between;
}

#nextBtn {
    border: none;
    background-color: #3b924d;
    color: #fff;
    padding: 15px 30px;
    border-radius: 6px;
}

#prevBtn {
    border: none;
    background-color: #3b924d;
    color: #fff;
    padding: 15px 30px;
    border-radius: 6px;
}

/* Mark input boxes that gets an error on validation: */
#regForm .invalid {
    background-color: #ffdddd;
}

/* Hide all steps by default: */
#regForm .tab {
    display: none;
}

/* Make circles that indicate the steps of the form: */
#regForm .step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #287534;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

/* Mark the active step: */
#regForm .step.active {
    opacity: 1;
}

/* Mark the steps that are finished and valid: */
#regForm .step.finish {
    background-color: #04AA6D;
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 35px;
    font-weight: 100;
    text-shadow: none;
    border: 2px solid #fff!important;
    border-radius: 50%;
    line-height: 0.7;
    padding: 0 2px !important;
}

.close span {
    color: #fff !important;
}

