/*

    Too change the basic colour scheme do a global find and replace 
    using the the text below from the # to the final / as the search term
    and an identical replace term with only the 6 hex chanracter changed to the desired values
    
*/


/*    Light Background Colour    #E0EBF4/*   Light Background Colour*/
/*    Dark Background Colour     #679EC9/*   Dark Background Colour*/


.original {
    display: none;
}

.LoginBackground {
    background-color: var(--button-background); /* For browsers that do not support gradients */
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover
}

.strapClient {
    position: absolute;
    top: 3.125rem;
    right: 3.125rem;
}

    .strapClient img {
        cursor: pointer;
    }

.strapDebug {
    position: relative;
    top: 3.125rem;
    color: var(--SoftRed);
    text-align: center;
    font-size: 1.875rem;
}

.vDivs {
    margin: 0 0 0.125rem 0.125rem;
    text-align: left;
}

    .vDivs span {
        font-size: 1.125rem;
        margin-top: 0.125rem;
        text-align: right;
    }

    .vDivs input {
        font-size: 1rem;
        margin-top: 0.25rem;
        margin-bottom: 0.375rem;
        height: 1.375rem;
        width: 23.125rem;
        padding-left: 0.5rem;
        color: var(--MainForeColour);
        border: 0.0625rem solid #2C8AC8;
    }

.divbutton {
    text-align: center;
    vertical-align: middle;
    padding-top: 0.625rem;
    border-radius: 0.1875rem;
    border-width: 0.0625rem;
    border-style: solid;
    width: 23.75rem;
    height:2.1875rem;
}
    .divbutton span {
        font-size: 1.125rem;
    }


.divbutton_live {
    background-color: #0000ff; /*blue*/
    cursor: pointer;
    border-color: #0000ff;
    color: var(--MainBackgroundColour);
}

    .divbutton_live:hover {
        background-color: #1a1aff /*Light Background Colour*/;
    }

    .divbutton_live span {
        color: var(--font-color);
    }

.divbutton_other {
    background-color: var(--SoftRed);
    cursor: pointer;
    border-color: #ba3112;
    color: var(--DarkBlue);
}

    .divbutton_other:hover {
        background-color: #d13715;
        color: white;
    }

.divbutton_MS {
    background-color: var(--MicrosoftBlue);
    cursor: pointer;
    border-color: var(--GridBorderColour);
    color: var(--PaleGrey);
}

    .divbutton_MS:hover {
        background-color: var(--MicrosoftDarkBlue);
        color: white;
    }

.divbutton_Disabled {
    border-color: var(--GridBorderColour);
    background-color: #DADADA;
    cursor: no-drop;
}

    .divbutton_Disabled span {
        color: var(--GridBorderColour);
    }

.middle {
    display: table-cell;
    vertical-align: middle;
}

.loginDiv {
    text-align: center;
}

.loginInfo {
    background-color: var(--button-background);
    color: var(--MainForeColour);
    position: fixed;
    bottom: 0;
    height: 3.75rem;
    text-align: left;
    width: 100%;
    z-index: 1;
    border-top: var(--BorderColour);
    border-top-style: solid;
    border-top-width: thin;
}

    .loginInfo p {
        margin-left: 0.625rem;
        margin-top: 0.9375rem;
    }

    .loginInfo a {
        text-decoration: none;
        color: var(--MainForeColour);
    }

        .loginInfo a:hover {
            text-decoration: none;
            color: #000066;
        }

    .loginInfo span {
        display: block;
        position: absolute;
        float: right;
        right: 5rem;
        top: 1.25rem;
        cursor: pointer;
        color: var(--MainForeColour);
        font-size: 0.6875rem;
    }

        .loginInfo span:hover {
            color: var(--LightBackgroundColour) /*   Light Background Colour*/;
        }

.LoginLanguage {
    position: absolute;
    right: 0.625rem;
    bottom: 1.25rem;
}

    .LoginLanguage img {
        cursor: pointer;
    }

.LoginLanguageEtc {
    cursor: pointer;
    display: inline-block;
    position: relative;
    top: -0.1875rem;
    left: -0.1875rem;
    color: var(--DarkBlue);
    font-weight: bold;
}

.divSelectLanguageItem {
    margin-bottom: 0.1875rem;
}

    .divSelectLanguageItem:hover {
        background-color: var(--LightBackgroundColour) /*   Light Background Colour*/;
    }

    .divSelectLanguageItem img {
        margin-right: 0.375rem;
    }

.divSelectLanguage {
    overflow: auto;
    color: var(--MainForeColour);
    font-size: 0.625rem;
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 6.25rem;
    border: 0.0625rem solid var(--MainForeColour);
    background-color: var(--MainBackgroundColour);
    padding: 0.625rem;
    line-height: 0.9375rem;
}

    .divSelectLanguage img {
        display: inline-block;
    }

    .divSelectLanguage span {
        display: inline;
        color: var(--MainForeColour);
    }

.LoginError {
    font-size: 1rem;
    font-weight: bold;
    color: var(--SoftRed);
    text-align: left;
    padding-bottom: 1.25rem;
}

.LoggedOut {
    text-align: left;
    font-size: 1rem;
    font-weight: bold;
    color: var(--MainForeColour);
    padding-bottom: 1.25rem;
}

.loginBrowserInvalid {
    display: none;
    margin: auto;
    text-align: center;
    width: 31.25rem;
    height: 12.5rem;
    overflow: hidden;
    font-size: medium;
}

.sidenav {
    background-size: cover;
    background-position: top left;
    background-repeat: repeat-y;
    height: calc(100% - 3.75rem);
    width: 30%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
}
