﻿/**** DESIGN TOKENS ****/
/**** Colors ****/
:root {
    --color-alerts-danger: #db5565;
    --color-alerts-info: #556adb;
    --color-alerts-success: #26b042;
    --color-alerts-warning: #db9d55;
    --color-links-0: #337ab7;
    --color-neutral-0: #63666A;
    --color-neutral-1: #97999B;
    --color-neutral-2: #BBBCBC;
    --color-neutral-3: #EAEAEA;
    --color-neutral-4: #ffffff;
    --color-primary-0: #2C2A29;
    --color-primary-0-shaded-6: #BBBCBC;
    --color-primary-1: #78BE20;
}
/* close :root */

/**** Fonts ****/
:root {
    /** action-text **/
    --action-text-font-family: 'Open Sans';
    --action-text-font-size: 13px;
    --action-text-letter-spacing: 0px;
    --action-text-line-height: 100%;
    --action-text-font-weight: 700;
    --action-text-color: var(--color-links-0);
    /** body-copy **/
    --body-copy-font-family: 'Open Sans';
    --body-copy-font-size: 14px;
    --body-copy-letter-spacing: 0px;
    --body-copy-line-height: 100%;
    --body-copy-font-weight: 400;
    --body-copy-color: black;
    /** header-1 **/
    --header-1-font-family: 'Open Sans';
    --header-1-font-size: 36px;
    --header-1-letter-spacing: 0px;
    --header-1-line-height: 100%;
    --header-1-font-weight: 700;
    --header-1-color: black;
    /** header-2 **/
    --header-2-font-family: 'Open Sans';
    --header-2-font-size: 30px;
    --header-2-letter-spacing: 0px;
    --header-2-line-height: 100%;
    --header-2-font-weight: 400;
    --header-2-color: black;
    /** header-3 **/
    --header-3-font-family: 'Open Sans';
    --header-3-font-size: 24px;
    --header-3-letter-spacing: 0px;
    --header-3-line-height: 100%;
    --header-3-font-weight: 700;
    --header-3-color: black;
    /** header-4 **/
    --header-4-font-family: 'Open Sans';
    --header-4-font-size: 18px;
    --header-4-letter-spacing: 0px;
    --header-4-line-height: 100%;
    --header-4-font-weight: 400;
    --header-4-color: black;
    /** header-5 **/
    --header-5-font-family: 'Open Sans';
    --header-5-font-size: 14px;
    --header-5-letter-spacing: 0px;
    --header-5-line-height: 100%;
    --header-5-font-weight: 520;
    --header-5-color: black;
    /** info-text **/
    --info-text-font-family: 'Open Sans';
    --info-text-font-size: 10px;
    --info-text-letter-spacing: 0px;
    --info-text-line-height: 100%;
    --info-text-font-weight: 400;
    --info-text-color: black;
    /** padding-small **/
    --spacing-small-padding: 5px;
    --spacing-medium-padding: 10px;
    --spacing-large-padding: 20px;
    --spacing-xlarge-padding: 35px;
    --spacing-xxlarge-padding: 50px;
}
/* close :root */

.action-text {
    font-family: var(--action-text-font-family);
    font-size: var(--action-text-font-size);
    letter-spacing: var(--action-text-letter-spacing);
    line-height: var(--action-text-line-height);
    font-weight: var(--action-text-font-weight);
    color: var(--color-links-0) !important;
}
/**** END DESIGN TOKENS ****/


html {
    background-color: #e2e2e2;
    margin: 0;
    padding: 0;
}

div.center {
    margin-left: auto;
    margin-right: auto;
}

body {
    background-color: #fff !important;
    /*border-top: solid 10px var(--color-primary-1) !important;*/
    color: #333;
    font-size: 13px;
    /*font-family: "Segoe UI", Arial, sans-serif;*/
    font-family: 'Open Sans';
    margin: 0;
    padding: 0;
}

p.center {
    text-align: center;
}

a {
    color: #333;
    outline: none;
    padding-left: 3px;
    padding-right: 3px;
    text-decoration: underline;
}

    a:link, a:visited,
    a:active, a:hover {
        color: #333;
    }

    a:hover {
        color: var(--color-links-0);
        text-decoration:underline;
    }

header, footer, hgroup,
nav, section {
    display: block;
}

mark {
    background-color: #a6dbed;
    padding-left: 5px;
    padding-right: 5px;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.clear-fix:after {
    content: ".";
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

h1, h2, h3,
h4, h5, h6 {
    color: var(--color-primary-0) !important;
    margin-bottom: 0;
    padding-bottom: 0;
}

h1,
.h1 {
    font-size: 36px;
}

h2,
.h2 {
    font-size: 30px;
}

h3,
.h3 {
    font-size: 24px;
}

h4,
.h4 {
    font-size: 18px;
}

h5,
.h5 {
    font-size: var(--header-5-font-size) !important;
    font-weight: var(--header-5-font-weight) !important;
}

h6,
.h6 {
    font-size: 12px;
}

h5 a:link, h5 a:visited, h5 a:active {
    padding: 0;
    text-decoration: none;
}

/* ------------------ Colors --------------------*/
.color-red {
    color: #db5565 !important;
}

.color-red-light {
    color: #df6a78 !important;
}

.color-red-dark {
    color: #c04b59 !important;
}

.color-blue {
    color: #0bacd3 !important;
}

.color-blue-light {
    color: #29b6d8 !important;
}

.color-blue-dark {
    color: #0a97b9 !important;
}

.color-green {
    color: #51bf87 !important;
}

.color-green-light {
    color: #66c796 !important;
}

.color-green-dark {
    color: #47a877 !important;
}

.color-yellow {
    color: #f4ad49 !important;
}

.color-yellow-light {
    color: #f5b75f !important;
}

.color-yellow-dark {
    color: #d69840 !important;
}

.color-white {
    color: #ffffff !important;
}

.color-dark {
    color: #262d37 !important;
}

.color-dark-light {
    color: #303946 !important;
}

.color-dark-dark {
    color: #1c2128 !important;
}

.color-gray {
    color: #555555 !important;
}

.color-gray-light {
    color: #777777 !important;
}

.color-gray-dark {
    color: #333333 !important;
}

.color-neon-green {
    color: #26b042 !important;
}

.color-blue-cei {
    color: #26436c !important;
}

.color-primary-0 {
    color: var(--color-primary-0) !important;
}

.color-primary-1 {
    color: var(--color-primary-1) !important;
}

.color-green-cei {
    color: #26b042 !important;
}

.color-neutral-0 {
    color: #333333 !important;
}

.color-neutral-1 {
    color: #666666 !important;
}

.color-neutral-2 {
    color: #BDC3C7 !important;
}

.color-neutral-3 {
    color: #FFFFFF !important;
}

.color-alerts-danger {
    color: var(--color-alerts-danger);
}
/* ------------------ Backgrounds --------------------*/
.white-bg {
    color: #333333 !important;
    background-color: #ffffff !important;
}

.red-bg {
    color: #ffffff !important;
    background-color: #db5565 !important;
}

.red-light-bg {
    color: #ffffff !important;
    background-color: #df6a78 !important;
}

.red-dark-bg {
    color: #ffffff !important;
    background-color: #c04b59 !important;
}

.blue-bg {
    color: #ffffff !important;
    background-color: #0bacd3 !important;
}

.blue-light-bg {
    color: #ffffff !important;
    background-color: #29b6d8 !important;
}

.blue-dark-bg {
    color: #ffffff !important;
    background-color: #0a97b9 !important;
}

.green-bg {
    color: #ffffff !important;
    background-color: #51bf87 !important;
}

.green-light-bg {
    color: #ffffff !important;
    background-color: #66c796 !important;
}

.green-dark-bg {
    color: #ffffff !important;
    background-color: #235b4e !important;
}

.yellow-bg {
    color: #ffffff !important;
    background-color: #f4ad49 !important;
}

.yellow-light-bg {
    color: #ffffff !important;
    background-color: #f5b75f !important;
}

.yellow-dark-bg {
    color: #ffffff !important;
    background-color: #d69840 !important;
}

.gray-bg {
    color: #333333 !important;
    background-color: #555555 !important;
}

.gray-light-bg {
    color: #333333 !important;
    background-color: #777777 !important;
}

.gray-lighter-bg {
    color: #333333 !important;
    background-color: #eeeeee !important;
}

.gray-dark-bg {
    color: #333333 !important;
    background-color: #333333 !important;
}

.gray-darker-bg {
    color: #333333 !important;
    background-color: #222222 !important;
}

.dark-bg {
    color: #ffffff !important;
    background-color: #262d37 !important;
}

.dark-light-bg {
    color: #ffffff !important;
    background-color: #303946 !important;
}

.dark-dark-bg {
    color: #ffffff !important;
    background-color: #1c2128 !important;
}

.dark-dark-bg {
    color: #ffffff !important;
    background-color: #1c2128 !important;
}

.primary-bg {
    color: #fff !important;
    background-color: var(--color-primary-0) !important;
}

.secondary-bg {
    color: #fff !important;
    background-color: #26b042 !important;
}

.color-neutral-0-bg {
    color: #fff !important;
    background-color: var(--color-neutral-0) !important;
}

.color-neutral-1-bg {
    color: #fff !important;
    background-color: var(--color-neutral-1) !important;
}

.color-neutral-2-bg {
    color: #fff !important;
    background-color: var(--color-neutral-3) !important;
}

.color-neutral-3-bg {
    color: #fff !important;
    background-color: var(--color-neutral-4) !important;
}

.neon-green-bg {
    color: #fff !important;
    background-color: #26b042 !important;
}

.open .color-neon-green-bg {
    color: #fff !important;
    background-color: #666 !important;
    border: 1px solid #26b042;
}

/* main layout
----------------------------------------------------------*/
.content-wrapper {
    margin: 0 auto;
    max-width: 100%;
}

#body {
    background-color: #efeeef;
    clear: both;
    padding-bottom: 35px;
}

.page-title {
    padding: 10px;
    margin-top: -41px;
    position: absolute;
    background-color: white;
    font-size: 15px;
    min-width: 200px;
    font-weight:bold;
    text-align:right;
}
.main-content {
    /*background: url("../Images/accent.png") no-repeat;*/
    padding-left: 10px;
    
    padding-top: var(--spacing-medium-padding);
    width: 90%;
    margin: 0 auto;
}

.featured + .main-content {
    /*background: url("../Images/heroAccent_blue.png") no-repeat;*/
}

header .content-wrapper {
    padding-top: 20px;
}

.header-detail-wrapper {
    background-color: white;
    padding: 7px;
    border: 1px solid #ccc;
    margin: 7px 7px 7px 7px;
}

footer {
    clear: both;
    background-color: #efeeef;
    font-size: .8em;
    height: 100px;
}


/* site title
----------------------------------------------------------*/
.site-title {
    color: #c8c8c8;
    font-family: 'Open Sans';
    font-size: 2.3em;
    margin: 0;
}

    .site-title a, .site-title a:hover, .site-title a:active {
        background: none;
        color: #c8c8c8;
        outline: none;
        text-decoration: none;
    }


/* login
----------------------------------------------------------*/
#login {
    display: block;
    font-size: .85em;
    margin: 0 0 10px;
    text-align: right;
}

.loginInfo {
    font-size:18px;
}
/*#login a {
        background-color: #d3dce0;
        margin-left: 10px;
        margin-right: 3px;
        padding: 2px 3px;
        text-decoration: none;
    }

        #login a.username {
            background: none;
            margin-left: 0px;
            text-decoration: underline;
        }*/
#login ul {
    margin: 0;
}

    #login li {
        display: inline;
        list-style: none;
    }
    
    .login-footer {
    position: absolute;
    bottom: 0;
    color: #E3E4E7;
}


    .login-footer {
        position: absolute;
        bottom: 0;
        color: #E3E4E7;
    }


/* menu
----------------------------------------------------------*/
ul#menu {
    font-size: 1.3em;
    font-weight: 600;
    margin: 0 0 5px;
    padding: 0;
    text-align: right;
}

    ul#menu li {
        display: inline;
        list-style: none;
        padding-left: 15px;
    }

        ul#menu li a {
            background: none;
            color: #999;
            text-decoration: none;
        }

            ul#menu li a:hover {
                color: #333;
                text-decoration: none;
            }


/* page elements
----------------------------------------------------------*/
/* featured */
.featured {
    background-color: #fff;
}

    .featured .content-wrapper {
        background-color: #fff;
        /*background-image: -ms-linear-gradient(left, #0165a1 0%, #a4e6b6 100%);
        background-image: -o-linear-gradient(left, #0165a1 0%, #a4e6b6 100%);
        background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #0165a1), color-stop(1, #a4e6b6));
        background-image: -webkit-linear-gradient(left, #0165a1 0%, #a4e6b6 100%);
        background-image: linear-gradient(left, #0165a1 0%, #a4e6b6 100%);*/
        color: #333;
        padding: 0px 40px 0px 40px;
    }

    .featured hgroup.title h1, .featured hgroup.title h2 {
        color: #333;
    }

    .featured p {
        font-size: 1.1em;
    }

/* page titles */
hgroup.title {
    margin-bottom: 10px;
    text-align: center;
}

    hgroup.title h1, hgroup.title h2 {
        display: inline;
    }

    hgroup.title h2 {
        font-weight: normal;
        margin-left: 3px;
    }

/* features */
section.feature {
    width: 300px;
    float: left;
    padding: 10px;
}

/* ordered list */
ol.round {
    list-style-type: none;
    padding-left: 0;
}

    ol.round li {
        margin: 25px 0;
        padding-left: 45px;
    }

        ol.round li.zero {
            background: url("../Images/orderedList0.png") no-repeat;
        }

        ol.round li.one {
            background: url("../Images/orderedList1.png") no-repeat;
        }

        ol.round li.two {
            background: url("../Images/orderedList2.png") no-repeat;
        }

        ol.round li.three {
            background: url("../Images/orderedList3.png") no-repeat;
        }

        ol.round li.four {
            background: url("../Images/orderedList4.png") no-repeat;
        }

        ol.round li.five {
            background: url("../Images/orderedList5.png") no-repeat;
        }

        ol.round li.six {
            background: url("../Images/orderedList6.png") no-repeat;
        }

        ol.round li.seven {
            background: url("../Images/orderedList7.png") no-repeat;
        }

        ol.round li.eight {
            background: url("../Images/orderedList8.png") no-repeat;
        }

        ol.round li.nine {
            background: url("../Images/orderedList9.png") no-repeat;
        }

/* content */
article {
    float: left;
    width: 70%;
}

aside {
    float: right;
    width: 25%;
}

    aside ul {
        list-style: none;
        padding: 0;
    }

        aside ul li {
            background: url("../Images/bullet.png") no-repeat 0 50%;
            padding: 2px 0 2px 20px;
        }

.label {
    font-weight: 700;
}

.card-footer-label {
    font-weight: 100 !important;
}

.content-wrapper .label {
    font-size: 100%;
}

#toFromTransporter {
}

    #toFromTransporter tr {
    }

        #toFromTransporter tr .topCell {
            width: 30%;
            /*border: 1px black solid;*/
            vertical-align: top;
            /*padding:7px;*/
        }

.bigTransReq {
    font-size: 1.2em;
}
/* login page */
#loginForm {
    /*border-right: solid 2px #c8c8c8;*/
}

    #loginForm .validation-error {
        display: block;
        margin-left: 15px;
    }

#socialLoginForm {
    margin-left: 40px;
    float: left;
    width: 40%;
}

    #socialLoginForm h2 {
        margin-bottom: 5px;
    }

fieldset.open-auth-providers {
    margin-top: 15px;
}

    fieldset.open-auth-providers button {
        margin-bottom: 12px;
    }

/* contact */
.contact h3 {
    font-size: 1.2em;
}

.contact p {
    margin: 5px 0 0 10px;
}

.contact iframe {
    border: 1px solid #333;
    margin: 5px 0 0 10px;
}

/* forms */
fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

    fieldset legend {
        display: none;
        width: 100%;
    }

    fieldset ol {
        padding: 0;
        list-style: none;
    }

        fieldset ol li {
            padding-bottom: 5px;
        }

/*label {
        display: block;
        font-size: 1.2em;
        font-weight: 600;
    }*/

label.checkbox {
    display: inline;
}

/*input, textarea {
        border: 1px solid #e2e2e2;
        background: #fff;
        color: #333;
        font-size: 1.2em;
        margin: 5px 0 6px 0;
        padding: 5px;
        width: 300px;
    }*/


textarea {
    font-family: 'Open Sans';
    width: 500px;
}

    input:focus, textarea:focus {
        border: 1px solid #7ac0da;
    }

input[type="checkbox"] {
    background: transparent;
    border: inherit;
    width: auto;
}

/*input[type="submit"],
    input[type="button"],
    button {
        background-color: #7ac0da;
        border: 1px solid #787878;
        cursor: pointer;
        font-size: 1.2em;
        font-weight: 600;
        padding: 7px;
        margin-right: 8px;
        width: auto;
    }*/

.gridButtons {
    background-color: #7ac0da;
    border: 1px solid #787878;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    padding: 7px;
    margin-right: 8px;
    width: auto;
}

td input[type="submit"],
td input[type="button"],
td button {
    /*font-size: 1em;
    padding: 4px;
    margin-right: 4px;*/
}

/* info and errors */
.message-info {
    border: 1px solid;
    clear: both;
    padding: 10px 20px;
}

.message-error {
    clear: both;
    color: #e80c3f;
    font-size: 1.1em;
    font-weight: bold;
    margin: 20px 0 10px 0;
}

.message-success {
    color: #7ac0da;
    font-size: 1.3em;
    font-weight: bold;
    margin: 20px 0 10px 0;
}

.error {
    color: #e80c4d;
}

/* styles for validation helpers */
.field-validation-error {
    color: #e80c4d;
    font-weight: bold;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #e80c4d;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #e80c4d;
    font-weight: bold;
    font-size: 1.1em;
}

.validation-summary-valid {
    display: none;
}

.inline-validation-message {
    margin-top: 35px;
}

/* tables
----------------------------------------------------------*/
/*table {
    border-collapse: collapse;
    border-spacing: 0;
    margin-top: 0.75em;
    border: 0 none;
}

    table.center {
        margin-left: auto;
        margin-right: auto;
    }

th {
    font-size: 1.2em;
    text-align: left;
    border: none 0px;
    padding-left: 0;
}

    th a {
        display: block;
        position: relative;
    }

        th a:link, th a:visited, th a:active, th a:hover {
            color: #333;
            font-weight: 600;
            text-decoration: none;
            padding: 0;
        }

        th a:hover {
            color: #000;
        }

    th.asc a, th.desc a {
        margin-right: .75em;
    }

        th.asc a:after, th.desc a:after {
            display: block;
            position: absolute;
            right: 0em;
            top: 0;
            font-size: 0.75em;
        }

        th.asc a:after {
            content: '▲';
        }

        th.desc a:after {
            content: '▼';
        }

td {
    padding: 0.25em 2em 0.25em 0em;
    border: 0 none;
}

tr.pager td {
    padding: 0 0.25em 0 0;
}*/


/********************
*   Mobile Styles   *
********************/
@media only screen and (max-width: 850px) {

    /* header
    ----------------------------------------------------------*/
    header .float-left,
    header .float-right {
        float: none;
    }

    /* logo */
    header .site-title {
        margin: 10px;
        text-align: center;
    }

    /* login */
    #login {
        font-size: .85em;
        margin: 0 0 12px;
        text-align: center;
    }

        #login ul {
            margin: 5px 0;
            padding: 0;
        }

        #login li {
            display: inline;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        #login a {
            background: none;
            color: #999;
            font-weight: 600;
            margin: 2px;
            padding: 0;
        }

            #login a:hover {
                color: #333;
            }

    /* menu */
    nav {
        margin-bottom: 5px;
        position: absolute;
        z-index: -9999;
    }

    .navMenu {
        position: absolute;
        z-index: -999;
    }

    ul#menu {
        margin: 0;
        padding: 0;
        text-align: center;
    }

        ul#menu li {
            margin: 0;
            padding: 0;
        }


    /* main layout
    ----------------------------------------------------------*/
    .main-content,
    .featured + .main-content {
        background-position: 10px 0;
    }

    .content-wrapper {
        padding-right: 10px;
        padding-left: 10px;
    }

    .featured .content-wrapper {
        padding: 10px;
    }

    /* page content */
    article, aside {
        float: none;
        width: 100%;
    }

    /* ordered list */
    ol.round {
        list-style-type: none;
        padding-left: 0;
    }

        ol.round li {
            padding-left: 10px;
            margin: 25px 0;
        }

            ol.round li.zero,
            ol.round li.one,
            ol.round li.two,
            ol.round li.three,
            ol.round li.four,
            ol.round li.five,
            ol.round li.six,
            ol.round li.seven,
            ol.round li.eight,
            ol.round li.nine {
                background: none;
            }

    /* features */
    section.feature {
        float: none;
        padding: 10px;
        width: auto;
    }

        section.feature img {
            color: #999;
            content: attr(alt);
            font-size: 1.5em;
            font-weight: 600;
        }

    /* forms */
    /*input {
        width: 90%;
    }*/



    /* login page */
    #loginForm {
        border-right: none;
        float: none;
        width: auto;
    }

        #loginForm .validation-error {
            display: block;
            margin-left: 15px;
        }

    #socialLoginForm {
        margin-left: 0;
        float: none;
        width: auto;
    }

    /* footer
    ----------------------------------------------------------*/
    footer .float-left,
    footer .float-right {
        float: none;
    }

    footer {
        text-align: center;
        height: auto;
        padding: 10px 0;
    }

        footer p {
            margin: 0;
        }
}
/* END: Mobile Styles */

input {
    font-family: var(--body-copy-font-family) !important;
}

/* RadGrid Styles */


.RadGrid_Bootstrap, .RadUpload_Bootstrap, .RadInput, .riTextBox, .RadLabel_Bootstrap, .RadMenu_Bootstrap {
    font-family: var(--body-copy-font-family) !important;
}

.RadCalendar_Bootstrap {
    font-family: var(--body-copy-font-family) !important;
}

.RadGrid_Bootstrap .rgPagerCell {
    font-family: var(--body-copy-font-family) !important;
}

.RadGrid_Bootstrap .rgFiltered {
    border-color: #1fbc7c !important;
    color: #fff;
    background-color: var(--color-primary-1) !important;
}

.RadGrid_Bootstrap .rgPagerCell .rgNumPart a.rgCurrentPage {
    border-color: #1fbc7c !important;
    color: #fff;
    background-color: var(--color-primary-1) !important;
}

.RadGrid_Bootstrap .rgInput:active, .RadGrid_Bootstrap .rgInput:focus, .RadGrid_Bootstrap .rgEditRow > td > [type="text"]:active, .RadGrid_Bootstrap .rgEditRow > td > [type="text"]:focus, .RadGrid_Bootstrap .rgEditForm td > [type="text"]:active, .RadGrid_Bootstrap .rgEditForm td > [type="text"]:focus, .RadGrid_Bootstrap .rgBatchContainer > [type="text"]:active, .RadGrid_Bootstrap .rgBatchContainer > [type="text"]:focus, .RadGrid_Bootstrap .rgFilterBox:active, .RadGrid_Bootstrap .rgFilterBox:focus {
    border-color: var(--color-primary-1) !important;
    color: #333;
    background-color: #fff
}

.RadInput_Bootstrap.RadInputFocused .riTextBox, .RadInput_Bootstrap.RadInputFocused .riSelect, .RadInput_Bootstrap.RadInputFocused .rcSelect, .RadInput_Focused_Bootstrap {
    border-color: var(--color-primary-1) !important;
    color: #333;
    background-color: #fff
}

.RadComboBox_Bootstrap .rcbFocused {
    border-color: var(--color-primary-1) !important;
    color: #333;
    background-color: #fff;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
}

    div.RadGrid_Bootstrap,
    div.RadGrid_Bootstrap .rgMasterTable,
    div.RadGrid_Bootstrap .rgDetailTable,
    div.RadGrid_Bootstrap .rgGroupPanel table,
    div.RadGrid_Bootstrap .rgCommandRow table,
    div.RadGrid_Bootstrap .rgEditForm table,
    div.RadGrid_Bootstrap .rgPager table,
    div.GridToolTip_Bootstrap {
        font-size: 12px;
    }

    div.RadGrid_Bootstrap .rgCommandRow {
        background-image: none;
        background-color: #666;
        color: #fff;
        padding: 5px;
    }

        div.RadGrid_Bootstrap .rgCommandRow a {
            /*color:#fff;*/
            margin-left: 4px;
        }

.RadGrid {
    visibility: visible;
    border-radius: 6px;
}

.RadGrid_Bootstrap th.rgHeader {
    background-image: none;
    background-color: var(--color-primary-0);
    color: #fff;
}

/*.RadGrid_Bootstrap .rgHeader, .RadGrid_Bootstrap th.rgResizeCol, .RadGrid_Bootstrap .rgHeaderWrapper, .RadGrid_Bootstrap .rgMultiHeaderRow th.rgHeader {
    border-left: 1px solid #03966e;
}*/

.RadGrid_Bootstrap .rgHeader {
    background-color: var(--color-primary-0);
    color: #fff;
    font-size: 12px;
    padding: 4px;
}

.RadGrid_Bootstrap th.rgHeader a {
    color: #fff;
}


.RadGrid_Bootstrap th.rgHeader a:hover, .RadGrid_Bootstrap th.rgHeader a:focus, .RadGrid_Bootstrap th.rgHeader a:active, .rgHeaderOver {
    background-color: #fff;
    color: #000;
}


.RadGrid_Bootstrap .rgMasterTable .rgSelectedCell, .RadGrid_Bootstrap .rgSelectedRow {
    background: #d2d2d2 !important;
    color:#000 !important;
}

    .RadGrid_Bootstrap .rgSelectedRow > td {
        background: #d2d2d2 !important;
        color: #000 !important;
    }

.RadGrid_Bootstrap .rgFooter td{
    border:none !important;
}

.RadMenu_Bootstrap .rmRootGroup {
    background-color: var(--color-neutral-4) !important;
}

.RadMenu_Bootstrap .rmLink .rmText {
    text-transform: none;
}

.RadMenu_Bootstrap .rmRootLink:hover {
    background-color: var(--color-neutral-3) !important;
}

.RadMenu_Bootstrap .rmPopup .rmLink:hover, .RadMenu_Bootstrap .rmPopup .rmExpanded > .rmLink, .RadMenu_Bootstrap .rmGroup .rmLink:hover, .RadMenu_Bootstrap .rmGroup .rmExpanded > .rmLink {
    border-color: var(--color-primary-1) !important;
    color: white;
    background-color: var(--color-primary-1) !important;
    background-image: none !important;
}

.RadMenu .rmGroup .rmItem .rmLink:hover{
    color:#FFFFFF !important;
}

.RadGrid_Bootstrap .rgRow > td, .RadGrid_Bootstrap .rgAltRow > td, .RadGrid_Bootstrap .rgEditRow > td {
    border-style: none !important;
}

.RadGrid_Bootstrap .rgHeader, .RadGrid_Bootstrap th.rgResizeCol, .RadGrid_Bootstrap .rgHeaderWrapper, .RadGrid_Bootstrap .rgMultiHeaderRow th.rgHeader {
    border-style: none !important;
}

html body .RadInput_Bootstrap .riError, html body .RadInput_Error_Bootstrap {
    border-color: var(--color-alerts-danger) !important;
}

/* BUTTONS */
.dropdown-toggle:active, .open .dropdown-toggle, .dropdown-toggle[aria-expanded="true"] {
    background-color: var(--color-primary-1) !important;
}

/* RadGrid Command Item Buttons */
.btn btn-default {
    text-decoration: none;
    font-size: 12px;
    padding: 8px 9px 5px 9px;
    border: solid 1px;
    position: relative;
    margin-bottom: 5px;
    display: inline-block;
}

.btn-primary {
    background-color: var(--color-primary-1) !important;
    color: var(--color-neutral-4) !important;
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary.focus,
    .btn-primary:active,
    .btn-primary.active,
    .open > .dropdown-toggle.btn-primary {
        color: #fff;
        background-color: var(--color-primary-0-shaded-6);
        border-color: var(--color-primary-1);
    }

    .btn btn-default:hover, .btn btn-default:active, .btn btn-default:focus, .btn-default:hover, .btn-default:active, .btn-default:focus {
        background-color: #efeeef;
        color: #000;
        /*border-bottom: solid 2px #333;*/
    }

.btn-primary:hover {
    background: var(--color-neutral-2) !important;
    color: var(--color-neutral-4) !important;
    /* color-neutral-3 */
    border: 1px solid var(--color-primary-1);
    box-sizing: border-box;
    border-radius: 4px;
}

.RadGrid_Bootstrap .rgCommandRow .btn btn-default {
    color: #FFF;
}

.RadGrid_Bootstrap .rgCommandRow .btn btn-default:hover {
    background-color: var(--color-primary-1);
    color: #FFF;
    /*border-bottom: solid 2px #235b4e;*/
}

.RadGrid_Bootstrap .rgRow a, .RadGrid_Bootstrap .rgAltRow a, .RadGrid_Bootstrap .rgEditRow a, .RadGrid_Bootstrap .rgFooter a, .RadGrid_Bootstrap .rgEditForm a {
    /*color: darkgreen !important;*/
    color: var(--color-links-0) !important;
}

.RadGrid_Bootstrap .rgSelectedRow .rgAltRow a {
    color: #FFF !important;
}

.RadGrid_Bootstrap .rgSortAsc {
    background-color: var(--color-neutral-3) !important;
    border-bottom: 2px solid !important;
    border-color: var(--color-neutral-4) !important;
}

.RadGrid_Bootstrap .rgSortDesc {
    background-color: var(--color-neutral-3) !important;
    border-bottom: 2px solid !important;
    border-color: var(--color-neutral-4) !important;
}

.RadInput_Bootstrap .riTextBox .riEnabled .riHover {
    border-color: var(--color-primary-1) !important;
}

.RadInput_Bootstrap .riHover, .RadAutoCompleteBox_Bootstrap .racHovered {
    border-color: var(--color-primary-1) !important;
}

.RadComboBoxDropDown_Bootstrap .rcbHovered {
    background-color: var(--color-primary-1) !important;
    color:#FFF !important;
}

.RadComboBox_Bootstrap .rcbInput .rcbHovered {
    background-color: var(--color-primary-1) !important;
}

.RadComboBox_Bootstrap .rcbHovered {
    border-color: var(--color-primary-1) !important;
}

.RadComboBox .rcbHovered .rcbInputCellLeft {
    border: 1px solid var(--color-primary-1) !important;
    background-position: unset !important;
}

.RadComboBox .rcbFocused .rcbInputCellLeft {
    border: 1px solid var(--color-primary-1) !important;
    background-position: unset !important;
}

.RadComboBox .rcbHovered .rcbReadOnly .rcbInputCellLeft {
    background-color: var(--color-primary-1) !important;
    background-position: unset !important;
}

.RadAutoCompleteBox_Bootstrap .racTokenList .racFocused, .racFocused, .RadInputFocused, .rcbFocused {
    border: 1px solid var(--color-primary-1) !important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(116,188,31,0.6) !important;
}

.RadListBox_Bootstrap .rlbItem.rlbSelected {
    background: var(--color-primary-1) !important;
}

.RadListBox_Bootstrap .rlbItem.rlbHovered {
    background: var(--color-primary-1) !important;
}

.RadMenu_Bootstrap .rmGroup a.rmLink:hover .rmText {
    background-position: unset !important;
    background: var(--color-primary-1);
}

.RadAutoCompleteBoxPopup_Bootstrap .racItemHovered {
    background-color: var(--color-primary-1) !important;
}

.RadAutoCompleteBox_Bootstrap .racTokenSelected {
    border-color: var(--color-primary-1) !important;
    background-color: var(--color-primary-1) !important;
    background-image: none !important;
}

.RadMenu_Bootstrap .rmGroup a.rmFocused .rmText {
    background-position: unset !important;
    background: var(--color-primary-1);
}

.RadMenu .RadMenu_Bootstrap {
    z-index: 0 !important;
}
/* Tile Navigation */
.navTile {
    width: 200px;
    height: 200px;
    padding: 7px;
    float: left;
}

.tileTitle {
    position: relative;
    margin-top: 30px;
    margin-left: 10px;
    color: White;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Open Sans', Arial;
}

.tileBG_iCOS .tileTitle {
    border-bottom: 1px solid #2ecc71;
}

.tileBG_Address .tileTitle {
    border-bottom: 1px solid #00a300;
}

.tileBG_Schedule .tileTitle {
    border-bottom: 1px solid #b91d47;
}

.tileBG_Dispatcher .tileTitle {
    border-bottom: 1px solid #e3a21a;
}

.tileDesc {
    position: relative;
    margin-top: 30px;
    padding: 0 5px 0 5px;
    color: White;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Open Sans', Arial;
}

.tileBG_iCOS {
    position: absolute;
    height: 200px;
    width: 200px;
    background-color: #3b3b3b;
}

    .tileBG_iCOS a:hover {
    }

    .tileBG_iCOS:hover {
        height: 200px;
        width: 200px;
        cursor: pointer;
        outline: 3px solid;
        outline-color: #2ecc71;
    }

.tileBG_Address {
    position: absolute;
    height: 200px;
    width: 200px;
    background-color: #3b3b3b;
}


    .tileBG_Address:hover {
        position: absolute;
        height: 200px;
        width: 200px;
        cursor: pointer;
        outline: 3px solid;
        outline-color: #00a300;
    }

.tileBG_Schedule {
    position: absolute;
    height: 200px;
    width: 200px;
    background-color: #3b3b3b;
}


    .tileBG_Schedule:hover {
        position: absolute;
        height: 200px;
        width: 200px;
        cursor: pointer;
        outline: 3px solid;
        outline-color: #b91d47;
    }

.tileBG_Dispatcher {
    position: absolute;
    height: 200px;
    width: 200px;
    background-color: #3b3b3b;
}


    .tileBG_Dispatcher:hover {
        position: absolute;
        height: 200px;
        width: 200px;
        cursor: pointer;
        outline: 3px solid;
        outline-color: #e3a21a;
    }

.tileLink {
    text-decoration: none;
}

.editBtn {
    width: 10px;
    height: 10px;
}

/* Horizontal Rule */
.hrStyle {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #2ecc71;
}

.searchBtn {
    background-color: #2ecc71;
    margin-left: 22px;
    padding: 5px;
    color: white;
    line-height: 20px;
    width: 110px;
    outline: solid;
    outline-width: thin;
    outline-color: #484646;
    text-align: center;
    text-decoration: none;
}

    .searchBtn a {
        color: white;
    }

/* Rad Grid Custom commands */
.customGridCmdBtn img a {
    text-decoration: none;
}

.expandddlbwidth {
    width: 100%;
}

.textboxRightJustify {
    text-align: right;
}

/* Edit form styles */
.form-error-message {
    color: #e80c3f;
    font-size: 1.1em;
    font-weight: bold;
    margin: 0 0 0 10px;
}

.formButtonContainer {
    width: 200px;
    margin-left: 30px;
}

.formValidation {
    font-size: small;
    color: #ff5050;
}


.formButtons, .formInsertEdit, .formCancel {
    margin: 0 7px 0 15px;
    padding: 5px;
    background-color: #f5f5f5;
    border: 1px solid #484646;
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
    color: #484646;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

    .formInsertEdit:hover {
        background-color: #E6EFC2;
        border: 1px solid #C6D880;
        color: #529214;
    }

    .formInsertEdit:active {
        background-color: #529214;
        border: 1px solid #529214;
        color: #fff;
    }

    .formCancel:hover {
        background: #fbe3e4;
        border: 1px solid #fbc2c4;
        color: #d12f19;
    }

    .formCancel:active {
        background-color: #d12f19;
        border: 1px solid #d12f19;
        color: #fff;
    }

.btnCancel {
    margin: 0 7px 0 0;
    background-color: #f5f5f5;
    border: 1px solid #dedede;
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
    color: #f00;
    font-weight: bold;
}

.editGateRate {
    width: 800px;
}

    .editGateRate .rgEditRow input {
        width: 70px;
    }

    .editGateRate .RadComboBox_Bootstrap {
        width: 70px;
    }

HTML BODY .RadInput input.customWidth, .RadAutoCompleteBox_Bootstrap {
    width: 100% !important;
}

    HTML BODY .RadInput input.customWidth :after {
        clear: left;
    }
/*Vertex - GS - 07/09/2021 -Sprint5- Not important was not allowing to change the width across the controls that's why commented*/  
.RadPicker_Bootstrap .RadInput_Bootstrap, .row .RadInput input.customWidth, .row .customWidth, .row .RadInput_Bootstrap, .RadComboBox_Bootstrap, .RadInput, .RadInput_Bootstrap {
    width: 100%;
}

.row .RadComboBox_Bootstrap {
    width: 82%;
}

.RadPicker {
    width: 100%;
}

.customWidth {
    width: 100% !important;
}

.RadGrid .rgFilterRow .RadPicker, .RadGrid .rgFilterRow .RadPicker_Bootstrap {
    width: 40%;
}

.RadGrid .RadPicker, .RadGrid .RadPicker_Bootstrap {
    width: 100%;
}

.customWidth :after {
    clear: left;
}


HTML BODY .RadInput input.profileWidth {
    width: 100% !important;
}

    HTML BODY .RadInput input.profileWidth :after {
        clear: left;
    }

HTML BODY .RadComboBox .rcbInputCell .rcbInput {
    width: 100% !important;
}

.panel-body {
    background: #fff;
    border: solid .5px #bdc3c7;
    margin: 0 0 15px 0;
    padding: 0px !important;
}

.panel-heading {
    /*color: #667b8c;
    background-color: #f5f7fa;*/
    border-bottom: 2px solid #bdc3c7 !important;
}

.profile-info .options {
    color: #666666;
}

h2.panel-title {
    font-size: 24px;
    font-weight: 200;
    color: var(--color-primary-0) !important;
}
/* Circles */
.circle {
    border-radius: 50%;
    display: inline-block;
    margin-right: 20px;
}

#shipment {
    width: 100px;
    height: 100px;
    background: #bdc3c7;
    border: solid 3px #000;
    background-image: url("../../Images/flat-truck.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

#manifest {
    width: 100px;
    height: 100px;
    background: #bdc3c7;
    border: solid 3px black;
    background-image: url("../../Images/flat-manifest.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

#invoice {
    width: 100px;
    height: 100px;
    background: #bdc3c7;
    border: solid 3px black;
    background-image: url("../../Images/flat-credit.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

#approval {
    width: 100px;
    height: 100px;
    background: #bdc3c7;
    border: solid 3px black;
    background-image: url("../../Images/flat-letter.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.circle p {
    position: relative;
    margin-top: 100px;
    margin-bottom: 5px;
    clear: both;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

/* Manifest Form Page */
.manifest-form div {
    float: left;
    margin-right: 15px;
    margin-top: 15px;
    clear: left;
    width: 100%;
}

.manifest-form span {
    float: left;
    text-align: right;
    margin-right: 7px;
    margin-top: 7px;
    width: 300px;
    font-size: 14px;
    clear: left;
}

.manifest-form input {
    width: 50%;
    height: 24px;
}

.manifest-form textarea {
    width: 50%;
}

.manifest-form #block2 {
    width: 50px;
    height: 20px;
}

/*** SCHEDULER STYLES ***/
#qsfexAdvEditWrapper {
    background: #d0ecbb none repeat scroll 0 0;
    border: 1px solid #666666;
    padding: 20px;
}

#qsfexAdvEditInnerWrapper {
    border: 1px solid #777;
    padding-top: 5px;
}

.qsfexAdvEditControlWrapper input.riTextBox {
    margin-bottom: 2px;
}

.RadComboBox_Bootstrap .rcbReadOnly .rcbArrowCellRight {
    background-position: -150px -176px !important;
}

.RadComboBox_Bootstrap .rcbArrowCellRight {
    background-position: -2px -176px !important;
}

.RadComboBox .rcbArrowCell a {
    height: 22px;
    position: relative;
    outline: 0px none;
    font-size: 0px;
    line-height: 1px;
    text-decoration: none;
    text-indent: 9999px;
    display: block;
    overflow: hidden;
    cursor: default;
}

.RadDock_Bootstrap .rdTitleBar {
    color: #fff !important;
    background-color: #8b8765;
    font-weight: bold !important;
}

    .RadDock_Bootstrap .rdTitleBar em {
        color: #fff !important;
        font-weight: bold !important;
    }

/*.RadAutoCompleteBox_Bootstrap .racInput {
    width: 70% !important;
}*/

.GridDataDiv_Bootstrap {
    overflow-y: scroll !important;
}

.RadGrid_Bootstrap thead .rgCommandCell {
    padding: 5px !important;
}

.t-i-arrow-s:before, .t-i-arrow-down:before {
    content: "⯆" !important;
}

/*.PageTitle {
    text-align: right;
    font-weight: bold;
    font-size: 14px;
}*/

.AlertLabel {
    text-align: center;
}

.GridItemDropIndicator_Bootstrap {
    background-color: #e6f706;
    color: #fff;
    z-index: 3005 !important;
}

.RadComboBoxDropDown_Bootstrap {
    font-family: 'Open Sans' !important;
}

.RadComboBox_Bootstrap .rcbInput {
    font-family: 'Open Sans' !important;
}

/* Hides Vertical Scrollbar on RadGrid */
.soilScheduleGrid .rgDataDiv {
    /*height: 600px !important;*/
    /*overflow:auto !important;*/
}

/* -- SCHEDULER RESOURCE GROUPING -- */
.RadScheduler .rsEquipmentRed .rsAptContent {
    background-color: #ff2d2d;
    color: white;
}

.rsCategoryGreen {
    background-color: green;
}

.rsCategoryRed {
    background-color: red;
}

.rsCategoryBlue {
    background-color: blue;
}

.rsCategoryOrange {
    background-color: orange;
}

#greensquare {
    width: 20px;
    height: 20px;
    background-color: lightgreen;
}

#redsquare {
    width: 20px;
    height: 20px;
    background-color: red;
    opacity: 0.4;
}

#bluesquare {
    width: 20px;
    height: 20px;
    background-color: blue;
    opacity: 0.4;
}

#orangesquare {
    width: 20px;
    height: 20px;
    background-color: orange;
    opacity: 0.4;
}

/* HIDE RESIZE BARS ON SLOTS IN SCHEDULER */
.rsAptResize {
    display: none;
}



.rsAdvButtonWrapper .formButtons {
    margin: 0 7px 0 7px;
    padding: 5px;
    background-color: #3ebf54;
    border: 1px solid #484646;
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

/* RADCOMBOBOX MULTI COLUMN */
/** Columns */
.rcbHeader ul,
.rcbFooter ul,
.rcbItem ul,
.rcbHovered ul,
.rcbDisabled ul {
    margin: 0;
    padding: 0;
    width: 100%;
    display: inline-block;
    list-style-type: none;
}

.col1,
.col2,
.col3 {
    margin: 0;
    padding: 0 5px 0 0;
    width: 110px;
    line-height: 14px;
    float: left;
}


/** Multiple rows and columns */
.multipleRowsColumns .rcbItem,
.multipleRowsColumns .rcbHovered {
    float: left;
    margin: 0 1px;
    min-height: 13px;
    overflow: hidden;
    padding: 2px 19px 2px 6px;
    width: 200px;
}

#whiteboard {
    /*padding:7px;*/
}

.tb {
    font-size: 12px;
    border-collapse: separate;
    border-spacing: 0px;
    width: 100%;
    min-height: 400px;
}

    .tb a {
        color: #fff;
    }

        .tb a:hover {
            text-decoration: underline;
            color: #fff !important;
            cursor: pointer;
        }

#whiteboard, .whiteboard {
    /*padding:7px;*/
    min-height: 400px;
    /*overflow-y: scroll;*/
}

.day-header {
    background-color: var(--color-primary-0);
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
    margin-bottom: 10px;
    display: inline-block;
}

.div-header-highlighted {
    background-color: #cc7234;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
    margin-bottom: 10px;
    display: inline-block;
}

.tb #driver_cell {
    border-bottom: 1px solid #000;
    width: 100px;
    vertical-align: top;
    padding: 5px;
    background-color: #c8c8c8;
    font-weight: bold;
}

.tb #day_data {
    background-color: #27ae60;
    border-bottom: 1px solid #000;
    padding: 5px;
    width: 230px;
    vertical-align: top;
    color: #fff;
}

.tb #date_data:nth-child(odd) {
    background-color: #979797; /*00825F*/
    border-bottom: 1px solid #000;
    padding: 5px;
    width: 230px;
    vertical-align: top;
    color: #fff;
    text-align: center;
}
/*  Define the background color for all the EVEN table columns  */
.tb #date_data:nth-child(even) {
    background: #a2a6a9; /*02966e*/
    border-bottom: 1px solid #000;
    padding: 5px;
    width: 230px;
    vertical-align: top;
    color: #fff;
    text-align: center;
}

/*  Define the background color for all the ODD table columns  */
.tb #day_data:nth-child(odd) {
    background: #34495e;
    color: #fff;
}
/*  Define the background color for all the EVEN table columns  */
.tb #day_data:nth-child(even) {
    background: #2c3e50;
    color: #fff;
}

.SchedAddItem {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #bbb;
    display: none;
    text-align: center;
    overflow: visible;
    padding: .3em 1em;
    margin-top: 15px;
    text-decoration: none;
    font-family: 'Open Sans';
    font-size: 11px;
    font-weight: normal;
    text-shadow: 0 1px 1px rgba(255,255,255,0.75);
    color: #000 !important;
    white-space: nowrap;
    cursor: pointer;
    outline: 0;
    background-color: #e6e6e6;
    background-repeat: no-repeat;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
    -webkit-transition: .1s linear all;
    -moz-transition: .1s linear all;
    -ms-transition: .1s linear all;
    -o-transition: .1s linear all;
    transition: .1s linear all;
    zoom: 1;
    background-image: linear-gradient(#fff,#fff 25%,#e6e6e6);
}

    .SchedAddItem a {
        color: #000;
    }

        .SchedAddItem a:hover {
            color: #000 !important;
            text-decoration: underline;
        }

.tb .SchedGreen {
    background: #0c5635;
}

.tb .SchedRed {
    background: #d9534f;
}

.tb .SchedWhite {
    background: #fff;
}

.tb .SchedBlue {
    background: #226cb4;
}

.tb .SchedOrange {
    background: #f0ad4e;
}

.tb .SchedYellow {
    background: rgba(255, 212, 0, 0.67);
}

.tb .SchedGrey {
    background: rgba(0, 101, 26, 0.39);
}

.tb .SchedPurple {
    background: #53395f;
}

.tb .SchedCarbon {
    background: #333;
}

.tb .SchedLightGreen {
    background: #22b485;
}

.tb .SlotDbl {
    padding: 25px !important;
    min-height: 100px;
    font-weight: bold;
    border-left: 4px solid #FFf;
}

.tb .Rcvd {
    opacity: 0.5;
}

.tb .SchedPad {
    position: relative;
    width: 80%;
    padding: 10px;
    margin: 0 auto;
    margin-bottom: -10px;
    font-size:10px;
}

.TMSAs1Ind {
    position: absolute;
    bottom: 0px;
    z-index: 1;
    font-size: 9px;
    margin-left: -6px;
    padding-top: 1px;
}

.TMSAs2Ind {
    /*position: absolute;
    left: 0px;
    bottom: 0px;
    width: 12px;
    height: 12px;
    background: #27bb3b;
    z-index: 1;
    border-radius: 50%;*/
    position: absolute;
    bottom: 0px;
    z-index: 1;
    font-size: 9px;
    margin-left: -6px;
    padding-top: 1px;
}

.NonHazInd {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 12px;
    height: 12px;
    background: #f0ad4e;
    z-index: 1;
    border-radius: 50%;
}

.HazInd {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 12px;
    height: 12px;
    background: #d9534f;
    z-index: 1;
    border-radius: 50%;
}

.GuidInd {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 12px;
    height: 12px;
    z-index: 1;
}

.VendorLabel {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 30%;
    height: 20px;
    background: #f0ad4e;
    z-index: 1;
    text-align: center;
    font-size: 14px;
    color: black;
    cursor: default;
}

.ProfileWeeklyLabel {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 80%;
    height: 12px;
    z-index: 1;
    font-size: 10px;
    color: white;
    text-align: left;
}

.RequestedInd {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 12px;
    height: 12px;
    background: #f0ad4e;
    z-index: 1;
    border-radius: 50%;
}

.ReleasedInd {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 12px;
    height: 12px;
    background: #25afe6;
    z-index: 1;
    border-radius: 50%;
}

.ScheduledInd {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 12px;
    height: 12px;
    background: #2ebf00;
    z-index: 1;
    border-radius: 50%;
}

.TransInd {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 15px;
    height: 20px;
    background: #FFF;
    color:crimson;
    z-index: 1;
}

.RequestedIndLegend {
    right: 0px;
    top: 0px;
    width: 12px;
    height: 12px;
    background: #f0ad4e;
    z-index: 1;
    border-radius: 50%;
    position: inherit;
    display: inherit;
}

.ReleasedIndLegend {
    right: 0px;
    top: 0px;
    width: 12px;
    height: 12px;
    background: #25afe6;
    z-index: 1;
    border-radius: 50%;
    position: inherit;
    display: inherit;
}

.ScheduledIndLegend {
    right: 0px;
    top: 0px;
    width: 12px;
    height: 12px;
    background: #2ebf00;
    z-index: 1;
    border-radius: 50%;
    position: inherit;
    display: inherit;
}

.ui-tooltip {
    background: rgba(0, 0, 0, 0.70) !important;
    color:#FFF !important;
}
/*
    BADGES
*/
    .badge {
    font-size: 14px;
}

.badge-primary {
    background-color: #226cb4 !important;
}

.badge-success {
    background-color: #0c5635 !important;
}

.badge-warning {
    background-color: #f0ad4e !important;
}

.badge-info {
    background-color: #5bc0de !important;
}

.badge-danger {
    background-color: #d9534f !important;
}

.badge-carbon {
    background-color: var(--color-neutral-0) !important;
}

.badge-lightgreen {
    background-color: #22b485 !important;
}

.badge-color-primary-0 {
    background-color: var(--color-primary-0) !important;
}

.notification {
    padding: 7px;
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 16px;
}

.alert-notification {
    padding: 7px;
    display: inline-block;
    margin-bottom: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 16px;
}

.info {
    color: #3a87ad;
    background-color: #d9edf7 !important;
    border-color: #bce8f1;
}

.success {
    color: #468847;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.warning {
    color: #c09853;
    background-color: #fcf8e3;
    border-color: #fbeed5;
}

.danger {
    color: #b94a48;
    background-color: #f2dede;
    border-color: #eed3d7;
}

.hide {
    display: none !important;
}

.show {
    display: inline-block !important;
}

.show-block {
    display: block !important;
}

.inline-block{
    display:inline-block !important;
}


.text-link {
    color: var(--color-links-0) !important;
}

.text-link-del {
    color: #b94a48 !important;
}

.dashboard-container {
    height: 350px;
    padding: 7px;
    background: #fff;
    margin: 10px 10px 0 0;
    min-height: 300px;
    overflow-y: auto;
}

.RadMenu .rmGroup .rmLink, .RadMenu .rmSlide .rmGroup .rmTemplate {
    padding: 3px 30px !important;
}

.btn-success {
    background-color: var(--color-primary-0) !important;
    border-color: #4d73a7 !important;
}

.btn-success-cei {
    background-color: var(--color-primary-0) !important;
    border-color: #4d73a7 !important;
}

    .btn-success:hover, .btn-success:focus, .btn-success:active {
        background-color: #4d73a7 !important;
    }

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    opacity: 0.8;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    min-height: 100%;
    width: 100%;
}

.loading {
    padding-top: 15%;
    font-family: 'Open Sans';
    font-size: 10pt;
    border: 5px solid #67CFF5;
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    background-color: gray;
    opacity: .5;
    z-index: 999;
}

.callout {
    padding: 20px;
    margin-bottom:var(--spacing-medium-padding);
    border: 1px solid #bdc3c7;
    border-left-width: 5px;
    border-radius: 3px;
    background: white;
}

.callout-clean {
    padding: 20px;
    margin: 20px 0;
    border: 0px !important;
    border-left-width: 5px;
    border-radius: 3px;
    background: white;
    border-left-color: #fff;
}

.callout-clean-noborder {
    padding: 20px !important;
    background: white !important;
}
.callout-clean-noborder .table{
    background-color: #fff !important;
}
.bg-white{
    background-color: #fff !important;
}


.callout-details {
    border-left-color: var(--color-primary-1);
}

.bg-core {
    background-color: #f7ecb5;
}

.bg-Alert {
    background: #d9534f;
}

/*This will create a 5 col layout with Bootstrap for the search grid*/

.row-rt {
    margin-left: 0px !important;
}

.row {
    margin-bottom:7px !important;
}

.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 30px;
    margin-bottom: 10px;
}

.col-xs-15 {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-15 {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-15 {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-15 {
        width: 20%;
        float: left;
    }
}

.mainUploadButton {
    padding-left: 15px;
}

.RadUpload_Bootstrap .ruButton {
    width: 100% !important;
}

.RadUpload_Bootstrap ruBrowse.ruButtonFocus, .RadUpload_Bootstrap .ruBrowse.ruButtonFocus {
    background-color: #ccc;
}

.row .RadUpload .ruStyled .ruBrowse {
    height: 35px;
    width: 120px;
    margin-left:0;
}

span.editable-click, span.editable-click:hover {
    cursor: pointer;
    text-decoration: none;
    border-bottom: dashed 1px #0088cc;
}

/* angular grid ui flavors */
.ui-grid-cell-focus {
    background-color: var(--color-primary-1) !important;
    color: white;
}

.ui-grid-header-cell {
    background: var(--color-primary-0) !important;
    color: white !important;
}

/*.RadMenu { /*position:inherit !important; } */


#ctl00_MainMenu {
    position: inherit !important;
}


/* alert notifications */
.notification-hub {
    max-height: 300px;
    width: 325px;
    padding: 0px 5px 5px 5px;
    overflow-x: hidden;
    overflow-y:auto;
}

.notification-hub-commands {
    background: #f7f9fe;
    height: 45px;
    padding: 4px;
}

.alert-msg-container {
    position: relative;
    padding: 7px;
    font-size: 10pt;
    font-family: 'Open Sans';
    background-color: #eaeaea;
    border: .5px solid #fff;
    margin: 5px 0 5px 0;
    border-radius: 10px;
}

.dismiss-msg {
    display: none;
    text-align: center;
    overflow: visible;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 0px !important;
}

.alert-msg-container:hover .dismiss-msg {
    display: block;
}

.col-lg-4 {
    top: 0px !important;
}

.RadUpload {
    width: 100% !important;
}

.requiredLabel:after {
    color: red;
    content: " *";
}

.requiredLabel-double:after {
    color: red;
    content: " **";
}

.verifiedAddress, .verifiedAddressOther, .verifiedAddressTemp {
    color: green;
    font-size: 1.2em;
    display: none
}

.unverifiedAddress, .unverifiedAddressOther, .unverifiedAddressTemp {
    color: red;
    font-size: 1.2em;
    display: none;
}

#verifiedAddresschck, #verifiedAddresschckOther, #verifiedAddresschckTemp, .verifyAgree, .verifyAgreeOther, .verifyAgreeTemp {
    display: none;
}

    .verifyAgree label, .verifyAgreeOther label {
        display: inline;
    }


.imageLink {
}

    .imageLink:active, .imageLink:focus, .imageLink:hover, .rgHeaderOver {
        border: 1px dotted grey;
    }
.RadInput .rcSelect {
    /*width: 25px;*/
}

.RadDateTimePicker .RadInput .rcSelect {
   /* width: 65px !important;*/
}

.panel-correction {
    padding-left: 15px;
    padding-bottom: 10px;
}

.scanContainer {
    min-width: 460px;   
}

    /*.scanContainer .RadUpload_Bootstrap .ruSelectWrap .ruButton, .scanContainer .RadUpload_Bootstrap .ruSelectWrap .ruFakeInput {
        width: 100px !important;
        height: 30px;
    }*/

/* css switch/slider control */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: var(--color-primary-1);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--color-primary-1);
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.col-lg-2 .RadInput, .RadInputMgr {
    width: 100% !important;
}

.col-lg-3 .RadInput, .RadInputMgr {
    width: 100% !important;
}

.RadAutoCompleteBox_Bootstrap .racEmptyMessage {
    width: 100% !important;
}
.searchControl {
    width: 100% !important;
}

.RadGrid_Bootstrap .rgCommandCell a{
    /*color:#FFF !important;*/
}

.RadMenu_Bootstrap .rmRootGroup .rmRootLink {
    font-weight: bold;
}

.racTokenList.racTokenList:after {
    font-family: 'FontAwesome';
    color: #6b6b6b;
    position: absolute;
    right: 20px;
    content: "\f002";
}

.allCards {
    overflow: hidden;
}

.restricted-div {
    float: left;
    margin-left: 20px;
    margin-bottom: 20px;
    width: 350px;
}

.card-container {
    width: 100%;
    min-width: 250px;
    min-height: 400px;
    background: #FFFFFF;
    border: 0.25px solid #BDC3C7;
    box-sizing: border-box;
    box-shadow: 0px 2px 6px #E3E3E3;
    border-radius: 5px;
}

.card-small {
    min-height: 200px !important;
}

.card-container .card-title {
    display: inline-block;
    background: var(--color-neutral-0);
    border-radius: 5px 5px 0px 0px;
    min-height: 30px;
    width: 100%;
}

.card-body {
    padding: 20px;
    font-size: 15px;
}

.card-container .card-title h4 {
    color: #fff !important;
    padding-left: 20px;
    margin-top: 30px;
    font-size: 16px;
    font-family: 'Open Sans';
    font-weight: bold;
    margin-bottom: 5px;
}

h4 {
    font-size: 24px;
}

.card-nested-container {
    width: 100%;
    min-width: 250px;
    min-height: 400px;
    background: #FFFFFF;
    border: 0.25px solid #BDC3C7;
    box-sizing: border-box;
    box-shadow: 0px 2px 6px #E3E3E3;
    border-radius: 5px;
    margin-bottom: 17px;
}

.card-nested-title {
    width: 100%;
    border-bottom: 0.25px solid #666666;
}

    .card-nested-title h4 {
        color: #333;
        padding-left: 20px;
        margin-top: 10px;
        font-size: 16px;
        font-family: 'Open Sans';
        font-weight: bold;
        margin-bottom: 5px;
    }

.textScaleID {
    display: none;
}

.textToggle {
    display: none;
}

.labelToggle {
    display: block;
}

.dot {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    float: right;
    display: none;
}

.RadGrid_Bootstrap .rgCancel {
    background-position: -16px -2810px !important;
}

.RadGrid_Bootstrap .rgUpdate {
    background-position: -16px -2610px !important;
}
.RadButton_Bootstrap {
    font-family: 'Open Sans' !important;
}

.RadAutoCompleteBox_Bootstrap {
    font-family: 'Open Sans' !important;
}

.RadAutoCompleteBoxPopup_Bootstrap {
    font-family: 'Open Sans' !important;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #7ac142;
    }
}

.lds-bars {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 40px;
}

    .lds-bars div {
        display: inline-block;
        position: absolute;
        left: 6px;
        width: 13px;
        background: var(--color-primary-0);
        animation: lds-bars 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    }

        .lds-bars div:nth-child(1) {
            left: 6px;
            animation-delay: -0.24s;
        }

        .lds-bars div:nth-child(2) {
            left: 26px;
            animation-delay: -0.12s;
        }

        .lds-bars div:nth-child(3) {
            left: 45px;
            animation-delay: 0;
        }

@keyframes lds-bars {
    0% {
        top: 6px;
        height: 51px;
    }

    50%, 100% {
        top: 19px;
        height: 26px;
    }
}
}

#readAllStatus {
    font-size: 20px;
    font-weight: bold;
}

/*******************************
* MODAL AS LEFT/RIGHT SIDEBAR
* Add "left" or "right" in modal parent div, after class="modal".
* Get free snippets on bootpen.com
*******************************/

.modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 50%;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
}

.modal.right .modal-body {
    padding: 15px 50px 80px;
    bottom: 65px;
    top: 50px;
    overflow-y: auto;
    position: fixed;
    width:100%;
}

.modal-small {
    width: 30% !important;
}

/*Right*/
.modal.right.fade .modal-dialog {
    right: -320px;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.in .modal-dialog {
    right: 0;
}

/* ----- MODAL STYLE ----- */
.modal-content {
    border-radius: 0;
    border: none;
}

.modal-header {
    border-bottom-color: #EEEEEE;
    background-color: var(--color-primary-0);
    top: 0px;
    position: fixed;
    width: 100%;
    height: 50px;
}

.modal-footer {
    position: fixed;
    bottom: 0px;
    width: 100%;
}

.modal-title {
    color: #fff !important;
}

.close {
    color: #fff !important;
    opacity: 1.0 !important;
}

.popout-bubble {
    position: relative;
    background: #efeeef;
    border: .5px solid #efeeef;
    border-radius: .5em;
    margin-top: 10px;
    padding: 8px;
    box-shadow: 0 1px 10px rgba(0,0,0,.3), 0 0 1px 0 rgba(0,0,0,.3);
}

    .popout-bubble:after {
        content: '';
        position: absolute;
        top: 0;
        left: 35%;
        width: 0;
        height: 0;
        border: 20px solid transparent;
        border-bottom-color: #efeeef;
        border-top: 0;
        margin-left: -20px;
        margin-top: -20px;
    }

    /* custom scrollbar */

/* width */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar:horizontal {
    height: 14px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #bdc3c7;
    border-radius: 7px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #bdc3c7;
    border-radius: 7px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #333;
    }



.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid var(--color-primary-0);
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* rounded buttons and tag toggles */
.btn-round-2x {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: inline-block;
}

.btn-round {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    display: inline-block;
    text-align:center;
}

.btn-round i {
    vertical-align:middle;
}

.btn-round:hover {
    background-color: rgba(38, 67, 108, 0.39) !important;
    cursor: pointer;
    color:#FFF;
}

.btn-round:active {
    background-color: #888 !important;
    color: #fff !important;
    cursor: pointer;
}

.btn-rounded {
    border-radius: 50px;
    display: inline-block;
    padding: 7px;
    min-width:70px;
}

.btn-outline-primary {
    color: var(--color-primary-0);
    background-color: transparent !important;
    border: 1px solid transparent !important;
    border-color: var(--color-primary-0) !important;
}

.btn-rounded:hover {
    background-color: #efeeef !important;
    cursor:pointer;
}

.btn-rounded:active {
    background-color: rgba(38, 67, 108, 0.84) !important;
    color:#fff !important;
    cursor: pointer;
}

.btn-icon {
    height: 30px;
    width: 30px;
    display: inline-block;
    text-align: center;
}

    .btn-icon:hover {
        cursor: pointer;
        height: 30px;
        width: 30px;
        border-bottom: solid 2px;
        border-bottom-color: var(--color-primary-0);
        display: inline-block;
        text-align: center;
    }

.tonnageLabel {
    font-size: .9em;
}
.addToSchedule {
    width: 100%;
}
/*Vertex MJ - 08082021 table overlap on add schedule model pupup*/
.addEditTransNotes {
    width: 55%;
    float: right;
}
.modalScheduledInfo {
    width: 40%;
    float: left;
}
.messageBox {
    padding:5px;

}

.dropdown-menu .btn{
    text-align:left !important;
}

/*
    color-alerts
*/
.color-alerts-success {
    background-color: #26B042;
}

/*
    2020 edit profile css
*/
.atm-entity-header {
    padding: 15px 20px 15px 20px;
    margin-bottom: var(--spacing-medium-padding);
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    background: var(--color-neutral-4);
    border-bottom: 3px solid;
    border-bottom-color: var(--color-neutral-4);
    position: relative;
}

    .atm-entity-header .btn-group {
        bottom: 10px;
        right: 10px;
        position: absolute;
    }

.atm-entity-header-title {
    font-weight: bold;
    margin-top: 0px;
}

.atm-entity-header h3 {
    color: var(--color-primary-1) !important;
}

    .atm-entity-header h5 {
    font-weight: bold !important;
    color: var(--color-neutral-0) !important;
}
.atm-entity-actions {
    padding: 10px 20px 10px 20px;
    margin-top: -10px;
    margin-bottom: var(--spacing-medium-padding);
    background: var(--color-neutral-1);
}

    .atm-entity-actions a {
        color: var(--color-neutral-4);
        font-weight: bold;
        margin-right: var(--spacing-xlarge-padding);
        text-decoration: underline;
    }

.atm-col {
    width: 9%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    top: 28px;
    left: 13px;
    float: left;
}

.sticky {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    border-top: 0;
}

#topBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--color-neutral-1);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
}

    #topBtn:hover {
        background-color: var(--color-neutral-2);
    }

.editProfileMain {
}

    .editProfileMain .nav-tabs {
        font-size:16px;
    }

    .editProfileMain a.nav-link.active, .editProfileMain a.nav-link:hover {
        /* border-bottom-color: blue; */
        border-bottom: 3px var(--color-primary-1) solid;
    }

    .editProfileMain .nav > li > a {
        position: relative;
        display: block;
        padding: 7px 13px;
    }

    .editProfileMain #Details .sectionLinks {
        padding-top: 10px;
        font-weight: bold;
        font-size: 16px;
    }
    .editProfileMain .sectionLinks a:link, .editProfileMain .sectionLinks a:visited, .editProfileMain .sectionLinks a:active, .editProfileMain .sectionLinks a:hover, a:focus {
        color: #337ab7;
    }

    .editProfileMain .profileFormSection {
        background-color: #fff;
        padding: 1px 10px 5px 17px;
        border-radius: 5px;
        margin-top: 10px;
        border: 1px solid var(--color-neutral-4);
    }

    /*Vertex MJ - 08042021 - added word-break and overflow to resolve content overlap*/
    .editProfileMain .epaCodes {
        padding-top: 10px;
        padding-bottom: 10px;
        background-color: lightblue;
        width: 100%;
        min-height: 25px;
        max-height: 100px;
        word-break: break-word;
        overflow: auto;
    }
    .editProfileMain .modal.right .modal-body {
        padding-top: 100px;
    }

    .editProfileMain .RadGrid_Bootstrap .rgEditRow .btn-danger {
        color: white !important;
    } 

.editProfileMain .WasteChar .RadInput {
    width: 100px !important;
}

    .editProfileMain .WasteChar .rcbLayers input {
       /* margin-top: var(--spacing-medium-padding);*/
    }

.profileVerticalSpacing {
    margin-top: 10px;
}

    .editProfileMain .WasteChar .form-inline label, .CBSpacing label {
        padding-left: 10px;
        padding-right: 20px;
    }
    /*.editProfileMain .WasteChar .form-inline div {
        border-right: 1px solid lightgrey;
    }*/

    .editProfileMain .WasteChar .checkboxTable {
    }

    .editProfileMain .WasteChar .checkboxTable tr{

    }
    .editProfileMain .WasteChar .checkboxTable td {
        padding-left: 2%;
    }
    .editProfileMain .WasteChar .checkboxTable label {
        padding-left: 8px;
    }

        .editProfileMain .WasteChar .checkboxTable label {
            padding-left: 8px;
        }

    .editProfileMain .Benzene input[type="radio"], .editProfileMain .otherWaste input[type="radio"], .editProfileMain .metalSection [type="radio"] {
        margin-left: 10px;
    }

    .editProfileMain .Benzene .mgyear {
        margin-left: 30px;
    }

    .editProfileMain .Benzene #benzeneDisable, .editProfileMain .Benzene .sicHide, .editProfileMain .otherWaste .disposalRow, .editProfileMain .otherWaste .UTSRow, .editProfileMain .otherWaste .polyRow {
        display: none;
    }

    .editProfileMain .otherWaste .RadComboBox {
        width:300px;
    }



.table-form td {
    padding-left: 30px !important;
    padding-right: 10px !important;
    padding-top: 7px !important;
    mid-width: 120px !important;
}

.genAdd td {
    padding-right: 10px !important;
    padding-top: 7px !important;
    width: 45px !important;
}
/*Start: Vertexcs addition of css */
/*vertexcs-m-07152021 increase height of popup title bar*/
.RadWindow_Bootstrap .rwTitleBar {
    height: 35px;
}
.RadCalendar .rcViewSel {
    display: none !important;
}

.RadCalendar .rcRow th {
    display: none !important;
}

.RadCalendar .rcViewSel {
    display: none !important;
}

.RadCalendar .rcRow th {
    display: none !important;
}


/*End: Vertexcs addition of css */

/* Start jquery autocomplete custom css */

.ui-autocomplete {
    max-height: 200px;
    max-width: 600px;
    overflow-y: auto;
    font-family: 'Open Sans' !important;
    font-weight: 700;
    text-transform: uppercase;
}
.ui-autocomplete-highlight {
    text-transform: uppercase;
    background-color: #FFFFAF;
    color: black;
    font-weight: bold;
}
    .ui-autocomplete .ui-menu-item {
        padding: 2px;
    }

        .ui-autocomplete .ui-menu-item:hover {
            background-color: var(--color-primary-1) !important;
            color: white;
            border: none;
        }

        .ui-autocomplete .ui-menu-item a:hover {
            color: white;
            text-decoration: none;
            background-color: var(--color-primary-1) !important;
            border: none;
        }


.ui-autocomplete-highlight-zeroindex {
    text-transform: uppercase;
    padding: 2px !important;
    color: #FFA500 !important;
    font-weight: bold;
    border-bottom: 2px dotted grey !important;
    font-style: italic;
    margin-left: 6px !important;
    margin-right: 6px !important;
}

    .ui-autocomplete-highlight-zeroindex a {
        color: #FFA500 !important;
    }

.inner-addon {
    position: relative;
    height: 20px;
}
    /* style glyph */
    .inner-addon .glyphicon {
        position: absolute;
        padding: 6px;
        pointer-events: none;
    }

.right-addon {
    width: 100% !important;
    position: absolute;
}
    /* align glyph */
    .right-addon .glyphicon {
        right: 0px;
    }

/* jquery autocomplete custom css */

li.error_message {
    width: auto;
    list-style-type: none;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 25px;
    margin: 0px;
    background-image: url('../images/icon-alert-error.png');
    background-position-x: left;
    background-position-y: top;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-color: transparent;
}
/* jquery autocomplete custom css */

/*start - bootstrap model custom loader command confirm*/
#modellayout, .modelCustomLayout {
    position: absolute;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0,0,0,0.3);
}

.model-layout {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner-model-layout {
    width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

.confirm-model-layout {
    border: 1px solid #BDC3C7;
    background: #fff;
}

    .confirm-model-layout .header {
        width: 100%;
        height: 45px;
        background-color: #333;
        color: #fff;
        padding: 10px;
        font-size: 20px;
    }

    .confirm-model-layout .message {
        width: 100%;
        height: 100px;
        padding: 15px;
        font-family: Arial, sans-serif;
        font-size: 14px;
        line-height: 1.42857143;
        color: #333;
        overflow-y: auto;
    }

    .confirm-model-layout .footer {
        width: 100%;
        height: 45px;
        color: #333;
        padding: 10px 18px 0px 0px;
        font-size: 12px;
        border-top: 1px solid;
    }

@keyframes sp-anime {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}
/*end - bootstrap model custom loader command confirm*/

/*start - ag-grid required css*/
.ag-aria-description-container {
    display: none !important;
}
/*end  - ag-grid required css*/

/*display message on page top*/
.chip {
    border-radius: 0.6rem;
    background-color: lightyellow;
    border: 1px solid orange;
    font-family: Arial, Helvetica, sans-serif;
    padding: 2px;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2), 0 3px 0px 0 rgba(0, 0, 0, 0.19);
}