/* ========================================================
*
* Melon - Flat & Responsive Admin Template
*
* ========================================================
*
* File: main.css
* Description: General template styles, including bootstrap components
* Version: 1.0
*
* ======================================================== */

/* set a css var for our blue color */
:root {
    --blue: #3f91a5;
    --blue-dark: #388294;
    --green: #7ab36b;
    --green-dark: #63a253;
    --red: #962235;
    --red-dark: #851e2f;
    --orange: #d47d5e;
    --orange-dark: #c15933;
    --dark-emphasis: #1e373d;
    --dark-emphasis-light: #3c626b;
    --dark-emphasis-lighter: #536c72;
    --dark-emphasis-dark: #182d33;
    --light-emphasis: #f8f8f8;
    --light-emphasis-light: #efefef;
    --light-emphasis-lighter: #cccccc;
    --light-emphasis-lightest: #888;
    --main-background: #ffffff;
    --always-white: #ffffff;
}

/* headway info */
#HW_frame_cont {
    z-index: 20000 !important;
}

.marketing {
    background: white;
    padding-top: 15px;
    font-size: 1.3em;
    background: var(--main-background);
}

.marketing a {
    text-decoration: none;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Open Sans'), local('OpenSans'), url('fonts/opensans.woff') format('woff');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url('fonts/opensans-semibold.woff') format('woff');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: local('Open Sans Bold'), local('OpenSans-Bold'), url('fonts/opensans-bold.woff') format('woff');
}

/* safari and chrome */
@-webkit-keyframes wiggle {
    0% {
        -webkit-transform: rotate(4deg);
    }

    50% {
        -webkit-transform: rotate(-4deg);
    }

    100% {
        -webkit-transform: rotate(4deg);
    }
}

/* firefox */
@-moz-keyframes wiggle {
    0% {
        -moz-transform: rotate(4deg);
    }

    50% {
        -moz-transform: rotate(-4deg);
    }

    100% {
        -moz-transform: rotate(4deg);
    }
}

@keyframes wiggle {
    0% {
        transform: rotate(4deg);
    }

    50% {
        transform: rotate(-4deg);
    }

    100% {
        transform: rotate(4deg);
    }
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 0;
    }
}

.wiggler {
    -webkit-animation: wiggle 0.5s infinite;
    -moz-animation: wiggle 0.5s infinite;
    animation: wiggle 0.5s infinite;
    -webkit-transition-timing-function: ease-in-out; /* Safari and Chrome */
    transition-timing-function: ease-in-out;
}

.wiggler-slow {
    -webkit-animation: wiggle 1.2s infinite, fade 3s infinite;
    -moz-animation: wiggle 1.2s infinite, fade 3s infinite;
    animation: wiggle 1.2s infinite, fade 3s infinite;
    -webkit-transition-timing-function: ease-in-out; /* Safari and Chrome */
    transition-timing-function: ease-in-out;
}

.form-control:-moz-placeholder {
    color: var(--light-emphasis-lighter);
}

.form-control::-moz-placeholder {
    color: var(--light-emphasis-lighter);
}

.form-control:-ms-input-placeholder {
    color: var(--light-emphasis-lighter);
}

.form-control::-webkit-input-placeholder {
    color: var(--light-emphasis-lighter);
}

.nudgeDown {
    padding-top: 25px;
}

.clickable {
    cursor: pointer;
}

.loader {
    position: absolute;
    top: 16px;
    left: 13px;
    width: 25.5px;
}

.busy,
.busy input,
.busy .nav-tabs,
.busy a,
.busy label,
.busy .form-control,
.busy .btn {
    cursor: progress !important;
}

.clearfix {
    *zoom: 1;
}

.clearfix:before,
.clearfix:after {
    display: table;
    content: '';
    line-height: 0;
}

.clearfix:after {
    clear: both;
}

/* # Multi-Select
================================================== */

.multiSelectButton {
    width: 100%;
    overflow: hidden;
    height: 32px;
}

.multiSelect {
    position: relative;
}

.multiSelect button {
    background: var(--main-background);
}

.multiSelectGroup {
    border-bottom: solid 1px var(--light-emphasis-lighter) !important;
}

.multiselectoptions {
    border-style: solid;
    border-color: var(--light-emphasis-lighter);
    border-width: 0 1px 1px 1px;
    padding: 0 4px 3px 4px;
    position: absolute;
    background: white;
    z-index: 20;
    /* width: calc(100% - 60px); */
}

.multiSelect .buttonLabel {
    padding: 4px 0px 4px 0px;
}

.multiSelect > button {
    border: solid 1px var(--light-emphasis-lighter);
    height: 32px;
    width: 100%;
    overflow: hidden;
}

.multiselect span {
    color: maroon;
    font-size: 8pt;
    line-height: -2px;
    cursor: default;
}

.multiselectoptions .selected {
    background: var(--blue);
    color: white;
}

.multiselectoptions div {
    padding: 2px;
    border: solid 1px transparent;
    cursor: pointer;
}

.multiselectoptions {
    padding-top: 4px;
}

.multiselect div:first-child {
    margin-left: 3px;
}

.multiselect input {
    border: 0 !important;
    outline: 0;
    margin-top: 4px;
    width: 200px;
    margin-left: 4px;
    padding: 0 !important;
}

.multiselect input:focus {
    box-shadow: none !important;
}

.multiselect div {
    border: solid 1px var(--light-emphasis-lighter);
    float: left;
    margin-right: 3px;
    padding: 1px 3px;
    border-radius: 3px;
    background: var(--light-emphasis-light);
    margin-top: 3px;
    cursor: default;
}

/* # Wizard Steps
================================================== */

.step {
    text-align: center;
    padding: 10px 0 10px 0;
}

.step.active {
    border-color: var(--blue);
    background-color: var(--blue);
    color: white;
}

/* # General styles
================================================== */
* {
    /* outline: none !important; */
}

html,
body {
    background: var(--main-background);
}

body {
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #555555;
    font-size: 13px;
    overflow: hidden;
}

/* # LoginBox
================================================== */
.loginbox {
    text-align: center;
    margin-left: calc(50% - 300px);
    margin-right: auto;
    margin-top: 191px;
    overflow: visible;
    width: 300px;
}

.login-required [uib-modal-window]:not(.forceOnTop),
.login-required .modal-backdrop:not(.backdropOnTop),
.login-required .fullscreen:not(.login-not-required) {
    display: none !important;
}

.full-blur {
    display: flex;
    color: #111;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: .5s;
    position: absolute; /* Or fixed, depending on your use case */
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    vertical-align: center;
    height: 0;
    overflow: hidden;
    backdrop-filter: blur(10px); /* Adjust the blur radius */
    background-color: rgba(255, 255, 255, 0.3); /* Optional for a translucent effect */
    z-index: 99999999; /* Ensure it is above other content */
}

.full-blur.active {
    transition: .5s;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 100vw;
}

.loginbox > .logincontent {
    overflow: auto;
    padding: 0 10px 12px 10px;
    border-radius: 7px;
    background: var(--blue);
    color: white;
    position: relative;
    z-index: 2147483644;
}

.loginbox > .logincontent {
}

.loginbox > .logincontent input,
.loginbox > .logincontent button {
    border-radius: 4px;
}

.loginbox > .logincontent button.btn-primary {
    background: var(--dark-emphasis);
}

.loginbox > .logincontent button.btn-primary:hover {
    background: var(--dark-emphasis-dark);
}

.password-reset-button {
    color: #ffffff;
    background-color: var(--orange);
}

/* # Navbar alerts
================================================== */
.alert {
    transition: 0.25s;
    transition-timing-function: ease-out;
    position: absolute;
    z-index: 10000;
    top: -48px;
    left: 0px;
    right: 0px;
}

@media only print {
    .alert {
        display: none;
    }
}

.alert-success {
    color: whitesmoke;
    background-color: var(--green);
    border-color: #53972a;
}
.alert-danger {
    color: whitesmoke;
    background-color: var(--red);
    border-color: #a52f29;
}
.alert-warning {
    color: whitesmoke;
    background-color: var(--orange);
    border-color: #d88105;
}

/* # Search bar
================================================== */
.searchbar-toggle {
    position: relative;
}

.searchbar {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    list-style: none;
    background-color: var(--main-background);
    border: 1px solid var(--light-emphasis-lighter);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}

/* # Item icons
================================================== */
.itemRemoveIcon {
    color: var(--light-emphasis-lighter);
    font-size: small;
    line-height: 7px;
    cursor: pointer;
}

.itemRemoveIcon:hover {
    color: var(--red);
}

.itemEditIcon {
    color: var(--light-emphasis-lighter);
    font-size: small;
    line-height: 7px;
    cursor: pointer;
}

.itemEditIcon:hover {
    color: #000;
}

.settings-group {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 20px;
}
.settings-group > div:last-child {
    border: solid 1px var(--light-emphasis-lighter);
    border-radius: 4px;
    flex-grow: 1;
    background: var(--light-emphasis-light);
    padding-top: 10px;
    padding-bottom: 10px;
    margin-right: 0;
    transition: 0.25s;
}
.settings-group > div:last-child:hover {
    box-shadow: 0 0 9px -3px #333;
}
.settings-group > i {
    width: 53px;
    border: solid 1px var(--light-emphasis-lighter);
    margin-right: 25px;
    background: var(--light-emphasis-light);
    padding: 15px 17px;
    border-radius: 100%;
    color: #888;
    font-size: 2rem;
}
/* # Layout
================================================== */
.container {
    width: 100% !important;
    padding: 0 0;
}

.row-no-margin {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.col-no-margin {
    margin-left: -15px !important;
    margin-right: -15px !important;
}

#container {
    position: relative;
    height: 100%;
    background: var(--main-background);
}

#container.fixed-header {
    margin-top: 52px;
}

#container > #content > .container {
    float: left;
    width: 100%;
    background: var(--main-background);
}

#content {
    background: var(--main-background);
    margin-left: 292px; /*default 250px, also changed #divider margin-left and #sidebar width*/
    overflow: visible;
    padding-bottom: 30px;
    min-height: 100%;
}

#content > .wrapper {
    -webkit-transition: margin ease-in-out 0.1s;
    -moz-transition: margin ease-in-out 0.1s;
    -o-transition: margin ease-in-out 0.1s;
    transition: margin ease-in-out 0.1s;
    position: relative;
}

.sidebar-closed > #content {
    margin-left: 0;
}

.checkbox-group {
    margin-left: 20px;
}
/* * * * * * * * * * * *
 * Page Header
 * * * * * * * * * * * */
.page-header {
    border: 0;
    margin: 0;
    *zoom: 1;
}

.page-header:before,
.page-header:after {
    display: table;
    content: '';
    line-height: 0;
}

.page-header:after {
    clear: both;
}

.page-title {
    float: left;
    padding: 25px 0;
}

.page-title h3 {
    margin: 0;
    margin-bottom: 10px;
    color: #555555;
    font-weight: 400;
    font-size: 20px;
}

.page-title span {
    display: block;
    font-size: 11px;
    color: #888888;
    font-weight: normal;
}

.page-stats {
    float: right;
    padding: 25px 0;
    margin-left: 0;
    list-style: none;
}

.page-stats li {
    float: left;
    display: block;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #d9d9d9;
}

.page-stats li:first-child {
    border: 0;
}

.page-stats li .summary {
    float: left;
    margin-right: 18px;
}

.page-stats li .summary span {
    color: #888888;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
}

.page-stats li .summary h3 {
    color: #555555;
    margin: 0;
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
}

.page-stats li .graph {
    float: right;
}

.page-stats li .sparkline {
    margin-top: 4px;
}

.align-left {
    text-align: left;
}

.align-center {
    text-align: center;
    margin: 0 auto;
}

.align-right {
    text-align: right;
}
/* * * * * * * * * * * *
 * General
 * * * * * * * * * * * */
.full-width-fix {
    width: 100% !important;
}

.row-bg {
    background-color: #f9f9f9;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    margin: 0 -20px !important;
    margin-bottom: 25px !important;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 25px;
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.15) inset;
    -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.15) inset;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.15) inset;
}

.row.well-row {
    background-color: #f9f9f9;
    border: 1px solid #d9d9d9;
    padding: 10px 5px 0;
    margin: 20px 30px 10px;
}

.hide-default {
    display: none;
}

.title-underline {
    border-bottom: 1px solid #d9d9d9;
    padding: 10px 0;
}
/* * * * * * * * * * * *
 * Padding Fixes
 * * * * * * * * * * * */
/* 5px */
.padding-top-5px {
    padding-top: 5px;
}

.padding-bottom-5px {
    padding-bottom: 5px;
}

.padding-left-5px {
    padding-left: 5px;
}

.padding-right-5px {
    padding-right: 5px;
}
/* 10px */
.padding-top-10px {
    padding-top: 10px;
}

.padding-bottom-10px {
    padding-bottom: 10px;
}

.padding-left-10px {
    padding-left: 10px;
}

.padding-right-10px {
    padding-right: 10px;
}
/* * * * * * * * * * * *
 * Margin Fixes
 * * * * * * * * * * * */
.margin-top-0px {
    margin-top: 0;
}

.margin-top-10px {
    margin-top: 10px;
}

.margin-top-25px {
    margin-top: 25px;
}
/* * * * * * * * * * * *
 * Spacings
 * * * * * * * * * * * */
.spacing-10px {
    display: block;
    padding-top: 10px;
}
/* # Typography
================================================== */
/* * * * * * * * * * * *
 * Headlines
 * * * * * * * * * * * */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 300;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

h2 {
    font-size: 25px;
}

h3 {
    font-size: 18px;
}

.subtitle {
    display: block;
    padding-bottom: 5px;
    font-weight: 600;
}

.widget-content + h1 {
    margin-top: 0;
}

.widget.box tfoot {
    background: var(--dark-emphasis-lighter);
    color: var(--light-emphasis-light);
    font-weight: bold;
}
/* * * * * * * * * * * *
 * Links
 * * * * * * * * * * * */
a {
    color: var(--blue-dark);
}

a:hover {
    color: var(--blue-dark);
}
/* * * * * * * * * * * *
 * Text Colors
 * * * * * * * * * * * */
span.blue {
    color: #54728c;
}

span.green {
    color: #94b86e;
}

span.red {
    color: #e25856;
}
/* # Header
================================================== */
.header {
    z-index: 10030;
}

.navbar {
    background: var(--light-emphasis-light);
    min-height: 48px;
    filter: none;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border-bottom: 1px solid var(--light-emphasis-lighter);
}

.navbar > .container {
    padding-left: 8px;
    padding-right: 20px;
}

.navbar-right {
    float: right !important;
}

.navbar-rightmost {
    padding-right: 2px !important;
    padding-left: 7px;
    cursor: pointer;
}

.navbar-left {
    float: left !important;
}

.navbar-text {
    line-height: 48px;
    color: white;
}

.navbar {
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /* DEPRECATED
	.nav > li:active, .nav > li.open {
		//border-left-color: rgba(0, 0, 0, 0.28);
		//border-left-color: rgba(0, 0, 0, 0.65);

		+ li {
			//border-left-color: rgba(0, 0, 0, 0.65);
		}
	} */
}

.navbar .navbar-brand {
    padding: 10px 0 0 0;
    line-height: 48px;
    color: white;
    text-shadow: 0 1px 0 #000000;
    font-size: 18px;
    width: 200px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow-x: hidden;
    text-align: left;
    height: 48px;
    max-width: none;
    margin-left: 0 !important;
    margin-right: 0;
}

.navbar .toggle-sidebar {
    float: left;
    margin-left: 15px;
    list-style: none;
    display: none;
    position: relative;
    color: var(--blue-dark);
    margin-bottom: 0;
    padding: 8px 0 0 0;
    font-size: 24px;
    text-decoration: none;
    cursor: pointer;
}

.navbar .toggle-sidebar:active {
    color: #909090;
}

.navbar .navbar-nav {
    padding-top: 0;
    padding-bottom: 0;
    margin-left: 0;
    margin-right: 0;
}

.navbar .navbar-nav > li > a {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.navbar .divider-vertical {
    height: 48px;
    border-left: 1px solid var(--blue-dark);
    border-right: 1px solid var(--main-background);
}

.navbar .nav > li {
    line-height: 28px;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.navbar .nav > li:first-child {
    border-left: 1px solid rgba(0, 0, 0, 0.21);
}

.navbar .nav > li.nav-toggle {
    display: none;
}

.nav > li > a:focus {
    background-color: transparent !important;
}

.navbar .nav > li:active,
.navbar .nav li.dropdown.open > .dropdown-toggle,
.navbar .nav li.dropdown.active > .dropdown-toggle,
.navbar .nav li.dropdown.open.active > .dropdown-toggle {
    color: whitesmoke;
    background-color: var(--blue) !important;
    -webkit-box-shadow: 1px 0 0 rgba(0, 0, 0, 0.25) inset, -1px 0 0 rgba(0, 0, 0, 0.25) inset;
    -moz-box-shadow: 1px 0 0 rgba(0, 0, 0, 0.25) inset, -1px 0 0 rgba(0, 0, 0, 0.25) inset;
    box-shadow: 1px 0 0 rgba(0, 0, 0, 0.25) inset, -1px 0 0 rgba(0, 0, 0, 0.25) inset;
}

.navbar .nav > li > a {
    color: #424242;
    font-size: 13px;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 18px;
    padding-right: 18px;
}

.navbar .alertsuccess .nav > li > a,
.navbar .alertwarn .nav > li > a,
.navbar .alertcritical .nav > li > a {
    color: white;
}

.navbar .nav > li > a:active {
    color: white !important;
}
.navbar .nav > li > a:hover {
    color: var(--text-lighter);
    background: var(--blue-dark);
    background: rgba(255, 255, 255, 0.05);
}

.navbar .nav > li > a > span {
    padding-left: 5px;
}

.navbar .nav > li > a > span.username {
    font-weight: bold;
}

.navbar .nav > li > a .badge {
    position: absolute;
    font-size: 10px;
    font-weight: 300;
    top: 8px;
    right: 8px;
    text-align: center;
    height: 14px;
    background-color: #be4141;
    background-color: rgba(219, 45, 42, 0.8);
    padding: 2px 4px;
    text-shadow: none;
}
/* * * * * * * * * * * *
 * Project Switcher
 * * * * * * * * * * * */
.project-switcher {
    display: none;
    background-color: var(--blue);
    /* * * * * * * * * * * *
	 * Project List
	 * * * * * * * * * * * */
}

.project-switcher.open {
    display: block;
}

.project-switcher #frame {
    height: 150px;
}

.project-switcher .project-list {
    height: 100%;
    list-style: none;
    margin: 0 auto;
    padding: 30px 10px;
    text-align: center;
}

.project-switcher .project-list li {
    display: inline-block;
    padding: 0 30px;
    color: whitesmoke;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.project-switcher .project-list li:last-child {
    border-right: none;
}

.project-switcher .project-list li a {
    color: whitesmoke;
    display: block;
    padding: 15px;
    opacity: 0.9;
}

.project-switcher .project-list li a:hover {
    background-color: rgba(255, 255, 255, 0.07);
    text-decoration: none;
    opacity: 1;
}

.project-switcher .project-list li a:active {
    background-color: rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.34) inset;
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.34) inset;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.34) inset;
}

.project-switcher .project-list li .image,
.project-switcher .project-list li .title {
    display: block;
}

.project-switcher .project-list li .image i {
    font-size: 25px;
}

.project-switcher .project-list li .title {
    font-weight: 600;
}

.project-switcher .project-list li .image + .title {
    padding-top: 10px;
}

.project-switcher .project-list li.current a {
    background-color: rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.34) inset;
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.34) inset;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.34) inset;
}
/* # Dropdowns
================================================== */
.navbar .dropdown-menu {
    margin-top: 3px !important;
    position: absolute !important;
    float: left !important;
    background-color: var(--main-background) !important;
    border: 1px solid var(--light-emphasis-lighter) !important;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175) !important;
    -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175) !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175) !important;
    right: 0;
    left: auto;
}

.navbar .dropdown-toggle i.small {
    font-size: 10px;
}

.dropdown-menu {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);
    font-size: 13px;
    text-align: left;
    padding: 0;
    background-color: var(--main-background);
    border-color: var(--light-emphasis-lighter);
    z-index: 3000;
}

.dropdown-menu > li > a > i,
.dropdown-menu > li > i {
    margin-right: 5px;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-submenu:hover > a,
.dropdown-submenu:focus > a {
    background: var(--blue);
    filter: none;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
    background-color: var(--blue-dark);
}

ul.dropdown-menu {
}

ul.dropdown-menu > li.active,
ul.dropdown-menu > li.active:hover,
ul.dropdown-menu > li.active:focus {
    background-color: var(--blue-dark);
    color: whitesmoke;
}

ul.dropdown-menu > li.active > div > a,
ul.dropdown-menu > li.active:hover > div > a,
ul.dropdown-menu > li.active:focus > div > a {
    color: whitesmoke;
}

.btn-group > .dropdown-menu,
.btn-group > .popover {
    font-size: 13px;
}

.btn-group > .btn {
    font-size: 13px;
}

.btn-group > .btn-lg {
    font-size: 14px;
}

.btn-group > .btn-sm {
    font-size: 12px;
}

.btn-group > .btn-xs {
    font-size: 11px;
}
/* * * * * * * * * * * *
 * Extended
 * * * * * * * * * * * */
.dropdown-menu.extended {
    min-width: 180px;
    max-width: 320px;
    width: 260px;
    padding: 0;
}

.dropdown-menu.extended li {
    border-bottom: 1px solid #e6e6e6;
    /* * * * * * * * * * * *
		 * Notifications
		 * * * * * * * * * * * */
    /* * * * * * * * * * * *
		 * Progressbars (Tasks)
		 * * * * * * * * * * * */
    /* * * * * * * * * * * *
		 * Messages
		 * * * * * * * * * * * */
}

.dropdown-menu.extended li:last-child,
.dropdown-menu.extended li.title {
    border-bottom: none;
}

.dropdown-menu.extended li.footer {
    text-align: center;
}

.dropdown-menu.extended li.footer a {
    background-color: #f9f9f9;
    color: #6f6f6f;
    padding: 8px;
}

.dropdown-menu.extended li.footer a:hover {
    background-color: var(--blue-dark);
    color: whitesmoke;
}

.dropdown-menu.extended li p {
    padding: 6px 15px;
    background-color: var(--blue);
    margin: 0px;
    font-size: 13px;
    font-weight: 600;
    color: whitesmoke;
}

.dropdown-menu.extended li a {
    font-size: 12px;
    padding: 10px;
    white-space: normal;
}

.dropdown-menu.extended li a:hover .time,
.dropdown-menu.extended li a:hover .task .percent {
    color: whitesmoke;
}

.dropdown-menu.extended li .message {
    padding: 7px;
}

.dropdown-menu.extended li .time {
    font-weight: 300;
    position: absolute;
    right: 5px;
    color: #adadad;
    font-size: 11px;
    padding-top: 3px;
}

.dropdown-menu.extended li .label {
    padding: 7px;
    width: 24px;
    text-align: center;
    display: inline-block;
}

.dropdown-menu.extended li .task .percent {
    float: right;
    display: inline-block;
    color: #adadad;
    font-size: 11px;
}

.dropdown-menu.extended li .progress {
    margin: 5px 0;
}

.dropdown-menu.extended li .photo img {
    float: left;
    height: 40px;
    width: 40px;
    margin-right: 6px;
}

.dropdown-menu.extended li .subject {
    display: block;
}

.dropdown-menu.extended li .subject .from {
    font-size: 13px;
    font-weight: 600;
}

.dropdown-menu.extended li .text {
    display: block;
    white-space: normal;
    font-size: 12px;
    line-height: 20px;
    padding-top: 1px;
}

.dropdown-menu.under-modal {
    z-index: 1000;
}
/* # Sidebar & Navigation
================================================== */
#sidebar {
    width: 300px; /*default 250px, also changed #divider margin-left and #content margin-left*/
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    z-index: 699;
    /* * * * * * * * * * * *
	 * Scrollbar
	 * * * * * * * * * * * */
    /* * * * * * * * * * * *
	 * Search Input
	 * * * * * * * * * * * */
    /* Search Results */
    /* * * * * * * * * * * *
	 * Navigation
	 * * * * * * * * * * * */
    /* * * * * * * * * * * *
	 * Sidebar Title
	 * * * * * * * * * * * */
    /* * * * * * * * * * * *
	 * Sidebar Notifications
	 * * * * * * * * * * * */
}

#sidebar * {
    overflow-x: hidden;
    overflow-y: visible;
    white-space: nowrap;
    /*text-overflow: ellipsis;*/
}

#sidebar .nav-block {
    position: absolute;
    display: inline-block;
    left: 36px;
}

#sidebar #sidebar-content {
    float: left;
    width: calc(100% - 7px) !important;
    height: calc(100vh - 52px);
    background: var(--light-emphasis-light);
    border-right: solid 1px var(--light-emphasis-lighter);
}

#sidebar #divider {
    background: #ececec;
    height: calc(100vh - 52px);
    position: absolute;
    margin-left: 300px; /*default 250px*/
    right: -1px;
    width: 8px;
    border-left: 1px solid #d1d1d1;
    border-right: 1px solid #d1d1d1;
    /* box-shadow: 2px 0 6px -2px var(--blue-dark); */
}

#sidebar .resizeable {
    cursor: col-resize;
    background: url(../img/sidebar/sidebar-divider-dots.png) 2px 50% no-repeat #ececec !important;
}

#sidebar .slimScrollDiv {
    float: left !important;
    width: 100% !important;
}

#sidebar .slimScrollBar {
    width: 5px !important;
    background-color: #878787 !important;
    right: 0px !important;
    border-left: 1px solid #555555;
    border-right: 1px solid #555555;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

#sidebar .sidebar-search {
    /*margin: 15px;
  margin-right: 23px;*/
    background-color: var(--light-emphasis-light);
    padding: 3px 0 1px 5px;
}

#sidebar .sidebar-search .input-box {
    border-bottom: 1px solid #d9d9d9 !important;
    padding-bottom: 2px;
}

#sidebar .sidebar-search span {
    /*display: block;*/
    overflow: hidden;
}

#sidebar .sidebar-search input {
    width: 100%;
}

#sidebar .sidebar-search input,
#sidebar .sidebar-search .submit {
    margin: 0;
    border: 0;
    padding-left: 10px;
    box-shadow: none;
    color: #000000;
    background-color: var(--light-emphasis-light) !important;
}

#sidebar .sidebar-search .submit {
    display: block;
    float: right;
    width: 24px;
    height: 16px;
    margin-top: 7px;
    margin-right: 18px;
    opacity: 0.7;
    overflow: hidden;
}
/*#sidebar .sidebar-search .submit:hover,
#sidebar .sidebar-search .submit:focus {
  opacity: 1.0;
}*/
#sidebar .sidebar-search-results {
    /*background-color: #ececec;*/
    padding: 8px 5px 5px 7px;
    border-top: 1px solid #b9b9b9;
    /*border-bottom: 1px solid #dfdfdf;*/
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1) inset;
    display: none;
}

#sidebar .sidebar-search-results.open {
    display: block;
    position: absolute;
    background: var(--light-emphasis-light);
    color: #333;
    z-index: 1001;
    width: 100%;
    padding: 0;
    box-shadow: 0 2px 2px 0px #666;
    max-height: calc(100vh - 129px);
}

#sidebar .sidebar-search-results.open li {
    cursor: pointer;
    padding: 9px;
    border-bottom: solid 1px var(--light-emphasis-lighter);
    font-size: 10pt;
    font-weight: normal;
}

#sidebar .sidebar-search-results.open li:hover {
    background: var(--blue-dark);
}

#sidebar .sidebar-search-results.open li:hover a {
    color: white !important;
    text-decoration: none !important;
}

#sidebar .sidebar-search-results.open li i {
    display: inline-block;
    border: solid 1px white;
    width: 26px;
    text-align: center;
    height: 25px;
    vertical-align: baseline;
    line-height: 25px;
    overflow: visible;
    color: white;
    margin-right: 3px;
}

#sidebar .sidebar-search-results .close {
    position: relative;
    top: -2px;
    right: 10px;
    font-size: 11px;
    line-height: 25px;
}

#sidebar .sidebar-search-results .close:hover {
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
}

#sidebar .sidebar-search-results .title {
    font-weight: 600;
    padding: 5px 0;
    color: #888888;
    text-transform: uppercase;
    font-size: 12px;
}

#sidebar .sidebar-search-results .title > span {
    font-weight: 700;
}

#sidebar .sidebar-search-results .notifications li {
    padding-left: 0;
    padding-right: 0;
    margin-right: 5px;
    border-bottom-color: var(--dark-emphasis-light);
}

#sidebar ul#nav {
    list-style: none;
    margin: 15px 0;
    padding: 0;
    /* * * * * * * * * * * *
		 * Mainmenu and submenus
		 * * * * * * * * * * * */
    border-bottom: solid 1px var(--light-emphasis-lighter);
}

#sidebar ul#nav > li.current > a {
    border-right: 6px solid var(--blue);
}

#sidebar ul#nav > li.current > a > .arrow {
    right: -3px !important;
}

#sidebar ul#nav li {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--light-emphasis-lighter);
}

#sidebar ul#nav li:last-child,
#sidebar ul#nav li.open,
#sidebar ul#nav li.open-default,
#sidebar ul#nav li.open-fixed {
    border-bottom: none;
}

#sidebar ul#nav li.current > ul {
    display: block;
}

#sidebar ul#nav li.current .label.pull-right {
    margin-right: 10px;
}

#sidebar ul#nav li.open-default > ul,
#sidebar ul#nav li.open-fixed > ul {
    display: block;
}

#sidebar ul#nav li .label {
    padding: 5px 8px;
    text-shadow: none;
}

#sidebar ul#nav li .label.pull-right {
    position: absolute;
    right: 15px;
    margin-right: 20px;
}

#sidebar ul#nav li .arrow {
    line-height: 20px;
    position: absolute;
    right: 10px;
}

#sidebar ul#nav li a {
    display: block;
    position: relative;
    margin: 0;
    border: 0;
    padding: 8px 15px;
    padding-left: 10px;
    color: #555555;
    text-decoration: none;
    text-shadow: 0 1px 0 var(--main-background);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

#sidebar ul#nav li a:hover {
    background: var(--main-background);
}

#sidebar ul#nav li a:active {
    background: var(--main-background);
}

#sidebar ul#nav li a i {
    color: var(--dark-emphasis);
    padding-right: 10px;
    float: left;
    line-height: 20px;
}

#sidebar ul#nav li a i[class^='icol-'],
#sidebar ul#nav li a i[class^='icos-'],
#sidebar ul#nav li a i[class*=' icol-'],
#sidebar ul#nav li a i[class*=' icos-'] {
    margin-top: 2px;
}

#sidebar ul#nav > li.current,
#sidebar ul#nav > .open {
    background: var(--light-emphasis);
}

#sidebar ul#nav ul.sub-menu {
    display: none;
    list-style: none;
    clear: both;
    margin: 0;
    padding: 0;
    font-size: 13px;
    background: #f1f1f1;
    border-bottom: 1px solid var(--main-background);
}

#sidebar ul#nav ul.sub-menu a {
    font-weight: normal;
    padding: 12px 15px 12px 20px;
    text-transform: none;
}

#sidebar ul#nav ul.sub-menu a:hover {
    background: rgba(255, 255, 255, 0.5);
}

#sidebar ul#nav ul.sub-menu a:active {
    background: #ebebeb;
}

#sidebar ul#nav ul.sub-menu li.current {
    background: var(--light-emphasis);
}

#sidebar ul#nav ul.sub-menu li:first-child > a {
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4) inset;
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4) inset;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4) inset;
}

#sidebar ul#nav ul.sub-menu ul.sub-menu {
    margin: 5px;
    margin-right: 0;
    margin-left: 40px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: none;
}

#sidebar ul#nav ul.sub-menu ul.sub-menu > li {
    border-left: 1px solid #d1d1d1;
    border-bottom: none;
}

#sidebar ul#nav ul.sub-menu ul.sub-menu > li a {
    font-size: 12px;
    color: #6f6f6f;
    padding: 7px 15px;
}

#sidebar ul#nav ul.sub-menu ul.sub-menu > li a:hover {
    background: rgba(255, 255, 255, 0.3);
}

#sidebar ul#nav ul.sub-menu ul.sub-menu > li a:active {
    background: #ebebeb;
}

#sidebar ul#nav ul.sub-menu ul.sub-menu li:first-child > a {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.sidebar-title {
    background-color: var(--dark-emphasis);
    padding: 10px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    /* border-top: 1px solid #818181; */
    border-bottom: 1px solid var(--dark-emphasis-lighter);
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1) inset;
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1) inset;
}

.sidebar-title.search {
    position: relative;
    overflow: visible !important;
}

.sidebar-title.search > i {
    position: absolute;
    top: 1px;
    right: 0;
    height: 35px;
    border: 0;
    width: 33px;
    padding-top: 8px;
    border-left: solid 1px var(--light-emphasis-lighter);
}

.sidebar-title.search > input {
    height: 36px;
    border: 0;
    outline: 0;
}

#sidebar .notifications,
.notification-list {
    margin: 0;
    padding: 0;
    list-style: none;
    max-height: 375px;
    background: var(--light-emphasis-light);
    transition: max-height 0.25s;
}

#sidebar .notifications li,
.notification-list li {
    padding: 5px 5px 1px;
    border-bottom: 1px solid var(--light-emphasis-lighter);
    position: relative;
}

#sidebar .notifications li:last-child,
.notification-list li:last-child {
    border-bottom: none;
}

#sidebar .notifications li a {
    color: var(--text-lighter);
}

#sidebar .notifications li a:hover {
    color: var(--blue-dark);
}

#sidebar .notifications .col-left {
    float: left;
    margin-right: -100%;
}

#sidebar .notifications .col-right {
    float: left;
    width: 100%;
}

#sidebar .notifications .col-right.with-margin {
    margin-left: 35px;
}

#sidebar .notifications .message {
    white-space: normal;
}

#sidebar .notifications .label {
    padding: 5px 5px 2px 5px;
    width: 26px;
    height: 25px;
    text-align: center;
    display: inline-block;
    border: solid 1px;
}

#sidebar .notifications .time {
    color: #888888;
    display: block;
    padding-top: 5px;
    font-size: 11px;
}

#sidebar .notifications li.my-work {
    padding: 5px 5px 2px 5px;
}

#sidebar .notifications li.my-work-selected {
    padding: 5px 5px 2px 5px;
    font-weight: bold;
}

#sidebar .notifications li.my-work div.col-right,
#sidebar .notifications li.my-work-selected div.col-right {
    padding-top: 3px;
}

#sidebar .notifications.collapsed {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.25s;
}

#sidebar .list-group {
    margin-bottom: 0;
}

#sidebar .list-group .list-group-header {
    padding: 5px 0 5px 5px;
    background: var(--dark-emphasis-light);
    color: #e7e7e7;
    height: 25px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

#sidebar .sidebar-block {
    position: absolute;
    height: 100vh;
    background: black;
    left: 0;
    right: 7px;
    z-index: 1000;
    opacity: 0.6;
}

.sidebar-fixed {
    position: fixed !important;
    top: 52px;
}

.sidebar-scrollable {
    top: 48px;
}

.fill-nav-space {
    height: 52px;
}

.sidebar-closed > #sidebar {
    display: none;
}
/*.sidebar-closed {
	& > #sidebar {
		width: @sidebarClosedWidth;

		ul#nav {
			width: @sidebarClosedWidth;
			border-bottom: 1px solid @navBorder;

			li {
				&:hover {
					width: @sidebarWidth;
					position: relative;
					z-index: 2000;
					display: block !important;
				}

				&.open, &.open-default, &.open-fixed {
					border-bottom: 1px solid @navBorder;
				}

				a {
					padding-left: 12px;
				}

				ul.sub-menu {
					display: none;
				}
			}
		}
	}
}*/ /* # Breadcrumb
================================================== */
.crumbs {
    margin: 47px 0 0 0;
    height: 39px;
    background: var(--dark-emphasis-light);
    border-bottom: 1px solid var(--light-emphasis-lighter);
    color: white;
}

.crumbs .breadcrumb {
    float: left;
    background-color: #f9f9f9;
    height: 0;
    margin: 7px 0 0 5px;
    padding: 0;
}

.crumbs .breadcrumb li {
    float: left;
    font-size: 17px;
    padding-top: 0px;
    padding-right: 5px;
}

.crumbs .breadcrumb li a {
    color: var(--light-emphasis-lighter);
}

.crumbs .breadcrumb li a:hover {
    text-decoration: underline;
    color: var(--light-emphasis-lighter);
}

.crumbs .breadcrumb li i {
    color: var(--light-emphasis-lighter);
    padding: 0 5px;
}

.crumbs .breadcrumb li.current a {
    color: #949494 !important;
}

.crumbs .crumb-buttons {
    float: right;
    list-style: none;
    margin-right: 21px;
    margin-left: 0;
    height: 0;
}

.crumbs .crumb-buttons > li {
    float: left;
    font-size: 12px;
    border-right: 1px solid #d9d9d9;
    position: relative;
}

.crumbs .crumb-buttons > li:first-child,
.crumbs .crumb-buttons > li.first {
    border-left: 1px solid #d9d9d9;
}

.crumbs .crumb-buttons > li > a {
    color: #555555;
    text-decoration: none;
    white-space: nowrap;
    padding: 0 10px;
    line-height: 39px;
    display: inline-block;
    border-left: 1px solid var(--main-background);
    border-right: 1px solid var(--main-background);
}

.crumbs .crumb-buttons > li > a:hover {
    background: var(--main-background);
}

.crumbs .crumb-buttons > li > a:active {
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    background: #ebebeb;
}

.crumbs .crumb-buttons > li > i,
.crumbs .crumb-buttons > li > a > i {
    padding-right: 5px;
}

.crumbs .crumb-buttons > li > i.left-padding,
.crumbs .crumb-buttons > li > a > i.left-padding {
    padding-right: 0;
    padding-left: 5px;
}

.crumbs .crumb-buttons > li.open {
    background: var(--main-background);
}

.breadcrumb > li + li:before {
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    content: '\f105';
}
/* # Buttons
================================================== */
.btn,
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ColVis_MasterButton,
.fc-state-default {
    background-color: #f3f3f3;
    background-image: none;
    filter: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    padding: 6px 13px;
    text-shadow: none;
    font-weight: normal;
    color: var(--text-lighter);
    font-size: 13px;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.13);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    position: relative;
    z-index: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.btn:hover,
.ui-state-default:hover,
.ui-widget-content .ui-state-default:hover,
.ui-widget-header .ui-state-default:hover,
.ColVis_MasterButton:hover,
.fc-state-default:hover,
.btn:focus,
.ui-state-default:focus,
.ui-widget-content .ui-state-default:focus,
.ui-widget-header .ui-state-default:focus,
.ColVis_MasterButton:focus,
.fc-state-default:focus {
    color: var(--text-lighter);
    background-color: var(--light-emphasis-lighter);
    border-color: rgba(0, 0, 0, 0.13);
}

.btn:active,
.ui-state-default:active,
.ui-widget-content .ui-state-default:active,
.ui-widget-header .ui-state-default:active,
.ColVis_MasterButton:active,
.fc-state-default:active,
.btn.active,
.ui-state-default.active,
.ui-widget-content .ui-state-default.active,
.ui-widget-header .ui-state-default.active,
.ColVis_MasterButton.active,
.fc-state-default.active {
    background-color: #e6e6e6;
    border-color: rgba(0, 0, 0, 0.13);
    border-top: 1px solid #a6a6a6;
}

.btn.disabled,
.ui-state-default.disabled,
.ui-widget-content .ui-state-default.disabled,
.ui-widget-header .ui-state-default.disabled,
.ColVis_MasterButton.disabled,
.fc-state-default.disabled,
.btn.btn[disabled],
.ui-state-default.btn[disabled],
.ui-widget-content .ui-state-default.btn[disabled],
.ui-widget-header .ui-state-default.btn[disabled],
.ColVis_MasterButton.btn[disabled],
.fc-state-default.btn[disabled] {
    background-color: var(--light-emphasis-lighter);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-top: 1px solid rgba(0, 0, 0, 0.13);
}

.btn.disabled:hover,
.ui-state-default.disabled:hover,
.ui-widget-content .ui-state-default.disabled:hover,
.ui-widget-header .ui-state-default.disabled:hover,
.ColVis_MasterButton.disabled:hover,
.fc-state-default.disabled:hover,
.btn.btn[disabled]:hover,
.ui-state-default.btn[disabled]:hover,
.ui-widget-content .ui-state-default.btn[disabled]:hover,
.ui-widget-header .ui-state-default.btn[disabled]:hover,
.ColVis_MasterButton.btn[disabled]:hover,
.fc-state-default.btn[disabled]:hover {
    cursor: not-allowed;
}

.btn .caret,
.ui-state-default .caret,
.ui-widget-content .ui-state-default .caret,
.ui-widget-header .ui-state-default .caret,
.ColVis_MasterButton .caret,
.fc-state-default .caret {
    border-top-color: #333333;
    margin-top: 0;
    margin-left: 3px;
    vertical-align: middle;
}

.btn + .caret,
.ui-state-default + .caret,
.ui-widget-content .ui-state-default + .caret,
.ui-widget-header .ui-state-default + .caret,
.ColVis_MasterButton + .caret,
.fc-state-default + .caret,
.btn + .dropdown-toggle .caret,
.ui-state-default + .dropdown-toggle .caret,
.ui-widget-content .ui-state-default + .dropdown-toggle .caret,
.ui-widget-header .ui-state-default + .dropdown-toggle .caret,
.ColVis_MasterButton + .dropdown-toggle .caret,
.fc-state-default + .dropdown-toggle .caret {
    margin-left: 0px;
}
/* * * * * * * * * * * *
 * Sizes
 * * * * * * * * * * * */
.btn-lg {
    padding: 10px 15px;
    font-size: 14px;
}

.btn-sm {
    padding: 4px 9px;
    font-size: 12px !important;
}

.btn-sm.color {
    padding: 4px 0 3px 0;
}

.btn-xs {
    padding: 0px 10px;
    font-size: 11px;
}
/* * * * * * * * * * * *
 * States
 * * * * * * * * * * * */
.btn {
    background: var(--main-background);
}

.btn-primary {
    color: whitesmoke;
    background-color: var(--blue);
    z-index: 2;
}

.btn-primary:hover,
.btn-primary:focus {
    color: whitesmoke;
    background-color: #55818b;
}

.btn-primary:active,
.btn-primary.active,
.btn-primary:active:hover,
.btn-primary.active:hover {
    background-color: #55818b;
    border-top: 1px solid #1c3463;
}

.btn-primary.disabled,
.btn-primary.btn[disabled],
.btn-primary.disabled:hover,
.btn-primary.btn[disabled]:hover {
    background-color: var(--blue);
    box-shadow: none;
}

.btn-primary .caret {
    border-top-color: var(--main-background);
}

.btn-group.open .btn-primary.dropdown-toggle {
    background-color: #55818b;
}

.btn-info {
    color: whitesmoke;
    background-color: var(--blue);
    z-index: 2;
}

.btn-info:hover,
.btn-info:focus {
    color: whitesmoke;
    background-color: #55818b;
}

.btn-info:active,
.btn-info.active,
.btn-info:active:hover,
.btn-info.active:hover {
    background-color: #55818b;
    border-top: 1px solid #15424f;
}

.btn-info.disabled,
.btn-info.btn[disabled] {
    background-color: #2f96b4;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.btn-info .caret {
    border-top-color: var(--main-background);
}

.btn-group.open .btn-info.dropdown-toggle {
    background-color: #2a85a0;
}

.btn-warning {
    color: whitesmoke;
    background-color: var(--orange) !important;
    z-index: 2;
}

.btn-warning:hover,
.btn-warning:focus {
    color: whitesmoke;
    background-color: var(--orange-dark);
}

.btn-warning:active,
.btn-warning.active {
    background-color: #df8505;
    border-top: 1px solid #7c4a03;
}

.btn-warning.disabled,
.btn-warning.btn[disabled] {
    background-color: var(--orange);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.btn-warning .caret {
    border-top-color: var(--main-background);
}

.btn-group.open .btn-warning.dropdown-toggle {
    background-color: #df8505;
}

.btn-danger {
    color: whitesmoke;
    background-color: var(--red);
    z-index: 2;
}

.btn-default {
    background: var(--main-background);
}

.btn-danger:hover,
.btn-danger:focus {
    color: whitesmoke;
    background-color: var(--red-dark);
}

.btn-danger:active,
.btn-danger.active {
    background-color: #a9302a;
    border-top: 1px solid #571916;
}

.btn-danger.disabled,
.btn-danger.btn[disabled] {
    background-color: var(--red);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.btn-danger .caret {
    border-top-color: var(--main-background);
}

.btn-group.open .btn-danger.dropdown-toggle {
    background-color: #a9302a;
}

.btn-inverse {
    color: whitesmoke;
    background-color: #555555;
    z-index: 2;
}

.btn-inverse:hover,
.btn-inverse:focus {
    color: whitesmoke;
    background-color: #626262;
}

.btn-inverse:active,
.btn-inverse.active {
    background-color: #484848;
    border-top: 1px solid #151515;
}

.btn-inverse.disabled,
.btn-inverse.btn[disabled] {
    background-color: #555555;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.btn-inverse .caret {
    border-top-color: var(--main-background);
}

.btn-group.open .btn-inverse.dropdown-toggle {
    background-color: #484848;
}

.btn-success {
    color: whitesmoke;
    background-color: var(--green);
    z-index: 2;
}

.btn-success:hover,
.btn-success:focus {
    color: whitesmoke;
    background-color: var(--green-dark);
}

.btn-success:active,
.btn-success.active {
    background-color: #499249;
    border-top: 1px solid #274e27;
}

.btn-success.disabled,
.btn-success.btn[disabled] {
    background-color: #51a351;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.btn-success .caret {
    border-top-color: var(--main-background);
}

.btn-group.open .btn-success.dropdown-toggle {
    background-color: #499249;
}

.btn-facebook {
    color: whitesmoke;
    background-color: #3b5998;
    z-index: 2;
}

.btn-facebook:hover,
.btn-facebook:focus {
    color: whitesmoke;
    background-color: #4264aa;
}

.btn-facebook:active,
.btn-facebook.active {
    background-color: #344e86;
    border-top: 1px solid #17233c;
}

.btn-facebook.disabled,
.btn-facebook.btn[disabled] {
    background-color: #3b5998;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.btn-facebook .caret {
    border-top-color: var(--main-background);
}

.btn-group.open .btn-facebook.dropdown-toggle {
    background-color: #344e86;
}

.btn-twitter {
    color: whitesmoke;
    background-color: #00acee;
    z-index: 2;
}

.btn-twitter:hover,
.btn-twitter:focus {
    color: whitesmoke;
    background-color: #09bbff;
}

.btn-twitter:active,
.btn-twitter.active {
    background-color: #009ad5;
    border-top: 1px solid #00506f;
}

.btn-twitter.disabled,
.btn-twitter.btn[disabled] {
    background-color: #00acee;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.btn-twitter .caret {
    border-top-color: var(--main-background);
}

.btn-group.open .btn-twitter.dropdown-toggle {
    background-color: #009ad5;
}

.btn-google-plus {
    color: whitesmoke;
    background-color: #d14836;
    z-index: 2;
}

.btn-google-plus:hover,
.btn-google-plus:focus {
    color: whitesmoke;
    background-color: #d65b4b;
}

.btn-google-plus:active,
.btn-google-plus.active {
    background-color: #c13e2c;
    border-top: 1px solid #6e2319;
}

.btn-google-plus.disabled,
.btn-google-plus.btn[disabled] {
    background-color: #d14836;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.btn-google-plus .caret {
    border-top-color: var(--main-background);
}

.btn-group.open .btn-google-plus.dropdown-toggle {
    background-color: #c13e2c;
}
/* * * * * * * * * * * *
 * Button Groups
 * * * * * * * * * * * */
.btn-group > .btn:first-child,
.btn-group > .btn:last-child {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.btn-group > .btn i {
    margin-right: 3px;
    margin-left: 3px;
}

.btn-group > .dropdown-toggle {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
/* * * * * * * * * * * *
 * Dropdown Toggles
 * * * * * * * * * * * */
.btn-group > .btn + .dropdown-toggle {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.btn:active,
.btn.active,
.btn-group.open .dropdown-toggle,
.btn-group > .btn + .dropdown-toggle:active {
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.13) inset;
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.13) inset;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.13) inset;
}
/* * * * * * * * * * * *
 * Icon Buttons
 * * * * * * * * * * * */
.btn-icon {
    margin: 10px 0px;
    padding: 10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    border: 1px solid rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-icon:active {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

.btn-icon i {
    margin: 0;
}
/* * * * * * * * * * * *
 * Badges
 * * * * * * * * * * * */
.btn .label {
    position: absolute;
    font-size: 11px !important;
    font-weight: 300;
    top: -5px;
    right: -5px;
    padding: 3px 7px 3px 7px;
    color: white !important;
    text-shadow: none;
    border-width: 0;
    border-style: solid;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
/* Caret for Dropups */
.dropup .btn .caret {
    border-bottom-color: #333333;
}
/* * * * * * * * * * * *
 * Demo Only
 * * * * * * * * * * * */
.btn-toolbar-demo .btn {
    margin: 3px;
}

.list-item {
    padding: 5px;
    border: solid 1px var(--light-emphasis-lighter);
    font-size: 1.5rem;
    position: relative;
    border-bottom: 0;
    background: var(--light-emphasis-light);
    overflow: hidden;
}

.list-item:last-child {
    border-bottom: solid 1px var(--light-emphasis-lighter);
}

.list-item .right {
    float: right;
    margin-right: 34px;
}

.list-item .right i {
    color: white;
    background: var(--blue);
    border: solid 1px #2070a6;
    padding: 8px;
    top: -1px;
    right: 0px;
    position: absolute;
}

/* # Widgets
================================================== */
.widget {
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 0px;
    /* Divider */
}

.widget.no-bottom {
    margin-bottom: 0;
}

.widget-header {
}

.widget .widget-header {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--light-emphasis-light);
    *zoom: 1;
}

.widget .widget-header:before,
.widget .widget-header:after {
    display: table;
    content: '';
    line-height: 0;
}

.widget .widget-header:after {
    clear: both;
}

.widget .widget-header h4 {
    display: inline-block;
    color: #555555;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    padding: 0;
    margin-bottom: 7px;
}

.widget .widget-header h4 i {
    font-size: 14px;
    margin-right: 7px;
}

.widget .widget-header .toolbar {
    display: inline-block;
    padding: 0;
    margin: 0;
    float: right;
}

.fullscreen .toolbar .btn {
    /* padding: 4px 4px 2px 1px; */
    /* padding-bottom: 1px; */
    /* padding-left: 27px; */
}

.fullscreen .toolbar .btn i {
    padding: 0 0 4px;
}

.toolbar .btn .btn-text {
    margin-top: 0px;
}

.toolbar .btn img {
    margin: -9px 0 -9px -9px;
    position: absolute;
    top: 11px;
    left: 10px;
}

.widget-content .widget-header {
    margin-top: 10px !important;
    border: solid 1px #ececec !important;
}

.widget.box {
    border: 1px solid var(--light-emphasis-lighter);
    background: var(--light-emphasis-light);
}

.widget.box .widget-header:not(.no-box) {
    background: var(--light-emphasis-light);
    line-height: 36px;
    padding: 0 4px 8px 8px;
    margin-bottom: 0;
}

.widget-buttons {
}

.widget-buttons i {
    color: white;
    padding: 6px;
    text-align: center;
    width: 27px;
    border: solid 1px #1f4073;
    background: var(--blue);
    cursor: pointer;
}

.widget.box .widget-header h4 {
    margin-bottom: 0;
}

.widget.box .widget-header .toolbar {
    margin-right: -5px;
}

.widget.box .widget-header .toolbar.no-padding {
    margin: 0px 2px;
}

.widget.box .widget-header .toolbar.no-padding .btn {
    font-size: 13px;
    height: 30px;
    padding: 0 8px;
    padding-top: 5px;
    margin-top: -1px;
}

.widget.box .widget-content {
    padding: 10px;
    position: relative;
    background-color: var(--main-background);
}

.widget.box .widget-content.lite {
    padding: 0;
}

.widget.box .widget-content.lite .row-tools {
    padding: 7px 0px 9px 5px;
    left: -22px !important;
}

.widget-content.lite .table {
    margin-bottom: 0 !important;
}

.no-padding > list-widget > .widget.box > .widget-content {
    padding: 0 !important;
}

.list-widget-filter {
    padding: 10px;
    border: solid 1px var(--light-emphasis-lighter);
    border-bottom: 0;
}

.widget.box .widget-content.no-padding {
    padding: 5px 5px;
    margin: 0 5px 5px;
    border: solid 1px var(--light-emphasis-lighter);
    overflow: hidden;
}

.widget.box .widget-content.no-padding .row {
    padding-left: 15px;
    padding-right: 15px;
}

.widget.box .widget-content.widget-deeper {
    background-color: #f9f9f9;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
}

.widget.box.box-shadow {
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    border-bottom-color: var(--light-emphasis-lighter);
}

.widget.widget-closed.box .widget-header {
    margin-bottom: -1px;
    border-bottom: 1px solid #d9d9d9;
}

.widget.widget-closed .widget-content {
    display: none;
}

.widget > .divider,
.widget .widget-content > .divider {
    width: 100%;
    border-bottom: 1px solid #d9d9d9;
    border-top: 1px solid var(--main-background);
}

.widget .widget-content > .divider {
    margin: 5px 0;
}
/* * * * * * * * * * * *
 * Semi Widgets
 * * * * * * * * * * * */
.semi-widget {
    margin-bottom: 10px;
}
/* * * * * * * * * * * *
 * Widget Title
 * * * * * * * * * * * */
.widget-title {
    margin-bottom: 20px;
    border-bottom: 1px solid #d9d9d9;
    padding: 10px 0;
    font-weight: 300;
    font-size: 17px;
}

.widget-title > i {
    margin-right: 5px;
}
/* * * * * * * * * * * *
 * Nested Widget
 * * * * * * * * * * * */
.nested-widget {
    margin-top: 0px;
    margin-bottom: 25px;
    padding: 0px;
    /* Divider */
}

.nested-widget .nested-widget-header {
    margin-bottom: 15px;
    border-bottom: 1px solid #ececec;
    *zoom: 1;
}

.nested-widget .nested-widget-header:before,
.nested-widget .nested-widget-header:after {
    display: table;
    content: '';
    line-height: 0;
}

.nested-widget .nested-widget-header:after {
    clear: both;
}

.nested-widget .nested-widget-header h4 {
    display: inline-block;
    color: #555555;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    padding: 0;
    margin-bottom: 7px;
}

.nested-widget .nested-widget-header h4 i {
    font-size: 14px;
    margin-right: 5px;
    color: #6f6f6f;
}

.nested-widget .nested-widget-header .toolbar {
    display: inline-block;
    padding: 0;
    margin: 0;
    float: right;
}

.nested-widget.box {
    border: 1px solid #d9d9d9;
}

.nested-widget:not(.no-box) .nested-widget-header {
    background: var(--light-emphasis);
    border-bottom-color: #d9d9d9;
    line-height: 35px;
    padding: 0 12px;
    margin-bottom: 0;
}

.nested-widget .nested-widget-header h4 {
    margin-bottom: 0;
}

.nested-widget .nested-widget-header .toolbar {
    margin-right: -5px;
}

.nested-widget .nested-widget-header .toolbar.no-padding {
    margin: -2px -13px;
}

.nested-widget .nested-widget-header .toolbar.no-padding .btn {
    font-size: 13px;
    padding: 8px 7px;
    padding-top: 8px;
    margin-top: 1px;
}

.nested-widget.box .widget-content {
    padding: 10px;
    position: relative;
    background-color: var(--main-background);
}

.nested-widget.box .widget-content.no-padding {
    padding: 0;
}

.nested-widget.box .widget-content.no-padding .row {
    padding-left: 15px;
    padding-right: 15px;
}

.nested-widget.box .widget-content.widget-deeper {
    background-color: #f9f9f9;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
}

.nested-widget.box.box-shadow {
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    border-bottom-color: var(--light-emphasis-lighter);
}

.nested-widget.widget-closed.box .nested-widget-header {
    margin-bottom: -1px;
    border-bottom: 1px solid #d9d9d9;
}

.nested-widget.widget-closed .widget-content {
    display: none;
}

.nested-widget.no-box .widget-content .table-footer {
    border: 1px solid #dddddd !important;
    margin-top: 5px;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.row-tools i {
    padding-right: 5px;
}

.row-tools {
    border: solid 1px var(--light-emphasis-lighter);
    opacity: 0;
    padding: 8px 3px 8px 8px;
    background: var(--main-background);
    z-index: 1000;
    cursor: pointer;
    color: var(--dark-emphasis-light);
}

.row-tools.half-shown {
    opacity: 0.5;
}

.row-tools.shown {
    opacity: 1;
}

/* * * * * * * * * * * *
 * Sidebar Widgets
 * * * * * * * * * * * */
#sidebar #sidebar-content .sidebar-widget {
    margin: 25px 10px;
}
/* * * * * * * * * * * *
 * slimscroll
 * * * * * * * * * * * */
.slimScrollBar {
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}

.scroller {
    padding-right: 12px !important;
}
/* * * * * * * * * * * *
 * Widget Additions
 * * * * * * * * * * * */
.widget-content .more {
    clear: both;
    display: block;
    padding: 5px 10px;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 11px;
    color: #555555;
    opacity: 0.7;
    margin: -10px;
    margin-top: 10px;
    background-color: #f9f9f9;
    border-top: 1px solid #d9d9d9;
}

.widget-content .more:hover,
.widget-content .more:focus {
    opacity: 1;
    text-decoration: none;
}

.widget-content .more:active {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1) inset;
    border-top-color: var(--light-emphasis-lighter);
}

.widget-content .more i {
    margin-top: 2px;
    margin-bottom: -3px;
}
/* * * * * * * * * * * *
 * Infobox
 * * * * * * * * * * * */
.infobox .title {
    font-weight: 500;
    font-size: 15px;
}

.infobox .title + .content {
    color: #6f6f6f;
    padding-top: 10px;
}
/* # General UI
================================================== */
/* * * * * * * * * * * *
 * Alerts
 * * * * * * * * * * * */
.alert {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin-bottom: 15px;
}

.alert .close {
    font-size: 11px;
    line-height: 25px;
}
/* * * * * * * * * * * *
 * Images
 * * * * * * * * * * * */
img {
    width: auto\9;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    border: 0;
    -ms-interpolation-mode: bicubic;
}
/* * * * * * * * * * * *
 * Code
 * * * * * * * * * * * */
code {
    color: #54728c;
    background-color: #f9f9f9;
    border: 1px solid #d9d9d9;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
/* * * * * * * * * * * *
 * Labels and Badges
 * * * * * * * * * * * */
.label,
.badge {
    font-size: 10px;
    font-weight: normal;
}

label > input[type='checkbox'] {
    width: 15px;
    height: 15px;
    padding: 0;
    margin: 0;
    vertical-align: bottom;
    position: relative;
    top: -1px;
}

.label,
.badge {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 4px;
}
/* Colors */
.label-info {
    background-color: var(--blue);
}

.label-success {
    background-color: #6fab4b;
}

.label-danger {
    background-color: #be4a4a;
}
/* * * * * * * * * * * *
 * Tooltips
 * * * * * * * * * * * */
.tooltip-inner {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
/* * * * * * * * * * * *
 * Popovers
 * * * * * * * * * * * */
.popover {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    border-bottom-color: #b3b3b3;
    z-index: 10000000000;
}
/* Override User Agent Stylesheet */
[popover] {
    border: none;
}
/* * * * * * * * * * * *
 * Help Blocks
 * * * * * * * * * * * */
.help-inline {
    display: inline-block;
    *display: inline;
    padding-left: 5px;
    vertical-align: middle;
    *zoom: 1;
}

.help-content > content > img {
    display: block;
    margin: 20px 0;
    clear: both;
    border-left: solid 6px dodgerblue;
}

.help-content > header {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: solid 1px var(--light-emphasis-lighter);
}

.help-content > content > note {
    border: solid 1px var(--light-emphasis-lighter);
    padding: 10px;
    border-radius: 4px;
    background: var(--light-emphasis);
    display: block;
    margin-top: 20px;
}

.help-content > content > img + note {
    margin-top: 0;
}

.help-content > content > note:before {
    content: 'Note: ';
    font-weight: bold;
    color: dodgerblue;
}

/* * * * * * * * * * * *
 * Feed List
 * * * * * * * * * * * */
.feeds {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.feeds li {
    background-color: #f9f9f9;
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 7px;
}

.feeds li.hoverable:hover,
.feeds li.hoverable:focus {
    background-color: #f4f4f4;
}

.feeds li.hoverable:active {
    background-color: var(--light-emphasis-light);
    border-top: 1px solid #d9d9d9;
    border-bottom: none;
}

.feeds li:before,
.feeds li:after {
    display: table;
    content: '';
    line-height: 0;
    clear: both;
}

.feeds .col1 {
    float: left;
    width: 100%;
    clear: both;
}

.feeds .col1 .content {
    float: left;
    margin-right: 100px;
    overflow: hidden;
}

.feeds .col1 .content .content-col1 {
    float: left;
    margin-right: -100%;
}

.feeds .col1 .content .content-col1 .label {
    float: left;
    width: 14px;
    padding: 7px;
    text-align: center;
    line-height: 14px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.feeds .col1 .content .content-col2 {
    float: left;
    width: 100%;
}

.feeds .col1 .content .content-col2 .desc {
    margin-left: 35px;
    padding-top: 4px;
    padding-bottom: 4px;
    overflow: hidden;
}

.feeds .col1 .content .content-col2 .desc span {
    margin-left: 3px;
}

.feeds .col2 {
    float: left;
    width: 100px;
    margin-left: -100px;
}

.feeds .col2 .date {
    padding: 4px 9px 4px 4px;
    text-align: right;
    color: #adadad;
    font-size: 11px;
}
/* * * * * * * * * * * *
 * Panels
 * * * * * * * * * * * */
.panel,
.panel-group .panel {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.panel, .panel-default > .panel-heading {
    background-color: var(--light-emphasis);
    color: var(--text-light);
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
    border-color: var(--light-emphasis-lighter);
}

.panel-default {
    border-color: var(--light-emphasis-lighter);
}

.panel-body {
    border-top: 1px solid var(--light-emphasis-lighter);
    background: var(--main-background);
}

.panel-collapse .item.disabled {
    opacity: 0.3;
}

.panel-title {
    font-size: 13px;
    font-weight: 600;
}
/* * * * * * * * * * * *
 * List Groups
 * * * * * * * * * * * */
.list-group-item:first-child,
.list-group-item:last-child {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.list-group-item.no-padding {
    padding: 0;
}

a.list-group-item.active {
    border-color: #446785;
    background-color: var(--blue-dark);
}

.list-group-header {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 11px;
    background-color: #f9f9f9;
}

.list-group-header.collapsed {
    border-bottom: solid 1px var(--dark-emphasis-lighter);
}

.list-group-header .badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--blue);
}

.list-group-header i.pull-right {
    overflow: hidden;
    height: 12px;
    padding: 0 3px 0 0;
}
/* * * * * * * * * * * *
 * Wells
 * * * * * * * * * * * */
.well {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background-color: #f9f9f9;
    border-color: #d9d9d9;
}
/* * * * * * * * * * * *
 * Profile Info
 * * * * * * * * * * * */
.profile-info h1 {
    font-size: 20px;
    font-weight: 600;
}

.profile-info p,
.profile-info dl {
    color: #7b7b7b;
}
/* * * * * * * * * * * *
 * Google Maps
 * * * * * * * * * * * */
.gmaps {
    height: 300px;
    width: 100%;
}
/* # Progressbars
================================================== */
/* * * * * * * * * * * *
 * Colors
 * * * * * * * * * * * */
.progress .progress-bar {
    background-image: none;
    background-color: #40a332;
}

.progress-success .progress-bar,
.progress .progress-bar-success,
.progress-success.progress-striped .progress-bar,
.progress-striped .progress-bar-success {
    background-color: #51a351;
}

.progress-warning .progress-bar,
.progress .progress-bar-warning,
.progress-warning.progress-striped .progress-bar,
.progress-striped .progress-bar-warning,
.label-warn {
    background-color: var(--orange);
}

.progress-danger .progress-bar,
.progress .progress-bar-danger,
.progress-danger.progress-striped .progress-bar,
.progress-striped .progress-bar-danger {
    background-color: var(--red);
}

.progress {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin: 10px 5px;
    background-color: var(--light-emphasis-lighter);
    /* * * * * * * * * * * *
	 * Sizes
	 * * * * * * * * * * * */
}

.progress.progress-mini {
    height: 6px;
}

.progress.progress-small {
    height: 12px;
}

.progress.progress-large {
    height: 25px;
}
/* * * * * * * * * * * *
 * Stripes
 * * * * * * * * * * * */
.progress-striped .progress-bar {
    background-image: -webkit-gradient(
        linear,
        0 100%,
        100% 0,
        color-stop(0.25, rgba(255, 255, 255, 0.15)),
        color-stop(0.25, transparent),
        color-stop(0.5, transparent),
        color-stop(0.5, rgba(255, 255, 255, 0.15)),
        color-stop(0.75, rgba(255, 255, 255, 0.15)),
        color-stop(0.75, transparent),
        to(transparent)
    );
    background-image: -webkit-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.15) 75%,
        transparent 75%,
        transparent
    );
    background-image: -moz-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.15) 75%,
        transparent 75%,
        transparent
    );
    background-image: -o-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.15) 75%,
        transparent 75%,
        transparent
    );
    background-image: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.15) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.15) 75%,
        transparent 75%,
        transparent
    );
}

.batch-claim-submission-progress-bar[value]::-webkit-progress-bar {
    background-color: var(--light-emphasis-lighter);
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}

.batch-claim-submission-progress-bar-active[value]::-webkit-progress-value {
    background-color: var(--green);
}

.batch-claim-submission-progress-bar-error[value]::-webkit-progress-value {
    background-color: #a52f29;
}

/* # Forms
================================================== */
/* * * * * * * * * * * *
 * General
 * * * * * * * * * * * */
form {
    margin: 0 0px;
}

label,
input,
button,
select,
textarea {
    font-size: 13px !important;
}

textarea.supervisor-notes,
div.supervisor-notes {
    width: 100%;
    height: 32px;
    border-radius: 5px;
    border: solid 1px var(--light-emphasis-light);
    margin-top: -1px;
    outline: 0;
}

textarea.supervisor-notes.ng-not-empty,
div.supervisor-notes {
    border: solid 1px #f40000;
    color: var(--red);
}

div.supervisor-notes {
    padding: 5px;
    height: auto;
    background: #ffe7e7;
}

label {
    font-weight: 600;
}

textarea,
input[type='text'],
input[type='password'],
input[type='datetime'],
input[type='datetime-local'],
input[type='date'],
input[type='month'],
input[type='time'],
input[type='week'],
input[type='number'],
input[type='email'],
input[type='url'],
input[type='search'],
input[type='tel'],
input[type='color'],
.uneditable-input {
    -webkit-appearance: none !important;
    color: #555555;
    padding: 6px 6px;
    font-weight: normal;
    vertical-align: top;
    background-color: var(--main-background);
    background-image: none !important;
    filter: none !important;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

textarea:focus,
input[type='text']:focus,
input[type='password']:focus,
input[type='datetime']:focus,
input[type='datetime-local']:focus,
input[type='date']:focus,
input[type='month']:focus,
input[type='time']:focus,
input[type='week']:focus,
input[type='number']:focus,
input[type='email']:focus,
input[type='url']:focus,
input[type='search']:focus,
input[type='tel']:focus,
input[type='color']:focus,
.uneditable-input:focus {
    border-color: #ec9f3c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 3px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 3px rgba(0, 0, 0, 0.1);
}

select,
textarea,
input[type='text'],
input[type='password'],
input[type='datetime'],
input[type='datetime-local'],
input[type='date'],
input[type='month'],
input[type='time'],
input[type='week'],
input[type='number'],
input[type='email'],
input[type='url'],
input[type='search'],
input[type='tel'],
input[type='color'],
.uneditable-input {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.form-control {
    height: 32px;
    font-size: 13px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.form-control.inline {
    display: inline;
}

select.form-control,
textarea.form-control {
    padding: 0 5px;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: var(--main-background);
}

select.form-control:focus,
textarea.form-control:focus {
    border-color: var(--blue-dark);
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 3px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 3px rgba(0, 0, 0, 0.1);
}
/* * * * * * * * * * * *
 * Sizing
 * * * * * * * * * * * */
.input-xxlarge {
    width: 465px;
}

.multiple {
    width: 100%;
}

.form-control.input-small {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    height: 30px;
}
/* Height Sizing */
.input-sm {
    height: 26px;
    font-size: 12px !important;
}

.input-lg {
    height: 45px;
    font-size: 16px !important;
}
/* BS2 backward compatibility sizes */
.input-width-mini {
    width: 60px !important;
}

.input-width-xsmall {
    /*custom for timepickers*/
    width: 70px !important;
}

.input-width-small {
    width: 90px !important;
}

.input-width-medium {
    width: 150px !important;
}

.input-width-large {
    width: 210px !important;
}

.input-width-xlarge {
    width: 270px !important;
}

.input-width-xxlarge {
    width: 530px !important;
}

.input-block-level {
    display: block;
    width: 100%;
}
/* * * * * * * * * * * *
 * Textarea
 * * * * * * * * * * * */
textarea {
    border-color: var(--light-emphasis-lighter);
}

textarea.auto {
    -webkit-transition: height 0.2s;
    -moz-transition: height 0.2s;
    -o-transition: height 0.2s;
    transition: height 0.2s;
}

textarea.col-md-12 {
    resize: vertical;
}

input,
textarea {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
/* * * * * * * * * * * *
 * Selects
 * * * * * * * * * * * */
.multiple {
    padding: 8px 10px;
    height: 150px !important;
    font-size: 12px;
    border: 1px solid #dadada;
}
/* * * * * * * * * * * *
 * File Input
 * * * * * * * * * * * */
input[type='file'] {
    height: auto;
    line-height: normal;
    margin-top: 5px;
}
/* * * * * * * * * * * *
 * Checkboxes and Radios
 * * * * * * * * * * * */
.checkbox,
.radio {
    font-weight: normal;
}

.next-row {
    display: block;
    margin-top: 10px;
}
/* * * * * * * * * * * *
 * Disabled States
 * * * * * * * * * * * */
input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
    cursor: not-allowed;
    background-color: #f9f9f9;
    color: #777;
}

.help-block,
.help-inline {
    color: #adadad;
}
/* * * * * * * * * * * *
 * Icons
 * * * * * * * * * * * */
.control-label > i {
    margin-right: 6px;
}

.controls {
    position: relative;
}

.field-icon {
    position: absolute;
    top: 9px;
    right: 25px;
    display: block;
    font-size: 14px;
    line-height: 1;
}

.input-icon > input {
    padding-left: 30px !important;
}

.input-icon > i {
    color: #d1d1d1;
    display: block !important;
    position: absolute !important;
    z-index: 1;
    margin: 8px 2px 4px 10px;
    width: 16px;
    height: 16px;
    font-size: 16px;
    text-align: center;
}
/* * * * * * * * * * * *
 * Prepends / Appends
 * * * * * * * * * * * */
/* [DEPRECATED SINCE BS3]

.input-prepend .add-on:first-child, .input-prepend .btn:first-child, .input-append .add-on:last-child, .input-append .btn:last-child, .input-append .btn-group:last-child>.dropdown-toggle, .input-prepend.input-append .add-on:first-child, .input-prepend.input-append .btn:first-child, .input-prepend.input-append .add-on:last-child, .input-prepend.input-append .btn:last-child, .input-prepend.input-append input+.btn-group .btn, .input-prepend.input-append select+.btn-group .btn, .input-prepend.input-append .uneditable-input+.btn-group .btn, .input-append input, .input-append select, .input-append .uneditable-input {
	.border-radius(0);
	font-size: @baseFontSize;
}

.input-append .add-on, .input-prepend .add-on {
	padding: 6px 6px;
	background-color: @grayLighter;
}*/
.input-group-addon {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    font-size: 13px;
    padding: 6px 6px;
    background-color: var(--main-background);
}

.input-group > .input-group-btn .btn {
    margin-right: -1px;
    margin-left: -1px;
}
/* * * * * * * * * * * *
 * Validation
 * * * * * * * * * * * */
label > span.required {
    color: #e25856;
}

.form-group .help-block:not(.error) {
    display: block !important;
}

.form-group select.select2-offscreen + .help-block {
    padding-top: 10px;
    clear: both;
}

.error {
    color: var(--red);
}

input.error {
    border: solid 1px var(--red);
}

input.ng-valid.showValidation,
select.ng-valid.showValidation {
    border: solid 1px green;
}

.ng-invalid-attempt input.ng-invalid,
.ng-invalid-attempt select.ng-invalid,
.ng-invalid.forceInvalidDisplay input,
.ng-invalid-attempt textarea.ng-invalid,
.ng-invalid-attempt .invalid-div,
.ng-submitted .invalid-div,
.invalid-range {
    border: solid 1px var(--red);
}

.ng-invalid-date.ng-touched {
    border: solid 1px var(--red);
}

.required {
    color: var(--red);
}

.valid {
    color: #40a332;
}

input.highlight {
    background: #ffc066;
}

.form-group.error .help-block,
.form-group.warning .help-block,
.form-group.success .help-block,
.form-group.info .help-block {
    display: inline-block;
}
/* * * * * * * * * * * *
 * Horizontal Forms
 * * * * * * * * * * * */
.form-horizontal .form-group {
    padding-left: 0;
    padding-right: 0;
}

.form-horizontal .control-label {
    padding-top: 7px;
}
/* * * * * * * * * * * *
 * Vertical Forms
 * * * * * * * * * * * */
.form-vertical {
    margin-left: -10px;
    margin-right: -10px;
}

.form-vertical.no-margin {
    margin-left: 0;
    margin-right: 0;
}

.form-vertical .help-block {
    margin-bottom: 0;
}

.form-vertical .select2-container.error {
    margin-bottom: 10px;
}

.form-vertical .form-group {
    padding-left: 15px;
    padding-right: 15px;
}

.form-vertical .form-group:first-child {
    padding-top: 5px;
}

.form-vertical .form-group:last-child {
    padding-bottom: 0;
}

.form-vertical .form-group .control-label {
    padding-bottom: 5px;
}
/* * * * * * * * * * * *
 * Control Groups
 * * * * * * * * * * * */
/*.form-group {
	margin: 0;
	padding: 10px 15px;

	&:first-child {
		padding-top: 5px;
	}
}*/
/*.box {
	.form-group {
		margin-left: -10px;
		margin-right: -10px;
	}
}*/
.row-border .form-group {
    border-top: 1px solid #ececec;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 0;
}

.row-border .form-group:first-child {
    padding-top: 5px;
    border-top: none;
}
/* * * * * * * * * * * *
 * Form Actions
 * * * * * * * * * * * */
.form-actions {
    padding: 19px 20px 20px;
    margin-top: 10px;
    margin-bottom: 20px;
    background-color: var(--light-emphasis);
    border-top: 1px solid var(--light-emphasis-light);
    *zoom: 1;
}

.form-actions .btn.pull-right {
    margin-left: 3px;
}

.form-actions:before,
.form-actions:after {
    display: table;
    line-height: 0;
    content: '';
}

.form-actions:after {
    clear: both;
}

.box .form-actions {
    margin-bottom: -10px;
    margin-left: -15px;
    margin-right: -15px;
}
/* * * * * * * * * * * *
 * Uniform
 * * * * * * * * * * * */
.radio > div.radio,
.radio-inline > div.radio,
.checkbox > div.checker,
.checkbox-inline > div.checker {
    margin-left: -20px;
    padding-top: 0;
}

.radio > div.radio input[type='radio'],
.checkbox > div.checker input[type='checkbox'] {
    margin-left: 0px;
}
/* # Tables
================================================== */
.table {
    margin-bottom: 5px;
}

table.line-items {
    width: 100%;
    border: solid 1px #888;
}

table.line-items th {
    background: #888;
    color: #eee;
    padding: 3px;
}

table.line-items tr {
    border-bottom: solid 1px #888;
}

table.line-items td {
    padding: 3px;
}

.table.no-top-border tbody tr:first-child {
    border: none;
}

.table-striped tbody > tr:nth-child(odd) > td,
.table-striped tbody > tr:nth-child(odd) > th {
    background-color: #fafafa;
}

.table-hover tbody tr:hover > td,
.table-hover tbody tr:hover > th {
    background-color: #f5f5f5;
}

.table-bordered,
.table-bordered thead:first-child tr:first-child > th:first-child,
.table-bordered tbody:first-child tr:first-child > td:first-child,
.table-bordered tbody:first-child tr:first-child > th:first-child,
.table-bordered thead:first-child tr:first-child > th:last-child,
.table-bordered tbody:first-child tr:first-child > td:last-child,
.table-bordered tbody:first-child tr:first-child > th:last-child,
.table-bordered thead:last-child tr:last-child > th:first-child,
.table-bordered tbody:last-child tr:last-child > td:first-child,
.table-bordered tbody:last-child tr:last-child > th:first-child,
.table-bordered tfoot:last-child tr:last-child > td:first-child,
.table-bordered tfoot:last-child tr:last-child > th:first-child,
.table-bordered thead:last-child tr:last-child > th:last-child,
.table-bordered tbody:last-child tr:last-child > td:last-child,
.table-bordered tbody:last-child tr:last-child > th:last-child,
.table-bordered tfoot:last-child tr:last-child > td:last-child,
.table-bordered tfoot:last-child tr:last-child > th:last-child {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.table-highlight-head thead {
    background-color: #f5f5f5;
}

.table-no-inner-border tr th,
.table-no-inner-border tr td {
    border-left-width: 0px;
}

.table-no-inner-border tr th:first-child,
.table-no-inner-border tr td:first-child {
    border-left-width: 1px !important;
}

.widget-content.no-padding table {
    margin-bottom: 0 !important;
}

.widget-content.no-padding .table-bordered {
    border: 0;
}

.widget-content.no-padding .table-bordered th:first-child,
.widget-content.no-padding .table-bordered td:first-child {
    border-left: 0;
}

.widget-content.no-padding .table-bordered th:last-child,
.widget-content.no-padding .table-bordered td:last-child {
    border-right: 0;
}

.widget-content.no-padding .table-bordered tr:last-child td {
    border-bottom: 0;
}

.table .align-center {
    text-align: center;
}
/* * * * * * * * * * * *
 * Table Footer
 * * * * * * * * * * * */
.table-footer {
    padding: 12px;
}

.table-footer .table-actions label {
    margin-right: 10px;
    display: inline-block;
}

.table-footer .table-actions select {
    width: 180px;
    height: 30px;
    margin-top: -1px;
    margin-bottom: 0;
}

.table-footer .pagination {
    float: right;
    margin: 0;
}

.table-footer:after {
    content: '';
    display: block;
    height: 0;
    clear: both;
}

.widget-content.no-padding .table-footer {
    border-top: 1px solid #dddddd;
    background-color: #f9f9f9;
    padding-left: 0;
    padding-right: 0;
}

.widget:not(.box) .widget-content .table-footer {
    border: 1px solid #dddddd;
    border-top: none;
    margin-top: -5px;
}

.widget.box .widget-content:not(.no-padding) .table-footer {
    border: none;
    background-color: none;
    padding: 8px 0;
    padding-bottom: 3px;
}
/* * * * * * * * * * * *
 * Pagination
 * * * * * * * * * * * */
.pagination {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span,
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    background-color: var(--blue);
    border-color: #3c5a74;
}
/* * * * * * * * * * * *
 * Checkable Table
 * * * * * * * * * * * */
.table-checkable .checkbox-column {
    text-align: center;
    width: 24px;
}

.table-checkable .checkbox-column div.checker {
    margin-right: 0;
}

.table-checkable.table-no-inner-border .checkbox-column {
    border-right: 1px solid #dddddd;
}

.table-checkable tbody tr.checked td {
    background-color: rgba(147, 175, 236, 0.13);
}
/* * * * * * * * * * * *
 * Table Controls
 * * * * * * * * * * * */
.table-controls {
    padding: 0;
    margin: 0;
    list-style: none;
}

.table-controls > li {
    display: inline-block;
    margin: 0 2px;
    line-height: 1;
}

.table-controls > li > a {
    display: inline-block;
}

.table-controls > li > a i {
    margin: 0;
    font-size: 13px;
    color: #555555;
    display: block;
}

.table-controls > li > a i:hover {
    text-decoration: none;
}
/* * * * * * * * * * * *
 * Progressbars in Tables
 * * * * * * * * * * * */
.table .progress {
    margin-bottom: 0;
}
/* # Charts
================================================== */
.chart {
    height: 250px;
    z-index: 90;
    width: 100%;
    overflow: hidden;
    /* Sizes */
}

.chart.chart-small {
    height: 100px;
}

.chart.chart-medium {
    height: 200px;
}

.chart.chart-normal {
    height: 250px;
}

.chart.chart-large {
    height: 400px;
}
/* * * * * * * * * * * *
 * Tooltip
 * * * * * * * * * * * */
#flotTip {
    padding: 3px 6px;
    color: whitesmoke;
    text-align: center;
    text-decoration: none;
    background-color: #000000;
    opacity: 0.8;
    filter: alpha(opacity=80);
    z-index: 200;
    font-size: 13px;
}
/* * * * * * * * * * * *
 * Flot Legend
 * * * * * * * * * * * */
.legend .legendColorBox > div {
    border: 0 !important;
    padding: 0 !important;
}

.legend .legendLabel {
    padding-left: 3px;
}
/* * * * * * * * * * * *
 * Chart Widgets
 * * * * * * * * * * * */
.widget.widget-closed .widget-chart {
    display: none;
}

.widget-chart {
    display: block;
    background-color: #658db3;
    border: 1px solid #4c7399;
    padding: 12px;
    /* Colors */
}

.widget-chart .tickLabel {
    color: var(--main-background) !important;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5) !important;
}

.widget-chart .legend .legendLabel {
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}

.widget-chart.widget-chart-blue {
    background-color: #54728c;
    border: 1px solid #41586c;
}

.widget-chart.widget-chart-blueLight {
    background-color: #658db3;
    border: 1px solid #4c7399;
}

.widget-chart.widget-chart-green {
    background-color: #94b86e;
    border: 1px solid #7ba350;
}

.widget-chart.widget-chart-red {
    background-color: #e25856;
    border: 1px solid #db2d2a;
}

.widget-chart.widget-chart-yellow {
    background-color: #ffb848;
    border: 1px solid #ffa415;
}

.widget-chart.widget-chart-orange {
    background-color: var(--orange);
    border: 1px solid #c67605;
}

.widget-chart.widget-chart-purple {
    background-color: #7a43b6;
    border: 1px solid #613591;
}

.widget-chart.widget-chart-gray {
    background-color: #555555;
    border: 1px solid #3b3b3b;
}
/* * * * * * * * * * * *
 * Easy Pie Chart
 * * * * * * * * * * * */
.easyPieChart {
    position: relative;
    text-align: center;
    font-weight: bold;
}

.easyPieChart canvas {
    position: absolute;
    top: 0;
    left: 0;
}
/* # Statistics
================================================== */
/* * * * * * * * * * * *
 * Stats List
 * * * * * * * * * * * */
ul.stats {
    display: table;
    table-layout: fixed;
    margin: 0;
    padding: 0;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul.stats:not(.no-dividers) li {
    border-right: 1px solid #d9d9d9;
}

ul.stats li {
    display: table-cell;
    padding: 15px;
}

ul.stats li:last-child {
    border-right: none;
}

ul.stats li strong,
ul.stats li small {
    padding: 5px 0;
    display: block;
    text-align: center;
}

ul.stats li strong {
    font-size: 25px;
    font-weight: bold;
}

ul.stats li small {
    font-size: 11px;
    color: #adadad;
}

ul.stats li > div {
    margin: 5px auto;
}

ul.stats li .title {
    display: block;
    text-align: center;
    font-size: 15px;
    padding-top: 5px;
    color: #555555;
}

ul.stats li .title:hover {
    text-decoration: none;
    color: #222222;
}

ul.stats li .description {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 11px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    font-weight: bold;
    margin-left: 5px;
}

ul.stats li.light strong {
    color: #888888;
}

.circular-chart-inline {
    text-align: center;
}

.circular-chart-inline .easyPieChart {
    display: inline-block;
}

.widget:not(.box) ul.stats {
    margin-top: 10px;
}
/* * * * * * * * * * * *
 * Progressbar Stats
 * * * * * * * * * * * */
.progress-stats {
    display: block;
    margin-bottom: 15px;
}

.progress-stats .title {
    display: block;
    margin-bottom: 4px;
}

.progress-stats .title span {
    float: right;
}

.progress-stats .progress {
    margin: 0;
}

.progress-stats:last-child {
    margin-bottom: 0;
}
/* * * * * * * * * * * *
 * Sparkline
 * * * * * * * * * * * */
.jqstooltip {
    border: 1px solid #000 !important;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
/* * * * * * * * * * * *
 * Statbox
 * * * * * * * * * * * */
.statbox .widget-content:before,
.statbox .widget-content:after {
    display: table;
    content: '';
    line-height: 0;
    clear: both;
}

.statbox .visual {
    min-width: 20px;
    min-height: 17px;
    padding: 13px;
    text-align: center;
    margin-right: 10px;
    float: left;
    overflow: hidden;
    color: whitesmoke;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.statbox .visual.blue {
    background-color: #54728c;
}

.statbox .visual.red {
    background-color: #e25856;
}

.statbox .visual.green {
    background-color: #94b86e;
}

.statbox .visual.cyan {
    background-color: #6dadbd;
}

.statbox .visual.purple {
    background-color: #7a43b6;
}

.statbox .visual.yellow {
    background-color: #ffb848;
}

.statbox .title {
    color: #adadad;
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding-top: 3px;
}

.statbox .value {
    font-size: 20px;
    font-weight: 600;
    overflow: hidden;
}

.statbox .title,
.statbox .value {
    text-align: right;
    padding-right: 3px;
}

.statbox .title + .value {
    margin-top: -3px;
}
/* # Tabs
================================================== */
.tab-content {
    border-left: solid 1px var(--light-emphasis-lighter);
    border-right: solid 1px var(--light-emphasis-lighter);
    border-bottom: solid 1px var(--light-emphasis-lighter);
    background: var(--light-emphasis-light);
}

.nav-tabs {
    cursor: pointer;
}

.tab-pane {
    padding: 5px;
}

.nav-tabs > li > a {
    padding-top: 5px;
    padding-bottom: 5px;
}

li.active > a {
    border-top: solid 3px #255877 !important;
    padding-top: 5px;
    padding-bottom: 3px;
}

.nav-tabs > li.active > a {
    background-color: var(--light-emphasis-light) !important;
}

/* # Modals
================================================== */
.modal.report-viewer-fullscreen .modal-dialog,
.modal.report-viewer-fullscreen .modal-dialog .modal-content {
    height: calc(100vh - 31px);
    margin-bottom: 0;
}

.modal-content {
    background-color: var(--main-background);
}

multi-report-viewer .report-content {
    height: calc(100vh - 132px) !important;
}

.modal-sm {
    max-width: 600px;
    width: 100%;
}

.modal-section-content {
    margin-bottom: 15px;
}

.modal-section-header {
    border-bottom: solid 1px var(--light-emphasis-lighter);
    margin-bottom: 15px;
    font-weight: bold;
}

.modal-section-content {
    padding-left: 20px;
}

.modal-body {
    padding: 15px 15px 0 15px;
}

.modal-body.no-padding {
    padding: 0;
}

.remove-top-padding {
    padding-top: 0;
}

.modal-backdrop {
}

.modal-backdrop.translucent {
    opacity: 0.5;
}

.img-display {
    opacity: 1;
    position: absolute;
    z-index: 1050;
    top: 100px;
    left: 0;
    right: 0;
    text-align: center;
}

.img-display > img {
    border: solid 2px black;
}

.modal-content {
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border-bottom-color: var(--light-emphasis-light);
}

.modal-header {
    background-color: var(--light-emphasis);
    border-color: var(--light-emphasis-lighter);
    position: sticky;
    top: 0;
    z-index: 3;
}

.modal-header .close {
    margin-top: 5px;
    font-size: 15px !important;
}

.modal-header > h3 {
    padding: 0;
    margin: 0;
}

.modal-title {
    font-weight: 600;
    font-size: 19px;
    color: var(--text-light);
}

.modal-footer {
    background-color: var(--light-emphasis);
    border-color: var(--light-emphasis-lighter);
    position: sticky;
    bottom: 0;
    z-index: 3;
}
/* # Invoice
================================================== */
.invoice .invoice-nr {
    font-size: 15px;
}

.invoice .invoice-date {
    color: #888888;
    margin-top: -5px;
}

.invoice .amount {
    font-size: 15px;
}

.invoice .amount .total {
    padding-top: 7px;
    margin-top: 7px;
    font-size: 18px;
}

.printContainer {
    display: none;
}

.show-on-print {
    display: none;
}
.report-footer {
    display: none;
}
@page {
    margin-bottom: 10mm;
}
@media only print {
    header,
    #container,
    .toolbar,
    .printContent,
    .hide-on-print {
        display: none !important;
    }

    .show-on-print {
        display: block !important;
    }

    body {
        margin-top: 0;
        overflow: visible;
    }

    .report-header {
        border: 0 !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }

    tfoot td {
        height: 30px;
    }

    .report-footer {
        position: fixed;
        bottom: 0px;
        height: 20px;
        display: block;
        width: calc(100% - 20px);
        box-sizing: border-box;
        border-top: solid 1px var(--light-emphasis-lighter);
        overflow: visible;
    }
    .report-footer > .left {
        position: absolute;
        left: 0px;
        display: inline-block;
    }
    .report-footer > .right {
        position: absolute;
        right: 0px;
        display: inline-block;
    }
    .page-mock {
        min-height: unset !important;
    }

    .page-break {
        border: 0 !important;
    }

    .orgLogo {
        zoom: 0.6;
    }

    .printContainer {
        overflow: visible;
        height: auto;
        width: auto;
        display: inline !important;
        font-size: 8pt !important;
    }

    .orgName {
        font-size: 17pt;
    }

    .reportTitle {
        font-size: 17pt;
    }

    h3 {
        font-size: 12pt !important;
    }

    .modal-content {
        display: none;
    }

    .widget.box {
        border: 0;
    }

    .percent-collector {
        overflow: inherit !important;
    }
}

.has-error .select2-container-multi .select2-choices {
    border-color: #b94a48;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .select2-container-multi .select2-choices {
    border-color: #468847;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

tr.dimmer td {
    color: #999;
}

tr.dimmer td a {
    color: #8db4d6;
}

.select2-container .select2-choices .select2-search-choice.role-recipient {
    background-color: lightblue;
}

.select2-container .select2-choices .select2-search-choice.member-recipient {
    background-color: lightgreen;
}

.view-tenant-details dt {
    text-align: left;
}

select.multiselect.full-width-fix + div.btn-group,
select.multiselect.full-width-fix + div.btn-group button.multiselect,
select.multiselect.full-width-fix + div.btn-group.open .multiselect-container {
    width: 100% !important;
}

select.multiselect.full-width-fix + div.btn-group button.multiselect {
    text-align: left;
}

select.multiselect.full-width-fix + div.btn-group button.multiselect .caret {
    float: right;
    margin-top: 6px;
}

.report-header {
    margin-bottom: 0;
    background: var(--light-emphasis-light);
    padding: 10px;
    border: solid 1px var(--light-emphasis-lighter);
}

.report-top {
    background: var(--light-emphasis-lighter);
    box-shadow: 0 2px 2px 0 #9f9f9f;
    margin-top: -6px;
    padding-top: 1px;
    padding-bottom: 1px;
}

.reporteditor {
    padding-top: 0;
}

.reportEditorElement:not(.hiddenElement) {
    margin-bottom: 20px;
}

.element-highlight {
    border-left: solid 4px var(--red);
    margin-left: -9px;
    padding: 5px;
    position: absolute;
    top: 250px;
    width: calc(100% - 44px);
    background: white;
    box-shadow: 0 0 35px -3px #000;
    z-index: 9999999999;
}

.invoice-element {
    margin-top: 15px;
}

.hiddenElement {
    display: none !important;
}

.reporteditor .toolbar img,
.fullscreen .toolbar img {
    width: 25px;
    cursor: pointer;
}

.reporteditor .toolbar,
.fullscreen .toolbar {
    padding: 4px;
    margin-bottom: 6px;
    background: var(--light-emphasis-light);
    height: 42px;
    border-bottom: solid 1px var(--light-emphasis-lighter);
    transition: background-color 0.5s;
}

.reporteditor .toolbar i,
.fullscreen .toolbar i {
    font-size: 13pt;
    padding-right: 3px;
    padding-left: 2px;
    padding-bottom: 4px;
    padding-top: 2px;
    cursor: pointer;
}

.reporteditor .toolbar span,
.fullscreen .toolbar span {
    display: inline-block;
    height: -5px;
}

.reporteditor .toolbox {
    float: left;
    width: 150px;
    overflow-y: auto;
    height: calc(100vh - 210px);
}

.reporteditor .settings {
    width: 220px;
    margin-bottom: 7px;
    padding-right: 7px;
    float: left;
    margin-left: 13px;
    overflow: auto;
    height: calc(100vh - 217px);
}

.reporteditor .settings .designer-only-setting {
    margin-bottom: 10px;
    margin-top: 10px;
    background-color: var(--light-emphasis);
    border: 1px solid var(--light-emphasis-lighter);
    padding: 5px;
    text-align: center;
}

.choice-item {
    border: solid 1px var(--light-emphasis-lighter);
    padding: 2px;
    border-radius: 4px;
    background: #f8f8f8;
    margin-bottom: 2px;
    cursor: pointer;
}

.choice-item .item-name {
    display: table-cell;
    float: left;
    margin-left: 5px;
    width: 125px;
    margin-left: 4px;
}

.reporteditor.fullscreen .settings,
.reporteditor.fullscreen .toolbox {
    height: calc(100vh - 121px);
}

.reporteditor .settings b {
    margin-top: 10px;
    display: inline-block;
}

.reporteditor .placeholder {
    display: none;
    color: #aaa;
    padding: 10px;
    margin: 2px;
    border: dashed 1px var(--light-emphasis-lighter);
    border-left: solid 3px var(--light-emphasis-lighter);
}

.reporteditor .placeholder i {
    font-size: 24pt;
    color: #aaa;
    vertical-align: middle;
}

.reporteditor .draghover .placeholder {
    display: block !important;
}

.reporteditor .selected {
    border: solid 3px #5285b1 !important;
}

@media print {
    .report-top {
        display: none;
    }
}

.report-element {
    position: relative;
}

.report-element.draghover:after {
    content: 'new item';
    text-align: center;
    color: var(--light-emphasis-lighter);
    font-weight: bold;
    margin: 0 5px 15px 5px;
    background: var(--light-emphasis-lighter);
    display: block;
    border: solid 1px var(--light-emphasis-lighter);
    padding: 20px;
}

.composite-element {
    overflow: visible;
    border: dashed 1px var(--light-emphasis-lighter);
    border-radius: 5px;
    background: var(--light-emphasis);
    position: relative;
}
.composite-element.show-composite-helpers > div.composite-slot {
    border: 1px solid var(--orange);
    margin-top: 5px;
    margin-bottom: 5px;
}
.composite-element.show-composite-helpers > div.composite-slot tip {
    display: inline-block;
    position: absolute;
    font-size: 1.5rem;
    right: 5px;
}

.composite-element > div {
    min-height: 25px;
}

.composite-element > div tip {
    display: none;
}

.composite-element > div.on-drag-hover tip {
    display: inline-block;
    position: absolute;
    background: #f8f8f8;
    font-size: 1.5rem;
    right: 5px;
}
.composite-element.show-composite-helpers > div.composite-slot.on-drag-hover {
    border: 1px solid var(--green);
}
.composite-element.show-composite-helpers > div.composite-slot.on-drag-hover tip {
    color: var(--green);
    font-weight: bold;
}

.composite-element report-element .draghandle {
    right: 3px;
    top: 0;
    position: absolute;
    height: 20px;
    border-radius: 0 0 0 5px;
    width: 45px;
}

.composite-element report-element .draghandle .fa-remove {
    width: 15px;
}

.reporteditor .selected {
    border: solid 3px #5285b1 !important;
}

.reporteditor .item,
.listeditor .item {
    border: solid 1px transparent;
    padding: 5px;
    margin-left: -4px;
}

.reporteditor .item:hover {
    /*border: dashed 1px #476FD7;*/
}

.reporteditor .draghandle {
    height: 39px;
    position: relative;
    width: 15px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    border: solid 1px #566993;
    background: #5285b1;
    border-right: 0;
    padding-left: 3px;
    margin-left: -15px;
}

.reporteditor .toolbox .head,
.reporteditor .settings .head {
    text-align: center;
    border: solid 1px var(--light-emphasis-lighter);
    background: var(--light-emphasis-light);
    font-weight: bold;
    padding: 5px;
}

.reporteditor .preview {
    height: calc(100vh - 229px);
    float: left;
    width: calc(100% - 456px);
    overflow: auto;
    margin-left: 13px;
    margin-bottom: 12px;
    box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 1);
    padding: 30px;
    background: var(--main-background);
}

.fullscreen {
    position: fixed;
    top: 52px;
    z-index: 700;
    background: var(--main-background);
    left: 0px;
    right: 0px;
    bottom: 0;
}

.fullscreen.narrow {
    width: 1000px;
    opacity: 1;
    top: 35px;
    margin: 0 calc(50% - 500px);
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.75);
}

.previewfullscreen {
    height: calc(100vh - 118px) !important;
}

.reporteditor .preview .header i {
    cursor: pointer;
    color: var(--light-emphasis-lighter);
}

.reporteditor .preview .header i:hover {
    color: #36528a;
}

.reporteditor .preview .header {
    padding: 2px 4px;
    background: #dddddd;
}

.reporteditor .preview .item {
    overflow: auto;
    margin-left: 0px;
    border: solid 3px transparent;
}

.reporteditor .panel-heading {
    cursor: pointer;
}

heading,
.heading {
    font-weight: bold;
    font-size: 1.5rem;
    color: #888;
    display: block;
    border-bottom: solid 1px var(--light-emphasis-lighter);
}

.reporteditor .toolbox {
    width: 198px;
    float: left;
    margin-left: 6px;
}

.reporteditor .toolbox .panel-body {
    padding: 2px;
}

.reporteditor .toolbox .item,
.listeditor .item {
    border: solid 1px var(--light-emphasis-lighter);
    margin-bottom: 2px;
    margin-left: 0;
    background: var(--light-emphasis);
}

.reporteditor .toolbox .item:last-child {
    margin-bottom: 0;
}

.reporteditor .toolbox .item i {
    padding-left: 2px;
    vertical-align: middle;
    font-size: 13pt;
    color: var(--light-emphasis-lighter);
    cursor: -webkit-grab;
}

.reporteditor .toolbox .item .item-label {
    border-left: solid 1px var(--light-emphasis-lighter);
    margin-left: 5px;
    padding-left: 4px;
}

.animate-enter,
.animate-leave {
    -webkit-transition: 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
    -moz-transition: 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
    -ms-transition: 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
    -o-transition: 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
    transition: 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
    position: relative;
    display: block;
}

.animate-leave.animate-leave-active,
.animate-enter {
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    height: 0px;
    opacity: 0;
}

.animate-enter.animate-enter-active,
.animate-leave {
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
    height: 30px;
    opacity: 1;
}

.nominheight {
    min-height: initial;
}

.clear {
    clear: both !important;
}

.ta-toolbar {
    background: var(--light-emphasis-light);
}

.token {
    border: solid 1px var(--light-emphasis-lighter);
    background: var(--light-emphasis-light);
    border-radius: 2px;
    margin: 0 1px;
    padding: 0 6px 0 4px;
}

input.inline {
    border: 0px;
    outline: 0px !important;
    height: 14px;
    padding: 0;
    margin-left: -2px;
    margin-top: 1px;
    font-family: courier;
    background: var(--light-emphasis-light);
    box-shadow: none !important;
}

.tokenOptions {
    border: solid 1px var(--light-emphasis-lighter);
    background: white;
    padding: 3px;
}

.draggableToken {
    border: solid 1px var(--light-emphasis-lighter);
    margin-bottom: 1px;
    background: var(--light-emphasis-light);
    padding: 3px;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
}

.draggableToken .displayName {
    width: 90%;
    text-overflow: ellipsis;
    overflow: hidden;
}

.draggableToken i {
    margin: 3px 0 0 3px;
    color: #d5d5d5;
}

.uploadQueue {
    padding: 8px 10px;
    border: solid 1px var(--light-emphasis-lighter);
    margin-bottom: 5px;
    background: var(--main-background);
}

.uploadDropArea {
    display: none;
}

.uploadAnotherFileOver .uploadDropArea {
    width: 100%;
    height: 100px;
    text-align: center;
    vertical-align: central;
    background: white;
    display: block;
}

.assignmentFilters {
    height: 36px;
    overflow-y: hidden !important;
    display: block;
}

.assignmentFilters > i {
    padding: 10px;
    border: solid 1px var(--light-emphasis-lighter);
    background: #fafafa;
    color: var(--light-emphasis-lighter);
    text-align: center;
}

.assignmentFilters > i.active {
    color: white;
    border: solid 1px #555;
    background: #808080;
}

.customBox {
    border-right: 1px solid var(--light-emphasis-lighter);
    border-left: 1px solid var(--light-emphasis-lighter);
    border-bottom: 1px solid var(--light-emphasis-lighter);
    /* min-height: 84px; */
    padding: 5px;
    background: var(--main-background);
    overflow-wrap: break-word;
}

/*====================================================
	             TimeLine Styles
  ====================================================*/
.timeline {
    padding: 12px;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}
.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #525252;
    color: white;
    margin-bottom: 10px;
    margin-top: 10px;
}
.timeline-header label {
    margin: 0;
    padding: 6px;
}

.timeline-header div.btn-success:last-child {
    height: 30px;
    width: 30px;
    align-items: center;
    font-size: 21px;
    cursor: pointer;
}

.timeline .line {
}

.timeline .indicator {
}

.timeline .item {
    min-width: 120px;
    min-height: 80px;
    border: solid 1px var(--light-emphasis-lighter);
    display: inline-block;
    position: relative;
    margin-right: 20px;
    box-shadow: 0 3px 6px #aaa;
    background: var(--light-emphasis);
    vertical-align: top;
}

.timeline .item .header {
    background: var(--light-emphasis-lighter);
    padding: 2px 2px 2px 5px;
    color: white;
    height: 22px;
    overflow: hidden;
}

.timeline .item .content {
    text-align: center;
    padding-top: 8px;
}

.timeline .item.selected .header {
    background: var(--blue);
}

.timeline .item.selected {
    border-color: var(--blue);
}

.timeline .item.selected i {
    color: var(--blue);
    cursor: pointer;
}

.timeline .item.new:hover {
    border-color: #aaa;
    box-shadow: 0 3px 6px #aaa;
    cursor: pointer;
    color: #777;
}

.timeline .item.new:hover i {
    color: #777;
}

.timeline .item:hover i {
    color: #333;
}

.timeline .item:hover i.nohover {
    color: var(--blue);
}

.timeline .item.selected:hover i {
    color: white;
}

.timeline .item.selected:hover i.nohover {
    color: var(--blue);
}

.timeline .item.new .header {
    background: var(--light-emphasis-lighter);
}

.timeline .item.new {
    color: #aaa;
    font-size: 20pt;
    border-color: var(--light-emphasis-lighter);
    border-style: dashed;
    box-shadow: none;
    background: var(--main-background);
    padding: 5px;
}

.timeline .item.new .new-item-description {
    font-size: 12px;
    clear: both;
    margin: -8px 0 8px 0;
}

.glyphicon-remove-circle:hover {
    color: var(--red);
}

.glyphicon-remove-circle {
    color: #aaa;
}

.maincontent {
    height: calc(100vh - 87px);
    padding: 0 17px;
    overflow: auto;
}

.overviews {
    padding: 18px;
}

.overview-item {
    box-shadow: none;
    position: relative;
    transition: 0.25s;
}

.overview-item div.back {
    display: none;
    transform: rotateY(180deg);
}

.overview-item.flipped, .flipped {
    transform: rotateY(180deg);
}

.overview-item.flipped div.front, .flipped div.front  {
    display: none;
}

.overview-item.flipped div.back, .flipped div.back {
    display: block;
}

.overview-item .widget-content > i {
    position: absolute;
    right: 0px;
    bottom: 0px;
    border: solid 1px var(--light-emphasis-lighter);
    padding: 4px;
    border-radius: 6px 0 0 0;
    background: var(--light-emphasis-lighter);
    color: white;
}

.overview-item.flipped .widget-content > i {
    left: 0px;
    right: auto;
    bottom: 0px;
    border-radius: 0 6px 0 0;
}

.overview-item ul {
    padding: 0 0 0 20px;
    margin: 0;
}

.overview-item:hover {
    transition: 0.25s;
    box-shadow: #bbb 0px 0px 3px 1px;
}

.overviewWatermark {
    position: absolute;
    color: #ececec;
    right: 30px;
    top: 44px;
    font-size: 42pt !important;
}

.overview-header {
    margin: 0 !important;
    padding: 3px 4px 2px 0px;
    background: var(--dark-emphasis);
    border: solid 1px var(--light-emphasis-lighter);
}

.overview-header .btn-xs {
    background: #888;
    color: #e5e5e5;
}

.overview-header h4 i,
.overviews .collapsed-icon {
    color: var(--orange);
}

.overviews .collapsed-icon {
    display: none;
    font-size: 24px;
    padding: 5px;
    cursor: pointer;
}

.overview-header h4 {
    margin: 3px 0 5px -3px !important;
    color: rgb(234, 234, 234) !important;
}

.timeselection {
    padding-top: 7px;
}

.timepicker-selector {
    z-index: 99999;
    padding: 5px;
    border: solid 1px var(--light-emphasis-lighter);
    background: var(--light-emphasis-light);
    cursor: pointer;
}

/* Time Picker Component */

.timepicker {
    z-index: 99999;
    padding: 5px;
    border: solid 1px var(--light-emphasis-lighter);
    width: 83px;
    cursor: pointer;
    position: relative;
    background-color: #fff;
}

.timepicker.disabled {
 background-color: #eee;
 cursor: none;
}

/* Display */
.timepicker button {
    border:none;
    background-color: transparent;
}

/* Controls */
.timepicker .control {
    z-index: 9999;
    margin-top: 6px;
    margin-left:-5px;
    position: absolute;
    background-color: #f3f3f3;
    border: solid 1px var(--light-emphasis-lighter);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.timepicker .control ul {
    z-index: 9999;
    margin-top: 6px;
    list-style-type: none !important;
    padding-inline-start: unset !important;
}

.timepicker .control ul.minuteOptions {
    margin-inline-start: 5px;
}

.timepicker .control ul.scrollable {
    max-height: 500px;
    overflow-y: auto;
}

.timepicker .control ul.amOrPmOptions {
    margin-inline-start: 5px;
}

.timepicker .control ul li {
    margin:0px 3px 0 3px;
    text-align: center;
    border: solid 1px #F2F2F2;
}

.timepicker .control ul li.selected {
    border: #000 solid 1px;
    background-color: #fff;
}

.timepicker .control ul li input {
    z-index: 9999;
    border: none;
    background-color: transparent;
    position: relative;
    padding: 0;
    margin: 4px;
    width: 20px;
}

/* END Time Picker Component */

.fakefield {
    border: solid 1px var(--light-emphasis-lighter);
    padding: 6px;
    background: var(--main-background);
    overflow: auto;
    height: 33px;
}

span.fakefield {
    display: inline-block;
    vertical-align: -11px;
}

.super-important {
    font-weight: bold;
    color: #da9121;
    font-size: 17pt;
    padding-left: 10px;
}

.super-important-label {
    min-width: 133px;
    height: 21px;
    vertical-align: top;
    font-weight: bold;
}

.sv-helper {
    opacity: 0.7 !important;
}

.dropdown-menu > li > a {
    cursor: pointer;
    padding: 8px 10px;
}

.dropdown-menu > li > a:hover {
    color: white;
}

.dropdown-menu .divider {
    margin: 0;
    background-color: var(--light-emphasis-lighter);
}

.tenant-name {
    line-height: 47px;
    float: left;
    font-size: 14pt;
    padding-right: 17px;
    color: #424242;
}

.alertwarn .tenant-name,
.alertsuccess .tenant-name,
.alertcritical .tenant-name {
    color: white;
}

.col-left .label i {
    font-size: 13px;
}

.draft-report {
    overflow: auto;
    border: solid 1px var(--light-emphasis-light);
    background: white;
    padding: 4px;
    margin-bottom: 5px;
    font-size: 11pt;
}

.bottom-space {
    padding-bottom: 5px;
}

.right-side-content {
    border-left: solid 1px var(--light-emphasis-lighter);
    height: calc(100vh - 97px);
    background: var(--light-emphasis);
}

.divided-view-main {
    float: left;
    width: calc(100vw - 684px);
    overflow-x: visible;
}

.divided-view-sub {
    position: absolute;
    right: 0;
    width: 360px;
    height: calc(100vh - 87px);
    background: var(--light-emphasis-light);
    /* box-shadow: #515151 1px 4px 8px 1px; */
    border-left: solid 1px var(--light-emphasis-lighter);
    overflow: auto;
}

.scroll-vertical {
    overflow-y: auto;
    margin-left: -15px;
    height: calc(100vh - 87px);
    padding-left: 15px;
}

tr.invalid {
    background: #c88080;
    color: white;
}

tr.invalid .clickable {
    color: white;
}

.detail-title {
    padding: 56px 0 5px 20px;
    font-size: 18px;
    font-weight: bold;
    background: var(--light-emphasis);
    border-bottom: 1px solid var(--light-emphasis-lighter);
}

.ui-block {
    background: black;
    z-index: 1039;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    opacity: 0.5;
}

.uib-datepicker-popup .uib-button-bar {
    display: block;
    overflow: auto;
    padding: 5px;
}

.payroll-name,
.summary-list-name {
    padding: 0 5px;
    cursor: pointer;
}

.payroll-name:last-child .payroll-list,
.summary-list-name:last-child .summary-list {
    border-bottom: solid 1px var(--light-emphasis-lighter) !important;
}

.payroll-list,
.summary-list {
    background: var(--main-background);
    padding: 5px;
    border: solid 1px var(--light-emphasis-lighter);
    border-top: 0;
    border-bottom: 0;
}

.payroll-staff,
.summary-header {
    display: block;
    background: var(--light-emphasis-light);
    padding: 5px;
    border: solid 1px var(--light-emphasis-lighter);
}

.payroll-list ul,
.summary-list ul {
    margin: 0;
    list-style: none;
}

.payroll-list li,
.summary-list li {
}

.page-mock {
    min-height: 1200px;
}

.page-break:not(last-child) {
    box-shadow: inset 0px 30px 15px -33px rgba(0, 0, 0, 1);
    -webkit-box-shadow: inset 0px 30px 15px -33px rgba(0, 0, 0, 1);
    -moz-box-shadow: inset 0px 30px 15px -33px rgba(0, 0, 0, 1);
    page-break-after: always;
    background: #e8e8e8;
    height: 20px;
    margin-left: -20px;
    margin-right: -20px;
    border-bottom: solid 1px #dcdcdc;
    margin-bottom: 20px;
}

.reportdisplayitem {
    overflow: auto;
}

/*scrollable tabs*/

.nav-tabs > li > a:hover {
    border-color: var(--light-emphasis-lighter);
}

.nav > li > a:hover, .nav > li > a:focus {
    background-color: var(--light-emphasis-light);
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    border-color: var(--light-emphasis-lighter);
    border-bottom-color: transparent;
    color: var(--text-light);
}

ul.nav-tabs > li.active > a {
    border-top: solid 3px var(--blue) !important;
}

div.scrollable {
    position: relative;
}

div.scrollable:before,
div.scrollable:after {
    background: var(--light-emphasis-light);
    border: solid 1px var(--light-emphasis-lighter);
    border-radius: 4px 4px 0 0;
    cursor: pointer;
    font-weight: bold;
    line-height: 30px;
    height: 30px;
    padding: 0 7px;
    position: absolute;
    z-index: 1;
}

div.scrollable:before {
    content: '<';
}

div.scrollable:after {
    content: '>';
    right: 0;
    top: 0;
}

div.scrollable > ul.nav-tabs {
    overflow: hidden;
    padding-left: 28px;
    white-space: nowrap;
    height: 30px;
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
}

div.scrollable > ul.nav-tabs > li {
    display: inline-block;
    float: none;
}

div.scrollable > ul.nav-tabs > li:last-child {
    margin-right: 26px;
}

div.scrollable > .tab-content > .tab-pane {
    padding: 5px;
}

.report-header-text {
    position: relative;
    top: 2px;
    left: 10px;
    font-weight: bold;
    transition: 0.5s;
}

.report-header-text.right {
    left: auto;
    right: 10px;
    color: #666;
}

.report-header-text.emphasize {
    color: var(--light-emphasis-lighter);
    transition: 0.5s;
}

.report-header-text.text-danger {
    color: #b94a48 !important;
}

.holiday {
    position: absolute;
    top: 13px;
    left: 34px;
    width: 25px;
}

.fakelink {
    cursor: pointer;
    color: var(--blue-dark);
}

.fakelink:hover {
    text-decoration: underline;
}

.selectedRow .fakelink {
    color: white;
}

.widget-content i.text-success {
    color: #64bc65;
}

.widget-content i.text-danger {
    color: #e37472;
}

.selectedRow i.text-success {
    color: #85c46b;
}

.selectedRow i.text-danger {
    color: #f3aead;
}

.selected-plan {
    border: solid 1px #9ab579 !important;
    background: #b5eab3;
}

.thumbnail {
    border: solid 1px var(--light-emphasis-lighter);
    background: var(--light-emphasis);
}

#sigpad,
#datepad,
#initialpad {
    border: dashed 1px var(--light-emphasis-lighter);
    background: var(--light-emphasis);
    border-radius: 10px;
    box-sizing: border-box;
}

signature-pad {
    display: block;
    box-sizing: border-box;
    overflow: auto;
    position: relative;
}

initial-pad {
    box-sizing: border-box;
    overflow: auto;
    position: relative;
}

/* to facilitate grid template textWithImageDocumentIdHoverValue */
.image-document-id-hover-parent.clickable img {
    display: none;
}
.image-document-id-hover-parent.clickable:hover img {
    display: inline;
    position: absolute;
    right: 10px;
    top: 30px;
    opacity: 1;
    border: 1px solid var(--light-emphasis-lighter);
    background-color: var(--main-background);
    max-width: 300px;
    max-height: 300px;
    z-index: 999999;
}

.codeinput {
    font-size: 4rem !important;
    border: 0;
    text-align: center;
    margin: 0 10px;
    border-bottom: solid 1px #888;
    width: 35px;
    outline: 0;
}

/* VIDEO SESSION */

video-session .message {
    font-size: 2rem;
    display: inline-block;
    padding: 20px;
}

video-session .exclusive-message {
    padding: 10px;
    border-radius: 5px;
    position: absolute;
    width: 100%;
    top: -4px;
    font-size: 1.4rem;
    background: white;
}

video-session .exclusive-message.no-modal {
    top: 86px;
    font-size: 2rem;
    background: black !important;
}

video-session .third-party-open {
    position: absolute;
    background: white;
    left: 0;
    bottom: 0px;
    z-index: 100;
    padding: 10px;
    color: black;
    border: solid 2px white;
    border-top-right-radius: 15px;
}

video-session .fullscreen {
}

video-session .consent {
    font-size: 1.5rem;
    margin-top: 15px;
    max-width: 615px;
    display: inline-block;
}

video-session .messages .message {
    clear: both;
    border-radius: 4px;
    border: solid 1px var(--light-emphasis-lighter);
    padding: 5px;
    font-size: 1.3rem;
    margin-top: 2px;
    display: inline-block;
    color: white;
}

video-session .messages .left {
    float: left;
    margin-right: 20px;
    border-radius: 4px;
    text-align: left;
    background: #59bb5b;
    border: solid 1px #409a42;
}

video-session .messages .right {
    float: right;
    margin-left: 20px;
    border-radius: 4px;
    text-align: right;
    background: #597dbb;
    border: solid 1px #3e5d92;
}

video-session .consent video {
    transform: scaleX(-1);
    width: 220px;
    border: solid 3px white;
    box-shadow: 0 0 5px 1px #616161;
}

video-session .goodbye {
    font-size: 2rem;
    margin-top: 15px;
    max-width: 615px;
    display: inline-block;
}

video-session .video {
}

video-session {
    width: 100vw;
    /* height: calc(100vh - 0px); */ /* This css looks poor on mobile screens */
    background: var(--main-background);
    /* margin-top: -30px; */
    position: absolute;
}

video-session .fullscreen.remote {
    margin-top: 0;
    /* height: calc(100vh - 60px); */ /* This css displays empty sidebar next to consent screen */
}

video-session .dual-video {
    display: flex;
    height: 100%;
    width: 34%;
    float: left;
}

video-session .third-party {
    /* border-left: solid 1px black; */
    display: flex;
}

video-session .third-party video {
    width: 100%;
    max-height: 100%;
}

video-session .mine {
    width: 120px;
    border: solid 1px black;
    position: absolute;
    right: 0;
    z-index: 11;
}

video-session .theirs,
video-session .third-party {
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
}

video-session .dual-video.both-active .theirs,
video-session .dual-video.both-active .third-party {
    /* max-width: 50%; */
    min-width: 50%;
    width: 50%;
}

video-session .dual-video.both-active.observer-mode {
}

video-session .dual-video.both-active.observer-mode .theirs {
    min-width: 75%;
    max-width: 75%;
    width: 75%;
}

video-session .dual-video.both-active.observer-mode .third-party {
    min-width: 25%;
    /* max-width: 25%; */
    width: 25%;
    justify-content: flex-end;
    background: white;
    overflow: hidden;
}

video-session .mine {
    transform: scaleX(-1);
}

video-session .third-party {
}

video-session .observer-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: fit-content;
    height: fit-content;
    padding: 5px 15px;
    color: #888;
    font-size: 1.1rem;
    background: white;
}

video-session .observer-text.is-observer {
    border-radius: 0 0 5px 5px;
}

video-session .observer-disclaimer {
    position: absolute;
    right: 0;
    bottom: 3px;
    padding: 5px 15px;
    font-size: 1.1rem;
    opacity: 1;
    color: #888;
    background: white;
    border-radius: 5px 0 0 0;
}

video-session .buttons-right,
video-session .video.fullscreen .buttons-right {
    right: 1px;
    position: absolute;
    border: solid 2px white;
    padding: 5px;
    border-radius: 0 0 0 12px;
    background: white;
    z-index: 12;
    cursor: pointer;
}

video-session .screenbuttons-right:hover,
video-session .video.fullscreen .buttons-right:hover {
    opacity: 1;
}

video-session .mine-collapsed {
    position: absolute;
    top: 0;
    right: 0;
    background: white;
    width: 25px;
    font-size: 1.3em;
    height: 24px;
    border-radius: 0 0 0 10px;
    z-index: 10;
}

video-session .mine.transparent {
    opacity: 0;
}

video-session .theirs.precall {
}

video-session .session-time {
    color: whitesmoke;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.7rem;
    padding: 4px 8px;
    background: black;
    opacity: 0.4;
    border-radius: 0 0 7px 0;
}

video-session .additional-videos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

video-session .additional-videos video {
    background: black;
    border: solid 2px white;
    width: 150px;
    margin: 4px;
}

video-session .white-out {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: -30px;
    background: black;
    z-index: -1;
}

.screenshare-container {
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10001;
    width: 100vw;
    height: 100vh;
    display: flex;
    overflow: auto;
    background: black;
}

.screenshare-container video {
    width: 100%;
}

.screenshare-container .screenshare {
    max-width: 100%;
    max-height: 100vh;
}

.screenshare-container.small {
    width: 200px;
    bottom: 0;
    top: auto !important;
    height: auto;
}

video-session .call-control {
    position: absolute;
    bottom: 12px;
    left: 10px;
}

video-session .call-control .media-controls {
    display: inline-block;
    background: white;
    border-radius: 16px;
    padding: 8px;
    padding-right: 12px;
    margin-right: -136px;
    padding-left: 59px;
    color: #56c356;
}

video-session .call-control .media-controls .fa.media-muted {
    color: var(--red);
}

video-session .call-control .media-controls .fa-volume-down {
    margin-left: 12px;
}

video-session .call-control .fa-close,
video-session .call-control .fa-phone,
video-session .call-control .fa-tv {
    color: white;
    background: var(--red);
    padding: 12px 15px;
    border-radius: 100px;
}

video-session .call-control .fa-tv {
    padding: 12px 11px;
    margin-left: 96px;
    padding-left: 12px;
}

video-session .url-controls {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    position: absolute;
    top: 40px;
    left: calc(50% - 220px);
    width: 470px;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 8px 16px;
}

video-session .url-controls input {
    font-size: 2rem !important;
    width: 350px;
    display: inline-block;
}

video-session .url-controls .ui-select-search {
    min-width: 100%;
}
video-session .url-controls .ui-select-search:focus {
    box-shadow: none;
}

video-session .banner {
}

video-session .debugging {
    text-align: left;
    background: white;
    padding: 5px;
    margin-top: 5px;
    border-radius: 5px;
    display: inline-block;
    height: 200px;
    overflow: auto;
    width: 600px;
}

video-session .debugging pre {
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: 0;
}

@media screen and (max-width: 800px) {
    video-session .fullscreen {
        max-height: 100vh;
        max-width: 100vw;
    }

    video-session .consent {
        font-size: 1.5rem;
        padding: 10px;
        height: calc(100vh - 67px);
        overflow: auto;
    }

    video-session .consent video {
        width: 150px;
    }

    video-session .goodbye {
        font-size: 1.5rem;
        padding: 10px;
    }

    video-session .video {
    }

    video-session .slider {
        display: none;
    }

    video-session {
        max-height: 100vh;
        max-width: 100vw;
    }

    video-session .fullscreen:not(.remote) .mine.pre-call {
        width: 100vw;
        bottom: 0;
        left: 0;
        border: 0;
        position: absolute;
        right: 0;
        z-index: 0;
        border-radius: 0;
        opacity: 1 !important;
    }

    video-session .theirs {
        width: auto !important;
        max-height: 100vh;
        max-width: 100vw;
    }

    video-session .theirs,
    video-session .dual-video.both-active {
        flex-direction: column;
    }

    video-session .dual-video.both-active .theirs,
    video-session .dual-video.both-active .third-party {
        max-width: 100%;
        min-width: 0;
        width: auto;
        /* max-height: 50%; */
        min-height: 50%;
        height: 50%;
    }

    video-session .dual-video.both-active .third-party {
        border-left: 0;
        border-top: solid 1px black;
    }

    video-session .dual-video.both-active .third-party video {
        width: auto;
        height: 100%;
    }

    video-session .dual-video.both-active.observer-mode .third-party {
        flex-direction: row-reverse;
    }

    video-session .dual-video.both-active.observer-mode .third-party .messages {
        align-self: flex-end;
        flex-grow: 1;
    }

    video-session .dual-video.both-active.observer-mode .third-party video {
        justify-content: flex-start;
        background: white;
        overflow: hidden;
    }

    video-session .call-control {
    }

    video-session .call-control .fa-close,
    video-session .call-control .fa-phone {
        font-size: 1.2rem !important;
        padding: 7px 8px;
    }

    video-session .call-control .fa-tv {
        display: none;
    }

    video-session #supervised .client-chat {
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
    }

    video-session .url-controls {
    }

    video-session .url-controls div {
        font-size: 1.2rem !important;
    }

    video-session .url-controls input {
        font-size: 1.2rem !important;
        width: 150px;
    }

    video-session .banner {
    }
}

primary-connection-info,
secondary-connection-info {
    display: inline-block;
    overflow: scroll;
    height: 50vh;
    position: absolute;
    top: 0;
    right: 0;
    width: 25vw;
    border: dashed 1px #888;
    z-index: 1000000;
    background: white;
    font-family: Courier New, Courier, monospace;
}

secondary-connection-info {
    bottom: 0;
    top: auto;
}

/* VIDEO ON REMOTE SCREENS */
.fullscreen.remote {
    background: var(--main-background);
    color: var(--light-emphasis-lighter);
}

.fullscreen.remote .theirs {
    border: 0;
    box-shadow: none !important;
    width: auto !important;
}

.fullscreen.remote .video {
    margin: 0 !important;
}

.fullscreen.remote .slider {
    display: none;
}

/* Flex box support */
.flex {
    display: flex;
    align-items: center;
}

.flex > div {
    flex-grow: 1;
    height: 100%;
    justify-content: center;
}

.flex-start {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.flex-top {
    display: flex;
    align-items: flex-start;
}

.flex-center {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.flex-ends {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.flex-bottom {
    display: flex;
    align-items: flex-end;
}

.flex-ends > * {
    margin-right: 15px;
}

.flex-ends:first-child {
    margin-right: 0;
}

.flex-left {
    display: flex;
    justify-content: flex-start;
}

.block-selector {
    height: 48px;
}

.block-selector > div {
    font-size: 3rem;
    display: flex;
    font-weight: bold;
    border: solid 1px var(--light-emphasis-lighter);
    align-items: center;
}

.block-selector > div.selected {
    background: dodgerblue;
    color: white;
}

.modal-dialog {
    transform: none !important;
}

objective-data-collector {
}

objective-data-collector .objective-name {
    display: flex;
    justify-content: space-between;
    align-content: center;
    font-size: 1.5rem;
    border-bottom: solid 1px var(--light-emphasis-lightest);
    padding: 5px;
    background: var(--light-emphasis-lightest);
    border-radius: 5px 5px 0 0;
    /* padding-top: 5px; */
    color: white;
}

objective-data-collector .collector {
    padding: 10px;
    border: solid 1px var(--light-emphasis-lighter);
    border-top: 0;
    background: var(--light-emphasis-light);
    border-radius: 0 0 5px 5px;
}

objective-data-collector .phase-name {
    font-weight: bold;
}

objective-data-collector th,
objective-data-collector td {
    padding: 5px;
}

.behavior,
.goal,
.objective {
    position: relative;
}

.behavior,
.goal {
    margin-bottom: 9px;
}

.wrapless {
    white-space: nowrap;
}

.btn-success.faded {
    color: #508d2d;
    background: #bee3a9;
}

.btn-danger.faded {
    color: #980000;
    background: #d29b98;
}

.smoosh-buttons .btn:first-child {
    border-radius: 3px 0 0 3px;
}

.smoosh-buttons .btn:last-child {
    border-radius: 0 3px 3px 0;
    border-left: 0;
    width: 32px;
}

.smoosh-buttons .btn {
    outline: 0;
}

.set-display > label {
    padding: 5px;
    display: block;
}

.phase-display {
    padding: 0 0 10px 20px;
    cursor: pointer;
}

.phase-display > .phase-details {
    border-left: solid 4px dodgerblue;
    margin-left: 4px;
}

/* Toggle Switch component */
.toggle-switch-outer-flex {
    display: flex;
}
.toggle-switch-ctr {
    flex: 1 1 auto;
    display: flex;
    overflow: hidden;
    height: 25px;
    border: 1px solid var(--light-emphasis-lighter);
    /*border-radius: 4px;*/
}
.toggle-switch-ctr.slide-full-width {
}
.toggle-switch-ctr .slider {
    height: 100%;
    background-color: var(--main-background);
    border: 1px solid var(--light-emphasis-lighter);
    border-radius: 4px;
    flex: 0 0 10px;
    margin: 0 -3px;
    z-index: 10;
}
.toggle-switch-ctr .option {
    color: var(--light-emphasis-lighter);
    background-color: var(--main-background);
    height: 100%;
    display: inline-block;
    flex: 0 1 0;
    padding: 2px 6px;
    transition: flex ease-out 0.25s;
}
.toggle-switch-ctr .option.left {
}
.toggle-switch-ctr .option.right {
    text-align: right;
}
.toggle-switch-ctr .option.option-selected {
    flex: 1 0 auto;
    color: whitesmoke;
}
.toggle-switch-ctr .option.option-unselected {
}
.toggle-switch-ctr.slide-full-width .option.option-unselected {
    padding: 0;
}
.toggle-switch-ctr.slide-full-width.left-selected .slider {
    margin-right: 0;
    margin-left: -3px;
}
.toggle-switch-ctr.slide-full-width.right-selected .slider {
    margin-right: -3px;
    margin-left: 0;
}

/* shadows on unselected section */
.toggle-switch-ctr.left-selected .option.right {
    box-shadow: inset 1px 0 3px var(--light-emphasis-lighter);
}
.toggle-switch-ctr.left-selected .slider {
    box-shadow: 1px 0 3px var(--light-emphasis-lighter);
}
.toggle-switch-ctr.right-selected .option.left {
    box-shadow: inset 1px 0 3px var(--light-emphasis-lighter);
}
.toggle-switch-ctr.right-selected .slider {
    box-shadow: -1px 0 3px var(--light-emphasis-lighter);
}

.toggle-switch-outside-label {
    flex: 1 1 auto;
    padding: 3px 0;
}
.toggle-switch-outside-label.left {
}
.toggle-switch-outside-label.right {
    text-align: right;
}

.outage {
    align-items: center;
    position: absolute;
    background: var(--light-emphasis-light);
    border: solid 1px var(--light-emphasis-light);
    margin: -100px 0;
    width: 300px;
    border-radius: 10px;
    padding: 5px;
}

.outage > i {
    font-size: 60px;
    color: #bbb;
    padding: 0 10px;
}

.outage.impending {
    background: var(--orange);
    border: solid 1px #d88105;
    color: white;
}

.outage.imminent {
    background: #e25856;
    border: solid 1px #c74543;
}

.outage.impending > i {
    color: var(--blue-dark);
}

.countdown {
    display: flex;
    margin-top: 2px;
}
.countdown > div {
    font-weight: bold;
    color: #888;
    padding: 1px 3px;
    background: white;
    border-radius: 5px;
    margin: 0 1px;
    border: solid 1px var(--light-emphasis-light);
}

.countdown > div > span {
    font-weight: normal;
    font-size: 7pt;
}

.fc-button {
    height: 31px !important;
}

/*calendar */
staff-member-schedule > div.expanded {
    position: absolute;
    top: 85px;
    bottom: 0;
    left: 292px;
    right: 0;
    height: calc(100vh - 85px);
    background: white;
    z-index: 999;
}
staff-member-schedule > div > #calendar {
    padding: 10px;
    border: solid 1px var(--light-emphasis-lighter);
    flex-grow: 1;
    max-height: calc(100vh - 355px);
}
staff-member-schedule > div.expanded > #calendar {
    max-height: calc(100vh - 87px);
}
.fc .fc-list-event:hover td {
    background: #27698a !important;
}
.fc-daygrid-dot-event:hover {
    background: #3a87ad !important;
}
.attached-to-body {
    overflow: auto;
    background: white;
    top: 88px;
    bottom: 0;
    height: calc(100vh - 88px);
    left: 292px;
    right: 0;
    z-index: 999;
    position: absolute;
}
.attached-to-body > #calendar {
    padding: 15px;
    border-right: #ccc solid 1px;
}
.fc-timegrid-event-harness > .fc-timegrid-event {
    right: 10px !important;
}

.headway {
    position: absolute;
    top: -3px;
    left: 158px;
}

/**  Claim Dashboard Charts **/
.claim-dashboard {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 25px;
    background-color: var(--main-background);
}
.claim-dashboard-chart {
    position: relative;
    height: 500px;
    width: 500px;
    flex: 1 1 500px;
    margin: 20px 0 20px 0;
}
.claim-dashboard-chart > label {
    display: block;
    text-align: center;
}
.whereby {
    height: 100%;
    width: 100%;
}
.video-observation {
    width: 66%;
    float: right;
}
.ui-select-search {
    width: fit-content !important;
}

/* list widget styles */
.clickable {
    color: var(--blue-dark);
    cursor: pointer;
}
.clickable:hover {
    text-decoration: underline;
}
.selectedRow .clickable {
    color: white;
}
.firstPriorityColumn {
    background-color: #f3f3f3;
}
.selectedRow {
    background-color: var(--blue);
    color: white;
}

.selectedRow a {
    color: white;
}

.evenRow {
    background-color: var(--light-emphasis);
}
.inactive:not(.selectedRow),
.inactive:not(.selectedRow) .clickable {
    background: #fcfcfc;
    color: #e4e4e4;
}

.forceOnTop {
    z-index: 2147483646 !important;
    display: block !important;
}
.forceOnTop .modal-content {
    z-index: 2147483646 !important;
    display: block !important;
}
.backdropOnTop {
    z-index: 2147483645 !important;
}
/* entity-info-audit/history component */
.vertical-timeline {
    width: 100%;
    position: relative;
    padding: 1.5rem 0 1rem;
}

.vertical-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 102px;
    height: 100%;
    width: 4px;
    background: var(--light-emphasis-lighter);
    border-radius: 0.25rem;
}

.vertical-timeline-element {
    position: relative;
    margin: 0 0 1rem;
}

.vertical-timeline-element-icon {
    position: absolute;
    top: 0;
    left: 95px;
}

.vertical-timeline-element-icon .badge-dot-xl {
    box-shadow: 0 0 0 5px var(--light-emphasis);
}

.badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}

.badge-primary {
    background-color: var(--blue);
}

.badge-warning {
    background-color: var(--orange);
}

.badge-danger {
    background-color: var(--red);
}

.badge-success {
    background-color: var(--green);
}

.badge-dot-xl {
    width: 18px;
    height: 18px;
    position: relative;
}

.badge:empty {
    display: none;
}

.badge-dot-xl::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 0.25rem;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -5px 0 0 -5px;
    background: var(--light-emphasis);
}

.vertical-timeline-element-content {
    position: relative;
    margin-left: 120px;
    font-size: 1rem;
}

.vertical-timeline-element-content .timeline-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
    padding: 2px 0 0;
    font-weight: bold;
}

.vertical-timeline-element-content .vertical-timeline-element-date {
    display: block;
    position: absolute;
    left: -120px;
    top: 2px;
    padding-right: 10px;
    text-align: right;
    color: #9ba2aa;
    font-size: 0.9rem;
    white-space: nowrap;
}

.vertical-timeline-element-content .dl-horizontal dt {
    width: 110px;
}

.vertical-timeline-element-content .dl-horizontal dd {
    margin-left: 120px;
}

.vertical-timeline-element-content:after {
    content: '';
    display: table;
    clear: both;
}

.entity-info-audit {
    display: block;
    height: 100%;
    overflow-y: scroll;
}

.entity-info-audit .spinner {
    margin: 3rem 0;
    text-align: center;
}
.entity-info-audit .fa-spinner {
    font-size: 2.5rem;
}

.text-blue {
    color: var(--blue);
}

.task {
    border: 1px solid var(--orange);
    border-top-width: 15px;
}
.resolved {
    border: 1px solid var(--green);
    border-top-width: 15px;
}

claim-task-editor {
    display: block;
    position: relative;
    margin: 20px 0;
    perspective: 150rem;
    &:first-child {
        margin-top: 0;
    }

    .task, .flip-wrapper  {
        width: 100%;
        transition: all .8s ease;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform-style: preserve-3d;

        a {
            cursor: pointer;
        }
    }

    .panel-body {
        background: none;
    }

    .flip.task-editor {
        transform: rotateY(-180deg);
    }
    .flip.flip-wrapper {
        transform: rotateY(0deg);
    }
    .flip-wrapper {
        transform: rotateY(180deg);
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        min-height: 100%;
    }
}

.task-last-comment {
    background: var(--main-background);
    border: solid 1px var(--light-emphasis-lighter);
    padding: 5px;
}

.task-new-comment {
    margin-top: 8px;

    textarea {
        padding-top: 5px;
    }
}

.initials {
    background: var(--dark-emphasis-lighter);
    color: var(--always-white);
    display: inline-block;
    font-weight: bold;
    vertical-align: middle;
    margin-right: 0.5em;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    float: left;
}

/* Billing Rule Editor */
.billingRuleEditor .styled-div {
    box-sizing: border-box;
    color: rgb(85, 85, 85);
    font-size: 13px;
    line-height: 18.5667px;
    margin-bottom: 15px;
    text-align: center;
    border: solid 1px var(--light-emphasis-lighter);
    min-height: 32px;
    max-height: 64px;
    width: 100%;
    align-content: space-evenly;
    overflow: scroll;
}

.billingRuleEditor .topMarginFix {
    margin-top: 23px;
}

.billingRuleEditor .removeButton {
    color: #ccc;
    vertical-align: top;
    padding-top: 7px;
    font-size: small;
    line-height: 7px;
}

.billingRuleEditor .removeButton:hover {
    color: red;
    cursor: pointer;
}

/* Aggregate Info List */

.aggregate-info-list {
    display: flex;
    flex-direction: row;
    column-gap: 6px;
    align-items: stretch;
    margin-bottom: 20px;
}
.aggregate-info-item {
    flex: 1 1 auto;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 15px;
    background: var(--main-background);
    border: 1px solid var(--light-emphasis-lighter);
    border-radius: 4px;
    max-width: 15em;
    container-type: inline-size;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.2s ease-in-out;
}
.aggregate-info-item:hover {
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.25);
}
.aggregate-info-item.active-item {
    background: var(--blue);
    border-color: var(--blue-dark);
    color: #fff;
    cursor: default;
}
.aggregate-info-item .aggregate-info-title {
    font-size: 10cqw;
    height: 1.5em;
}
.aggregate-info-item .aggregate-info-value {
    font-size: 20cqw;
    margin-bottom: 5px;
}
.text-warn {
    color: var(--orange);
}

.ng-hide {
    display: none !important;
}

.trace-call {
    background: var(--main-background);
    border: solid 1px var(--light-emphasis-lighter);
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 5px;
}

.trace-call:last-child {
    margin-bottom: 0;
}

.trace-item {
    display: flex;
}

.trace-item-label {
    font-weight: bold;
    text-align: right;
    width: 60px;
    margin-right: 10px;
}

.trace-item-label:after {
    content: ':';
}

.call-db-call {
    display: flex;
    align-items: center;
    background: var(--light-emphasis-light);
    padding: 2px;
    border-radius: 5px;
    margin-top: 10px;
}

.call-db-call > i {
    padding: 10px;
}

.call-db-call > div {
    flex-grow: 1;
    background: white;
    border-radius: 4px;
}

.call-db-call .trace-item-label {
    width: 100px;
}

.call-timeline {
    height: 10px;
    width: 100%;
    border-radius: 3px;
    margin-bottom: 5px;
    box-shadow: inset 0px 0px 2px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.call-timeline-segment{
    float: left;
    height: 10px;
    min-width: 1%;
    border-right: solid 1px white;
}

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
    border: 0;
    border-right: solid 1px var(--light-emphasis-lighter);
}

.table > thead > tr > th {
    border-bottom: 0;
}

.table > tbody > tr > td {
    border-top: solid 1px var(--light-emphasis-lighter)
}

.table-bordered {
    border: solid 1px var(--light-emphasis-lighter);
}

/* Loading Screen */

.loading-screen {
    background: #1C273A url('../img/loading_dribble.gif') no-repeat center -50px;
    height: 300px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

/* End Loading Screen */
