:root {
    --secondary-blue: rgb(33, 73, 140);
    --primary-blue: rgb(33, 73, 125);
    --navbar-bg: #f5f5f5;
    --navbar-fg: #555;
    --logo-bg: rgb(234, 234, 234);
    --workspace-bg: #fff;
    --hover-bg: #eef4ff;
    --hover-red-bg: #ffeeee;
    --hover-yellow-bg: #fffdee;
    --hover-green-bg: #eeffee;
    --primary-green: #94C924;
    --secondary-green: rgb(143, 194, 34);
}

.btn-primary {
   /* background: var(--primary-blue);
    border: 1px solid var(--primary-blue);*/
}

    .btn-primary:hover, .btn-primary:active {
        /*background: var(--secondary-blue) !important;
        border: 1px solid var(--secondary-blue) !important;*/
    }

.btn-success {
    /*background: var(--primary-green);
    border: 1px solid var(--primary-green);*/
}

    .btn-success:hover, .btn-success:active {
        /*background: var(--secondary-green) !important;
        border: 1px solid var(--secondary-green) !important;*/
    }

    .btn-success:focus {
        /*background: var(--secondary-green);
        border: 1px solid var(--secondary-green);
        box-shadow: 0 0 0 0.2rem #a6da35 !important;*/
    }

.btn-qb-connect {
    height: 38px;
    background-image: url("/assets/img/intuit/C2QB_white_btn_lg_default.png");
    background-size: contain;
    width: 190px;
    background-repeat: no-repeat;
}

    .btn-qb-connect:hover {
        background-image: url("/assets/img/intuit/C2QB_white_btn_lg_hover.png");
    }

.text-primary {
    color: var(--primary-blue) !important;
}

body {
    overflow-x: hidden;
}

#wrapper {
    padding-left: 0;
    /* -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; */
}

    #wrapper.toggled {
        padding-left: 250px;
    }

#sidebar-wrapper {
    z-index: 1000;
    position: fixed;
    left: 250px;
    width: 0;
    height: 100%;
    margin-left: -250px;
    overflow-y: auto;
    background: var(--navbar-bg);
    /* -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; */
    overflow-x: hidden;
    font-size: .8rem;
}

#wrapper.toggled #sidebar-wrapper {
    width: 250px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

#page-content-wrapper {
    width: 100%;
    position: absolute;
    height: 100vh;
    background-color: var(--workspace-bg);
}

#wrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -250px;
}

/* Sidebar Styles */

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .sidebar-nav li {
        line-height: 40px;
    }

        .sidebar-nav li a {
            display: block;
            text-decoration: none;
            /*color: var(--navbar-fg);*/
            padding-left: 20px;
            transition: all 0.3s ease;
            position: relative;
            /*background: -moz-linear-gradient(left, #eaeaea 0%, rgba(255, 255, 255, 0) 100%);
            background: -webkit-linear-gradient(left, #eaeaea 0%, rgba(255, 255, 255, 0) 100%);
            background: linear-gradient(to right, #eaeaea 0%, rgba(255, 255, 255, 0) 100%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c6e9ff', endColorstr='#00ffffff', GradientType=1);*/
            background-position: -250px;
            background-repeat: no-repeat;
            color: rgb(33, 73, 125);
            font-size: 0.9rem;
            padding-bottom: 0.25rem;
        }

            .sidebar-nav li a.active {
                /*background-color: #eaeaea;*/
                position: relative;
                /*overflow: hidden;*/
            }

            .sidebar-nav li a:before {
                content: '';
                position: absolute;
                width: 0px;
                height: 100%;
                right: 0px;
                transition: all 0.3s ease;
                /*background-color: var(--secondary-color);*/
                /* 
-webkit-clip-path: polygon(100% 0, 80% 0, 50% 50%, 80% 100%, 100% 100%);
clip-path: polygon(100% 0, 80% 0, 50% 50%, 80% 100%, 100% 100%);
*/
                /* -webkit-clip-path: polygon(100% 0, 60% 50%, 100% 100%);
  clip-path: polygon(100% 0, 60% 50%, 100% 100%); */
            }

            .sidebar-nav li a.active:before {
                width: 5px;
            }

        .sidebar-nav li:not(.active):not(.sidebar-brand) a:hover {
            text-decoration: none;
            background-position: 0px;
        }

        .sidebar-nav li a:active, .sidebar-nav li a:focus {
            text-decoration: none;
        }

        .sidebar-nav li .fa-caret-right {
            /*color: var(--primary-blue);*/
        }

    .sidebar-nav > .sidebar-brand {
        height: 80px;
        font-size: 18px;
        line-height: 60px;
    }

        .sidebar-nav > .sidebar-brand a:hover {
            color: black;
            background: none;
        }

.page-header {
    /*padding: 10px 15px;*/
    background-color: var(--primary-blue);
    color: #eee;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    z-index: 2;
}

    .page-header .menu-toggle, .page-header .right-menu-toggle {
        color: #ddd;
        cursor: pointer;
        /* background-color: #2780e3; */
        padding: 10px 15px;
        transition: all 0.3s ease;
    }

    .page-header .menu-toggle {
        background-color: rgba(0, 0, 0, 0.1);
    }

    .page-header .right-menu-toggle {
        padding: 10px 12px;
        /* display: inline-block; */
    }

        .page-header .menu-toggle:hover, .page-header .right-menu-toggle:hover {
            color: #fff;
            background-color: rgb(0, 0, 0, 0.1);
        }

    .page-header .menu-toggle:hover {
        background-color: rgb(0, 0, 0, 0.2);
    }

.page-header {
    position: relative;
    z-index: 2;
}

    .page-header .breadcrumb {
        position: absolute;
        top: 100%;
        margin-top: 1px;
        padding: .25rem 3rem .25rem .95rem;
        font-size: 85%;
        -webkit-clip-path: polygon(0 0, 100% 0, 80% 100%, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 80% 100%, 100% 100%, 0 100%);
        transition: all .3 ease;
        animation: slideInRight .3s ease forwards;
        animation-delay: .6s;
        transform: translateX(-100%);
    }

@keyframes slideInRight {
    to {
        transform: translateX(0%);
    }
}

.page-header .breadcrumb a {
    color: #666;
    cursor: pointer;
}

.LoggedIn {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color:#1B8652 !important;
    background-color: rgba(43, 182, 115,0.2) !important;
    display: flex;
    position: fixed;
    top: 36px;
    left: 50%;
    font-size:initial;
}

    .LoggedIn p {
        margin-top: 2px !important;
        margin-bottom: 5px !important;
    }

.page-header .breadcrumb-item + .breadcrumb-item::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0da";
    padding: 0px .25rem;
}

.sidebar-logo {
    fill: #fff;
    width: 200px;
}

.sidebar-user {
    line-height: 1;
    padding: 35px 10px;
    color: #444;
    background-color: #e4e4e4;
    /* box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2); */
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar-user-image {
    float: left;
    width: 50px;
    border-radius: 100%;
    overflow: hidden;
    /* box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5); */
    border: 1px solid #fff;
    line-height: 1;
}

    .sidebar-user-image > img {
        width: 100%;
        line-height: 0;
    }

.sidebar-user-name {
    margin-top: 0.25rem;
    float: left;
    padding: 0px 10px;
    position: relative;
    width: calc(100% - 50px);
}

.sidebar-user-role {
    line-height: 1.5;
    display: block;
    color: #999;
    /* word-break: break-word; */
}

.sidebar-nav li a.sidebar-user-edit {
    font-size: 0.9rem;
    margin-top: 0.25rem;
    line-height: 1;
    padding: 4px;
    color: #777;
    background: transparent;
    position: absolute;
    right: .5rem;
}

.sidebar-nav .sidebar-user-edit:hover {
    color: #444;
    background: transparent !important;
}

.header-title {
    display: inline-block;
    margin-left: 10px
}

.sidebar-nav li .submenu-wrapper {
    transition: all 0.3s ease;
    border-right: 0px solid transparent;
}

    .sidebar-nav li .submenu-wrapper .submenu {
        display: none;
        line-height: 1;
        width: 100%;
    }

    .sidebar-nav li .submenu-wrapper > .submenu.open {
        display: block;
        padding-bottom: 0px;
    }

    .sidebar-nav li .submenu-wrapper .submenu a.submenu-item {
        line-height: 2.1;
        padding: 0px 0px 0px 47px;
        transition: all 0.3s ease;
    }

        .sidebar-nav li .submenu-wrapper .submenu a.submenu-item:after {
            content: '';
            -webkit-clip-path: polygon(0 0, 30% 1%, 31% 25%, 100% 50%, 30% 75%, 30% 100%, 0 100%);
            clip-path: polygon(0 0, 30% 1%, 31% 25%, 100% 50%, 30% 75%, 30% 100%, 0 100%);
            height: 100%;
            width: 8px;
            left: 28px;
            position: absolute;
            background-color: rgba(0, 0, 0, 0.1) !important;
        }

    .sidebar-nav li .submenu-wrapper .fa-caret-right {
        transform: rotate(0deg);
        transition: all 0.3s ease;
        line-height: 30px;
        margin-right: 20px;
    }

    .sidebar-nav li .submenu-wrapper.open .fa-caret-right:not(.submenu-arrow) {
        transform: rotate(450deg);
        /* margin-right: 15px; */
    }

.workspace {
    padding-top: 3rem !important;
    padding-bottom: 20px;
    height: calc(100vh - 36px);
    overflow-y: auto;
    position: relative;
    /* transform: translateX(0%); */
    font-size: .8rem;
}

.workspace-footer {
    background-color: var(--light);
    position: fixed;
    width: 100%;
    left: 0px;
    padding: .5rem 1.25rem;
    bottom: 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 2;
}

#wrapper.toggled .workspace-footer {
    /* padding-left: 250px; */
    left: 250px;
    width: calc(100% - 250px);
}

.breadcrumb-wrapper {
    position: fixed;
    top: 36px;
    left: 0px;
    -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    font-size: 90%;
    transition: all .3s ease;
    z-index: 2;
    color: #414042 !important;
}

    .breadcrumb-wrapper > .breadcrumb {
        margin: 0px;
        padding: .25rem 2rem .25rem .9rem;
    }

#wrapper.toggled .breadcrumb-wrapper {
    left: 250px;
}

.personal-pic {
    width: 150px;
    height: 150px;
    overflow: hidden;
    margin: 1rem auto 1.5rem auto;
    border-radius: 50%;
}

.border-bottom [data-toggle=fieldset].float-right {
    border-bottom-right-radius: 0px !important;
    border-top-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    border-top-left-radius: 1rem !important;
}

fieldset[disabled] {
    cursor: not-allowed;
}

    fieldset[disabled] .fieldset-hide {
        display: none;
        visibility: hidden;
    }

    fieldset[disabled] a, fieldset[disabled] button {
        pointer-events: none;
    }

    fieldset[disabled] .fieldset-edit {
        height: 0px;
        padding: 0rem 1.25rem;
        /* margin-bottom: 0rem; */
        opacity: 0;
    }

fieldset {
    position: relative;
}

    fieldset .form-control {
        transition: all 0.3s ease;
    }

.fieldset-edit {
    text-align: right;
    padding: .5rem 1.25rem;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    margin-bottom: 0.5rem;
    background-color: #f4f4f4;
    position: sticky;
    top: -20px;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 1;
}

    .fieldset-edit.absolute {
        position: absolute;
        right: .5rem;
        background-color: transparent;
        top: calc(56%);
        transform: translate(0%, -49%);
    }

fieldset:not([disabled]) .personal-pic:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0);
    cursor: pointer;
    transition: all 0.3s ease;
}

fieldset:not([disabled]) .personal-pic:hover::before {
    background-color: rgba(255, 255, 255, 0.7);
}

fieldset:not([disabled]) .personal-pic:after {
    content: 'Change Picture';
    display: block;
    position: absolute;
    width: 100%;
    top: calc(50%);
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-weight: bold;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
}

fieldset:not([disabled]) .personal-pic:hover::after {
    opacity: 0.6;
}

fieldset[disabled] label {
    font-weight: 500;
}
/* 
fieldset[disabled] .form-control {
  padding: 0px;
  background-color: transparent;
  border-color: transparent !important;
  height: auto; 
}*/

fieldset .form-group {
    padding-bottom: 0px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

fieldset[disabled] .form-group {
    padding-bottom: 5px;
    border-bottom: 1px solid #e4e4e4;
}

.btn-absolute-right-y {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.toast-wrapper {
    position: fixed;
    top: 60px;
    right: 5px;
    min-width: 350px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px 25px 50px;
    z-index: 2000;
    pointer-events: none;
}

    .toast-wrapper .toast {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        width: 100%;
        pointer-events: auto;
        animation-duration: .3s;
        background-color: rgba(255, 255, 255, 1);
    }

/* 
.toast {
  position: fixed;
  top: 40px;
  right: -400px;
  width: 350px;
  height: auto;
  padding: 10px 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.35);
  color: #eee;
  transition: all 0.3s ease;
  z-index: 999999;
  text-align: center;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  opacity: 1;
}

.toast .toast-icon {
  float: left;
  width: 20px;
}

.toast .toast-content {
  width: 100%;
  text-align: left;
  padding: 0px 0px 0px 30px;
} */

.proof-content {
    padding-left: 3em;
}

.absolute-icon-right {
    position: absolute !important;
    right: .75rem;
    top: .75em;
}

.embed-pdf {
    width: 100%;
    border: none;
    height: calc(100vh - 350px);
}

body.spinner-spinning > *:not(.spinner-backdrop) {
    filter: blur(10px);
}

body.spinner-spinning .spinner-backdrop {
    display: block;
}

.spinner-backdrop {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.25);
    border: 5px solid #0F194188;
    display: none;
    top: 0px;
    left: 0px;
}

.spinner-wrap {
    box-sizing: border-box;
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

    .spinner-wrap:after {
        content: '';
        /* background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB4bWxuczpzb2RpcG9kaT0iaHR0cDovL3NvZGlwb2RpLnNvdXJjZWZvcmdlLm5ldC9EVEQvc29kaXBvZGktMC5kdGQiICAgeG1sbnM6aW5rc2NhcGU9Imh0dHA6Ly93d3cuaW5rc2NhcGUub3JnL25hbWVzcGFjZXMvaW5rc2NhcGUiICAgaGVpZ2h0PSIyMC40OTAwNzIiICAgd2lkdGg9IjQzLjIyMDAwMSIgICBpZD0ic3ZnNiIgICB2ZXJzaW9uPSIxLjEiICAgdmlld0JveD0iMCAwIDQzLjIyMDAwMSAyMC40OTAwNzMiICAgY2xhc3M9InNpZGViYXItbG9nbyIgICBzb2RpcG9kaTpkb2NuYW1lPSJSLnN2ZyIgICBpbmtzY2FwZTp2ZXJzaW9uPSIwLjkyLjMgKDI0MDU1NDYsIDIwMTgtMDMtMTEpIj4gIDxzb2RpcG9kaTpuYW1lZHZpZXcgICAgIHBhZ2Vjb2xvcj0iI2ZmZmZmZiIgICAgIGJvcmRlcmNvbG9yPSIjNjY2NjY2IiAgICAgYm9yZGVyb3BhY2l0eT0iMSIgICAgIG9iamVjdHRvbGVyYW5jZT0iMTAiICAgICBncmlkdG9sZXJhbmNlPSIxMCIgICAgIGd1aWRldG9sZXJhbmNlPSIxMCIgICAgIGlua3NjYXBlOnBhZ2VvcGFjaXR5PSIwIiAgICAgaW5rc2NhcGU6cGFnZXNoYWRvdz0iMiIgICAgIGlua3NjYXBlOndpbmRvdy13aWR0aD0iMTkyMCIgICAgIGlua3NjYXBlOndpbmRvdy1oZWlnaHQ9IjEwMjciICAgICBpZD0ibmFtZWR2aWV3NyIgICAgIHNob3dncmlkPSJmYWxzZSIgICAgIGlua3NjYXBlOnpvb209IjcuMDEwNjQzIiAgICAgaW5rc2NhcGU6Y3g9Ii0wLjc4NDUyMTQ3IiAgICAgaW5rc2NhcGU6Y3k9IjguODg5OTUzNiIgICAgIGlua3NjYXBlOndpbmRvdy14PSItOCIgICAgIGlua3NjYXBlOndpbmRvdy15PSItOCIgICAgIGlua3NjYXBlOndpbmRvdy1tYXhpbWl6ZWQ9IjEiICAgICBpbmtzY2FwZTpjdXJyZW50LWxheWVyPSJzdmc2IiAvPiAgPG1ldGFkYXRhICAgICBpZD0ibWV0YWRhdGExMiI+ICAgIDxyZGY6UkRGPiAgICAgIDxjYzpXb3JrICAgICAgICAgcmRmOmFib3V0PSIiPiAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9zdmcreG1sPC9kYzpmb3JtYXQ+ICAgICAgICA8ZGM6dHlwZSAgICAgICAgICAgcmRmOnJlc291cmNlPSJodHRwOi8vcHVybC5vcmcvZGMvZGNtaXR5cGUvU3RpbGxJbWFnZSIgLz4gICAgICAgIDxkYzp0aXRsZSAvPiAgICAgIDwvY2M6V29yaz4gICAgPC9yZGY6UkRGPiAgPC9tZXRhZGF0YT4gIDxkZWZzICAgICBpZD0iZGVmczEwIiAvPiAgPHBhdGggICAgIGlkPSJwYXRoMiIgICAgIGQ9Ik0gMTUuOTUsMjAuNDkwMDcyIEggMjAuNSBWIDkuMDQwMDcyMiBhIDIuMjYsMi4yNiAwIDAgMCAtMC42NywtMS42MiBMIDEzLjA4LDAuNjcwMDcyMTkgQSAyLjI1LDIuMjUgMCAwIDAgMTEuNDYsNy4yMTkwNzUzZS01IEggMCBWIDQuNTYwMDcyMiBoIDEyLjUzIGEgMy40MiwzLjQyIDAgMCAxIDMuNDIsMy40MiB6IiAgICAgY2xhc3M9ImEiICAgICBzdHlsZT0iZmlsbDojMGYxOTQxO2ZpbGwtb3BhY2l0eToxIiAvPiAgPHBhdGggICAgIGlkPSJwYXRoNCIgICAgIGQ9Ik0gMjcuMjgsMjAuNDkwMDcyIEggMjIuNzIgViA5LjA0MDA3MjIgYSAyLjI2LDIuMjYgMCAwIDEgMC42NywtMS42MiBMIDMwLjE0LDAuNjcwMDcyMTkgQSAyLjI1LDIuMjUgMCAwIDEgMzEuNzYsNy4yMTkwNzUzZS01IEggNDMuMjIgViA0LjU2MDA3MjIgSCAzMC42OSBhIDMuNDIsMy40MiAwIDAgMCAtMy40MiwzLjQyIHoiICAgICBjbGFzcz0iYSIgICAgIHN0eWxlPSJmaWxsOiMwZjE5NDE7ZmlsbC1vcGFjaXR5OjEiIC8+PC9zdmc+'); */
        position: absolute;
        width: 50px;
        height: 50px;
        /* background-size: 75%;
  background-repeat: no-repeat;
  background-position-y: 50%;
  background-position-x: 50%; */
        animation: spinnerFade 1s linear infinite;
    }

.spinner {
    box-sizing: border-box;
    position: absolute;
    border: 5px solid var(--primary-green);
    height: 60px;
    width: 60px;
    border-radius: 100%;
    top: -5px;
    left: -5px;
    border-right-color: transparent;
    border-left-color: transparent;
    animation: spinner 1.5s linear infinite;
    transform: rotate(0deg) scale(1.25);
}

    .spinner:after {
        content: '';
        box-sizing: border-box;
        position: absolute;
        border: 5px solid var(--primary-blue);
        height: 60px;
        width: 60px;
        border-radius: 100%;
        top: -5px;
        left: -5px;
        border-right-color: transparent;
        border-left-color: transparent;
        animation: spinnerAfter .75s linear infinite;
        transform: rotate(0deg) scale(0.75);
    }

@keyframes spinner {
    100% {
        transform: rotate(-360deg) scale(1.25);
    }
}

@keyframes spinnerAfter {
    50% {
        transform: rotate(180deg) scale(0.75);
    }

    100% {
        transform: rotate(360deg) scale(0.75);
    }
}

@keyframes spinnerFade {
    50% {
        opacity: 0.5;
    }
}

.block-picker .dropdown-menu.show {
    display: flex;
    width: 250px;
    flex-wrap: wrap;
    padding: 0px;
    background-color: #f4f4f4;
}

    .block-picker .dropdown-menu.show .dropdown-item {
        width: 33.333%;
        padding: 1rem 0rem;
        text-align: center;
        cursor: pointer;
        border: 3px solid #f4f4f4;
        transition: all 0.3s ease;
        background-color: #fff;
        border-radius: 5px;
    }

        .block-picker .dropdown-menu.show .dropdown-item.active, .block-picker .dropdown-menu.show .dropdown-item:hover, .block-picker .dropdown-menu.show .dropdown-item:focus {
            border-bottom-color: #2175d9;
            color: #2175d9;
            font-weight: bold;
        }

.inset-relative-table {
    box-shadow: inset 0 0rem 1rem rgba(0, 0, 0, 0.3) !important;
    border-radius: 10px;
    overflow-y: auto;
    height: calc(100vh - 250px);
    position: relative;
    background-color: #f4f4f4;
}

    .inset-relative-table table thead tr:first-child th {
        border-top: none;
        background-color: #f4f4f4;
        position: sticky;
        top: 0px;
    }

.dropdown-menu .card-header {
    /*padding: 10px 15px;*/
    background-color: var(--primary-blue);
    color: #eee;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

/* .dropdown-menu .btn {
  background-color: var(--primary-blue);
} */

.login-panel {
    width: 400px;
    float: left;
}

.subcrip_title {
    width: 150px;
    margin: 160px 0 0 100px;
    color: #eee;
    cursor: pointer;
}

.fa-hand-pointer {
    color: var(--primary-blue);
}

.dropdown-company-change .dropdown-menu {
    min-width: 250px;
}

.dropdown-company-change button {
    padding: 0.45rem 1rem .45rem 2.5rem;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
}

.title-box button {
    height: 130px;
}

.btn-processing {
    position: relative;
    overflow: hidden;
    opacity: 0.7;
    pointer-events: none;
}

    /*.btn-processing:before {
  content:'';
  display:block;
  position:absolute;
  height:3px;
  background-color:rgba(255,255,255,0.5);
  border-radius:4px;
  width:10%;
  bottom:0px;
  animation: process 2s ease-out infinite;
      left:0%;
}
*/

    .btn-processing:after {
        content: '';
        display: block;
        position: absolute;
        height: 0px;
        border-bottom: 2px dotted rgba(255, 255, 255, 0.5);
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 4px;
        width: 10%;
        bottom: 0px;
        animation: process 0.8s ease-out infinite;
        left: 0%;
    }

@keyframes process {
    0% {
        left: -30%;
        width: 30%;
    }

    100% {
        left: 100%;
        width: 10%;
    }
}

.btn-flash {
    position: relative;
}

    .btn-flash:before {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        top: -4px;
        left: -4px;
        transform: scale(1);
        transform-origin: center;
        border: 1px solid red;
        opacity: .9;
        animation: btnFlash 2s ease infinite;
        border-radius: 100%;
        box-shadow: inset 0px 0px 10px 1px red;
        pointer-events: none;
    }

    .btn-flash:after {
        position: absolute;
        content: '';
        height: 10px;
        width: 10px;
        animation-delay: .3s;
        background-color: red;
        border-radius: 50%;
        /* -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
  clip-path: polygon(0 0, 0 100%, 100% 0); */
        pointer-events: none;
        left: -2px;
        top: -2px;
        opacity: 1;
        animation: fadeIn 1s ease infinite;
    }

@keyframes btnFlash {
    50% {
        transform: scale(5);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/*Custom scrollbar*/

::-webkit-scrollbar {
    height: 8px !important;
    overflow: visible !important;
    width: 8px !important;
}

::-webkit-scrollbar-thumb {
    border-radius: 10rem;
    background: var(--primary-blue) !important;
    background-clip: padding-box !important;
    /*border: 2px solid transparent !important;*/
    border-image: initial !important;
    min-height: 28px !important;
    padding: 100px 0px 0px !important;
    box-shadow: rgba(0, 0, 0, 0.1280392) 1px 1px 0px inset, rgba(0, 0, 0, 0.09667) 0px -1px 0px inset !important;
}

    /* :window-inactive inspired by cssTricks */

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary-blue) !important;
        background-clip: padding-box !important;
    }

    /* :window-inactive inspired by cssTricks */

    ::-webkit-scrollbar-thumb:window-inactive {
        background: var(--primary-blue) !important;
        background-clip: padding-box !important;
    }

::-webkit-scrollbar-button {
    height: 0px !important;
    width: 0px !important;
}

::-webkit-scrollbar-track {
    background: #efefef;
    /*background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAAAAABVicqIAAAACXZwQWcAAABkAAAAZACHJl7mAAAASUlEQVRo3u3PQQEAIAzDQOoE/6bAyaaiv0sUXN799TOnX0hISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhIqi0mjfaIwOmF7QAAAABJRU5ErkJggg==) repeat !important;*/
    /*background-clip: padding-box !important;*/
    /*border: 2px solid white !important;*/
    /*border-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAAAAABVicqIAAAACXZwQWcAAABkAAAAZACHJl7mAAAASUlEQVRo3u3PQQEAIAzDQOoE/6bAyaaiv0sUXN799TOnX0hISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhIqi0mjfaIwOmF7QAAAABJRU5ErkJggg==) 3 repeat!important;*/
    /*border-image: initial !important;*/
    border: 1px solid #dfdfdf;
}

::-webkit-scrollbar-corner {
    background: transparent !important;
}

/*Custom scrollbar ends*/

.led {
    width: 14px;
    height: 14px;
    transition: all .3s ease;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -2px;
    border: 3px solid #005c98;
}

    .led.green {
        background-color: rgb(35, 139, 31);
    }

        .led.green.active {
            animation: led-green-blink 4s ease-out infinite;
        }

    .led.red {
        background-color: #940;
    }

@keyframes led-green-blink {
    0% {
        background-color: #3bf044;
        box-shadow: 0 0.1rem 0.35rem #44f329af, inset 0 0.1rem 0.25rem rgba(255, 255, 255, .5);
    }

    80% {
        background-color: #3bf044;
        box-shadow: 0 0.1rem 0.35rem #44f329af, inset 0 0.1rem 0.25rem rgba(255, 255, 255, .5);
    }

    100% {
        background-color: rgb(35, 139, 31);
        /* box-shadow: none; */
    }
}

.nav-pills.nav-steps .nav-item .nav-link.active {
    -webkit-clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%, 0% 0%);
    clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0% 100%, 10% 50%, 0% 0%);
    padding: .5rem 1.75rem;
}

.nav-pills.nav-steps .nav-item:first-child .nav-link.active {
    -webkit-clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0% 100%, 0% 0%);
    clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0% 100%, 0% 0%);
}

.nav-pills.nav-steps .nav-item:last-child .nav-link.active {
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%, 5% 50%);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%, 10% 50%);
}

#dialogConfirm .modal-content {
    border-radius: 6px;
    overflow: hidden;
}

.workspace-sidebar {
    position: fixed;
    background-color: white;
    box-shadow: -12px 17px 18px 4px rgba(0, 0, 0, .1);
    width: 350px;
    top: 36px;
    right: -400px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1024;
    bottom: 0px;
    transition: all .3s ease;
    opacity: 0;
}

    .workspace-sidebar.show {
        opacity: 1;
        right: 0px;
    }

    .workspace-sidebar .sidebar-header {
        display: flex;
        padding: 1rem 1.25rem;
        margin-bottom: 0px;
        align-items: center;
    }

        .workspace-sidebar .sidebar-header .sidebar-title {
            margin-bottom: 0px;
        }

    .workspace-sidebar .sidebar-close {
        margin-left: auto;
        margin-right: 0;
        border: none;
        background-color: transparent;
        padding: .2rem .5rem;
        height: auto;
    }

        .workspace-sidebar .sidebar-close:hover, .workspace-sidebar .sidebar-close:focus {
            background-color: var(--hover-bg);
        }

    .workspace-sidebar .sidebar-body {
        padding: 1rem 1.25rem;
    }

.empty:not(.empty-overlay) .empty-content {
    display: none;
}

.empty-placeholder:not(input) {
    display: none;
}

.empty .empty-placeholder {
    display: block;
}

.empty-overlay .empty-placeholder {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.90);
    top: 0px;
    padding: 1.75rem;
}

.empty.empty-overlay {
    position: relative;
}

    .empty.empty-overlay .empty-content {
        opacity: .5;
    }

.nav-pills.nav-switch {
    background-color: var(--light);
    border-radius: 50rem;
    overflow: hidden;
    box-shadow: inset 0 0 .5rem rgba(0, 0, 0, 0.1)
}

    .nav-pills.nav-switch .nav-item .btn {
        transition: all .6s ease;
    }

    .nav-pills.nav-switch .nav-item .btn {
        transition: all .3s ease;
        outline: none !important;
        box-shadow: none !important;
    }

    .nav-pills.nav-switch .nav-item .active {
        background-color: var(--orange);
        color: white;
    }

    .nav-pills.nav-switch.primary .nav-item .active {
        background-color: var(--primary-blue);
    }

.hover-shadow, .hover-shadow-sm {
    cursor: pointer;
}

    .hover-shadow:hover {
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
        z-index: 1;
    }

    .hover-shadow-sm:hover {
        box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075) !important;
        z-index: 1;
    }

.list-group-mild .list-group-item {
    border-color: #f4f4f4;
}

.list-group-light .list-group-item {
    border-color: #eaeaea;
}

.hover-white {
    background-color: transparent;
}

    .hover-white:hover {
        background-color: white;
        z-index: 1;
    }

.hover-visible-container .hover-visible-target {
    visibility: hidden;
}

.hover-visible-container:hover .hover-visible-target, .hover-visible-container:focus .hover-visible-target {
    visibility: visible;
}

.col-right-or:after {
    content: 'or';
    font-size: 1rem;
    display: inline-block;
    background-color: #fefefe;
    color: #aaa;
    position: absolute;
    top: calc(50% - 18px);
    right: -18px;
    text-align: center;
    padding: 1px;
    border-radius: 100%;
    border: 1px solid #ddd;
    width: 2rem;
    height: 2rem;
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
}

.participant-image {
    width: 40px;
}

    .participant-image img {
        width: 100%;
    }

.grid-vertical::after {
    content: "";
    position: absolute;
    top: auto;
    left: 30px;
    border: 1px solid rgb(230, 229, 229);
    height: 18px;
    bottom: -22px;
}

.grid-horizontal::after {
    content: "";
    position: absolute;
    top: auto;
    left: -20px;
    width: 980px;
    border: 0.7px solid rgb(230, 229, 229);
}

.background_color {
    border: 1px solid rgb(207, 240, 255);
}

    .background_color .card-header {
        border-bottom: 1px solid rgb(207, 240, 255);
        background-color: rgb(246, 249, 250);
    }

.label img {
    width: 25px;
}

.circle {
    width: 32px;
    height: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.capture-emails {
    display: none;
}

.capture-emailsOne {
    display: none;
}

.list-group-item.hover-shadow.hover-white[data-toggle=collapse][aria-expanded=true] {
    background-color: var(--hover-bg);
    z-index: 1;
}

span.collapse .list-group-item:first-child {
    border-top: none;
    margin-top: .5rem;
}

span.collapse .list-group-item:last-child {
    margin-bottom: 1rem !important;
}

span.collapse {
    background-color: var(--light);
    box-shadow: inset 0 -0.1rem 0.25rem rgba(0,0,0,0.075), inset 0 0.1rem 0.2rem rgba(0,0,0,0.075);
}

.dropdown-text {
    padding: 0.25rem 1rem;
}

.consolidated-table td:not(:last-child) {
    border-right: 1px solid #dee2e6 !important;
}

.consolidated-table th:not(:last-child) {
    border-right: 1px solid #dee2e6 !important;
}

.nowrap {
    white-space: nowrap;
}

.consolidated-table tfoot td {
    font-weight: 600;
    border-bottom: 1px solid #dee2e6 !important;
}


.bottom-or {
    padding-bottom: 25px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

    .bottom-or:after {
        content: 'or';
        font-size: 1rem;
        display: inline-block;
        background-color: #fefefe;
        color: #aaa;
        position: absolute;
        left: calc(50% - 18px);
        bottom: -18px;
        text-align: center;
        padding: 0px;
        border-radius: 100%;
        border: 1px solid #ddd;
        width: 2rem;
        height: 2rem;
    }

fieldset {
    transition: all 1s ease;
    opacity: 1;
}

    fieldset:disabled {
        opacity: 0.4;
    }

.dropdown:not(.block-picker) .dropdown-menu.show {
    max-height: 200px;
    /*    transition: all 1s ease;*/
    overflow-y: auto;
}

.ta-scroll-window.form-control {
    min-height: 200px !important;
    font-family: 'Ubuntu', 'Segoe UI', sans-serif;
    display: block;
    overflow-x: hidden;
    overflow-y: scroll;
}

.ta-scroll-window > .ta-bind, .ta-scroll-window > .ta-bind:focus {
    min-height: 200px !important;
    font-family: 'Ubuntu', 'Segoe UI', sans-serif;
    border: none;
    outline: none;
}


.txt-focus.disabled > .ta-toolbar {
    display: none;
}

.txt-focus.disabled > .ta-scroll-window {
    border: none;
}


/*pagination css*/
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 5px 5px 5px 0px;
    border-radius: 4px;
    font-size: 12px !important;
}

    .pagination > li {
        display: inline;
    }

        .pagination > li > a,
        .pagination > li > span {
            position: relative;
            float: left;
            padding: 6px 12px;
            margin-left: -1px;
            line-height: 1.42857143;
            color: #337ab7;
            text-decoration: none;
            background-color: #fff;
            border: 1px solid var(--primary-background);
        }

        .pagination > li:first-child > a,
        .pagination > li:first-child > span {
            margin-left: 0;
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
        }

        .pagination > li:last-child > a,
        .pagination > li:last-child > span {
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
        }

        .pagination > li > a:hover,
        .pagination > li > span:hover,
        .pagination > li > a:focus,
        .pagination > li > span:focus {
            z-index: 2;
            color: #23527c;
            background-color: var(--light-background);
            border-color: var(--primary-background);
        }

    .pagination > .active > a,
    .pagination > .active > span,
    .pagination > .active > a:hover,
    .pagination > .active > span:hover,
    .pagination > .active > a:focus,
    .pagination > .active > span:focus {
        z-index: 3;
        color: var(--primary-color) !important;
        cursor: default;
        background-color: var(--light-background) !important;
        border-color: var(--primary-background) !important;
    }

    .pagination > .disabled > span,
    .pagination > .disabled > span:hover,
    .pagination > .disabled > span:focus,
    .pagination > .disabled > a,
    .pagination > .disabled > a:hover,
    .pagination > .disabled > a:focus {
        color: var(--primary-color) !important;
        cursor: not-allowed;
        background-color: var(--white);
        border-color: var(--primary-background);
    }

.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}

.pagination-footer-fixed.bg-light .per-page label {
    /*color: var(--primary-color) !important;*/
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.pager {
    padding-left: 0;
    margin: 20px 0;
    text-align: center;
    list-style: none;
}

    .pager li {
        display: inline;
    }

        .pager li > a,
        .pager li > span {
            display: inline-block;
            padding: 5px 14px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 15px;
        }

            .pager li > a:hover,
            .pager li > a:focus {
                text-decoration: none;
                background-color: #eee;
            }

    .pager .next > a,
    .pager .next > span {
        float: right;
    }

    .pager .previous > a,
    .pager .previous > span {
        float: left;
    }

    .pager .disabled > a,
    .pager .disabled > a:hover,
    .pager .disabled > a:focus,
    .pager .disabled > span {
        color: #777;
        cursor: not-allowed;
        background-color: #fff;
    }

.pagination-footer-fixed {
    width: calc(100vw - 250px);
    position: fixed;
    padding: 10px 24px;
    bottom: 0px;
    left: 250px;
    transition: all 0.3s ease;
    max-height: 56px;
    overflow: hidden;
    transition: all 0.5s ease;
}

    .pagination-footer-fixed.expand {
        width: calc(100vw - 0px);
        left: 0px;
    }

.per-page {
    display: inline-flex;
    float: left;
    line-height: 30px;
    margin: 6px;
    margin-right: 20px;
    color: #000;
}
/*pagination css*/

text-angular .popover {
    display: none;
}

.multiselect-parent {
    width: 100%;
    border: 1px solid #ced4da;
    outline: none;
}

    .multiselect-parent:focus, .dropdown-toggle:focus {
        outline: none;
    }

    .multiselect-parent .dropdown-menu {
        padding: 10px;
        width: 100%;
    }

        .multiselect-parent .dropdown-menu li a {
            cursor: pointer;
        }

        .multiselect-parent .dropdown-menu .dropdown-header {
            padding: 10px 0px;
        }

.table-ellipsis tbody tr td {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.table-ellipsis {
    table-layout: fixed;
}

.smallarrow {
    font-size: 80% !important;
    margin: 0px 2px;
    opacity: 0.25 !important;
    letter-spacing: -1.5px;
}

span.smallarrow.active {
    opacity: 1 !important;
}

.rzslider .rz-pointer {
    outline: none !important;
    top: -12px !important;
}

.rzslider .rz-bar {
    height: 10px !important;
}

.rzslider .rz-tick {
    top: 6px !important;
    width: 2px !important;
}

.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px;
}

@media (min-width: 768px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto;
    }

    .navbar-right .dropdown-menu-left {
        right: auto;
        left: 0;
    }
}


.nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

    .nav > li {
        position: relative;
        display: block;
    }

        .nav > li > a {
            position: relative;
            display: block;
            padding: 10px 15px;
        }

            .nav > li > a:hover,
            .nav > li > a:focus, .nav > li > a.active {
                text-decoration: none;
                background-color: var(--white);
                color: #21497d;
            }

        .nav > li.disabled > a {
            color: #777777;
        }

            .nav > li.disabled > a:hover,
            .nav > li.disabled > a:focus {
                color: #777777;
                text-decoration: none;
                cursor: not-allowed;
                background-color: transparent;
            }

    .nav .open > a,
    .nav .open > a:hover,
    .nav .open > a:focus {
        background-color: #eeeeee;
        border-color: var(--white);
    }

    .nav .nav-divider {
        height: 1px;
        margin: 9px 0;
        overflow: hidden;
        background-color: #e5e5e5;
    }

    .nav > li > a > img {
        max-width: none;
    }

.nav-tabs {
    border-bottom: 0px solid var(--white);
}

    .nav-tabs > li {
        float: left;
        margin-bottom: -1px;
    }

        .nav-tabs > li > a {
            margin-right: 2px;
            line-height: 1.42857143;
            border: 1px solid transparent;
            border-radius: 4px 4px 0 0;
            font-size: 16px;
        }

            .nav-tabs > li > a:hover {
            }

        .nav-tabs > li.active > a,
        .nav-tabs > li.active > a:hover,
        .nav-tabs > li.active > a:focus {
            cursor: default;
            background-color: #fff;
            border-bottom-color: transparent;
        }

    .nav-tabs.nav-justified {
        width: 100%;
        border-bottom: 0;
    }

        .nav-tabs.nav-justified > li {
            float: none;
        }

            .nav-tabs.nav-justified > li > a {
                margin-bottom: 5px;
                text-align: center;
            }

        .nav-tabs.nav-justified > .dropdown .dropdown-menu {
            top: auto;
            left: auto;
        }

@media (min-width: 768px) {
    .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%;
    }

        .nav-tabs.nav-justified > li > a {
            margin-bottom: 0;
        }
}

.nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px;
}

.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ddd;
}

@media (min-width: 768px) {
    .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0;
    }

    .nav-tabs.nav-justified > .active > a,
    .nav-tabs.nav-justified > .active > a:hover,
    .nav-tabs.nav-justified > .active > a:focus {
        border-bottom-color: #fff;
    }
}

.nav-pills > li {
    float: left;
}

    .nav-pills > li > a {
        border-radius: 4px;
    }

    .nav-pills > li + li {
        margin-left: 2px;
    }

    .nav-pills > li.active > a,
    .nav-pills > li.active > a:hover,
    .nav-pills > li.active > a:focus {
        color: #fff;
        background-color: #337ab7;
    }

.nav-stacked > li {
    float: none;
}

    .nav-stacked > li + li {
        margin-top: 2px;
        margin-left: 0;
    }

.nav-justified {
    width: 100%;
}

    .nav-justified > li {
        float: none;
    }

        .nav-justified > li > a {
            margin-bottom: 5px;
            text-align: center;
        }

    .nav-justified > .dropdown .dropdown-menu {
        top: auto;
        left: auto;
    }

@media (min-width: 768px) {
    .nav-justified > li {
        display: table-cell;
        width: 1%;
    }

        .nav-justified > li > a {
            margin-bottom: 0;
        }
}

.nav-tabs-justified {
    border-bottom: 0;
}

    .nav-tabs-justified > li > a {
        margin-right: 0;
        border-radius: 4px;
    }

    .nav-tabs-justified > .active > a,
    .nav-tabs-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus {
        border: 1px solid #ddd;
    }

@media (min-width: 768px) {
    .nav-tabs-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0;
    }

    .nav-tabs-justified > .active > a,
    .nav-tabs-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus {
        border-bottom-color: #fff;
    }
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

@media (min-width: 768px) {
    .navbar {
        border-radius: 4px;
    }
}

@media (min-width: 768px) {
    .navbar-header {
        float: left;
    }
}

.navbar-collapse {
    padding-right: 15px;
    padding-left: 15px;
    overflow-x: visible;
    border-top: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-overflow-scrolling: touch;
}

    .navbar-collapse.in {
        overflow-y: auto;
    }

@media (min-width: 768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .navbar-collapse.collapse {
            display: block !important;
            height: auto !important;
            padding-bottom: 0;
            overflow: visible !important;
        }

        .navbar-collapse.in {
            overflow-y: visible;
        }

    .navbar-fixed-top .navbar-collapse,
    .navbar-static-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        padding-right: 0;
        padding-left: 0;
    }
}

.navbar-fixed-top,
.navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}

    .navbar-fixed-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        max-height: 340px;
    }

@media (max-device-width: 480px) and (orientation: landscape) {
    .navbar-fixed-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        max-height: 200px;
    }
}

@media (min-width: 768px) {
    .navbar-fixed-top,
    .navbar-fixed-bottom {
        border-radius: 0;
    }
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
}

.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0;
}

.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
    margin-right: -15px;
    margin-left: -15px;
}

@media (min-width: 768px) {
    .container > .navbar-header,
    .container-fluid > .navbar-header,
    .container > .navbar-collapse,
    .container-fluid > .navbar-collapse {
        margin-right: 0;
        margin-left: 0;
    }
}

.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px;
}

@media (min-width: 768px) {
    .navbar-static-top {
        border-radius: 0;
    }
}

.navbar-brand {
    float: left;
    height: 50px;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px;
}

    .navbar-brand:hover,
    .navbar-brand:focus {
        text-decoration: none;
    }

    .navbar-brand > img {
        display: block;
    }

@media (min-width: 768px) {
    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
        margin-left: -15px;
    }
}

.navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-right: 15px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

    .navbar-toggle:focus {
        outline: 0;
    }

    .navbar-toggle .icon-bar {
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 1px;
    }

        .navbar-toggle .icon-bar + .icon-bar {
            margin-top: 4px;
        }

@media (min-width: 768px) {
    .navbar-toggle {
        display: none;
    }
}

.navbar-nav {
    margin: 7.5px -15px;
}

    .navbar-nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
        line-height: 20px;
    }

@media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .navbar-nav .open .dropdown-menu > li > a,
        .navbar-nav .open .dropdown-menu .dropdown-header {
            padding: 5px 15px 5px 25px;
        }

        .navbar-nav .open .dropdown-menu > li > a {
            line-height: 20px;
        }

            .navbar-nav .open .dropdown-menu > li > a:hover,
            .navbar-nav .open .dropdown-menu > li > a:focus {
                background-image: none;
            }
}

@media (min-width: 768px) {
    .navbar-nav {
        float: left;
        margin: 0;
    }

        .navbar-nav > li {
            float: left;
        }

            .navbar-nav > li > a {
                padding-top: 15px;
                padding-bottom: 15px;
            }
}

.navbar-form {
    padding: 10px 15px;
    margin-right: -15px;
    margin-left: -15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-top: 8px;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }

    .navbar-form .form-control-static {
        display: inline-block;
    }

    .navbar-form .input-group {
        display: inline-table;
        vertical-align: middle;
    }

        .navbar-form .input-group .input-group-addon,
        .navbar-form .input-group .input-group-btn,
        .navbar-form .input-group .form-control {
            width: auto;
        }

        .navbar-form .input-group > .form-control {
            width: 100%;
        }

    .navbar-form .control-label {
        margin-bottom: 0;
        vertical-align: middle;
    }

    .navbar-form .radio,
    .navbar-form .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle;
    }

        .navbar-form .radio label,
        .navbar-form .checkbox label {
            padding-left: 0;
        }

        .navbar-form .radio input[type="radio"],
        .navbar-form .checkbox input[type="checkbox"] {
            position: relative;
            margin-left: 0;
        }

    .navbar-form .has-feedback .form-control-feedback {
        top: 0;
    }
}

@media (max-width: 767px) {
    .navbar-form .form-group {
        margin-bottom: 5px;
    }

        .navbar-form .form-group:last-child {
            margin-bottom: 0;
        }
}

@media (min-width: 768px) {
    .navbar-form {
        width: auto;
        padding-top: 0;
        padding-bottom: 0;
        margin-right: 0;
        margin-left: 0;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

.navbar-nav > li > .dropdown-menu {
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
    margin-bottom: 0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.navbar-btn {
    margin-top: 8px;
    margin-bottom: 8px;
}

    .navbar-btn.btn-sm {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .navbar-btn.btn-xs {
        margin-top: 14px;
        margin-bottom: 14px;
    }

.navbar-text {
    margin-top: 15px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .navbar-text {
        float: left;
        margin-right: 15px;
        margin-left: 15px;
    }
}

@media (min-width: 768px) {
    .navbar-left {
        float: left !important;
    }

    .navbar-right {
        float: right !important;
        margin-right: -15px;
    }

        .navbar-right ~ .navbar-right {
            margin-right: 0;
        }
}

.navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7;
}

    .navbar-default .navbar-brand {
        color: #777;
    }

        .navbar-default .navbar-brand:hover,
        .navbar-default .navbar-brand:focus {
            color: #5e5e5e;
            background-color: transparent;
        }

    .navbar-default .navbar-text {
        color: #777;
    }

    .navbar-default .navbar-nav > li > a {
        color: #777;
    }

        .navbar-default .navbar-nav > li > a:hover,
        .navbar-default .navbar-nav > li > a:focus {
            color: #333;
            background-color: transparent;
        }

    .navbar-default .navbar-nav > .active > a,
    .navbar-default .navbar-nav > .active > a:hover,
    .navbar-default .navbar-nav > .active > a:focus {
        color: #555;
        background-color: #e7e7e7;
    }

    .navbar-default .navbar-nav > .disabled > a,
    .navbar-default .navbar-nav > .disabled > a:hover,
    .navbar-default .navbar-nav > .disabled > a:focus {
        color: #ccc;
        background-color: transparent;
    }

    .navbar-default .navbar-nav > .open > a,
    .navbar-default .navbar-nav > .open > a:hover,
    .navbar-default .navbar-nav > .open > a:focus {
        color: #555;
        background-color: #e7e7e7;
    }

@media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #777;
    }

        .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
        .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
            color: #333;
            background-color: transparent;
        }

    .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #555;
        background-color: #e7e7e7;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #ccc;
        background-color: transparent;
    }
}

.navbar-default .navbar-toggle {
    border-color: #ddd;
}

    .navbar-default .navbar-toggle:hover,
    .navbar-default .navbar-toggle:focus {
        background-color: #ddd;
    }

    .navbar-default .navbar-toggle .icon-bar {
        background-color: #888;
    }

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color: #e7e7e7;
}

.navbar-default .navbar-link {
    color: #777;
}

    .navbar-default .navbar-link:hover {
        color: #333;
    }

.navbar-default .btn-link {
    color: #777;
}

    .navbar-default .btn-link:hover,
    .navbar-default .btn-link:focus {
        color: #333;
    }

    .navbar-default .btn-link[disabled]:hover,
    fieldset[disabled] .navbar-default .btn-link:hover,
    .navbar-default .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-default .btn-link:focus {
        color: #ccc;
    }

.navbar-inverse {
    background-color: #222;
    border-color: #080808;
}

    .navbar-inverse .navbar-brand {
        color: #9d9d9d;
    }

        .navbar-inverse .navbar-brand:hover,
        .navbar-inverse .navbar-brand:focus {
            color: #fff;
            background-color: transparent;
        }

    .navbar-inverse .navbar-text {
        color: #9d9d9d;
    }

    .navbar-inverse .navbar-nav > li > a {
        color: #9d9d9d;
    }

        .navbar-inverse .navbar-nav > li > a:hover,
        .navbar-inverse .navbar-nav > li > a:focus {
            color: #fff;
            background-color: transparent;
        }

    .navbar-inverse .navbar-nav > .active > a,
    .navbar-inverse .navbar-nav > .active > a:hover,
    .navbar-inverse .navbar-nav > .active > a:focus {
        color: #fff;
        background-color: #080808;
    }

    .navbar-inverse .navbar-nav > .disabled > a,
    .navbar-inverse .navbar-nav > .disabled > a:hover,
    .navbar-inverse .navbar-nav > .disabled > a:focus {
        color: #444;
        background-color: transparent;
    }

    .navbar-inverse .navbar-nav > .open > a,
    .navbar-inverse .navbar-nav > .open > a:hover,
    .navbar-inverse .navbar-nav > .open > a:focus {
        color: #fff;
        background-color: #080808;
    }

@media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
        border-color: #080808;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #080808;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: #9d9d9d;
    }

        .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
        .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
            color: #fff;
            background-color: transparent;
        }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #fff;
        background-color: #080808;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #444;
        background-color: transparent;
    }
}

.navbar-inverse .navbar-toggle {
    border-color: #333;
}

    .navbar-inverse .navbar-toggle:hover,
    .navbar-inverse .navbar-toggle:focus {
        background-color: #333;
    }

    .navbar-inverse .navbar-toggle .icon-bar {
        background-color: #fff;
    }

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
    border-color: #101010;
}

.navbar-inverse .navbar-link {
    color: #9d9d9d;
}

    .navbar-inverse .navbar-link:hover {
        color: #fff;
    }

.navbar-inverse .btn-link {
    color: #9d9d9d;
}

    .navbar-inverse .btn-link:hover,
    .navbar-inverse .btn-link:focus {
        color: #fff;
    }

    .navbar-inverse .btn-link[disabled]:hover,
    fieldset[disabled] .navbar-inverse .btn-link:hover,
    .navbar-inverse .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-inverse .btn-link:focus {
        color: #444;
    }


/*NEW DESIGN OVERRIDE CSS*/
#sidebar-wrapper {
    /*background-image: url('../../src/images/left-menu-full.png');*/
    background:
        url('../../src/images/left-menu-full.png') top left no-repeat,
        linear-gradient(to bottom, transparent, transparent 200px, #00AA8A 201px);
    /*background-color: rgba(43, 182, 115,0.2) !important;
    background-position: 0% 290% !important;
    background-repeat: no-repeat;
    background-size: cover;*/
    /*background-size: 100% auto, auto;*/
    /*width: var(--left-menu-full-width) !important;*/
    /*min-height: 100vh;*/
    background-size: 249px auto;
    background-repeat: no-repeat;
    background-position-y: 80px;
}

.sidebar-user {
    background: transparent;
    border: none;
}

.sidebar-user .sidebar-user-name .username,
.sidebar-user .sidebar-user-name .sidebar-user-role {
    color: transparent !important;
}

.username {
    font-weight: 400;
    font-size: 1rem;
    color: #414042 !important;
}

/*.sidebar-nav li a.active {
    background-color: #AAE2C7 !important;
}

.sidebar-nav li a:not(.menu-item):before {
    background-color: #2BB673 !important;
}*/

.sidebar-nav li a {
    /*color: #1B8652 !important;*/
}

::-webkit-scrollbar-thumb:window-inactive {
    /*background: #2BB673 !important;*/
}


.dropdown-menu .card-header {
    background-color: #2BB673 !important;
}

.fa-hand-pointer {
    color: #2BB673 !important;
}

::-webkit-scrollbar-thumb {
    background: #2BB673 !important;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #2BB673 !important;
    }

    /* :window-inactive inspired by cssTricks */

    ::-webkit-scrollbar-thumb:window-inactive {
        background: #2BB673 !important;
    }

.nav-pills.nav-switch.primary .nav-item .active, .btn-info {
    background-color: #2BB673 !important;
}

.btn-info {
    background-color: #2BB673 !important;
    border-color: #2BB673 !important;
}

.btn-primary {
    /*background: #2BB673 !important;
    border: 1px solid #2BB673 !important;*/
}

.text-primary {
    color: var(--primary-color) !important;
}

.sidebar-nav li .fa-caret-right {
    color: var(--primary-color) !important;
}

.page-header {
    border-bottom: 1px solid rgba(197, 199, 201, 0.2);
    color: #FFF !important;
    background-color: #D1D3D4 !important;
    background-image: url('../img/Background_Image_grey.png');    
    background-position: 100% 0% !important;
    background-repeat: no-repeat;
    background-size: contain;
}

.spinner:after {
    border: 5px solid #2BB673 !important;
}

.page-header .menu-toggle, .page-header .right-menu-toggle {
    /*color: #FFF !important;*/
}
/*.workspace {
    background: #eee3 !important;
}*/

.container {
    margin-bottom: 3rem;
}

.sidebar-nav li .submenu-wrapper.open {
    /*background-color: #ebf7f1;*/
}

body, .form-control, .table, .contbox {
    /*color: #939598 !important;*/
}

h1, h2, h3, h4, h5, h6 {
    color: #2BB673 !important;
    font-weight: 400;
}

/*.ta-scroll-window.form-control *, .commentbox * {*/
    /*color: #939598 !important;*/
    /*color: #939598;
}*/

.rzslider .rz-pointer {
    background-color: var(--primary-color) !important;
}

.rzslider .rz-selection, .rzslider .rz-tick.rz-selected {
    background: var(--primary-background) !important;
}


/*idle*/

/*.idle-wrapper {
    z-index: 9999999999;
    position: fixed;
    width: 100vw;
    overflow: hidden;
    padding: 0px;
    height: 100vh;
    transition: all 0.4s ease;
    top: -100%;
    left: 0px;
    background: rgba(222,222, 222, 0.5);
}

    .idle-wrapper > .idle-content {
        position: absolute;
        padding: 40px;
        displaY: block;
        background-color: #f5f5f5;
        top: 50%;
        left: -4px;
        text-align: center;
        width: 100vw;
        transform: translateY(-50%);
        box-shadow: 0px 0px 20px 5px rgba(0,0,0,0.25);
    }

.idle-logo {
    WIDTH: 300PX;
    TEXT-ALIGN: CENTER;
    MARGIN: auto;
    PADDING: 15PX;
}*/




/* Override to mimick new style */

.sidebar-nav li a,
.sidebar-nav li a .fab,
.sidebar-nav li a .fas,
.sidebar-nav li a .fa {
    color: white !important;
}
.sidebar-nav li a.active,
.sidebar-nav li a.active .fab,
.sidebar-nav li a.active .fas,
.sidebar-nav li a.active .fa {
    /*color: var(--primary-color) !important;*/
}

body .sidebar-nav li a.active {
    /*color: var(--primary-color) !important;*/

    /*background-color: initial;*/
    /*background: linear-gradient(to right, #AAE2C7 0%, rgba(255, 255, 255, 0) 100%) !important;*/
}

/*.sidebar-nav li:not(.active):not(.sidebar-brand) a:hover:not(.active) {*/
.sidebar-nav li:not(.sidebar-brand) a.active,
.sidebar-nav li:not(.active):not(.sidebar-brand) a:hover {
    background: linear-gradient(to right, var(--secondary-color) 0%, rgba(255, 255, 255, 0) 100%) !important;
}

.sidebar-nav li .submenu-wrapper.open {
    /* border-right: 5px solid var(--primary-blue); */
    /*background-color: #fafafa;*/
    /*box-shadow: inset 0px 0px 10px -2px rgba(0, 0, 0, .5);*/
}

div.page-header {
    background-color: var(--light-background) !important;
    background-image: none !important;
}
html body #page-content-wrapper div.header-title {
    color: var(--primary-color);
    /*font-family: 'Montserrat SemiBold' !important;*/
}

div.breadcrumb-wrapper {
    color: var(--primary-color) !important;
}

.breadcrumb {
    background-color: var(--light-background) !important;
    /*display: none !important;*/
}

i.menu-toggle {
    background-color: var(--light-background) !important;
    color: var(--primary-color) !important;
}

.rzslider .rz-pointer.rz-active:after {
    background-color: white !important;
}

.hover-shadow:hover {
    box-shadow: 0 0.5rem 1rem var(--primary-background-shadow) !important;
}