/*
	Author: Counterpart
	https://www.counterpart.biz/
*/
/* flexbox mixins */
/* custom bootstrap gutters */
.gutter-80 > [class^="col-"], .gutter-80 > [class^=" col-"] {
    padding-right: 40px;
    padding-left: 40px;
}

.gutter-60 > [class^="col-"], .gutter-60 > [class^=" col-"] {
    padding-right: 30px;
    padding-left: 30px;
}

.gutter-40 > [class^="col-"], .gutter-40 > [class^=" col-"] {
    padding-right: 20px;
    padding-left: 20px;
}

.gutter-20 > [class^="col-"], .gutter-20 > [class^=" col-"] {
    padding-right: 10px;
    padding-left: 10px;
}

.gutter-10 > [class^="col-"], .gutter-10 > [class^=" col-"] {
    padding-right: 5px;
    padding-left: 5px;
}

.gutter-0 > [class^="col-"], .gutter-0 > [class^=" col-"] {
    padding-right: 0;
    padding-left: 0;
}

.input-group-round .form-control {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-color: #b8b8b8;
}

.input-group-round .input-group-addon, .input-group-round .input-group-btn .btn {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-color: #b8b8b8;
}

.input-group-lg > .input-group-btn > .btn, .input-group-lg > .form-control {
    font-size: 18px;
}

.input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
    height: 50px;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(81, 165, 176, 0.25);
}

.no-bullets {
    list-style-type: none;
}

.text-strong {
    font-weight: 600;
}

.text-med {
    font-weight: 500;
}

.m-0 {
    margin: 0 !important;
}

.mt-30 {
    margin-top: 30px;
}

.p-0 {
    padding: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.px-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.d-flex, .d-md-flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.d-block {
    display: block;
}

.nowrap {
    white-space: nowrap;
}

.no-round {
    border-radius: 0;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-end {
    justify-content: flex-end;
}

.btn-shadow {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
}

.btn-accent-blue {
    background: #218EDE;
    color: #fff;
}

    .btn-accent-blue:hover, .btn-accent-blue:focus {
        color: #fff;
        background: #1a72b2;
    }

.btn-outline-accent-blue {
    background: #fff;
    color: #218EDE;
    border: 1px solid #218EDE;
}

    .btn-outline-accent-blue:hover, .btn-outline-accent-blue:focus {
        color: #fff;
        background: #218EDE;
    }

.btn-outline-dark {
    background: #fff;
    border: 1px solid #333333;
    color: #333333;
}

    .btn-outline-dark:hover, .btn-outline-dark:focus {
        color: #fff;
        background: #333333;
    }

.btn-outline-white {
    background: none;
    border: 1px solid #fff;
    color: #fff;
}

    .btn-outline-white:hover, .btn-outline-white:focus {
        color: #333;
        background: #fff;
    }

.btn-outline-success {
    background: none;
    border: 1px solid #4caf50;
    color: #4caf50;
}

    .btn-outline-success:hover, .btn-outline-success:focus {
        color: #fff;
        background: #4caf50;
    }

.btn {
    font-weight: 500;
}

.btn-xlg2 {
    font-size: 1.5em;
}

.actions-list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

    .actions-list li {
        margin-right: 10px;
    }

        .actions-list li:last-child {
            margin-right: 0;
        }

    .actions-list a {
        white-space: nowrap;
    }

.action-circle {
    background: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.41);
    color: #333;
    position: relative;
}

    .action-circle.notification-indicator:before {
        background: #e40d0d;
        width: 8px;
        height: 8px;
        position: absolute;
        right: 0;
        top: 0;
        content: "";
        border-radius: 50%;
    }

@media (min-width: 1200px) {
    .container-xs {
        width: 900px;
    }
}

.hvr-grow {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

    .hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

@media screen and (min-width: 1200px) {
    .modal-xl {
        width: 1100px;
    }
}

@media screen and (max-width: 1200px) {
    .modal-xl {
        width: 95%;
        margin: 20px auto;
    }
}

.modal-footer-btn {
    font-size: 20px;
    padding: 15px 10px;
}

.circle-check {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #00BCD4;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

    .circle-check.checked {
        background: #00BCD4;
    }

    .circle-check .icon {
        font-size: 20px;
    }

a.body-text-link {
    color: #333;
}

.dataTable thead th.sorting_disabled:before, .dataTable thead th.sorting_disabled:after {
    content: "";
}

table.table {
    width: 100% !important;
}

.dtr-data .actions-list {
    flex-direction: column;
}

    .dtr-data .actions-list li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

.dtr-data .action-circle {
    width: 100%;
    border-radius: 3px;
    text-align: center;
    box-shadow: none;
    border: 1px solid #b7b7b7;
}

.leader-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

    .leader-list li {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        background: url(../images/toc-dot.png) repeat-x 0 61%;
    }

    .leader-list span {
        background: #fff;
    }

        .leader-list span:first-child {
            padding-right: 5px;
        }

        .leader-list span:last-child {
            padding-left: 5px;
        }

.btn.btn-disabled {
    background: #E8E8E8;
    color: #B1B1B1;
    cursor: not-allowed;
}

@media screen and (min-width: 991px) {
    .content.narrow {
        max-width: 760px;
        margin: 0 auto;
    }
}

.box-selects .option {
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    cursor: pointer;
    -o-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

    .box-selects .option:last-child {
        margin-bottom: 0;
    }

    .box-selects .option.selected {
        background: #EFFAFF;
        border-color: #218EDE;
    }

        .box-selects .option.selected .check {
            background: #218EDE;
            border-color: #218EDE;
        }

    .box-selects .option:hover {
        border-color: #218EDE;
        transform: scale(1.02);
        color: #218EDE;
    }

        .box-selects .option:hover .check {
            border-color: #218EDE;
        }

    .box-selects .option .check {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        border: 1px solid #d0d0d0;
        margin-right: 10px;
        color: #fff;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .box-selects .option .check .icon {
            top: 0;
        }

.accordion-header {
    background: #218EDE;
    border-bottom: 1px solid #fff;
    color: #fff;
    padding: 8px 15px;
    cursor: pointer;
}

    .accordion-header h6 {
        font-weight: 600;
    }

    .accordion-header .icon {
        font-size: 20px;
    }


.text-highlight-yellow {
    background: #f6ee47;
    padding: 1px;
}

/* notifications */
.notifications-list {
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.13);
    border-radius: 5px;
    overflow: auto;
    max-height: 260px;
    background: #fff;
}

    .notifications-list table {
        width: 100%;
    }

    .notifications-list th {
        text-transform: uppercase;
        font-size: 12px;
        color: #999999;
    }

    .notifications-list td {
        padding: 10px;
        border-top: 1px solid #ededed;
    }

    .notifications-list th {
        padding: 10px;
    }

    .notifications-list .new {
        background: #dff2f9;
        font-weight: 600;
    }

        .notifications-list .new .label {
            font-size: 11px;
            margin: 0;
        }

.view-notification {
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.13);
    border-radius: 5px;
    margin-top: 20px;
}

    .view-notification .btn {
        font-weight: 600;
    }

#NotificationsModal .btn {
    transition: all ease 0.2s;
    -webkit-transition: all ease 0.2s;
}

    #NotificationsModal .btn:hover {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
    }

#NotificationsModal .modal-body {
    background: #eeeeee;
}

.view-notification .message {
    padding: 10px;
    margin-bottom: 15px;
    background: #fff;
}

.notification-header {
    padding: 15px;
    text-align: center;
    background: #fff;
    border-bottom: 1px solid #ededed;
}

.new-notification-title, .view-archived .text-center p {
    margin: 0;
    font-weight: 600;
    font-size: 1.2em;
}

.view-archived {
    display: none;
}

/* order single page */
.purchase-order-detail .purchase-order-header {
    background: #E9F6F8;
    border: 1px solid #D6D6D6;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    padding: 10px;
}

.purchase-order-detail .purchase-order-table .label {
    font-size: 0.96em;
}

.purchase-order-detail .purchase-order-table td, .purchase-order-detail .purchase-order-table th {
    padding: 12px 10px;
}

.purchase-order-detail th .btn {
    font-size: 0.8em;
    padding: 5px;
}

.purchase-order-detail .record-received.highlight {
    background: #fefef2;
    background: -moz-linear-gradient(90deg, #fefef2 0%, #f8f5b8 100%);
    background: -webkit-linear-gradient(90deg, #fefef2 0%, #f8f5b8 100%);
    background: linear-gradient(90deg, #fefef2 0%, #f8f5b8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fefef2",endColorstr="#f8f5b8",GradientType=1);
}

.purchase-order-detail .item-description {
    width: 540px;
}

.highlighted-input-group {
    box-shadow: 0 0 7px rgba(242, 121, 17, 0.55);
}

    .highlighted-input-group .btn-default {
        background: white;
        background: -moz-linear-gradient(180deg, white 0%, #f5f4f4 100%);
        background: -webkit-linear-gradient(180deg, white 0%, #f5f4f4 100%);
        background: linear-gradient(180deg, white 0%, #f5f4f4 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#f5f4f4",GradientType=1);
        font-size: 10px;
        font-weight: 500;
        padding: 4px 6px;
        white-space: normal;
        width: 58px;
    }

    .highlighted-input-group .icon {
        display: block;
    }

    .highlighted-input-group .form-control {
        border-right: none;
        height: 41px;
        font-weight: 600;
        font-size: 1.2em;
    }

    .highlighted-input-group input::-webkit-outer-spin-button,
    .highlighted-input-group input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .highlighted-input-group input[type=number] {
        -moz-appearance: textfield;
    }

.record-received-header {
    color: #fff;
    background: #444A53;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    position: sticky;
    top: 92px;
    z-index: 999;
    margin-left: -20px;
    margin-right: -20px;
    box-shadow: 0 3px 4px -4px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

.received-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
}

    .received-status.equal {
        background: #4caf50;
    }

    .received-status.more-than {
        background: #E57413;
    }

    .received-status.less-than {
        background: #E57413;
    }

    .received-status.nothing {
        background: #B20E1E;
    }

/* RECONCILE INVOICES WORKFLOW */
.fullscreen-page {
    background: #F5F5F5;
}

.fullscreen-header {
    background: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
    padding: 10px 15px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

    .fullscreen-header .logo {
        max-height: 45px;
    }

    .fullscreen-header .close-icon {
        width: 30px;
        height: 30px;
        opacity: 0.5;
    }

.fullscreen-content {
    margin-top: 66px;
}

.build-invoice .purchase-order-table th {
    font-size: 11px;
    padding: 12px 20px 12px 10px;
    line-height: 1.1;
}

.build-invoice .btn {
    border-radius: 5px;
}

.build-invoice .status-banner {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    z-index: 99;
    width: 100%;
    color: #fff;
    box-shadow: 0 3px 13px -4px rgba(0, 0, 0, 0.5);
}

    .build-invoice .status-banner .status-wrap {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .build-invoice .status-banner.error {
        background: #C3460F;
    }

    .build-invoice .status-banner.no-error {
        background: #369D1D;
    }

    .build-invoice .status-banner .status-detail {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
    }

    .build-invoice .status-banner .invoice-totals {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: flex-start;
        margin-right: 25px;
    }

        .build-invoice .status-banner .invoice-totals label, .build-invoice .status-banner .invoice-totals h2 {
            font-weight: 600;
        }

        .build-invoice .status-banner .invoice-totals label {
            opacity: .64;
            white-space: nowrap;
        }

        .build-invoice .status-banner .invoice-totals .total {
            margin-right: 30px;
        }

            .build-invoice .status-banner .invoice-totals .total:last-child {
                margin-right: 0;
            }

    .build-invoice .status-banner .resolution {
        background: #fff;
        color: #7C7C7C;
        padding: 10px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: flex-end;
        padding: 10px;
    }

        .build-invoice .status-banner .resolution label, .build-invoice .status-banner .resolution .btn {
            font-weight: 600;
        }

    .build-invoice .status-banner .resolution-dropdown {
        margin-right: 15px;
    }

.build-invoice .btn-lg {
    font-size: 17px;
}

.build-invoice .build-invoice-content, .build-invoice .status-banner .status-wrap {
    max-width: 1372px;
    margin: 0 auto;
}

.build-invoice .build-invoice-content {
    margin-top: 180px;
    padding-bottom: 100px;
}

    .build-invoice .build-invoice-content.review {
        margin-top: 110px;
    }

.build-invoice .purchase-order-header {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0;
}

.build-invoice .edit-controls {
    display: none;
}

.build-invoice th {
    white-space: nowrap;
}

.build-invoice .content {
    padding: 0;
}

.build-invoice tr {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
}

.build-invoice .edit-row {
    background: #F5F08C !important;
}

    .build-invoice .edit-row .edit-controls {
        display: block;
    }

    .build-invoice .edit-row .content {
        display: none;
    }

    .build-invoice .edit-row .form-control {
        text-align: right;
        box-shadow: 0 0 7px rgba(242, 121, 17, 0.55);
        font-weight: 600;
        font-size: 1.2em;
    }

.build-invoice .discrepancy-bg {
    background: #f7d9d9;
}

    .build-invoice .discrepancy-bg td {
        border-color: #c8c8c8;
    }

.build-invoice .discrepancy {
    font-weight: 600;
    color: #ad1717;
}

.build-invoice .add-pos-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px;
    width: 100%;
    z-index: 99;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
}

.build-invoice small .icon {
    font-size: 12px;
}

.purchase-order-header .po-detail, .po-search-results .po-detail {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

    .purchase-order-header .po-detail li, .po-search-results .po-detail li {
        list-style-type: none;
        margin-right: 25px;
    }

        .purchase-order-header .po-detail li:last-child, .po-search-results .po-detail li:last-child {
            margin-right: 0;
        }

.po-search-results-wrap {
    margin: 30px 20px;
}

.po-search-results .search-result {
    margin-bottom: 20px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.26);
}

.po-search-results .po {
    padding: 15px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #fff;
}

    .po-search-results .po .circle-check {
        transition: all 0.3s;
    }

    .po-search-results .po:hover .circle-check {
        transform: scale(1.1);
    }

    .po-search-results .po.checked {
        border-color: #00BCD4;
    }

        .po-search-results .po.checked .circle-check {
            background: #00BCD4;
        }

    .po-search-results .po .po-info {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        color: #333;
    }

.po-search-results .table {
    background: #f5f5f5;
    font-size: 12px;
}

    .po-search-results .table td, .po-search-results .table th {
        padding: 8px 10px;
    }

/* Customer Dashboard */
@media (min-width: 1200px) {
    .consumer-dashboard .container {
        width: 1300px;
    }
}

.customer-dashboard-header, .filters-header {
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    padding: 10px 0;
    width: 100%;
    z-index: 900;
    position: -webkit-sticky;
    position: sticky;
    top: 92px;
}

    .customer-dashboard-header .dashboard-filters, .filters-header .dashboard-filters {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

.customer-dashboard-container {
    background: #F5F5F5;
    margin: 0 auto;
    max-width: 1400px;
    padding: 30px;
    min-height: 100vh;
}

    .customer-dashboard-container .dashboard-wrap {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }

    .customer-dashboard-container .side-nav {
        width: 227px;
        position: fixed;
    }

        .customer-dashboard-container .side-nav ul {
            margin: 0;
            padding: 0;
            list-style-type: none;
        }

            .customer-dashboard-container .side-nav ul li {
                margin-bottom: 15px;
            }

                .customer-dashboard-container .side-nav ul li.active a {
                    background: #218EDE;
                    color: #fff;
                }

            .customer-dashboard-container .side-nav ul a {
                display: block;
                border-radius: 40px;
                padding: 10px;
                font-weight: 600;
                background: #fff;
                box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
            }

                .customer-dashboard-container .side-nav ul a, .customer-dashboard-container .side-nav ul a:visited {
                    color: #333333;
                }

            .customer-dashboard-container .side-nav ul i {
                margin-right: 5px;
            }

    .customer-dashboard-container .dashboard-content {
        width: 100%;
        margin-left: 260px;
        margin-bottom: 300px;
    }

    .customer-dashboard-container .stats-list {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        list-style-type: none;
        line-height: .7;
        padding: 0;
        margin: 0;
    }

        .customer-dashboard-container .stats-list h1 {
            font-weight: 600;
        }

        .customer-dashboard-container .stats-list li {
            margin-right: 35px;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: flex-start;
        }

        .customer-dashboard-container .stats-list .icon {
            font-size: 25px;
            color: #218EDE;
            margin-right: 5px;
            margin-top: 6px;
        }

    .customer-dashboard-container .table-striped > tbody > tr:nth-of-type(odd) {
        background-color: #fff;
    }

    .customer-dashboard-container .table-striped > tbody > tr:nth-of-type(even) {
        background-color: #ECF1F5;
    }

    .customer-dashboard-container th {
        font-size: 12px;
        line-height: 1;
    }

.nav-tabs.underline-tabs {
    margin: 0;
}

    .nav-tabs.underline-tabs > li.active > a, .nav-tabs.underline-tabs > li.active > a:hover, .nav-tabs.underline-tabs > li.active > a:focus {
        border-top: none;
        border-left: none;
        border-right: none;
        border-bottom: 2px solid #218EDE;
        font-weight: 600;
        color: #218EDE;
    }

    .nav-tabs.underline-tabs > li > a {
        padding: 15px;
    }

.doughnut-with-text {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .doughnut-with-text .text {
        position: absolute;
        text-align: center;
    }

.gl-vendor-level .gl-code-table {
    max-height: calc(100vh - 374px);
    overflow: auto;
}

.gl-sites-container {
    max-height: calc(100vh - 374px);
    overflow: auto;
}

.drag-drop-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    counter-reset: count;
    font-weight: 600;
}

    .drag-drop-list li {
        background: #F8F8F8;
        border: 1px solid #E0E0E0;
        border-radius: 5px;
        counter-increment: count;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        cursor: move;
        margin-bottom: 10px;
    }

        .drag-drop-list li:hover {
            box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
        }

        .drag-drop-list li .number {
            border-right: 1px solid #E0E0E0;
            padding: 10px;
        }

            .drag-drop-list li .number:before {
                content: counter(count);
            }

        .drag-drop-list li .field {
            padding: 10px;
            width: 100%;
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .drag-drop-list li .form-control {
            margin-right: 20px;
            font-weight: normal;
            box-shadow: 0 0 6px rgba(16, 224, 232, 0.96);
        }

@media screen and (max-width: 1440px) {
    .build-invoice .build-invoice-content {
        margin-left: 2%;
        margin-right: 2%;
    }

    .build-invoice .status-banner .status-message {
        padding: 10px;
    }
}

@media screen and (max-width: 1400px) {
    .consumer-dashboard .container {
        width: 100%;
    }
}

@media screen and (max-width: 1170px) {
    .build-invoice .status-banner {
        font-size: .9em;
    }

        .build-invoice .status-banner h2 {
            font-size: 18px;
        }

    .build-invoice .btn-lg {
        font-size: 15px;
    }
}

@media screen and (max-width: 991px) {
    .mb-md-20 {
        margin-bottom: 20px !important;
    }

    .mb-md-10 {
        margin-bottom: 10px !important;
    }

    .mr-md-0 {
        margin-right: 0 !important;
    }

    .d-md-flex {
        flex-direction: column;
    }

    .text-md-center {
        text-align: center;
    }

    .record-received-header {
        flex-direction: column;
    }

    .build-invoice .status-banner {
        position: relative;
        top: 91px;
        z-index: 1;
        text-align: center;
    }

        .build-invoice .status-banner .status-wrap {
            flex-direction: column;
            align-items: flex-start;
            margin: 0;
        }

        .build-invoice .status-banner .status-message {
            width: 100%;
        }

        .build-invoice .status-banner .status-detail {
            flex-direction: column;
            width: 100%;
        }

        .build-invoice .status-banner .invoice-totals {
            margin: 10px 0;
        }

        .build-invoice .status-banner .resolution {
            width: 100%;
            flex-direction: column;
            padding: 15px;
        }

            .build-invoice .status-banner .resolution .btn {
                display: block;
                width: 100%;
            }

            .build-invoice .status-banner .resolution label {
                display: none;
            }

        .build-invoice .status-banner .resolution-dropdown {
            width: 100%;
            margin: 0 0 10px 0;
        }

    .build-invoice .build-invoice-content {
        margin-top: 120px;
    }

    .customer-dashboard-container .dashboard-content {
        margin-left: 0;
    }

    .customer-dashboard-container .side-nav {
        width: 100%;
        position: relative;
        display: none;
    }

    .customer-dashboard-container .stats-list {
        flex-direction: column;
        align-items: flex-start;
    }

        .customer-dashboard-container .stats-list li {
            margin-bottom: 20px;
        }

            .customer-dashboard-container .stats-list li:last-child {
                margin-bottom: 0;
            }

    .customer-dashboard-container .dashboard-wrap {
        flex-wrap: wrap;
    }

    .customer-dashboard-header {
        top: 0;
    }

        .customer-dashboard-header .dashboard-filters {
            flex-direction: column;
        }

            .customer-dashboard-header .dashboard-filters .row {
                width: 100%;
            }

    .panel-heading.d-md-flex {
        width: 100%;
    }

        .panel-heading.d-md-flex .nav-tabs {
            width: 100%;
            margin-bottom: 10px;
        }

    .customer-dashboard-container .panel-heading .btn {
        width: 100%;
        margin: 10px 0;
    }
}

@media screen and (max-width: 768px) {
    .record-received-header {
        top: 0;
    }

    .build-invoice .dtr-title .form-check {
        display: none;
    }

    .dtr-inline.collapsed tbody tr td:first-child:before,
    .dtr-inline.collapsed tbody tr th:first-child:before,
    .dtr-column tbody tr td.control:before,
    .dtr-column tbody tr th.control:before {
        content: '\e9e4';
        font-family: 'icomoon';
        display: inline-block;
        font-size: 16px;
        width: 16px;
        line-height: 1;
        position: relative;
        top: -1px;
        vertical-align: middle;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .dtr-inline.collapsed tbody tr td.child:first-child:before {
        content: "";
    }

    .mb-sm-20 {
        margin-bottom: 20px;
    }

    .customer-dashboard-header, .filters-header {
        top: 0;
    }
}

@media screen and (max-width: 533px) {
    .view-notification {
        flex-wrap: wrap;
        width: 100%;
    }

        .view-notification .btn, .view-notification .button {
            width: 100%;
            display: block;
        }

    .fullscreen-header .logo {
        max-height: 20px;
    }

    .fullscreen-header h4 {
        font-size: 14px;
    }

    .po-search-results .po {
        flex-direction: column;
        align-items: flex-start;
    }

        .po-search-results .po .po-info {
            margin-bottom: 10px;
            align-items: flex-start;
        }

        .po-search-results .po .btn {
            width: 100%;
        }

    .purchase-order-header .po-detail, .po-search-results .po-detail {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media screen and (max-width: 390px) {
    .build-invoice .status-banner .invoice-totals {
        flex-direction: column;
    }
}
