/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification 
for details on configuring this project to bundle and minify static web assets. */

html {
    min-height: 100%;
}

body {
    padding-top: 50px;
    padding-bottom: 20px;
    font-family: "Roboto", sans-serif; /*"Helvetica Neue", Helvetica, Arial, sans-serif;*/
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 1em;
    padding-right: 1em;
}

.content-group {
    margin-top: 1em;
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 1em;
    padding-bottom: 1em;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.footer-bubble {
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    margin-top: -0.5rem;
    font-size: 1.3rem;
    min-height: min(10vw, 2rem);
    width: min(500vw, 30rem);
}

.navbar-inverse {
    background-color: #000;
}

    .navbar-inverse .navbar-brand {
        color: #ffffff;
        padding-top: 10px;
        font-weight: bold;
    }

    .navbar-inverse .brand-sub {
        top: -5px;
        font-size: x-small;
    }

    .navbar-inverse .navbar-nav > li > a {
        color: #d9d9d9;
    }

    .navbar-inverse .navbar-nav, .navbar-inverse .navbar-nav .dropdown-menu > li > a {
        font-size: 1.32rem;
    }

.tab-divider {
    margin-left: 20px;
}

.checkbox-hr {
    margin-top: 5px;
    margin-bottom: 5px;
}

.glyph-light {
    color: #ffffff;
    font-size: 16px;
    padding: 2px;
}

.glyph-disabled {
    color: #dddddd;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    text-align: right;
}

.table-hover > tbody > tr:hover > td {
    background-color: #d6d6d647;
}

.label-part-standard {
    background-color: #4c68b6;
}

.label-part-custom {
    background-color: #7d8ba4;
}

.label-service-standard {
    background-color: #309d2f;
}

.label-service-custom {
    background-color: #69856b;
}

.line-detail > td {
    background-color: #ACABAB;
    padding: 0 0 1rem 0 !important;
    border-left-width: 0 !important;
    border-right-width: 0 !important;
}

/*Custom Kendo Styling*/
.k-alt {
    background-color: transparent;
}

.k-grid table tr.k-state-selected {
    background: #337ab7;
}

.page-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.k-dirty {
    border-width: 5px;
    border-color: #f0ad4e transparent transparent #f0ad4e;
}

.k-dropdownlist {
    height: 3.2rem;
}

:root {
    --kendo-font-family: Roboto, sans-serif;
    --kendo-font-size: 1.25rem;
    --kendo-icon-size: 1.5rem;
    --kendo-color-on-app-surface: #001c40;
    --kendo-color-base-subtle-hover: #EEF6FF;
}

.k-svg-icon {
    width: 1.5rem;
    height: 1.5rem;
}

    .k-svg-icon.k-icon-sm {
        width: 1.25rem;
        height: 1.25rem;
    }

.k-list-item-text{
    width:100%;
}

.k-grid .k-cell-inner .k-grid-filter, .k-grid .k-cell-inner .k-header-column-menu, .k-grid .k-cell-inner .k-grid-header-menu {
    margin-inline-end: 0;
}

.k-grid a {
    color: #337ab7;
}

    .k-grid a:hover {
        text-decoration: underline;
    }

.k-column-title {
    margin-right: 0.5rem;
}

.monospaced {
    white-space: pre-wrap;
    font-family: "Roboto Mono", Consolas, sans-serif;
}

.number {
    text-align: right !important;
}

.open-bottom {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-width: 0;
    margin-bottom: -3px;
    border-color: #ccc;
}

.open-top {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top-width: 0;
    margin-top: 0;
}

.outer-spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-color: #236fe0a8;
    border-left-color: transparent;
    border-right-color: transparent;
    border-width: 5px;
    border-style: solid;
    border-radius: 100px;
    animation-name: spin;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.inner-spinner {
    margin: 1px;
    width: 38px;
    height: 38px;
    border-color: #236fe0a8;
    border-left-color: transparent;
    border-right-color: transparent;
    border-width: 5px;
    border-style: solid;
    border-radius: 100px;
    animation-name: spin;
    animation-duration: 5000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#loading-icon {
    position: fixed;
    z-index: 100001;
    left: 50%;
    top: 50%;
    margin-left: -30px;
    margin-top: -30px;
    background-color: #fff;
    width: 80px;
    height: 80px;
    box-shadow: 0 2px 6px 3px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding-top: 15px;
}

#loading-modal:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    background-color: rgba(0,0,0,0.5);
}

#session-expired-window {
    position: fixed;
    z-index: 30;
    left: 50%;
    top: 50%;
    margin-left: -250px;
    margin-top: -50px;
    background-color: #fff;
    width: 500px;
    height: 105px;
    box-shadow: 0 2px 6px 3px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding-top: 15px;
}

/*new global styles*/
.lq-panel {
    border-color: #004D77;
    border-radius: 10px;
}

    .lq-panel .panel-heading {
        color: #fff;
        font-weight: bold;
        background-color: #004D77;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        padding: 3px 3px;
    }

    .lq-panel .panel-title {
        font-weight: bold;
    }

.lq-table-info {
}

    .lq-table-info > tbody > tr {
    }

        .lq-table-info > tbody > tr > th,
        .lq-table-info > tbody > tr > td {
            border-bottom: 1px solid #cad1d9;
            border-top: 0;
            vertical-align: top;
            padding-top: 1rem;
            padding-bottom: 0.2rem;
        }

.lq-table-list {
}

    .lq-table-list .lq-table-list {
        margin-bottom: 0;
    }

    .lq-table-list > tbody > tr {
        border-left: 1px solid #cad1d9;
        border-right: 1px solid #cad1d9;
    }

        .lq-table-list > tbody > tr > th {
            border: 1px solid #003754;
            border-top: 0;
            padding: 0.7rem;
            line-height: 1.2rem;
        }

        .lq-table-list > tbody > tr > td {
            border: 1px solid #cad1d9;
            border-top: 0;
            vertical-align: top;
            padding: 0.4rem;
            line-height: 1.2rem;
        }

    .lq-table-list .lq-table-list > tbody > tr {
        border-left: 0;
        border-right: 0;
        background-color: whitesmoke;
    }


    .lq-table-list.small > tbody > tr > td {
        padding: 0.5rem;
        line-height: 0.5rem;
        font-size: 1.1rem;
    }

    .lq-table-list > .lq-table-list > tbody > tr > td:first-child {
        border-left: 0;
        border-bottom: 0;
    }

    .lq-table-list .lq-table-list > tbody > tr > td:last-child {
        border-right: 0;
    }

    .lq-table-list.sources > tbody > tr > td:first-child {
        background-color: transparent;
        border: 0;
    }

    .lq-table-list.sources > tbody > tr > td {
        background-color: #fff;
    }

.lq-table-options {
    background-color: #fff;
    border-width: 0 !important;
}

    .lq-table-options > th {
        position: sticky;
        top: 10.2rem;
        height: 5rem;
        z-index: 8;
        background-color: #fff;
        border-width: 0 !important;
    }

.lq-table-header-w-options {
    background-color: #004d77;
    color: white;
}

    .lq-table-header-w-options > th {
        position: sticky;
        top: 15rem;
        z-index: 8;
        background-color: #004d77;
        border: 1px solid #003754;
    }

.lq-table-header {
    background-color: #004d77;
    color: white;
}

    .lq-table-header > th {
        position: sticky;
        top: 10rem;
        z-index: 8;
        background-color: #004d77;
        border: 1px solid #003754;
    }

.lq-table-subheader {
    background-color: #004d77;
    color: white;
}

    .lq-table-subheader > th {
        top: 10rem;
        z-index: 8;
        background-color: #4c7a93;
        border: 1px solid #003754;
        line-height: 0.5rem !important;
    }

.lq-item-line-input {
    font-size: 1.6rem;
    height: 4rem;
    padding: 0.5rem 0.5rem;
}

.lq-source-line-input {
    font-size: 1.4rem;
    padding: 0.5rem 0.5rem;
}

h1, h2, h3 {
    font-weight: bold;
}

    h3 .btn {
        margin-top: -0.5rem;
    }

.new-source-div {
    background-color: whitesmoke;
    height: 3rem;
}

.value-up {
    background-color: #62ff601a;
}

.value-down {
    background-color: #ff00000f;
}

.status-dot {
    background-color: #bfbfbf;
    border-radius: 30px;
    width: 0.7rem;
    height: 0.7rem;
    display: inline-block;
    margin-right: 0.5rem;
    top: -0.12rem;
    position: relative;
    vertical-align: middle;
}

.status-label {
    background-color: #f1f1f1;
    border-radius: 30px;
    padding: 1px 8px;
    display: inline-block;
    color: #5f5f5f;
}

.status-dot.Open {
}

.status-label.Open {
}

.status-dot.Cancelled {
    background-color: #ffffff;
}

.status-label.Cancelled {
    background-color: #373737;
    color: #e5e5e5;
}

.status-dot.Submitted {
    background-color: #4DADFF;
}

.status-label.Submitted {
    background-color: #CEE1F1;
    color: #286090;
}

.status-dot.InProgress, .status-dot.Waiting {
    background-color: #4DADFF;
}

.status-label.InProgress, .status-label.Waiting {
    background-color: #CEE1F1;
    color: #286090;
}

.status-dot.Awarded {
    background-color: #5CB85C;
}

.status-label.Awarded {
    background-color: #D8EAD8;
    color: #398439;
}

.status-dot.Complete, .status-dot.Approved {
    background-color: #5CB85C;
}

.status-label.Complete, .status-label.Approved {
    background-color: #D8EAD8;
    color: #398439;
}

.status-dot.Lost, .status-dot.Rejected {
    background-color: #D95350;
}

.status-label.Lost, .status-label.Rejected {
    background-color: #FBD6D5;
    color: #AC2925;
}

.status-dot.Expired {
    background-color: #e9aa00;
}

.status-label.Expired {
    background-color: #fff96a;
    color: #ab7d02;
}

span.prog-bar {
    border-color: #a9a9a9;
    border-width: 1px;
    border-style: solid;
    border-radius: 30px;
    line-height: 0.85rem;
    margin: 0px 5px 5px 5px;
    font-size: smaller;
    text-align: left;
    padding: 0;
}

span.prog-bar-sm {
    border-color: #a9a9a9;
    border-width: 1px;
    border-style: solid;
    border-radius: 30px;
    font-size: smaller;
    text-align: left;
    padding: 0;
    margin: -2px 5px 5px 15px;
}

.prog-bar-inner {
    background-color: #cfffbf;
    display: block;
    width: 50%;
    border-radius: 30px;
    text-align: right;
    padding: 1px;
}

.prog-bar-inner-sm {
    background-color: #979797;
    display: block;
    width: 50%;
    border-radius: 30px;
    text-align: right;
    padding: 1px;
}


.default-progress {
    background-color: #efefef;
}

.zero-progress {
    background-color: #ffd7d7;
}

.partial-progress {
    background-color: #ffe68d;
}

.done-progress {
    background-color: #cfffbf;
}

.prog-bar-inner-sm.zero-progress {
    background-color: transparent;
}

.prog-bar-inner.zero-progress {
    background-color: transparent;
}

.btn {
    margin-bottom: 3px;
}

.btn-default, .btn-default span {
    border-color: #084364;
    background-color: #fff;
    color: #084364;
}

    .btn-default:hover, .btn-default:active, .btn-default:active:hover, .btn-default:focus {
        border-color: #084364;
        background-color: #EEF6FF;
        color: #000;
    }

        .btn-default:hover span, .btn-default:active span, .btn-default:active:hover span, .btn-default:focus span {
            background-color: #EEF6FF;
            color: #000;
        }

.btn-primary, .btn-primary span {
    background-color: #B1D5FF;
    border-color: #B1D5FF;
    color: #084364;
}

    .btn-primary:hover, .btn-primary:active, .btn-primary:active:hover, .btn-primary:focus {
        background-color: #A4C8F2;
        border-color: #A4C8F2;
        color: #000;
    }

        .btn-primary:hover span, .btn-primary:active span, .btn-primary:active:hover span, .btn-primary:focus span {
            background-color: #A4C8F2;
            border-color: #A4C8F2;
            color: #000;
        }

.btn-info, .btn-info span {
    background-color: #B1D5FF;
    border-color: #B1D5FF;
    color: #084364;
}

    .btn-info:hover, .btn-info:active, .btn-info:active:hover, .btn-info:focus {
        background-color: #A4C8F2;
        border-color: #A4C8F2;
        color: #000;
    }

        .btn-info:hover span, .btn-info:active span, .btn-info:active:hover span, .btn-info:focus span {
            background-color: #A4C8F2;
            border-color: #A4C8F2;
            color: #000;
        }

.btn-warning, .btn-warning span {
    background-color: #FFBE49;
    border-color: #FFBE49;
    color: #57480d;
}

    .btn-warning:hover, .btn-warning:active, .btn-warning:active:hover, .btn-warning:focus {
        background-color: #ECAF41;
        border-color: #ECAF41;
        color: #000;
    }

        .btn-warning:hover span, .btn-warning:active span, .btn-warning:active:hover span, .btn-warning:focus span {
            background-color: #ECAF41;
            border-color: #ECAF41;
            color: #000;
        }

.btn-danger, .btn-danger span {
    background-color: #cb2722;
    border-color: #cb2722;
    color: #fff;
}

    .btn-danger:hover, .btn-danger:active, .btn-danger:active:hover, .btn-danger:focus {
        background-color: #AC2925;
        border-color: #AC2925;
        color: #f1f1f1;
    }

        .btn-danger:hover span, .btn-danger:active span, .btn-danger:active:hover span, .btn-danger:focus span {
            background-color: #AC2925;
            border-color: #AC2925;
            color: #f1f1f1;
        }

.btn-success, .btn-success span {
    background-color: #4d8d51;
    border-color: #4d8d51;
    color: #fff;
}

    .btn-success:hover, .btn-success:active, .btn-success:active:hover, .btn-success:focus {
        background-color: #3E7541;
        border-color: #3E7541;
        color: #f1f1f1;
    }

        .btn-success:hover span, .btn-success:active span, .btn-success:active:hover span, .btn-success:focus span {
            background-color: #3E7541;
            border-color: #3E7541;
            color: #f1f1f1;
        }

.order.tiny-project-display {
    font-size: 11px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-height: 15px !important;
}


/**********************************/
/* Kendo Upload Styles */
/* Kendo Upload Dropzone Styles */
/**********************************/
.k-dropzone-active {
    padding: 2rem;
    min-height: 200px;
    background-color: #f9f9f9;
    border: 2px dashed #ccc;
}

.k-upload-dropzone {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    padding: 1rem;
    gap: 1rem;
}

.k-upload .k-dropzone, .k-upload .k-upload-dropzone {
     text-align: center;
}

.k-upload-button-wrap {
     position: static;
}

.error-message {
    color: red;
    font-weight: normal;
    margin-top: 4px;
    display: block;
}

.text-align-right {
    text-align: right !important;
}