﻿/* poppins-300 - latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: local('Poppins Light'), local('Poppins-Light'), url('/fonts/poppins-v5-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('/fonts/poppins-v5-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* poppins-regular - latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: local('Poppins Regular'), local('Poppins-Regular'), url('/fonts/poppins-v5-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('/fonts/poppins-v5-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* poppins-500 - latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: local('Poppins Medium'), local('Poppins-Medium'), url('/fonts/poppins-v5-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('/fonts/poppins-v5-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* poppins-600 - latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: local('Poppins SemiBold'), local('Poppins-SemiBold'), url('/fonts/poppins-v5-latin-600.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('/fonts/poppins-v5-latin-600.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* poppins-700 - latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: local('Poppins Bold'), local('Poppins-Bold'), url('/fonts/poppins-v5-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('/fonts/poppins-v5-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}


* {
    box-sizing: border-box
}


html, body {
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    margin: 0;
}

body {
    display: flex;
    flex-flow: column;
    font-family: Poppins,'Helvetica Neue',Arial,Helvetica,sans-serif;
    font-size: 12px;
}

ul, ol, dl {
    margin: 0 0;
    padding: 0;
    list-style: none;
}

input {
    font: inherit;
}

a {
    text-decoration: none;
}

.flex {
    display: flex;
}

    .flex.column {
        flex-direction: column;
    }

    .flex.space {
        justify-content: space-between;
    }


.hide-transitions * {
    transition: none !important;
    animation-duration: 0s !important;
}


svg {
    vertical-align: baseline;
}


textarea:focus, input:focus, button:focus {
    outline: none;
}

header {
    display: flex;
    flex: 0 0 40px;
    background-color: #eee;
    justify-content: space-between;
    position: relative;
    z-index: 99;
    border-bottom: 1px solid #ccc;
}

    header .logo {
        min-width: 140px;
        overflow: hidden;
        transition: width .5s ease, min-width 0.5s ease;
        display: flex;
        align-items: center;
        background: #fff;
    }

        header .logo.collapsed {
            width: 0;
        }

            header .logo.collapsed a > img {
                width: 0;
            }

        header .logo a > img {
            padding-left: 0.6em;
            width: 10em;
            display: flex;
            transition: width .5s ease;
        }

    header .search-bar-area {
        display: flex;
        height: 100%;
        align-items: center;
        padding-left: 1em;
        position: relative;
        z-index: 99;
        width: 100%;
    }

        header .search-bar-area > .search-bar-button > .menu-icon {
            fill: #fff;
            height: 1em;
            margin-top: 5px;
        }

    header .search-bar-input {
        background: transparent;
        border: none;
        padding: 0;
        color: #fff;
        width: 100%;
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 1px;
        min-width: 300px;
    }

        header .search-bar-input::placeholder {
            color: #999;
            opacity: 0.8;
        }

    header .header-controls {
        display: flex;
        height: 100%;
        justify-content: flex-end;
    }

        header .header-controls a {
            padding: 0 10px;
            text-decoration: none;
            height: 100%;
            display: flex;
            align-items: center;
            color: #666;
        }

    header .push-pin {
        align-items: center;
        display: flex;
        padding-right: 0;
        border-right: 1px solid #ccc;
        background: #fff;
        min-width: 40px;
        justify-content: center;
    }

        header .push-pin svg {
            font-size: 20px;
            transform: rotate(180deg);
            transition: all .5s ease;
            margin-top: 5px;
        }

            header .push-pin.pushed svg:hover,
            header .push-pin svg:hover {
                fill: #999;
            }


        header .push-pin.pushed svg {
            fill: #333;
            transform: rotate(0deg);
        }


    header .right-push-pin {
        align-items: center;
        display: flex;
        border-left: 1px solid #ccc;
        background: #fff;
        min-width: 40px;
        justify-content: center;
    }

        header .right-push-pin.pushed {
            background: #666;
        }

        header .right-push-pin svg {
            font-size: 20px;
            transform: rotate(0deg);
            transition: all .5s ease;
        }

            header .right-push-pin.pushed svg:hover,
            header .right-push-pin svg:hover {
                fill: #666;
            }

        header .right-push-pin.pushed svg {
            fill: #fff;
            transform: rotate(180deg);
        }


svg.menu-icon {
    width: 1.2em;
    height: 1.2em;
    fill: #333;
}

svg.slider-icon {
    width: 1em;
    height: 1em;
    fill: #999;
    transform: rotate(180deg);
}


/*Main Menu and Sidebars******************************************************************************/
nav {
    position: relative;
    min-width: 0;
    display: flex;
    flex-flow: column;
    height: 100%;
    transition: min-width .5s ease;
}

    nav.docked {
        min-width: 180px;
    }

    nav.show-slider {
        min-width: 0;
    }

    nav.docked.show-slider {
        min-width: 200px;
    }

#right-pane {
    position: relative;
    min-width: 0;
    width: 0;
    display: flex;
    flex-flow: column;
    height: 100%;
    transition: min-width .5s ease;
    border-left: 1px solid #ccc;
}

    #right-pane.docked {
        min-width: 200px;
    }


.nav-slider {
    position: absolute;
    right: 0;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    height: 100%;
    display: flex;
    border-right: 1px solid #999;
    width: 20px;
    min-width: 20px;
    z-index: 1;
    background: #fff;
}

    .nav-slider i {
        color: #999;
    }

        .nav-slider i:nth-of-type(2) {
            font-size: 24px;
            color: #333;
        }


.sidebar {
    position: relative;
    left: -180px;
    background: #fff;
    width: 180px;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 2;
    transition: left .5s ease;
    box-shadow: none;
    border-right: 1px solid #ccc;
    box-shadow: 6px 0px 29px -27px rgba(0,0,0,0.75);
}

    .sidebar.visible {
        left: 0;
    }

    .sidebar.floating {
        position: fixed;
        top: 40px;
        height: calc( 100% - 60px);
    }

    .sidebar .header {
        height: 50px;
        display: flex;
    }

        .sidebar .header .push-pin {
            justify-content: flex-end;
            display: flex;
            width: 100%;
            padding: 5px 10px;
        }

            .sidebar .header .push-pin i {
                font-size: 20px;
                padding: 5px;
                text-shadow: 0 0 1px #000;
                color: white;
                transform: rotate(90deg);
                transition: all .5s ease;
            }

                .sidebar .header .push-pin i:hover {
                    font-size: 24px;
                }

            .sidebar .header .push-pin.pushed i {
                color: #263238;
                text-shadow: none;
                transform: rotate(45deg);
            }

    .sidebar .title {
        padding: 3px 8px;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        background: #888;
    }

        .sidebar .title span {
            color: #eee;
        }


    .sidebar .dashboard-button {
        font-size: 14px;
        font-weight: 600;
    }

        .sidebar .dashboard-button a {
            color: #999;
            padding: 5px 8px;
            display: flex;
            padding-left: 28px;
        }

        .sidebar .dashboard-button svg {
            fill: #999;
            width: 1em;
            height: 1em;
            position: absolute;
            left: 8px;
            transition: all 0.15s ease-in;
            margin-top: 3px;
        }




/*MAIN Layout*/

main {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.content-panel {
    flex: 1 1 auto;
    background-color: #f7f7f7;
    overflow: auto;
    display: block;
}

.content {
    margin: 10px;
    min-width: 79em;
    height: calc( 100% - 10px);
}

@media screen and (max-width:1599px) { /*What happens when screen is between 1280 and 1366*/
    .content {
        min-width: 64em;
    }
}


@media screen and (max-width:1366px) { /*What happens when screen is between 1280 and 1366*/
    .content {
        min-width: 78em;
    }
}

footer {
    display: flex;
    flex: 0 0 30px;
    background: #fafafa;
    justify-content: flex-end;
    border-top: 1px solid #ccc;
    z-index: 2;
}

.footer-file-info {
    margin-right: auto;
    align-items: center;
    display: flex;
    color: #666;
}

.footer-controls {
    display: flex;
    height: 100%;
    justify-content: flex-end;
}

    .footer-controls a {
        padding: 0 10px;
        color: initial;
        text-decoration: none;
        height: 100%;
        display: flex;
        align-items: center;
        color: #666;
    }

        .footer-controls a:hover {
            background-color: #eee;
        }





.search-control {
    position: relative;
    width: 100%;
}

.chart-panel {
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    flex-flow: row wrap;
    align-content: flex-end;
}

    .chart-panel > div {
        margin: 2em;
        background: #fff;
        flex: 1 0 20em;
    }

#myChart,
#myChart2 {
    width: 100%;
    height: 100%;
}




.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(255,255,255);
    background-color: rgba(255,255,255,0.9);
}

    .modal > .modal-content {
        background-color: #fff;
        margin: 15% auto;
        padding: 1em;
        border: 1px solid #999;
        width: 75%;
        position: relative;
    }



.page-header {
    background-color: #EDEDED;
    padding: 0 10px;
    margin: -10px;
    align-items: center;
    margin-bottom: 10px;
    height: 42px;
    padding-top: 7px;
}

    .page-header > h3 {
        margin: 0;
        color: #666;
        line-height: 14px;
        font-size: 18px;
    }

        .page-header > h3 > .entity-id {
            color: #06afda;
        }

    .page-header > h5 {
        margin: 0;
        color: #999;
        font-size: 12px;
        line-height: 12px;
        margin-top: 4px;
        font-weight: 500;
    }


.page-header-bar {
    background-color: #ededed;
    display: flex;
    padding: 0 10px;
    margin: -10px;
    border-bottom: 1px solid #cdcdcd;
    flex-direction: column;
    justify-content: space-around;
    margin-bottom: 0;
}







    .page-header-bar > .button-bar {
        display: flex;
        justify-content: space-between;
        margin: 0;
        margin-top: 2px;
        margin-bottom: 5px;
        height: 26px;
    }

        .page-header-bar > .button-bar .action-button {
            width: 80px;
            padding: 7px 0;
            font-weight: 400;
            font-size: 12px;
            text-align: center;
            cursor: pointer;
            border: 1px solid #ccc;
            color: #fff;
            background-color: #596b8c;
            line-height: 11px;
            transition: 0.2s background-color ease-in;
        }

            .page-header-bar > .button-bar .action-button:hover {
                background-color: #7284a6;
            }

            .page-header-bar > .button-bar .action-button#edit-button:disabled {
                border-color: #ffd400 !important;
                color: #666 !important;
                background-color: #ffd800 !important;
                outline: 2px solid #dbc859;
                outline-offset: -2px;
            }



            .page-header-bar > .button-bar .action-button:disabled {
                border-color: #ccc !important;
                color: #999 !important;
                background-color: #ddd !important;
                cursor: default !important;
            }



    .page-header-bar > .button-bar-secondary {
        /*border-top: 1px solid #d0d0d0;*/
        margin: 0 -10px;
        background: #dedede;
        position: relative;
        overflow: hidden;
        max-height: 0;
        visibility: hidden;
        transition: 0.3s max-height ease, 0.3s visibility ease;
    }

        .page-header-bar > .button-bar-secondary.show {
            max-height: 29px;
            visibility: visible;
        }

        .page-header-bar > .button-bar-secondary > .delete-confirm-panel {
            width: 237px;
            margin-left: 92px;
            padding: 0;
            background: #fcfcfc;
            /*box-shadow: -1px 5px 20px 0px rgba(0,0,0,0.25);*/
            border-left: 1px solid #ccc;
            border-right: 1px solid #ccc;
            border-top: 1px solid #ccc;
            display: flex;
            align-items: center;
        }
            .page-header-bar > .button-bar-secondary > .delete-confirm-panel > span {
                color: #666;
                display: inline-block;
                padding: 5px;
                margin-right: 10px;
            }

            .page-header-bar > .button-bar-secondary > .delete-confirm-panel > .action-button {
                width: 60px;
                padding: 5px 0;
                font-weight: 400;
                font-size: 12px;
                text-align: center;
                cursor: pointer;
                border: 1px solid #ccc;
                color: #fff;
                background-color: #df8080;
                line-height: 11px;
                transition: 0.2s background-color ease-in;
                margin-left: 5px;
            }

            .page-header-bar > .button-bar-secondary > .delete-confirm-panel > .action-button.cancel {
                background: #f7f7f7;
                color: #666;
            }



.page-header-messages {
    margin: 0 -10px;
    margin-bottom: 10px;
    overflow: hidden;
}
    .page-header-messages > div {
        max-height: 0;
        visibility: hidden;
        overflow: hidden;
        transition: 0.3s max-height ease, 0.3s visibility ease;
    }

        .page-header-messages > div.show {
            max-height: 1000px;
            transition: max-height 0.5s ease-in, 0.5s visibility ease-in;
            visibility: visible;
        }

    .page-header-messages > .errors {
        background: #ffeded;
        border-bottom: 1px solid #a33838;
    }

        .page-header-messages > .errors > .message {
            padding: 2px 23px;
        }

        .page-header-messages > .errors > .message > .title {
            font-weight: 500;
            margin-right: 1em;
            color: #df8080;
        }

        .page-header-messages > .errors > .message > .text {
            color: #666;
        }

.error {
    color: #f00 !important;
}

.panel {
    background: #fff;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.form-panel {
    border: 1px solid #ccc;
    padding: 1em;
    display: flex;
    flex-direction: column;
    background: #f7f7f7;
    flex: 1;
}

.display-panel {
    padding: 0 1em;
    display: flex;
    flex-direction: column;
    background: #f7f7f7;
    flex: 1;
}

    .form-panel .row,
    .display-panel .row{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }

        .form-panel .row.spacer,
        .display-panel .row-spacer {
            margin-bottom: 15px;
        }

        .form-panel .row > .col,
        .display-panel .row > .col {
            display: flex;
            flex-direction: column;
            flex-basis: 100%;
            flex: 1;
        }

            .form-panel .row > .col.x2,
            .display-panel .row > .col.x2 {
                flex: 2;
            }

            .form-panel .row > .col.x3,
            .display-panel .row > .col.x3 {
                flex: 3;
            }

            .form-panel .row > .col.x4,
            .display-panel .row > .col.x4 {
                flex: 4;
            }

            .form-panel .row > .col.x5,
            .display-panel .row > .col.x5 {
                flex: 5;
            }

            .form-panel .row > .col.x6,
            .display-panel .row > .col.x6 {
                flex: 6;
            }

            .form-panel .row > .col.x7,
            .display-panel .row > .col.x7 {
                flex: 7;
            }

            .form-panel .row > .col.x8,
            .display-panel .row > .col.x8 {
                flex: 8;
            }

.inline-form-block {
    display: flex;
}

.form-element {
    display: flex;
    flex-direction: column;
    margin-right: 20px;
    margin-bottom: 15px;
}

    .form-element > label {
        font-size: 11px;
        color: #666;
        text-transform: uppercase;
    }

        .form-element > label > abbr {
            color: #d35f5f;
            text-decoration: none;
        }

    .form-element > .pix-display {
        color: #333;
        padding: 5px;
        border: 1px solid #ddd;
        background: #f7f7f7;
        min-height: 28px;
        font-weight: 600;
    }



    .form-element > input,
    .form-element > textarea {
        padding: 5px;
        border: 1px solid #ccc;
        color: #333;
        font-family: inherit;
        font-size: inherit;
    }

        .pix-select.invalid,
        .form-element > input.invalid,
        .form-element > textarea.invalid,
        .form-element > .pix-select.invalid {
            border: 2px solid #df8080;
        }

        .form-element > input:invalid,
        .form-element > textarea:invalid,
        .form-element > .pix-select:invalid {
            box-shadow: none;
        }

        .form-element > input::selection,
        .form-element > textarea::selection {
            background-color: #6497b6;
            color: #ffffff;
        }

        .form-element > input:focus:not(.invalid),
        .form-element > textarea:focus:not(.invalid) {
            border-color: #999;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03), 0 2px 3px 0 rgba(0, 0, 0, 0.04);
        }


    .form-element > .pix-text-area {
        display: flex;
        flex-direction: column;
    }

        .form-element > .pix-text-area textarea {
            border: 1px solid #ccc;
            font-family: inherit;
            font-size: inherit;
            padding: 0.5em;
            margin: 0;
            resize: vertical;
        }

            .form-element > .pix-text-area textarea:focus {
                border-color: #6497b6;
                box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03), 0 2px 3px 0 rgba(0, 0, 0, 0.04);
            }


    .form-element > .pix-toggle {
        position: relative;
        width: 5em;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

        .form-element > .pix-toggle > input:empty {
            position: absolute;
            z-index: -999;
        }

        .form-element > .pix-toggle:focus-within,
        .form-element > .pix-toggle > input:focus + .container {
            border-color: #999;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03), 0 2px 3px 0 rgba(0, 0, 0, 0.04);
        }

        .form-element > .pix-toggle > .container {
            display: block;
            overflow: hidden;
            cursor: pointer;
            border: 1px solid #CCC;
        }

            .form-element > .pix-toggle > .container > .labels {
                display: block;
                width: 200%;
                margin-left: -100%;
                transition: margin 0.3s ease-in 0s;
            }

                .form-element > .pix-toggle > .container > .labels:before,
                .form-element > .pix-toggle > .container > .labels:after {
                    float: left;
                    width: 50%;
                    height: 2.3em;
                    line-height: 2.3em;
                    color: white;
                    box-sizing: border-box;
                }

                .form-element > .pix-toggle > .container > .labels:before {
                    content: "Yes";
                    padding-left: 0.5em;
                    background-color: #FFFFFF;
                    color: #A2C77E;
                }

                .form-element > .pix-toggle > .container > .labels:after {
                    content: "No";
                    padding-right: 0.7em;
                    background-color: #FFFFFF;
                    color: #df8080;
                    text-align: right;
                }

            .form-element > .pix-toggle > .container > .switch {
                display: block;
                width: 2em;
                margin: 2px;
                background: #df8080;
                position: absolute;
                top: 0;
                bottom: 0;
                right: 2.65em;
                border: 1px solid #ccc;
                border-radius: 3px;
                transition: all 0.3s ease-in 0s;
            }

        .form-element > .pix-toggle > input:checked + .container .labels {
            margin-left: 0;
        }

        .form-element > .pix-toggle > input:checked + .container .switch {
            right: 0;
            background-color: #A2C77E;
        }



    .form-element > .pix-checkbox {
	    position: relative;
	    padding: 4px;
    }

    .form-element > .pix-checkbox > input {
        position: absolute;
        opacity: 0;
    }

        .form-element > .pix-checkbox > input + label {
            position: relative;
            cursor: pointer;
            padding: 0;
        }

            .form-element > .pix-checkbox > input + label:before {
                content: '';
                margin-right: 10px;
                display: inline-block;
                vertical-align: text-top;
                width: 20px;
                height: 20px;
                background: white;
            }

        .form-element > .pix-checkbox > input:hover + label:before {
            background: #fff;
        }

        .form-element > .pix-checkbox > input:focus + label:before { /* on focus*/
            box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
        }

        .form-element > .pix-checkbox > input:checked + label:before {
            background: #fff;
        }

        .form-element > .pix-checkbox > input:disabled + label {
            color: #b8b8b8;
            cursor: auto;
        }

            .form-element > .pix-checkbox > input:disabled + label:before {
                box-shadow: none;
                background: #ddd;
            }

        .form-element > .pix-checkbox > input:checked + label:after {
            content: '';
            position: absolute;
            left: 5px;
            top: 9px;
            background: #0e7d99;
            width: 2px;
            height: 2px;
            box-shadow: 2px 0 0 #0e7d99, 4px 0 0 #0e7d99, 4px -2px 0 #0e7d99, 4px -4px 0 #0e7d99, 4px -6px 0 #0e7d99, 4px -8px 0 #0e7d99;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
        }





.tooltip {
    display: inline-block;
    position: relative;
    border-bottom: 1px dotted #666;
    text-align: left;
}

    .tooltip h3 {
        margin: 12px 0;
    }

    .tooltip .top {
        min-width: 200px;
        max-width: 400px;
        top: -20px;
        left: 50%;
        transform: translate(-30%,-100%);
        padding: 10px 20px;
        color: #ffffff;
        background-color: #009cdc;
        font-weight: normal;
        font-size: 14px;
        border-radius: 8px;
        position: absolute;
        z-index: 99999999;
        box-sizing: border-box;
        box-shadow: 0 1px 8px rgba(0,0,0,0.5);
        display: none;
    }

    .tooltip:hover .top {
        display: block;
    }

    .tooltip .top i {
        position: absolute;
        top: 100%;
        left: 30%;
        margin-left: -15px;
        width: 30px;
        height: 15px;
        overflow: hidden;
    }

        .tooltip .top i::after {
            content: '';
            position: absolute;
            width: 15px;
            height: 15px;
            left: 50%;
            transform: translate(-50%,-50%) rotate(45deg);
            background-color: #009cdc;
            box-shadow: 0 1px 8px rgba(0,0,0,0.5);
        }


.grid-placeholder {
    display: flex;
    flex-grow: 1;
    height: calc(100% - 110px);
}

    .grid-placeholder > .grid {
        width: 100%;
    }

.dashboard-quick-buttons {
    display: flex;
    flex-wrap: wrap;
}

.dashboard-quick-button-container {
    background: #fff;
    border: 1px solid #ccc;
    display: flex;
    width: 300px;
    flex-direction: column;
    margin: 2em;
}

    .dashboard-quick-button-container > .title {
        text-align: center;
        background: #899FAC;
        font-size: 18px;
        color: #fff;
        font-weight: bold;
    }

    .dashboard-quick-button-container > .buttons {
        display: flex;
    }

        .dashboard-quick-button-container > .buttons a {
            background: #fff;
            border: 1px solid #ccc;
            display: block;
            width: 150px;
            text-align: center;
            position: relative;
        }



            .dashboard-quick-button-container > .buttons a > i {
                position: absolute;
                display: inline-block;
                border-radius: 60px;
                box-shadow: 0px 0px 2px #888;
                padding: 0.4em 0.6em;
                top: 44%;
                left: 50%;
                background: #f6f6f6;
            }

                .dashboard-quick-button-container > .buttons a > i.alt {
                    background: #899fac;
                }

                .dashboard-quick-button-container > .buttons a > i > svg {
                    width: 2em;
                    height: 2em;
                    fill: #666;
                    padding-top: 4px;
                }

                .dashboard-quick-button-container > .buttons a > i.alt > svg {
                    fill: #fff;
                }

        .dashboard-quick-button-container > .buttons a > svg {
            width: 8em;
            height: 8em;
            fill: #666;
            padding: 1em;
        }

            .dashboard-quick-button-container > .buttons a:first-of-type > svg {
                fill: #6497B6;
            }

            .dashboard-quick-button-container > .buttons a > .title {
                font-size: 16px;
                color: #333;
                padding-bottom: 8px;
            }


.highlights-panel {
    display: flex;
    width: 100%;
    padding: 1em 1em 2em 1em;
    justify-content: space-evenly;
}

.highlights-panel > .highlight-box {
    display: flex;
    width: 26em;
    background: #fff;
    border: 1px solid #ccc;
    padding: 1em;
    padding-right: 0;
    flex-direction: column;
}
    .highlights-panel > .highlight-box .row:first-child {
        margin-bottom: 1em;
    }

    .highlights-panel > .highlight-box .row {
        display: flex;
    }

    .highlights-panel > .highlight-box .item {
        width: 13em;
    }

    .highlights-panel > .highlight-box .title {
        color: #999;
    }

    .highlights-panel > .highlight-box .value{
        font-size: 16px;
        font-weight: bold;
        color: #333;
    }



.invoice-detail-container{
    display: flex;
    width: 100%;
}

    .invoice-detail-container > .left {
        display: flex;
        flex-direction: column;
        background: #fff;
        width: 100%;
        margin-right: 1em;
        border: 1px solid #ccc;
        padding: 1em;
    }

    .invoice-detail-container > .right {
        display: flex;
        flex-direction: column;
        width: 400px;
        background: #fff;
        border: 1px solid #ccc;
        padding: 1em;
    }

    .invoice-detail-container .invoice-amts {
        display: flex;
        width:100%;
    }

    .invoice-detail-container .invoice-amts > div {
        display: flex;
        flex-direction: column;
        width: 50%;
    }

        .invoice-detail-container .invoice-amts > div:last-of-type {
            text-align:right;
        }

        .invoice-detail-container .invoice-amts > div > .heading{
            font-size: 12px;
            text-transform: uppercase;
        }

        .invoice-detail-container .invoice-amts > div > .amount {
            font-size: 20px;
            font-weight: bold;
        }

    .invoice-detail-container .to {
        font-size: 16px;
    }

        .invoice-detail-container .to > span {
            color: #6497B6;
            font-weight: bold;
        }

    .invoice-detail-container .invoice-header{
        display: flex;
        flex-direction: row;
        width: 100%;
        margin: 1em 0;
        font-size: 14px;
    }

        .invoice-detail-container .invoice-header > .block {
            display: flex;
            flex-direction: column;
            width: 25%;
        }

            .invoice-detail-container .invoice-header > .block > div:first-of-type {
                font-weight: bold;
            }

    .invoice-detail-container .items-table {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 1em 0;
        font-size: 14px;
    }

        .invoice-detail-container .items-table > .header {
            display: flex;
            flex-direction: row;
            background: #6497B6;
            color: #fff;
            padding: 0.5em;
        }

        .invoice-detail-container .items-table > .row {
            display: flex;
            flex-direction: row;
            padding: 0.5em;
        }

        .invoice-detail-container .items-table > .row2 {
            display: flex;
            flex-direction: row;
            background: #eee;
            padding: 0.5em;
        }

        .invoice-detail-container .items-table .item {
            width: 45%;
        }

        .invoice-detail-container .items-table .qty {
            text-align: right;
            width: 10%;
        }

        .invoice-detail-container .items-table .price {
            text-align: right;
            width: 15%;
        }

        .invoice-detail-container .items-table .discount {
            text-align: right;
            width: 15%;
        }

        .invoice-detail-container .items-table .total {
            text-align: right;
            width: 15%;
        }

        .invoice-detail-container .items-table .sub {
            font-size: 12px;
            color: #888;
            line-height: 12px;
        }

        .invoice-detail-container .footer{
            display:flex;
            flex-direction: row;
        }

    .invoice-detail-container .footer > .notes{
        display: flex;
        flex-direction: column;
        width: 50%;
        font-size: 14px;
    }

            .invoice-detail-container .footer > .totals {
                display: flex;
                flex-direction: column;
                width: 50%;
                font-size: 14px;
            }

                .invoice-detail-container .footer > .totals > .row {
                    display: flex;
                    flex-direction: row;
                    text-align: right;
                    padding: 0.5em;
                }

                .invoice-detail-container .footer > .totals > .row > .title {
                    width: 50%;
                }

                    .invoice-detail-container .footer > .totals > .row > .amount {
                        width: 50%;
                    }

                .invoice-detail-container .footer > .totals > .row.grand {
                    font-size: 20px;
                    font-weight: bold;
                    border-top: 1px solid #6497b6;
                }


.table-icon {
    fill: #6497b6;
    height: 27px;
    width: 20px;
}

.table-icon.green {
    fill: #A2C77E;
}

    .table-icon.orange {
        fill: #f48220;
    }

    .table-icon.grey {
        fill: #999;
    }


.form-button-bar {
    display: flex;
    margin-bottom: 10px;
    background: #dbdbdb;
    padding: 10px;
    border: 1px solid #999;
    justify-content: space-between;
}

    .form-button-bar > .col1 {
        width: 33%;
        display: flex;
        justify-content: start;
    }

    .form-button-bar > .col2 {
        width: 33%;
        display: flex;
        justify-content: center;
    }

    .form-button-bar > .col3 {
        width: 33%;
        display: flex;
        justify-content: flex-end;
    }


.form-button {
    width: 180px;
    padding: 10px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #ccc;
    color: #fff;
    background-color: #596b8c;
    line-height: 11px;
    transition: 0.2s background-color ease-in;
    margin-right: 1em;
}

.form-button:disabled {
    border-color: #ccc !important;
    color: #999 !important;
    background-color: #ddd !important;
    cursor: default !important;
}

.fulfill-pagination {
    margin-left: 20px;
    align-items: center;
    margin-bottom: 5px;
    overflow: auto;
}

.fulfill-pagesize {
    margin-bottom: 5px;
}


select#pagesize {
    height: 26px;
    min-width: 75px;
}

.fulfill-pagination label, .fulfill-pagesize label {
    font-weight: 600;
    color: #333;
}

button.fulfill-pagination__page {
    font-weight: 400;
    font-size: 13px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #888;
    box-shadow: none;
    background-color: #f7f7f7;
    color: black;
    line-height: 11px;
    transition: 0.2s background-color ease-in;
    height: 25px;
    min-width: 25px;
    text-align: center;
    padding: 0;
    margin-left: 5px;
    display: inline-block;
}

.active.fulfill-pagination__page, button.fulfill-pagination__page:hover {
    background-color: #f48220;
    color: #fff;
}



.tab-button-bar {
    display: flex;
    background: #ededed;
    padding: 5px 10px;
    border-bottom: 1px solid #999;
    justify-content: space-between;
}

    .tab-button-bar > .col1 {
        width: 33%;
        display: flex;
        justify-content: start;
    }

    .tab-button-bar > .col2 {
        width: 33%;
        display: flex;
        justify-content: center;
    }

    .tab-button-bar > .col3 {
        width: 33%;
        display: flex;
        justify-content: flex-end;
    }


.tab-button {
    padding: 5px 10px;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #ccc;
    color: #fff;
    background-color: #596b8c;
    line-height: 11px;
    transition: 0.2s background-color ease-in;
    margin-right: 1em;
}

    .tab-button:disabled {
        border-color: #ccc !important;
        color: #999 !important;
        background-color: #ddd !important;
        cursor: default !important;
    }



.icon-button {
    background: transparent;
    border: 1px solid #ccc;
    cursor: pointer;
    margin-top: 1px;
}
.icon-button:disabled {
    cursor: not-allowed;
}

    .icon-button .table-icon {
        height: 22px;
    }

.icon-button > div {
    display: flex;
    align-items: center;
}

.icon-button > div > .text{
    padding: 0 4px;
}




.bad-address-record {
    background-color: #ffc5c5 !important;
}


.renewal-request-record {
    background-color: #cde8c3 !important;
}
