/*

CSS SECTIONS
PLEASE TRY AND ADD TO EXISTING SECTIONS OR GROUP
CSS TOGETHER IN NEW GROUPS TO MAKE IT EASIER TO FIND

CALENDAR - CALENDER CSS FOR CALENDAR CONTROL
MAINTENANCE - CSS FOR MAINTENANCE SCREENS
FORM TITLES (List View, Gantt View etc) - CSS TO CONTROL PAGE TITLE BANNER
FLOATING MENU BUTTON - BOTTOM RIGHT
DASHBOARDS - CSS FOR MAIN DASHBOARDS
HEADER ICONS - HEADER ICONS ON TOP RIGHT OF SCREEN (SETTINGS, LOGOUT , MIN MENU)
STATUS BOXES -
BUTTONS - SYSTEM WIDE BUTTONS
PANEL HEADERS
MAIN NAV PANEL - MINIFIED NAV PANEL
MAIN NAV PANEL - STANDARD NAV PANEL
LOGIN SCREEN
SELECT2
DATEPICKER
DATATABLES
TASK DETAILS

TO BE CLASSIFIED - THESE ARE ITEMS THAT ARE NOT YET GROUPED

 */

:root {
    --text-light: #E6E6E6;
    --default-text-colour: #666;
    --default-menu-spacing: .8rem;
}

/******************/
/* BODY           */
/******************/

.header-function-fixed:not(.nav-function-top) .page-content {
    margin-top: 0!important;
}

.page-header {
    display: none;
}

.body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: .8125rem;
    font-weight: 400;
    line-height: 1.27;
    color: var(--default-text-colour);
    text-align: left;
}

.page-content {
    color: var(--default-text-colour);
}

.noscrollbar {
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
}

.noscrollbar::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

/******************/
/* MAIN NAV PANEL */
/******************/

/* Override for Logo (this is the setup for AltLogic Logo and will be overrridden in config for others */

.page-logo {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.page-logo img {
    width: auto;
    height: 100px;
    margin-left: 0px;
    margin-top: 10px;
}

/* Spacing of Nav Items */

.nav-menu li a {
    padding: var(--default-menu-spacing) 2rem;
}

.nav-menu li a:focus {
    color: var(--menu-text-color) !important;
}

/* Spacing of Nav Opened Items (Sections) */

.nav-menu li > ul li a {
    /*padding: .3125rem 2rem .3125rem 4rem;*/
    padding: var(--default-menu-spacing) 2rem var(--default-menu-spacing) 4rem;
}

.nav-menu li > ul li a:hover {
    color: #fff;
    background-color: rgba(0, 0, 0, .1);
}

.nav-menu li a:hover {
    color: #fff;
    background-color: rgba(0, 0, 0, .1);
}

.nav-function-minify .page-logo {
    display: none;
}

/* Override Gradients for Left Nav Panel (don't want them) */
.page-logo, .page-sidebar, .nav-footer, .bg-brand-gradient {
    background-image: -webkit-gradient(linear, right top, left top, from(transparent), to(transparent));
    background-image: linear-gradient(270deg, transparent, transparent);
    background-color: var(--menu-bg-color);
}

/* Background Colour of Left Nav Panel */
.primary-nav {
    background-color: var(--menu-bg-color);
}

/* Background Colour of Opened / Selected Section on Left Nav Panel */
.nav-menu li > ul {
    background-color: var(--menu-bg-color);
}

/* Menu Item Text */
.nav-menu li > ul li a {
    color: var(--menu-text-color);
}

.nav-menu li a > .nav-link-text {
    color: var(--menu-text-color);
}

/* Menu Section Item Text */
.nav-menu li a {
    color: var(--menu-text-color);
}

.nav-menu li.open > a {
    color: var(--menu-text-color);
}

/* Selected Meny Item */
.nav-menu ul .active > a {
    color: var(--menu-text-selected-color) !important;
    position: relative;
}

/* Selected Section Box (box to left of section) */
.nav-menu li.active > a {
    color: var(--menu-text-selected-color);
    background-color: rgba(255, 255, 255, .04);
    -webkit-box-shadow: inset 3px 0 0 var(--menu-text-selected-color);
    box-shadow: inset 3px 0 0 var(--menu-text-selected-color);
    font-weight: 400;
}

.nav-menu li a:hover {
    color: #fff;
    background-color: rgba(0, 0, 0, .1) !important;
}

/* Selected Meny Indicator (DOT) */
.nav-menu li.active:not(.open) > a:before {
    content: '\f413';
    font-family: nextgen-icons;
    position: absolute;
    top: calc(50% - 5px);
    right: 11px;
    font-size: 7px;
    height: 10px;
    width: auto;
    color: var(--menu-text-selected-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

/*  Hover Menu Section Item Text */
.nav-menu li > ul li a:hover {
    color: var(--menu-text-selected-color);
}

/*  Menu Item Icon */
.nav-menu li a > .ni, .nav-menu li a > [class*="fa-"] {
    color: var(--menu-icon-color);
}

/*  Hover Menu Item Icon */
.nav-menu li a:hover > .ni, .nav-menu li a:hover > [class*="fa-"] {
    color: var(--menu-icon-hover-color);
}

/*  Hover Menu Section Item Icon */
.nav-menu li.active > a:hover > .ni, .nav-menu li.active > a:hover > [class*="fa-"] {
    color: var(--menu-icon-hover-color);
}

.nav-menu b.collapse-sign {
    color: var(--menu-text-selected-color);
}

/* NAVIGATOR LEFT DOT */
.mod-nav-link:not(.nav-function-top):not(.nav-function-minify):not(.mod-hide-nav-icons) ul.nav-menu:not(.nav-menu-compact) > li > ul > li a::after {
    content: "";
    /* display: block; */
    display: none;
    position: absolute;
    width: .4rem;
    height: .4rem;
    background-color: var(--text-light);
    left: 2.4rem;
    top: calc(50% - .3rem);
    border: 0px solid #333;
    border-radius: 50%;
    z-index: 1;
}

/* NAVIGATOR LEFT LINE */
.mod-nav-link:not(.nav-function-top):not(.nav-function-minify):not(.mod-hide-nav-icons) ul.nav-menu:not(.nav-menu-compact) > li > ul::before {
    content: "";
    /*display: block;*/
    display: none;
    position: absolute;
    z-index: 1;
    left: 2.5625rem;
    top: 44px;
    bottom: 0;
    border-left: 1px solid var(--text-light) !important;
}

.nav_sub_menu_icon {
    display: none;

}

.nav_sub_menu {

}

.nav_sub_menu_item {

}



/*****************************/
/* MAIN NAV PANEL - MINIFIED */
/*****************************/

/* override dark grey box around minified button */

.page-header {
    background-color: var(--header-bg-color);
}

.page-logo {
    background-color: var(--header-bg-color);
}

.nav-function-minify:not(.nav-function-top) .page-sidebar {
    z-index: 999999;
}

.nav-function-minify:not(.nav-function-top) .page-header [data-class="nav-function-minify"] {
    background: var(--header-bg-color);
    border-color: var(--header-bg-color);
    -webkit-box-shadow: inset 0 0 3px 1px rgba(0, 0, 0, 0);
    color: var(--header-bg-color);
}

/* Minified Menu Graphic */

.nav-function-minify:not(.nav-function-top) .page-sidebar .primary-nav .nav-menu > li > a + ul:before {
    content: "\f1c8";
    font-family: nextgen-icons;
    position: absolute;
    font-size: 3.5rem;
    left: -.4125rem;
    color: var(--main-accent-colour);
    z-index: -1;
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    overflow: hidden;
    display: block;
    top: 1rem;
}

/* Minified Menu Popout */

.nav-function-minify:not(.nav-function-top) .page-sidebar .primary-nav .nav-menu > li > a + ul {
    position: absolute;
    width: 13.75rem;
    left: 5.6875rem;
    background-color: var(--main-accent-colour);
    margin-top: -5rem;
    padding-top: 3.75rem;
    border-radius: 4px .5rem .5rem .5rem;
    padding-bottom: 1rem;
    z-index: 1 !important;
}

.nav-function-minify:not(.nav-function-top) .page-sidebar .primary-nav .nav-menu > li > a > .nav-link-text {
    display: none;
    position: absolute;
    text-align: left;
    background: transparent;
    padding-left: 1.375rem;
    color: var(--menu-icon-color);
    top: 0;
    left: 5.6875rem;
    height: 100%;
    width: 13.75rem;
    font-weight: 500;
    margin-top: -1.563rem;
}


/******************/
/* PANEL HEADERS  */
/******************/
.panel-hdr {
    background-color: #F8F8F8;
    color: #232323;
    border-radius: 0px !important;
}

.panel-hdr > h2 {
    color: var(--default-text-colour);
    font-weight: 300;
}

.font-bold-hdr {
    background-color: #F8F8F8;
    font-size: 16px;
    font-weight: 400;
    color: #232323;
}

/******************/
/* BADGES        */
/******************/
.badge-primary {
    background-color: var(--main-accent-colour);
}

/* Show badge on main button when menu is closed */
#menu_open:not(:checked) ~ .menu-open-button .main-button-badge {
    display: inline-block;
}

/* Hide it when open */
#menu_open:checked ~ .menu-open-button .main-button-badge {
    display: none;
}

/* Hide bell badge when menu is closed */
#menu_open:not(:checked) ~ a[data-toggle][title="Notifications"] .bell-badge {
    display: none;
}

/* Show bell badge when menu is open */
#menu_open:checked ~ a[data-toggle][title="Notifications"] .bell-badge {
    display: inline-block;
}

/* Position badges */
.menu-open-button {
    position: relative;
}

.main-button-badge,
.bell-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #dc3545;
    color: white;
    font-size: 0.75rem;
    line-height: 1;
    border-radius: 999px;
    padding: 4px 6px;
    min-width: 18px;
    text-align: center;
    display: none;
    z-index: 10;
}

.badge-large {
    top: -8px!important;
    right: -8px!important;
    font-size: 1.10rem!important;
    min-width: 1.5rem!Important;
    max-width: 3.375rem!important;
    padding: 0 6px;
}

/* Show main button badge when menu is closed */
#menu_open:not(:checked) ~ .menu-open-button .main-button-badge {
    display: inline-block;
}

/* Show bell badge when menu is open */
#menu_open:checked ~ .bell-icon .bell-badge {
    display: inline-block;
}




/******************/
/* BUTTONS        */
/******************/

.btn {

}

.btn-default, .btn-danger, .btn-success {
    border-radius: 0px !important;
    height: 30px;
    min-height: 20px !important;
    padding-top: 5px;
}

/* normal */
.btn-primary {
    border-radius: 0px !important;
    min-height: 20px !important;
    color: #fff !important;
    background-color: var(--main-accent-colour);
    border-color: var(--main-accent-colour);
    background-image: none !important;
    height: 30px;
    padding-top: 5px;
}

@media (max-width: 900px) {

    .btn-ribbon {
        max-width: 60px !important;
        min-width: 60px !important;
    }

    .btn-ribbon-label {
        display: none;
    }
}

.btn-ribbon {
    border-radius: 0px !important;
    min-height: 20px !important;
    color: #fff !important;
    background-color: var(--main-accent-colour);
    border-color: var(--main-accent-colour);
    background-image: none !important;
    height: 30px;
    padding-top: 5px;
    margin-left: 2px;

    min-height: 20px !important;
    min-width: 100px;
    min-height: 20px;

}


/* hover */
.btn-primary:hover {
    border-radius: 0px !important;
    min-height: 20px !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: var(--main-accent-colour);
    border-color: var(--main-accent-colour);
    filter: brightness(90%);
    z-index: 2
}

/* active */
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--main-accent-colour);
    border-color: var(--main-accent-colour);
}

/* focus */
.btn-primary.focus, .btn-primary:focus {
    color: #fff;
    background-color: var(--main-accent-colour);
    border-color: var(--main-accent-colour);
    -webkit-box-shadow: 0 0 0 .2rem rgba(128, 145, 192, .5);
    box-shadow: 0 0 0 .2rem rgba(128, 145, 192, .5);
}


/* normal */
.btn-secondary {
    border-radius: 0px !important;
    min-height: 20px !important;
    color: var(--default-text-colour) !important;
    background-color: #F1F1F1;
    border-color: #DBDBDB;
    background-image: none !important;
    height: 30px;
    padding-top: 5px;

}

/* hover */
.btn-secondary:hover {
    border-radius: 0px !important;
    min-height: 20px !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #F1F1F1;
    border-color: #DBDBDB;
    filter: brightness(90%);
    z-index: 2
}

/* active */
.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show > .btn-secondary.dropdown-toggle {
    color: var(--default-text-colour);
    background-color: #F1F1F1;
    border-color: #DBDBDB;
}

/* focus */
.btn-secondary.focus, .btn-secondary:focus {
    color: var(--default-text-colour);
    background-color: #F1F1F1;
    border-color: #DBDBDB;
    -webkit-box-shadow: 0 0 0 .2rem rgba(128, 145, 192, .5);
    box-shadow: 0 0 0 .2rem rgba(128, 145, 192, .5);
}


.btn-min-width {
    border-radius: 0px !important;
    min-height: 20px !important;
    min-width: 100px;
    min-height: 20px;
}

.btn-max-width {
    max-width: 100px;
}

.btn-min-width_110 {
    border-radius: 0px !important;
    min-height: 20px !important;
    min-width: 110px;
    min-height: 30px;
}

.btn-max-width_110 {
    max-width: 110px;
}

.btn-min-width_120 {
    border-radius: 0px !important;
    min-height: 20px !important;
    min-width: 120px;
    min-height: 30px;
}

.btn-max-width_120 {
    max-width: 120px;
}

.btn-min-width_130 {
    border-radius: 0px !important;
    min-height: 20px !important;
    min-width: 130px;
    min-height: 30px;
}

.btn-max-width_130 {
    max-width: 130px;
}

.btn-min-width_140 {
    border-radius: 0px !important;
    min-height: 20px !important;
    min-width: 140px;
    min-height: 30px;
}

.btn-max-width_140 {
    max-width: 140px;
}

.btn-min-width_150 {
    border-radius: 0px !important;
    min-height: 20px !important;
    min-width: 150px;
    min-height: 40px;
}

.btn-max-width_150 {
    max-width: 150px;
}


.btn_margin_bottom {
    border-radius: 0px !important;
    min-height: 20px !important;
    margin-bottom: 3px;
}

.btn_margin_left {
    margin-left: 3px;
}

.btn_margin_right {
    margin-right: 3px;
}

.btn-small {
    min-width: 40px;
    width: 40px;
}

.btn-device {
    border-radius: 4px !important;
    min-height: 37px !important;
    max-height: 37px !important;
    min-width: 120px;
    color: #fff !important;
    background-color: var(--main-accent-colour);
    border-color: var(--main-accent-colour);
    background-image: none !important;
    height: 30px;
    padding-top: 5px;
}

@keyframes pulse-grow-shrink {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.pulse-button {
    animation: pulse-grow-shrink 0.4s ease-in-out 3; /* 3 pulses */
}

.button-press-hint {
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: var(--main-accent-colour);
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border: 2px solid var(--main-accent-colour);
    z-index: 999;
    text-align: center;
    white-space: nowrap;
    opacity: 0;
    transform-origin: center;
}

.button-press-hint.show {
    animation: button-press-hint-fade-in 0.4s ease forwards;
}

/* Arrow border layer (outer) */
.button-press-hint::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 11px solid var(--main-accent-colour);
    z-index: 0;
}

/* Arrow inner layer (white fill) */
.button-press-hint::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ffffff;
    z-index: 1;
}

/* Animation: fade and scale in */
@keyframes button-press-hint-fade-in {
    from {
        opacity: 0;
        transform: translateX(-50%) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}






/******************/
/* STATUS BOXES   */
/******************/


/* Display for Job / Task Status Boxes - On Route On Site etc/.. */

.status-box {
    min-width: 130px;
    max-width: 130px;
    min-height: 25px;
    max-height: 25px;
    border-radius: .25em;
    /*box-shadow: 2px 2px 2px #888888;   */
}

.status-box-bag-management {
    min-width: 130px;
    max-width: 130px;
    min-height: 30px;
    max-height: 30px;
    border-radius: .30em;
    /*box-shadow: 2px 2px 2px #888888;   */
}

.audit-box {
    min-width: 80px;
    max-width: 80px;
    min-height: 25px;
    max-height: 25px;
    border-radius: .25em;
    /*box-shadow: 2px 2px 2px #888888;   */
}

.audit-box-label {
    color: white !important;
    display: block !important;
    text-align: center !important;
    font-size: 75% !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    border-radius: .25em !important;
    /*text-shadow: 0 0 1px #111318;    */
}

.audit-notes {
    min-width: 30px;
    max-width: 30px;
    min-height: 25px;
    max-height: 25px;
    border-radius: .25em;
    /*box-shadow: 2px 2px 2px #888888;   */
}

.audit-notes-label {
    color: white !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    position: absolute;
    top: 5px;
    left: 10px;
}

.comment-container {
    min-width: 200px;
    background-color: #F3EAADFF;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.comment-container p {
    color: black;
    margin: 0;
    padding: 5px;
}

.message-container {
    min-width: 200px;
    background-color: #E16552;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.message-container p {
    color: black;
    margin: 0;
    padding: 5px;
}


.switch-display-on {
    min-width: 150px;
    max-width: 150px;
    min-height: 25px;
    max-height: 25px;
    background-color: green;
    padding-left: 10px;
    padding-top: 3px;
    color: white;
    border-radius: .25em;
    /*box-shadow: 2px 2px 2px #888888;   */
}

.switch-display-off {
    min-width: 150px;
    max-width: 150px;
    min-height: 25px;
    max-height: 25px;
    background-color: red;
    padding-left: 10px;
    padding-top: 3px;
    color: white;
    border-radius: .25em;
    /*box-shadow: 2px 2px 2px #888888;   */
}

.switch-display-na {
    min-width: 150px;
    max-width: 150px;
    min-height: 25px;
    max-height: 25px;
    background-color: grey;
    padding-left: 10px;
    padding-top: 3px;
    color: white;
    border-radius: .25em;
    /*box-shadow: 2px 2px 2px #888888;   */
}

.status-box-label {
    color: white !important;
    display: block !important;
    text-align: center !important;

    font-size: 75% !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    padding-top: 8px !important;
    border-radius: .25em !important;
    /*text-shadow: 0 0 1px #111318;    */
}

.status-box-label-bag-management {
    color: white !important;
    display: block !important;
    text-align: center !important;

    font-size: 75% !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    padding-top: 10px !important;
    border-radius: .25em !important;
    /*text-shadow: 0 0 1px #111318;    */
}

.task-status-box {
    min-width: 200px;
    max-width: 200px;
    min-height: 60px;
    max-height: 60px;
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
    margin-top: 5px;
    overflow: hidden;
    z-index: 1;
    border-radius: .25em;
    /*box-shadow: 2px 2px 2px #888888;   */
}

.task-status-box-line {
    position: relative;
    color: white !important;
    cursor: default;
}

.task-status-box-line-left {
    position: absolute;
    width: 100%;
    text-align: left;
    padding-left: 2px;
    z-index: 99;
    color: white;
}

.task-status-box-line-right {
    position: absolute;
    width: 100%;
    text-align: right;
    padding-right: 2px;
    z-index: 100;
    color: pink;
}

.task-status-box_secondary {
    min-width: 200px;
    max-width: 200px;
    min-height: 60px;
    max-height: 60px;
    display: inline-block;

    border-left-style: solid;
    border-left-color: red;
    border-left-width: 8px;

    margin-right: 15px;
    margin-bottom: 10px;
    margin-top: 5px;
    overflow: hidden;
    z-index: 1;
    border-radius: .25em;

    /*box-shadow: 2px 2px 2px #888888;   */
}

.task-status-box-wide_secondary {
    min-width: 200px;
    max-width: 400px;
    min-height: 60px;
    max-height: 60px;
    display: inline-block;

    border-left-style: solid;
    border-left-color: red;
    border-left-width: 8px;

    margin-right: 15px;
    margin-bottom: 10px;
    margin-top: 5px;
    overflow: hidden;
    z-index: 1;
    border-radius: .25em;

    /*box-shadow: 2px 2px 2px #888888;   */
}

.task-status-box_hassecondary {
    min-width: 200px;
    max-width: 200px;
    min-height: 60px;
    max-height: 60px;
    display: inline-block;

    border-left-style: solid;
    border-left-color: green;
    border-left-width: 8px;

    margin-right: 15px;
    margin-bottom: 10px;
    margin-top: 5px;
    overflow: hidden;
    z-index: 1;
    border-radius: .25em;

    /*box-shadow: 2px 2px 2px #888888;   */
}

.task-status-box-wide_hassecondary {
    min-width: 200px;
    max-width: 200px;
    min-height: 60px;
    max-height: 60px;
    display: inline-block;

    border-left-style: solid;
    border-left-color: green;
    border-left-width: 8px;

    margin-right: 15px;
    margin-bottom: 10px;
    margin-top: 5px;
    overflow: hidden;
    z-index: 1;
    border-radius: .25em;

    /*box-shadow: 2px 2px 2px #888888;   */
}


.task-status-box-small {
    min-width: 100px;
    max-width: 100px;
    min-height: 50px;
    max-height: 50px;
    /*display: inline-block;   */
    margin-right: 5px;
    margin-bottom: 5px;
    margin-top: 0px;
    overflow: hidden;
    z-index: 1;
    border-radius: .25em;
    /*box-shadow: 2px 2px 2px #888888;   */
}

.highlight-box {
    padding-right: 5px;
    margin-top: 0px;
    overflow: hidden;
    z-index: 1;
    border-radius: .25em;
}

.task-status-box-small-wide {
    min-width: 180px;
    max-width: 180px;
    min-height: 75px;
    max-height: 70px;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
    margin-top: 0px;
    overflow: hidden;
    z-index: 1;
    border-radius: .25em;
    /*box-shadow: 2px 2px 2px #888888;   */
}

.task-status-box-small_secondary {
    min-width: 100px;
    max-width: 100px;
    min-height: 50px;
    max-height: 50px;
    display: inline-block;

    border-left-style: solid;
    border-left-color: red;
    border-left-width: 8px;

    margin-right: 5px;
    margin-bottom: 5px;
    margin-top: 0px;
    overflow: hidden;
    z-index: 1;
    border-radius: .25em;

    /*box-shadow: 2px 2px 2px #888888;   */
}

.task-status-box-small-wide_secondary {
    min-width: 180px;
    max-width: 180px;
    min-height: 75px;
    max-height: 70px;
    display: inline-block;

    border-left-style: solid;
    border-left-color: red;
    border-left-width: 8px;

    margin-right: 5px;
    margin-bottom: 5px;
    margin-top: 0px;
    overflow: hidden;
    z-index: 1;
    border-radius: .25em;

    /*box-shadow: 2px 2px 2px #888888;   */
}

.task-status-box-small_hassecondary {
    min-width: 100px;
    max-width: 100px;
    min-height: 50px;
    max-height: 50px;
    display: inline-block;

    border-left-style: solid;
    border-left-color: green;
    border-left-width: 8px;

    margin-right: 5px;
    margin-bottom: 5px;
    margin-top: 0px;
    overflow: hidden;
    z-index: 1;
    border-radius: .25em;

    /*box-shadow: 2px 2px 2px #888888;   */
}

.task-status-box-small-wide_hassecondary {
    min-width: 180px;
    max-width: 180px;
    min-height: 75px;
    max-height: 70px;
    display: inline-block;

    border-left-style: solid;
    border-left-color: green;
    border-left-width: 8px;

    margin-right: 5px;
    margin-bottom: 5px;
    margin-top: 0px;
    overflow: hidden;
    z-index: 1;
    border-radius: .25em;

    /*box-shadow: 2px 2px 2px #888888;   */
}


/****************/
/* HEADER ICONS */
/****************/

.header-icon {
    color: pink;
    height: 4.125rem;
    display: block;
    line-height: 4.125rem;
    text-decoration: none;
    position: relative
}

.header-icon:not(.btn) {
    min-width: 3.125rem;
    text-align: center;
    overflow: visible
}

.header-icon:not(.btn) > .ni:first-child,
.header-icon:not(.btn) > [class*=fa-]:first-child {
    color: var(--header-icon-color);
    vertical-align: middle
}

.header-icon:not(.btn) > [class*=fa-]:first-child {
    font-size: 21px
}

.header-icon:not(.btn) > .ni:first-child {
    font-size: 21px
}

.header-icon:not(.btn):hover > .ni,
.header-icon:not(.btn):hover > [class*=fa-]:only-child {
    color: var(--header-icon-color);
    filter: brightness(70%);
}

.header-icon:not(.btn)[data-toggle=dropdown][data-toggle=dropdown]:after {
    content: " ";
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    background: #dae1e8;
    border-radius: 50%;
    top: 1.3125rem;
    z-index: -1;
    left: .9375rem;
    opacity: 0;
    -webkit-transition: all .1s ease-in;
    transition: all .1s ease-in
}

.header-icon:not(.btn)[data-toggle=dropdown][aria-expanded=true] {
    color: var(--header-icon-color);
    filter: brightness(70%);
    position: relative;
    z-index: 1001;
    font-weight: 500
}

.header-icon:not(.btn)[data-toggle=dropdown][aria-expanded=true]:after {
    content: " ";
    width: 2.5rem;
    height: 2.5rem;
    top: .8125rem;
    z-index: -1;
    left: .3125rem;
    opacity: 1
}

.header-icon:not(.btn)[data-toggle=dropdown][aria-expanded=true] > .ni:first-child,
.header-icon:not(.btn)[data-toggle=dropdown][aria-expanded=true] > [class*=fa-]:first-child {
    color: var(--header-icon-color) !important;
    filter: brightness(70%);
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background: 0 0
}

.header-icon:not(.btn)[data-toggle=dropdown] + .dropdown-menu {
    position: absolute;
    border: 0 solid #ccc;
    right: 2rem;
    top: 4.0625rem !important;
    left: auto !important;
    padding: 0;
    margin: 0
}

.header-icon:not(.btn) .profile-image {
    width: 2rem;
    height: auto
}

.header-icon:hover {
    cursor: default;
    color: var(--header-icon-color);
    filter: brightness(70%);
}

/******************/
/* DASHBOARDS      */
/******************/

.customer-logo {
    float: right;
    margin-top: -20px;
}

.dashboard-datepicker {
    color: #545454;
    font-size: large;
    outline: none;
    margin: auto;
    display: block;
    text-align: center;
    border-color: transparent;
    background-color: transparent;
    width: 220px;
}

.dashboard-panel-content {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.dashboard-pane {
    padding-top: 5px !important;
}

.dashboard-panel-content div.dataTables_wrapper div.dataTables_filter {
    /*display: none;*/
}

.widget-icon {
    font-size: 18px;
}

.dashboard-header {
    font-size: .875rem !important;
}

.dashboard-icon {
    font-size: 1.2rem !important;
}

.dashboard-engineer {
    min-width: 50px;
}

.dashboard-engineer-name {
    /* */
}

.dashboard-job-count {
    /* */
}

.dashboard-gantt {
    min-width: 150px;
}

.dashboard-search {
    width: 100%;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom-width: 1px;
    width: 90%;
}


/***************************************/
/* FLOATING MENU BUTTON - BOTTOM RIGHT */
/***************************************/

/* Defaults OK - only add back in if you want  HELP TEXT / CONFLUENCE button below
.shortcut-menu {
    position: fixed;
    right: 1.5rem;
    bottom: 7.3125rem;
    z-index: 931;
}
 */


h4 {
    /* ADDED ACCENT COLOURS TO LABELS - RB 01/11/2023 - SEE HOW IT GOES... */
    color: var(--main-accent-colour);
}

h3 {
    /* ADDED ACCENT COLOURS TO LABELS - RB 01/11/2023 - SEE HOW IT GOES... */
    color: var(--main-accent-colour);
}

.label {
    font-weight: 500;
    /* ADDED ACCENT COLOURS TO LABELS - RB 01/11/2023 - SEE HOW IT GOES... */
    color: var(--main-accent-colour);
    /* END */
}

.col-form-label {
    font-weight: 500;
    /* ADDED ACCENT COLOURS TO LABELS - RB 01/11/2023 - SEE HOW IT GOES... */
    color: var(--main-accent-colour);
    /* END */
}

.asset-col-form-label {
    font-weight: 500;
    /* ADDED ACCENT COLOURS TO LABELS - RB 01/11/2023 - SEE HOW IT GOES... */
    color: var(--main-accent-colour);
    /* END */
    padding-top: 2px;
    padding-bottom: 2px;
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.47;
}

.form-label {
    font-weight: 500;
    /* ADDED ACCENT COLOURS TO LABELS - RB 01/11/2023 - SEE HOW IT GOES... */
    color: var(--main-accent-colour);
    /* END */
}

.form-label-right {
    text-align: right;
    display: block; /* This will make sure the label takes up the full width */
}

label.menu-open-button {
    background: var(--main-accent-colour);
}

.menu-item:hover,
label.menu-open-button:hover {
    background: var(--main-accent-colour);
    filter: brightness(90%);
}

.menu-item, label.menu-open-button {
    background: var(--main-accent-colour);
}

.header-btn[data-class="mobile-nav-on"] {
    border-color: var(--main-accent-colour);
    background-color: var(--main-accent-colour);
    /* background-image: -webkit-gradient(linear,left bottom, left top,from(#ff2a28),to(#f40300)); */
    background-image: linear-gradient(to top, var(--main-accent-colour), var(--main-accent-colour));
    color: #fff;
    width: 3.875rem;
}

/**************************/
/* HELP TEXT / CONFLUENCE */
/**************************/

/* not required for now - as added to top of floating menu button

#amb-cnf-embedded-container-1 {
    position: fixed;
    right: 0;
    bottom: 46px;
    border: none;
    background: transparent;
    z-index: 99999;
    padding: 15px;
    margin-right: 6px;
    font-size: 25px;
}

#amb-cnf-embedder-launcher {
    color: var(--main-accent-colour)!important;
}

.amb-cnf-search-header {
    background: var(--main-accent-colour)!important;
    color: #ffffff;
}

 */

/******************************************/
/* FORM TITLES (List View, Gantt View etc */
/******************************************/

.subheader-title {
    color: var(--default-text-colour);
    font-weight: 300;
}

.subheader-title > .fa {
    color: var(--default-text-colour);
    font-weight: 100;
}

.attachment-title {
    color: var(--default-text-colour);
    font-weight: 240;
}

/********************/
/* MAINTENANCE      */
/********************/

.maintenance-title {
    margin-bottom: 10px !important;
}

.subheader_manitenance {
    margin-bottom: calc(1.2rem);
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.note-error {
    color: red !important;
}


/********************/
/* CALENDAR          */
/********************/


.fc-today-button {
    min-width: 100px;
    min-height: 20px;
}

/*

.alert-info {
    background-color: #F8F9FB;
    border-color: #F8F9FB;
    border-width: #F8F9FB;
}


.alert {
    background-color: #F8F9FB;
    border-color: #F8F9FB;
    border-width: #F8F9FB;
}

 */


/********************/
/* LOGIN SCREEN      */
/********************/


.login-footer-company {
    position: absolute;
    bottom: 0;
    height: 2.8125rem;
    align-items: center;
    background: transparent;
    color: #4d4d4d;
    font-size: .8125rem;
    padding: 0 2rem;
}

.login-footer-policy {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 2.8125rem;
    background: transparent;
    color: #4d4d4d;
    font-size: .8125rem;
    padding: 0 2rem;
}

/********************/
/* SELECT 2         */
/********************/

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--main-accent-colour) !important;
}

/********************/
/* MODALS           */
/********************/

.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
    overflow-x: hidden;
}

/* controls maintenance modal screen (which is smaller than normal modal */
.modal-maintenance {
    /*
    width: 500px;
     */
    z-index: 999;
    height: calc(100vh - 3.5rem);
}

/* controls maintenance modal screen (which is smaller than normal modal */
.modal-maintenance-medium {
    /*
    width: 500px;
    max-width: 500px !important;
    margin: 1.75rem auto;
    */
    z-index: 999;
    height: calc(100vh - 3.5rem);
}

.modal-maintenance-full-height {
    z-index: 999;
    height: calc(100vh - 3.5rem);
}

.modal-maintenance-wide {
    width: 80vw;
    max-width: 80vw; !important;
    margin: 1.75rem auto;
}

.modal-location {
    /*
    width: 600px;
    max-width: 600px !important;
    margin: 1.75rem auto;
     */
    z-index: 999;
}

.modal-generic {

    /*
    margin-top: 50px;
    width: 875px;
    max-width: 875px !important;
    margin: 1.75rem auto;
    height: 70vh;
     */
    z-index: 999;
}

.modal-full-screen {
    max-width: 100%;
    margin-left: 15px;
}

.modal-secondary {
    max-width: 800px;
    margin-top: 50px;
}

.modal-full-screen .modal-page-footer {
    /*
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    background-color: white;

     */
}

.modal-maintenance-control {
    /*
    width:430px;
    max-width: 430px!important;
    margin: 1.75rem auto;
     */
}

.modal-25-vh {
    max-height: 25vh;
    overflow-y: scroll;
}

.modal-50-vh {
    max-height: 50vh;
    overflow-y: scroll;
}

.modal-75-vh {
    max-height: 75vh;
    overflow-y: scroll;
}

.modal-100-vh {
    max-height: 100vh;
    overflow-y: scroll;
}

.modal-25-vw {
    max-height: 25vw;
    overflow-y: scroll;
}

.modal-50-vw {
    max-height: 50vw;
    overflow-y: scroll;
}

.modal-75-vw {
    max-height: 75vw;
    overflow-y: scroll;
}

.modal-100-vw {
    max-height: 100vw;
    overflow-y: scroll;
}

.generic-dialog
{
    max-width: 500px;
    height: 80vh;
    margin-top: 10vh;
}



#mfa-modal {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.modal-page-footer {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    margin-left: 1px;
    margin-right: 1px;
    background-color: white;
}

.modal-shadow {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}

.location-map-marker {
    color: orange;
    font-size: 18px;
    float: right;
    margin-top:3px;
}


/********************/
/* DATE PICKER       */
/********************/
.datepicker {
    z-index: 1006 !important;
}

/* Classes to modify datepicker z-index where required */
.datepicker3040 {
    z-index: 3040 !important;
}

/********************/
/* Select Multi     */
/********************/
.displaySelectMulti {
    background-color: #EBEEF5 !important;
    background: #EBEEF5 !important;
    padding-top: 5px !important;
    font-size: 16px !important;
    color: #3d4e7c !important;
    border: 1px solid #aaa;
    border-color: #7b8dbd !important;
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial !important;
    font-size: .8125rem !important;
    letter-spacing: .1px !important;
    max-height: 30px !important;
    height: 30px !important;
    overflow: hidden !important;
    text-overflow: ".." !important;
    white-space: nowrap !important;
    margin-left: 2px !important;
    padding-left: 5px !important;
    padding-right: 5px !important;

}

/********************/
/* DATATABLES       */
/********************/
.dataTables_empty {
    color: grey !important;
    font-size: 1rem !important;
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

.dataTable_actions {
    min-width: 300px;

}

.dataTable_actions input {
    display: none;

}

.max-col-width-100 {
    max-width: 100px;
    word-wrap: break-word; /* Allow the text to wrap to the next line */
    white-space: normal;
}

.max-col-width-150 {
    max-width: 100px;
    word-wrap: break-word; /* Allow the text to wrap to the next line */
    white-space: normal;
}

.max-col-width-200 {
    max-width: 200px;
    word-wrap: break-word; /* Allow the text to wrap to the next line */
    white-space: normal;
}

.max-col-width-250 {
    max-width: 250px;
    word-wrap: break-word; /* Allow the text to wrap to the next line */
    white-space: normal;
}

.max-col-width-300 {
    /*
    max-width: 300px;
    word-wrap: break-word;
    white-space: normal;

     */
}

/* BELOW ARE HERE TO ACCOUNT FOR GENERIC SEARCH BOX BEING DISABLED ON MAINTENANCE SCREEN */

#dt_maintenance_filter {
    display: none;
}

#dt_maintenance_wrapper {
    margin-top: -10px;
}

/* ------------------------------------------------------------------------------------- */

.table thead {
    background-color: #e9e9e9 !important;
}

.table-hover tbody tr:hover {
    background-color: #ECF3F8;
    border-width: 0px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.job-allocation-task-status-box {
    float: left;
}

.engineers {
    margin-bottom: 20px;
}

.task-status-box-label {
    color: white !important;
    display: block !important;
    text-align: left !important;
    font-size: 75% !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    overflow: hidden;
    border-radius: .25em !important;
    padding: .2em .6em .3em !important;
    padding-top: 5px !important;
    cursor: pointer;
    /*text-shadow: 0 0 1px #111318;    */
}

.task-status-box-label-display {
    color: white !important;
    display: block !important;
    text-align: left !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    padding-top: 0px !important;
    overflow: hidden;
    border-radius: .25em !important;
    /*text-shadow: 0 0 1px #111318;    */
}

.task-status-box-label-display-timeslot {
    color: navy !important;
    margin-top: 3px;
}

.task-status-box-label-display-line01 {
    margin-bottom: 5px;
}

.select2-dropdown {
    z-index: 99999 !important;
}

.displaySelectMulti {
    pointer-events: none;
    touch-action: none;
    background-clip: padding-box;
    border-radius: 2px;
    color: white;
    width: 100px;
    min-width: 100px;
    cursor: pointer;
    text-align: center;
    vertical-align: center;
    padding-top: 4px;
    margin-right: 2px;
    height: 25px;
    font-size: smaller;
    max-height: 25px;
    background-color: #3276b1;
    background: #3276b1;
}

/********************/
/* CALENDAR       */
/********************/
.fc-event {
    /*
    border-style: solid!important;
    border-color: transparent;
    border-width: 2px!important;
    border-left-color: purple;
    */

    /*

    border-left-width : 8px!important;
    border-left-style: solid;


     */

    /*
    padding-left: 2px;
    padding-right:30px;
    */

    /*
    border-right-width : 8px!important;
    border-right-style: dotted;
    padding-right: 2px;
    */

}

.cal-icon {
    color: purple;
}

.allocation-icon {
    color: white;
    margin-top: 5px;
    margin-right: 5px;
}

.cal-count {
    margin-top: 3px;
    color: white;
    font-size: 1.1em !important;
}


.cal-title {
    color: yellow;
}

.cal-data {
    color: yellow;
}

.cal-data-status {
    color: orange;
}

.cal-progress-container {
    background-color: grey;
    margin-left: 0px;
    margin-bottom: 2px;
    border-radius: 2px;
    padding: 2px;
    width: 95%;

}

.cal-progress-bar {

}

.cal-progres-bar-text {
    width: 85%;
    margin-left: 5px;
    position: absolute;
    z-index: 999;
}


.cal-progress {
    max-height: 50px;
    margin-bottom: 4px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 2px;
    max-height: 20px;
    min-height: 20px;
}


.drill-down {

}

.drill-down-icon {
    color: var(--default-text-colour);
    min-width: 18px;
    max-width: 18px;
    min-height: 18px;
    max-height: 18px;

}

/* Absolute Center Spinner */
.loading {
    position: absolute;
    z-index: 9999;
    height: 2em;
    width: 2em;
    overflow: visible;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Transparent Overlay */
.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;

    border-top: 16px solid #FF9714;
    border-right: 16px solid #3276B1;
    border-bottom: 16px solid #1B1E24;
    border-left: 16px solid #434953;

    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;

}

/* typeahead styles */
.tt-query, /* UPDATE: newer versions use tt-input instead of tt-query */
.tt-hint {
    width: 396px;
    height: 30px;
    padding: 0px 0px;
    font-size: 12px;
    line-height: 20px;
    border: 2px solid #ccc;
    border-radius: 8px;
    outline: none;
}

.twitter-typeahead {
    width: 100%;
}

.tt-input { /* UPDATE: newer versions use tt-input instead of tt-query */

}

.tt-hint {
    color: #999;
}

.tt-menu { /* UPDATE: newer versions use tt-menu instead of tt-dropdown-menu */
    width: 422px;
    margin-top: 12px;
    padding: 8px 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}

.tt-suggestion {
    padding: 3px 20px;
    font-size: 14px;
    line-height: 24px;
}

.tt-suggestion.tt-cursor {
    color: #fff;
    background-color: #0097cf;

}

.tt-suggestion p {
    margin: 0;
}

/********************/
/* STOCK SECTION    */
/********************/

.link-td {
    position: relative;
}

.arrow-right-drill {
    position: absolute;
    bottom: 1px;
    right: -1px;
    float: right;
    width: 0;
    height: 0;
    cursor: pointer;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #80808063;
    transform: rotate(135deg);
}

/********************/
/* TASK DETAILS     */
/********************/

.task-data-row {
    line-height: 15px;
}

.task-data-heading {
    font-size: 1.0625rem;
    color: var(--main-accent-colour);
}

.task-data-label {
    text-align: right;
    color: var(--default-text-colour);
    font-weight: 500;
    /* ADDED ACCENT COLOURS TO LABELS - RB 01/11/2023 - SEE HOW IT GOES... */
    color: var(--main-accent-colour);
}

.task-data-value {
    text-align: left;
    color: var(--default-text-colour);
}

.task-tab-item {
    margin-bottom: 5px;
    margin-right: 2px;
    min-width: 100px;
    background-color: #EEEEEE;
    border-color: #EEEEEE;
    color: #84888B;
    text-align: center;
    border-radius: 0px !important;
}

.task-tabs {

}

.task-tabs > li.active > a, .task-tabs > li.active > a:focus, .task-tabs > li.active > a:hover {
    color: #fff;
    background-color: var(--main-accent-colour);
}


.task-tabs > li > a:focus, .nav > li > a:hover {
    text-decoration: none;
    color: #84888B;
    background-color: var(--main-accent-colour);
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: var(--main-accent-colour);
}

.task-data-hr {
    border: none;
    margin-top: 0px;
    border-bottom: 1px solid var(--main-accent-colour);
}

.asset_transfer_row {
    background-color: rgba(9, 7, 7, 0.03);
    border-radius: 4px;
    padding: 5px;
    margin-left: 5px;
    margin-right: 5px;
}

/********************/
/* WALKTHROUGHS     */
/********************/

.info_highlight {
    opacity: 0.4 !important;
}


/********************/
/* SELECT2 ERRORS   */
/********************/

.is-invalid {
    border: 1px solid rgb(255, 67, 65) !important;
}

.is-invalid-stock {
    border: 2px solid red !important;
    background-color: red;
    border-radius: 5px;
}

/********************/
/* SELECT2 ERRORS   */
/********************/
.bootbox.modal:not(.changeable) {
    z-index: 9999 !important;
}

.CellWithComment {
    position: relative;
}

.CellComment {
    visibility: hidden;
    min-width: 110px;
    position: absolute;
    z-index: 9999;
    text-align: Left;
    opacity: 1.0;
    transition: opacity 1s;
    border-radius: 2px;
    margin-top: 5px;
    margin-left: 8px;
    background-color: #FFF;
    padding: 3px;
    top: 0px;
    left: 0px;
}

.CellWithComment:hover span.CellComment {
    visibility: visible;
    opacity: 1;
}


.case-management-window {
    border-color: var(--main-accent-colour);
    border-width: 4px;
}

.modal-lg {
    max-width: 80%;
}

.modal-upload {
    max-width: none; /* Allow for custom width */
    width: 800px; /* Set the custom width */
    margin: auto; /* Center the modal */
    margin-top: 20px;
}

#genericCaseModal {
    z-index: 4000;
    position: fixed;
    top: 30px;
    left: 0;
    z-index: 2050;
    display: none;
    width: 100%;
    height: 80%;
    overflow: hidden;
    outline: 0;
}

.modal-case-lg, .modal-case-xl {
    max-width: 80%;
}

#toast-container {
    top: 10px;
    right: 10px;
}

.modal-header {
    padding-top: 1.0rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: 0rem;
}

/* depot locations */
.depot-location {
    border-radius: 0px !important;
    min-height: 20px !important;
    min-width: 125px;
    color: #fff !important;
    /*
    background-color: var(--main-accent-colour);
    border-color: var(--main-accent-colour);
     */
    background-image: none !important;
    height: 30px;
    margin-top: 3px;
    padding-top: 2px;
    padding-bottom: 4px;
}

.depot-location-zone {
    background-color: red;
    border-color: red;
}

/* hover */
.depot-location-zone:hover {
    border-radius: 0px !important;
    min-height: 20px !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: red;
    border-color: var(--main-accent-colour);
    border-width: 1px;
    filter: brightness(70%);
    z-index: 2
}

.depot-location-aisle {
    background-color: green;
    border-color: green;
}

/* hover */
.depot-location-aisle:hover {
    border-radius: 0px !important;
    min-height: 20px !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: green;
    border-color: var(--main-accent-colour);
    border-width: 1px;
    filter: brightness(70%);
    z-index: 2
}

.depot-location-bay {
    background-color: orange;
    border-color: orange;
}

/* hover */
.depot-location-bay:hover {
    border-radius: 0px !important;
    min-height: 20px !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: orange;
    border-color: var(--main-accent-colour);
    border-width: 1px;
    filter: brightness(70%);
    z-index: 2
}

.depot-location-shelf {
    background-color: purple;
    border-color: purple;
}

/* hover */
.depot-location-shelf:hover {
    border-radius: 0px !important;
    min-height: 20px !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: purple;
    border-color: var(--main-accent-colour);
    border-width: 1px;
    filter: brightness(70%);
    z-index: 2
}

/********************/
/* APPOINTMENTS     */
/********************/

.appointment-input-wrapper {
    position: relative;

}

.appointment-input-wrapper .form-control {
    padding-right: 30px; /* Adjust this as needed */
}

.appointment-default-value {
    position: absolute;
    right: 5px; /* Adjust this for alignment */
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    pointer-events: none;
}

.appointment-default-value-red {
    color: #e28ab3; /* Or any color you want */
}

/********************/
/* NEW LAYOUT TESTS */
/********************/

html body {
    overflow: hidden;
}

#maintenance-panel::-webkit-scrollbar {
    display: none;
}

#maintenance-panel{
    height:  calc(100vh - 350px);
    overflow: scroll;
    margin-bottom: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#maintenance-panel .panel-content {
   height:  calc(100vh - 362px);
}

#audit-container {
    display:none;
}

#audit-panel{
    height:  100px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#js-page-content::-webkit-scrollbar {
    display: none;
}

#js-page-content {
    height:  calc(100vh - 50px);
    overflow: scroll;
    margin-bottom: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tracking-container-main {
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin-left: 0px;
    margin-right: 0px;
}

.dashboard-body::-webkit-scrollbar {
    display: none;
}

.dashboard-body {
    height:  calc(100vh - 180px);
    overflow: scroll;
    margin-bottom: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.primary-nav-scroll::-webkit-scrollbar {
    display: none;
}
.primary-nav-scroll {
    height:  calc(100vh - 20px);
    overflow: scroll;
    margin-bottom: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#expired-modal-content
{
    height: 450px;
}

#mfa-modal-content
{
    height: 450px;
}

.mfa-bottom-buttons
{
    position: fixed;
    bottom: 10px;
    right: 10px;
}

.form-group-small
{
    font-size: small;
    line-height: 10px;
    margin-bottom : 10px!important;
}

.panel .panel-container .panel-content {
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 10px;
}

.trimblemaps-ctrl-ssinput {
    padding: 8px;
    background: white;
    border-radius: 2px!important;
}

.trimblemaps-ctrl-ssctrl {
    width: 334px;
    height: 20px;
    border-style: none;
}



/*

.footer-function-fixed .page-footer {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1005;
    border-top: 1px solid rgba(0,0,0,.08);
}

 */


/* USED TO HIDE ITEMS ON SMALLER SCREENS */


/* USED TO HIDE ITEMS ON SMALLER SCREENS */

.green {
    background-image: -webkit-linear-gradient(top, #13fB04 0%, #58e343 50%, #ADED99 100%);
}

.orange {
    background-image: -webkit-linear-gradient(top, #f9a004 0%, #e0ac45 50%, #ead698 100%);
}


.red {
    background-image: -webkit-linear-gradient(top, #fb1304 0%, #e35843 50%, #edad99 100%);
}


.led {
    border-radius: 5px;
    width: 10px;
    height: 10px;
    box-shadow: 0px 0px 3px black;
    margin: 5px;
    zoom: 2;
}

.led:after {
    display: block;
    content: '';
    margin-left: 1px;
    margin-right: 1px;
    width: 8px;
    height: 6px;
    -webkit-border-top-right-radius: 4px 3px;
    -webkit-border-top-left-radius: 4px 3px;
    -webkit-border-bottom-right-radius: 4px 3px;
    -webkit-border-bottom-left-radius: 4px 3px;
    background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.2) 100%);
}

.altlogic-info {
    color: #FFF;
    border-color: var(--main-accent-colour);
    background-color: var(--main-accent-colour);

}

.altlogic-background {
    background-color: var(--main-accent-colour);
}

.altlogic-color {
    color: var(--main-accent-colour);
}

.device-panel {
    width: calc(100vw - 16.875rem - 150px)
}


/******************/
/* TRACKING */
/******************/


/* this is the standard browser version - it is overridden in device.css for flutter version
.asset_groups_data {
    height: calc(100vh - 200px);
}
*/

.device-dashboard-bag {
    max-width : 180px;
    min-width: 180px;
    max-height : 80px;
    min-height: 80px;
    margin-right: 5px;
    overflow: hidden;
}

.device-dashboard-stat {
    max-width : 10px;
    min-width: 100px;
    max-height : 60px;
    min-height: 60px;
    margin-right: 0px;
    margin-left: 5px;
    margin-bottom: -5px;
}

.device-dashboard-key {
    max-width : 25px;
    min-width: 25px;
    max-height : 60px;
    min-height: 60px;
    margin-right: 0px;
    margin-left: 5px;
    margin-bottom: -5px;
}


.device-dashboard-stat-header
{
    overflow: hidden;
    position: relative;
    color: white;
    height: 20px;
}

.device-dashboard-stat-item
{
    overflow: hidden;
    position: relative;
    color: white;
    height: 40px;


}


.device-dashboard-stat-item-text
{
    color: white;
    margin-left: 3px;
    font-weight: 400;
}

.tracking-footer-panel {
    margin-top: 5px;
    /* width: calc(100vw - 275px); */
    height: 72px;

    /* background-color: lightgreen; */
}

.asset-alert
{
    color: red!important;
}

.asset-warning
{
    color: orange!important;
}


.fade-img {
    position: relative;
}

.fade-img:after {
    content:"";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    height: 40%;
}

.flutter_extra_button {
    top: 250px;
    right: 10px;
    bottom: auto;
}

.tracking-dashboard-container {
    margin-right: 10px;
}



.tracking-header-main {
    display: none;
    height: 0px;
}

.tracking-center-panel {
    margin-top: 5px;
    margin-right: 5px;
    flex: 1;
}

.tracking-header-bags {
    height: 70px;
    margin-right: 5px;
    /* background-color: yellow; */
}

.asset_group {
    font-weight: lighter;
    border-radius: .25em;
    border-color: lightgrey;
    background-color: lightgrey;
    border-width: 1px;
    border-style: solid;
    color: #000;
}

.asset_group_selected {
    background-color: var(--main-accent-colour);
    color: #fff;
}

.asset_group_summary {
    min-width: 167px;
    max-width: 167px;
    width: 167px;
    min-height: 30px;
    max-height: 30px;
    height: 30px;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 0px;
    padding-top: 5px;
    padding-left: 5px;
    margin-top: 0px;
    overflow: hidden;
    z-index: 1;
    background-color: lightgrey;
    text-decoration: none;
    font-weight: lighter;
    font-size: smaller;
    position: relative;
    color: var(--main-accent-colour);
    border-radius: .25em;
}

.asset_group_summary .badge {
    position: absolute;
    top: 0px;
    right: 0px;
    padding-top: 10px;
    height: 32px;
    width: 32px;
    border-radius: 0%;
    border-width: 0px;
    background: var(--main-accent-colour);
    color: #fff;
    font-weight: bold;
    font-size: smaller;
    border-radius: .25em;
}

#customPrompt {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    display: none;
    transition: all 0.3s; /* Smooth transition for adjustments */
}

/* Class to adjust the position when keyboard is shown */
.adjust-for-keyboard {
    top: 10% !important; /* Adjust as necessary */
}

pre {
    font-size: 100%;
}


.icon-green {
    color: green; /* Green color for the tick */
}
.icon-red {
    color: red; /* Red color for the cross */
}

.align-right {
    text-align: right;
}


.align-left {
    text-align: left;
}

.align-center {
    text-align: center;
}


.tt-hint {
    display: none
}

/* Added by RB 05/02/2024 - Experimental update for bloodhound typeahead.js dropdown */
div.tt-menu.tt-open {
    margin-top: -0px;
    background-color: white;
    max-height: 400px; /* 100% of the viewport height */
    overflow-y: auto; /* Enables vertical scrolling within the dropdown */
    position: absolute; /* Adjust as needed, may help with positioning */
    width: 100%; /* Adjust width as necessary */
    top: 100%; /* Example to position it below an input field */
    left: 0; /* Align with the left side of the input field */
    z-index: 1000;
}



.address-field[readonly] {
    background-color: #fff; /* Light grey background for readonly state */
    border-color: #fff;
    border-width: 0px;
    color: #999; /* Dim text color for readonly state */
    cursor: not-allowed; /* Show a 'not-allowed' cursor */
}

.address-field:not([readonly]) {

    background-color: #fff; /* White background for editable state */
    color: #000; /* Black text color for editable state */
    cursor: text; /* Default text cursor */

    border: none; /* Remove all borders */
    border-bottom: 1px solid #000; /* Add a solid border only to the bottom */
    border-color: #e5e5e5;
    box-shadow: none; /* Optional: Remove box shadow if present */
    outline: none; /* Optional: Remove the outline on focus */
    border-radius: 0px;

}

.address-field-group {

        margin-left: 2px;
        margin-right: 2px;

        min-height: 190px;

        padding: .5rem .875rem;
        font-size: .8125rem;
        font-weight: 400;
        line-height: 1.47;
        border: 1px solid #e5e5e5;
        border-radius: 4px;
        -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
        transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
        transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
        transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;

}

.route-stop-header {
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 4px 4px 0 0;
    background-color: #f8f9fb;
}

.custom-control-input:checked.disabled_checkbox ~ .custom-control-label::before {
    color: #fff;
    border-color: gray;
    background-color: gray;
}

@media only screen and (max-width: 1400px) {
    .hide-1400 {
        display: none!important;
    }
}

@media only screen and (max-width: 1300px) {
    .hide-1300 {
        display: none!important;;
    }
}

@media only screen and (max-width: 1200px) {
    .hide-1200 {
        display: none!important;;
    }
}

@media only screen and (max-width: 1100px) {
    .hide-1100 {
        display: none!important;;
    }
}

@media only screen and (max-width: 1000px) {
    .hide-1000 {
        display: none!important;;
    }
}

@media only screen and (max-width: 900px) {
    .hide-900 {
        display: none!important;;
    }
}

@media only screen and (max-width: 800px) {
    .hide-800 {
        display: none!important;;
    }
}

@media only screen and (max-width: 700px) {
    .hide-700 {
        display: none!important;;
    }
}

@media only screen and (max-width: 600px) {
    .hide-600 {
        display: none!important;;
    }
}

@media only screen and (max-width: 500px) {
    .hide-500 {
        display: none!important;;
    }
}

@media only screen and (max-width: 400px) {
    .hide-400 {
        display: none!important;;
    }
}

@media only screen and (max-width: 300px) {
    .hide-300 {
        display: none!important;;
    }
}

@media only screen and (max-width: 200px) {
    .hide-200 {
        display: none!important;;
    }
}

@media only screen and (max-width: 100px) {
    .hide-100 {
        display: none!important;;
    }
}

@media only screen and (max-width: 600px) {
    .hide-600 {
        display: none;
    }
}

.trip_ontime {
    color: green;
}

.trip_early {
    color: red;
}

.trip_late {
    color: orange;
}

.trip_notstarted {
    color: gray;
}

#dt_basic tr.dtrg-group.dtrg-start.dtrg-level-0 td {
    color : var(--main-accent-colour);
    font-weight : 500;
    font-size: small;
}





.page-footer {
    display: flex!important;
    justify-content: space-between;
    align-items: center;
/*    width: 100%; */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-left-content, .footer-right-content {
    display: flex;
    align-items: center;
}

.footer-left-content {
    flex-grow: 1; /* Ensures it takes up all necessary space to push the right content to the edge */
}

.footer-list-table {
    display: flex;
    align-items: center;
    list-style: none; /* Removes bullet points from the list */
    padding: 0; /* Removes padding */
    margin: 0; /* Removes default margin */
}

.footer-list-table li {
    display: flex;
    align-items: center;
    margin-left: 20px; /* Space between list items */
}

.footer-item {
    margin-left: 10px; /* Uniform margin for all items */
}

.footer-link {
    text-decoration: none; /* Optional: Removes underline from links */
    color: inherit; /* Inherits color from parent for consistency */
}



.task-tile {
    width: 180px;
    height: 80px;
    position: relative;
    overflow: hidden; /* Ensures nothing goes outside the tile */
    font-size: smaller;
    margin-right: 4px;
    margin-bottom: 4px;
}
.task-tile-left-item, .task-tile-right-item {
    position: absolute;
    width: 50%; /* Each item can fill up to half the width */
    height: 15.75px; /* Distributes the height equally */
    box-sizing: border-box;

/*    border: 1px solid red; /* To visualize the items */

    white-space: nowrap;
    overflow: visible;
}

.task-tile-left-item {
    left: 4px;
    text-align: left;
}

.task-tile-right-item {
    right: 4px;
    text-align: right;
}

.task-tile-status-box {
    /*min-width: 130px;
    max-width: 130px;
     */
    min-height: 15px;
    max-height: 15px;
    border-radius: .25em;
    /*box-shadow: 2px 2px 2px #888888;   */
}

.task-tile-status-box-label {
    color: white !important;
    display: block !important;
    text-align: center;
    font-size: 75% !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    padding-top: 4px !important;
    border-radius: .25em !important;
    /*text-shadow: 0 0 1px #111318;    */
}

.task-tile-status-label {
    color: white !important;
    display: block !important;
    text-align: right!important;
    line-height: 1 !important;
    font-size: smaller;
    white-space: nowrap !important;
    padding-top: 4px !important;
}


/* Position each item uniquely */
/* Position each left item uniquely */
.task-tile-left-item:nth-child(1) { top: 0px; }
.task-tile-left-item:nth-child(2) { top: 14px; }
.task-tile-left-item:nth-child(3) { top: 26px; }
.task-tile-left-item:nth-child(4) { top: 38px; }
.task-tile-left-item:nth-child(5) { top: 50px; }
.task-tile-left-item:nth-child(6) { top: 62px; }

/* Position each right item uniquely, considering there are 4 left items before them */
.task-tile-right-item:nth-child(7) { top: 0px; }
.task-tile-right-item:nth-child(8) { top: 14px; }
.task-tile-right-item:nth-child(9) { top: 26px; }
.task-tile-right-item:nth-child(10) { top: 38px; }
.task-tile-right-item:nth-child(11) { top: 50px; }
.task-tile-right-item:nth-child(12) { top: 62px; }


/* Basic styles for the What3Words link */
.w3w-link {
    color: #FF4136; /* What3Words primary color */
    text-decoration: none;
    position: relative;
    padding-left: 30px;
    font-weight: bold;
}

/* Hover effect */
.w3w-link:hover {
    text-decoration: underline;
    cursor: pointer;
}

.w3w-link[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
}

.w3w-link::before {
    content: "///";
    background-color: #FF4136; /* What3Words red */
    color: #fff; /* White text */
    padding: 2px 5px;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: normal;
}

.modal-w3w .modal-dialog {
    max-width: 60%; /* Increase modal width by 30% */
    margin-top: 100px; /* Bring the modal down by 100px */
}
.modal-w3w .modal-body iframe {
    height: 500px; /* Adjust height as needed */
}


.modal-ts .modal-dialog {
    max-width: 60%; /* Increase modal width by 30% */
    margin-top: 100px; /* Bring the modal down by 100px */
}
.modal-ts .modal-body iframe {
    height: 500px; /* Adjust height as needed */
}

.modal-shipping-label .modal-dialog {
    max-width: 60%; /* Increase modal width by 30% */
    margin-top: 100px; /* Bring the modal down by 100px */
}
.modal-shipping-label .modal-body iframe {
    height: 500px; /* Adjust height as needed */
}

.display-none {
    display: none!important;
}



/* NAV SEARCH */
/* NAV SEARCH */
.custom-search-form {
    position: relative;
}

.search-icon-input {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 5px;
}

.search-icon-input i {
    margin-right: 10px;
    font-size: 18px;
    color: var(--menu-icon-color);
}

#searchBox {
    border: none;
    outline: none;
    width: 100%;
    padding: 5px 0;
    font-size: .875rem;
    border-bottom: 1px solid #ccc;
    background-color: var(--menu-bg-color);
    color: var(--menu-text-color);
}

#searchBox::placeholder {
    color: var(--menu-text-color);
}

#searchBox::-webkit-input-placeholder { /* Chrome, Safari, Edge */
    color: var(--menu-text-color);
}

#searchBox::-moz-placeholder { /* Firefox 19+ */
    color: var(--menu-text-color);
}

#searchBox:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--menu-text-color);
}

.custom-search-container
{
    margin-top: 10px;
}

/*
.custom-search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    color: var(--menu-text-selected-color);
    font-size: .875rem;
    border: 1px solid #ccc;
    z-index: 1000;
    max-height: 500px;
    overflow-y: auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

 */


.custom-search-results {
    display: none;
    position: absolute;
    top: 100%; /* Opens below the search box */
    left: 0;
    width: 100%;
    background-color: white;
    /*color: var(--menu-text-selected-color);*/
    font-size: 0.875rem;
    border: 1px solid #ccc;
    z-index: 1000;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);

    /* Automatically adjust height */
    max-height: 50vh;
    overflow-y: visible;

    /* Disable vertical scrollbar */
    overflow-y: hidden;

}

.custom-search-results .search-result-item {
    padding: 8px;
    cursor: pointer;
}

.custom-search-results div {
    padding: 10px;
    cursor: pointer;
}

.custom-search-results div:hover {
    background-color: #f0f0f0;
}

/* Highlight the active search result */
.custom-search-results div.highlight {
    background-color: #e0e0e0; /* Slightly darker than hover */
    color: #333; /* Adjust text color for visibility */
    font-weight: bold;
}

/* Margin adjustments */
.custom-search-form {
    margin-left: 30px;
    margin-right: 30px;
}


/* Remove the browser default focus outline */
.custom-search-results div:focus {
    outline: none; /* Prevent default focus styles */
}

/* Override text selection color */
.custom-search-results div::selection {
    background: transparent; /* Makes text selection transparent */
}

/* Hover styling remains unaffected */
.custom-search-results div.search-result-item:hover {
    background-color: #f0f0f0; /* Slight hover effect */
    color: var(--main-accent-colour);
}

/* Make the highlight effect specific and ensure it transitions */
.custom-search-results div.search-result-item.highlight {
    background-color: var(--main-accent-colour)!important; /* Light blue background */
    color: #fff;
}




/* SITE_LIST SORTABLE CONTAINER */

.site_list_sortable_container {
    border: 1px solid #ccc;
    padding: 10px;
    width: 100%;
    min-height: 50px;
    list-style: none;
    margin-top: 10px;
}

.site_list_sortable_item {
    display: flex;
    align-items: center;

    padding: 5px;
    margin-bottom: 5px;

    cursor: move;
}

.site_list_sortable-item .item-number {
    margin-right: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.site_list_sortable-item span {
    flex-grow: 1;
}

.site_list_delete_btn {
    color: white;
    background-color: var(--main-accent-colour);
    border: none;
    border-radius: 3px;
    padding: 2px 5px;
    cursor: pointer;
    position: absolute;
    right: 20px;
}

.site_list_delete_btn:hover {
    background-color: red;
}

.site_list_sortable_item_number {
    margin-right: 20px;
    color: var(--main-accent-colour);
    font-weight: bold;
}

.permission-parent
{
    color: var(--main-accent-colour);
}

.linkzone {
    border: 2px dashed #dedede;
    border-radius: 5px;
    background: #f5f5f5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .5rem;
}

.check-export-icon {
    float: right;
    cursor: pointer;
    color: gray;
}

.check-search-icon {
    float: right;
    cursor: pointer;
    color: gray;
}

.check-range-icon {
    float: right;
    cursor: pointer;
    color: gray;
}

td.usage-low,
td.usage-medium,
td.usage-high {
    padding: 0; /* no padding on td itself */
    border: none;
}

td.usage-low .usage-inner,
td.usage-medium .usage-inner,
td.usage-high .usage-inner {
    background-color: green; /* default fallback */
    color: white;
    padding: 10px;
    margin: 4px;
    border-radius: 6px;
    display: inline-block;
    min-width: 90%;
    text-align: center;
}

/* Specific background colors */
td.usage-low .usage-inner { background-color: green; }
td.usage-medium .usage-inner { background-color: orange; }
td.usage-high .usage-inner { background-color: red; }


.sortable-placeholder {
    height: 50px;
    background: #ffeeba;
    border: 2px dashed #d39e00;
    margin-bottom: 5px;
}
