﻿/*@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');*/
@font-face {
    font-weight: normal;
    font-style: normal;
}

@keyframes loadingC {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0.1;
    }

    20% {
        opacity: 0.2;
    }

    30% {
        opacity: 0.3;
    }

    40% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.5;
    }

    60% {
        opacity: 0.6;
    }

    70% {
        opacity: 0.7;
    }

    80% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.9;
    }

    100% {
        opacity: 1;
    }
}

:root {
    --ascent-dark-grey: #919EAB;
    --ascent-green: #28a745;
    --ascent-red: #ff5c5c;
    --ndd-root-font-size: 16;
    --main-layout-padding: calc(24rem/var(--ndd-root-font-size));
}

a, .btn-link {
    color: #0366d6;
}

.content {
    padding-top: 1.1rem;
}

.hidden {
    display: none;
}

.parent {
    width: 150px;
}

    .parent img {
        max-width: 100%;
        max-height: 100%;
    }

.GlobalContainer {
    padding: 10px;
    background-color: var(--color_primary2);
    border-radius: 10px;
    margin-top: 20px;
    color: var(--color_modal_table_text);
}

@media(max-width:750px) {
    .parent img {
        margin-top: 0px;
    }
}
.super-centered {
    position: fixed;
    top: 50%;
    left: 50%;
    /*background: rgba(0, 0, 0, .5);*/
    /* bring your own prefixes */
    padding: 25px;
    background-color: white;
    border-radius: 25px;
    transform: translate(-50%, -50%);
    z-index: 99999999;
}

.center {
    text-align: center !important;
}

.centered {
    position: relative;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 25px;
    background-color: white;
    border-radius: 25px;
    z-index: 100;
}

.clickable,
.clickable > * {
    cursor: pointer;
}

    .clickable:hover {
        color: #495057;
    }

.v-middle {
    vertical-align: middle !important;
}

.line {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background-color: #4b9cdb;
}

.spoof-anchor {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}

.borderless {
    border: none !important;
}

.shadow-boxer {
    border-radius: 8px;
    box-shadow: 0px 8px 16px rgb(0 0 0 / 6%);
    margin-bottom: 24px;
}
/*#endregion*/

/* #region Validation etc.*/
.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    display: none !important;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/*#endregion*/

/*#region Cards, boxes and such*/
.card {
    border-radius: 8px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.06);
    margin-bottom: 24px;
}

.card-header {
    border-bottom: 0px;
}

.card-title {
    font-weight: bold;
    float: none;
}

.innerCard {
    box-shadow: none !important;
    padding-top: 20px !important;
}

.FJDBox {
    border-radius: 10px;
}

.FJDHeader {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 10px;
}

.box-primary {
    border-top-color: var(--color_primary);
}

.box {
    position: relative;
    border-radius: 10px;
    background: #ffffff;
    border-top: 3px solid #d2d6de;
    margin-bottom: 20px;
    width: 100%;
    box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.2);
    /*box-shadow: 10px 10px 80px grey;*/
}

    .box.box-info {
        border-top-color: #00c0ef;
    }

    .box.box-danger {
        border-top-color: #dd4b39;
    }

    .box.box-warning {
        border-top-color: #f39c12;
    }

    .box.box-success {
        border-top-color: #00a65a;
    }

    .box.box-default {
        border-top-color: #d2d6de;
    }

    .box.collapsed-box .box-body,
    .box.collapsed-box .box-footer {
        display: none;
    }

    .box .nav-stacked > li {
        border-bottom: 1px solid #f4f4f4;
        margin: 0;
    }

        .box .nav-stacked > li:last-of-type {
            border-bottom: none;
        }

    .box.height-control .box-body {
        max-height: 300px;
        overflow: auto;
    }

    .box .border-right {
        border-right: 1px solid #f4f4f4;
    }

    .box .border-left {
        border-left: 1px solid #f4f4f4;
    }

    .box.box-solid {
        border-top: 0;
    }

        .box.box-solid > .box-header .btn.btn-default {
            background: transparent;
        }

        .box.box-solid > .box-header .btn:hover,
        .box.box-solid > .box-header a:hover {
            background: rgba(0, 0, 0, 0.1);
        }

        .box.box-solid.box-default {
            border: 1px solid #d2d6de;
        }

            .box.box-solid.box-default > .box-header {
                color: #444444;
                background: #d2d6de;
                background-color: #d2d6de;
            }

                .box.box-solid.box-default > .box-header a,
                .box.box-solid.box-default > .box-header .btn {
                    color: #444444;
                }

        .box.box-solid.box-primary {
            border: 1px solid #3c8dbc;
        }

            .box.box-solid.box-primary > .box-header {
                color: #ffffff;
                background: #3c8dbc;
                background-color: #3c8dbc;
            }

                .box.box-solid.box-primary > .box-header a,
                .box.box-solid.box-primary > .box-header .btn {
                    color: #ffffff;
                }

        .box.box-solid.box-info {
            border: 1px solid #00c0ef;
        }

            .box.box-solid.box-info > .box-header {
                color: #ffffff;
                background: #00c0ef;
                background-color: #00c0ef;
            }

                .box.box-solid.box-info > .box-header a,
                .box.box-solid.box-info > .box-header .btn {
                    color: #ffffff;
                }

        .box.box-solid.box-danger {
            border: 1px solid #dd4b39;
        }

            .box.box-solid.box-danger > .box-header {
                color: #ffffff;
                background: #dd4b39;
                background-color: #dd4b39;
            }

                .box.box-solid.box-danger > .box-header a,
                .box.box-solid.box-danger > .box-header .btn {
                    color: #ffffff;
                }

        .box.box-solid.box-warning {
            border: 1px solid #f39c12;
        }

            .box.box-solid.box-warning > .box-header {
                color: #ffffff;
                background: #f39c12;
                background-color: #f39c12;
            }

                .box.box-solid.box-warning > .box-header a,
                .box.box-solid.box-warning > .box-header .btn {
                    color: #ffffff;
                }

        .box.box-solid.box-success {
            border: 1px solid #00a65a;
        }

            .box.box-solid.box-success > .box-header {
                color: #ffffff;
                background: #00a65a;
                background-color: #00a65a;
            }

                .box.box-solid.box-success > .box-header a,
                .box.box-solid.box-success > .box-header .btn {
                    color: #ffffff;
                }

        .box.box-solid > .box-header > .box-tools .btn {
            border: 0;
            box-shadow: none;
        }

        .box.box-solid[class*='bg'] > .box-header {
            color: #fff;
        }

    .box .box-group > .box {
        margin-bottom: 5px;
    }

    .box .knob-label {
        text-align: center;
        color: #333;
        font-weight: 100;
        font-size: 12px;
        margin-bottom: 0.3em;
    }

    .box > .overlay,
    .overlay-wrapper > .overlay,
    .box > .loading-img,
    .overlay-wrapper > .loading-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .box .overlay,
    .overlay-wrapper .overlay {
        z-index: 50;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 3px;
    }

        .box .overlay > .fas,
        .overlay-wrapper .overlay > .fas {
            position: absolute;
            top: 50%;
            left: 50%;
            margin-left: -15px;
            margin-top: -15px;
            color: #000;
            font-size: 30px;
        }

        .box .overlay.dark,
        .overlay-wrapper .overlay.dark {
            background: rgba(0, 0, 0, 0.5);
        }

.box-header:before,
.box-body:before,
.box-footer:before,
.box-header:after,
.box-body:after,
.box-footer:after {
    content: " ";
    display: table;
}

.box-header:after,
.box-body:after,
.box-footer:after {
    clear: both;
}

.box-header {
    /*color: white;*/
    display: block;
    padding: 5px;
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

    .box-header.with-border {
        border-bottom: 1px solid #f4f4f4;
    }

.collapsed-box .box-header.with-border {
    border-bottom: none;
}

.box-header > .fa,
.box-header > .glyphicon,
.box-header > .ion,
.box-header .box-title {
    display: inline-block;
    font-size: 18px;
    margin: 0;
    line-height: 1;
    border-bottom: 0px;
}

.box-header > .fa,
.box-header > .glyphicon,
.box-header > .ion {
    margin-right: 5px;
}

.box-header > .box-tools {
    position: absolute;
    right: 10px;
    top: 5px;
}

    .box-header > .box-tools [data-toggle="tooltip"] {
        position: relative;
    }

    .box-header > .box-tools.pull-right .dropdown-menu {
        right: 0;
        left: auto;
    }

    .box-header > .box-tools .dropdown-menu > li > a {
        color: #444 !important;
    }

.btn-box-tool {
    padding: 5px;
    font-size: 12px;
    background: transparent;
    color: #97a0b3;
}

    .open .btn-box-tool,
    .btn-box-tool:hover {
        color: #606c84;
    }

    .btn-box-tool.btn:active {
        box-shadow: none;
    }

.box-body {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    padding: 10px;
}

.no-header .box-body {
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.box-body > .table {
    margin-bottom: 0;
}

.box-body .fc {
    margin-top: 5px;
}

.box-body .full-width-chart {
    margin: -19px;
}

.box-body.no-padding .full-width-chart {
    margin: -9px;
}

.box-body .box-pane {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 3px;
}

.box-body .box-pane-right {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 0;
}

.box-footer {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-top: 1px solid #f4f4f4;
    padding: 10px;
    background-color: #ffffff;
}

.box-comments {
    background: #f7f7f7;
}

    .box-comments .box-comment {
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }

        .box-comments .box-comment:before,
        .box-comments .box-comment:after {
            content: " ";
            display: table;
        }

        .box-comments .box-comment:after {
            clear: both;
        }

        .box-comments .box-comment:last-of-type {
            border-bottom: 0;
        }

        .box-comments .box-comment:first-of-type {
            padding-top: 0;
        }

        .box-comments .box-comment img {
            float: left;
        }

    .box-comments .comment-text {
        margin-left: 40px;
        color: #555;
    }

    .box-comments .username {
        color: #444;
        display: block;
        font-weight: 600;
    }

    .box-comments .text-muted {
        font-weight: 400;
        font-size: 12px;
    }
/*#endregion*/

/*#region Charts etc.*/
.chart-legend {
    margin: 10px 0;
}

@media (max-width: 991px) {
    .chart-legend > li {
        float: left;
        margin-right: 10px;
    }
}
/*#endregion*/

/*#region Forms & Inputs */
input.form-select[readonly] {
    /*    background-color:unset;
*/
}

input.form-input-with-label {
    margin-bottom: 10px !important;
}

label.form-input-with-label {
    margin-bottom: 0px !important;
}

.form-label-sm {
    font-size: 14px;
}

.label-ascent {
    color: #919eab;
    font-weight: bold;
}

.form-input-container {
    margin-bottom: 5px;
}

.form-input-label {
    padding-bottom: 0px;
    margin-bottom: 0px;
    font-weight: 700;
    color: #919eab;
}

.spoof-readonly {
    background-color: #e9ecef !important;
}

.document-action {
    font-size: 18px;
    margin-left: 10px;
    cursor: pointer;
}

    .document-action svg {
        color: #777;
    }

        .document-action svg:hover {
            color: #333;
        }

.selectedfilter.active {
    border-left: solid 4px blue;
    color: black;
    background-color: white;
}

.selectedfilter.active {
    border: 1px solid rgba(0,0,0,.125) !important;
    border-left: solid 4px var(--color_primary_text) !important;
    color: black;
    background-color: unset;
}

.required-label:after {
    content: '\002A';
    color: var(--ascent-red);
}

.withLabelStyle {
    font-weight: 700;
    color: #919eab;
    padding-bottom: 10px;
    margin-bottom: 0px;
    display: inline-flex;
}

.checkBoxWithLabelStyle {
    width: 38px;
    height: 38px;
}

.XStyle {
    background-color: transparent;
    border: none;
    position: absolute;
    right: 10px;
    bottom: 14px;
    padding-right: 4px;
}

.left-aligned-checkbox-with-label {
    width: 40px;
}
/*#endregion*/

/*#region Modals & Dialogs & Popovers*/
.modal {
    display: none;
}

    .modal.show {
        display: block;
    }
/*#endregion*/

/*#region Tables*/
.CustomTableHead {
    border-bottom: double 3px var(--color_primary_text) !important;
}

.CustomTableHead2 {
    border-bottom: double 3px var(--color_primary) !important;
}
/*#endregion*/

/*#region Search Bar*/
.customer_searchBarForm {
    height: auto;
    margin-bottom: 10px;
    padding: 0 16px;
    width: 460px;
}

.customer_searchBar {
    position: relative;
    margin-top: 6px;
}

.searchBar_icon {
    color: #919EAB;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
}

.searchBar_input {
    outline: 0 none;
    font-size: 16px;
    line-height: 1px;
    border: 1px solid #E8EEF3;
    border-radius: 8px;
    box-sizing: border-box;
    height: 36px;
    padding: 6px 6px 6px 36px;
    max-width: 460px;
    display: block;
    width: 100%;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.02);
}

    .searchBar_input::placeholder {
        color: lightgray;
    }

    .searchBar_input:hover,
    .searchBar_input:active,
    .searchBar_input:focus {
        border-color: var(--color_primary);
    }
/*#endregion*/

/*#region Navbars*/
.nav-sidebar-menu-collapsed .nav-item-title {
    display: none;
}

.nav-sidebar-menu-collapsed:hover {
    width: 287px !important;
    transition: all 0s ease-in-out, width 0s, height 0s, top 0s, left 0s;
    position: absolute;
    z-index: 10000;
    height: 100%;
    padding-bottom: 30px;
    background-color: #FFFFFF;
}

    .nav-sidebar-menu-collapsed:hover .sub-nav-item-text,
    .nav-sidebar-menu-collapsed:hover .nav-item-title {
        display: inline;
    }

.nav-sidebar-menu-collapsed .sub-nav-item-text {
    display: none;
}

.nav-sidebar-menu-collapsed:hover .nav-link {
    color: #212529 !important;
}

.collapsed-navbar-mobile-responsive-991:hover h2[for="ops-label"]:after {
    content: 'PS'; /*appends remaining text*/
}

.collapsed-navbar-mobile-responsive-991:hover h2[for="sales-label"]:after {
    content: 'ALES'; /*appends remaining text*/
}

.nav-sidebar-content {
    box-shadow: 0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.22) !important;
    padding: 0px 8px;
}

.navbar-item:hover {
    background-color: lightgray;
}

.toggleNavbar:hover {
    background-color: lightgray;
    border-radius: 999px;
}

@media screen and (min-width: 0px) {
    .collapsed-navbar-mobile-responsive-991 {
        display: none;
    }

    .collapsed-navbar-mobile-responsive-991-inverse {
        width: 100%;
    }

    .expanded-navbar-mobile-responsive-991-inverse {
        width: calc(100% - 287px) !important;
    }

    .expanded-navbar-mobile-responsive-991 {
        width: 287px !important;
    }
}

@media screen and (min-width: 991px) {
    .collapsed-navbar-mobile-responsive-991 {
        width: 80px !important;
        display: block;
    }

        .collapsed-navbar-mobile-responsive-991:hover {
            width: 287px !important;
            transition: all 0s ease-in-out, width 0s, height 0s, top 0s, left 0s;
            position: absolute;
            z-index: 10000;
            height: 100%;
            padding-bottom: 30px;
            background-color: #FFFFFF;
        }

    .collapsed-navbar-mobile-responsive-991-inverse {
        width: calc(100% - 80px) !important;
    }


    .expanded-navbar-mobile-responsive-991 {
        width: 287px !important;
    }

    .expanded-navbar-mobile-responsive-991-inverse {
        width: calc(100% - 287px) !important;
    }
}
/*#endregion*/

/*#region Scroll bar*/
.scrollbar-deep-gray::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #F5F5F5;
}

.scrollbar-deep-gray::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    background-color: #F5F5F5;
}

.scrollbar-deep-gray::-webkit-scrollbar-thumb {
    border-radius: 0px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #666;
}

.thin::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-corner {
    background-color: transparent;
}
/*#endregion*/

/*#region Buttons*/
.btn-ascent {
    padding: 16px 24px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
}

.btn-ascent-primary {
    color: #fff;
    background-color: var(--color_primary);
    border-color: var(--color_primary);
}

    .btn-ascent-primary:hover,
    .btn-ascent-outline-primary:hover {
        color: #fff;
        background-color: var(--color_primary_medium);
        border-color: var(--color_primary_medium);
    }

.btn-ascent-outline-primary {
    color: var(--color_primary);
    background-color: transparent;
    background-image: none;
    border-color: var(--color_primary);
}

.btn-ascent-secondary {
    color: var(--color_primary);
    background-color: #fff;
    border: 1px solid var(--color_primary);
}

.btn-ascent-unselected {
    color: #919EAB;
    background-color: #f7f7f7;
    border: 1px solid #f7f7f7;
}

.btn-outline-selected {
    color: var(--color_primary);
    border-color: var(--color_primary);
    border: solid;
}

.btn-tag {
    -webkit-appearance: none;
    border: none;
    cursor: pointer;
}

.stage-scroll-button {
    background-color: var(--color_primary);
    color: #fff;
    height: calc(100% - 24px);
    box-shadow: 0 0 1px rgb(0 0 0 / 13%), 0 1px 3px rgb(0 0 0 / 20%);
    vertical-align: top;
    width: 65px;
}

    .stage-scroll-button:first-of-type {
        border-bottom-left-radius: 5px;
        border-top-left-radius: 5px;
        margin-right: -3px;
    }

    .stage-scroll-button:last-of-type {
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        margin-left: -3px;
    }
/*#endregion*/

/*#region Colors & Text Aesthetics*/
.color-success {
    background-color: rgba(9, 182, 1, 0.2);
    color: #0D9107;
}

.color-danger {
    background-color: rgba(255, 42, 89, 0.2);
    color: #ff2a59;
}

.color-warning {
    background-color: rgba(255, 130, 42, 0.2);
    color: #ff822a;
}

.color-info {
    background-color: rgba(42, 57, 255, 0.2);
    color: #2a39ff;
}

.color_primary_bold {
    font-weight: bold;
}

.color_primary,
.color_primary_bold {
    color: var(--color_primary);
}

.background-color-primary-light {
    background-color: var(--color_primary_light)
}

.color_primary2 {
    color: var(--color_primary2);
}

.color_accent {
    color: var(--color_primary_text);
}

.background-color_primary {
    background-color: var(--color_primary);
}

.background-color_primary2 {
    background-color: var(--color_primary2);
}

.background-color_accent {
    background-color: var(--color_primary_text);
}

.border-color_primary {
    border-color: var(--color_primary);
}

.green {
    color: var(--ascent-green);
}

.red {
    color: var(--ascent-red);
}

.portal-text {
    color: #868e96;
    text-transform: uppercase;
    font-size: .8rem;
    letter-spacing: .1em;
    font-weight: bold;
    text-align: left;
    padding: 10px 0px;
    margin: 0px 20px;
}

.green-check-circle {
    color: var(--ascent-green);
}

.red-times-circle {
    color: var(--ascent-red);
}

.ascent-super-light-gray {
    background-color: #f7f7f7;
}

.DashboardHR {
    background-color: var(--color_primary);
}
/*#endregion*/

/* #region Loaders & Masking */
.SunLoading {
    position: fixed;
    top: 50%;
    left: 50%;
    color: var(--color_primary);
    border-radius: 25px;
    transform: translate(-50%, -50%);
    z-index: 99999999;
}

.pace .pace-progress {
    background: var(--color_primary);
}

.pace .pace-progress-inner {
    box-shadow: 0 0 10px var(--color_primary), 0 0 5px var(--color_primary);
}

.pace .pace-activity {
    border-top-color: var(--color_primary);
    border-left-color: var(--color_primary);
}

.load-3 .line:nth-last-child(1) {
    animation: loadingC 0.6s 0.1s linear infinite;
}

.load-3 .line:nth-last-child(2) {
    animation: loadingC 0.6s 0.3s linear infinite;
}

.load-3 .line:nth-last-child(3) {
    animation: loadingC 0.6s 0.5s linear infinite;
}

.faded-overlay {
    position: fixed;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99999998;
}
/*#endregion*/

/*#region Section*/
.section-title {
    background-color: #e9ecee;
    color: #000;
    border-radius: 8px;
    font-weight: bold;
    font-size: 15px;
    line-height: 21px;
    padding: 10px;
    margin-bottom: 0px;
    margin-top: 10px;
    cursor: pointer;
}

.title-container {
    border-bottom: 1px solid black;
    margin-bottom: 10px;
}

.section-title-sm {
    font-weight: bold;
    font-size: 12px;
    line-height: 19px;
    border-bottom: 1px solid rgba(145, 158, 171, 0.3);
    color: black;
    background: #fff;
    border-radius: 8px;
    padding: 11px;
}

.section-title-md {
    font-weight: bold;
    font-size: 18px;
    line-height: 19px;
    border-bottom: 1px solid rgba(145, 158, 171, 0.3);
    color: black;
    background: #fff;
    border-radius: 8px;
    padding: 11px;
}

.section-title-flush {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.section-title-light-gray {
    background: #f7f7f7 !important;
}

.section-body-flush {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.section-title-tags,
.section-title-controls {
    float: right;
    display: inline-block;
}

    .section-title-controls * {
        cursor: pointer;
    }

    .section-title-controls .badge-org {
        border-radius: .25rem;
    }

        .section-title-controls .badge-org:hover {
            color: #495057;
        }

    .section-title-tags .tag,
    .section-title-controls button,
    .section-title-controls .tag {
        line-height: 15px;
        margin-right: 10px;
    }

.section-title-table-card {
    margin-top: 0px;
    border-radius: 0px;
    background-color: transparent !important;
}

.section-title-table-card-alt {
    background-color: #fff;
}

.collapse {
    visibility: hidden;
}

    .collapse.show {
        visibility: visible;
        display: block;
    }

.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;
}

.collapsed .arrow-icon svg {
    transform: rotate(-90deg);
}

.section-body {
    font-size: 12px;
    padding: 10px 10px 0px 10px;
    margin-bottom: 40px;
    position: relative;
}

    .section-body button {
        font-size: 12px;
    }

.title-content {
    display: flex;
    justify-content: space-between;
}

.collapse-arrow {
    float: right;
    cursor: pointer;
    color: #777;
    padding-left: 20px;
}

.title-text {
    width: min-content;
    flex: 1;
}

.btn-header-tool {
    padding-top: 0;
    font-size: 20px;
    background: transparent;
}

    .open .btn-header-tool,
    .btn-header-tool:hover {
        color: green;
    }

    .btn-header-tool.btn:active {
        box-shadow: none;
    }

.btn-toolbar-tool {
    padding-top: 0;
    font-size: inherit;
    background: transparent;
}

    .open .btn-toolbar-tool,
    .btn-toolbar-tool:hover {
        color: green;
    }

    .btn-toolbar-tool.btn:active {
        box-shadow: none;
    }

@media(min-width: 992px) {
    .section-title {
        font-size: 15px;
    }

    .section-title-sm {
        font-size: 12px;
    }

    .section-title-md {
        font-size: 18px;
    }
}

@media(min-width: 1355px) {
    .section-title {
        font-size: 17px;
    }

    .section-title-sm {
        font-size: 15px;
    }
}

@media(min-width: 576px) {
    .section-title {
        font-size: 17px;
    }

    .section-title-sm {
        font-size: 15px;
    }

    .section-body {
        font-size: 14px;
    }

        .section-body button {
            font-size: 1rem;
        }

    .title-text {
        width: auto;
    }

    .collapse-arrow {
        padding-left: 45px;
    }
}
/*#endregion*/

/*#region Bootstrap overrides & extensions */
.dropdown-toggle,
dropdown-item {
    cursor: pointer;
}

@media (min-width: 500px) {
    .col-xs-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
    }

    .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
}
/*#endregion*/

/*#region My Deals*/
.myDealsTitle {
    color: var(--color_primary);
}

.myDealsTitleCont hr {
    color: var(--color_primary);
}

.myDeals hr {
    background: var(--color_primary);
}

.myDealsBody {
    box-shadow: var(--shadow) 10px 10px 12px;
}

.myDeals .tableContainer {
    background-color: var(--color_background2);
}

.myDeals h1 {
    color: var(--color_primary);
}

.myDeals table {
    background-color: var(--color_modal_background);
}

.myDeals .table-bordered > thead > tr > th {
    border: 2px solid var(--color_background2);
}

.myDeals .table-bordered > tbody > tr > td {
    border: 2px solid var(--color_background2);
}

.myDeals th {
    color: var(--color_background_text2);
}

.myDeals td {
    color: var(--color_background_text2);
}

.myDealsBody {
    background-color: var(--color_background2);
    color: var(--color_background_text2);
}

.myDealsBody1 {
    background-color: var(--color_background2);
}

.myDealsBoxHeader {
    background-color: var(--color_primary);
    color: var(--color_primary_text);
}

.myDealsHR {
    border-top: 1px solid var(--color_primary2);
}

.myDealsText1 {
    color: var(--color_primary);
    font-size: 24px;
}

.myDealsText2 {
    color: var(--color_modal_table_text);
    font-size: 26px;
}

.myDealsText3 {
    color: var(--color_modal_table_text);
    font-size: 20px;
}

.myDealsText4 {
    color: var(--color_primary);
    font-size: 26px;
}

.myDealsText5 {
    color: var(--color_modal_table_text);
    font-size: 14px;
    text-align: right;
}

.myDealsText6 {
    color: var(--color_modal_table_text);
}

.myDealsText7 {
    color: var(--color_modal_table_text);
    font-size: 14px;
}
/*#endregion*/

/*#region Font Awesome*/
.fa-color-danger {
    --fa-primary-color: #ff2a59;
    --fa-secondary-color: rgba(255, 42, 89, 0.2);
    color: #ff2a59;
}

.fa-color-warning {
    --fa-primary-color: #ff822a;
    --fa-secondary-color: rgba(255, 130, 42, 0.2);
    color: #ff822a;
}

.fa-color-info {
    --fa-primary-color: #2a39ff;
    --fa-secondary-color: rgba(42, 57, 255, 0.2);
    color: #2a39ff;
}

.fa-layers:before {
    content: '';
}

.fa-circle:before {
    content: '';
}
/*#endregion*/

/*#region Icons, Badges, Etc.*/
.badge-org {
    color: var(--color_primary);
    background-color: var(--color_primary_medium_light);
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.badge-zero {
    color: #919EAB;
    background-color: #919EAB33;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.arrow-org {
    color: var(--color_primary);
}

.arrow-circle-org {
    color: var(--color_primary_medium_light);
}

.carousel-indicators li {
    background-color: var(--color_primary) !important;
}

.initialsCircle {
    width: 27px;
    height: 27px;
    line-height: 27px;
    border-radius: 50%;
    font-size: 9px;
    color: var(--color_primary);
    text-align: center;
    background: var(--color_primary_heavy);
    display: inline-block;
    margin-right: 8px;
}

.ProposalCardImage {
    max-width: 100%;
    border-radius: 5px;
}
/*#endregion*/

/*#region Media Queries*/
@media print {
    @page {
        width: 11in;
        height: 8.5in;
        margin: 0;
    }

    .public-proposal .pagebreak {
        page-break-before: always;
    }
}

@media(max-width: 1775px) {
    .concert .button-group button {
        width: 100% !important;
    }

        .concert .button-group button:not(:first-of-type) {
            margin-top: 10px;
        }

    .sunnova .button-group button {
        width: 100% !important;
    }

        .sunnova .button-group button:not(:first-of-type) {
            margin-top: 10px;
        }
}

@media only screen and (max-width: 1575px) {
    .public-proposal .financeTitleText {
        font-weight: 700;
        font-size: 1.20rem;
    }

    .public-proposal .financePriceText {
        color: #08263e;
        font-weight: 700;
        font-size: 1.5rem;
    }

    .public-proposal .monthlyPriceText {
        font-weight: 700;
        font-size: 0.8rem;
    }

    .public-proposal .pricingArithmetic {
        font-size: 3.0rem;
    }
}

@media(max-width: 1199px) {
    .docusign .desktop-actions {
        display: none;
    }

    .docusign .row-item span {
        display: block;
        margin-bottom: 10px;
    }
}

@media(max-width: 991px) {
    .concert .button-group button {
        width: 100% !important;
    }

        .concert .button-group button:not(:first-of-type) {
            margin-top: 10px;
        }

    .sunnova .button-group button {
        width: 100% !important;
    }

        .sunnova .button-group button:not(:first-of-type) {
            margin-top: 10px;
        }
}

@media only screen and (max-width: 957px) {
    .public-proposal .financeTitleText {
        font-weight: 700;
        font-size: 0.75rem;
    }

    .public-proposal .financePriceText {
        color: #08263e;
        font-weight: 700;
        font-size: 1.5rem;
    }

    .public-proposal .monthlyPriceText {
        font-weight: 700;
        font-size: 0.6rem;
    }

    .public-proposal .pricingArithmetic {
        font-size: 2.5rem;
    }

    .public-proposal .PageTitleStyle {
        color: #08263e;
        font-weight: 700;
        font-size: 2.5rem;
    }
}

@media only screen and (max-width: 800px) {
    .public-proposal .SiteLayoutPageStyle {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media only screen and (max-width: 768px) {
    .registration-content {
        width: 100%;
    }

    .public-proposal .houseSvgStyle {
        height: auto;
        width: 165px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        padding-top: 3rem;
    }

    .public-proposal .summitAverageTitle {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .public-proposal .summitAverageSubTitle {
        font-size: 1.0rem;
        font-weight: 700;
    }

    .public-proposal .averageSolarPowerRangeSvg {
        width: 100%;
        height: auto;
    }
}

@media only screen and (max-width:700px) {
    .project-name {
        font-size: 20px;
    }

    .project-address {
        font-size: 10px;
        display: grid;
    }

    .project-header-info a {
        margin-left: 0px;
    }
}

@media(max-width: 600px) {
    .my-activity .mud-xs-table .mud-table-cell:before {
        font-weight: bold !important;
        display: block;
    }

    .my-activity .mud-xs-table.mud-table-dense .mud-table-cell {
        display: block;
    }

    .my-activity .center .mud-avatar-group {
        justify-content: left;
    }
}

@media only screen and (max-width: 576px) {
    .public-proposal .coverPageColorOverlay {
        background-color: var(--primary7f);
        border-radius: 8px;
        width: 95%;
        padding: 8px;
    }

    .five-nine-actions .div-actions {
        display: grid;
    }

    .five-nine-actions .btn-action {
        margin-right: 0px;
        margin-bottom: 10px;
    }
}

@media(max-width: 575px) {
    .concert .button-group button {
        width: 100% !important;
    }

        .concert .button-group button:not(:first-of-type) {
            margin-top: 10px;
        }

    .sunnova .button-group button {
        width: 100% !important;
    }

        .sunnova .button-group button:not(:first-of-type) {
            margin-top: 10px;
        }

    .department-group-schedule .desktop-schedule {
        display: none;
    }

    department-group-schedule .mobile-schedule {
        display: block;
    }

    .manage-departments .btn-responsive span {
        display: none;
    }
}

@media only screen and (min-width: 576px) {
    #concert-credit-check .btn {
        width: auto;
    }

    .public-proposal .customerNameTitle {
        font-size: 4rem;
    }

    .public-proposal .textProposalTitle {
        font-size: 4rem;
    }

    .public-proposal .textMonthlyPayment {
        font-size: 5.5rem;
    }

    .public-proposal .page1B {
        min-height: 100vh;
    }
}

@media(min-width: 800px) {
    sold-contract-information .quote-card-responsive {
        width: 50%;
    }
}

.hideMeIfMobile {
    display: none !important;
}

@media (min-width:991px) {
    .hideMeIfMobile {
        display: block !important;
    }
}

@media(min-width: 992px) {
    #concert-credit-check .btn {
        width: 100%;
    }

    .sold-contract-information .quote-card-responsive {
        width: 100%;
    }
}

@media(min-width: 1200px) {
    .docusign .mobile-actions {
        display: none;
    }
}

@media(min-width: 1355px) {
    #concert-credit-check .btn {
        width: auto;
    }
}

@media(min-width: 1620px) {
    .sold-contract-information .quote-card-responsive {
        width: 50%;
    }
}

@media(min-width: 1776px) {
    .concert .button-group button {
        width: auto !important;
    }

        .concert .button-group button:not(:first-of-type) {
            margin-top: 0px;
            margin-left: 10px;
        }

    .sunnova .button-group button {
        width: auto !important;
    }

        .sunnova .button-group button:not(:first-of-type) {
            margin-top: 0px;
            margin-right: 10px;
        }
}
/*#endregion*/

/*#region NDD controlls*/

.ndd-button {
    height: calc(35rem/var(--ndd-root-font-size));
    border: none;
    background-color: transparent;
    background-repeat: no-repeat;
    color: #2E8EFF;
    outline: none;
    padding: calc(8rem/var(--ndd-root-font-size)) calc(40rem/var(--ndd-root-font-size));
}

    .ndd-button:focus {
        outline: none;
    }

    .ndd-button:hover {
        color: #61A9FF;
    }

    .ndd-button:active {
        color: #0058BF;
    }

    .ndd-button:disabled {
        color: #BBBBBB;
    }

.ndd-button-secondary {
    height: calc(35rem/var(--ndd-root-font-size));
    border: none;
    background-color: transparent;
    background-repeat: no-repeat;
    color: #464646;
    outline: none;
    padding: calc(8rem/var(--ndd-root-font-size)) calc(40rem/var(--ndd-root-font-size));
}

    .ndd-button-secondary:focus {
        outline: none;
    }

    .ndd-button-secondary:disabled {
        color: #BBBBBB;
    }

.ndd-button-filled {
    height: calc(35rem/var(--ndd-root-font-size));
    border: none;
    background: #2e8effff;
    color: #FFFFFF;
    border-radius: calc(40rem/var(--ndd-root-font-size));
    padding: calc(8rem/var(--ndd-root-font-size)) calc(40rem/var(--ndd-root-font-size));
}

    .ndd-button-filled:focus {
        outline: none;
    }

    .ndd-button-filled:hover {
        background: #61A9FF;
    }

    .ndd-button-filled:active {
        background: #0058BF;
    }

    .ndd-button-filled:disabled {
        background: #BBBBBB
    }

    .ndd-select-popover {
        margin-top: calc(8rem/var(--ndd-root-font-size));
    }
/*#endregion*/

/*#region Notes*/
.mention-container {
    width: 100%;
    max-height: 30vh;
    height: auto;
    opacity: 1;
    background: #fff;
    overflow-y: scroll;
    border-radius: 4px 4px 0px 0px;
    border: 0.5px solid #E2E2E2;
}

.mention-item {
    height: 2rem;
    background: #FFF;
    border-top: 0.5px solid #BBBB;
}

    .mention-item:hover,
    .mention-item.selected {
        background: #F8F9FA;
    }

.mention-text {
    color: #464646;
    font-family: Inter;
    font-size: calc(10rem/var(--ndd-root-font-size));
    font-style: normal;
    font-weight: 700;
    margin-left: 0.3rem;
}

.ndd-note-mention {
    font-weight: bold;
}

.note-search-editor .ql-editor {
    line-height: 1rem;
    padding: 0.5rem 1rem;
}

.note-table-rework p,
.note-content p {
    margin-bottom: 0rem;
}

.notes-avatar-style {
    height: 1.15rem !important;
    width: 1.15rem !important;
    background-color: #464646 !important;
    color: #BBB !important;
    font-size: 0.7rem !important;
    font-family: Inter !important;
    margin: 0.4rem !important;
}

.notes-reply-footer {
    border-top: 0.5px solid #BBB;
    border-radius: 0px 0px 3.991px 3.991px;
    min-height: 10rem;
    max-height: none;
    display: block;
    justify-content: unset;
    align-items: center;
}

.ql-editor,
.note-table-column,
.rt-character-count {
    font-family: var(--mud-typography-body1-family);
    font-size: var(--mud-typography-body1-size);
    font-weight: var(--mud-typography-body1-weight);
    line-height: var(--mud-typography-body1-lineheight);
}

.ql-snow .ql-tooltip {
    position: relative !important;
}

.ql-tooltip {
    top: unset !important;
    left: unset !important;
    right: unset !important;
    bottom: unset !important;
    z-index: 1;
}

.rt-character-count {
    display: flex;
    flex: 1;
}

@media only screen and (hover: none) and (pointer: coarse) {
    .ql-editor:focus {
        font-size: 16px;
    }
}
/*#endregion*/

/*#region Project Sidebar*/

.div-tab-component {
    width: calc(192rem/var(--ndd-root-font-size));
    height: calc(51rem/var(--ndd-root-font-size));
}

    .div-tab-component > h5 {
        margin-bottom: calc(8rem/var(--ndd-root-font-size)) !important;
        color: #000000;
        opacity: 0.5;
    }

    .div-tab-component > h4 {
        color: #000000;
    }

.general-container {
    padding: 0rem calc(40rem/var(--ndd-root-font-size)) calc(60rem/var(--ndd-root-font-size)) calc(40rem/var(--ndd-root-font-size));
    margin: 0rem !important;
}

.div-tab-content {
    margin: 0rem !important;
    align-items: center;
}

.information-header {
    margin-left: calc(-7.5rem/var(--ndd-root-font-size));
    margin-bottom: calc(16rem/var(--ndd-root-font-size));
    color: #000;
    font-weight: 600;
}

/*#endregion*/

/*#region Full Calendar*/
.fc--button {
    display: none !important;
}

.fc-toolbar {
    flex-wrap: wrap;
    gap: 10px;
}

.fc-button-primary {
    margin-top: 20px;
    padding: 8px 40px;
    font-weight: bold;
    height: calc(2.25rem + 2px);
    color: white;
    background-color: #2E8EFF;
    cursor: pointer !important;
    border-radius: 40px;
    border: none !important;
    outline: none !important;
    margin-right: 15px;
    margin-bottom: 15px;
}

.fc-resourceTimelineDay-button,
.fc-resourceTimelineWeek-button,
.fc-dayGridMonth-button {
    background-color: #2E8EFF !important;
    padding: 8px 40px !important;
    border-radius: 40px !important;
}

.fc-toolbar-title {
    font-size: 1.25em !important;
    font-weight: 700 !important;
}

div.fc-datagrid-cell-cushion.fc-scrollgrid-sync-inner {
    white-space: normal;
}

.stripe-1 {
    background: repeating-linear-gradient( 45deg, #057874, #057874 10px, #009892 10px, #009892 20px );
}

.stripe-2 {
    background: repeating-linear-gradient( 45deg, #0091D4, #0091D4 10px, #00adff 10px, #00adff 20px );
}

.stripe-3 {
    background: repeating-linear-gradient( 45deg, #CCB0FF, #CCB0FF 10px, #90CAF9 10px, #90CAF9 20px );
}

.fc-daygrid-day-bottom {
    text-align: center;
}

.fc-daygrid-more-link {
    color: var(--mud-palette-primary) !important;
}

/*#endregion*/

.redAlert {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.blueAlert {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

@media(max-width: 575px) {
    .minimized-toast {
        width: 50px;
        border-radius: 50px;
        cursor: pointer;
        margin-right: 30px;
        margin-bottom: 30px;
    }

    .minimized-toast-status {
        right: 44px;
        top: 12px;
    }

    .minimized-toast-status-message {
        display: none;
    }

    .restore-toast {
        display: none;
    }
}

@media(min-width: 800px) {
    .quote-card-responsive {
        width: 50%;
    }
}

@media(min-width: 992px) {
    .quote-card-responsive {
        width: 100%;
    }
}

@media(min-width: 1620px) {
    .quote-card-responsive {
        width: 50%;
    }
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

@media(max-width: 625px) {
    .modal-setter {
        max-width: 100%;
    }

    .div-header {
        display: block;
        top: 54px !important;
    }

    .div-header-actions {
        margin-top: 10px;
    }

    .form-vendor {
        margin-top: 10px;
    }

    .div-actions {
        display: grid;
        padding-top: 10px;
    }

    .btn-action {
        margin-right: 0px;
        margin-bottom: 10px;
    }

    .btn-header-action {
        margin-right: 10px;
    }
}

@media(max-width: 576px) {

    .pipeline {
        display: grid;
        padding-top: 10px;
    }

    .status-label {
        margin-right: 0px;
        margin-bottom: 10px;
    }
}

@media(max-width: 600px) {
    .desktop-td {
        display: none !important;
    }

    .mobile-td {
        display: flex;
    }

        .mobile-td .mobile-btn {
            width: 100%;
            margin-top: 5px;
        }

    .mud-xs-table .mud-table-cell:before {
        font-weight: bold !important;
        display: block;
    }

    .mud-xs-table.mud-table-dense .mud-table-cell {
        display: block;
    }

    .center .mud-avatar-group {
        justify-content: left;
    }
}

@media only screen and (max-width:700px) {
    .project-name {
        font-size: 20px;
    }

    .project-address {
        font-size: 10px;
        display: grid;
    }

    .project-header-info a {
        margin-left: 0px;
    }
}

@media(max-width: 600px) {
    .desktop-td {
        display: none !important;
    }

    .mobile-td {
        display: flex;
    }

        .mobile-td .mobile-btn {
            width: 100%;
            margin-top: 5px;
        }

    .mud-xs-table .mud-table-cell:before {
        font-weight: bold !important;
        display: block;
    }

    .mud-xs-table.mud-table-dense .mud-table-cell {
        display: block;
    }

    .center .mud-avatar-group {
        justify-content: left;
    }
}

@media only screen and (max-width:1160px) {
    .title-footer {
        display: inline-block;
        margin-right: 0px;
    }

    .div-mark-complete {
        padding-top: 10px;
    }
}

@media(max-width: 767px) {
    .button-group button {
        width: 100%;
    }

        .button-group button:not(:first-of-type) {
            margin-top: 10px;
            margin-right: 0px;
        }
}

@media(max-width: 575px) {

    .btn-responsive,
    .button-group button {
        width: 100%;
    }

    .btn-responsive {
        margin-left: 0px !important;
        margin-right: 0px !important;
        margin-bottom: 10px;
    }

    .button-group button:not(:first-of-type) {
        margin-top: 10px;
        margin-right: 0px;
    }
}

@media(max-width: 767px) {
    .PipelineOverviewButtons {
        margin-top: 0rem;
    }
}

@media(min-width: 800px) {
    .quote-card-responsive {
        width: 50%;
    }
}

@media(min-width: 992px) {
    .quote-card-responsive {
        width: 100%;
    }
}

@media(min-width: 1620px) {
    .quote-card-responsive {
        width: 50%;
    }
}

.alert-light-blue {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

.error-helper-text > .mud-input-control-helper-container > .mud-input-helper-text {
    color: var(--mud-palette-error);
}

.modal {
    top: 64px !important;
    max-height: calc(100vh - 64px) !important;
}

.project-menu {
    --mud-drawer-width-right: 240px;
    padding-top: 1rem;
    height: calc(100% - calc(var(--mud-appbar-height) - var(--mud-appbar-height)/4)) !important;
    top: calc(var(--mud-appbar-height) - var(--mud-appbar-height)/4) !important;
}

    .project-menu .mud-drawer-header {
        min-height: 0;
    }

    .project-menu .mud-nav-link {
        padding: 8px 24px 8px 24px;
    }