html {
    display: grid;
    place-items: center;
    height: 100%;
    background: url(../media/client-logos/Just_Background_4.jpg) no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
    background-color: white;
}

body {
    font: 0.875em/1.5em;
    font-family: var(--current-font), Calibri;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--current-font), 'Futura Std Medium', Calibri !important;
}

.cb {
    clear: both;
}

.Login {
    width: 500px;
    height: 500px;
    margin: auto;
}

.Login_container {
    box-shadow: var(--shadow-large);
}

.View {
    width: 500px;
    height: 500px;
    margin: auto;
}

@media screen and (max-width: 960px) {
    .View {
        position: absolute;
        top: 0;
        left: 10%;
        margin-top: 0;
        margin-left: 0;
    }
}

.LoginHeader {
    height: 100px;
    background-color: var(--clr-white);
    backdrop-filter: blur(5px);
}

.LoginMain {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(5px);
}

    .LoginMain .Content {
        padding: 40px;
    }

.View .LoginMain .Content {
    padding: 20px;
}

.LoginMain .Content h1 {
    color: var(--clr-darkGreyText);
    font-size: 2em;
    font-weight: 500;
}

.LoginMain .Content h2 {
    color: var(--clr-darkGreyText);
    font-size: 1em;
    font-weight: 500;
    margin: 0 0 5px;
}

.LoginMain .Content p {
    margin: 9px 0 5px;
}

.LoginMain .Content .small {
    margin: 5px 5px;
    font-size: 0.9em;
    font-style: italic;
}

.LoginMain .Content .LoginUsername {
    width: 95%;
    height: 30px;
    border: 1px solid lightgrey;
    background: var(--clr-white);
    opacity: 1;
    padding: 10px;
    color: dimgrey;
    font-size: 20px;
    font-family: var(--current-font), Calibri;
    font-style: normal;
}

.LoginMain .Content .LoginPassword {
    width: 95%;
    height: 30px;
    border: 1px solid lightgrey;
    background: var(--clr-white);
    opacity: 1;
    padding: 10px;
    margin-top: 20px;
    color: dimgrey;
    font-size: 20px;
    font-family: var(--current-font), Calibri;
    font-style: normal;
}

.LoginFooter {
    height: 50px;
    background-color: var(--clr-white);
    backdrop-filter: blur(5px);
    display: grid;
    align-items: center;
}

.LoginLogo {
    margin: 20px;
    padding-top: 20px;
    height: 80px;
}

.CookieWarning {
    position: fixed;
    background-color: black;
    width: 100%;
    left: 0;
    bottom: 0;
}

    .CookieWarning p {
        font-size: 14px;
        color: var(--clr-white);
        width: 95%;
        left: 5%;
        right: 5%;
        text-align: center;
        padding: 10px;
    }

.fields {
    width: 100%;
    height: 52px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    font-size: 20px;
    font-family: var(--current-font), 'Futura Std Medium', Calibri, sans-serif;
    font-style: normal;
    color: #534e4c;
    padding: 0 20px 0 20px;
    outline: none;
    opacity: 1;
}

.fimage {
    padding: 0 20px 0 50px;
}

.fields:active, .fields:focus {
    border: 1px solid var(--clr-purpleDark);
    color: var(--clr-purple);
}

.buttonField {
    width: 48%;
    float: left;
    overflow: hidden;
    margin: 0;
    box-sizing: border-box;
    font-family: var(--current-font), 'Futura Std Medium', Calibri, sans-serif;
}

.buttonleft {
    margin-right: 14px;
}

.buttonField .btnBlue, .buttonFieldLong .btnBlue {
    background: var(--clr-purpleDark);
    width: 100%;
    border: none;
    color: var(--clr-white);
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    font-family: var(--current-font), 'Futura Std Medium', Calibri, sans-serif;
}

    .buttonField .btnBlue:hover, .buttonFieldLong .btnBlue:hover {
        background: var(--clr-purple);
        text-decoration: none;
    }

.buttonField .btnGrey, .buttonFieldLong .btnGrey {
    background: #534e4c;
    width: 100%;
    border: none;
    color: var(--clr-white);
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    font-family: var(--current-font), 'Futura Std Medium', Calibri, sans-serif;
}

    .buttonField .btnGrey:hover, .buttonFieldLong .btnGrey:hover {
        background: #828282;
        text-decoration: none;
    }

.buttonFieldLong {
    width: 100%;
    overflow: hidden;
    margin: 0;
    box-sizing: border-box;
}


.LinkField {
    width: 99%;
    text-align: right;
    margin-top: -20px;
}

    .LinkField a:link, .LinkField a:visited {
        color: var(--clr-purpleDark);
        text-decoration: none;
    }

    .LinkField a:hover {
        color: var(--clr-pinkDark);
        text-decoration: none;
        cursor: pointer;
    }


.LoginFooter {
    width: 100%;
    text-align: right;
}

    .LoginFooter ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        padding-inline: 20px;
        margin: 0;
        list-style: none;
    }

        .LoginFooter ul li {
            font-size: 0.9rem;
        }

            .LoginFooter ul li a {
                color: black;
                text-decoration: none;
            }

                .LoginFooter ul li a:hover {
                    color: var(--clr-pinkDark);
                    text-decoration: none;
                }

                .LoginFooter ul li a#Cookies {
                    font-weight: bold;
                }


/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error {
    color: #ff0000;
}

.field-validation-valid {
    display: none;
}

.input-validation-error {
    border: 1px solid #ff0000;
    background-color: #ffeeee;
}

    .input-validation-error:focus {
        border: 1px solid var(--clr-purpleDark);
        background-color: #fff;
    }

.validation-summary-errors {
    font-weight: bold;
    color: #ff0000;
    display: inline-block;
    font-size: 12px;
}

.validation-summary-valid {
    display: none;
}


.LoginErrors {
    height: auto;
}

.cookiesWarning {
    width: 100%;
    background: #FFF;
    -webkit-box-shadow: 0 0 10px 0 #5c5c5c;
    box-shadow: 0 0 10px 0 #5c5c5c;
}

    .cookiesWarning .cookie-content {
        padding: 15px;
    }

    .cookiesWarning h3 {
        font-size: 1.6em;
        line-height: 1.4em;
        font-family: var(--current-font), 'Futura Std Medium', Calibri ;
        color: var(--clr-purple);
    }

    .cookiesWarning p {
        font-size: 18px;
        font-family: var(--current-font), Calibri;
        font-style: normal;
        color: #534e4c;
    }

@media screen and (max-width: 500px) {

    .buttonField {
        width: 100%;
        margin-bottom: 10px;
    }

    .LoginFooter ul {
        padding-left: 10px;
        padding-top: 18px;
    }

        .LoginFooter ul li {
            font-size: 12px;
        }

    .Login {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        margin-top: 0;
        margin-left: 0;
    }

    .View {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        margin-top: 0;
        margin-left: 0;
    }

    .LoginMain {
        background: var(--clr-white);
        background: rgba(255, 255, 255, 0.7);
        background-color: var(--clr-white);
        height: auto;
        min-height: 300px;
    }
}

@media screen and (max-height: 750px) and (min-width:500px) {
    html {
        background-size: 100% 1000px
    }

    .Login {
        width: 500px;
        height: 500px;
        position: absolute;
        top: 0;
        left: 50%;
        margin-top: 0;
        margin-left: -250px;
    }

    .View {
        width: 500px;
        height: 800px;
        position: absolute;
        top: 0;
        left: 50%;
        margin-top: 0;
        margin-left: -250px;
    }

    .LoginMain {
        background: var(--clr-white);
        background: rgba(255, 255, 255, 0.7);
        background-color: var(--clr-white);
        height: auto;
        min-height: 300px;
    }
}

.NIPanel {
    width: 100%;
}

.NITable {
    background: none;
    border: none;
    width: 250px;
    margin: auto;
}

    .NITable th {
        background: none;
        border: none;
        color: #676c79;
        font-weight: bold;
        font-size: 12px;
        text-align: center;
        text-shadow: none;
    }

    .NITable td {
        background: none;
        border: none;
        text-align: center;
    }


.DOBPanel {
    width: 100%;
}

.DOBTable {
    background: none;
    border: none;
    width: 290px;
    margin: auto;
}

    .DOBTable th {
        background: none;
        border: none;
        color: #676c79;
        font-weight: bold;
        font-size: 12px;
        text-align: center;
        text-shadow: none;
    }

    .DOBTable td {
        background: none;
        border: none;
        text-align: center;
    }

strong {
    font-weight: bold;
}




#pswd_info {
    width: 305px;
    padding: 15px;
    background: #fefefe;
    font-size: .875em;
    border-radius: 5px;
    box-shadow: 0 1px 3px #ccc;
    border: 1px solid #ddd;
    text-align: left;
    position: absolute;
    z-index: 100;
    margin-top: 0;
    margin-left: -40px;
}

    #pswd_info h4 {
        margin: 0 0 10px 0;
        padding: 0;
        font-weight: normal;
    }

    #pswd_info::before {
        content: "\25B2";
        position: absolute;
        top: -12px;
        left: 45%;
        font-size: 14px;
        line-height: 14px;
        color: #ddd;
        text-shadow: none;
        display: block;
    }


.pswdInvalid {
    padding-left: 100px;
    line-height: 24px;
    color: #ec3f41 !important;
    background-position: 0 -85px;
    list-style: none;
}

.pswdValid {
    padding-left: 0;
    line-height: 24px;
    color: #3a7d34 !important;
    background-position: 0 -5px;
    list-style: none;
}

#pswd_info {
    display: none;
}

    #pswd_info ul, #pswd_info li {
        margin: 0;
        padding: 0;
    }

        #pswd_info ul li {
            margin: 10px 0;
        }



.PasswordStrength {
    display: block;
    float: left;
    padding-top: 5px;
}

.PasswordLabel {
    float: left;
    width: auto;
}

    .PasswordLabel Label {
        font-size: 11px;
        font-weight: bold;
    }

.PasswordField {
    float: left;
    width: auto;
    margin-left: 10px;
}

.strengthNone {
    height: 10px;
    display: block;
    float: left;
    width: 22.5px;
    background: #D1D1D1;
}

.End {
    margin-right: 5px;
}

.strength0 {
    height: 10px;
    display: block;
    float: left;
    width: 22.5px;
    background: #E51900;
    margin-right: 5px;
}

.strength1 {
    height: 10px;
    display: block;
    float: left;
    width: 22.5px;
    background: #E72900;
    margin-right: 5px;
}

.strength2 {
    height: 10px;
    display: block;
    float: left;
    width: 22.5px;
    background: #E84301;
    margin-right: 5px;
}

.strength3 {
    height: 10px;
    display: block;
    float: left;
    width: 22.5px;
    background: #EA5E05;
    margin-right: 5px;
}

.strength4 {
    height: 10px;
    display: block;
    float: left;
    background: #EA7C0B;
    width: 22.5px;
    margin-right: 5px;
}

.strength5 {
    height: 10px;
    display: block;
    float: left;
    background: #EA9B11;
    width: 22.5px;
    margin-right: 5px;
}

.strength6 {
    height: 10px;
    display: block;
    float: left;
    background: #EAB316;
    width: 22.5px;
    margin-right: 5px;
}

.strength7 {
    height: 10px;
    display: block;
    float: left;
    background: #DEBF1C;
    width: 22.5px;
    margin-right: 5px;
}

.strength8 {
    height: 10px;
    display: block;
    float: left;
    background: #AFBF22;
    width: 22.5px;
    margin-right: 5px;
}

.strength9 {
    height: 10px;
    display: block;
    float: left;
    background: #95BF25;
    width: 22.5px;
}




#cookie-notice {
    position: fixed;
    min-width: 100%;
    height: auto;
    z-index: 100000;
    font-size: 12px;
    line-height: 18px;
    left: 0;
    text-align: center;
}

.cookie-notice-container {
    padding: 10px;
}

.cn-top {
    top: 0;
}

.cn-bottom {
    bottom: 0;
}

#cookie-notice .button {
    margin-left: 10px;
}

    #cookie-notice .button.wp-default {
        font-family: sans-serif;
        line-height: 18px;
        padding: 2px 12px;
        background: linear-gradient(to bottom, #FEFEFE, #F4F4F4) repeat scroll 0 0 #F3F3F3;
        border-color: #BBB;
        color: #333;
        text-shadow: 0 1px 0 #FFF;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        border-radius: 3px 3px 3px 3px;
        border-style: solid;
        border-width: 1px;
        cursor: pointer;
        display: inline-block;
        font-size: 12px;
        font-style: normal;
        text-decoration: none;
        white-space: nowrap;
        outline: none;
    }

        #cookie-notice .button.wp-default:hover, #cookie-notice .button.wp-default:focus {
            background: linear-gradient(to bottom, #FFFFFF, #F3F3F3) repeat scroll 0 0 #F3F3F3;
            border-color: #999999;
            color: #222222;
        }

    #cookie-notice .button.bootstrap {
        font-family: sans-serif;
        display: inline-block;
        *display: inline;
        padding: 4px 12px;
        padding: 2px 10px;
        margin-right: 0.3em;
        margin-bottom: 0;
        *margin-left: .3em;
        line-height: 20px;
        color: #333333;
        color: #ffffff;
        text-align: center;
        text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
        text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
        font-style: normal;
        vertical-align: middle;
        cursor: pointer;
        background-color: var(--clr-purpleDark);
        *background-color: var(--clr-purple);
        background-image: -moz-linear-gradient(top, var(--clr-purpleDark), var(--clr-purple));
        background-image: -webkit-gradient(linear, 0 0, 0 100%, from(var(--clr-purpleDark)), to(var(--clr-purple)));
        background-image: -webkit-linear-gradient(top, var(--clr-purpleDark), var(--clr-purple));
        background-image: -o-linear-gradient(top, var(--clr-purpleDark), var(--clr-purple));
        background-image: linear-gradient(to bottom, var(--clr-purpleDark), var(--clr-purple));
        background-repeat: repeat-x;
        border-style: solid;
        border-width: 1px;
        border-color: var(--clr-purple) var(--clr-purple) #002a80;
        border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
        filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
        font-size: 12px;
        text-decoration: none;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        outline: none;
    }

        #cookie-notice .button.bootstrap:hover, #cookie-notice .button.bootstrap:focus {
            color: #ffffff;
            background-color: var(--clr-purple);
            *background-color: var(--clr-purpleDark);
            background-position: 0 -15px;
            -webkit-transition: background-position 0.1s linear;
            -moz-transition: background-position 0.1s linear;
            -o-transition: background-position 0.1s linear;
            transition: background-position 0.1s linear;
        }


.section-home {
    margin-bottom: 20px;
    border-radius: 5px;
    background: rgba(95, 95, 97, 0.1);
}

.section-return {
    margin-bottom: 0;
    border-radius: 5px;
    border: 1px solid var(--clr-purpleLight);
    background: rgba(95, 95, 97, 0.1);
    width: 100%;
}

.pointer {
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: inset 0 0 0 0 rgba(95,95,97,0.1);
}

    .pointer:hover {
        cursor: pointer;
        box-shadow: inset 0 0 0 5px rgba(95,95,97,0.1);
        background: var(--clr-purpleLight);
    }

.section-small-icon {
    height: 100%;
    min-height: 20px;
    padding: 8px;
    float: left;
    min-width: 50px;
    text-align: center;
    margin-top: 2px;
}

    .section-small-icon f {
        font-size: 28px;
        opacity: 0.4;
    }

.section-return-small-icon {
    height: 100%;
    min-height: 20px;
    padding: 8px;
    float: left;
    min-width: 50px;
    text-align: center;
    margin-top: 8px;
}

    .section-return-small-icon f {
        font-size: 28px;
        opacity: 0.4;
    }

@media only screen and (max-width:700px) {
    .section-icon {
        padding: 20px !important;
        padding-bottom: 0 !important;
        float: none;
        text-align: left;
    }

    .section-small-icon {
        padding: 20px !important;
        padding-bottom: 0 !important;
        float: none;
        text-align: left;
    }

    .section-figure {
        margin-left: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 10px !important;
        min-height: 10px !important;
    }


    .section-return {
        width: 100%;
        float: none;
    }
}

.section-normal {
    padding: 10px, 20px, 10px, 20px;
}

    .section-normal h5 {
        font-size: 20px !important;
        font-weight: bold;
    }

    .section-normal p {
        font-size: 14px !important;
    }

.section-return-normal {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

    .section-return-normal h5 {
        font-size: 20px !important;
        font-weight: bold;
    }

    .section-return-normal p {
        font-size: 14px !important;
    }

/** {
    font-family: 'Sofia Pro', Arial, sans-serif !important;
}*/