:root{
    --border-radius: 0.5rem;
    --border-radius-lg: calc(var(--border-radius) * 2);
    --border-radius-sm: calc(var(--border-radius) / 2);
    /* --font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; */
    --font-family: "Open Sans", Arial, sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.application, .staticContent {
    /*background: #0b6485;*/
    background: #f3f3f3 no-repeat center;
}

.login .application, .login .staticContent {
    height: 100%;
}

body,
input,
select,
textarea,
pre,
.uiContent.disabled,
.font,
.ui-widget {
    font-family: var(--font-family);
    font-size: 13px;
}

body {
    cursor: default;
    color: #000;
    overflow: hidden;
    
    /**
     * this is a bugfix for the body sometime changing its scroll left/top
     * even if overflow is set to hidden. ask @bu 20.02.15
     */
    position: fixed;
    width: 100%;
    height: 100%;
}

button {
    margin: 0;
}

button.button:hover,
button.button.hover {
    opacity: 0.85;
}

button.button:focus {
    outline: none;
    box-shadow: 0 0 2px rgba(0,0,0,0.5);
    border: 1px solid var(--color-app) !important;
}

table {
    border-spacing: 0; /* better table performance in chrome */
    border-collapse: initial; /* better table performance in chrome */
}

input,
select,
textarea,
.uiContent.disabled,
.tabButton,
.startpageForm,
.uiValue,
.blackFont {
    /*color: #3d3d3d;*/
    color: #000;
    font-weight: 500;
}

.darkBg {
    color: #FFF;
}

::-webkit-input-placeholder { color: #000; font-weight: 100; opacity: 0.75; }
.darkBg ::-webkit-input-placeholder { color: #FFF; opacity: 0.5; }

::-moz-placeholder { color: #000; font-weight: 100; opacity: 0.75; }
.darkBg ::-moz-placeholder { color: #FFF; opacity: 0.5; }

::-ms-input-placeholder { color: #000; font-weight: 100; opacity: 0.75; }
.darkBg ::-ms-input-placeholder { color: #FFF; opacity: 0.5; }

.darkBg input,
.darkBg select,
.darkBg textarea,
.darkBg .uiContent.disabled,
.darkBg .tabButton,
.darkBg .startpageForm,
.darkBg .uiValue {
    color: #FFF;
}

.whiteBg {
    background: #FFF;
}

a,
.uiElunicLink {
    cursor: pointer;
    /*color: #0b6485;*/
    color: #000;
    text-decoration: none;
}

.contextBox .uiElunicLink {
    white-space: nowrap
}

a:hover,
a.hover,
.uiElunicLink:hover,
.uiElunicLink.hover {
    text-decoration: underline;
}
.disabled>.uiElunicLink.hover,
.disabled>.uiElunicLink:hover {
    text-decoration: none;
}
a.icon:hover,
a.icon.hover {
    text-decoration: none;
}

hr {
    clear: both;
    height: 1px;
    background: none;
    padding-top: 9px;
    margin: 0 0 10px;
    border: solid #ededed;
    border-width: 0 0 1px;
}

.tabLayoutCompact hr {
    padding-top: 6px;
    margin-bottom: 7px;
}

.editMode hr {
    border-style: dotted;
    border-color: #BBB;
}

.defaultMode .showConfig,
#subNaviCol .showConfig
{
    display: none !important;
}

.configMode .showConfig:not(:hover) {
    opacity: 0.75;
}

.configMode .hideConfig {
    display: none;
}

.clear {
    clear: both;
}

.noWrap {
    white-space: nowrap;
}

.alignCenter {
    text-align: center;
}

.alignRight,
.alignRight textarea,
.alignRight input {
    text-align: right;
}

.flex,
.flexColumn {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.flexColumn {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flexSpacer {
    flex: 1 1 auto;
}

.transition {
    -webkit-transition-duration: .4s;
    -moz-transition-duration: .4s;
    -o-transition-duration: .4s;
    -ms-transition-duration: .4s;
    transition-duration: .4s;
}

.transition100 {
    -webkit-transition-duration: .1s;
    -moz-transition-duration: .1s;
    -o-transition-duration: .1s;
    -ms-transition-duration: .1s;
    transition-duration: .1s;
}

.transition200 {
    -webkit-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -o-transition-duration: .2s;
    -ms-transition-duration: .2s;
    transition-duration: .2s;
}

.transition600 {
    -webkit-transition-duration: .6s;
    -moz-transition-duration: .6s;
    -o-transition-duration: .6s;
    -ms-transition-duration: .6s;
    transition-duration: .6s;
}

.transition1000 {
    -webkit-transition-duration: 1s;
    -moz-transition-duration: 1s;
    -o-transition-duration: 1s;
    -ms-transition-duration: 1s;
    transition-duration: 1s;
}

.overlayBg {
    display: none;
    background: rgba(0, 0, 0, 0.33);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120; /* increased to be displayed in front of the main navigation [bu] */
}

.overlayActive .overlayBg {
    /* [cr] removed since it was blocking the whole screen. It doesn't seem to be used elsewhere
    /*display: block;*/
}

.icon,
.iconButton {
    font-size: 110%;
}

.icon,
a.icon,
.elunicTable .tableRows a.icon {
    color: #adadad;
}

.darkBg .icon,
.darkBg a.icon,
.darkBg .elunicTable .tableRows a.icon {
    color: #FFF;
}

.iconButtonCircle:hover,
.iconButton:hover,
a.iconButton:hover,
a:hover .iconButton,
.elunicTable .tableRows a.iconButton:hover,
.iconButtonCircle.hover,
.iconButton.hover,
a.iconButton.hover,
a.hover .iconButton,
.elunicTable .tableRows a.iconButton.hover {
    cursor: pointer;
    /*color: #0b6485;*/
    text-decoration: none;
}

.iconButtonCircle {
    padding: 4px 5px;
    border-radius: 50%;
    
    -webkit-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -o-transition-duration: .2s;
    -ms-transition-duration: .2s;
    transition-duration: .2s;
}

.iconButtonCircle:not(:hover):not(.colorFont) {
    color: #999;
}

.iconButtonCircle.small {
    font-size: 10px;
    padding: 3px 4px;
}

.iconButtonCircle.large {
    font-size: 18px;
    padding: 6px 7px 7px 6px;
}

.iconButtonCircle:hover,
.iconButtonCircle.hover {
    background: rgba(19, 167, 221, 0.15);
}

.iconButtonCircle.active {
    background: #0b6485;
    color: #fff;
}

.iconFlag {
    cursor: pointer;
    -webkit-filter: grayscale(50%);
    filter: gray;
    filter: grayscale(100%);
    opacity: 0.66;
    width: 16px;
}

body:not(.altKeyDown) .iconFlag.translated {
    pointer-events: none;
    opacity: 0;
}

.altKeyDown .iconFlag.translated {
    opacity: 0.3;
}

.iconFlag:hover {
    opacity: 1;
    filter: none;
    -webkit-filter: none;
}

/* =============== */

.application {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.application.transition {
    -webkit-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -o-transition-duration: .2s;
    -ms-transition-duration: .2s;
    transition-duration: .2s;
}
.application.loading .staticContent {
    background-image: url(/modules/Core/images/loading-indicator-3x.gif);
    background-size: 43px 11px;
}

body:before {
    content: 'LOADING';
    /*background: rgba(100,100,100,0.5);*/
    background: rgba(0, 0, 0, 0.33);
    text-align: center;
    color: #FFF;
    font-size: 20px;
    padding-top: 83px;
    letter-spacing: 10px;
    text-shadow: 0 0 20px;
    pointer-events: none;
    z-index: 9999;
    
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    
    -webkit-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -o-transition-duration: .2s;
    -ms-transition-duration: .2s;
    transition-duration: .2s;
    
    opacity: 0;
}

body.loadingBlock:before {
    pointer-events: all;
    opacity: 1;
}

#upperPage {
    overflow: hidden;
    position: absolute;
    top: 36px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;    
}

@media only screen
and (max-width : 800px) {
    #upperPage {
        top: 0;
    }
}

#mainLeftCol {
    height: 37px;
    line-height: 39px;
    
    background: var(--color-main);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;    
    
    z-index: 111; /* to appear above fixed table footer and header [bu] */
}

/**
 * it's required to set the z-index only when animating, otherwise there is a
 * a strange css bug which makes the #mainLeftCol flicker when hovering a table
 * title in the cockpit dashboard. while animating z-index is important to not
 * make relicts of the animating content behind the column flicker through the 
 * column background @bu 21.11.2014
 */
.animating #mainLeftCol {
    z-index: 101;
}

#mainLeftCol .border {
    background: var(--color-main);
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}
/*.subNaviVisible #mainLeftCol .border {
    border-right-color: #CCC;
}*/

/*#mainLeftCol .itemWrapper.user {
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}*/
#mainLeftCol .itemWrapper.user .item {
    text-transform: none;
    /*width: 100%;*/
}


#mainLeftCol .item {
    display: block;
    /*flex: 0 0 auto;*/
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    /*font-weight: 600;*/
}

#mainLeftCol .item .label {
    display: inline-block;
    /*line-height: 14px;*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 10px;
    border-radius: 3px;
    /*padding: 5px 20px 5px 10px;*/
}

#mainLeftCol .item.hasNewInstancesBtn .label {
    border-radius: 3px 0 0 3px;
}

#mainLeftCol .item .label .fa,
#mainLeftCol .item .label .icon {
    margin-right: 5px;
}
#mainLeftCol .item .count {
    margin-left: 5px;
    font-weight: 100;
}
#mainLeftCol .item .newInstanceButton {
    display: inline-block;
    width: 30px;
    /*line-height: 25px;*/
    text-align: center;
    opacity: 0.33;
    margin: 0 -2px 0px -8px;
    border-radius: 0 3px 3px 0;
    vertical-align: top;
    position: relative;
    z-index: 1;
    transform: scale(0.75);
    /*border-left: 1px solid transparent;*/
}

#mainLeftCol .item:hover .newInstanceButton,
#mainLeftCol .item.hoverFixed .newInstanceButton {
    /*width: 30px;*/
    /*opacity: 0.33;*/
    /*margin-right: 0px;*/
    /*background: rgba(255,255,255,0.3);*/
}


#mainLeftCol .item .newInstanceIcon {
    margin: 0 !important;
}
#mainLeftCol .item .newInstanceButton:hover {
    transform: scale(1);
    opacity: 1.0;
    background: rgba(255,255,255,0.3);
}

#mainLeftCol .item:not(.hover):not(.active) {
    color: hsl(0 0% min(100%, calc((var(--color-main-l) - 50%) * -10000000) / 0.66));
}

/*#mainLeftCol .item.hover,
#mainLeftCol .item.hover .icon {
    color: #FFF;
    text-decoration: none;
}*/

/*#mainLeftCol .itemWrapper {
    padding: 8px 0;
}*/
#mainLeftCol .itemWrapper .itemWrapper {
    padding: 0;
}

#mainLeftCol .itemWrapper .item.active .label {
    color: hsl(0 0% min(100%, calc((var(--color-main-l) - 50%) * -10000000)));
}

#mainLeftCol .itemWrapper .item .label.hoverFixed,
#mainLeftCol .itemWrapper .item .label:hover
{
    color: hsl(0 0% min(100%, calc((var(--color-main-l) - 50%) * -10000000)));
    background: rgba(255,255,255,0.1);
}
#mainLeftCol .itemWrapper .item.active.hasSubItems .label
{
    background: none;
}
/*#mainLeftCol .itemWrapper .item:hover .label {
    background: rgba(255,255,255,0.15) !important;
}*/

#mainLeftCol .itemWrapper .subItems {
    /*margin-bottom: 15px;*/
    margin-top: 5px;
}
#mainLeftCol .itemWrapper .subItems .item {
    font-weight: 100;
}
#mainLeftCol .itemWrapper .subItems .item .label {
    padding-left: 17px;
    text-transform: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#mainLeftCol .customScrollIndicator {
    /*pointer-events: none;*/
    opacity: 0.35;
}

#mainLeftCol .customScrollIndicator .body {
    background: #FFF
}

/*#mainLeftCol .item.active,
#mainLeftCol .item.hover {
    background: #ddd;
}*/

.contextBox .uiValue.showSubNaviIndicator {
    padding-right: 25px;
}

.showSubNaviIndicator:after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    border: 4px solid;
    border-color: transparent;
    border-left-color: #bbb;
    margin-top: -3px;
}

#mainLeftCol .showSubNaviIndicator:after {
    display: none;
    margin-top: -11px;
    border-left-color: #bbb;
}

.showSubNaviIndicator.hover:after,
.hover .showSubNaviIndicator:after,
.hoverFixed .showSubNaviIndicator:after {
    display: none;
}

/*#mainLeftCol .icon {
    font-size: 27px;
}*/

#mainLeftCol .label {
    font-family: var(--font-family);
    font-size: 12px;
    /*padding-bottom: 7px;*/
}

#mainLeftCol .iconContainer {
    position: relative;
}

#mainLeftCol .scrollButton {
    position: absolute;
    left: 0;
    right: 0;
    /*height: 22px;*/
    line-height: 22px;
    text-align: center;
    vertical-align: middle;
    opacity: 1;
    z-index: 10;
    cursor: pointer;
    /*color: #fff;*/
    font-size: 22px;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.7);
    
    transition-property: height, opacity;
    transition-duration: 0.4s;
    transition-timing-function: ease;
    
    height: 0;
    /*line-height: 0;*/
    overflow: hidden;
    opacity: 0;
}
#mainLeftCol .scrollButton:hover {
    opacity: 1.0;
}
#mainLeftCol .scrollUp {
    top: 0;
    border-bottom: 1px solid #ddd;
}
#mainLeftCol .scrollDown {
    bottom: 0;
    border-top: 1px solid #ddd;
}
#mainLeftCol .scrollButton.show {
    height: 22px;
    opacity: 0.8;
}

.notificationCount {
    line-height: 11px;
    min-width: 12px;
    background: #e22;
    color: #fff;
    font-size: 10px;
    text-align: center;
    padding: 2px 1px 1px;
    border: 1px solid #ebebeb;
    border-radius: 8px;
    position: absolute;
    bottom: 0px;
}

#mainTabAreas {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 46px;
    left: 0;
}

#mainTabAreas .dynamicElementsPosition,
#mainTabAreas .animationBlock,
#mainTabAreas .dynamicElement {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    /*bottom: 0;*/
    left: 0;
}

#mainTabAreas .animationBlock {
    cursor: pointer;
    z-index: 0;
}

.animating .animationBlock {
    z-index: 1;
}

.animating .hideContent .bodyOverflow,
.animating .hideContent .viewActivitiesGroup {
    display: none;
}

.elunicView .loading {
    font-size: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    color: #CCC;
    letter-spacing: 11px;
    margin: 10px 0 0 -65px;
}

.elunicViewHead .uiContainer {
    width: auto;
}

.dynamicElement .systemAvatar {
    cursor: pointer;
    width: 45px;
    height: 45px;
    line-height: 45px;
    /*background: #f7f7f7;*/
    background: #FFF;
    font-size: 1px; /* required for flat uncropped images to be centered correctly */
    text-align: center;
    border: 3px solid #FFF;
    border-radius: 10px;
    overflow: hidden;
    z-index: 15;
    /*box-shadow: 1px 1px 0 rgba(0,0,0,0.2);*/
}

.dynamicElement .systemAvatar.small {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 28px;
}

.dynamicElement .systemAvatar.tiny {
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 28px;
    border: none;
}

.dynamicElement .systemAvatar.small .fa-truck {
    margin-left: -4px;
}

.systemAvatar.headerAvatar {
    position: absolute;
    left: 20px;
    top: 11px;
}

/*.dynamicElement.hasSubNavi .systemAvatar.headerAvatar {
    margin-left: 199px;
}*/

.dynamicElement .systemAvatar .icon {
    font-size: 38px;
    vertical-align: middle;
}

.dynamicElement .systemAvatar .fa-truck {
    font-size: 34px;
}

.dynamicElement .systemAvatar.inverted {
    background: #e7e7e7;
}

.dynamicElement .systemAvatar.inverted .icon {
    color: #FFF;
}

.dynamicElement .systemAvatar img {
    vertical-align: middle;
}

/* fluent animation optimization */
.animating .dynamicElement .systemAvatar {
    display: none;
}

.elunicViewHead {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    /*table-layout: fixed;*/
    /*width: 100%;*/
    height: 73px;
    background: #FFF;
    white-space: nowrap;
    position: absolute;
    right: 0;
    left: 0;
    /*background: #0b6485;*/
    z-index: 3;
    /*box-shadow: 0 1px 3px rgba(0,0,0,0.2);*/
    box-shadow: 0 0px 2px rgba(0,0,0,0.2);
    /*padding: 5px 0;*/
}

.dynamicElement.profilePictureEnabled .elunicViewHead {
    /*border-left: 85px solid #0b6485;*/
    padding-left: 101px;
}

.elunicViewHead,
.elunicViewHead .icon,
.elunicViewHead a {
    line-height: 73px;
}

.elunicViewHead,
.elunicViewHead .icon,
.elunicViewHead .uiValue,
.elunicViewHead a {
    /*color: #FFF;*/
    /*font-size: 16px;*/
    font-size: 20px;
    /* font-weight: 400; */
}

.elunicViewHead .icon {
    color: #999;
}

.elunicViewHead .editMode .uiContent {
    min-width: 70px;
    max-width: 400px;
}
.contextBox .uiValue {
    min-width: 70px;
    /* reduced max width to avoid horizontal scrollbars in sidebar task contexts with long package name [bu - 18.07.2017] */
    max-width: 300px;
}

.contextBox .uiValue:is(.fullWidth, .dialogTitle) {
    max-width: 100%;
}

.elunicViewHead .uiValue {
    line-height: 73px;
    padding: 0 5px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.elunicViewHead .placeholderText {
    position: static;
}

.dynamicElement .elunicViewHead .uiContent {
    width: auto;
    max-width: none;
}

.dynamicElement .elunicViewHead .editLabelIcon {
    color: #FFF;
    opacity: 0.75;
    font-size: 15px;
    margin-left: -7px;
}

.dynamicElement .elunicViewHead .editLabelIcon:hover {
    opacity: 1;
}

.elunicViewHead .leftIcons {
    display: inline-block;
    flex: 0 0 auto;
}

.elunicViewHead .headerBackButton {
    margin: 0 -25px 0 0px;
}

.elunicViewHead .dynamicHeadLeft {
    flex: 1 1 auto;
    overflow: hidden;
    margin-right: 25px;
    padding-left: 20px;
}

.leftIcons ~ .dynamicHeadLeft {
    padding-left: 0;
    margin-left: 20px;
}

.elunicViewHead .dynamicHeadRight {
    flex: 0 0 auto;
}

.dynamicHeadLeft .contentNameLabel .label {
    min-width: 100px;
    flex: 0 10 auto;
    /* This causes the label to disappear for ElunicViews with a large number of tags */
    overflow: hidden; 
    text-overflow: ellipsis;
    /* make sure a overflow to the left side i.e. by border helpers is not hidden */
    margin-left: -10px;
    padding-left: 10px;
    font-weight: 300;
}

.dynamicHeadLeft .contentNameLabel .label .layoutOneCol .borderHelper {
    margin-right: 5px;
    margin-top: -12px;
}

.dynamicHeadLeft .contentNameLabel .label .uiValue {
    overflow: hidden;
    text-overflow: ellipsis;
}

.hasSubTitle .dynamicHeadLeft .contentNameLabel {
    margin-top: -8px;
}

.configMode .elunicViewHead .headerMeta {
    display: inline-block;
    font-size: 14px;
    margin: 0 10px;
}

.elunicViewHead .elunicId {
    display: inline-block;
    margin-left: 5px;
    font-size: 14px;
    visibility: hidden;
    transition: visibility 1s;
}

.softDeletedInfo {
    font-style: italic;
    margin: 0 0.5rem;
    color: #000;
}

.elunicViewHead:hover .elunicId {
    visibility: visible;
}

/*.elunicViewHeadLeft {
    padding-left: 20px;
}

.elunicViewHeadLeft .contentNameLabel {
    font-size: 18px;
    font-weight: 300;
}

.configMode .elunicViewHeadLeft .headerMeta {
    display: inline-block;
    font-size: 14px;
}

.elunicViewHeadLeft .className {
    margin: 0 10px;
}

.elunicViewHeadLeft .className a {
    color: #FFF;
}

.elunicViewHeadLeft .className a:hover {
    text-decoration: underline;
}*/

/*.elunicViewHeadRight {
    width: 1px;
}*/

.dynamicButton,
.dynamicButton .buttonElement {
    display: inline-block;
    vertical-align: top;
}

.dynamicButton {
    padding-top: 26px;
    line-height: 35px;
    border-radius: 5px;
    
    -webkit-transition-duration: .1s;
    -moz-transition-duration: .1s;
    -o-transition-duration: .1s;
    -ms-transition-duration: .1s;
    transition-duration: .1s;
}

.dynamicButton.selected {
    background: #FFF;
}

.dynamicButton.activated {
    cursor: pointer;
}

.dynamicButton.activated.notClickable {
    cursor: default;
}

/*.dynamicButton.activated,
.dynamicButton.activated a,
.dynamicButton.activated .icon {
    color: #FFF;
}*/

.dynamicButton.selected,
.dynamicButton.selected a,
.dynamicButton.selected .icon {
    color: #0b6485;
}

/*.dynamicButton.deactivated,
.dynamicButton.deactivated .icon {
    color: rgba(255, 255, 255, 0.3);
}*/
.dynamicButton.deactivated {
    opacity: 0.33;
}

.dynamicButton.deactivated .label {
    opacity: 0.7;
    text-decoration: none;
    cursor: default;
}

.elunicViewHeadRight .dynamicButton.contextOpen:before {
    background: none repeat scroll 0 0 rgba(255, 255, 255, 0.2);
    content: "";
    display: block;
    height: 1px;
    margin-bottom: -1px;
    position: relative;
    top: 34px;
}

.dynamicButton.activated:not(.selected):hover,
.dynamicButton.activated:not(.selected).hover,
.dynamicButton.activated.highlight {
    background: rgba(255, 255, 255, 0.2);
}

.dynamicButton .buttonElement {
    line-height: 27px;
    padding: 0 5px;
}

/*.dynamicButton .buttonElement.fa-cloud-upload {
    line-height: 32px;
}*/

.dynamicButton .buttonElement:first-child {
    border: solid rgba(255, 255, 255, 0.2);
    border-width: 0 0 0 1px ;
    padding-left: 14px;
}

.dynamicButton.deactivated .buttonElement:first-child {
    border-left: 1px solid rgba(99,99,99, 0.6);
}

.dynamicButton .buttonElement:last-child {
    padding-right: 14px;
}

/*.dynamicButton.activated:hover .buttonElement,
.dynamicButton.activated.hover .buttonElement {
    border-color: transparent;
}*/

.dynamicButton .label {
    font-size: 14px;
}

.elunicViewHead .dynamicButton .label {
    font-size: 17px;
    font-weight: 300;
}

.dynamicButton .icon {
    text-align: center;
}

.elunicViewHead .dynamicButton .icon {
    font-size: 18px;
}

.dynamicButton .buttonCell {
    line-height: 25px;
    vertical-align: middle;
}

.dynamicButton .icon.buttonCell {
    width: 1px;
    padding-left: 14px;
}

.dynamicButton .label.buttonCell {
    padding-right: 15px;
    white-space: nowrap;
}

.dynamicButton .icon.buttonCell:before {
    padding-right: 7px;
}

.dynamicButton.inverted {
    background: rgba(0, 0, 0, 0.5);
}

.dynamicButton.inverted:hover,
.dynamicButton.inverted.hover {
    background: rgba(0, 0, 0, 0.6);
}

.elunicViewHead .saveAndCloseButton .icon,
.elunicViewHead .saveButton .icon,
.searchOverlay .confirmSearchOverlay .icon {
    font-size: 27px;
}

.contentNameLabel .icon {
    margin-right: 10px;
}

.dynamicElement.profilePictureEnabled .contentNameLabel .classTypeIcon {
    display: none;
}

.contentNameLabel .dirtyFlag {
    display: none;
    /*position: absolute;*/
    margin: -5px 0 0 -5px;
}

.dirty .contentNameLabel {
    /*color: #F4F7C8;*/
    /*color: #0b6485;*/
    color: #199cc8;
}

.invalidElunicView .contentNameLabel {
    color: #F66;
    text-shadow: 0px 0px 3px rgba(255,0,0,0.5);
}

.elunicViewHeadLeft .contentNameLabel {
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 15px;
}

.viewTabs {
    width: 131px;
    position: absolute;
    left: 4px;
    top: 85px;
    bottom: 0;
    z-index: 5;
    /*white-space: nowrap;*/
    text-align: center;
    overflow: hidden;
}

.dynamicElement.profilePictureEnabled .viewTabs {
    top: 113px;
}

.viewTabs .tab {
    cursor: pointer;
    display: inline-block;
    width: 80px;
    font-size: 11px;
    text-transform: uppercase;
    font-family: var(--font-family);
    margin: 0 0 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    
    -webkit-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -o-transition-duration: .2s;
    -ms-transition-duration: .2s;
    transition-duration: .2s;
}

.viewTabs .tab:not(.selected) {
    color: #999;
    transform: scale(0.95);
}

.viewTabs .tab .icon {
    display: block;
    font-size: 36px;
    margin-bottom: 6px;
}

.noTabs .viewTabs {
    display: none;
}

.dynamicElement.deselected .dynamicTabs,
.dynamicElement.deselected .elunicViewHead>* {
    display: none;
}

.dynamicBody {
    position: absolute;
    top: 74px;
    right: 0;
    bottom: 5px;
    left: 0;
}

/*.elunicView.profilePictureEnabled .dynamicBody {*/
/*.elunicView:not(.noTabs) .dynamicBody {
    left: 90px;*/
/*}*/

@media only screen
and (max-width : 800px) {
    .dynamicBody {
        left: 0 !important;
    }
}

.dynamicBody,
.dynamicBody th {
    color: #000;
    font-weight: 100;
}

#largeLoadingIndicator {
    pointer-events:none;
    opacity: 0;
    /*color: #ddd;*/
    font-size: 30px;
    font-weight: 100;
    position: fixed;
    left: 50%;
    top: 50%;
    margin: -30px 0 0 -66px;
    
/*    text-shadow:
        0 0 10px #FFF,
        0 0 10px #FFF,
        0 0 10px #FFF,
        0 0 30px #FFF,
        0 0 30px #FFF,
        0 0 30px #FFF
        -2px 0 #FFF,
        0 2px #FFF,
        2px 0 #FFF,
        0 -2px #FFF;*/
    
    text-shadow: 0 0 20px #999;

    -webkit-transition-duration: .3s;
    -moz-transition-duration: .3s;
    -o-transition-duration: .3s;
    -ms-transition-duration: .3s;
    transition-duration: .3s;
    z-index: 111;
}

/*.animating .loadingIndicator,*/
#largeLoadingIndicator.visible {
    opacity: 1;
    
    -webkit-transition-duration: 3s;
    -moz-transition-duration: 3s;
    -o-transition-duration: 3s;
    -ms-transition-duration: 3s;
    transition-duration: 3s;
}

.dynamicBody h1.uiTitle:not(.collapsed),
.dialog h1.uiTitle,
.dynamicBody .header1 {
    /* background: #F9F9F9; */
    /*color: #000;*/
    font-size: 17px !important;
    font-weight: 400;
    text-transform: uppercase;
    margin: 15px 0 0;
    padding-bottom: 15px;
    padding-top: 12px;
    /* do not change this. if required, include a sub span and set white-space: normal for the span [bu] */
    white-space: nowrap;
    /*border-bottom: 1px solid #dbdbdb;*/
}

.dynamicBody h1.uiTitle.colorFont {
    text-shadow: 0 0 10px;
}

.uiBlock .uiTitle,
.uiBlock .header1,
.uiBlock h2 {
    z-index: 1;
    position: relative;
    font-size: 15px;
    font-weight: 100;
    padding: 14px 20px 14px 8px;
    margin-top: 15px;
}

.uiBlock .uiTitle.reducedSpacing {
    margin-top: 0px;
    /*padding-top: 14px;*/
    /*margin-bottom: -25px;*/
}

.uiGroup > .childViewsCon.sliding {
    margin: -2px !important;
    padding: 2px !important;
    overflow: hidden;
}

.uiTitleCon.collapsed {
    background: rgba(255,255,255,0.5) !important;
}

.whiteBg .uiTitleCon.collapsed {
    background: #fafafa !important;
    border-radius: var(--border-radius);
    box-shadow: 0 0px 2px #bbb !important;
    margin-top: 18px;
    margin-left: 2px;
    width: calc(100% - 4px);
}

.whiteBg .uiTitleCon:not(.collapsed) .uiTitle.collapsable {
    width: 100%;
    border-bottom: 1px dashed #999;
    margin-top: 10px;
    margin-bottom: 5px;
    padding-left: 16px;
}

.whiteBg .uiTitle {
    /* required in task context: http://screenshot.co/#!/e5acdd4c02 [bu] */
    font-weight: 500;
}

.uiBlock .uiTitle.collapsed {
    padding: 7px 20px 7px 8px;
    margin-top: 11px;
}

.whiteBg .uiTitle.collapsed {
    margin-top: 0;
}

/*.editMode .uiTitle {
    border-bottom: 1px dotted #BBB;
}*/

.uiBlock .uiTitle.fullWidth {
    margin-left: 0px;
}

.uiBlock h2.tableTitle {
    margin-left: 0px;
    padding-left: 7px;
    width: 100%;
}

.uiBlock h3 {
    padding-bottom: 8px;
    margin-bottom: 1px;
    margin-top: 20px;
    border-bottom: 1px dotted #ededed;
    color: #000;
    font-size: 14px;
}

.uiBlock .uiTitle .icon:not(.collapseIcon) {
    /* optimized to look good in here: http://screenshot.co/#!/8ea784431c [bu] */
    font-size: 125%;
    margin-left: 11px;
    margin-right: 7px;
    opacity: 0.4;
    vertical-align: -1px;
}

.uiBlock .uiTitle .icon:not(.collapseIcon):hover {
    opacity: 1;
}

.bodyOverflow {
    width: 100%;
    height: 100%;
    /*position: absolute;*/
    /*top: 0;*/
/*    right: 0;
    bottom: 0;*/
    /*left: 0;*/
    overflow-y: auto;
}

.bodyPadding {
    width: auto !important;
    /**
     * using border instead of padding makes sure there is also extra space
     * added when scrollbars are required because of body overflow
     */
    border: solid transparent;
    /**
     * use a high bottom border i.e. to make sure there is enough space to
     * select selectBox options even if the select box is on the bottom
     * of the screen
     */
    /*border-width: 10px 40px 117px 40px;*/
    border-width: 15px 40px 1000px 40px;
}

.uiTabsEnabled .bodyPadding {
    border-left: 130px solid transparent !important;
}

iframe#launcher-frame {
    max-width: 100px !important;
}

#footer {
    height: 34px;
    /*background: #FFF;*/
    overflow: hidden;
    position: absolute;
    right: 100px;
    bottom: 5px;
    left: 10px;
    z-index: 10;
    /*border-top: 1px solid #0b6485;*/
/*    border-top-width: 1px;
    border-top-style: solid;*/
}

#footer .iconFlag {
    margin-right: 10px;
    position: relative;
    top: -2px;
}

#footerCrumbs {
    flex: 1 1 auto;
    height: 30px;
    overflow: auto hidden;
    scrollbar-width: none;
}

#projectLogo {
    /*float: right;*/
    line-height: 29px;
    margin: 2px 10px 0 13px;
    flex: 0 0 auto;
}
#projectLogo img {
    max-width: 200px;
    /*max-height: 24px;*/
    max-height: 14px;
    vertical-align: middle;
}

#currentUserData {
    float: right;
    margin: 5px 10px 0;
    padding: 0px 10px 2px 0;
}

#currentUserData:hover {
    color: #0b6485;
}

#userDataContent {
    color: #999999;
    font-weight: 300;
}

#nodeLogo {
    opacity: 0.3;
    cursor: pointer;
    float: right;
    margin: 9px 0 0 15px;
}

#nodeLogo:hover {
    opacity: 1;
}

#nodeLogo.active {
    color: #6B6;
    opacity: 0.5;
}
    
#nodeLogo.active:hover {
    opacity: 1;
}

#smallLoadingIndicator {
    display: inline-block;
    height: 20px;
    margin: 0 9px 0 0;
    position: relative;
    top: -2px;
}

.tabCrumbs .crumbContainer.unpinned {
    flex: 1 1 auto;
}

.tabCrumbs .crumbContainer.pinned {
    flex: 0 1 auto;
    padding-right: 2px;
}

.application .flatShadowIcon {
    flex: 0 0 auto;
    display: inline-block;
    width: 30px;
    color: #FFF !important;
    font-size: 19px;
    line-height: 31px;
    /*padding: 0 2px;*/
    overflow: hidden;
    text-align: center;
    border-radius: 50%;
    background: #CCC;
}

.application .addTabIcon {
    background: #ddd !important;
    cursor: pointer;
    width: 27px;
    height: 26px;
    line-height: 28px;
    margin-top: 2px;
    margin-left: 5px;
    border-radius: 2px;
    opacity: 0.5;
}

.addTabIcon:hover {
    opacity: 1;
    /*color: #0b6485 !important;*/
    /*background: #E7E7E7 !important;*/
}

.tabCrumbs .crumb {
    max-width: 400px;
    cursor: pointer;
    /*color: #999;*/
    font-weight: 100;
    font-family: var(--font-family);
    font-size: 12px;
    padding: 6px 7px 2px 19px;
    vertical-align: top;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    
    -webkit-transition-property: max-width;
    transition-property: max-width;
}

.tabCrumbs.deselected .crumb:not(.lastSelected) {
    max-width: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.tabCrumbs.deselected .crumb.lastSelected,
.tabCrumbs .crumb:first-child {
    padding-left: 23px;
}

.tabCrumbs .crumb .text {
    display: inline-block;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: top;
}

.tabCrumbs .crumb:last-child .text {
    max-width: none;
}

.tabCrumbs.selected .crumb.active,
.tabCrumbs .crumb:hover {
/*.tabCrumbs .crumb.active div.close {*/
    color: #3d3d3d;
    font-weight: 700;
}

/*.tabCrumbs .crumb.active {
    font-weight: bold;
}*/

.tabCrumbs .crumb:hover {
    background: #F7F7F7;
}

.tabCrumbs .unpinned .crumb:not(:hover) .moreIcon {
    display: none;
}

.tabCrumbs .crumb .moreIcon {
    background: #F7F7F7;
    font-size: 14px;
    position: absolute;
    margin: -2px 0 0 -17px;
}

.tabCrumbs .crumb .arrow {
    position: absolute;
    border: 4px solid transparent;
    border-left-color: #bfbfbf;
    margin: 5px 0 0 -12px;
}

.tabCrumbs .crumb:hover .arrow,
.tabCrumbs.selected .crumb.active .arrow {
    border-left-color: #888;
}

.tabCrumbs .crumb .close {
    height: 11px;
    flex: 0 0 auto;
    color: #aaa;
    margin-left: 1px;
}

.tabCrumbs .crumb .close:hover {
    color: #0b6485;
}

.tabCrumbs .crumb .close.active {
    color: #FFF;
}

.tabCrumbs .icon {
    flex: 0 0 auto;
    font-size: 11px;
    margin: 4px 4px 0 0;
}

.tabCrumbs .dirty,
.tabCrumbs .dirty .icon{
    /*font-weight: bold;*/
    color: black;
}

.tabCrumbs .dirtyFlag {
    display: none;
    font-weight: bold;
    font-size: 12px;
    position: absolute;
    right: 0;
    top: 1px;
    /*margin-left: -1px;*/
}

.tabCrumbs .dirty .dirtyFlag {
    display: inline-block;
}

.tabCrumbs .deactivateCrumbs.inactive:not(.dirty) {
    display: none;
}

.tabCrumbs .crumb.active .close {
    opacity: 1;
}

.tabCrumbs .crumb.active span.dirtyFlag,
.tabCrumbs .dirty span.dirtyFlag {
    color: red;
}

.tabCrumbs .close {
    opacity: 0;
}

.tabCrumbs:hover .close {
    opacity: 1;
}

.tabCrumbs .deactivateCrumbs.inactive:not(.dirty) {
    display: none;
}

/* ======== FLASH MESSENGER START ========= */

#flashMessenger {
    width: 400px;
    position: fixed;
    right: 20px;
    bottom: 60px;
    z-index: 10006;
    font-family: var(--font-family);
    --padding: 1rem;
    text-align: right;
}

.flashMessage {
    line-height: 22px;
    background: #0b6485;
    color: #FFF;
    border: none;
    padding: calc(var(--padding) / 3) var(--padding);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    border-radius: var(--border-radius-lg) var(--border-radius-sm) var(--border-radius-sm) var(--border-radius-lg);
    transition: border-radius .5s ease-in-out;
    width: fit-content;
    margin-left: auto;
}

.flashMessage:first-child,
.flashMessage.round-top,
.flashMessage.round-bottom + .flashMessage {
    border-top-left-radius: var(--border-radius-lg);
    border-top-right-radius: var(--border-radius-lg);
}

.flashMessage.round-bottom {
    border-bottom-left-radius: var(--border-radius-lg);
    border-bottom-right-radius: var(--border-radius-lg);
}

.flashMessage:last-child{
    border-bottom-left-radius: var(--border-radius-lg);
    border-bottom-right-radius: var(--border-radius-lg) !important;
}

#flashMessenger .flashMessage a {
    font-weight: 900;
    font-size: 12px;
}
.flashMessage.clickable {
    cursor: pointer;
}
.flashMessage > p {
    display: flex;
}
.flashMessage .icon {
    color: #FFF;
    position: relative;
    top: .225rem;
}
.flashMessage .message {
    vertical-align: middle;
    margin-left: 10px;
    white-space: normal;
    vertical-align: top;
    font-size: 13px;
    box-sizing: border-box;
}

.flashMessage.warning {
    color: #333;
    background: #FFEECC;
}
.flashMessage.warning .icon {
    color: var(--color-orange);
}

.flashMessage.error {
    color: var(--color-red);
    background: #FEE;
    border: 1px solid var(--color-red-light);
}
.flashMessage.error .icon {
    color: var(--color-red);
}

.flashMessage.success {
    color: #333;
    background: #EFE;
    border: 1px solid var(--color-green);
    color: var(--color-green);
}
.flashMessage.success .icon {
    color: var(--color-green);
}

@media only screen
and (max-width : 800px) {
    #flashMessenger {
        max-width: 20rem;
        width: calc(100vw - 2rem);
        bottom: 1rem;
        right: 1rem;
    }
    
    .flashMessage {
        padding: calc(var(--padding) / 4) calc(var(--padding) / 2);
    }

    .flashMessage .icon {
        top: .1125rem;
    }
}

/* ======== FLASH MESSENGER END ========= */

#hideAddressBarHelper {
    display: none;
/*    width: 10px;
    position: absolute;
    top: 0;
    bottom: -100px;*/
}

#footerIcons {
    float: right;
    line-height: 35px;
    /*font-size: 22px;*/
    flex: 0 0 auto;
    white-space: nowrap;
}

#footerIcons .icon {
    font-size: 19px;
    margin-right: 10px;
    margin-left: 7px;
}

/* ============= CHAT ============ */
#openChatIcon .count,
#openChatIcon .iconButton {
}

#openChatIcon:before {
    content: '';
    width: 1px;
    height: 20px;
    /*background: #E0E0E0;*/
    position: absolute;
    margin: 5px 0 0 -10px;
}

#chatBox {
    bottom: -1px !important;
}

#chatBox .recipient .uiContent {
    width: 200px;
}

#chatBox .recipient .items {
    position: relative;
    top: -5px;
}

.button {
    font-family: var(--font-family);
    font-weight: 400;
    display: inline-block;
    cursor: pointer;
    background: #ebebeb;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 10px;
    margin: .25rem;
    border-radius: var(--border-radius);
    box-sizing: border-box;
}
.button:hover,
.button.highlight {
    background: #0b6485;
    opacity: 0.8;
    color: #ebebeb;
}

.button.highlight {
    opacity: 0.66;
}

.button:hover {
    opacity: 1;
}

.button:hover .icon,
.button.highlight .icon {
    color: #ebebeb;
}
.tabLayoutCompact .button
{
    margin: 0 0 2px;
}
.button.disabled {
    cursor: default;
    opacity: 0.5 !important;
}

.button .icon {
    margin-right: 6px;
}
.button.iconButtonCircle .icon {
    margin-right: 0px;
}

.customScrollIndicator {
    cursor: pointer;
    width: 6px;
    height: 9px;
    position: absolute !important;
    right: 4px;
    opacity: 0.2;
    -webkit-transition: opacity 0.3s ease-out, width 0.3s ease, margin-left 0.3s ease;
    margin-left: 2px;
    padding: 3px 0;
    z-index: 300;
}

.customScrollIndicator .body {
    background: #000;
    height: 100%;
    width: 100%;
    border-radius: 2px;
}

.customScrollIndicator.hidden {
    opacity: 0!important;
    -webkit-transition: opacity 0.8s ease;
}

.customScrollIndicator.dragging,
.customScrollIndicator:hover {
    opacity: 0.3;
    -webkit-transition: opacity 0.1s ease-in, margin-left 0.3s ease, width 0.3s ease;
    width: 8px;
    margin-left: 0px;
    /*width: 10px;*/
}


.customScrollIndicator.tiny {
    width: 4px;
}
.customScrollIndicator.tiny.dragging,
.customScrollIndicator.tiny:hover {
    width: 6px;
}
.customScrollIndicator.small {
    width: 7px;
}
.customScrollIndicator.small.dragging,
.customScrollIndicator.small:hover {
    width: 9px;
}
.customScrollIndicator.normal {
    width: 10px;
}
.customScrollIndicator.normal.dragging,
.customScrollIndicator.normal:hover {
    width: 12px;
}


/*.customScrollIndicator.conHover {
    opacity: 0.1;
    -webkit-transition: opacity 0.3s ease-in;
}*/

/*.elunicTooltip {
    box-shadow: 0 0 2px #ebebeb;
}

.elunicTooltip .content {
    padding: 10px 20px;
}*/

.elunicHeaderTooltip .content {
    font-size: 18px;
    /* color: var(--color-app) !important; */
    /*padding: 8px 13px;*/
}

/* Im not sure if this should be placed here! @hoechts */
/*.elunicViewHeadLeft .eList {
    padding-top: 0px;
    min-height: 0px;
}*/
.elunicViewHeadLeft table.uiContainer {
    display: inline-block;
    margin-left: 15px;
    margin-top: 10px;
    margin-bottom: -11px;
}
/*.elunicViewHeadLeft .eListItem .text {
    color: white;
}*/

.dynamicElement .kpiExtension {
    width: 115px;
    /*background: #fcfcfc;*/
    /*border-left: 1px solid #ededed;*/
    position: absolute;
    right: 10px;
    top: 30px;
    /*bottom: 0;*/
    z-index: 7;
    text-align: center;
}

.animating .dynamicElement .kpiExtension {
    display: none;
}

.dynamicElement .kpiExtension .kpi {
    width: 60px;
    margin: 0 auto 30px;
    position: relative;
    opacity: 0.8;
}

.dynamicElement .kpiExtension .kpi:hover {
    opacity: 1;
}

.dynamicElement .kpiExtension .kpi:last-child {
    margin-bottom: 0;
}

.dynamicElement .kpiExtension .kpi.large {
    width: 80px;
}

.dynamicElement .kpiExtension .kpiText {
    line-height: 60px;
    color: #0b6485;
    font-size: 17px;
    font-weight: bold;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
}

.dynamicElement .kpiExtension .kpi.large .kpiText {
    line-height: 80px;
    font-size: 20px;
}

.dynamicElement .kpiExtension .kpiTitle {
    margin-top: 5px;
}

.dynamicElement .kpiExtension .circlet {
    border-left: none;
    border-right: none;
}

.kpiExtensionActive .bodyOverflow {
    right: 105px;
    width: auto;
}

.dynamicButton.hasRemoteChanges .icon {
    border: 1px solid #FFF;
    width: 30px;
    border-radius: 7px;
    padding: 2px 0 0;
    margin-top: -2px;
    background: var(--color-red);
}


.callStackChart {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    z-index: 11;
}

.callStackChart td {
    vertical-align: top;
}

.redFont {
    color: #F44 !important;
}

.greenFont {
    color: #2FE52F !important;
}

.contentTabs {
    flex: 1 1 auto;
}

.animating .contentTabs {
    display: none;
}

/* still required? */
.activityTabs {
    width: 300px;
    flex: 0 0 auto;
    justify-content: center;
}

.elunicView {
    background: -webkit-linear-gradient(top,
        rgba(0,0,0,0.07) 66px,
        rgba(0,0,0,0.0) 150px
    );
    background: -moz-linear-gradient(top,
        rgba(0,0,0,0.07) 66px,
        rgba(0,0,0,0.0) 150px
    );
    background: linear-gradient(top,
        rgba(0,0,0,0.07) 66px,
        rgba(0,0,0,0.0) 150px
    );
}

.contextBox .filePreview.multipleFiles {
    display: block !important;
}
.contextBox .filePreview.multipleFiles .file {
    display: block;
    width: calc(100% - 18px);
}
.contextBox .filePreview.multipleFiles .file:not(:last-child) {
    margin-bottom: 30px;
    padding-bottom: 40px;
}
.contextBox .filePreview.multipleFiles .file .filename {
    font-size: 16px;
    margin: 5px 0;
}
.contextBox .filePreview.multipleFiles .file iframe {
    display: block;
    border: 1px solid #ccc;
    width: 100%;
    min-height: 300px;
}

@media only screen
and (max-width : 800px) {
    .optimizeViewIndicator {
        display: none !important;
    }
}

/* Because attempting to call a number from eAdmin fails due to z-index problems. */
.sipgateffx_pointer_wrapper {
    z-index: 150;
}

.bold,
.bold .uiValue {
    font-weight: 600 !important;
}

/* Kanban Dashboard */

.kanbanTable .mainTable {
    box-shadow: none !important;
    width: 100%;
}

.kanbanTable .mainTableCon {
    width: 100%;
}

.kanbanTable .elunicTable  {
    width: 100%;
}

/* Hide viewConfig and table head */
.kanbanTable .viewConfigSearchButton,
.kanbanTable thead
{
    display: none;
}

.kanbanTable .mainTable {
    min-width: 259px !important;
}

/* Hide all cells apart from the status one (which will be filled with the template) */
.kanbanTable td.tableRowCell {
    display: none;
}

.kanbanTable td.tableRowCell.kanbanCell {
    display: block;
    max-width: 100%;
    padding: 1em;
    /* Let the rows be as high as required */
    height: auto;
    white-space: initial;
    /*word-wrap: break-word;*/
}

/* Space a bit the rows */
.kanbanTable tr.kanbanRowSeparated {
    display: block;
    margin-bottom: 0.5em;
}

.kanbanTable td.kanbanCell table {
    width: 100%;
}

.kanbanTable td.kanbanCell .uiCirclet {
    padding: 1em;
}

.kanbanTable td.tableRowCell.kanbanCell i{
}

.kanbanGrid {
    padding-left: 10px;
    max-width: 99%
}

.red {
    color: var(--color-red);
}
.orange {
    color: var(--color-orange);
}
.green {
    color: var(--color-green);
}

body:not(.isAdmin) #footerIcons>*:not(.userVisible) {
    display: none;
}

body:not(.isAdmin) #footerIcons> :is(.iconFlag, #smallLoadingIndicator) {
    display: inline-block;
}

@media only screen
and (max-width : 800px) {
    .footerConnectionIndicatorContext {
        display: none !important;
    }
}

.errorIndicator .count {
    background: #fff;
    width: 13px;
    height: 13px;
    line-height: 13px;
    color: var(--color-red);
    font-size: 10px;
    font-weight: bold;
    position: absolute;
    border-radius: 50%;
    margin: 8px 0 0 -7px;
    text-align: center;
    border: 1px solid var(--color-red);
    font-family: sans-serif;
    z-index: 1;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
    content: "\f071" !important;
    color: var(--color-red) !important;
}

.elunicViewSubTitle {
    max-width: 400px;
    position: absolute;
    line-height: 22px;
    margin: 53px 0 0 5px;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.66;
}

#loading [id^='dot'] {
    animation: loadingspin 1.5s infinite cubic-bezier(0.75, 0.39, 0.08, 0.67);
    transform-origin: 50% 50%;
}
#loading  #dot1 {
    animation-delay: 0.2s;
}
#loading  #dot2 {
    animation-delay: 0.4s;
}
#loading  #dot3 {
    animation-delay: 0.6s;
}
@keyframes loadingspin {
    0% {
        transform: rotate(0deg);
    }
  
    to {
        transform: rotate(1turn);
    }
}
