.registration-page {
    position: relative;
    font-family: opensans-regular, helvetica, sans-serif;
}
.registration-page fieldset {
    /*stacking fieldsets above each other*/
    position: relative !important;
}
/*Hide all except first fieldset*/
.registration-page fieldset:not(:first-of-type) {
    display: none;
}
/*inputs*/
.registration-page input {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 100%;
    box-sizing: border-box;
    color: #2c3e50;
}

/*buttons*/
.registration-page-filled .action-button, .registration-page .action-button {
    min-width: 100px;
    background: #ed6c4a;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 3px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
    font-size: 14px;
    text-transform: uppercase;
}

.registration-page .previous-button {
    background: inherit;
    color: #444;
    border: 1px solid;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    padding-left: 0;
    /*CSS counters to number the steps*/
    counter-reset: step;
}
#progressbar li {
    list-style-type: none;
    color: #8f8f8f;
    text-transform: uppercase;
    font-size: 12px;
    width: 33.33%;
    float: left;
    position: relative;
    text-align: center;
}
#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 30px;
    line-height: 30px;
    display: block;
    font-size: 18px;
    color: #333;
    background: lightgrey;
    border-radius: 3px;
    margin: 0 auto 12px auto;
}
/*progressbar connectors*/
#progressbar li:after {
    content: "";
    width: 100%;
    height: 2px;
    background: lightgrey;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,
#progressbar li.active:after {
    background: #ed6c4a;
    color: white;
}

.progress-bar {
    width: 100%;
    background: #fff;
    position: relative;
    display: block;
    margin-bottom: 15px;
}

.progress-bar > div {
    border: 1px solid #ddd;
    height: 13px;
    background: #fff;
    width: 11%;
    float: left;
}

.registration-page .custom-label {
    position: absolute;
    top: -15px;
    left: 5px;
    background: #fff;
    padding: 5px 10px;
    font-size: 15px;
    color: #8f8f8f;
    z-index: 999;
}

.registration-page-filled .custom-label {
    left: 5px;
    padding: 1px 2px;
    font-size: 15px;
    color: #8f8f8f;
    z-index: 999;
}

.registration-page-filled .custom-label-select, .registration-page .custom-label-select {
    top: -15px;
    left: 10px;
}

.registration-page-filled .custom-form-group{
    position: relative;
    margin: 8px 0;
}

.registration-page .custom-form-group {
    position: relative;
    margin: 15px 0;
}

.registration-page-filled .form-control {
    padding: 0.5rem 0.75rem 0.5rem !important;
}

.registration-page-filled .form-control, .registration-page .form-control {
    padding: 1rem 0.75rem 0.5rem;
    height: auto;
    border: 1px solid #ddd;
    position: relative;
}


.registration-page input[readonly="true"] {
    background: #fff !important;
    cursor: no-drop;
}

.required {
    color: #dc3545 !important;
}

input.required,
select.required {
    border: 1px solid #dc3545 !important;
    color: #2c3e50 !important;
}

select{
    -webkit-appearance: none;
}

.error-feedback {
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}