﻿/* Fonts */
@font-face {
    font-family: "NunitoSans-Regular";
    src: url(../Fonts/NunitoSans-Regular.ttf);
}
@font-face {
    font-family: "NunitoSans-SemiBold";
    src: url(../Fonts/NunitoSans-SemiBold.ttf);
}
@font-face {
    font-family: "NunitoSans-Bold";
    src: url(../Fonts/NunitoSans-Bold.ttf);
}
@font-face {
    font-family: "NunitoSans-ExtraBold";
    src: url(../Fonts/NunitoSans-ExtraBold.ttf);
}

@font-face {
    font-family: "Exo-Regular";
    src: url(../Fonts/Exo-Regular.ttf);
}

@font-face {
    font-family: "OpenSans-Regular";
    src: url(../Fonts/OpenSans-Regular.ttf);
}

@font-face {
    font-family: "Poppins-Regular";
    src: url(../Fonts/Poppins-Regular.ttf);
}

/* CI */
:root {
    --artimer-dark-green: #009665;
    --artimer-mid-green: #00BB7E;
    --artimer-light-green: #63F494;
    --artimer-very-light-green: #CCF1E5;
    --artimer-font-gray: #29394C;
}

/* Body */
input, select {
    font-family: NunitoSans-Regular !important;
    font-size: 1em !important;
}

    input[type=text], input[type=password], input[type=number], input:not([type]), input[type=color] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: 0;
        border-radius: 4px;
        padding: 2px;
        background-color: #f3f3f3;
    }

    @supports not (-ms-high-contrast: none) {
        input[type=color] {
            border: 0px;
            border-radius: 4px;
        }
    }

    input[type=button] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: 0;
        border-radius: 6px;
        background-color: rgb(0,187,126);
        color: white;
        font-family: NunitoSans-ExtraBold;
        cursor: pointer;
    }

/* Scrollbar CSS Styling (chrome and ff) */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    ::-webkit-scrollbar {
        width: 10px !important;
        height: 10px !important;
    }

    ::-webkit-scrollbar-track {
        background-color: rgb(240,240,240);
    }

    ::-webkit-scrollbar-corner {
        background-color: unset;
    }

    ::-webkit-scrollbar-thumb {
        background-color: rgb(205,205,205);
    }

        ::-webkit-scrollbar-thumb:hover {
            background-color: rgb(166,166,166);
        }
}

@-moz-document url-prefix() {
    * {
        scrollbar-width: 10px !important;
    }
}

/* checkbox */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
    top: -100px;
}

    [type="checkbox"]:not(:checked) + label,
    [type="checkbox"]:checked + label {
        position: relative;
        padding-left: 20px;
        cursor: pointer;
    }

        /* checkbox aspect */
        [type="checkbox"]:not(:checked) + label:before,
        [type="checkbox"]:checked + label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 1em;
            height: 1em;
            border: 1px solid #ccc;
            background: #fff;
            border-radius: 3px;
        }
        /* checked mark aspect */
        [type="checkbox"]:not(:checked) + label:after,
        [type="checkbox"]:checked + label:after {
            content: '\2714\0020';
            position: absolute;
            top: 0.3em;
            left: 0.2em;
            font-size: 1.0em;
            line-height: 0.8;
            color: #09ad7e;
            transition: all .2s;
            font-family: 'Lucida Sans Unicode', 'Arial Unicode MS', Arial;
        }
        /* checked mark aspect changes */
        [type="checkbox"]:not(:checked) + label:after {
            opacity: 0;
            transform: scale(0);
        }

        [type="checkbox"]:checked + label:after {
            opacity: 1;
            transform: scale(1);
        }
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}

[type="checkbox"]:disabled:checked + label:after {
    color: #999;
}

[type="checkbox"]:disabled + label {
    color: #aaa;
}
/* accessibility */
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
    border: 1px solid #ccc;
    outline-offset: 1px;
    outline-color: rgb(16, 16, 16);
    outline-style: auto;
    outline-width: 1px;
}

/* Radio Button Styling */
input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    width: 14px;
    height: 14px;
    padding: 2px;
    background-clip: content-box;
    border: 1px solid #000000;
    opacity: 0.4;
    border-radius: 7px;
    vertical-align: bottom;
    background-color: white;
    margin: 0px 3px 3px 5px;
}

    input[type=radio]:checked {
        background-color: rgb(0,187,126);
        border: 1px solid rgb(0,187,126);
        opacity: 1;
    }

input[type="radio"]:checked::-ms-check {
    border: 1px solid rgb(0,187,126);
    color: rgb(0,187,126);
    opacity: 1;
    outline: dotted 1px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 2px 25px 2px 4px;
    background: white url(../Images/down_1.png) no-repeat calc(100% - 5px) 50%;
    background-size: 14px 14px;
}

    select::-ms-expand {
        display: none;
    }

    select:hover:focus, select:focus:not(:hover) {
        background-image: url("../Images/up_1.png");
        
    }

textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 4px;
    padding: 2px;
    background-color: #f3f3f3;
    border-width: 0px;
    padding: 2px;
    font-family: NunitoSans-Regular;
    font-size: 12.96px;
}

::-webkit-input-placeholder {
    font-family: NunitoSans-Regular;
}

:-moz-placeholder {
    font-family: NunitoSans-Regular;
}

::-moz-placeholder {
    font-family: NunitoSans-Regular;
}

:-ms-input-placeholder {
    font-family: NunitoSans-Regular;
}

/* GENERAL */

html, body {
    margin: 0px;
    padding: 0px;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    font-size: 0.8125rem !important;
    font-family: 'NunitoSans-Regular' !important;
}

    body > div.renderBody {
        height: calc(100% - 62px);
        width: 100%;
        background-color: white;
    }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    body > div.renderBody {
        height: calc(100% - 62px);
    }
}

.tooltip-inner {
    max-width: 600px !important;
}

div.base {
    white-space: nowrap;
    height: 100%;
    width: 100%;
}

    div.base > div {
        vertical-align: top;
        display: inline-block;
    }

        div.base > div.navigation {
            width: 230px;
            height: 100%;
            overflow-y: auto;
            background-color: rgb(73,89,105);
            box-shadow: rgba(0,0,0,0.4) 3px 3px 7px inset;
        }

        div.base > div.content {
            width: calc(100% - 253px);
            height: calc(100% - 20px);
            overflow: auto;
            background: white;
            padding-top: 20px;
            padding-left: 20px;
        }

        div.base > div.summary {
            overflow: hidden;
            overflow-y: auto;
            height: 100%;
            width: 199px;
            background-color: #F2F2F2;
        }

.ErrorMsg {
    font-size: 10pt;
    color: red;
}

.NoteMsg {
    font-size: 10pt;
}

/*JQuery UI*/

.ui-datepicker {
    font-size: 64% !important;
}

div#ui-datepicker-div a.ui-state-hover {
    border: 1px solid rgb(0,187,126);
}

div#ui-datepicker-div td.datepickerFreeDay .ui-state-hover {
    border: 1px solid rgb(200,100,100);
}

div#ui-datepicker-div a.ui-datepicker-next.ui-state-hover,
div#ui-datepicker-div a.ui-datepicker-prev.ui-state-hover {
    border: 0 !important;
}

.ui-widget {
    font-size: 80%;
}

    .ui-widget input, .ui-widget select {
        font-family: NunitoSans-Regular;
    }

.ui-accordion, .ui-accordion-content, .ui-accordion-icons {
    padding: 5px !important;
    overflow: hidden !important;
}

/* Accordion */

.accordion-headline {
    padding-left: 5px;
    margin-right: 5px;
    height: 12px;
    top: calc(50% - 6px);
    position: relative;
}

.Group > h3 > span.ui-accordion-header-icon.ui-icon-triangle-1-e,
.Favorites > h3 > span.ui-accordion-header-icon.ui-icon-triangle-1-e,
.Display > h3 > span.ui-accordion-header-icon.ui-icon-triangle-1-e,
.Export > h3 > span.ui-accordion-header-icon.ui-icon-triangle-1-e,
.Organigram > h3 > span.ui-accordion-header-icon.ui-icon-triangle-1-e {
    background-image: url(../Images/next_1.png);
    background-size: 14px;
    background-position: center center;
}

.Group > h3.ui-state-active > span.ui-accordion-header-icon.ui-icon-triangle-1-s.ui-icon,
.Favorites > h3.ui-state-active > span.ui-accordion-header-icon.ui-icon-triangle-1-s.ui-icon,
.Display > h3.ui-state-active > span.ui-accordion-header-icon.ui-icon-triangle-1-s.ui-icon,
.Export > h3.ui-state-active > span.ui-accordion-header-icon.ui-icon-triangle-1-s.ui-icon,
.Organigram > h3.ui-state-active > span.ui-accordion-header-icon.ui-icon-triangle-1-s.ui-icon {
    background-image: url(../Images/down_1.png);
    background-size: 14px;
    background-position: center center;
}


.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    background-color: #F2F2F2;
    background-image: none;
    border-color: #cecece;
}

.ui-widget-content {
    border: 1px solid #cecece;
}

.custom-combobox {
    position: relative;
    display: inline-block;
}

.custom-combobox-toggle {
    position: absolute;
    top: 0;
    bottom: 0;
    margin-left: -1px;
    padding: 0;
    border-radius: 0px;
    background-image: none;
    background-color: white;
    /*border-left: 0px;*/
    border-color: #CCCCCC;
}

    .custom-combobox-toggle:hover {
        background-image: none;
        background-color: white;
        border-color: #CCCCCC;
        /*border-left: 0px;*/
    }

.custom-combobox-input {
    margin: 0;
    padding: 0px 3px 0px 3px;
    background-color: white !important;
    border-radius: 0px;
    color: black;
    height: 18px;
    width: 5px;
    width: 219px !important;
    border-color: #CCCCCC !important;
}

.acNormal .custom-combobox-input {
    width: 140px !important;
}

.tsTable .custom-combobox-input {
    width: 190px !important;
    height: 16px;
}
.tsSubAT .custom-combobox-input, .tsPP .custom-combobox-input {
    width: 176px !important;
}
.tsAL .custom-combobox-input{
    width: 162px !important;
}
.tsManagedService .custom-combobox-input {
    width: 162px !important;
}

@-moz-document url-prefix() {
    .custom-combobox-input {
        width: 214px !important;
    }

    .acNormal .custom-combobox-input {
        width: 142px !important;
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .custom-combobox-input {
        width: 213px !important;
    }
}

.ui-button-icon {
    background-image: url(images/ui-icons_454545_256x240.png) !important;
}

.ui-autocomplete {
    z-index: 9999999;
    max-height: 350px;
    overflow-y: auto;
    overflow-x: hidden;
}

.ui-tooltip {
    box-shadow: 5px 5px 5px #888888;
}

.ui-menu .ui-menu-item {
    padding-right: 2px;
    white-space: nowrap;
}

/* Title */

div.title {
    background-color: rgb(0,187,126);
    height: 62px;
    width: 100%;
    white-space: nowrap;
}
    div.title > table {
        border-collapse: collapse;
        width: 100%;
    }
        div.title > table > tbody > tr > td {
            padding: 0;
        }

td.Logo {
    width: 230px;
    min-width: 230px;
    cursor: pointer;
}
    td.Logo > img {
        height: 62px;
        margin: 0 auto;
    }

td.Menu {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: white;
    white-space: nowrap;
    overflow-x: hidden;
    overflow-y: hidden;
    cursor: default;
    height: 62px;
}
    td.Menu > div {
        height: 62px;
        width: 0px;
        overflow-x: visible;
        display: inline-flex;
    }

td.RightHandMenu {
    width: 300px;
    min-width: 300px;
    height: 62px;
    color: white;
    user-select: none;
}
    td.RightHandMenu div > img {
        height: 24px;
        width: 24px;
    }
    td#baseWhoAmI {
        max-width: 230px;
        text-align: right;
        font-size: 0.9em;
        padding-right: 10px;
        line-height: 0;
        overflow-x: clip;
        text-overflow: ellipsis;
    }

div#btnMessages {
    position: relative;
}
div#btnMessagesUnreadIcon {
    display: none;
    position: absolute;
    background-color: rgb(249,174,54);
    height: 12px;
    width: 12px;
    border-radius: 50%;
    float: left;
    z-index: 100;
    right: -4px;
    bottom: 4px;
    border: 1px solid white;
    text-align: center;
    line-height: 13px;
    font-size: 9px;
}

div.title > table div.Tab {
    padding: 20px 0px 22px 0px;
    margin-left: 15px;
    margin-right: 15px;
    cursor: pointer;
    font-family: NunitoSans-SemiBold;
    font-size: 14px;
    margin-bottom: -20px;
}
div.title > table div.Tab.deactivated {
    cursor: initial;
}
    div.Tab[data-url=TimeSheet],
    div.Tab[data-url=TimeMgmt],
    div.Tab[data-url=Configuration],
    #titleMenuDropdown > table td[data-url=TimeSheet],
    #titleMenuDropdown > table td[data-url=TimeMgmt],
    #titleMenuDropdown > table td[data-url=Configuration]
    {
        color: #29394C;
    }

#titleMenuDropdown {
    padding-top: 24px;
}
#titleMenuDropdown:first-child {
    padding-left: 20px;
}
    #titleMenuDropdown > span {
        cursor: pointer;
        font-family: NunitoSans-SemiBold;
        font-size: 14px;
        vertical-align: middle;
    }
    #titleMenuDropdown > span.selected {
        padding-bottom: 12px;
        border-bottom: 6px solid white;
    }

#titleMenuDropdown > table {
    position: absolute;
    background-color: #00bb7e;
    top: 62px;
    box-shadow: 1px 1px 2px 0px #cdcdcd;
    z-index: 110;
    padding: 0px 10px 10px 10px;
}
    #titleMenuDropdown > table td {
        padding: 5px 15px 5px 15px;
        font-size: 14px;
        cursor: pointer;
    }
        #titleMenuDropdown > table td.selected{
            padding-bottom: 2px;
            border-bottom: 3px solid white;
        }
        #titleMenuDropdown > table td.selected[data-url=TimeSheet],
        #titleMenuDropdown > table td.selected[data-url=TimeMgmt],
        #titleMenuDropdown > table td.selected[data-url=Configuration] {
            border-bottom-color: #29394C;
        }

    div.TabSeparator {
        border-style: outset;
        border-color: #e0e0e0;
        border-width: 0px 1px 0px 0px;
        height: 20px;
        margin-bottom: -3px;
    }

div.Separator {
    width: 30px;
}

div.TabIcon {
    cursor: pointer;
    margin-left: 4px;
    margin-right: 4px;
}

#selectLanguage > select {
    height: 20px;
    color: white;
    background: url(../Images/down_white_1.png);
    background-position-y: center;
    background-repeat: no-repeat;
    background-position-x: calc(100% - 4px);
    background-size: 14px;
    border: 0;
    border-radius: unset;
    font-family: 'NunitoSans-SemiBold' !important;
    font-weight: normal;
    vertical-align: middle;
    background-color: rgb(44 53 63 / 25%);
    border-radius: 4px;
    outline: 2px solid #2f3640;
    min-width:80px;
}
    #selectLanguage > select:focus {
        outline-color: #aaaaaa;
        outline-width: 2px;
        outline-style: solid;
        border-radius: 4px;
        background-image: url(../Images/up_white_1.png);
    }

@-moz-document url-prefix() {
    #selectLanguage > select {
        padding-right: 12px;
    }
}

span.Selected {
    color: white;
    padding-bottom: 15px;
    border-bottom: 6px solid white;
}
@-moz-document url-prefix() {
    span.Selected {
        padding-bottom: 16px;
    }
}

div.Tab[data-url=TimeSheet] > span.Selected,
div.Tab[data-url=TimeMgmt] > span.Selected,
div.Tab[data-url=Configuration] > span.Selected {
    color: #29394C;
    border-bottom: 6px solid #29394C;
}

/* NAVIGATION*/
div.navigation img {
    cursor: pointer;
    margin-top: 2px;
    margin-right: 5px;
    width: 12px;
    height: 12px;
}

div.navigation div.content {
    padding-left: 25px;
    padding-right: 25px;
    color: white;
}

div.navigation div.header,
div.navigation div.headerStatic {
    font-family: 'NunitoSans-Bold';
    font-weight: normal;
    display: flex;
    margin-top: 20px;
    margin-bottom: 5px;
    margin-left: 20px;
    cursor: pointer;
    color: rgb(0,187,126);
}

div.navigation div.menu {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    list-style-type: none;
    padding: 5px;
    padding-left: 40px;
    padding-right: 30px;
    cursor: pointer;
    border-color: transparent;
    border-style: solid;
    border-width: 1px;
    color: white;
}
    div.navigation div.menu.iconMenu {
        background-size: 14px;
        background-repeat: no-repeat;
        background-position-y: 6px;
        background-position-x: 40px;
        padding-left: 60px;
    }

    div.navigation div.menu:hover {
        background-color: rgb(68,79,90);
    }

    div.navigation div.menu.selected {
        background-color: rgb(58,69,80);
        border-right: 4px solid rgb(0,187,126);
        font-family: NunitoSans-SemiBold;
    }

div.navigation table {
    border-spacing: 0;
    border-collapse: separate;
}

    div.navigation table td {
        white-space: nowrap;
    }

div.navigation input[type=radio] {
    margin-left: 0;
}

/* SUB-PAGE TABS */
div.content > div.subContentTabs {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 48px);
    min-width: 465px !important;
    background-color: #F2F2F2;
    border-width: 0px;
    border-color: #aaa;
    border-radius: 4px;
    padding-left: 15px;
    padding-top: 10px;
    margin-left: 4px;
}

    div.content > div.subContentTabs > div.subContentTabHeader {
        border-bottom: 3px solid transparent;
        margin: 0px 20px 10px 0px;
        font-family: NunitoSans-Bold;
        cursor: pointer;
    }

        div.content > div.subContentTabs > div.subContentTabHeader.selected {
            border-color: rgb(0,186,127);
        }

/* DIALOGS */

.EditWindow {
    z-index: 500;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    position: absolute;
    background-color: rgba(19, 19, 19, 0.52);
    color: #aaaaaa;
    overflow: hidden;
    -ms-scroll-limit: 0 0 0 0;
    position: fixed;
}

.EditWindowContent {
    position: absolute;
    color: #000000;
    background-color: #ffffff;
    opacity: 1;
    border-radius: 5px;
    box-shadow: 5px 5px 5px #888888;
    top: 50%;
    left: 50%;
}
    .EditWindowContent.EditWindowContentResponsive {
        /* defaults: override! */
        --dlg-gap: 80px;
        --dlg-max-w: 800px;
        --dlg-min-w: 400px;
        --dlg-max-h: 400px;
        --dlg-min-h: 300px;
        width: calc(100vw - var(--dlg-gap));
        max-width: var(--dlg-max-w);
        min-width: var(--dlg-min-w);
        height: calc(100vh - var(--dlg-gap));
        max-height: var(--dlg-max-h);
        min-height: var(--dlg-min-h);
        margin-left: calc(clamp(calc(var(--dlg-min-w) / 2), calc((100vw - var(--dlg-gap)) / 2), calc(var(--dlg-max-w) / 2)) * -1);
        margin-top: calc(clamp(calc(var(--dlg-min-h) / 2), calc((100vh - var(--dlg-gap)) / 2), calc(var(--dlg-max-h) / 2)) * -1);
    }

.DialogHeader {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    left: 4px;
    color: rgb(0,187,126);
    font-family: NunitoSans-ExtraBold;
    font-size: 14px;
    height: 20px;
    border-radius: 8px 8px 0 0;
    padding: 10px;
    cursor: grab;
    display: flex;
    width: Calc(100% - 30px);
    border-bottom: 2px solid rgb(242,242,242);
}

.DialogHeaderCloseButton {
    height: 0px;
    width: 0px;
    padding: 8px;
    background: url(../Images/close_1.png);
    position: absolute;
    border-radius: 2px;
    right: 11px;
    top: 11px;
    cursor: pointer;
}

.DuplicateWarning {
    height: 20px;
    width: auto;
    padding: 0px;
    margin: 0px;
    position: absolute;
    right: 50px;
    top: 10px;
    border-radius: 0px;
    color: rgb(249,169,50);
    font-family: NunitoSans-ExtraBold;
    font-size: 14px;
}

.DuplicateWarningSymbol {
    height: 12px;
    width: 12px;
    padding: 0px;
    background: url(../Images/warning_1.png);
    background-size: cover;
    position: absolute;
    top:3px;
    right: 60px;
}

.DialogFooter {
    border-radius: 0 0 8px 8px;
    text-align: center;
    padding: 10px;
    border-top: 2px solid rgb(242,242,242);
    width: Calc(100% - 30px);
    position: relative;
    left: 6px;
}

#MessageBoxWindow .DialogFooter {
    text-align: center;
}

.DialogFooter input:not([type=checkbox]) {
    margin-right: 5px;
    margin-left: 5px;
    margin-bottom: 10px;
    padding: 7px;
    padding-left: 20px;
    padding-right: 20px;
    min-width: 75px;
    vertical-align: top;
    letter-spacing: 0.05em;
    font-family: NunitoSans-ExtraBold !important;
}

.DialogFooter input[disabled]:not([type=checkbox]) {
    background-color: rgb(240,240,240);
    color: rgb(73,89,105);
    cursor: default;
}

.DialogContent {
    background-color: white;
    padding-bottom: 10px;
    padding: 20px;
    height: calc(100% - 143px);
}

.EditWindowContent > .DialogContent::after {
    opacity: 0;
    transition: 0.250s opacity ease;
}
    .EditWindowContent > .DialogContent.loading {
        position: relative;
    }
        .EditWindowContent > .DialogContent.loading::after {
            background-color: #cecece6b;
            height: calc(100% - 8px);
            width: calc(100% - 8px);
            top: 4px;
            left: 4px;
            border-radius: 4px;
            content: ' ';
            display: block;
            position: absolute;
            background-image: url(../../Resources/Images/loading.gif);
            background-position: center;
            background-size: 48px;
            background-repeat: no-repeat;
            opacity: 1.0;
            transition: 0.250s opacity ease;
        }

#ExternalLinkMessageBoxWindow .DialogFooter input[type="button"] {
    margin-right: 5px;
    margin-left: 5px;
    margin-bottom: 5px;
    padding: 3px;
    padding-left: 10px;
    padding-right: 10px;
    min-width: 75px;
    vertical-align: top;
    letter-spacing: 0.05em;
    font-family: NunitoSans-ExtraBold !important;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .DialogContent {
        height: calc(100% - 141px);
    }
}

@-moz-document url-prefix() {
    .DialogContent {
        height: calc(100% - 140px);
    }
}

.tabForm table {
    margin-right: 20px;
}

.tabForm > tbody > tr > td {
    vertical-align: top;
    padding-right: 10px;
}

.tabForm td {
    vertical-align: top;
    white-space: nowrap;
}

.PwdChangeEditWindowContent {
    width: 750px;
    height: 340px;
    margin-top: -170px;
    margin-left: -375px;
}
#pcRemLinkedGoogle, #pcRemLinkedMicrosoft
{
    width: 14px;
    height: 14px;
    cursor: pointer;
}



.PwdChangeEditWindowContent .verticalTabSeperator {
    border-left: 1px solid #cecece;
    height: 100%;
    width: 1px;
}

    .PwdChangeEditWindowContent #pcLinkedAccountsList {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 100%;
    }

        .PwdChangeEditWindowContent #pcLinkedAccountsList > div {
            width: 100%;
            border-radius: 3px;
            border: 1px solid #f2f2f2;
        }

            .PwdChangeEditWindowContent #pcLinkedAccountsList > div table {
                width: 100%;
            }

                .PwdChangeEditWindowContent #pcLinkedAccountsList > div table td:first-child,
                .PwdChangeEditWindowContent #pcLinkedAccountsList > div table td:last-child {
                    width: 1px;
                }
                .PwdChangeEditWindowContent #pcLinkedAccountsList > div table td{
                    padding: 2px;
                }

        .PwdChangeEditWindowContent #pcLinkedAccountsList img {
            height: 16px;
            width: 16px;
        }
        .PwdChangeEditWindowContent #pcLinkedAccountsList > div table td:last-child img {
            cursor: pointer;
        }
        .PwdChangeEditWindowContent #pcLinkedAccountsList div.address-info {
            text-overflow: ellipsis;
            max-width: 170px;
            width: 170px;
            overflow-y: clip;
            margin: 0;
            padding: 0;
        }

    .PwdChangeEditWindowContent #pcAddLinkedAccountSeperator {
        display: flex;
        gap: 5px;
        vertical-align: middle;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        font-style: italic;
        color: #3f3f3f;
    }
        .PwdChangeEditWindowContent #pcAddLinkedAccountSeperator > .line {
            border-top: 1px solid #cecece;
            height: 1px;
            width: 100%;
        }

    .PwdChangeEditWindowContent .tabForm > tbody > tr > td:first-child {
        width: 370px;
    }
    .PwdChangeEditWindowContent .tabForm tr > td:last-child > table {
        margin: 0;
    }

    .PwdChangeEditWindowContent #pcAddLinkedAccountList {
        display: flex;
        flex-direction: row;
        gap: 5px;
        width: 100%;
    }
        .PwdChangeEditWindowContent #pcAddLinkedAccountList > div {
            cursor: pointer;
        }
        .PwdChangeEditWindowContent #pcAddLinkedAccountList > div table {
            width: 100%;
        }
            .PwdChangeEditWindowContent #pcAddLinkedAccountList > div table td:first-child,
            .PwdChangeEditWindowContent #pcAddLinkedAccountList > div table td:last-child {
                width: 1px;
                top: 2px;
                position: relative;
            }

.PwdChangeEditWindowContent #totpCheck,
.PwdChangeEditWindowContent #totpSetupWarning {
    height: 16px;
    width: 16px;
}

/* TOTP SETUP WINDOW */
.TotpSetupEditWindowContent {
    width: 420px;
    height: 620px;
    margin-top: -310px;
    margin-left: -210px;
}

.TotpSetupEditWindowContent #totpQrCode {
   text-align: center;
}

.TotpSetupEditWindowContent #totpQrCode > img {
    margin: auto;
    border: 5px solid white;
    width: 256px;
    height: 256px;
}

    .TotpSetupEditWindowContent .totpSetupInfoText {
        background-color: #f2f2f2;
        border-radius: 4px;
        padding: 4px;
    }

    .TotpSetupEditWindowContent .totpSetupInputContainer {
        border-radius: 4px;
        border: 2px solid #f2f2f2;
    }
        .TotpSetupEditWindowContent .totpSetupInputContainer > table {
            width: 100%;
        }

    .TotpSetupEditWindowContent #totpCopyResetPw {
        cursor: pointer;
        width: 14px;
        height: 14px;
    }

.TotpDisableEditWindowContent {
    width: 460px;
    height: 280px;
    margin-top: -100px;
    margin-left: -230px;
}
    .TotpDisableEditWindowContent .totpDisableInfoText {
        white-space: normal;
    }

/* FEEDBACK Window */
.FeedbackEditWindowContent {
    width: 450px;
    height: 600px;
    margin-top: -300px;
    margin-left: -275px;
}

.FeedbackEditWindowContent .headerLine {
    display: inline-flex;
}

    .FeedbackEditWindowContent .headerLine > div {
        padding-right: 4px;
    }

.SupportEditWindowContent {
    width: 690px;
    height: 415px;
    margin-top: -207px;
    margin-left: -345px;
}

    .SupportEditWindowContent .suppSpacer {
        width: 20px;
    }

    .SupportEditWindowContent #suppFileDelete {
        height: 16px;
        width: 16px;
        padding-top: 2px;
    }

.MessageBoxEditWindowContent {
    min-width: 250px;
    margin-top: -100px;
    margin-left: -200px;
}

div.MessageBoxEditWindowContent.iframe {
    margin-left: -400px;
    margin-top: -330px;
    width: 800px;
    height: 661px;
}

.MessageBoxEditWindowContent img {
    margin-right: 10px;
}

.ManualsEditWindowContent {
    width: 260px;
    height: 300px;
    margin-left: -130px;
    margin-top: -150px;
}

#ManualsWindow a {
    color: black;
    margin: 0px 20px 0px 20px;
}

#ManualsWindow .DialogContent {
    overflow-y: auto;
}

.VideoTutorialsEditWindowContent {
    width: 1200px;
    height: 740px;
    margin-left: -600px;
    margin-top: -370px;
}

#VideoTutorialsWindow a {
    color: black;
    margin: 0px 20px 0px 20px;
}

#VideoTutorialsWindow .tutorialVideosTabRow {
    display: flex;
    flex-wrap: wrap;
    max-width: 760px;
}

    #VideoTutorialsWindow .tutorialVideosTabRow > .tutorialVideosTabHeader {
        border-bottom: 3px solid transparent;
        margin: 0px 20px 10px 0px;
        font-family: NunitoSans-Bold;
        cursor: pointer;
    }

        #VideoTutorialsWindow .tutorialVideosTabRow > .tutorialVideosTabHeader.selected {
            border-color: rgb(0,186,127);
        }

#VideoTutorialsWindow .tutorialVideosCategoryTab {
    display: none;
    height: 580px;
    overflow-x: hidden;
    overflow-y: scroll;
}

    #VideoTutorialsWindow .tutorialVideosCategoryTab.selected {
        display: block;
    }

    #VideoTutorialsWindow .tutorialVideosCategoryTab > table td {
        vertical-align: top;
    }

    #VideoTutorialsWindow .tutorialVideosCategoryTab > table th {
        text-align: left;
        padding-right: 15px;
    }
#VideoTutorialsWindow .VideoTutorial {
    margin: 5px;
    width: 218px;
    min-height: 320px;
    display: inline-block;
    position: relative;
    vertical-align: top;
    border-color: #3c3c3c;
    box-shadow: 0px 1px 2px 0px #bfbfbf;
    overflow: hidden;
    border-radius: 4px;
}
    #VideoTutorialsWindow .VideoTutorial img.preview {
        width: 218px;
        display:block;
        margin-left: auto;
        margin-right: auto;
        cursor:pointer;
    }
    #VideoTutorialsWindow .VideoTutorial img.clock {
        width: 16px;
        height: 16px;
        position: absolute;
        bottom: 30px;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
    }
    #VideoTutorialsWindow .VideoTutorial p {
        margin: 5px;
        margin-left: 10px;
        margin-right: 10px;
    }
    #VideoTutorialsWindow .VideoTutorial span.title {
        font-weight:bold;
        display: block;
        text-align:center;
    }
    #VideoTutorialsWindow .VideoTutorial span.category {
        font-weight: lighter;
        display: block;
        text-align: center;
    }
    #VideoTutorialsWindow .VideoTutorial span.duration {
        position: absolute;
        bottom:10px;
        left:0;
        right:0;
        font-weight: lighter;
        text-align: center;
        
    }
.VideoTutorialEditWindowContent {
    width: 1000px;
    height: 700px;
    margin-left: -500px;
    margin-top: -350px;
}

#VideoTutorialWindow .DialogContent video {
    display:block;
    margin-left:auto;
    margin-right:auto;
    width:100%;
}
#VideoTutorialWindow .DialogContent p {
    margin-top:0px;
}
#VideoTutorialsWindow .DialogContent img.loading {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#NewsWindow a {
    color: black;
    margin: 0;
    text-decoration: underline;
    text-decoration-color: #00bb7e;
    font-weight: bold;
}
#NewsWindow .newsheadline {
    color: black;
    margin: 0;
    font-weight: bold;
}
#NewsWindow .ytpic {
    position: relative;
    top: 0;
    left: 0;
}
#NewsWindow .ytoverlay {
    position: absolute;
    width:25px;
    height:25px;
    bottom: 5px;
    right: 5px;
}
#NewsWindow .newsdatetime {
    float:right;
    font-weight:normal;
}
.NewsEditWindowContent {
    width: 900px;
    height: 600px;
    margin-left: -600px;
    margin-top: -300px;
}
#NewsWindow .DialogContent {
    overflow-y: auto;
}

#NewsWindow .DialogContent td {
    padding: 2px;
}

#NewsWindow .DialogContent table {
    width: 860px;
    border-spacing: 10px 10px;
}

.NewsWindowTd {
    width: 120px;
}

/* Custom Combobox */

.custom-combobox > input.custom-combobox-input {
    border-radius: 4px 0px 0px 4px;
}

.custom-combobox > a.custom-combobox-toggle {
    width: 20px;
    border-radius: 0px 4px 4px 0px;
}

/* Basic Inputs */

input[type=text], input[type=password], input.normal, input:not([type]) {
    width: 169px;
}

input.smallXS {
    width: 15px;
    margin-right: 3px;
}

input.small {
    width: 30px;
    margin-right: 3px;
}

input.smallXL {
    width: 40px;
    margin-right: 3px;
}

input.mediumXS {
    width: 50px;
}

input.medium {
    width: 70px;
}

input.mediumXL {
    width: 130px;
}

input.large {
    width: 241px;
}

input.left, td.left, th.left {
    text-align: left;
}

input.right, td.right, th.right, select.right, option.right {
    text-align: right;
}
td.right > label{
    float: right;
}

input.center, td.center, th.center {
    text-align: center;
}

input.readOnly {
    pointer-events: none;
}

label {
    display: block;
}

input[type=checkbox] {
    margin: 5px 5px 2px 0;
    vertical-align: bottom;
}

    input[type=checkbox].withLabel {
        margin-right: 0px;
    }

select.medium {
    width: 74px;
}
select.mediumL {
    width: 96px;
}
select.mediumXL {
    width: 134px;
}

select.normal {
    width: 173px;
}

select.large {
    width: 245px;
}

@-moz-document url-prefix() {
    select {
        max-height: 21px;
    }

        select.large {
            width: 247px !important;
        }

        select.normal {
            width: 175px !important;
        }

    input[type=text], input[type=password], input.normal, input:not([type]) {
        max-height: 15px;
    }

    input.ui-widget.ui-widget-content {
        max-height: 21px;
    }
}

.navigation select.medium {
    width: 150px;
}

textarea {
    resize: none;
    width: 365px;
}

    textarea.gray {
        background-color: #F2F2F2;
    }

.bold {
    font-weight: bold;
}

iframe {
    width: 0;
    height: 0;
}

table.slim {
    border-spacing: 0;
    border-collapse: collapse;
    font-size: 12.96px;
}

    table.slim td {
        padding: 0px;
        padding-top: 1px;
    }

/* Filter */
.Filter.ui-accordion .ui-accordion-content {
    overflow:visible !important;
}

div.tabFilter {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

    div.tabFilter > div,
    #filterTime,
    #filterMonthTime,
    #filterWeekTime,
    #filterDayTime,
    #filterLastACAmount,
    #filterDurationInDays,
    #filterTargetDeviationRange {
        padding: 6px;
        background-color: rgb(248,248,248);
        border: 1px solid rgb(234,234,234);
        border-radius: 10px;
        margin: 4px;
        display: none;
    }

    div.tabFilter > div.popupFilterItem {
        height: 17px;
        width: 180px;
        border-radius: 3px;
        position: relative;
    }
        div.tabFilter > div.popupFilterItem > .header {
            cursor: pointer;
            width: 100%;
        }
            div.tabFilter > div.popupFilterItem > .header > img {
                position: absolute;
                right: 7px;
                top: calc(50% - 7px);
            }

@keyframes dropdownAnim{
    0% {
        opacity: 0;
        width: 100%;
    }
    100% {
        opacity: 1;
        width: 125%;
    }
}

div.filterDropdown.show {
    animation: dropdownAnim 0.1s ease forwards;
    display: block;
}

div.filterDropdown {
    min-width: 230px;
    background-color: #e6e6e6;
    position: absolute;
    top: 0px;
    left: 0px;
    min-width: 100%;
    z-index: 110;
    border: 1px solid #cecece;
    box-shadow: 0px 1px 2px grey;
    display: none;
    border-radius: 4px;
}
    div.filterDropdown > .header {
        width: 100%;
        background-color: #e6e6e6;
        border-radius: 4px 4px 0px 0px;
    }
        div.filterDropdown > .header > table {
            width: 100%;
            padding: 5px;
            border-radius: 4px 4px 0px 0px;
        }
        div.filterDropdown > .header .search {
            width: calc(100% - 6px);
        }
            div.filterDropdown > .header .search:focus {
                outline-color: #cecece;
            }

    div.filterDropdown > .CBList {
        height: 196px;
        overflow-x: hidden;
        overflow-y: auto;
        background-color: #F2F2F2;
        padding: 5px;
    }
    div.filterDropdown .CBListCharHeader > td {
        padding: 2px;
    }
    div.filterDropdown > .CBList tr:not(.CBListCharHeader) > td {
        border-top: 1px solid #cecece;
        border-bottom: 1px solid #cecece;
        background-color: white;
        padding: 4px 0px 4px 0px;
        width: 100%;
    }
        div.filterDropdown > .CBList tr:not(.CBListCharHeader) > td:first-of-type {
            width: 25px;
            padding-left: 5px;
            height: 16px;
        }
    div.filterDropdown > .CBList > table {
        width: 100%;
        padding: 3px;
        border-spacing: 0;
        border-collapse: collapse;
    }
    div.filterDropdown > .CBList input[type=checkbox] {
        margin: 1px 5px 1px 0;
        vertical-align: bottom;
    }
    div.filterDropdown > .footer {
        width: 100%;
        height: 28px;
    }
        div.filterDropdown > .footer > input:not([type=checkbox]):not([type=radio]) {
            width: calc(100% - 6px);
            border-radius: 0px;
            margin: 3px;
            border: 0;
        }


#filterVacationLegend div.filterDropdown.show {
    width: 360px !important;
}
#filterVacationLegend .content {
    width: 350px;
}

div#filterSerialAndTopCombined div {
    display: none;
}

.Filter span.header,
.Filter div.header {
    font-family: NunitoSans-ExtraBold;
    color: black;
    font-size: 12.96px;
    display: inline-flex;
}

div#filterContent {
}

.Filter > * {
    background-color: rgb(242,242,242);
}

.Filter > h3 {
    height: 22px;
    font-family: NunitoSans-ExtraBold;
}

    .Filter > h3 > span.ui-accordion-header-icon {
        position: relative;
        margin-top: -16px;
        top: 50%;
        left: 0;
        margin-left: 4px;
    }

    .Filter > h3 > span.ui-accordion-header-icon.ui-icon-triangle-1-e {
        background-image: url(../Images/next_1.png);
        background-size: 14px;
        background-position: center center;
    }
        .Filter > h3.ui-state-active > span.ui-accordion-header-icon.ui-icon-triangle-1-s.ui-icon {
            background-image: url(../Images/down_1.png);
            background-size: 14px;
            background-position: center center;
        }


    .Filter > h3 > span.filterActionButtons {
        position: absolute;
        right: 10px;
        vertical-align: middle;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

span#filterSave {
    color: rgb(0,187,126);
    font-family: NunitoSans-ExtraBold;
    text-decoration: underline;
}

.Filter img {
    cursor: pointer;
    width: 14px;
    height: 14px;
}

.Filter td {
    vertical-align: top;
}

.tabFilter #filterMonthTime img,
.tabFilter #filterWeekTime img,
.tabFilter #filterDayTime img {
    margin-top: 3px;
}

.tabFilter td span.header {
    margin-left: 2px;
    font-weight: normal;
}

.tabFilter td .checkImg {
    float: right;
    margin-right: 2px;
    margin-left: 3px;
}

.tabInner td {
    padding-right: 0;
    padding-bottom: 5px;
}

    .tabInner td input[type=checkbox] {
        margin: 3px 3px 1px 5px;
    }


.CBListInspect {
    width: 127px;
    margin-left: 5px;
    height: 100px;
    overflow-y: auto;
}

.Filter div {
    white-space: normal;
}

.Filter {
    font-family: NunitoSans-Regular !important;
    font-size: 12px;
    margin-bottom: 5px;
    overflow: visible !important;
    min-width: 480px !important;
    margin-right: 23px;
}

    .Filter input:not([type=checkbox]):not([type=radio]) {
        border: 1px solid #ececec;
    }

#filterTime {
    min-width: 210px;
}

#filterLastACAmount,
#filterDurationInDays {
    min-width: 145px;
}

#filterTargetDeviationRange {
    min-width: 175px;
}

.Filter > h3 > img {
    margin-right: 5px;
    margin-bottom: -2px;
}

.SaveFilterEditWindowContent {
    width: 350px;
    height: 200px;
    margin-top: -100px;
    margin-left: -175px;
}

#filterOpen {
    width: 75px;
}

input#filterTop {
    background-color: white;
}

input#filterFrom, input#filterTo,
input#filterLastVal, input#filterMonth, input#filterWeek,
input#filterDay, input#filterStatusFrom,
input#filterStatusTo, input#filterExpMonths, input#filterExpThreshold,
input#filterSerialNumber, input#filterTextString,
input#filterLastACAmountGreaterThan, input#filterLastACAmountSmallerThan,
input#filterDurationInDaysGreaterThan, input#filterDurationInDaysSmallerThan,
input#filterTargetDeviationRangeGreaterThan, input#filterTargetDeviationRangeSmallerThan {
    background-color: white;
}

.valueFilterRow {
    display: block;
    padding-top: 6px;
    vertical-align: middle;
}

.valueFilterRow td {
    white-space: nowrap;
}

#filterLastACAmountGreaterThan, #filterLastACAmountSmallerThan,
#filterDurationInDaysGreaterThan, #filterDurationInDaysSmallerThan,
#filterTargetDeviationRangeGreaterThan, #filterTargetDeviationRangeSmallerThan {
    margin-top: -4px;
}

div.tabFilter > div > div.header > label {
    margin-left: 3px;
}

@keyframes folIn {
    from {
        opacity: 0.0;
    }
    to {
        opacity: 1.0;
    }
}

.filterOverviewList {
    display: inline-flex;
    flex-wrap: wrap;
    max-height: 200px;
    overflow-y: auto;
    margin-right: 35px;
    margin-left: 5px;
    margin-bottom: 20px;
}
    .filterOverviewList > div {
        padding: 5px;
        background-color: #f2f2f2;
        margin-right: 10px;
        margin-bottom: 5px;
        animation: folIn 0.1s ease-in-out normal;
        border-radius: 4px;
        -ms-user-select: none;
        user-select: none;
    }
        .filterOverviewList > div > img {
            top: 2px;
            position: relative;
            margin-left: 6px;
            height: 12px;
            cursor: pointer;
        }

.CBList tr.hide {
    display: none;
}

#fGrid {
    display: grid;
    align-items: stretch;
    justify-items: stretch;
    justify-content: start;
}

#filterTime {
    grid-row: 1 / span 1;
    grid-column: 1 / span 1;
}
#filterMonthTime {
    grid-row: 1 / span 1;
    grid-column: 2 / span 1;
}
#filterWeekTime {
    grid-row: 1 / span 1;
    grid-column: 3 / span 1;
}
#filterDayTime {
    grid-row: 1 / span 1;
    grid-column: 4 / span 1;
}
#filterLastACAmount {
    grid-row: 1 / span 1;
    grid-column: 5 / span 1;
}
#filterDurationInDays {
    grid-row: 1 / span 1;
    grid-column: 6 / span 1;
}
#filterTargetDeviationRange {
    grid-row: 1 / span 1;
    grid-column: 7 / span 1;
}

/* Sortables */
.connectedSortable, .unconnectedSortable {
    min-height: 20px;
    list-style-type: none;
    margin-left: 0;
    padding: 1px;
    background-color: #F2F2F2;
    margin-top: 0;
    border-radius: 4px;
}

    .connectedSortable li, .unconnectedSortable li {
        background-color: white !important;
        border-color: lightgray;
        padding: 3px 5px;
        border-style: solid !important;
        border-width: 1px !important;
        margin: 3px;
        cursor: pointer;
        word-wrap: break-word;
        word-break: break-word;
        white-space: normal;
    }

#sortableFavorites li {
    cursor: pointer;
}

.ui-state-default {
    white-space: nowrap;
}

    .ui-state-default > table {
        width: 100%;
        border-spacing: 0;
        border-collapse: separate;
    }

/* datepicker */
.datepickerFreeDay > a {
    background-color: #FFF0F0 !important;
    color: red !important;
}


/* Versions */

#addVer {
    margin-left: 5px;
    margin-top: 5px;
}

.ImgCell {
    min-width: 14px;
}

tr.VerRow:hover {
    background-color: #E0E0E0;
}

tr.VerRow.selected {
    background-color: #B9DEB9;
}

#tabVersions, #aAssigned, #aNotAssigned {
    border-spacing: 0;
    border-collapse: separate;
}

#tabVersions {
    margin-right: 20px;
}

    #tabVersions > tbody > tr > td {
        padding: 5px;
    }

    #tabVersions tbody > tr > td.firstCell {
        border-radius: 2px 0 0 2px;
    }

    #tabVersions tbody > tr > td.lastCell {
        border-radius: 0 2px 2px 0;
    }

div.vtCell {
    overflow-y: auto;
    overflow-x: hidden;
}

/* tabForm */
div.tabForm {
    display: table;
}

    div.tabForm > div.tr {
        display: table-row;
    }

        div.tabForm > div.tr > div.td {
            display: table-cell;
            vertical-align: top;
        }

/* loading Block Window */
div#LoadingWindow {
    position: absolute;
    z-index: 9999999;
    background-color: rgba(19, 19, 19, 0.52);
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: none;
}

    div#LoadingWindow > table {
        background-color: rgb(242,242,242);
        border-radius: 5px;
        height: 200px;
        width: 330px;
        position: absolute;
        margin-top: -100px;
        margin-left: -165px;
        top: 50%;
        left: 50%;
        text-align: center;
        padding: 10px;
    }

    div#LoadingWindow img {
        height: 100px;
    }

/* password strength table */
table.artpassword {
    border-spacing: 0;
}

    table.artpassword td {
        color: #d01853;
    }

        table.artpassword td.artpasswordbar > div {
            background-color: #d01853;
        }

td.artpasswordbar > div {
    height: 2px;
    width: 173px;
}

/* sidebar navigation settings panel */
div.menuHideOptions {
    position: absolute;
    left: -10px;
    top: 63px;
    height: 1px;
    width: 230px;
}

    div.menuHideOptions > img {
        height: 20px;
        width: 20px;
        position: absolute;
        right: 7px;
        top: 4px;
    }

div.MenuHideOptionsWindowContent {
    height: 500px;
    width: 330px;
    margin-top: -250px;
    margin-left: -175px;
}

#mhoList {
    height: 365px;
    width: 290px;
    overflow-y: auto;
}

    #mhoList td > div > label {
        margin-top: -8px;
    }

td.mhoListHeader {
    color: rgb(0,187,126);
    font-weight: bold;
    border-bottom: 1px solid;
}

div.menu.hiddenMenu, div.header.hiddenMenu,
div.menu.temporaryHiddenMenu, div.header.temporaryHiddenMenu {
    display: none !important;
}

    div.menu.hiddenMenu.temporaryVisibleMenu, div.header.hiddenMenu.temporaryVisibleMenu {
        display: block !important;
    }

/* theme toggle button */
#btnThemeToggle > div {
    height: 24px;
    width: 24px;
}

    #btnThemeToggle > div.light {
        background: url(../../Resources/Images/sun_1.png) no-repeat;
        background-size: contain;
    }
    #btnThemeToggle > div.dark {
        background: url(../../Resources/Images/moon_1.png) no-repeat;
        background-size: contain;
    }

/* Signature Control */
div.ART_Signature {
    position: relative;
}
    div.ART_Signature table {
        margin-right: 0px;
    }
    div.ART_Signature > div.sigIcon {
        border-radius: 2px;
        background-color: rgb(0,187,126);
        background-image: url(/Resources/Images/editWhite_1.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 14px;
        height: 18px;
        width: 18px;
    }
    div.ART_Signature > .signaturePopup {
        position: absolute;
        padding: 10px;
        top: -3px;
        left: -3px;
        border-radius: 5px;
        box-shadow: 1px 1px 4px 2px lightgrey;
        display: none;
        /*background-color: white;*/
        z-index: 9999;
    }
    div.ART_Signature.embedded > .signaturePopup {
        position: relative;
        display: block;
        box-shadow: none;
        top: 0;
        left: 0;
        padding: 0;
        z-index: auto;
    }
    div.ART_Signature > .signaturePopup canvas {
        background-color: #f3f3f3;
        padding: 4px;
        border: 1px solid #e1e1e1;
        border-radius: 4px;
    }
    div.ART_Signature img.clearSignature {
        /*background-color: #898989;*/
        padding: 2px;
        border-radius: 2px;
        height: 18px;
        position: absolute;
        left: 14px;
        cursor: pointer;
        height: 16px;
        width: 16px;
    }
    div.ART_Signature.embedded img.clearSignature {
        position: relative;
        margin-right: 14px;
    }
    div.ART_Signature .closeSignature,
    div.ART_Signature .saveSignature {
        margin-left: 10px;
    }
    div.ART_Signature td > canvas {
        touch-action: none;
    }
    div.ART_Signature td > canvas:nth-child(2) {
        position: absolute;
        top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
    }
    div.ART_Signature.readonly .WithReadOnlyHidden{
        display: none;
    }
    div.ART_Signature.embedded .WithEmbeddedHidden {
        display: none;
    }
    div.ART_Signature tr.VisiblePopupAndReadonly{
        display: none;
    }
    div.ART_Signature.readonly:not(.embedded) tr.VisiblePopupAndReadonly {
        display: block;
    }

/* SortableFilter */
div.sf-filter-ctrl {
    display: none;
    position: absolute;
    padding: 5px;
    z-index: 3;
    box-shadow: 2px 2px 5px 2px #888888;
    background-color: white;
    border-radius: 5px;
}
ul.sf-list > li.sf-hidden{
    display: none;
}
img.sf-icon {
    cursor: pointer;
    height: 16px;
    width: 16px;
}

/* FileUploadElement */
.FileUploadElement img.fliIcon {
    height: 14px;
    width: 14px;
    cursor: pointer;
}

.FileUploadElement img.fueAddFileIcon {
    height: 14px;
    width: 14px;
    cursor: pointer;
}

.FileUploadElement .fueFileList {
    list-style-type: none;
    padding: 0;
    margin: 0;
    height: 72px;
    width: 240px;
    overflow-y: auto;
    overflow-x: hidden;
}

@keyframes fue-file-list-li-fade-in {
    0% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

.FileUploadElement .fueFileList li {
    -webkit-animation: fue-file-list-li-fade-in 0.2s;
    -moz-animation: fue-file-list-li-fade-in 0.2s;
    -ms-animation: fue-file-list-li-fade-in 0.2s;
    -o-animation: fue-file-list-li-fade-in 0.2s;
    animation: fue-file-list-li-fade-in 0.2s;
}

    .FileUploadElement .fueFileList li tr > td:nth-child(1) {
        width: 190px;
        overflow-y: clip;
        text-overflow: ellipsis;
        white-space: normal;
    }

.FileUploadElement .fueTable.empty-list .fueFileList {
    width: 0px;
    transition: width ease-in-out 0.1s;
}

.FileUploadElement .fueTable.empty-list .fueDragNDrop {
    width: 460px;
    transition: width ease-in-out 0.1s;
}

.FileUploadElement .fueDragNDrop {
    height: 60px;
    width: 220px;
    border: 1px dashed #d6d6d6;
    border-radius: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    user-select: none;
    cursor: pointer;
    gap: 10px;
}

    .FileUploadElement .fueDragNDrop.is-dragover {
        box-shadow: 0px 0px 5px 0px #cccccc;
        border-width: 2px;
        margin: -1px;
    }

    .FileUploadElement .fueDragNDrop > img {
        height: 18px;
        width: 18px;
        cursor: pointer;
    }

    .FileUploadElement .fueDragNDrop > div {
        white-space: normal;
        text-align: center;
    }

    .FileUploadElement .fueDragNDrop b {
        cursor: pointer;
    }

.FileUploadElement .fueTable {
    margin-right: 0px;
    border-collapse: collapse;
}

    .FileUploadElement .fueTable td {
    }

.FileUploadElement .fue-single-Element {
    height: 22px;
    background-color: #f3f3f3;
    border-radius: 4px;
    width: 250px;
    position: relative;
    direction: ltr;
}

.FileUploadElement .fue-single-FileName {
    max-width: calc(100% - 66px);
    overflow-wrap: anywhere;
    direction: rtl;
    text-overflow: ellipsis;
    overflow-y: clip;
    white-space: nowrap;
    position: absolute;
    left: 3px;
    top: 3px;
    user-select: none;
    cursor: pointer;
}

.FileUploadElement .fue-single-IconContainer {
    height: 22px;
    display: inline-flex;
    right: 0;
    position: absolute;
}

.FileUploadElement .fue-single-Icon {
    height: 16px;
    width: 16px;
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 3px 2px 3px 2px;
}

.FileUploadElement .fue-single-EditIcon {
    background-image: url(../Images/edit_1.png);
}

.FileUploadElement .fue-single-InspectIcon {
    background-image: url(../Images/glass_1.png);
}

.FileUploadElement .fue-single-DeleteIcon {
    background-image: url(../Images/delete_1.png);
}

.FileUploadElement .fue-single-Element.fue-single-empty .fue-single-InspectIcon {
    background-image: url(../Images/glassDis_1.png);
    pointer-events: none;
}

.FileUploadElement .fue-single-Element.fue-single-empty .fue-single-DeleteIcon {
    background-image: url(../Images/deleteDis_1.png);
    pointer-events: none;
}

/* Markdown Editor */
.trumbowyg-button-pane button {
    background-position: center;
    background-size: 18px;
    background-repeat: no-repeat;
    width: 32px;
    height: 24px;
}
    .trumbowyg-button-pane button.trumbowyg-strong-button {
        background-image: url(../Images/mde_bold_1.png);
    }
    .trumbowyg-button-pane button.trumbowyg-em-button {
        background-image: url(../Images/mde_italic_1.png);
    }
    .trumbowyg-button-pane button.trumbowyg-underline-button {
        background-image: url(../Images/mde_underline_1.png);
    }
    .trumbowyg-button-pane button.trumbowyg-del-button {
        background-image: url(../Images/mde_del_1.png);
    }
    .trumbowyg-button-pane button.trumbowyg-orderedList-button {
        background-image: url(../Images/mde_ol_1.png);
    }
    .trumbowyg-button-pane button.trumbowyg-unorderedList-button {
        background-image: url(../Images/mde_ul_1.png);
    }
    .trumbowyg-button-pane button.trumbowyg-indent-button {
        background-image: url(../Images/mde_indent_1.png);
    }
    .trumbowyg-button-pane button.trumbowyg-outdent-button {
        background-image: url(../Images/mde_outdent_1.png);
    }
    .trumbowyg-button-pane button.trumbowyg-removeformat-button {
        background-image: url(../Images/mde_eraser_1.png);
    }
    .trumbowyg-button-pane button.trumbowyg-formatting-button {
        background-image: url(../Images/mde_formatting_1.png);
    }

.trumbowyg-editor {
    padding: 10px;
    /*font-size: 11pt;*/
}

.trumbowyg-editor,
.trumbowyg-editor.font-NunitoSans {
    font-family: NunitoSans-Regular;
}
    .trumbowyg-editor.font-Exo {
        font-family: Exo;
    }
    .trumbowyg-editor.font-OpenSans {
        font-family: OpenSans-Regular;
    }
    .trumbowyg-editor.font-Poppins {
        font-family: Poppins-Regular;
    }
    .trumbowyg-editor.font-Calibri {
        font-family: Calibri;
    }

    .trumbowyg-editor h1 {
        font-size: 16pt;
        margin: 0.67em 0em;
    }
    .trumbowyg-editor h2 {
        font-size: 14pt;
        margin: 0.83em 0em;
    }
    .trumbowyg-editor h3 {
        font-size: 12pt;
        margin: 1.17em 0em;
    }
    .trumbowyg-editor h4 {
        font-size: 11pt;
        margin: 1em 0em;
    }
    .trumbowyg-editor p {
        margin-block-start: 5pt;
        margin-block-end: 5pt;
    }

.trumbowyg-box {
    border-radius: 4px 4px 0px 0px;
}
.trumbowyg-button-pane {
    background: #f2f2f2;
    border-radius: 3px 3px 0px 0px;
    border-color: #cecece;
    align-items: center;
}
.trumbowyg-button-pane::after, 
.trumbowyg-button-pane::before {
    background: #cecece;
}
    .trumbowyg-button-pane .trumbowyg-button-group{
        align-items: center;
    }
    .trumbowyg-button-pane .trumbowyg-button-group::after {
        background: #cecece;
    }

    .trumbowyg-button-pane button.trumbowyg-active, .trumbowyg-button-pane button:not(.trumbowyg-disable):focus, .trumbowyg-button-pane button:not(.trumbowyg-disable):hover {
        background-color: #fff;
        outline: 1px solid #cecece;
        border-radius: 5px;
        margin: 1px;
        width: 30px;
        height: 30px;
    }

.trumbowyg-dropdown button {
    font-size: 0.9em;
    line-height: 1em;
    height: 24px;
}

/* ARTimeBox */

.hour-artimeboxinput {
    width: 40px !important;
    text-align: right;
}

.minute-artimeboxinput {
    width: 17px !important;
    text-align: left;
}

/* ARTimerLightbox */

#ARTimerLightboxWindow > .EditWindowContent {
    width: 1300px;
    height: 810px;
    margin-left: -650px;
    margin-top: -405px;
}

#ARTimerLightboxWindow .ARTimerLightboxDialogHeaderCloseButton {
    height: 0px;
    width: 0px;
    padding: 8px;
    background: url(../Images/close_1.png);
    position: absolute;
    border-radius: 2px;
    right: 11px;
    top: 11px;
    cursor: pointer;
}

#ARTimerLightboxImage {
    display: block;
    text-align: center;
    min-height: 574px;
    line-height: 574px;
}

#ARTimerLightboxImage img {
    cursor: pointer;
    vertical-align:middle;
}

#ARTimerLightboxImage img {
    max-height: 560px;
    max-width: 1200px;
    padding: 3px;
    border: 1px solid;
    border-color: #E0E0E0;
}

#ARTimerLightboxImage .ARTimerLightboxPDF {
    max-height: 400px;
    max-width: 200px;
}

#ARTimerLightboxSlider .ARTimerLightboxThumb img {
    max-height: 100px;
    max-width: 200px;
    padding-left: 4px;
    padding-right: 4px;
    cursor:pointer;
    line-height:110px;
    vertical-align:middle;
}

#ARTimerLightboxSlider .ARTimerLightboxPDFThumb {
    position:relative;
}

#ARTimerLightboxSlider .ARTimerLightboxPDFThumbImage {
    max-height: 100px;
    max-width: 200px;
    padding: 3px;
    border-color: #E0E0E0;
    text-align: center;
    cursor: pointer;
    vertical-align: middle;
}

#ARTimerLightboxSlider .ARTimerLightboxPDFThumbLink {
    position: absolute;
    top: 4px;
    right: 8px;
    width: 14px;
    height: 14px;
    pointer-events:none;
}

#ARTimerLightboxSlider ul {
    padding-left: 0px;
    line-height: 110px;
}

#ARTimerLightboxSlider li {
    position:relative;
    list-style-type: none;
    display: inline-block;
    float: left;
    max-height: 110px;
    min-height: 110px;
    min-width: 100px;
}

#ARTimerLightboxSlider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
}

#ARTimerLightboxSlider .btnNextPreviewItem, .btnPreviousPreviewItem {
    cursor: pointer;
    user-select: none;
    height: 30px;
    vertical-align: middle;
}

#ARTimerLightboxSlider .ARTimerLightboxSliderThumbs {
    max-width:1200px;
    min-width:1200px;
    max-height:110px;
    overflow:hidden;
}

.ARTimerLightboxDialogHeaderHeadline {
    position: absolute;
    left: 20px;
    top: 12px;
    font-family: NunitoSans-ExtraBold;
    color: rgb(0, 187, 126);
}

.ARTimerLightboxDialogHeaderDownloadButton {
    position: absolute;
    right: 40px;
    cursor: pointer;
}
.ARTimerLightboxDialogHeaderDownloadButton input[type=button] {
    font-family: NunitoSans-ExtraBold;
    font-size: 0.8em !important;
    display: inline-block;
    padding-top:2px;
    padding-bottom:2px;
    padding-left:15px;
    padding-right:15px;
    vertical-align: bottom;
}

/* small display adjustments */
@media only screen and (max-width: 1366px) and (max-height: 768px) {
    html, body {
        font-size: 0.85em !important;
    }

        body > div.renderBody {
            height: calc(100% - 47px);
        }

    span.Selected {
        padding-bottom: 6px;
    }

    div.Tab {
        padding: 17px 6px 15px 10px;
        font-size: 11px;
    }
    div.title > table td.Tab {
        padding: 12px 15px 12px 15px;
    }

    #titleMenuDropdown {
        padding-top: 17px;
    }
    @-moz-document url-prefix() {
        #titleMenuDropdown {
            padding-top: 5px;
        }
    }
    div#titleMenuDropdown > span {
        padding-top: 36px;
    }
    div#titleMenuDropdown > span.selected {
        padding-bottom: 4px;
    }
    div#titleMenuDropdown > table {
        top: 47px;
    }

    td.RightHandMenu {
        width: 362px;
        height: 47px;
        padding-right: 0px;
        padding-top: 8px;
        padding-bottom: 7px;
        padding-left: 5px;
    }

    td#baseWhoAmI {
        position: absolute;
        right: 0px;
        top: 40px;
        font-size: 0.8em;
    }

    td.Menu {
        height: 47px;
        padding-bottom: 15px;
    }
    td.Menu > div {
        height: 47px;
    }
    div.title > table div.Tab {
        padding: 14px 0px 22px 0px;
    }

    div.title {
        height: 47px;
    }

    div.title td.Logo {
        width: 190px;
        min-width: 190px;
        height: 47px;
        text-align: center;
        background-color: rgb(7,124,83);
    }

    div.title td.Logo > img {
        height: 47px;
        margin: 0 auto;
    }

    div.base > div.navigation {
        width: 190px;
    }

    div.base > div.content {
        width: calc(100% - 213px);
    }

    div.navigation div.menu {
        padding-top: 2px;
        padding-bottom: 2px;
    }

    .DialogHeader {
        font-size: 12px;
        height: 13px;
    }

    .DialogContent {
        height: calc(100% - 93px);
        padding: 10px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .DialogFooter {
        padding: 6px;
    }

    .FeedbackEditWindowContent {
        width: 410px;
        height: 510px;
        margin-top: -255px;
        margin-left: -205px;
    }

    table.slim {
        font-size: 100%;
    }

    textarea {
        font-size: 11px;
    }

    div.menuHideOptions {
        width: 190px;
        height: 1px
    }

        div.menuHideOptions > img {
            height: 14px;
            width: 14px;
            top: -11px;
        }
}

/* RightHandDropDownMenu*/

.RightHandDropdownMenu {
    position:relative;
    display:inline-block;
}

.RightHandDropdownContent {
    display: none;
    position: absolute;
    padding: 8px;
    background-color: rgba(44, 53, 63, 0.92);
    left: auto;
    right: 0;
    z-index: 1000;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
    box-shadow: 0px 0px 5px 0px #c3c3c3;
}

.RightHandDropdownContent div {
    display: block;
    float: left;
}
    .RightHandDropdownContent div.TabIcon {
        margin-left: 4px;
    }

.RightHandDropdownMenuBtnSmall {
    width: 16px !important;
    height: 16px !important;
    cursor: pointer;
}

.RightHandDropdownMenuBtn {
    cursor:pointer;
}

.RightHandDropdownContentItem {
    width: 160px;
    height: 30px;
    padding: 4px;
    display: flex !important;
    gap: 4px;
    border-radius: 4px;
    align-items: center;
}

    .RightHandDropdownContentItem:not(.selectLanguage):hover {
        background-color: rgba(44, 53, 63, 0.92);
        box-shadow: 0px 0px 2px 0px #bfbfbf1c;
        cursor: pointer;
    }

.RightHandDropdownContentItemLabel {
    padding-left: 5px;
    margin-top: auto;
    margin-bottom: auto;
    user-select: none;
}

.RightHandDropdownContentItemLabel.nopointer {
    cursor: default;
}

.RightHandDropdownMenuSpacer {
    width: 2px;
    height: 20px;
    background-color: white;
    opacity: 0.5;
    margin: 2px 4px 6px 4px;
}
.RosterCompetenceList {
    line-height: 0;
}

.RosterCompetenceListItem {
    display: inline-block;
    padding-left: 3px;
    padding-right: 3px;
    margin: 1px;
    border-radius: 4px;
    max-width: 50px;
    height: 22px;
    overflow: hidden;
}

.RosterCompetenceListItem input {
    background-color: transparent !important;
    border: 0;
    max-width: 48px;
    pointer-events: none;
    cursor:pointer;
}

.bottomCellText {
    vertical-align: bottom !important;
}

.stackedIcon {
    display: inline-block;
    width: 16px;
    height: 16px;
}