/*form styles*/
#registerForm {
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
}

#registerForm fieldset {
    background: white;
    border: 0 none;
    box-shadow: rgba(29, 29, 29, 0.1) 0px 4px 20px 0px;
    padding: 20px 30px;
    box-sizing: border-box;
    width: 80%;
    margin: 0 10%;
    border-radius: 8px;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#registerForm fieldset:not(:first-of-type) {
    display: none;
}

/*buttons*/
#registerForm .buttonDiv .action-button {
    width: 100px;
    background: #0B1F3A;
    color: white;
    border: 0 none;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
    font-family: "Roboto-Medium";
}

#registerForm .buttonDiv .action-button:hover, #registerForm .buttonDiv .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #0B1F3A;
}

#registerForm .buttonDiv .action-button-previous {
    width: 100px;
    background: #0B1F3A;
    color: white;
    border: 0 none;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
    font-family: "Roboto-Medium";
}

#registerForm .buttonDiv .action-button-previous:hover, #registerForm .buttonDiv .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #0B1F3A;
}

/*headings*/
.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
    text-align: center;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #999;
    margin-bottom: 20px;
    text-align: center;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
    text-align: center;
}

#progressbar li {
    list-style-type: none;
    color: #999;
    text-transform: uppercase;
    font-size: 9px;
    width: 25%;
    float: left;
    position: relative;
    letter-spacing: 1px;
    text-align: center;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: white;
    font-family: 'Roboto-Medium';
    background: #CFAF70;
    border-radius: 8px;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #CFAF70;
    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: #0B1F3A;
    color: white;
}
.datepicker table tr td.active, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.active:hover{
    background-image: none !important;
    background-color: #CFAF70 !important;
}
@media (max-width: 1279px){
    #registerForm fieldset{
        margin-right:3% !important;
        margin-left: 3% !important;
        width: 94% !important;
    }
    #progressbar{
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}