
:root {
    /*--navbar-color: green;*/
    /*medium forest green*/
    /*--navbar-color: #347235;*/
}

body {
    padding-top: 50px;
    padding-bottom: 20px;
    transition: all 0.8s ease 0.2s;
}



/*Inbox styles*/
/* On smaller screens, drop the separators so wrapping looks cleaner */
@media (max-width: 992px) {
    .toolbar-group + .toolbar-group {
        border-left: none;
        padding-left: 0;
        margin-left: .5rem;
    }
}









    body.SmallView {
        padding-top: 40px;
    }

    body.MyMinLayOutBody {
        padding-top: inherit;
        padding-bottom: inherit;
        transition: all 0.8s ease 0.2s;
    }


@media (min-width: 1200px) {
    .MyMainNav {
        top: 0px;
        height: 50px;
        transition: 0.8s ease 0.2s;
    }
}


#externalLinkFullscreenIframe {
    width: 100%;
    height: calc(100vh - 56px); /* subtract header height */
    border: 0;
}



/*Drag and Drop*/
.sortable-item .card-header {
    cursor: move;
}


/*small th col class*/
.th-icon-col {
    width: 1%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center;
}


/*styles for lookup button inputs*/
.lookup-btn {
    line-height: inherit !important;
    padding-top: 6px !important;
}

/*styles for radio button / buttons*/
.no-border {
    border: none !important;
}


.btn-check:checked + .half-border {
    border-color: #e2eaf7 !important;

}


.no-boxshadow {
    box-shadow: none !important;
}

.round-radius {
    border-radius: 20px !important;
}

.updated-padding {
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin: none !important;
}

.btn-check:checked + .updated-bg {
    background-color: #dce7f7 !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin: none !important;
}
.btn-check + .update-hover:hover {
    border-color: #dce7f7 !important;
}
/*.update-hover:hover {
    border: #dce7f7 !important;
}*/
/*fix "entries per page" on bootstrap datatable*/
div.dt-container select.dt-input {
    padding: 4px !important;
    margin-right: 5px !important;
}



/* Adjust the form-outline container and input */
.form-outline {
    flex-grow: 1; /* Allow the input to take up remaining space */
}

.form-control {
    width: calc(100% - 3rem); /* Adjust input width to make space for the button */
}

.email-btn, .phone-btn {
    /*margin-left: -0.08rem;*/ /* Optional: space between input and button */
    /*border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;*/
}

    /* Optional: Keep button size consistent */
    .email-btn i {
        pointer-events: none; /* Ensure clicking on icon doesn't interfere with button click */
    }



.custom-icon {
    color: #5f669b; /* Change to your desired color */
}


.custom-card {
    position: relative;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.custom-card-header {
    position: absolute;
    top: -0.80rem; /* Moves the header above the border */
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    /* padding: 0 1.25rem; */
    padding-right: .2rem;
    padding-left: .2rem;
    font-size: 1.125rem;
    border-bottom: 1px solid #dee2e6; /* Optional: adds a border under the title */
    border-radius: 0.25rem;
    z-index: 1; /* Ensure the title is above the border */
    border-bottom: 0 !important;
}

.custom-card-body {
    padding-top: 1.5rem; /* Ensures content does not overlap the header */
}

.custom-card-header2 {
    left: 85px !important;
}



/*table header color*/
.custom-thead > tr > th{
    background: hsl(132.14deg 52.27% 41.98% / 79%);
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
}

/*breadcrumb styles*/
.breadcrumb-item a:hover {
    background-color: #f8f9fa; /* Light gray background */
    text-decoration: none; /* Prevents underline on hover */
}

/*auto complete results styles*/
#autocompleteResults {
    position: absolute;
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    margin-top: 4px;
    padding: 0;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    z-index: 1050;
}

    #autocompleteResults li {
        list-style: none;
        padding: 10px 14px;
        cursor: pointer;
        border-bottom: 1px solid #eee;
        transition: background-color 0.2s ease-in-out;
        font-size: 14px;
        color: #333;
    }

        #autocompleteResults li:last-child {
            border-bottom: none;
        }

        #autocompleteResults li:hover {
            background-color: #f1f3f5;
        }



.stg-card.ignored {
    opacity: 0.5;
    position: relative;
    transition: opacity 0.3s ease;
}

    .stg-card.ignored::after {
        content: "Ignored";
        position: absolute;
        top: 8px;
        left: 8px;
        background: rgb(247 210 136);
        color: #000;
        font-size: 0.8rem;
        font-weight: 600;
        padding: 2px 6px;
        border-radius: 4px;
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    }

.list-group-item.ignored {
    opacity: 0.6;
    position: relative;
    transition: opacity 0.3s ease;
}

/* Task card hover effect */
#taskCardGrid .p-3.rounded.shadow-2-strong {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
    will-change: transform, box-shadow, border;
    border: 1px solid transparent;
}

    #taskCardGrid .p-3.rounded.shadow-2-strong:hover {
        transform: translateY(-4px) scale(1.01);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(59, 113, 202, 0.3); /* soft blue highlight */
        cursor: pointer;
    }

/* Base style for flags in cards */
.task-card .fa-flag {
    transition: opacity 0.2s ease;
}

/* Hide only unflagged (outlined) flags */
.task-card .far.fa-flag {
    opacity: 0;
}

/* Show unflagged flag when hovering */
.task-card:hover .far.fa-flag {
    opacity: 1;
}

/* Keep red flagged icons always visible */
.task-card .fas.fa-flag {
    opacity: 1;
}

.taskcard-priority-indicator {
    display: flex;
    align-items: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

    .taskcard-priority-indicator:hover {
        transform: translateY(-2px);
        opacity: 0.85;
    }

    .taskcard-priority-indicator i {
        font-size: 0.85rem;
    }

/* Child task visual styling */
.child-task-card .task-card {
    transform: scale(0.90);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 0 4px rgba(120, 120, 120, 0.25) !important;
}

/* Connector line between parent and child tasks */
.child-task-card {
    position: relative;
}

    .child-task-card::before {
        content: '';
        position: absolute;
        top: 50%;
        left: -20px; /* adjust for gap between cards */
        width: 20px;
        height: 4px;
        background-color: rgba(120, 120, 120, 0.25);
        transform: translateY(-50%);
        z-index: 0;
        border-radius: 2px;
    }



/* Outer card for child tasks */
.outer-task-card {
    background-color: #fff;
    border: 1px solid rgba(120, 120, 120, 0.25);
}

/* Inner child task (the actual task card inside) */
.inner-task-card {
    background-color: #f7f8fb;
    transform: scale(0.96);
    box-shadow: 0 0 0 3px rgba(120, 120, 120, 0.25);
}





/*
    .task-card .child-task {
  padding-left: .25rem;
  border-left: 2px solid rgba(0,0,0,.1);
}
.task-card .parent-task i {
  color: #6c757d !important;
}
.task-card .child-task a {
  color: var(--mdb-primary);
}
.task-card.border-start {
  border-color: rgba(0,0,0,.1) !important;
}

.task-card.child-task {
    position: relative;
    margin-left: 1.25rem;
    transform: scale(0.90);
    background-color: #f9fafc !important;
}

.task-card.child-task {
    box-shadow: 0 0 14px rgba(100, 100, 100, 0.45);
    border: 1px solid rgba(180, 180, 180, 0.6);
}

#task-connector-layer {
    pointer-events: none;
}*/










/*.MyMinLayOutBody .MyMainNav {
    top: -50px;
    height: 0px;
    transition: 0.8s ease 0.2s;
}

.navLogo {
    height: 40px;
    transition: height 0.8s ease 0.2s;
}

.MyMinLayOutBody .MyMainNav .navLogo {
    height: 0px;
    transition: height 0.8s ease 0.2s;
}


.container {
    max-width: 98%;*/ /*!important;*/
/*}

@media (max-width: 768px) {
    .container {
        max-width: 100%;*/ /*!important;*/
/*}
}*/
/* Set padding to keep content from hitting the edges */
/*.body-content {
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 5px;
}

tr.faded td {
    background-color: lightgray !important;
}*/
/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
/*.dl-horizontal dt {
    white-space: normal;
}*/
/* Set width on the form input elements since they're 100% wide by default */
/*input,
select,
textarea {*/
/*max-width: 280px;*/
/*}

.navbar {
    padding-top: 0em;
    padding-bottom: 0em;
}

.navbar-dark {*/
/*background-color: #0471AF;*/
/*background-color: var(--navbar-color);
}

    .navbar-dark .navbar-nav > li > a {
        color: white !important;
    }

    .navbar-dark .navbar-brand {
        color: white !important;
    }*/
/*.navbar-brand {
    background-color: white;
}
*/
/* Remove underline from the "Log in" link */
/*.navbar-nav a {
    text-decoration: none;
}


td.quote-header, th.quote-header, tr.quote-header {
    background-color: rgb(0, 73, 144);
    color: white;
}

td.quote-subtotal, th.quote-subtotal, tr.quote-subtotal {
    background-color: #0471AF;
    color: white;
}

td.quote-linetotal, th.quote-linetotal, tr.quote-linetotal {
    background-color: rgb(0, 73, 144);
    color: white;
}

.barcode {
    font-family: 'Libre Barcode 39 Text';
    font-size: 30pt;
}

td.quote-number, th.quote-number, tr.quote-number {
    text-align: right;
}

td.quote-uom, th.quote-uom, tr.quote-uom {
    text-align: center;
}

.card {
    padding-top: 0em;
    padding-bottom: 0em;
    border-color: darkgrey;
}



.card-header {*/
/*background-color: #0471AF;*/
/*background-color: var(--navbar-color);
    color: white;
    padding-top: 0em;
    padding-bottom: 0em;
}

    .card-header.quote-line-disabled {
        background-color: lightgrey;
        color: black;
        padding-top: 0em;
        padding-bottom: 0em;
    }

    .card-header a {
        color: white;
    }

        .card-header a.dropdown-item {
            color: inherit !important;
        }*/
/*  .card-header .dropdown-menu {
        color:black !important;
    }*/
/*.card-default > .card-body {
    padding-top: 0em;
    padding-bottom: 0em;
}

.card-title {
    margin-top: .25em;
    margin-bottom: .25em;
}

.lineitem-card {
    margin-top: 1px;
    padding-top: 0em;
    padding-bottom: 0em;
    margin-left: -15px;
    margin-right: -15px;
    border: 1px;
    border-style: solid;
    border-color: darkgrey;
    margin-top: 1px;
}

    .lineitem-card > .card-header {
        background-color: lightblue;
        color: black;
        padding-top: 0em;
        padding-bottom: 0em;
        padding-left: .5em;
        padding-right: .5em;
        margin: 0px;
    }

    .lineitem-card > .card-body {
        padding-top: .5em;
        padding-bottom: .5em;
        padding-right: .5em;
        padding-left: .5em;
        margin: 0px;
    }

.note-private {
    background-color: #eeeeee !important;*/
/*border-image: linear-gradient(to left, #61c69d 0%, #2d72bc 100%);
    border-image-slice: 1;
    border-width: 3px;*/
/*}

.note-automatic {*/
/*background-color: #eeeeee !important;*/
/*font-size: medium;
    font-weight: 300;*/
/*border-image: linear-gradient(to left, #61c69d 0%, #2d72bc 100%);
    border-image-slice: 1;
    border-width: 3px;*/
/*}

.note-manual {
    background-color: lightyellow !important;
    font-weight: 500;
    font-size: large;*/
/*border-image: linear-gradient(to left, #61c69d 0%, #2d72bc 100%);
    border-image-slice: 1;
    border-width: 3px;*/
/*}

.note-storefeedback {
    background-color: lightgreen !important;
    font-weight: 500;
    font-size: large;*/
/*border-image: linear-gradient(to left, #61c69d 0%, #2d72bc 100%);
    border-image-slice: 1;
    border-width: 3px;*/
/*}

.note-card {
    color: white;
    margin-top: 1px;
    padding-top: 0em;
    padding-bottom: 0em;
    border: 1px;
    border-style: solid;
    border-color: darkgrey;
    margin-top: 1px;
}

    .note-card.new-card {
        -webkit-animation-name: new-note-card;*/ /* Safari 4.0 - 8.0 */
/*-webkit-animation-duration: 5s;*/ /* Safari 4.0 - 8.0 */
/*animation-name: new-note-card;
        animation-duration: 5s;
    }

@-webkit-keyframes new-note-card {
    from {
        background-color: lightgreen;
    }

    to {
        background-color: white;
    }
}*/
/* Standard syntax */
/*@keyframes new-note-card {
    from {
        background-color: lightgreen;
    }

    to {
        background-color: white;
    }
}

.note-card.new-card.note-private {
    -webkit-animation-name: new-note-card-private;*/ /* Safari 4.0 - 8.0 */
/*-webkit-animation-duration: 5s;*/ /* Safari 4.0 - 8.0 */
/*animation-name: new-note-card-private;
    animation-duration: 5s;
}

@-webkit-keyframes new-note-card-private {
    from {
        background-color: lightgreen;
    }

    to {
        background-color: #eeeeee;
    }
}*/
/* Standard syntax */
/*@keyframes new-note-card-private {
    from {
        background-color: lightgreen;
    }

    to {
        background-color: #eeeeee;
    }
}*/
/*.note-card > .card-heading {
    background-color: red;
    color: white;
    padding-top: 0em;
    padding-bottom: 0em;
}

.note-card > .card-body {
    color: black;
    padding-top: 0em;
    padding-bottom: 0em;
}

.note-card > .card-header {
    background-color: #95bfe9;
    color: black;
    font-size: small;
    padding-top: 0em;
    padding-bottom: 0em;
    margin: 0px;
}

.note-card > .card-footer {
    background-color: lightgray;
    color: black;
    font-size: small;
    padding-top: 0em;
    padding-bottom: 0em;
    margin: 0px;
}

.form-control {
    width: 100%;
}

.red-text {
    color: red;
}

.green-text {
    color: green;
}

.blue-text {
    color: blue;
}*/
/*Scrolling table for quotas*/
/*.scrolling table {
    table-layout: inherit;
    *margin-left: -100px;*/ /*ie7*/
/*}

.scrolling td, th {
    vertical-align: central;
    padding: 10px;
    min-width: 100px;
}
.table > thead > tr > th {
    background: var(--navbar-color);
}

.table-stripedGS > thead > tr:nth-child(odd) > td,
.table-stripedGS > thead > tr:nth-child(odd) > th {
    background-color: white !important;*/
/* Choose your own color here*/
/*}

.table-stripedGS > tbody > tr:nth-child(odd) > td,
.table-stripedGS > tbody > tr:nth-child(odd) > th {
    background-color: aqua !important;*/
/*// Choose your own color here*/
/*}

.table-stripedGS > tbody > tr:nth-child(even) > td,
.table-stripedGS > tbody > tr:nth-child(even) > th {
    background-color: white !important;*/
/*// Choose your own color here*/
/*}


table.scrolly {
    table-layout: fixed;
    border-spacing: 0px;
}

td.scrolly, th.scrolly {
    padding-left: 5px;
    padding-right: 5px;
    color: black;
    text-align: center
}

.scrolly_table {
    white-space: nowrap;
    overflow: auto;
}

.freeze {*/
/*background-color: blue;*/
/*z-index: 10;
    position: relative;
}

.freeze_vertical {*/
/*background-color: blue;*/
/*z-index: 5;
    position: relative;
}

.freeze_horizontal {*/
/*background-color: blue;*/
/*z-index: 1;
    position: relative;
}

.datepicker td {*/ /*Fixing date picker because of css above*/
/*min-width: inherit !important;
}

.datepicker th {
    min-width: inherit !important;
}

td.background-lightgreen {
    background-color: lightgreen !important;
}

td.no-wrap {
    white-space: nowrap;
}

td.background-lightgray {
    background-color: lightgray !important;
}

td.background-lightred {
    background-color: lightcoral !important;
}


.background-lightgreen {
    background-color: lightgreen !important;
}

.background-lightgray {
    background-color: lightgray !important;
}

.background-lightred {
    background-color: lightcoral !important;
}

.background-yellow {
    background-color: yellow !important;
}

tr.cell-background-lightgreen td {
    background-color: lightgreen !important;
}

tr.cell-background-lightgray td {
    background-color: lightgray !important;
}

tr.cell-background-lightred td {
    background-color: lightcoral !important;
}


tr.cell-background-yellow td {
    background-color: yellow !important;
}


tr.cell-background-yellow td {
    background-color: yellow !important;
}


tr.cell-background-lightyellow td {
    background-color: lightyellow !important;
}



tr.shaded td {
    background-color: lightgoldenrodyellow;
}

.row.equal {
    display: flex;
    flex-wrap: wrap;
}

.borderless td, .borderless th {
    border: none !important;
}

.panel-heading.Chicago {
    background-color: #B3DDF2;
}

.panel-heading.Cleveland {
    background-color: #FF7708;
}

tr.Chicago td {
    background-color: #B3DDF2;
}

tr.Cleveland td {
    background-color: #FF7708;
}

tr.HiPri td {
    background-color: lightcoral;
}

tr.HiPri th {
    background-color: lightcoral;
}

tr.Chicago th {
    background-color: #B3DDF2;
    color: #333;
}

tr.Cleveland th {
    background-color: #FF7708;
    color: #333;
}


.secondaryq {
    background-color: lightgoldenrodyellow;
}



tr.Highlight td {
    background-color: yellow !important;
}

tr.faded td {
    background-color: lightgray !important;
}

tr.checkedIn td {
    background-color: lightgreen !important;
}

th {
    background-color: var(--navbar-color);
    color: white;
}


td.no-border {
    border: none !important;
}



td.redbg {
    background-color: red;
}

td.inprogress {
    background-color: lightgoldenrodyellow;
}

tr.checkout td {
    background-color: lightgreen !important;
}

tr.inprogress td {
    background-color: lightgreen !important;
}

tr.error td {
    background-color: lightcoral !important;
}

tr.missingproduct td {
    background-color: #f4c242 !important;
}*/
/*.scrolling th {
    position: absolute;
    *position: relative;*/ /*ie7*/
/*left: 0;
    width: 75px;
    padding: 10px;
    font-weight: 400;
    vertical-align: central;
}*/
/*
.outer {
    position: relative;
}*/
/*
.inner {
    overflow-x: auto;
    overflow-y: visible;
    margin-left: 75px;
}
*/
/*End scrolling tables*/
/*.sched-table {
    margin-top: 2px;
    width: 95%;
    border: 1px solid #0471AF;
}

    .sched-table th {
        background-color: #0471AF;
        color: white;
        padding-top: 2px;
        padding-bottom: 2px;
    }

    .sched-table td {
        border: 1px solid gray;
    }

@media all and (min-width:1200px) {
    .container {
        width: 98%;
    }
}


.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -6px;
        margin-left: -1px;
        -webkit-border-radius: 0 6px 6px 6px;
        -moz-border-radius: 0 6px 6px 6px;
        border-radius: 0 6px 6px 6px;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu > a:after {
        display: block;
        content: " ";
        float: right;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 5px 0 5px 5px;
        border-left-color: #cccccc;
        margin-top: 5px;
        margin-right: -10px;
    }

    .dropdown-submenu:hover > a:after {
        border-left-color: #ffffff;
    }

    .dropdown-submenu.pull-left {
        float: none;
    }

        .dropdown-submenu.pull-left > .dropdown-menu {
            left: -100%;
            margin-left: 10px;
            -webkit-border-radius: 6px 0 6px 6px;
            -moz-border-radius: 6px 0 6px 6px;
            border-radius: 6px 0 6px 6px;
        }


.noMinWidth td, th {
    min-width: inherit !important
}


.menuItemUserIcon {
    font-size: 24px;
    color: white;
}

.attachmentbox {
    border-color: #999999;
    border-width: thin;
    border-style: solid;
    border-radius: 6px;
    box-shadow: 3px 5px 5px #979797;
    width: 200px;
    height: 245px;
}

.attachmentcontainer {
    max-width: 275px;
}

.linkedAttachment > .attachmentbox {
    background-color: lightgoldenrodyellow;
}

.attachmentbox-image {
    max-height: 180px;
    max-width: 220px;
}


.attachmentimagebox {
    height: 250px;
}


.dropzone {
    border: 2px dashed #0087F7;
    border-radius: 5px;
    background: white;
}



.attachmentModalBody {
    height: calc(100vh - 150px);
    width: 100%;
}


.slimform .form-group {
    margin-bottom: 0rem;
}


.card.card-frame {
    margin-top: 15px;
}

    .card.card-frame .card-header {
        background-color: transparent;
        color: black;
        border-bottom: none;
        position: relative;
        padding-bottom: 0px;
        top: -12px;
    }

        .card.card-frame .card-header .card-title {
            background-color: white;
            padding-left: 2px;
            padding-right: 2px;
            font-weight: bold;
        }

    .card.card-frame .card-body {
        padding-top: 0px;
        position: relative;
        top: -12px;
        padding-bottom: 8px;
    }

.popover-attachment {
    background-color: lightblue !important;
    border-color: lightblue !important;
    color: black !important;
    min-width: 280px;
}

tr.certattachment-progreessbar-row {
    background-color: lightblue !important;
    border-color: lightblue !important;
    color: black !important;
    transition: all 0.8s ease 0.2s;
}

    tr.certattachment-progreessbar-row td {
        border-color: lightblue !important;
    }


.dropzone {
    border: 2px dashed #0087F7 !important;
    border-radius: 5px !important;
    background: white !important;
}


#certattachmentdiv {
    height: calc(100vh - 250px);
    overflow-y: auto;
}

.required:before {
    content: "*";
    color: red;
}


option.staredoption {
    font-weight: bold;
}

.nav-tabs {
    margin-bottom: 0;
}

    .nav-tabs .nav-link {
        color: #232323;
        border: 1px solid #ddd;
        border-top-left-radius: 0.5rem;
        border-top-right-radius: 0.5rem;
    }

        .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
            color: black;
            font-weight: bold;
            background-color: bisque;
            border: 1px solid #ddd;
        }




@media (max-width: 991.98px) {
    .navbar-expand-lg.fixed-top {
        overflow-y: scroll;
        max-height: 100vh;
    }
}


.table.table-cm > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.4285;
    vertical-align: top;
    border: 1px solid #ddd;
    font-size: 14px;
    font-weight: 400;
}

.table.table-cm.table-borderless > thead > tr > th, .table.table-borderless > tbody > tr > th, .table.table-borderless > tfoot > tr > th, .table > thead > tr > td, .table.table-borderless > tbody > tr > td, .table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.4285;
    vertical-align: top;
    border: 0px solid #ddd;
    font-size: 14px;
    font-weight: 400;
}

.card.workorder .card-header {
    background-color: #008000;
    color: white;
}

    .card.workorder .card-header a {
        color: white;
    }

.card.workorder th {
    background-color: #fcfc93;
    background-color: #008000;
}

.card.priorityjob .card-header {
    background-color: #ff4343
}

.card.priorityjob.workorder .card-header {
    background: rgb(255,67,67);
    background: linear-gradient(90deg, rgba(255,67,67) 0%, rgba(0,128,0) 100%);
}

.card.priorityjob th {
    background-color: #ff4343
}

.card.rapidinstall .card-header {
    background-color: #f75802
}

.card.priorityjob.rapidinstall .card-header {
    background: rgb(255,67,67);
    background: linear-gradient(90deg, rgba(255,67,67) 0%, #f75802 100%);
}

.card.linkedjob .card-header {
    background-color: #fcfc93;
    color: black;
}

    .card.linkedjob .card-header a {
        color: black;
    }

.card.linkedjob.workorder .card-header {
    background: rgb(252,252,147);
    background: linear-gradient(90deg, rgba(252,252,147,1) 0%, rgba(0,128,0,1) 100%);
    color: black;
}

.card.linkedjob.priorityjob .card-header {
    background: rgb(255,67,67);
    background: linear-gradient(90deg, rgba(255,67,67,1) 0%, rgba(252,252,147,1) 100%);
    color: black;
}

.card.linkedjob th {
    background-color: #fcfc93;
    color: black;
}


.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;*/
/*position the autocomplete items to be the same width as the container:*/
/*top: 100%;
    left: 0;
    right: 0;
}

    .autocomplete-items div {
        padding: 10px;
        cursor: pointer;
        background-color: #fff;
        border-bottom: 1px solid #d4d4d4;
    }

        .autocomplete-items div:hover {*/
/*when hovering an item:*/
/*background-color: #e9e9e9;
        }

.autocomplete-active {*/
/*when navigating through the items using the arrow keys:*/
/*background-color: DodgerBlue !important;
    color: #ffffff;
}


.form-control-plaintext:disabled {
    display: block;
    width: 100%;
    padding: 0.375rem 0;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0;
}


a.nolink {
    color: inherit;
    text-decoration: none;
}

    a.nolink :hover {
        text-decoration: none;
    }

    a.nolink :link {
        text-decoration: none;
    }


.custInfoLabel {
    text-align: right;
    width: 180px;
    font-weight: bold;
    display: inline-block;
    vertical-align: top;
}

.custInofData {
    display: inline-block;
}

@media (max-width: 1540px) {
    .custInfoLabel {
        text-align: left;
        display: block;
        width: auto;
    }

        .custInfoLabel.custInfoFull {
            display: inline-block;
        }
}

@media (max-width: 770px) {
    .custInfoLabel.custInfoFull {
        display: block;
    }
}

@media print {
    .col-print-1 {
        width: 8%;
        float: left;
    }

    .col-print-2 {
        width: 16%;
        float: left;
    }

    .col-print-3 {
        width: 25%;
        float: left;
    }

    .col-print-4 {
        width: 33%;
        float: left;
    }

    .col-print-5 {
        width: 42%;
        float: left;
    }

    .col-print-6 {
        width: 50%;
        float: left;
    }

    .col-print-7 {
        width: 58%;
        float: left;
    }

    .col-print-8 {
        width: 66%;
        float: left;
    }

    .col-print-9 {
        width: 75%;
        float: left;
    }

    .col-print-10 {
        width: 83%;
        float: left;
    }

    .col-print-11 {
        width: 92%;
        float: left;
    }

    .col-print-12 {
        width: 100%;
        float: left;
    }
}



.wrkrmInfoLabel {
    text-align: right;
    width: 250px;
    font-weight: bold;
    display: inline-block;
}

.wrkrmInofData {
    display: inline-block;
}

@media (max-width: 1592px) {
    .wrkrmInfoLabel {
        text-align: left;
        display: block;
        width: auto;
    }

        .wrkrmInfoLabel.custInfoFull {
            display: inline-block;
        }
}

@media (max-width: 770px) {
    .wrkrmInfoLabel.custInfoFull {
        display: block;
    }
}

.crewInfoLabel {
    text-align: right;
    width: 150px;
    font-weight: bold;
    display: inline-block;
    vertical-align: top;
}

.crewInfoData {
    display: inline-block;
}

@media (max-width: 1475px) {
    .crewInfoLabel {
        text-align: left;
        display: block;
        width: auto;
    }

        .crewInfoLabel.crewInfoFull {
            display: inline-block;
        }
}

@media (max-width: 770px) {
    .crewInfoLabel.crewInfoFull {
        display: block;
    }
}


.addInfoLabel {
    text-align: right;
    width: 140px;
    font-weight: bold;
    display: inline-block;
}

.addInfoData {
    display: inline-block;
}

@media (max-width: 1475px) {
    .addInfoLabel {
        text-align: left;
        display: block;
        width: auto;
    }

        .addInfoLabel.crewInfoFull {
            display: inline-block;
        }
}

@media (max-width: 770px) {
    .addInfoLabel.crewInfoFull {
        display: block;
    }
}

.dtrg-group th {
    color: black;
}


.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-property: height, visibility;
    transition-property: height, visibility;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}

    .collapsing.width {
        -webkit-transition-property: width, visibility;
        transition-property: width, visibility;
        width: 0;
        height: auto;
    }

.color-red {
    color: red;
}

.color-blue {
    color: blue;
}

.color-white {
    color: white;
}

.attInfoLabel {
    text-align: right;
    width: 45px;
    font-weight: bold;
    display: inline-block;
    font-size: small;
    white-space: nowrap;
}

.attInfoData {
    font-size: small;
    display: inline-block;
}

.wo-title {
    font-weight: bold;
    font-style: italic;
    color: #666666;
}


.cdocInfoLabel {
    text-align: right;
    width: 175px;
    font-weight: bold;
    display: inline-block;
}

.cdocInfoData {
    display: inline-block;
}

@media (max-width: 1475px) {
    .cdocInfoLabel {
        text-align: left;
        display: block;
        width: auto;
    }

        .cdocInfoLabel.cdocInfoFull {
            display: inline-block;
        }
}

@media (max-width: 770px) {
    .cdocInfoLabel.cdocInfoFull {
        display: block;
    }
}


.idb-stripped tr.odd {
    background-color: rgba(0,0,0,.05);
}




.SmallView .MyMainNav {
    height: 40px;
    font-size: .8rem;
}



.SmallView .menuItemUserIcon {
    font-size: 20px;
}

.SmallView .navLogo {
    height: 25px;
}

for sm */
.custom-switch.custom-switch-sm .custom-control-label {
    padding-left: 1rem;
    padding-bottom: 1rem;
}

.custom-switch.custom-switch-sm .custom-control-label::before {
    height: 1rem;
    width: calc(1rem + 0.75rem);
    border-radius: 2rem;
}

.custom-switch.custom-switch-sm .custom-control-label::after {
    width: calc(1rem - 4px);
    height: calc(1rem - 4px);
    border-radius: calc(1rem - (1rem / 2));
}

.custom-switch.custom-switch-sm .custom-control-input:checked ~ .custom-control-label::after {
    transform: translateX(calc(1rem - 0.25rem));
}*/

/* for md */
/*
.custom-switch.custom-switch-md .custom-control-label {
    padding-left: 2rem;
    padding-bottom: 1.5rem;
}

    .custom-switch.custom-switch-md .custom-control-label::before {
        height: 1.5rem;
        width: calc(2rem + 0.75rem);
        border-radius: 3rem;
    }

    .custom-switch.custom-switch-md .custom-control-label::after {
        width: calc(1.5rem - 4px);
        height: calc(1.5rem - 4px);
        border-radius: calc(2rem - (1.5rem / 2));
    }

.custom-switch.custom-switch-md .custom-control-input:checked ~ .custom-control-label::after {
    transform: translateX(calc(1.5rem - 0.25rem));
}
*/
/* for lg */
/*
.custom-switch.custom-switch-lg .custom-control-label {
    padding-left: 3rem;
    padding-bottom: 2rem;
}

    .custom-switch.custom-switch-lg .custom-control-label::before {
        height: 2rem;
        width: calc(3rem + 0.75rem);
        border-radius: 4rem;
    }

    .custom-switch.custom-switch-lg .custom-control-label::after {
        width: calc(2rem - 4px);
        height: calc(2rem - 4px);
        border-radius: calc(3rem - (2rem / 2));
    }

.custom-switch.custom-switch-lg .custom-control-input:checked ~ .custom-control-label::after {
    transform: translateX(calc(2rem - 0.25rem));
}
*/
/* for xl */
/*
.custom-switch.custom-switch-xl .custom-control-label {
    padding-left: 4rem;
    padding-bottom: 2.5rem;
}

    .custom-switch.custom-switch-xl .custom-control-label::before {
        height: 2.5rem;
        width: calc(4rem + 0.75rem);
        border-radius: 5rem;
    }

    .custom-switch.custom-switch-xl .custom-control-label::after {
        width: calc(2.5rem - 4px);
        height: calc(2.5rem - 4px);
        border-radius: calc(4rem - (2.5rem / 2));
    }

.custom-switch.custom-switch-xl .custom-control-input:checked ~ .custom-control-label::after {
    transform: translateX(calc(2.5rem - 0.25rem));
}



@media (min-width: 992px) {
    .modal-xxl {
        max-width: 942px;
    }
}

@media (min-width: 1200px) {
    .modal-xxl {
        max-width: 1140px;
    }
}


@media (min-width: 1440px) {
    .modal-xxl {
        max-width: 1400px;
    }
}


@media (min-width: 1440px) {
    .modal-xxl {
        max-width: 1400px;
    }
}

@media (min-width: 1600px) {
    .modal-xxl {
        max-width: 1560px;
    }
}
*/