html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #222222;
    background: #fff;
}

img {
    max-width: 100%;
}

h1 {
    font-size: 36px;
    margin: 0 0 5px 0;
    font-weight: 400;
}

h2 {
    font-size: 27px;
    margin: 0 0 10px 0;
    font-weight: 400;
}

h3 {
    font-size: 21px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

p {
    font-size: 16px;
    margin: 0 0 10px 0;
    font-weight: 400;
}

    p.large {
        font-size: 18px;
    }

    p.small {
        font-size: 14px;
        line-height: 1.3;
    }

    p.error-text {
        color: #cc4429;
        font-size: 14px;
        margin: 5px 0 0 0;
    }

    p.semibold {
        font-weight: 600;
    }

    p.bold {
        font-weight: bold;
    }

    p.italic {
        font-style: italic;
    }

a {
    color: #005ca4;
    font-weight: 600;
    text-decoration: underline;
    transition: 0.3s all;
}

    a:hover {
        color: #22336b;
    }

.text-bold {
    font-weight: 700;
}

.text-normal {
    font-weight: 400;
}

.text-blue {
    color: #005ca4;
}

.text-red {
    color: #cc4429;
}

.text-grey {
    color: #dbdcdd;
}

.box {
    padding: 30px 30px 20px 30px;
}

    .box.box-white {
        background: #fff;
        height: 100%;
    }

.btn {
    padding: 10px 30px;
    font-size: 16px;
    border-radius: 0;
    border: 0;
    color: #fafafa;
    text-decoration: none;
}

    .btn.btn-margin-right {
        margin-right: 15px;
    }

    .btn.btn-large {
        font-size: 16px;
    }

    .btn.btn-primary {
        background-color: #005ca4;
        color: #fafafa;
    }

        .btn.btn-primary:hover {
            background-color: #22336b;
        }

    .btn.btn-secondary {
        background-color: #028902;
        color: #fafafa;
    }

        .btn.btn-secondary:hover {
            background-color: #015701;
        }

    .btn.btn-tertiary {
        background-color: #dbdcdd;
        color: #222222;
    }

        .btn.btn-tertiary:hover {
            background-color: #ccc;
        }

    .btn.btn-red {
        background-color: #cc4429;
        color: #fff;
    }

        .btn.btn-red:hover {
            background-color: #99331f;
        }

    .btn.btn-warning {
        background-color: #CC8110;
        color: #fff;
    }

        .btn.btn-warning:hover {
            background-color: #99610C;
        }

    .btn.btn-inactive {
        background: #b2b2b2;
        color: #fff;
        pointer-events: none;
    }

    .btn.btn-attachments {
        background-image: url("../images/icon-upload.png") !important;
        background-position: center right 10px !important;
        background-size: 18px !important;
        background-repeat: no-repeat !important;
        text-align: left;
        padding-left: 10px;
        padding-right: 100px;
    }

.row {
    margin-right: -7px;
    margin-left: -7px;
}

    .row > [class^='col-'],
    .row > [class*=' col-'] {
        padding-right: 7px;
        padding-left: 7px;
    }

    /* no-gutters Class Rules */
    .row.no-gutters {
        margin-right: 0;
        margin-left: 0;
    }

        .row.no-gutters > [class^='col-'],
        .row.no-gutters > [class*=' col-'] {
            padding-right: 0;
            padding-left: 0;
        }

.login .row {
    min-height: 100vh;
}

.login .login-top {
    margin: 75px 0 0 0;
    min-height: 30px;
}

.login .login-details {
    padding-left: 8vw;
    padding-right: 8vw;
}

.login .login-details-inner {
    max-width: 400px;
    padding-bottom: 50px;
}

.login .logo {
    width: 92px;
    margin: 40px 0;
}

.login .login-text {
    margin: 0 0 35px 0;
}

.login .login-image {
    background: #005ca4;
    height: 100%;
}

.login .verification-code {
    margin-bottom: 20px;
}

.login .verification-text {
    margin: 0 0 35px 0;
}

    .login .verification-text p {
        max-width: 380px;
    }

.form-group .form-input {
    position: relative;
}

.form-group input {
    border-radius: 0;
}

    .form-group input[type='text'],
    .form-group input[type='password'],
    .form-group input[type='email'],
    .form-group input[type='tel'],
    .form-group textarea {
        padding: 20px 10px;
        border: 1px solid #dbdcdd;
        background: #fafafa;
        color: #222222 !important;
    }

        .form-group input[type='text']:hover,
        .form-group input[type='password']:hover,
        .form-group input[type='email']:hover,
        .form-group input[type='tel']:hover,
        .form-group textarea:hover {
            border: 1px solid #777;
        }

        .form-group input[type='text']:focus,
        .form-group input[type='password']:focus,
        .form-group input[type='email']:focus,
        .form-group input[type='tel']:focus,
        .form-group textarea:focus {
            border: 1px solid #4ebfe6 !important;
            outline: 0;
            background: #fafafa;
            -webkit-box-shadow: 0px 0px 5px 0px #5ec1cd;
            -moz-box-shadow: 0px 0px 5px 0px #5ec1cd;
            box-shadow: 0px 0px 5px 0px #5ec1cd;
        }

        .form-group input[type='text'].error,
        .form-group input[type='password'].error,
        .form-group input[type='email'].error,
        .form-group input[type='tel'].error,
        .form-group textarea.error {
            border: 1px solid #cc4429 !important;
            background-image: url("../images/icon-error.svg");
            background-position: center right 10px;
            background-size: 18px;
            background-repeat: no-repeat;
            box-shadow: none !important;
        }

.form-group textarea {
    min-height: 200px;
    padding: 10px;
    border-radius: 0;
}

    .form-group textarea.short {
        min-height: 120px;
    }

.form-group input[type='search'] {
    padding: 8px 10px 8px 40px;
    width: 100%;
    border: 1px solid #dbdcdd;
    background: #fafafa;
    color: #222222 !important;
    background-image: url("../images/icon-search.svg");
    background-position: center left 12px;
    background-size: 15px;
    background-repeat: no-repeat;
}

    .form-group input[type='search']:focus {
        border: 1px solid #4ebfe6 !important;
        outline: 0;
        -webkit-box-shadow: 0px 0px 5px 0px #5ec1cd;
        -moz-box-shadow: 0px 0px 5px 0px #5ec1cd;
        box-shadow: 0px 0px 5px 0px #5ec1cd;
    }

.form-group.schedule {
    margin-top: 15px;
    max-width: 385px;
}

.form-group.meter {
    margin-top: 15px;
    max-width: 300px;
}

.form-button {
    margin: 40px 0 30px 0;
}

.checkbox-area {
    padding: 20px 0;
    max-width: 520px;
}

    .checkbox-area input {
        position: absolute;
        opacity: 0;
    }

        .checkbox-area input + label {
            position: relative;
            cursor: pointer;
            padding: 0;
            font-size: 14px;
            display: block;
            margin-left: 40px;
            line-height: 1.4;
        }

            .checkbox-area input + label:before {
                content: '';
                margin-right: 15px;
                display: inline-block;
                vertical-align: text-top;
                width: 25px;
                height: 25px;
                background: #f4f3f3;
                border: 1px solid #dbdcdd;
                position: relative;
                top: -3px;
                margin-left: -40px;
                margin-bottom: -5px;
            }

        .checkbox-area input:focus + label:before {
            border: 1px solid #4ebfe6 !important;
            outline: 0;
            -webkit-box-shadow: 0px 0px 5px 0px #5ec1cd;
            -moz-box-shadow: 0px 0px 5px 0px #5ec1cd;
            box-shadow: 0px 0px 5px 0px #5ec1cd;
        }

        .checkbox-area input:checked + label:before {
            background: #67b867;
            border: 1px solid #028902;
        }

        .checkbox-area input:disabled + label {
            color: #dbdcdd;
            cursor: auto;
        }

            .checkbox-area input:disabled + label:before {
                box-shadow: none;
                background: #dbdcdd;
            }

        .checkbox-area input:checked + label:after {
            content: '';
            position: absolute;
            left: -33px;
            top: 9px;
            background: white;
            width: 3px;
            height: 3px;
            box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
            transform: rotate(45deg);
        }

.help-area {
    display: inline;
    position: relative;
}

    .help-area > p {
        display: inline;
    }

    .help-area .help {
        top: -2px !important;
    }

.help {
    position: absolute;
    right: -40px;
    top: 8px;
}

    .help.inline {
        position: absolute;
        display: inline;
        right: 100px;
    }

    .help.right {
        right: -40px !important;
    }

        .help.right .tt {
            left: 100% !important;
            margin-left: 20px !important;
            right: auto !important;
            margin-right: auto !important;
        }

            .help.right .tt i {
                left: auto !important;
            }

                .help.right .tt i::after {
                    right: auto !important;
                    transform: translate(50%, -50%) rotate(-45deg) !important;
                }

    .help.right-table-col {
        right: -40px !important;
        position: relative;
        top: auto;
        left: 10px
    }

        .help.right-table-col .tt {
            left: 100% !important;
            margin-left: 20px !important;
            right: auto !important;
            margin-right: auto !important;
        }

            .help.right-table-col .tt i {
                left: auto !important;
            }

                .help.right-table-col .tt i::after {
                    right: auto !important;
                    transform: translate(50%, -50%) rotate(-45deg) !important;
                }

    .help .tt {
        min-width: 250px;
        top: 50%;
        left: 100%;
        margin-left: 20px;
        transform: translate(0, -50%);
        padding: 15px;
        color: #222222;
        background-color: #f3fafb;
        font-weight: normal;
        position: absolute;
        z-index: 99999999;
        box-sizing: border-box;
        border: 1px solid #5ec1cd;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.8s;
    }

        .help .tt p {
            margin: 0 0 10px 0 !important;
            font-size: 14px !important;
        }

    .help:hover .tt {
        visibility: visible;
        opacity: 1;
    }

    .help .tt i {
        position: absolute;
        top: 50%;
        right: 100%;
        margin-top: -12px;
        width: 12px;
        height: 24px;
        overflow: hidden;
    }

        .help .tt i::after {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            left: 0;
            top: 50%;
            transform: translate(50%, -50%) rotate(-45deg);
            background-color: #f3fafb;
            border: 1px solid #5ec1cd;
        }

.cookie-popup {
    position: fixed;
    display: flex;
    bottom: 0;
    right: 0;
    margin: 25px;
    background: #f3fafb;
    border: 1px solid #5ec1cd;
    padding: 10px;
    align-items: center;
}

    .cookie-popup .cookie-text {
        max-width: 500px;
        padding-right: 20px;
    }

        .cookie-popup .cookie-text p {
            margin: 5px;
            line-height: 1.2;
        }

    .cookie-popup .cookie-buttons a {
        margin: 5px;
    }

.account-view {
    background: #f4f3f3;
    padding: 10px 15px;
    margin: 0 0 12px 0;
}

    .account-view .account-view-row {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

        .account-view .account-view-row.bottom {
            justify-content: space-between;
        }

        .account-view .account-view-row .account-view-icon {
            padding: 10px 15px 10px 5px;
        }

            .account-view .account-view-row .account-view-icon img {
                max-width: 20px;
            }

        .account-view .account-view-row .account-view-info {
            padding: 5px 0;
            margin: 0 5px;
        }

            .account-view .account-view-row .account-view-info p {
                margin: 0;
            }

        .account-view .account-view-row .account-view-button {
            padding: 8px 0;
        }

.add-new-account {
    text-align: center;
    margin: 25px 0 0 0;
}

nav {
    background: #22336b;
    padding: 12px 8vw !important;
    width: 100%;
    z-index: 99;
}

    nav .navbar-nav {
        align-items: center;
        display: flex;
    }

    nav .navbar-buttons {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    nav .navbar-mobile-dash {
        list-style: none;
        margin: 0;
    }

        nav .navbar-mobile-dash li {
            background: #005ca4;
            border-top: 1px solid #22336b;
            padding: 0;
        }

            nav .navbar-mobile-dash li a {
                display: flex;
                align-items: center;
                text-decoration: none;
                position: relative;
                padding: 0 4vw;
                height: 55px;
                font-weight: normal !important;
            }

                nav .navbar-mobile-dash li a.dropdown-toggle {
                    position: absolute;
                    height: 55px;
                    width: 70px !important;
                    top: 0;
                    right: 0;
                    z-index: 999;
                    padding: 0;
                    background: url("../images/arrow-down.svg") no-repeat center center #0a4f92;
                }

                    nav .navbar-mobile-dash li a.dropdown-toggle:after {
                        display: none;
                    }

            nav .navbar-mobile-dash li.dropdown.show {
                background: #0d4b8d;
            }

                nav .navbar-mobile-dash li.dropdown.show a.dropdown-toggle {
                    background: url("../images/arrow-up.svg") no-repeat center center #134382;
                }

            nav .navbar-mobile-dash li .dropdown-menu {
                padding: 0;
                margin: 0;
                border: 0px;
            }

                nav .navbar-mobile-dash li .dropdown-menu li {
                    border-top: 1px solid #7983a4;
                    font-size: 14px;
                }

                    nav .navbar-mobile-dash li .dropdown-menu li:first-of-type {
                        border-top: 0px;
                    }

                    nav .navbar-mobile-dash li .dropdown-menu li a {
                        background: #22336b !important;
                        height: 50px;
                    }

            nav .navbar-mobile-dash li .mobile-dash-icon {
                width: 40px;
                display: flex;
                align-items: center;
                justify-content: flex-start;
            }

                nav .navbar-mobile-dash li .mobile-dash-icon img {
                    max-width: 20px;
                    max-height: 15px;
                }

            nav .navbar-mobile-dash li a {
                color: #fafafa !important;
                display: flex;
            }

    nav .navbar-mobile-logout {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        nav .navbar-mobile-logout li {
            border-top: 1px solid #7983a4;
            display: flex !important;
        }

            nav .navbar-mobile-logout li a {
                padding-top: 3px !important;
                padding-bottom: 3px !important;
            }

                nav .navbar-mobile-logout li a img {
                    max-height: 18px !important;
                    max-width: 16px !important;
                    margin-left: 10px;
                }

    nav a.nav-link {
        color: #fafafa;
        text-decoration: none;
        margin: 5px 40px 5px 0;
        padding: 0 !important;
        font-size: 14px;
        font-weight: normal;
        display: flex;
        align-items: center;
        line-height: 1.2;
    }

        nav a.nav-link.large {
            font-size: 16px;
        }

        nav a.nav-link.log-out img {
            margin-left: 10px;
        }

        nav a.nav-link .icon-circle {
            background: #fafafa;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            position: relative;
            flex-shrink: 0;
        }

            nav a.nav-link .icon-circle img {
                max-width: 15px;
                max-height: 15px;
            }

            nav a.nav-link .icon-circle .number {
                position: absolute;
                top: -5px;
                right: -5px;
                background: #cc4429;
                color: #fafafa !important;
                min-width: 20px;
                padding: 4px;
                height: 20px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 10px;
                font-weight: 600;
            }

        nav a.nav-link:hover {
            color: #4ebfe6;
        }

    nav .nav-item a {
        color: #fafafa;
        text-decoration: none;
    }

        nav .nav-item a:hover {
            color: #4ebfe6;
        }

    nav .navbar-toggler {
        color: #fafafa;
        font-size: 14px;
        outline: 0;
        padding-right: 0;
        padding-left: 0;
    }

        nav .navbar-toggler .navbar-toggler-icon {
            background: url("../images/icon-nav-close.svg") no-repeat;
            background-position: top 3px center;
            background-size: 13px;
            padding: 0;
            margin-left: 10px;
        }

        nav .navbar-toggler.collapsed .navbar-toggler-icon {
            background: url("../images/icon-nav-toggle.svg") no-repeat;
            background-position: top 3px center;
            background-size: 17px;
            padding: 0;
            margin-left: 10px;
        }

        nav .navbar-toggler.collapsed .text-menu {
            display: inline;
        }

        nav .navbar-toggler.collapsed .text-close {
            display: none;
        }

        nav .navbar-toggler .text-menu {
            display: none;
        }

        nav .navbar-toggler .text-close {
            display: inline;
        }

header {
    background: #005ca4;
    padding-top: 40px;
    padding-bottom: 55px;
    padding-left: 8vw;
    padding-right: 8vw;
}

    header .header-top {
        color: #fafafa;
        padding: 0 0 15px 0;
        display: flex;
        justify-content: space-between;
    }

        header .header-top .header-top-logo {
            width: 107px;
        }

    header .header-buttons ul {
        list-style: none;
        margin: 20px 0 0 0;
        padding: 0;
        display: flex;
    }

    header .header-buttons a {
        color: #fafafa !important;
        text-decoration: none;
        margin: 0 20px;
        padding: 0 !important;
        font-size: 14px;
        font-weight: normal;
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1.2;
    }

        header .header-buttons a.large {
            font-size: 16px;
        }

        header .header-buttons a.log-out img {
            margin-left: 10px;
        }

        header .header-buttons a .icon-circle {
            background: #fafafa;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            margin: 0 0 5px 0;
            align-items: center;
            justify-content: center;
            position: relative;
            flex-shrink: 0;
        }

            header .header-buttons a .icon-circle img {
                max-width: 15px;
                max-height: 15px;
            }

            header .header-buttons a .icon-circle .number {
                position: absolute;
                top: -5px;
                right: -5px;
                background: #cc4429;
                color: #fafafa !important;
                min-width: 20px;
                padding: 4px;
                height: 20px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 10px;
                font-weight: 600;
            }

        header .header-buttons a:hover {
            color: #4ebfe6;
        }

    header .row > div {
        margin: 0 0 14px 0;
    }

    header .dash-nav {
        position: relative;
        bottom: -10px;
        height: 0;
    }

        header .dash-nav ul {
            list-style: none;
            margin: 0 -1px;
            padding: 0;
            display: flex;
        }

            header .dash-nav ul li {
                text-align: center;
                padding: 0;
                margin: 0;
                width: 16.666%;
                text-align: center;
                display: block;
                line-height: 1;
                border-top: 1px solid #005ca4;
                border-bottom: 1px solid #005ca4;
                border-right: 1px solid #005ca4;
            }

                header .dash-nav ul li .sub_menu {
                    position: absolute;
                    min-width: 300px;
                    margin-top: 1px;
                    z-index: 99;
                }

                header .dash-nav ul li ul.sub_menu {
                    display: none;
                }

                    header .dash-nav ul li ul.sub_menu li {
                        display: block;
                        width: 100%;
                        border: 0px;
                        text-align: left;
                        border-bottom: 1px solid #005ca4;
                    }

                        header .dash-nav ul li ul.sub_menu li a {
                            display: block;
                            padding: 15px 40px;
                            width: 100%;
                            min-height: 0;
                        }

                header .dash-nav ul li:hover ul.sub_menu {
                    display: block;
                }

                header .dash-nav ul li:first-of-type {
                    border-left: 1px solid #005ca4;
                }

                header .dash-nav ul li a {
                    display: block;
                    height: 100%;
                    text-decoration: none;
                    padding: 15px 5px 5px 5px;
                    min-height: 85px;
                    background-color: #22336b;
                    color: #fafafa;
                    background-position: top 15px center !important;
                    background-size: 30px !important;
                    background-repeat: no-repeat !important;
                    transition: all 0.3s;
                }

                    header .dash-nav ul li a .dash-nav-icon {
                        height: 40px;
                        margin: 0 auto;
                    }

                        header .dash-nav ul li a .dash-nav-icon img {
                            max-width: 30px;
                            max-height: 25px;
                        }

                    header .dash-nav ul li a:hover {
                        background: #00508f;
                    }

.content {
    padding-left: 10vw;
    padding-right: 10vw;
    min-height: 60vh;
    padding-top: 65px;
    padding-bottom: 20px;
    background: #fff;
}

    .content.dashboard {
        background: #f4f3f3;
    }

    .content > .row > div {
        margin-bottom: 16px;
    }

footer {
    padding-left: 8vw;
    padding-right: 8vw;
    background: #222222;
    border-top: 8px solid #005ca4;
    min-height: 300px;
    padding-top: 55px;
    padding-bottom: 30px;
    color: #fafafa;
}

    footer p {
        max-width: 400px;
    }

    footer .footer-nav {
        list-style: none;
        margin: 0 0 40px 0;
        padding: 0;
    }

        footer .footer-nav li {
            display: inline;
            color: #fafafa;
            margin: 0 25px 0 0;
            font-weight: normal;
        }

            footer .footer-nav li a {
                color: #fafafa;
                font-weight: normal;
            }

                footer .footer-nav li a:hover {
                    color: #dbdcdd !important;
                }

    footer .footer-info {
        margin: 0 0 20px 0;
    }

        footer .footer-info p {
            color: #dbdcdd;
        }

    footer .footer-contact h3 {
        margin: 0 0 20px 0;
    }

    footer .footer-contact p {
        margin: 0;
    }

    footer .footer-social {
        margin: 18px 0;
    }

        footer .footer-social a {
            margin: 0 15px 0 0;
            transition: all 0.3s;
        }

            footer .footer-social a:hover {
                opacity: 0.7;
            }

        footer .footer-social img {
            max-width: 40px;
            max-height: 40px;
        }

.search-accounts {
    padding: 25px 0 10px 0;
}

.notifications-top {
    display: flex;
    justify-content: space-between;
    align-items: middle;
    flex-wrap: wrap;
}

    .notifications-top .notifications-top-title {
        position: relative;
        margin-right: 50px;
    }

    .notifications-top .notifications-top-buttons .btn {
        margin-bottom: 5px;
    }

    .notifications-top .number {
        position: absolute;
        top: 4px;
        right: -35px;
        background: #cc4429;
        color: #fafafa !important;
        min-width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 600;
    }

.notifications-list {
    margin: 15px 0 50px 0;
}

    .notifications-list a {
        background: #f4f3f3;
        display: flex;
        justify-content: space-between;
        padding: 20px 30px;
        text-decoration: none;
        color: #222222;
        border-radius: 1px solid #f4f3f3;
        margin: 0 0 12px 0;
    }

        .notifications-list a:hover {
            background: #dfdfdf;
        }

        .notifications-list a .circle {
            margin-right: 25px;
            width: 16px;
            height: 16px;
            border: 1px solid #222222;
            border-radius: 50%;
            background-color: none;
            flex-shrink: 0;
        }

        .notifications-list a.new {
            background: #fff;
            font-weight: bold;
            border: 1px solid #5ec1cd;
        }

            .notifications-list a.new p {
                font-weight: 600;
            }

            .notifications-list a.new .circle {
                border: 1px solid #5ec1cd;
                background-color: #5ec1cd;
            }

            .notifications-list a.new:hover {
                background: #f0f7f8;
            }

        .notifications-list a .info {
            display: flex;
            align-items: center;
        }

            .notifications-list a .info p {
                margin: 0;
                max-width: 500px;
            }

        .notifications-list a .date {
            min-width: 60px;
            text-align: right;
        }

.pagination {
    border: 1px solid #dbdcdd;
    display: inline-flex;
    border-radius: 0;
}

    .pagination li {
        border-right: 1px solid #dbdcdd;
        text-decoration: none;
        margin: 0;
        padding: 0;
    }

        .pagination li a {
            padding: 10px 20px;
            display: block;
            font-weight: 400;
            text-decoration: none;
        }

            .pagination li a:hover {
                background: #555;
                color: #fff;
            }

        .pagination li.current a {
            background: #005ca4;
            color: #fff;
        }

        .pagination li:last-of-type {
            border: 0px;
        }

        .pagination li.grey a {
            background: #f4f3f3;
        }

            .pagination li.grey a:hover {
                background: #555 !important;
                color: #fff;
            }

        .pagination li.disabled a {
            pointer-events: none;
            color: #555;
            background: none !important;
        }

a.back {
    background-image: url("../images/arrow-back.svg");
    background-position: center left 5px;
    background-size: 9px;
    background-repeat: no-repeat;
    padding-left: 25px;
}

    a.back:hover {
        background-position: center left;
    }

.breadcrumb-area {
    margin: 15px 0 40px 0;
}

    .breadcrumb-area img {
        margin: 0 10px;
        height: 13px;
    }

.steps {
    padding: 20px 0 50px 0;
}

    .steps .steps-line {
        border-bottom: 1px solid #dbdcdd;
        display: flex;
        justify-content: space-around;
        padding: 0 5%;
    }

        .steps .steps-line .number {
            position: relative;
            bottom: -13px;
            border-radius: 50%;
            background: #dbdcdd;
            width: 26px;
            height: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 400;
            /* .text {
        position: absolute;
        color: $black;
        top: 30px;
        text-align: center;
        width: 200px;
      } */
        }

            .steps .steps-line .number.active {
                background: #005ca4;
                color: #fff;
            }

            .steps .steps-line .number.special {
                background: #5ec1cd;
                color: #fff;
            }

.main-area {
    margin: 0 0 60px 0;
}

    .main-area h2 {
        margin: 20px 0 40px 0;
    }

.box-advice {
    background: #f2fafd;
    padding: 30px 35px;
}

    .box-advice.move-down {
        margin-top: 100px;
    }

    .box-advice ul {
        font-size: 16px;
        margin: 0;
        padding: 5px 0 10px 0;
    }

        .box-advice ul li {
            list-style: none;
            position: relative;
            padding: 0 0 0 30px;
            margin: 0 0 10px 0;
            line-height: 1.4;
        }

            .box-advice ul li::before {
                content: '';
                position: absolute;
                left: 0;
                top: 10px;
                width: 4px;
                height: 4px;
                border-radius: 50%;
                background-color: #222222;
            }

.box-green {
    background: #edf7ed;
    padding: 30px 35px;
}

.box-orange {
    background: #fbf6ee;
    padding: 30px 35px;
}

.select-property {
    text-align: center;
    padding: 60px 0 40px 0;
}

    .select-property img {
        max-width: 196px;
        margin-bottom: 20px;
    }

.form-control {
    font-size: 16px;
}

    .form-control.date {
        background-image: url("../images/icon-date.png") !important;
        background-position: right 10px center !important;
        background-size: 17px !important;
        background-repeat: no-repeat !important;
    }

/* Dropdown style */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0 !important;
    background: #fafafa;
    background-image: none;
}

    /* Remove IE arrow */
    select::-ms-expand {
        display: none;
    }

/* Custom Select */
.select {
    position: relative;
    display: flex;
    width: 100%;
}

select {
    flex: 1;
    padding: 0 10px;
    color: #222222;
    cursor: pointer;
    border: 1px solid #dbdcdd !important;
    border-radius: 0 !important;
    font-size: 16px;
    line-height: 2.7;
}

    select:hover {
        border: 1px solid #777 !important;
    }

    select:focus {
        border: 1px solid #4ebfe6 !important;
        outline: 0;
        -webkit-box-shadow: 0px 0px 5px 0px #5ec1cd;
        -moz-box-shadow: 0px 0px 5px 0px #5ec1cd;
        box-shadow: 0px 0px 5px 0px #5ec1cd;
    }

/* Arrow */
.select::after {
    background-image: url("../images/arrow-dropdown.svg");
    background-position: center center !important;
    background-size: 17px;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 100%;
    content: '';
    position: absolute;
    cursor: pointer;
    pointer-events: none;
    -webkit-transition: 0.25s all ease;
    -o-transition: 0.25s all ease;
    transition: 0.25s all ease;
}

.box-grey {
    background: #fafafa;
    padding: 30px 35px;
    margin: 0 0 12px 0;
}

    .box-grey .box-grey-top {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin: 0 0 5px 0;
    }

        .box-grey .box-grey-top p {
            margin: 0;
        }

        .box-grey .box-grey-top img {
            max-width: 20px;
            margin-right: 20px;
        }

    .box-grey .box-grey-info {
        padding: 20px 0 0 0;
    }

        .box-grey .box-grey-info p {
            margin: 0;
        }

.box-balance {
    background: #f2fafd;
    padding: 25px 35px;
    border: 1px solid #4ebfe6;
}

    .box-balance p {
        margin: 0;
    }

.table-container {
    overflow-x: scroll;
}

    .table-container table {
        font-size: 16px;
        min-width: 100%;
        white-space: nowrap;
    }

        .table-container table th.actions,
        .table-container table td.actions {
            text-align: right;
            padding-right: 25px;
        }

            .table-container table th.actions img,
            .table-container table td.actions img {
                width: 15px;
                margin: 0 5px;
            }

                .table-container table th.actions img.download,
                .table-container table td.actions img.download {
                    width: 20px;
                    margin: 0 15px;
                }

            .table-container table th.actions a:hover img,
            .table-container table td.actions a:hover img {
                opacity: 0.6;
            }

        .table-container table thead {
            background: #005ca4;
            color: #fff;
        }

            .table-container table thead th {
                border: 0;
                font-weight: 400;
                padding: 11px 10px;
                line-height: 1.2;
            }

        .table-container table tbody td {
            border-bottom: 1px solid #dbdcdd;
            padding: 11px 10px;
            line-height: 1.2;
        }

        .table-container table tbody tr:nth-child(odd) {
            background: #fafafa;
        }

        .table-container table tbody tr:nth-child(even) {
            background: #f4f3f3;
        }

.margin-custom {
    margin: 35px 0 !important;
}

.margin-extra {
    margin: 55px 0 !important;
}

.margin-top-custom {
    margin-top: 35px !important;
}

.margin-top-extra {
    margin-top: 55px !important;
}

.margin-bottom-custom {
    margin-bottom: 35px !important;
}

.margin-bottom-extra {
    margin-bottom: 55px !important;
}

.radio-area {
    border-bottom: 1px solid #dbdcdd;
    margin: 0 0 18px 0;
}

    .radio-area.list {
        border: 0px;
        background: #fafafa;
        padding: 5px;
    }

        .radio-area.list .scroll {
            padding: 10px 25px;
            max-height: 280px;
            overflow-y: scroll;
            /* width */
            /* Track */
            /* Handle */
            /* Handle on hover */
        }

            .radio-area.list .scroll::-webkit-scrollbar {
                width: 8px;
            }

            .radio-area.list .scroll::-webkit-scrollbar-track {
                background: #ccc;
            }

            .radio-area.list .scroll::-webkit-scrollbar-thumb {
                background: #005ca4;
            }

                .radio-area.list .scroll::-webkit-scrollbar-thumb:hover {
                    background: #005ca4;
                }

.payment {
    display: inline-block;
    border: 0px;
    padding-bottom: 0 !important;
}

    .payment .box-grey-top img {
        max-width: 23px;
    }

    .payment .radio-area {
        margin: 30px 0 0 0;
        border: 0;
    }

    .payment .form-check-inline {
        font-size: 14px;
    }

        .payment .form-check-inline:last-of-type {
            margin: 0;
        }

    .payment .payment-card label {
        padding-top: 65px;
        padding-left: 35px;
        min-width: 130px;
        margin-bottom: 12px;
    }

        .payment .payment-card label.wide {
            min-width: 230px;
            margin-right: 10px;
        }

    .payment .payment-card img {
        margin-bottom: 10px;
        max-height: 38px;
        position: absolute;
        top: 15px;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        text-align: center;
    }

        .payment .payment-card img.debit-card {
            max-height: 32px;
        }

        .payment .payment-card img.direct-debit {
            max-height: 25px;
            margin-top: 3px;
        }

    .payment .payment-card .checkmark {
        position: absolute;
        top: auto;
        bottom: 12px !important;
    }

.form-check-inline,
.form-check {
    margin: 0 10px 0 0;
    /* The container */
    /* Hide the browser's default radio button */
    /* Create a custom radio button */
    /* On mouse-over, add a grey background color */
    /* When the radio button is checked, add a blue background */
    /* On focus */
    /* Create the indicator (the dot/circle - hidden when not checked) */
    /* Show the indicator (dot/circle) when checked */
    /* Style the indicator (dot/circle) */
}

    .form-check-inline label,
    .form-check label {
        display: block;
        position: relative;
        padding: 10px 15px 10px 40px;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        border: 1px solid #dbdcdd;
        background: #fafafa;
    }

        .form-check-inline label:hover,
        .form-check label:hover {
            border: 1px solid #777;
        }

        .form-check-inline label input,
        .form-check label input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
        }

    .form-check-inline .checkmark,
    .form-check .checkmark {
        position: absolute;
        top: 14px;
        left: 10px;
        height: 16px;
        width: 16px;
        background-color: #fafafa;
        border-radius: 50%;
        border: 1px solid #777;
    }

    .form-check-inline .container:hover input ~ .checkmark,
    .form-check .container:hover input ~ .checkmark {
        background-color: #ccc;
    }

    .form-check-inline label input:checked ~ .checkmark,
    .form-check label input:checked ~ .checkmark {
        border: 1px solid #005ca4;
    }

        .form-check-inline label input:checked ~ .checkmark:after,
        .form-check label input:checked ~ .checkmark:after {
            background: #005ca4;
        }

    .form-check-inline label input:focus ~ .checkmark,
    .form-check label input:focus ~ .checkmark {
        -webkit-box-shadow: 0px 0px 5px 0px #5ec1cd;
        -moz-box-shadow: 0px 0px 5px 0px #5ec1cd;
        box-shadow: 0px 0px 5px 0px #5ec1cd;
    }

    .form-check-inline .checkmark:after,
    .form-check .checkmark:after {
        content: "";
        position: absolute;
        display: none;
    }

    .form-check-inline label input:checked ~ .checkmark:after,
    .form-check label input:checked ~ .checkmark:after {
        display: block;
    }

    .form-check-inline label .checkmark:after,
    .form-check label .checkmark:after {
        top: 2px;
        left: 2px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #005ca4;
    }

    .form-check-inline.checkbox-custom,
    .form-check.checkbox-custom {
        /* Style the indicator (dot/circle) */
    }

        .form-check-inline.checkbox-custom .checkmark,
        .form-check.checkbox-custom .checkmark {
            position: absolute;
            top: 14px;
            left: 10px;
            height: 16px;
            width: 16px;
            background-color: #fafafa;
            border-radius: 0 !important;
            border: 1px solid #777;
        }

        .form-check-inline.checkbox-custom label .checkmark:after,
        .form-check.checkbox-custom label .checkmark:after {
            content: '';
            position: absolute;
            left: 1px;
            top: 6px;
            width: 3px;
            height: 3px;
            box-shadow: 2px 0 0 #005ca4, 4px 0 0 #005ca4, 4px -2px 0 #005ca4, 4px -4px 0 #005ca4, 4px -6px 0 #005ca4, 4px -8px 0 #005ca4;
            transform: rotate(45deg);
        }

.form-check {
    padding-left: 0;
}

    .form-check label {
        padding: 10px 15px 10px 35px;
        border: 0px;
        background: none;
    }

        .form-check label:hover {
            border: 0px;
        }

        .form-check label .checkmark {
            left: 0;
            border-color: #dbdcdd;
        }

.modal-dialog {
    -webkit-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 10%;
    margin: 0 8vw;
    max-width: none;
}

    .modal-dialog .close {
        opacity: 1;
        font-size: 16px;
        font-weight: normal;
        color: #cc4429;
        position: relative;
        bottom: -3px;
    }

        .modal-dialog .close img {
            margin-left: 5px;
        }

    .modal-dialog .modal-content {
        border-radius: 0;
    }

    .modal-dialog .modal-header {
        padding: 30px;
    }

        .modal-dialog .modal-header p {
            margin: 0;
        }

            .modal-dialog .modal-header p img {
                position: relative;
                top: -3px;
                max-width: 20px;
                margin-right: 20px;
            }

    .modal-dialog .modal-body {
        padding: 30px;
    }

#modal-notification .modal-dialog {
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
}

#modal-add-new-user .modal-dialog,
#modal-edit-user .modal-dialog {
    max-width: 795px;
    margin-left: auto;
    margin-right: auto;
}

#modal-add-new-user .limit-width,
#modal-edit-user .limit-width {
    max-width: 390px;
}

.search-here {
    background: #f4f3f3;
    padding: 15px 25px;
}

    .search-here p.title {
        margin: 5px 0 15px 0;
    }

        .search-here p.title img {
            position: relative;
            top: -3px;
            max-width: 20px;
            margin-left: 10px;
        }

    .search-here .form-group {
        display: inline-block;
        margin-right: 16px;
        width: 265px;
    }

    .search-here .search-button {
        display: inline-block;
        padding-top: 15px !important;
    }

        .search-here .search-button .btn {
            position: relative !important;
            top: -3px !important;
        }

.button-area {
    margin: 35px 0 70px 0;
}

    .button-area.part-width {
        display: flex;
        max-width: 500px;
    }

.no-accounts {
    text-align: center;
    padding: 40px 0 100px 0;
}

    .no-accounts p.narrow {
        max-width: 200px;
        margin: 0 0 18px 0;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.4;
    }

    .no-accounts p.wide {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.4;
    }

    .no-accounts img {
        max-width: 130px;
        margin-bottom: 30px;
    }

.notification-area .notification-area-info {
    padding: 0 0 20px 0;
}

    .notification-area .notification-area-info p {
        margin: 0 0 5px 0;
    }

.notification-area .notification-area-content p {
    font-size: 18px;
}

.title-area {
    margin: 0 0 35px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .title-area h2 {
        margin: 0;
    }

.account-details {
    margin: 0 0 20px 0;
}

.table-area {
    margin: 0 0 60px 0;
}

    .table-area h3 {
        margin: 0 0 25px 0;
    }

.consumption h3 {
    margin: 0 0 25px 0;
}

.pagination-area {
    margin: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow-x: scroll;
}

    .pagination-area ul {
        margin: 0;
    }

.datepicker td,
.datepicker th {
    width: 2em;
    height: 2em;
    border-radius: 0 !important;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}

.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
    background: #5ec1cd !important;
}

.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active {
    background: #005ca4 !important;
}

.datepicker table tr td.day:hover,
.datepicker table tr td.day.focused {
    background: #005ca4 !important;
    color: #fff;
}

.datepicker table tr td.highlighted {
    background: #f4f3f3 !important;
}

.form-group.inactive label {
    color: #999;
}

.form-group.inactive input:disabled {
    color: #999 !important;
}

    .form-group.inactive input:disabled::placeholder {
        color: #999 !important;
    }

    .form-group.inactive input:disabled:hover {
        border: 1px solid #dbdcdd !important;
    }

.flex-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text-area {
    padding: 30px 0 0 0;
}

    .text-area p {
        margin: 0 0 30px 0;
    }

.side-nav ul {
    margin: 0 25px 25px 0;
    padding: 0;
    list-style: none;
}

    .side-nav ul li {
        margin: 0;
        padding: 0;
    }

        .side-nav ul li a {
            display: block;
            padding: 9px 10px;
            font-weight: normal;
            background: #22336b;
            color: #fff;
            text-decoration: none;
        }

            .side-nav ul li a:hover {
                background: #005ca4;
            }

        .side-nav ul li.active a {
            background: #005ca4;
            color: #fff;
        }

.manage-details {
    padding: 15px 0 0 0;
    min-height: 300px;
}

@media only screen and (max-width: 1199px) {
    header .dash-nav ul li a .dash-nav-icon {
        height: 35px;
    }
}

@media only screen and (max-width: 991px) {
    .main-area .box-advice {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    nav,
    header,
    footer,
    .login-details,
    .content,
    .navbar {
        padding-left: 4vw !important;
        padding-right: 4vw !important;
    }

    header {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .header-top {
        padding: 0 !important;
    }

    .navbar-links {
        margin-top: 15px;
        margin-bottom: 15px;
    }

        .navbar-links li {
            padding-top: 3px !important;
            padding-bottom: 3px !important;
        }

    .content {
        padding-top: 20px;
    }

    .navbar {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

        .navbar .nav-link {
            color: #fafafa !important;
        }

            .navbar .nav-link.main {
                padding: 10px 0 !important;
            }

    .navbar-nav {
        display: block !important;
    }

    .navbar-collapse {
        position: absolute;
        top: 45px;
        left: 0;
        width: 100%;
        background: #22336b;
    }

        .navbar-collapse li {
            padding: 10px 4vw;
        }

    .cookie-popup {
        display: block;
    }

        .cookie-popup .cookie-buttons {
            margin-top: 10px;
            text-align: right;
        }

    .login .login-top {
        margin: 30px 0 0 0;
    }

    .form-group {
        padding-right: 20px;
    }

        .form-group.schedule {
            max-width: none;
        }

        .form-group.meter {
            max-width: none;
        }

    .help {
        position: absolute;
        right: -30px;
        bottom: 10px;
    }

        .help .tt {
            left: auto;
            margin-left: auto;
            right: 100%;
            margin-right: 20px;
        }

            .help .tt i {
                left: 100%;
            }

                .help .tt i::after {
                    content: '';
                    right: 0;
                    transform: translate(-50%, -50%) rotate(-45deg);
                }

    .notifications-top-title {
        margin-bottom: 20px;
    }

    .notifications-list {
        margin: 15px 0 50px 0;
    }

        .notifications-list a {
            display: block;
            padding: 20px;
        }

            .notifications-list a .date {
                margin-top: 10px;
                text-align: right;
            }

    .search-here {
        background: #f4f3f3;
        padding: 15px;
    }

        .search-here p.title img {
            position: relative;
            top: -3px;
            max-width: 20px;
            margin-left: 10px;
        }

        .search-here .form-group {
            width: 100%;
        }

    .modal-dialog {
        margin: 0;
        max-width: none;
    }

    .title-area {
        margin: 0 0 40px 0;
        display: block;
    }

        .title-area h2 {
            margin: 0 0 20px 0;
        }

    .pagination-area {
        margin: 30px 0;
        display: block;
    }

        .pagination-area ul {
            margin: 0 0 30px 0;
        }

    .side-nav ul {
        margin: 0 0 30px 0;
    }

    .breadcrumb-area {
        margin: 0 0 30px 0;
    }

    .manage-details {
        min-height: 0;
    }
}

/*# sourceMappingURL=styles.css.map */

/* GENERAL */

.inline-number-container {
    display: inline-block;}
.inline-number-container::before {
    content: " ";
    width: 9px;
    display: inline-block;}
.inline-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #cc4429;
    color: white;
    border-radius: 50%;
    height: 30px;
    width: 30px !important;
    font-weight: 600;}
@media screen and (min-width: 1200px) {
    .big-container {
        max-width: 100%; }
}

.btn-red {
    background-color: #cc4429;
    color: #fff;
    border-radius: 0;
}
.btn-red:hover {
    background-color: #99331f;
}

/*Loader*/

.loader-background {
    position: fixed;
    background: #333;
    z-index: 9999;
    width: 100%;
    height: 100%;
    opacity: 50%;
}

.loader {
    width: 75vh;
    height: 100vh;
    margin: auto;
    position: fixed;
    left: 40%;
    top: 30%;
    z-index: 999999;
}

    .loader::after {
        border: 6vmin solid lightblue;
        border-top: 6vmin solid darkblue;
        position: absolute;
        margin-top: 5vmin;
        margin-left: 5vmin;
        width: 15vmin;
        height: 15vmin;
        content: "";
        border-radius: 50%;
        animation: spin .5s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 999999;
}

    .lds-dual-ring:after {
        content: " ";
        display: block;
        width: 64px;
        height: 64px;
        margin: 8px;
        border-radius: 50%;
        border: 6px solid #cef;
        border-color: #cef transparent #cef transparent;
        animation: lds-dual-ring 1.2s linear infinite;
    }

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*Form Validation*/
.field-validation-error {
    color: #cc4429;
}

/*BillAndPaymentData STYLING*/
.bill-table-row.type {
    font-weight: 600;
}

.bill-table-row.revised {
    color: #b24448;
}

.bill-table-row.total-amount {
    font-weight: 600;
}

.bill-table-row.bill-number-highlighted {
    color: #346b99;
    font-weight: 600;
}

.bill-table-row.balance-highlighted {
    color: #b24448;
    font-weight: 600;
}


/* Bold Form Labels */

.tpc .col-form-label {
    display: block;
    font-weight: bold;
}