﻿@charset "UTF-8";
@import url("fonts/Theinhardt Bold/TheinhardtBold-Regular.css");
@import url("fonts/Theinhardt Regular/TheinhardtRegular-Regular.css");
@import url("fonts/Theinhardt Regular Ita/TheinhardtRegular-Italic.css");
/* Variables */
:root {
    --active-border: #6Cf;
    --active-background: #F5F5F7;
    --inactive-background: #F5F5F7;
    --hover-background: #DDD;
    --ge-black: #000000;
    --ge-white: #FFFFFF;
    --ge-grey: #404140;
    --ge-light-blue: #00A0FF;
    --ge-dark-blue: #0055A2 /*#4055A2*/;
    --ge-light-grey: #F5F5F7;
    --ge-dark-grey: #424244;
    --ge-title-grey: #87878A;
    --ge-dark-green: #459A36;
    --ge-dark-pink: #DC3296;
}

.meter-reading__meter {
    margin: 0 -15px;
}

.meter-register__bcgrey {
    background-color: var(--active-background);
    padding-top: 5px;
    border-radius: 10px;
}

hr.hr-blue {
    border-top-color: var(--ge-light-blue);
}

.meter-reading:last-child hr.hr-blue {
    display: none;
}

html {
    box-sizing: border-box !important;
}
/*AspxControls*/
div.col-md-0 {
    display: none;
}

div.master-message, div.time-out-message {
    display: none;
    position: fixed;
    z-index: 100;
    top: 400px;
    top: 40vh;
    left: 50vw;
    margin-left: -200px;
    margin-left: -20vw;
    width: 400vw;
    width: 40vw;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0.5rem 0.5rem 0.5rem rgba(0, 0, 0, 0.2);
    border: 1px solid var(--ge-black);
    padding: 10px;
    background-color: var(--ge-light-grey);
    color: var(--ge-black);
    text-align: center;
    vertical-align: middle;
    opacity: 0.9;
    font-weight: bold;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 100%;
    box-sizing: content-box;
}

    div.master-message div.pop-up-message, div.time-out-message div.pop-up-message {
        line-height: 14vh;
    }

        div.master-message div.pop-up-message div, div.time-out-message div.pop-up-message div {
            line-height: 1em;
            display: inline-block;
            vertical-align: middle;
        }

    div.master-message::before, div.time-out-message::before {
        content: '';
        /* Gets an approx match to the opaque colour on a White background. */
        color: var(--ge-white);
        background-color: #404140;
        display: block;
        width: 100%;
        padding: 10px;
        padding: 1rem;
        font-size: 22px;
        font-size: 2.2rem;
        margin-bottom: 10px;
        margin-bottom: 1rem;
        margin-left: -10px;
        margin-left: -1rem;
        margin-right: -10px;
        margin-right: -1rem;
        margin-top: -10px;
        margin-top: -1rem;
        text-align: center;
        box-sizing: content-box;
    }

div.master-message-close {
    color: white;
    position: absolute;
    top: 8px;
    right: 10px;
    cursor: pointer;
}

    div.master-message-close::after {
        content: 'X';
        cursor: pointer;
    }

div.master-message.warning::before, div.time-out-message.warning::before {
    content: 'WARNING';
}

div.master-message.success::before, div.time-out-message.success::before {
    content: 'SUCCESS';
}

div.master-message.error::before, div.time-out-message.error::before {
    content: 'OOPS!';
}

div.master-message.custom::before, div.time-out-message.custom::before {
    content: ' ';
    height: 20px;
}

div.master-message.custom div.custom-title, div.time-out-message.custom div.custom-title {
    color: white;
    font-weight: bold;
    margin-top: -40px;
}

div.master-message.custom .pop-up-message div, div.time-out-message.custom .pop-up-message div {
    margin-top: 30px;
}

span.validator {
    color: #F00;
    text-transform: capitalize;
    display: inline-block;
    padding-right: 10px;
}

    span.validator::before {
        content: '* ';
        color: inherit;
    }
/*Site*/
img {
    height: auto;
    width: auto;
    max-width: 100%;
    display: inline-block;
}

/* Removes some weird default bootstrap styling - was adding -15px margin to everything */

.row {
    margin: 0 !important;
}

.container-fluid {
    padding: 0 !important;
    margin: 0 !important;
}

body {
    font-family: Montserrat, Theinhardt-Regular, Arial, sans-serif;
    font-weight: 300;
    font-size: 16.5px;
    /* If REM is not supported. */
    font-size: 1.65rem;
    /* Gets an approx match to the opaque colour on a White background. */
    color: #404140;
    color: #404140;
    /* Gets an approx match to the opaque colour on a White background. */
    background-color: white;
    background-color: white;
    padding-bottom: 10px;
    /* If REM is not supported. */
    padding-bottom: 1rem;
    padding-bottom: 0;
}

p {
    font-size: 16px;
    font-size: 1.6rem;
}

h1, h2 {
    font-weight: 700;
    color: var(--ge-title-grey);
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: 0.13em;
}

p, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
    /* If REM is not supported. */
    margin-bottom: 1rem;
}

div.clear {
    content: '';
    width: 100%;
    min-height: 1px;
    clear: both;
    float: none;
    display: block;
    position: relative;
}

h1 {
    font-size: 14px;
    font-size: 1.4rem;
}

h2 {
    font-size: 14px;
    font-size: 1.4rem;
}

h3 {
    font-size: 40px;
    font-size: 4rem;
    font-weight: 400;
    line-height: 46px;
}

h4 {
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 36px;
}

h5 {
    font-size: 21.45px;
    font-size: 2.145rem;
}

h6 {
    font-size: 17.325px;
    font-size: 1.7325rem;
}

a.button, button, input[type="submit"] {
    box-sizing: border-box;
    text-align: center;
    padding: 10px;
    border: 1px solid #000;
    color: #FFF;
    background-color: var(--inactive-background);
    display: inline-block;
    text-decoration: none;
}

    a.button.full-width, button.full-width, input[type="submit"].full-width {
        width: 100%;
    }

    a.button:hover, button:hover, input[type="submit"]:hover {
        border: 1px solid var(--active-border);
        cursor: pointer;
    }

.section-description, .em {
    font-style: italic;
}

.strong {
    font-weight: bold;
}

.text-right {
    text-align: right;
}

.text-centre, .text-center {
    text-align: center;
}

@media (max-width: 992px) {
    .text-center-m {
        text-align: center;
    }
}

table.table thead {
    /*background-color: var(--inactive-background);*/
    color: #FFF;
}

table.alternate tbody tr:nth-child(2n) {
    background-color: var(--hover-background);
}

.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
    padding: 8px !important;
}

.compare-dropdown {
    margin-top: 20px !important;
}

.compare-tariff-wrapper {
    padding: 0 20px !important;
}

dl.faq dt {
    cursor: pointer;
}

.pointer {
    cursor: pointer;
}

.statement-arrow {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

dl.faq dd {
    display: block;
    transition: opacity 0.5s ease-out;
    opacity: 0;
    height: 0;
    overflow: hidden;
    clear: both;
    margin-bottom: 15px;
}

dl.faq dt::before {
    content: '\FF0B';
    color: var(--ge-light-blue);
    position: absolute;
    right: -5%;
    cursor: pointer;
    font-size: 25px;
    font-weight: bold;
}

dl.faq dt.faq--active::before {
    content: '\FF0D';
}

dl.faq dt.faq--active + dd {
    opacity: 1;
    height: auto;
    padding-top: 10px;
}

div.dd-guarantee {
    margin-top: 15px;
}

.highlight {
    color: var(--active-border);
}

.no-wrap {
    white-space: nowrap !important;
}

.equal-spacing {
    text-wrap: balance;
}

.activity_insights {
    width: 240px;
}

@media (min-width: 1400px) {
    .col-xl-7 {
        width: 58.333%;
    }

    .col-xl-5 {
        width: 41.666%;
    }
}

@media (min-width: 1600px) {
    .col-xxl-6 {
        width: 50%;
    }
}

@media (min-width: 1200px) and (max-width: 1650px) {
    .col-xxl-12 {
        width: 100%;
    }

    .col-xxl-offset-0 {
        margin-left: 0;
    }
}

.spacer-small {
    height: 0;
    margin-bottom: 16px;
}

.spacer-medium {
    height: 0;
    margin-bottom: 32px;
}

.spacer-large {
    height: 0;
    margin-bottom: 64px;
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 41.25px;
        /* If REM is not supported. */
        font-size: 4.125rem;
    }

    h2 {
        font-size: 21.45px;
        /* If REM is not supported. */
        font-size: 2.145rem;
    }

    h3 {
        font-size: 24px;
        /* If REM is not supported. */
        font-size: 2.4rem;
    }

    h4 {
        font-size: 21.45px;
        /* If REM is not supported. */
        font-size: 2.145rem;
    }

    h5 {
        font-size: 17.325px;
        /* If REM is not supported. */
        font-size: 1.7325rem;
    }

    h6 {
        font-size: 16.5px;
        /* If REM is not supported. */
        font-size: 1.65rem;
    }
}

ul.no-disc {
    list-style: none;
    list-style-type: none;
}

/*Nav*/

nav ul {
    width: 100%;
    padding-inline-start: 0px;
}

    nav ul li {
        margin: 0;
        display: inline-block;
        list-style-type: none;
        transition: all 0.2s;
    }

ul.nav-bar {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

li.nav-bar__item {
    width: 25vw;
}

    li.nav-bar__item a, li.nav-bar__item a:link, li.nav-bar__item a:visited, li.nav-bar__item a:hover, li.nav-bar__item a:active {
        box-sizing: border-box;
        text-align: center;
        padding: 10px;
        border: 1px solid var(--ge-black);
        color: var(--ge-white);
        background-color: var(--inactive-background);
        display: block;
        text-decoration: none;
    }

        li.nav-bar__item a:hover {
            border: 1px solid var(--active-border);
            cursor: pointer;
        }

li.nav-bar__item--active a, li.nav-bar__item--active a:link, li.nav-bar__item--active a:visited, li.nav-bar__item--active a:hover, li.nav-bar__item--active a:active {
    background-color: var(--active-background);
}

.mobile-nav {
    display: none;
}

.mobile-nav-menu {
    position: fixed;
    background-color: var(--ge-light-grey);
    top: 0;
    right: 0;
    z-index: 1;
    display: none;
}

.mobile-hamburger-container {
    top: 12px;
    text-align: right;
    cursor: pointer;
    z-index: 2;
}

@media screen and (max-width: 1199px) {
    .sidebar-nav, .desktop-nav {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .show-large-desktop {
        display: none !important;
    }

    .hide-large-desktop {
        display: block !important;
    }
}

@media screen and (min-width: 1200px) {
    .show-large-desktop {
        display: block !important;
    }

    .hide-large-desktop {
        display: none !important;
    }
}

@media screen and (max-width: 600px) {
    ul .nav-bar {
        flex-direction: column;
    }

    li.nav-bar__item {
        width: 100vw;
    }
}
/* Side Bar */

a.side-bar__link {
    white-space: nowrap !important;
}

li.side-bar__item {
    width: 100%;
    margin-bottom: 10px;
    margin-left: 15px;
}

    li.side-bar__item:last-child {
        padding-bottom: 8px;
        border-bottom: 1px solid var(--ge-dark-grey);
    }

    li.side-bar__item a, li.side-bar__item a:link, li.side-bar__item a:visited, li.side-bar__item a:hover, li.side-bar__item a:active {
        box-sizing: border-box;
        padding: 8px 0 0 0;
        border-top: 1px solid var(--ge-dark-grey);
        color: var(--ge-dark-grey);
        /*background-color: var(--inactive-background);*/
        display: block;
        text-decoration: none;
        font-weight: normal;
        font-size: 20px;
    }

        li.side-bar__item a:hover {
            /*border: 1px solid var(--active-border);*/
            cursor: pointer;
            font-weight: bold;
        }

li.side-bar__item--active a, li.side-bar__item--active a:link, li.side-bar__item--active a:visited, li.side-bar__item--active a:hover, li.side-bar__item--active a:active {
    /*background-color: var(--active-background);*/
    font-weight: bold;
}

.account__info {
    text-align: center;
    min-height: 300px;
    position: relative;
    padding: 20px;
    border-radius: 10px;
    margin: 20px;
    background-color: var(--ge-white);
}

    .account__info a.button {
        position: absolute;
        bottom: 0px;
        left: 50%;
        width: 300px;
        margin-left: -150px;
    }

/*Account Select*/
div.account-select {
    margin-top: 15px;
    margin-bottom: 15px;
    border: 1px solid var(--ge-black);
    padding-top: 15px;
    padding-bottom: 15px;
}

span.account-select__balance-holder, span.bill__balance-holder {
    display: block;
}

span.account-select__balance {
    font-size: 41.25px;
    font-size: 4.125rem;
}

@media screen and (max-width: 480px) {
    span.account-select__balance {
        font-size: 21.45px;
        font-size: 2.145rem;
    }
}

span.bill__balance, .account__data {
    display: block;
    font-size: 41.25px;
    font-size: 4.125rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

span.bill__balance_direction {
    display: block;
}

a.bill__payment-button {
    display: block;
    margin-bottom: 15px;
}
/*NK*/

.ta-center {
    text-align: center;
}

.ta-right {
    text-align: right;
}

.grey-background {
    background-color: var(--ge-light-grey);
}

/*.pnl-account-select {
    margin: 0 -15px;
    padding: 0 15px;
}*/

.pnlCompareTariff {
    padding: 0 !important;
}

.white-background {
    background-color: var(--ge-white);
}

@media (min-width: 992px) {
    .main-panel {
        min-height: 520px;
    }

    .inner-panel {
        min-height: 400px;
    }

    .side-panel {
        min-height: 520px;
    }
}

.main-panel {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
}

.chart-panel {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    min-height: 350px; /* adjust as needed */
    max-height: 45vh; /* limits it on large screens */
    height: auto;
}

.side-panel {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    overflow: auto;
}

.normal {
    font-weight: normal !important;
}

.bold {
    font-weight: bold !important;
}

.fs12 {
    font-size: 12px !important;
    font-size: 1.2rem !important;
}

.fs14 {
    font-size: 14px !important;
    font-size: 1.4rem !important;
}

.fs17 {
    font-size: 17px !important;
    font-size: 1.7rem !important;
}

.fs20 {
    font-size: 20px !important;
    font-size: 2rem !important;
}

.fs50 {
    font-size: 50px !important;
    font-size: 5rem !important;
}

.fs80 {
    font-size: 80px !important;
    font-size: 8rem !important;
}

.marginl15 {
    margin-left: 15px;
}

.marginlm15 {
    margin-left: -15px;
}

.marginbm10 {
    margin-bottom: -10px;
}

.height5 {
    height: 5px;
}

.height10 {
    height: 10px;
}

.height15 {
    height: 15px;
}

.height20 {
    height: 20px;
}

.height25 {
    height: 25px;
}

.height30 {
    height: 30px;
}

.height50 {
    height: 50px;
}

.height70 {
    height: 70px;
}

.height80 {
    height: 80px;
}

.height100 {
    height: 100px;
}

.height120 {
    height: 120px;
}

.blue-text {
    color: var(--ge-light-blue) !important;
}

.blue-number {
    color: var(--ge-light-blue) !important;
    font-weight: 700 !important;
}

.bb-lightblue {
    border-bottom: 1px solid var(--ge-light-blue);
}

.credit {
    color: var(--ge-dark-green) !important;
    font-weight: 700 !important;
}

.acc-bal-credit {
    color: var(--ge-light-blue) !important;
}

.debit {
    color: var(--ge-dark-pink) !important;
    font-weight: 700 !important;
}

.acc-bal-debit {
    color: var(--ge-dark-pink) !important;
}

.pink-warning {
    color: var(--ge-dark-pink) !important;
    font-weight: 700 !important;
}

.links-w, .links-w a:link, .links-w a:visited {
    color: var(--ge-white) !important;
    text-decoration: none !important;
}

.footer-emergency-text {
    font-size: 24px;
    letter-spacing: normal;
    font-weight: 500;
    line-height: 1.1;
}

.links-w-ul a:link, .links-w-ul a:visited {
    color: var(--ge-white) !important;
    text-decoration: underline !important;
}

.links-dg, .links-dg a:link, .links-dg a:visited {
    color: var(--ge-dark-grey) !important;
    text-decoration: none !important;
}

.links-lb, .links-lb a:link, .links-lb a:visited {
    color: var(--ge-light-blue) !important;
    text-decoration: none !important;
}

.links-lb-u, .links-lb-u a:link, .links-lb-u a:visited {
    color: var(--ge-light-blue) !important;
    text-decoration: underline !important;
}

.links-bl-u, .links-bl-u a:link, .links-bl-u a:visited {
    color: var(--ge-black) !important;
    text-decoration: underline !important;
}

.links-dp-u, .links-dp-u a:link, .links-dp-u a:visited {
    color: var(--ge-dark-pink) !important;
    text-decoration: underline !important;
}

.links-db, .links-db a:link, .links-db a:visited {
    color: var(--ge-dark-blue) !important;
    text-decoration: none !important;
}

.links-db-select, .links-db-select a:link, .links-db-select a:visited {
    color: var(--ge-dark-blue) !important;
    text-decoration: none !important;
}

.links-db[aria-selected="true"] {
    font-weight: bold;
}

.links-b, .links-b a:link, .links-b a:visited {
    color: var(--ge-black) !important;
    text-decoration: none !important;
}

.blue-button, .blue-button:link, .blue-button:visited {
    background-color: var(--ge-light-blue) !important;
    border: none !important;
    color: var(--ge-white) !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    font-size: 16px !important;
    font-size: 1.6rem !important;
    line-height: 19.5px !important;
    line-height: 1.95rem !important;
    letter-spacing: 0.13em !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    padding: 15px 30px !important;
}

.blue-outline-button {
    font-size: 16px !important;
    font-size: 1.6rem !important;
    color: var(--ge-light-blue) !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 0.13em !important;
    line-height: 20px !important;
    line-height: 2rem !important;
    background-color: var(--ge-white) !important;
    border: 2px solid var(--ge-light-blue) !important;
    padding: 10px 20px !important;
    white-space: break-spaces;
}

@media (max-width: 991px) {
    .button-shrink-mobile {
        padding: 10px 5px !important;
        font-size: 1.5rem !important;
    }
}

.mw150 {
    min-width: 150px !important;
}

@media (min-width: 992px) {
    .mw300 {
        min-width: 300px !important;
    }

    .w310 {
        width: 310px !important;
        margin: 0 auto;
    }
}

@media (max-width: 991px) {
    .mw300 {
        min-width: 265px !important;
    }
}

.w360 {
    max-width: 360px !important;
    margin: 0 auto;
}

.black-outline-button {
    font-size: 16px !important;
    font-size: 1.6rem !important;
    color: var(--ge-grey) !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 0.13em !important;
    line-height: 20px !important;
    line-height: 2rem !important;
    background-color: var(--ge-white) !important;
    border: 2px solid var(--ge-grey) !important;
    padding: 10px 20px !important;
}

.black-outline-cancel-button {
    font-size: 16px !important;
    font-size: 1.6rem !important;
    color: var(--ge-grey) !important;
    font-weight: bold !important;
    text-transform: none !important;
    text-decoration: underline !important;
    letter-spacing: 0.13em !important;
    line-height: 20px !important;
    line-height: 2rem !important;
    background-color: transparent !important;
    border: 0 !important;
    padding: 10px 20px !important;
}

.blue-outline-checkbox {
    font-size: 16px !important;
    font-size: 1.6rem !important;
    accent-color: var(--ge-light-blue) !important;
    color-scheme: light !important;
    background-color: var(--ge-white) !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    letter-spacing: 0.13em !important;
    line-height: 20px !important;
    line-height: 2rem !important;
    padding: 0 !important;
    outline: 2px solid var(--ge-light-blue) !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

    .blue-outline-checkbox div {
        padding: 0 !important;
        position: relative !important;
    }

        .blue-outline-checkbox div label {
            font-size: 16px !important;
            color: var(--ge-light-blue) !important;
            text-align: center !important;
            padding-left: 20px !important;
        }

        .blue-outline-checkbox div span {
            border: none !important;
            display: inline-table;
        }

            .blue-outline-checkbox div span input {
                margin-right: 4px !important;
                margin-top: 15px !important;
                position: absolute !important;
            }

.blue-checkbox label {
    font-weight: normal !important;
    padding-left: 0 !important;
    padding-top: 3px !important;
}

.blue-checkbox div span {
    border: none !important;
}

.blue-checkbox input[type=checkbox] {
    margin-top: 0 !important;
    transform: scale(1.5) !important;
}
/*.blue-checkbox div span input[type=checkbox] {
        -moz-appearance: none;
        -webkit-appearance: none;
        -o-appearance: none;
        outline: none;
        content: none;
    }

        .blue-checkbox div span input[type=checkbox]:before {
            font-family: "FontAwesome";
            content: "\f00c";
            font-size: 15px;
            font-weight: bold;
            color: transparent !important;
            background: var(--ge-white);
            display: block;
            width: 15px;
            height: 15px;
            border: 1px solid var(--ge-light-blue);
            margin-right: 7px;
        }

        .blue-checkbox div span input[type=checkbox]:checked:before {
            color: black !important;
        }*/
.blue-select label {
    font-size: 20px !important;
    font-size: 2rem !important;
    font-weight: normal !important;
}

.blue-select-bold label {
    font-size: 20px !important;
    font-size: 2rem !important;
    font-weight: bold !important;
}

.blue-select-arrow label {
    font-size: 16px !important;
    font-size: 1.6rem !important;
    font-weight: normal !important;
}

.blue-select-arrow-bold label {
    font-size: 16px !important;
    font-size: 1.6rem !important;
    font-weight: bold !important;
}

.blue-select-arrow-text-bold {
    font-size: 16px !important;
    font-size: 1.6rem !important;
    font-weight: bold !important;
}

.black-select-arrow-text-bold {
    font-size: 16px !important;
    font-size: 1.6rem !important;
    font-weight: bold !important;
    margin-left: -5px;
}

.blue-select select, .blue-select-bold select {
    color: var(--ge-light-blue) !important;
    font-size: 16px !important;
    font-size: 1.6rem !important;
    font-weight: bold !important;
    letter-spacing: 0.13em !important;
    text-transform: uppercase;
}

.no-text-transform, .no-text-transform select {
    text-transform: none;
}

.blue-select-arrow select, .blue-select-arrow-bold select,
.blue-select-arrow-text-bold select {
    background: url('../Images/Icons/Blue_Down_Arrow.jpg') 98% center no-repeat;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-size: 16px !important;
    font-size: 1.6rem !important;
    font-weight: bold !important;
    letter-spacing: 0.13em !important;
    /*text-transform: capitalize !important;*/
}

.black-select-arrow-text-bold select {
    background: url('../Images/Icons/Blue_Down_Arrow.jpg') 98% center no-repeat;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    font-size: 16px !important;
    font-size: 1.6rem !important;
    font-weight: bold !important;
    border: none;
    padding-left: 5px;
    /*text-transform: capitalize !important;*/
}

.blue-select-arrow-text-bold select {
    color: var(--ge-light-blue) !important;
    font-weight: bolder !important;
}

.black-select-arrow-text-bold select {
    color: var(--ge-black) !important;
    font-weight: bolder !important;
}

.blue-select-arrow.grey-back select, .blue-select-arrow-bold.grey-back select {
    background: url('../Images/Icons/Blue_Down_Arrow_Grey_Back.jpg') 98% center no-repeat;
}

.text-input {
    font-weight: bold;
}

    .text-input label {
        font-weight: normal;
    }

    .text-input input[type='text'], .text-input input[type='date'], .text-input input[type='password'], .text-input textarea, .grey-back select {
        background-color: var(--ge-light-grey) !important;
        border-color: var(--ge-light-blue) !important;
    }

.form-control {
    border-color: var(--ge-light-grey) !important;
    border-image-width: 0;
    box-shadow: none;
}

    .form-control:focus {
        border-color: var(--ge-light-blue) !important;
    }

.label-pl0, .label-pl0 div, .label-pl0 label, .label-pl0mt8 div, .label-pl0mt8 label {
    padding-left: 0 !important;
}

@media screen and (max-width: 767px) {
    .show-mobile {
        display: block !important;
    }

    .hide-mobile {
        display: none !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .show-tablet {
        display: block !important;
    }

    .hide-tablet {
        display: none !important;
    }
}

@media screen and (min-width: 992px) {
    .show-desktop {
        display: block !important;
    }

    .hide-desktop {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .label-plr0-special {
        padding-left: 2px !important;
    }
}

.label-plr0, .label-plr0 select {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.label-pl7r20 {
    padding-left: 0.7vw !important;
    padding-right: 2vw !important;
}

.label-pt8 {
    margin-top: 8px !important;
}

.label-mt5 div {
    margin-top: -5px !important;
}

.label-pl0mt8 div, .label-mt8 div {
    margin-top: -8px !important;
}

.fgch-mt5 {
    text-align: center;
}

    .fgch-mt5 .form-group-control-holder {
        /*margin-top: 3px !important;*/
        text-align: center;
    }

        .fgch-mt5 .form-group-control-holder input {
            height: 45px !important;
            min-width: 60px;
            max-width: 100px;
        }

.pop-up-wrapper {
    position: absolute;
}

.pop-up-indicator, .pop-up-indicator:link, .pop-up-indicator:visited, .pop-up-indicator:hover, .pop-up-indicator:target {
    position: relative;
    top: -45px;
    cursor: pointer;
    color: var(--ge-grey);
    border-radius: 20px;
    border: 1px solid var(--ge-grey);
    text-align: center;
    text-decoration: none;
}

.camel-case {
    text-transform: capitalize !important;
}



.keep-case {
    text-transform: none !important;
}

.ls-normal {
    letter-spacing: normal !important;
}

.opacity75 div {
    opacity: 0.5 !important;
}

.nav, a.nav:link, a.nav:visited {
    color: var(--ge-dark-blue);
    text-decoration: none;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 600;
    top: 15px !important;
    line-height: 20px;
}

.heading-mt0 {
    margin-top: 0;
}

.grey-box {
    background-color: var(--ge-light-grey) !important;
    border-radius: 10px;
    padding: 10px 30px;
    display: inline-block;
}

    .grey-box .max-height-3 {
        max-height: 75px;
        overflow: auto;
    }

.trustpilot-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.trustpilot-outer-position {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 150px;
}

.trustpilot-inner-position {
    position: absolute;
    bottom: -80px;
}

/*Footer*/
.trustpilot-widget {
    /*DO NOT REMOVE*/
}

.trustpilot-widget-footer {
    /*DO NOT REMOVE*/
}

.sitemap-title {
    border-bottom: 1px solid white;
    padding-bottom: 5px;
    font-weight: bold;
}

.zi1 {
    z-index: 1;
}

.footer-height20 {
    height: 20px;
    background-color: var(--ge-light-grey);
}

.get-in-touch {
    background-color: var(--ge-white);
    padding: 20px;
}

.footer-h3 {
    color: var(--ge-light-blue);
}

.p-normal {
    color: var(--ge-light-blue);
    font-size: 34px;
}

.footer-menu {
    background-color: var(--ge-dark-blue);
    color: var(--ge-white);
    padding: 50px 50px 20px 50px;
}

.copyright {
    font-size: 14px;
}

.fixed-size, .fixed-size textarea {
    resize: none;
}

    .fixed-size .col-md-12 {
        padding: 0px;
    }

.app-link-images .apple, .apple, .app-link-images .google, .google {
    height: 50px;
    width: 168px;
}

/*FA Footer Styling*/

/* NEW FOOTER */

@media (max-width: 992px) {

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 64px;
        padding: 64px 16px;
    }

    .logo-container {
        grid-column: 1 / 3;
    }

    .emergency-contact-container {
        grid-column: 1 / 3;
    }

        .emergency-contact-container h3 {
            font-size: 24px;
        }

    .social-link-container {
        grid-column: 1 / 3;
        gap: 21px;
    }

    .trustpilot-container {
        grid-column: 1 / 3;
        display: flex;
        flex-flow: column nowrap;
        align-items: center;
        justify-content: center;
    }

    .app-link-container {
        grid-column: 1 / 3;
        margin: auto;
    }

    .legal-info-container {
        grid-column: 1 / 3;
    }

    .logos {
        display: flex;
        flex-direction: row;
        gap: 5px;
    }
}

@media (min-width: 993px) {
    .footer-grid {
        max-height: 750px;
        padding: 100px 15px 30px 15px;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(4, 1fr);
        width: 83.3333%;
        margin: auto;
        box-sizing: border-box;
    }

    .logo-container {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        align-self: start;
        margin-bottom: 75px;
    }

    .emergency-contact-container {
        grid-column: 3 / 6;
        grid-row: 1 / 2;
    }

    .social-link-container {
        grid-column: 6 / 7;
        grid-row: 1 / 2;
        padding-top: 18px;
        justify-content: space-evenly;
        align-items: start;
    }

    .web-link-container {
        padding-right: 30px;
    }

    #link-about {
        grid-column: 1 / 2;
        grid-row: 2 / 3
    }

    #link-energy {
        grid-column: 2 / 3;
        grid-row: 2 / 3
    }

    #link-business {
        grid-column: 3 / 4;
        grid-row: 2 / 3
    }

    #link-blog {
        grid-column: 4 / 5;
        grid-row: 2 / 3
    }

    #link-account {
        grid-column: 5 / 6;
        grid-row: 2 / 3
    }

    #link-help {
        grid-column: 6 / 7;
        grid-row: 2 / 4
    }

    .trustpilot-container {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
        justify-self: start;
        align-self: center;
        margin-top: 60px;
        width: fit-content;
    }

        .trustpilot-container .trustpilot-widget {
            left: -7.5%;
        }

    .app-link-container {
        grid-column: 3 / 6;
        grid-row: 3 / 4;
        align-self: center;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .app-link-images {
        display: flex;
        flex-direction: row;
        justify-content: start;
        align-items: center;
        gap: 10px;
        padding: 0;
        margin: 0;
    }

    .legal-info-container {
        grid-column: 1 / 7;
        grid-row: 4 / 5;
        gap: 10px;
    }
}

.app-link-images .apple {
    height: 50px;
    width: 160px;
}

.app-link-images .google {
    height: 50px;
    width: 160px;
}

body {
    padding: 0;
    margin: 0;
}

footer {
    background-color: #0055A2;
    width: 100%;
    margin: 0 !important;
}

    footer a:hover {
        color: #00A0FF;
        text-decoration: none;
    }

    footer p {
        color: #fff;
        margin: 0;
    }

    footer h3, footer a, footer span {
        color: #fff;
    }

    footer hr {
        border: 1px solid #fff;
        width: 100%;
    }

.logos svg {
    background-color: #fff;
}

.logo-container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: start;
}

.social-link-container {
    display: flex;
    flex-flow: row nowrap;
}

.web-link-container .link-section-header {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}

.web-link-container .link-normal {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin: 5px 0;
}

.legal-info-container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}

.web-link-container {
    display: flex;
    flex-flow: column nowrap;
}
/* END NEW FOOTER */
