﻿:root {
    --white: #FFFFFF;
    --off-white: #F0F2F4;
    --black: #252525;
    --charcoal: #444444;
    --gray: #B1B1B1;
    --dark-gray: #848484;
    --light-gray: #E0E0E0;
    --super-light-gray: #EFEFEF;
    --blue: #36AAC8;
    --dark-blue: #1B7B96;
    --light-blue: #EAF7FE;
    --red: #ED3900;
    --dark-red: #AB2900;
    --light-red: #FFD3C5;
    --green: #329E61;
    --dark-green: #1F633D;
    --light-green: #BAE8CE;
    --mdc-theme-primary: var(--blue);
    --mdc-theme-on-primary: var(--white);
}

body {
    background-color: var(--off-white);
    font-family: roboto,arial,sans-serif;
}

.login-background {
    background-color: var(--blue);
    min-height: 100vh;
    overflow: hidden;
    background-image: radial-gradient(circle at 50% 30%, #64D5FF 17%, #00AEEF 51%, #00719B 100%);
}

.login-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 110px;
    margin-bottom: 10px;
}

.login-logo-img {
    width: 300px;
    height: auto;
}

.login-text {
    font-family: 'Bitter',arial,sans-serif;
    font-size: 32px;
    font-weight: bolder;
}

.login-title {
    display: flex;
    justify-content: center;
}

.login-footer-text {
    display: flex;
    color: var(--white);
    justify-content: center;
}

.mdc-text-field--filled:not(.mdc-text-field--disabled), .mdc-text-field--filled:not(.mdc-text-field--disabled):hover {
    background-color: var(--white) !important;
    color: var(--white) !important;
}

.mdc-text-field--filled:focus {
    background-color: #f5f5f5 !important;
    color: #f5f5f5 !important;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-padding {
    background-color: var(--blue);
    padding-top: 18px;
    padding-bottom: 18px;
    box-shadow: 0px 2px 6px -2px #000000;
}

.header-logo {
    margin-left: 50px;
}

.header-links {
    padding-right: 30px;
}

.home, .pointer {
    padding: 5px;
    cursor: pointer;
    margin-left: 30px
}

    .home:hover {
        background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
        border-radius: 10px;
    }

.dropdown-list:hover {
    background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
}
.cursor-help {
    cursor: help;
}

.material-icons {
    margin-right: 4px;
    color: var(--dark-blue);
}

/*TransLoc Logo*/
.nav-img {
    width: 250px;
    height: auto;
}
/*Drop-down menu*/
.nav-drop-down {
    white-space: nowrap /*IE hack*/;
    float: left;
    font-size: 130%;
    padding-left: 20px;
}
    /*Color navigation bar normal mode*/
    .nav-drop-down ul {
        list-style-type: none;
    }

        .nav-drop-down ul li {
            float: left;
            z-index: auto !important /*Non-IE6*/;
        }

            .nav-drop-down ul li a {
                float: none !important /*Non-IE6*/;
                float: left /*IE-6*/;
                display: block;
                height: 2.1em;
                line-height: 2.1em;
                padding: 0 16px 0 16px;
                text-decoration: none;
                font-weight: normal;
            }

            .nav-drop-down ul li ul {
                display: none;
                border: none;
            }

            .nav-drop-down ul li:hover {
                position: relative;
            }
                /*Sylvain IE hack*/
                .nav-drop-down ul li:hover a {
                    text-decoration: none;
                }
                /*Color main cells hovering mode*/
                .nav-drop-down ul li:hover ul {
                    display: block;
                    /*width: 10.0em;*/
                    background-color: var(--white);
                    position: absolute;
                    z-index: 999;
                    top: 2.0em;
                    margin-top: 0.1em;
                    left: 0;
                }

                    .nav-drop-down ul li:hover ul li a {
                        white-space: normal;
                        color: var(--charcoal);
                        display: block;
                        width: 10.0em;
                        height: auto;
                        line-height: 1.3em;
                        margin-left: -1px;
                        padding: 4px 16px 4px 16px;
                        font-weight: normal;
                    }
                        /*Color subcells normal mode*/
                        .nav-drop-down ul li:hover ul li a:hover {
                            text-decoration: none;
                            color: var(--blue);
                        }
/*Color subcells hovering mode*/

.hide {
    display: none;
}

.main-body-content {
    display: flex;
    justify-content: flex-start;
    padding: 0 50px;
    margin-top: 188px;
}

.login-body-content {
    display: flex;
    justify-content: center;
}

.login-main-content {
    padding-top: 50px;
}

#tabs {
    padding-left: 15px;
}

#gbox_mapMenuLinks, .content-padding {
    padding: 15px;
}

.upload-content {
    padding-left: 10%;
    padding-top: 50px;
    padding-bottom: 75px;
}

.default-table {
    margin-top: 20px;
}

    .default-table table tbody tr:hover, .default-table table thead tr:hover {
        background-color: var(--white) !important;
        color: var(--white) !important;
    }

.table-directories td {
    padding: 10px;
    border: 1px #E0E0E0 solid;
}

    .table-directories td a {
        text-decoration: none;
        font-weight: bold;
        font-size: 12px;
    }

.empy-row {
    height: 52px;
}


.drawer-height {
    background-color: var(--off-white);
    border-right-width: 0;
    border-right-style: none;
    margin-bottom: 20px;
    margin-right: 5px;
}

.mdc-text-field-white, .mdc-text-field-white:hover {
    background-color: var(--white) !important;
    color: var(--white) !important;
}

.error-message {
    color: var(--red);
    font-size: 12px;
    font-weight: bold;
}

.login-error {
    padding-top: 10px;
}

.card-title {
    padding-bottom: 45px;
}

.card-content {
    height: 350px;
    width: 350px;
    padding: 16px;
}

.login-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-buttons {
    flex: 1 1 auto;
    align-items: flex-end;
}

.rs-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 1.0em 0 1.0em 0;
    height: 20px;
    z-index: 0;
}

.footer-text {
    padding: 10px;
    float: right;
}

.rs-header-breadcrumbs {
    margin-top: 104px;
    padding: 20px 0 20px 16px;
    border-bottom: 1px solid var(--gray);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 14px;
    position: fixed;
    z-index: 10;
    top: 0;
    width: 100%;
    overflow: hidden;
    background-color: var(--off-white);
}

.breadcrumbs {
    font-size: 14px;
    list-style: none;
    display: inline;
    padding: 8px 16px 8px 32px;
}

    .breadcrumbs li {
        margin: 16px;
        display: inline;
    }

        .breadcrumbs li a {
            color: var(--dark-gray);
            text-decoration: none;
        }

            .breadcrumbs li a:hover {
                transition-delay: 50ms;
                transition: 50ms;
                color: var(--blue);
                text-decoration: underline;
            }

        .breadcrumbs li + li:before {
            padding: 8px;
            color: #000;
            content: "/\00a0";
        }

.drawer-header {
    font-family: 'Bitter',arial,sans-serif;
    padding-bottom: 10px;
    color: var(--dark-gray);
    padding-left: 15px;
}

.content-hover:hover {
    color: var(--blue) !important;
}

.menuimg {
    background-image: url(../images/open.gif);
    background-repeat: no-repeat;
}

.editable-main-content {
    margin: 20px 0;
    min-width: 49%;
    z-index: 2;
}

.config-save-button {
    margin: 20px 19%;
}

.timezone-table {
    margin-bottom: 50px;
}

.credentials-button {
    float: right;
    margin-right: 15%;
    margin-top: 35px;
}

.caching-save-button {
    margin-top: 20%;
    margin-right: 5%;
    margin-bottom: 5%;
}

.gps-history {
    margin: 25px;
}

.assign-vehicles-table {
    margin: 25px 0 100px 25px;
}

.vehicle-button {
    position: absolute;
    left: 25em;
    bottom: 50px;
}

.reporting {
    min-height: 100vh;
    margin: 25px 0 25px 25px;
}

    .reporting a {
        color: var(--dark-blue);
    }

.report-viewer {
    height: 100%;
    width: 97%;
    overflow: auto;
    display: flex;
    justify-content: center;
    margin: 25px 20px 0 25px;
}

.ParamLabelCell {
    padding-left: 20px;
}

.InterParamPadding {
    padding-left: 150px;
}

.username, .password {
    width: 100%;
}

.default-page-header {
    font-family: 'Bitter',arial,sans-serif;
    display: block;
    font-size: 32px;
    font-weight: bold;
}

.vehicle-header {
    padding-left: 15px;
}

.deprecated-alert {
    font-size: 12px;
    padding-bottom: 10px;
    color: var(--dark-red);
}

.header-margin {
    margin: 15px;
}

.messages-options {
    padding-bottom: 20px;
}

.message-dropdown {
    padding-bottom: 5px;
}

.mdc-drawer-app-content {
    flex: auto;
    overflow: auto;
    position: relative;
}

.transloc-reports-content {
    display: flex;
    justify-content: flex-start;
}

.report-drawer {
    border-color: var(--white);
}

.looker-active {
    background-color: var(--off-white) !important;
    color: var(--blue) !important;
}

.sub-item {
    margin-left: 50px !important;
}

.no-cursor {
    cursor: default !important;
}

.no-button {
    width: 200px;
    border: none;
    background-color: var(--white);
    padding-right: 100px;
}

    .no-button:hover {
        background-color: var(--off-white);
        color: var(--blue);
    }

.looker-iframe {
    padding: 20px;
}

.import-failure {
    padding-top: 20px;
}

.ntd-report-validation {
    padding: 20px;
}

    .ntd-report-validation p, .ntd-report-validation label {
        font-size: 12px;
    }

.pad-top-lg {
    padding-top: 30px;
}

.pad-top {
    padding-top: 10px;
}

.pad-bottom {
    padding-bottom: 10px;
}

.export-data {
    padding: 20px;
}

.ntd-submit {
    margin-right: 20px;
    float: right;
}

.export-header {
    font-family: 'Bitter',arial,sans-serif;
    display: block;
    font-size: 24px;
    font-weight: bold;
}

.create-report {
    padding-bottom: 50px;
}

.report-form {
    display: flex;
    justify-content: space-between;
}

.report-inputs {
    margin-top: 8px;
}

#save-success-toast, #save-failure-toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

#save-success-toast {
    color: #270;
    background-color: #DFF2BF;
}

#save-failure-toast {
    color: #D8000C;
    background-color: #FFBABA;
}

#save-success-toast.show, #save-failure-toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}