/*nav*/
/* .dropdown:hover>.dropdown-menu {
    display: block;
    background:#002346;
  }
  .dropdown-item:hover{
      background-color : #0073AF;
      color:white;
  } */
  .dropdown-item{
      color:white;
  }
  .dropdown-item:hover{
    color:white !important;
}
  /*
  .navbarDropdownMenuLink{
    color:white !important; 
  }
  .navbarLink{
      color:white !important;
  }
  .navbar{
    background-color: #002346 !important;
  }
  
div.container{
    margin-top: 5rem !important;
}
  */
  
  .login-out{
    background: #0073AF !important;
    color: white !important;
    margin-left: 16px;
  }
 /*footer*/
.page-footer{
    background: #002346;
}  
body a{
    color: black;
}
.page-wrapper{
    min-height: 70%;
}
ul{
    list-style: none;
}
.footer-links, a{
    text-decoration: none !important;
    color:white;
}
a:hover{
    color: #004673;
}
footer{
    position: relative;
    bottom: 0px;
    color:white;
}
/*basic reset*/
* {
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    /*background-color: black;*/
    /*background: -webkit-linear-gradient(to left, #6441A5, #2a0845); /* Chrome 10-25, Safari 5.1-6 */
}

body {
    font-family: montserrat, arial, verdana;
    background: transparent;
}

/*form styles*/
#Form {
    text-align: center;
    position: relative;
    margin-top: 30px;
}

#Form fieldset {
    background: white;
    border: 0 none;
    border-radius: 0px;
    /* box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4); */
    padding: 20px 30px;
    box-sizing: border-box;
    width: 80%;
    margin: 0 10%;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#Form fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/
#Form input, #Form textarea, .form-control {
    /* padding: 15px !important;  */
    /*border: 1px solid #ccc;*/
    /*border-radius: 0px;*/
    margin-bottom: 10px;
    /* width: 100%; */
    box-sizing: border-box;
    /*font-family: montserrat;*/
    color: #2C3E50;
    font-size: 15px;
}

#Form select option{
    font-size: 15px !important;
}
select.form-control.is-valid, select.form-control.is-invalid{
    background-position: center right calc(.375em + .4875rem); /* set position */
}

div.alert{
    margin-top: 5rem !important;
}

#Form input:focus, #Form textarea:focus, .form-control:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #0073AF;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}

/*buttons*/
#Form .action-button {
    width: 100px;
    background: #004673;
    color: white;
    padding: 10px 5px;
    margin: 10px 5px;
}





/* #msform .action-button:hover, #msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #ee0979;
} */


#Form .action-button-previous {
    width: 100px;
    background: #0073AF;
    color: white;
    padding: 10px 5px;
    margin: 10px 5px;
}

/* #msform .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
} */

/*headings*/
.fs-title {
    font-size: 18px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: bold;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}











/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: #0073AF;/**/
    text-transform: uppercase;
    font-size: 9px;
    /* width: 11.11%;16.6%; */
    float: left;
    position: relative;
    letter-spacing: 1px;
    padding-left: 2.5px;
    padding-right: 2.5px;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 30px;
    height: 30px;
    line-height: 26px;
    display: block;
    font-size: 15px;
    padding:2px;
    color: white;
    background: #6C757D;/**/
    border-radius: 25px;
    margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #6C757D;/**/
    position: absolute;
    left: -50%;
    top: 14px;
    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{
    background: #218838;
    color: white;
}
#progressbar li.active:after{
    background: #6C757D;
    color: white;
}    

#progressbar li.active-color:before{
    background: #FFC107 !important;
    color:black !important;
}
