/* Style the form */

#regForm {
    /* background-color: #ffffff; */
    margin: 100px auto;
    padding: 40px;
    width: 70%;
    min-width: 300px;
}


/* Style the input fields */

input {
    padding: 10px;
    width: 100%;
    font-size: 17px;
    font-family: Raleway;
    border: 1px solid #aaaaaa;
}

select.form-control {
    height: 50px;
}

.form-control {
    border-radius: 3px;
    /* padding: 15px; */
    /* padding-left: 20px !important; */
}

.d-flex {
    color: white;
}

.form-control:focus {
    border-color: rgba(0, 30, 239, 0.8);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(0, 38, 239, 0.6);
    outline: 0 none;
}


/* Mark input boxes that gets an error on validation: */

input.invalid,
textarea.invalid {
    background-color: #ffdddd;
}


/* Hide all steps by default: */

.tab {
    display: none;
}


/* Make circles that indicate the steps of the form: */

.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}


/* Mark the active step: */

.step.active {
    opacity: 1;
}


/* Mark the steps that are finished and valid: */

.step.finish {
    background-color: #4caf50;
}


/*SLIDER*/

.slidecontainer {
    width: 100%;
    /* Width of the outside container */
}


/* The slider itself */

.slider {
    -webkit-appearance: none;
    /* Override default CSS styles */
    appearance: none;
    width: 100%;
    /* Full-width */
    height: 15px;
    border-radius: 5px;
    background: #caf8ff;
    /* Grey background */
    outline: none;
    /* Remove outline */
    opacity: 0.7;
    /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: 0.2s;
    /* 0.2 seconds transition on hover */
    transition: opacity 0.2s;
}


/* Mouse-over effects */

.slider:hover {
    opacity: 1;
    /* Fully shown on mouse-over */
}


/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    /* Override default look */
    appearance: none;
    width: 25px;
    /* Set a specific slider handle width */
    height: 25px;
    border-radius: 50%;
    background: #0041af;
    /* Green background */
    cursor: pointer;
    /* Cursor on hover */
}

.slider::-moz-range-thumb {
    width: 25px;
    /* Set a specific slider handle width */
    height: 25px;
    border-radius: 50%;
    background: #4caf50;
    /* Green background */
    cursor: pointer;
    /* Cursor on hover */
}

#file-input {
    background-color: white;
}

#nextBtn {
    background-color: #56c1df;
    margin-left: 10px;
    padding: 5px 30px 5px 30px !important;
}

#prevBtn {
    border: white 1px solid;
}

.btn {
    height: 35px !important;
    padding: 5px 10px 5px 10px;
}