
.header-text {
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 30px;
    font-weight: 300;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    text-align: left;
    max-width: 400px;
    margin: auto;
    margin-bottom: 25px;
}
.header-text::after{
    content: "";
    display: block;
    margin-top: -1px;
    width: 80px;
    height: 4px;
    background: #24BCED;

}
.header {
    height: 106px;
    border-radius: 8px 8px 0px 0px;
    border: 0 solid rgba(70, 152, 203, 0.5);
    background-color: rgba(0, 85, 135, 0.4);
    display: flex;
}

.header .tabs {
    padding-top: 10px;
    margin:auto;
}

.header .tabs .tab {
    display: inline-block;
    margin-right: 110px;
}
.header .tabs .tab:last-of-type {
    margin-right: 0px;
}

.header .tabs .tab::before
{
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.5);
    display: block;
    width: 150px;
    z-index: 1;
    margin-left: -122px;
    margin-top: 11px;
}

.header .tabs .tab:first-of-type::before
{
    content: '';
    position: absolute;
    display: none;
    width: 0px;

}

.header .tabs .tab .number {
    width: 26px;
    height: 26px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius:25px;
    color: rgba(0, 85, 135, 0.5);
    text-align: center;
    font-weight: 700;
    margin: auto;
    line-height: 23px;
}

.header .tabs .tab .text {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-weight: 700;
    padding-top: 8px;
}

.header .tabs .tab.active .number {
    background-color: #ffffff;
}

.header .tabs .tab.active .text {
    color: #ffffff;
}

.header .tabs .tab.completed .number {
    background-color: #005587;
}
.header .tabs .tab.completed .number::before {
    content: " ";
    background-image: url('../images/ok-sign.png');
    position: absolute;
    background-repeat: no-repeat;
    height: 11px;
    width: 14px;
    margin-top: 7px;
    margin-left: -1px;
}


/*Footer*/
.footer-msg {
    color: #ffffff;
    font-family: Lato;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: normal;
    line-height: 26px;
    text-align: center;
    /* Text style for "Terms and" */
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    margin-top: 3rem;
}
.footer-msg a{
    color: #ffffff;
    font-weight: bold;
}
.footer-msg a:visited{
    text-decoration: none;
}
.footer-msg a:hover{
    text-decoration: underline;
}
.footer-menu {
    text-align: center;
    margin: auto;
    color: #ffffff;
    margin-top:10px;
    margin-bottom: 10px;
}
.footer-menu a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}
.footer-menu a:hover {
    text-decoration: underline;
}
.footer-menu a:visited{
    text-decoration: none;
}
.logo {
    background: url('../images/hansard-logo.png');
    background-repeat: no-repeat;
    width:210px;
    height: 69px;
    margin-top:20px;
    margin-left: 30px;
}

    .logo.center {
        margin: auto;
        margin-top: 30px;
        margin-bottom: 35px;
    }

.eye {
    background: url('../images/eye.png');
    background-repeat: no-repeat;
    width: 23px;
    height: 23px;
    display: inline-block;
    margin-left: -30px;
    margin-top: 12px;
    cursor: pointer;
    position: absolute;
}

#errorMessage {
    color: #ff0000;
}
@media only screen and (max-width: 700px), (hover: none) {
    .header-text {
        font-size:24px;
    }
    .header {
        height: 60px;
        border-radius: 8px 8px 8px 8px;
    }
    
    .header .tabs {
        padding-top: 0px;
    }
    
    .header .tabs .tab {
        display: inline-block;
        margin-right: 65px;
    }
    
    .header .tabs .tab::before
    {
        width: 41px;
        margin-left: -55px;
        margin-top: 11px;
    }
    
    .header .tabs .tab .text {
        display: none;
    }
  }

  
