
/*
@import 'https://fonts.googleapis.com/css?family=Rubik+One';
*/

/*
================================================================================
    Deaktivierung: Text markieren
================================================================================
*/
.noTextSelection {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; /* Non-prefixed version, currently */
}

/*
================================================================================
    Deaktivierung von Links ( <a></a> )
================================================================================
*/
.disabled-link {
  pointer-events: none;
}

/*
================================================================================
    Buttons/Icons als inaktiv darstellen
================================================================================
*/
.disabled {
    pointer-events: none;
    filter: contrast(0.3) brightness(1.4);
    /*
    Opacity ist eher unguenstig, da z.B. bei wechselnden Hintergruenden (hell/dunkel) auch das eigentliche Element sich hell/dunkel mit-verfaerbt. (Z.B. bei den In- und Outputs in der Detailsansicht fuer ein Geraet, da dort die einzelnen Zeilen immer im Wechsel hell/dunkel eingefaerbt sind.)
    opacity: 0.5;
    */
}
/*
================================================================================
    Ein farbliches Highlighting fuer den Hintergrund, welches dann nach ein paar Sekunden verblasst (z.B. bei Update eines Listeneintrags)
================================================================================
*/
@keyframes entry_updated {
    0% {background-color:  #FFC300;}
    100% {background-color:  #FFFFFF;}
}
@-moz-keyframes entry_updated {
    0% {background-color:  #FFC300;}
    100% {background-color:  #FFFFFF;}
}
@-webkit-keyframes entry_updated {
    0% {background-color:  #FFC300;}
    100% {background-color:  #FFFFFF;}
}

.entryUpdatedAnimation {
    animation: entry_updated 10s ease-in 1;
    -moz-animation: entry_updated 10s ease-in 1;
    -ms-animation: entry_updated 10s ease-in 1;
    -o-animation: entry_updated 10s ease-in 1;
    -webkit-animation: entry_updated 10s ease-in 1;
}
/*
================================================================================
    Text-Farben
================================================================================
*/
.unknown {
    color: #A9A9A9;
}

.normal {
    color: #303030;
}

.ok {
    color: #00BB00;
}

.error {
    color: #FF0000;
}

/*
================================================================================
    Hervorhebung von Zeilen
================================================================================
*/
.rowHighlighted {
    background: #DDDDDD;
}

.notFirstTr:hover {
    background-color: silver;
}

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



body {
    color:#404040;
    font-family:Verdana,Arial,Helvetica,sans-serif;
    font-size: 12px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    
    /* Minimale Breite damit es keine Layout-Probleme gibt mit float-left/right-Elementen */
    min-width: 550px;
    width: auto !important;
}

input:not([type="checkbox"]):not([type="file"]) {
    font-family:Verdana,Arial,Helvetica,sans-serif;
    font-size: 14px;
    box-sizing: border-box;
    padding-left: 3px;
    padding-right: 3px;
    height: 23px;
}

input[type="checkbox"] {
    height: 16px;
}

input[type="file"] {
    height: 28px;
}

/* (Speziell in Firefox konnten Select-Elemente mit geringerer Hoehe die Schriftgroesse nicht mehr vollstaendig anzeigen.) */
select {
    height: 28px;
}

table {
    border-spacing:0;
}

#mainLogin {
    position:absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    background-attachment:fixed;
    background-image:url(../pics/sys/background.png);
}

#login {
    background-color:#ffffff;
    width:400px;
    border:3px solid #cccccc;
    margin: 10% auto auto;
    text-align: center;
    line-height:16px;
    font-size:12px;
}

#loginHeadline {
    font-size: 20px;
    font-weight: bold;
    margin-top: 3%;
    margin-bottom: 3%;
}

#loginForm table {
    width: 250px;
    margin-bottom: 10px;
}

#loginForm table tr {
    vertical-align: middle;
    height: 20px;
}

#loginForm table tr td.left {
    text-align: right;
}

#loginForm table tr td.right {
    padding-left: 5px;
}
/*
#mainLogin {
    position:absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    background-attachment:fixed;
    background-image:url(../pics/sys/background.png);
}

#login {
    position:relative;
    width:400px;
    background-color:#ffffff;
    border:3px solid #cccccc;
    margin:10% auto auto;
    text-align: center;
    line-height:16px;
    font-size:12px;
}

#loginHeadline {
    font-size:20px;
    font-weight:bold;
}

#loginForm div {
    width: 250px;
    margin: 0 auto 5px auto;
    text-align: right;
}

#loginForm div input {
    width: 66%;
    margin-left: 3px;
}
*/

.loginProblem {
    font-weight: bold;
    color: #FF0000;
    margin: 10px auto auto;
    text-align:center;
}

#loginImprint {
    position: relative;
    right: 2px;
    bottom: 0;
    text-align:right;
}

#loginBrowser {
    font-weight:bold;
    margin:30px auto auto;
    text-align:center;
    width:300px;
}

#loginBrowser img {
    max-height:30px;
    max-width:30px;
}

#login #loginButton {
    margin-top: 8px;
    padding-left: 10px;
    padding-right: 10px;
}

#header {
    height: 30px;
    border-bottom: 1px solid silver;
}

#header #headerLeft {
    float:left;
}

#header #headerRight {
    float:right;
}

.header {
    background-color: #DDDDDD;
    background-image: linear-gradient(top, #AAAAAA, #DDDDDD);
    background-image: -moz-linear-gradient(top, #AAAAAA, #DDDDDD);
    background-image: -webkit-linear-gradient(top, #AAAAAA, #DDDDDD);
    background-image: -ms-linear-gradient(top, #AAAAAA, #DDDDDD);
    background-image: -o-linear-gradient(top, #AAAAAA, #DDDDDD);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#AAAAAA", endColorstr="#DDDDDD",GradientType=0);
    color: #FFFFFF;
    z-index: 3;
    box-sizing: border-box;
}

#header #headerLeft .menuMainButton {
    float: left;
}

#header #headerRight .menuMainButton {
    float: right;
}

.menuMainButton {
    position: relative;
    height: 20px;
    line-height: 21px;
    font-size: 13px;
    font-weight: bold;
    padding: 5px 10px 5px 5px;
    cursor: pointer;
}

.menuMainButton:hover {
    background: rgba(0,0,0,0.4);
}

.menuMainButton .arrowDown {
    position: relative;
    top: -10px;
    left: 5px;
    border-top: 0;
    border-bottom: 4px solid #FFFFFF;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}
    
.menuMainButton:hover .arrowDown {
    top: 9px;
    border-top: 4px solid #FFFFFF;
    border-bottom: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

#menuAdminButton {
    margin-left: 8px;
}

.menuMainList {
    display: none;
    position: absolute;
    left: 0;
    top: 30px;
    min-width: 120px;
    z-index: 2;
    color: #404040;
    background: #FFFFFF;
    box-shadow: 0 3px 6px 4px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: normal;
    line-height: 26px;
}

.menuMainList > div {
    padding: 5px;
}

.menuMainList .menuMainEntry {
    text-decoration: underline;
}

.menuMainList .menuMainEntry:hover {
    background: rgba(0, 0, 0, 0.1);
}

.menuMainButton:hover .menuMainList {
    display: block;
}

#menuUserButton {
    margin-right: 6px;
}

.menuMainList .menuMainListHeader {
    line-height: 10px;
    font-size: 13px;
    font-weight: bold;
}

.menuMainList .menuMainListValue {
    line-height: 18px;
}

.windowSmallOverlay {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.windowSmall {
    margin: auto;
    padding: 18px;
    background: #FFFFFF;
    border-radius: 5px;
    overflow: hidden;

    transition: height 500ms;    
    -webkit-transition: height 500ms;    
    -moz-transition: height 500ms;    
    -o-transition: height 500ms;    
    -ms-transition: height 500ms;    
}

#mainInfoWindow {
    min-width: 500px;
    text-align: center;
    cursor: pointer;
}

.windowSmallInner {
    overflow: hidden;
}

.windowSmallHeader {
    margin-bottom: 8px;
    font-weight: bold;
}

#mainInfoWindowHeader {
    color: #882222;
    font-size: 20px;
}

#mainInfoWindowContent {
    font-size: 16px;
}

.mainInfoWindowContentLine {
    line-height: 16px;
    animation: item_info_updated 3s ease-in 1;
    -moz-animation: item_info_updated 3s ease-in 1;
    -ms-animation: item_info_updated 3s ease-in 1;
    -o-animation: item_info_updated 3s ease-in 1;
    -webkit-animation: item_info_updated 3s ease-in 1;
}

#mainInfoOverlay {
    z-index: 20;
}

#windowChangePasswordOverlay {
    z-index: 10;
}

#windowChangePassword {
    min-width: 350px;
    font-size: 14px;
}

#windowChangePassword #windowChangePasswordHeader {
    font-size: 16px;
}

#windowChangePassword .userConfigurationPasswordInfo {
    margin-top: 5px;
}

#windowChangePassword input {
    width: 200px;
    font-size: 22px;
}

#windowChangePassword #windowChangePasswordButtonSaveHolder {
    position: relative;
    margin-top: 5px;
    margin-right: 5px;
    width: 90px;
    height: 27px;
    float: right;
}

#windowChangePassword #windowChangePasswordButtonSaveLoadingSpinner {
    position: relative;
    top: -10px;
}

#windowChangePassword .configErrorInfo {
    margin-bottom: 5px;
    font-size: 13px;
}

#mainLoadingOverlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9999;
}

#map {
    position: relative;
    z-index: 1;
    float: left;
    width: calc(100% - 340px);
    height: calc(100% - 30px);
}

#leftBlockOpener {
    cursor:pointer;
    display:block;
    height:60px;
    position:absolute;
    left:346px;
    top:45%;
    width:20px;
    z-index: 3;
}

#leftBlock {
    float: left;
    height: calc(100% - 30px);
    width: 340px;
    background-color: #FFFFFF;
    text-align: center;
}

#leftBlockInfos {
    height: 30px;
    width: 100%;
    z-index: 1;
    background-color: #DDDDDD;
    background-image: linear-gradient(top, #DDDDDD, #EEEEEE);
    background-image: -moz-linear-gradient(top, #DDDDDD, #EEEEEE);
    background-image: -webkit-linear-gradient(top, #DDDDDD, #EEEEEE);
    background-image: -ms-linear-gradient(top, #DDDDDD, #EEEEEE);
    background-image: -o-linear-gradient(top, #DDDDDD, #EEEEEE);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#DDDDDD", endColorstr="#EEEEEE",GradientType=0);
    font-weight: bold;
}

#leftBlockInfos #leftBlockInfos1Left {
    float: left;
    line-height: 30px;
    text-align: left;
    padding-left: 6px;
    font-size: 12px;
}

#leftBlockInfos #leftBlockInfos1Left #communicationProblemsInfoText {
    float: left;
}

#leftBlockInfos #leftBlockInfos1Left #communicationProblemsCounter {
    float: left;
    margin-left: 2px;
    font-size: 13px;
    min-width: 22px;
}

#leftBlockInfos #leftBlockInfos1Right {
    float: left;
    width: calc(37% - 6px);
    font-size: 11px;
}

#leftBlockAlerts, #leftBlockHistory, #leftBlockSearch {
    position: relative;
    height: calc(100% - 66px); /* 30px LeftBlockInfos + 42px List-Tabs-Label */
    width: 100%;
    z-index: 0;
}

#leftBlockHistory, #leftBlockSearch {
    height: 0;
    visibility: hidden;
}

#leftBlockHistory #leftBlockHistoryListHeader, #leftBlockSearch #leftBlockSearchListHeader {
    display: none;
}

.leftBlockEmptyInfo {
    padding-top:10px;
    text-align:center;
    display: none;
}

.leftBlockListsButtons {
    padding-top: 2px;
    text-align: right;
    height: 19px;
}

#leftBlockAlertListButtons {
}

.leftBlockListsWithInputButtons {
    top: 0px;
}

.leftBlockListsButtons img {
    cursor: pointer;
    margin-right: 3px;
    height: 16px;
}

.leftBlockInput {
    height: 32px;
    width: 100%;
    border-bottom: 1px solid silver;
    padding-top: 2px;
    padding-bottom: 2px;
}

.leftBlockInput input {
    width: 50%;
}

.leftBlockInput img {
    position: relative;
    top: 5px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-left: 4px;
}

.leftBlockInner {
    width:100%;
    overflow:auto;
}

#leftBlockAlertsInner {
    height: calc(100% - 21px); /* Hoehe von #leftBlockAlerts, #leftBlockHistory, #leftBlockSearch minus Hoehe von leftBlockListsButtons */
}

#leftBlockHistoryInner, #leftBlockSearchInner {
    height: calc(100% - 58px); /* Hoehe von #leftBlockAlerts, #leftBlockHistory, #leftBlockSearch minus (Hoehe von leftBlockInput plus Hoehe von leftBlockListsButtons) */
}

.leftBlockItem {
    position:relative;
    border-bottom: 1px solid #AAAAAA;
    width: calc(100% - 2px);
    text-align:left;
    cursor:pointer;
}

.leftBlockItem .leftBlockItemInfo {
    padding: 2px;
}

.leftBlockItem .connectionProblem {
    color: #AAAAAA;
}

.leftBlockItem .leftBlockItemInfo .infoConnectionProblem {
    margin-top: 2px;
    margin-left: 4px;
}

.leftBlockItem:hover {
    background-color:#eeeeee;
}

.leftBlockItem .leftBlockItemState {
    background: #FF0000;
    color: #FFFFFF;
    font-weight:bold;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 3px;
}

.leftBlockItem .leftBlockItemStateCaption {
    position: relative;
}

.leftBlockItem .leftBlockItemStateCaption .arrowDown {
    position: absolute;
    top: calc(50% - 5px);;
    right: 2px;
    border-top: 10px solid #FFFFFF;
    border-bottom: 0px solid #FFFFFF;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

.leftBlockItem .leftBlockItemStateCaption .arrowDownInner {
    position: absolute;
    top: calc(50% - 3.5px);
    right: 6px;
    border-top: 6px solid #FF0000;
    border-bottom: 0px solid #FF0000;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    z-index: 2;
    display: none;
}

.leftBlockItem .leftBlockItemStateCaption .historyListArrowDownInner {
    border-top: 5px solid #00BB00;
    border-bottom: 0px solid #00BB00;
}

.leftBlockItem .leftBlockItemStateList {
    display: none;
}

.leftBlockItem .alertElem {
    overflow: hidden; /* -> Wichtig: Damit auch eine zusaetzliche Zeile, bei nicht ausreichender Breite (Nutzung von "float:right"), noch die gewuenschte Hintergrundfarbe erhaelt!!! */
    clear: both;
    padding-left: 3px;
    padding-right: 3px;
    padding-top: 2px;
    padding-bottom: 1px;
}

.leftBlockItemStateList .firstEntry {
    border-top: 1px solid #FFFFFF;
}

.leftBlockItem .alertElem .alertElemLeft {
    float: left;
}

.leftBlockItem .alertElem .alertElemRight {
    float: right;
}

.leftBlockItem .leftBlockItemStateCaptionExtended .alertElem .alertElemRight {
    margin-right: 24px;
}

.alertBackgroundSomeShielded {
    background-image: linear-gradient(left, #FF0000 10%, #00BB00 90%) !important;
    background-image: -moz-linear-gradient(left, #FF0000 10%, #00BB00 90%) !important;
    background-image: -webkit-linear-gradient(left, #FF0000 10%, #00BB00 90%) !important;
    background-image: -ms-linear-gradient(left, #FF0000 10%, #00BB00 90%) !important;
    background-image: -o-linear-gradient(left, #FF0000 10%, #00BB00 90%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FF0000', endColorstr='#00BB00',GradientType=1) !important;
}

.alertBackgroundAllShielded {
    background: #00BB00 !important;
}

.infoConnectionProblem {
    display: table;
    height: 100%;
    width: 100%;
}

.infoConnectionProblem div {
    display: table-cell;
    vertical-align: middle;
}

.infoConnectionProblem img {
    width: 18px;
    height: 18px;
}

.infoConnectionProblem .infoConnectionProblemText {
    padding-left: 6px;
    font-weight: bold;
    color: #FF0000;
}

.windowHolder {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.window {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    min-width: 200px;
    min-height: 200px;
    background-color: #FFFFFF;
    border: 1px solid silver;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
    font-size: 14px;
}

.windowHeader {
    height: 26px;
    width:100%;
    /*
    */
    font-size: 14px;
    font-weight: bold;
    padding-top: 3px;
    padding-left: 2px;
    padding-right: 4px;
}

.windowHeader .windowHeaderDescription {
    float:left;
    margin-top: 4px;
    margin-left: 4px;
}

.windowOverflow {
    height: calc(100% - 26px);
    width: 100%;
    padding-top: 3px;
    background-color: #DDDDDD;
    box-sizing: border-box;
    overflow: auto;
}

.windowOverflowInner {
    /* Breie wird per Javascript gesetzt/berechnet */
    background-color: #FFFFFF;
    height: 100%
}

.window .windowLeft {
    width: 20%;
    height: 100%;
    border-right: 1px solid silver;
    box-sizing: border-box;
    float: left;
}

.window .windowLeftOverflow {
    height: calc(100% - 30px);
    overflow: auto;
    clear: both;
    border-top: 1px solid silver;
    box-sizing: border-box;
}

.window .windowLeftOverflow .windowLeftListEntry {
    padding: 3px;
    cursor: pointer;
}

.window .windowLeftOverflow .windowLeftListEntry .windowLeftListEntryHeadline {
    font-weight: bold;
}

.window .windowRight {
    display: none;
    width: 80%;
    height: 100%;
    float: left;
}

#adminDevices #adminDevicesRight #adminDevicesRight1Overflow {
    width: 60%;
    height: 100%;
    box-sizing: border-box;
    border-right: 4px solid silver;
    float: left;
    overflow: auto;
}

#adminDevicesRight1OverflowInner {
    /* Hoehe wird per Javascript gesetzt, siehe adminDevices.js.php */
}

#adminDevicesRight1OverflowInner #adminDevicesRight1Top {
    width: calc(100% - 5px);
    height: 50%;
}

#adminDevicesRight1OverflowInner #adminDevicesRight1Top {
    margin-top: 5px;
    margin-left: 5px;
}

#adminDevicesRight1OverflowInner #adminDevicesRight1Top table #adminDevicesLocationHeader {
    height: 25px;
    vertical-align: bottom;
    font-weight: bold;
}

#adminDevicesRight1OverflowInner #adminDevicesRight1Top table tr td.left {
    width: 30%;
    vertical-align: top;
    padding-top: 5px;
}

#adminDevicesRight1OverflowInner #adminDevicesRight1Top table tr td.leftSelect {
    padding-top: 7px;
}

/* Breite fuer Input-Elemente, welche keine Checkboxen sind */
#adminDevicesRight1OverflowInner #adminDevicesRight1Top table tr td input:not([type='checkbox']) {
    width: 250px;
}

#adminDevicesRight1OverflowInner #adminDevicesRight1Top table tr td #adminDevicesRight1TopConfigShowFacilityPhoto {
    position: relative;
    top: 3px;
}

#adminDevicesRight1OverflowInner #adminDevicesRight1Top table tr td #adminDevicesRight1TopConfigFacilityPhotoFile {
    margin-left: 20px;
}

#adminDevicesRight1OverflowInner #adminDevicesRight1Top #adminDevicesRight1TopConfigImei, #adminDevicesRight1TopConfigType {
    line-height: 20px;
    font-weight: bold;
}

.configErrorInfo {
    display: none;
    font-weight: bold;
    color: #FF0000;
}

#adminDevicesRight1OverflowInner #adminDevicesRight1Top table tr td #adminDevicesRight1TopConfigPostal {
    width: 60px;
}

.adminButtonSaveHolder {
    position: relative;
    width: 90px;
    height: 28px;
    float: right;
}

#adminDevicesRight1OverflowInner #adminDevicesRight1Top #adminDevicesRight1TopButtonSaveHolder {
    margin-top: 7px;
    margin-right: 7px;
}

.configurationUpdatedInfo  {
    display: none;
    float: right;
    line-height: 32px;
    margin-right: 8px;
    font-weight: bold;
    font-size: 13px;
    text-align: right;
}

#adminDevicesRight1OverflowInner #adminDevicesRight1Bottom {
    width: 100%;
    height: 50%;
    padding-top: 4px;
    border-top: 1px solid silver;
    box-sizing: border-box;
    clear: both; /* "Wegen dem "float: right" des Speichern-Buttons im darueber liegenden DIV "#adminDevicesRight1Top". */
}

.mapButtons {
    height: 23px;
    width: 290px; /* 2 mal die Breite der enthaltenen Buttons plus 10px Margin-Right */
    margin: 0 auto;
}

#adminDevicesRight1OverflowInner #adminDevicesRight1Bottom #adminDevicesRight1BottomMap {
    width: 100%;
    height: calc(100% - 25px);
}

#adminDevices #adminDevicesRight #adminDevicesRight2Overflow {
    width: 40%;
    height: 100%;
    float: left;
    overflow: auto;
}

#adminDevices #adminDevicesRight #adminDevicesRight2Overflow #adminDevicesRight2OverflowInner {
}

#adminDevices #adminDevicesRight #adminDevicesRight2Overflow #adminDevicesRight2OverflowInner #adminDevicesRight2Top, #adminDevicesRight2Middle, #adminDevicesRight2Bottom {
    padding: 2px;
}

#adminDevices #adminDevicesRight #adminDevicesRight2Overflow #adminDevicesRight2OverflowInner #adminDevicesRight2Top, #adminDevicesRight2Middle {
    border-bottom: 4px solid silver;
    box-sizing: border-box;
}

#adminDevices #adminDevicesRight #adminDevicesRight2OverflowInner .adminDevicesRight2Header {
    font-weight: bold;
    margin: 0 auto 2px;
    text-align: center;
}

#adminDevices #adminDevicesRight #adminDevicesRight2OverflowInner #adminDevicesRight2TpInput {
    margin-left: 4px;
    width: calc(100% - 36px);
}

#adminDevices #adminDevicesRight #adminDevicesRight2OverflowInner #adminDevicesRight2TpInputError1, #adminDevicesRight2TpInputError2 {
    margin-left: 4px;
}

#adminDevices #adminDevicesRight #adminDevicesRight2OverflowInner table {
    width: calc(100% - 8px);
    margin: 4px;
}

#adminDevices #adminDevicesRight #adminDevicesRight2OverflowInner table tr {
    height: 32px;
    vertical-align: middle;
}

#adminDevices #adminDevicesRight #adminDevicesRight2OverflowInner table tr .left {
    padding-left: 2px;
}

#adminDevices #adminDevicesRight #adminDevicesRight2OverflowInner #adminDevicesRight2DeviceGroupsTable tr .right {
    padding-left: 6px;
    width: 26px;
}

#adminDevices #adminDevicesRight #adminDevicesRight2OverflowInner #adminDevicesRight2TpsTable tr .right {
    padding-left: 6px;
    width: 26px;
}

#adminDevices #adminDevicesRight #adminDevicesRight2OverflowInner #adminDevicesRight2TpsTable tr .left {
}

#adminDevices #adminDevicesRight #adminDevicesRight2OverflowInner .adminDevicesRight2Selection {
    margin-left: 4px;
    width: calc(100% - 36px);
}

#adminDevices #adminDevicesRight #adminDevicesRight2OverflowInner #adminDevicesRight2ExtenderTypesTable tr .left {
    width: 20px;
}

#adminDevices #adminDevicesRight #adminDevicesRight2OverflowInner #adminDevicesRight2ExtenderTypesTable tr .right {
    padding-right: 4px;
}

#adminDevices #adminDevicesRight #adminDevicesRight2OverflowInner #adminDevicesRight2ExtenderTypesTable tr .right select {
    width: 100%;
}

#adminDevices #adminDevicesRight #adminDevicesRight2OverflowInner #adminDevicesRight2ExtenderTypesButtonSaveHolder {
    margin-top: 5px;
    margin-right: 7px;
}

#adminDeviceGroups #adminDeviceGroupsRight #adminDeviceGroupsRightOverflow {
    width: 100%;
    height: 100%;
    float: left;
    overflow: auto;
}

#adminDeviceGroupsRightOverflowInner {
    /* Hoehe wird per Javascript gesetzt, siehe adminDevices.js.php */
}

#adminDeviceGroups #adminDeviceGroupsRight #adminDeviceGroupsRightHeader {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
}

#adminDeviceGroups #adminDeviceGroupsRight #adminDeviceGroupsRightTop #adminDeviceGroupsRightTopInner {
    width: 380px;
    margin: 0 auto;
}

#adminDeviceGroups #adminDeviceGroupsRight #adminDeviceGroupsRightTop #adminDeviceGroupsRightTopInner table {
    width: 100%;
}

#adminDeviceGroups #adminDeviceGroupsRight #adminDeviceGroupsRightTop #adminDeviceGroupsRightTopInner table td.left {
    vertical-align: top;
    padding-top: 5px;
}

#adminDeviceGroups #adminDeviceGroupsRight #adminDeviceGroupsRightTop #adminDeviceGroupsRightTopInner table td.leftSelect {
    padding-top: 7px;
}

#adminDeviceGroups #adminDeviceGroupsRight #adminDeviceGroupsRightTop #adminDeviceGroupsRightTopInner table select {
    width: 100%;
}

#adminDeviceGroups #adminDeviceGroupsRight #adminDeviceGroupsRightTop table input {
    width: 100%;
}

#adminDeviceGroups #adminDeviceGroupsRight #adminDeviceGroupsRightTop #adminDeviceGroupsRightButtonSaveHolder {
    position: relative;
    width: 90px;
    float: right;
    margin-top: 7px;
    margin-bottom: 8px;
}

#adminDeviceGroups #adminDeviceGroupsRight #adminDeviceGroupsRightBottom {
    display: none;
    clear: both;
    border-top: 1px solid silver;
    box-sizing: border-box;
}

#adminDeviceGroups #adminDeviceGroupsRight #adminDeviceGroupsRightBottom #adminDeviceGroupsRightBottomInner {
    width: 400px;
    margin: 0 auto;
}
    
#adminDeviceGroups #adminDeviceGroupsRight #adminDeviceGroupsRightBottom #adminDeviceGroupsRightBottomInner {
    width: 440px;
    margin: 2px auto;
}

#adminDeviceGroups #adminDeviceGroupsRight #adminDeviceGroupsRightBottom #adminDeviceGroupsRightBottomInner #adminDeviceGroupsRightDevicesSelect {
    margin-left: 4px;
    width: calc(100% - 36px);
}

#adminDeviceGroups #adminDeviceGroupsRight #adminDeviceGroupsRightBottom #adminDeviceGroupsRightBottomInner table  {
    width: calc(100% - 8px);
    margin-left: 4px;
}
 
#adminDeviceGroups #adminDeviceGroupsRight #adminDeviceGroupsRightBottom #adminDeviceGroupsRightBottomInner table tr  {
    height: 32px;
    vertical-align: middle;
}

#adminDeviceGroups #adminDeviceGroupsRight #adminDeviceGroupsRightBottom #adminDeviceGroupsRightBottomInner table th {
    font-weight: bold;
    text-align: left;
}

#adminDeviceGroups #adminDeviceGroupsRight #adminDeviceGroupsRightBottom #adminDeviceGroupsRightBottomInner table tr td.left {
    padding-left: 2px;
}

#adminDeviceGroups #adminDeviceGroupsRight #adminDeviceGroupsRightBottom #adminDeviceGroupsRightBottomInner table tr .middle {
    padding-left: 2px;
}

#adminDeviceGroups #adminDeviceGroupsRight #adminDeviceGroupsRightBottom #adminDeviceGroupsRightBottomInner table tr .right {
    padding-left: 6px;
    width: 26px;
}

#adminUsers #adminUsersRight {
    float: left;
}

#adminUsers #adminUsersRight #adminUsersRightTop1Overflow {
    width: 50%;
    height: 66%;
    float: left;
    border-right: 4px solid silver;
    box-sizing: border-box;
    overflow: auto;
}

#adminUsers #adminUsersRight #adminUsersRightTop1OverflowInner {
    /* Hoehe wird per Javascript gesetzt, siehe adminDevices.js.php */
}

#adminUsersRightTop1OverflowInner #adminUsersRightTop1Header {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
}

#adminUsersRightTop1OverflowInner table {
    width: calc(100% - 8px);
    margin: 4px;
    border-collapse: collapse;
}

#adminUsersRightTop1OverflowInner table tr td.left {
    vertical-align: top;
    padding-top: 5px;
}

#adminUsersRightTop1OverflowInner table tr td.leftSelect {
    padding-top: 7px;
}

#adminUsersRightTop1OverflowInner table tr td.right {
    width: 75%;
}

#adminUsersRightTop1OverflowInner table #adminUsersRightTop1ConfigLogin {
    border-top: 15px solid white;
}

#adminUsersRightTop1OverflowInner table #adminUsersRightTop1ConfigLogin #adminUsersRightTop1ConfigLoginInfo {
    font-weight: bold;
}

#adminUsersRightTop1OverflowInner table tr td label {
    position: relative;
    top: -3px;
}

#adminUsersRightTop1OverflowInner table tr td input:not([type='checkbox']) {
    width: 100%;
}

#adminUsersRightTop1OverflowInner #adminUsersRightTop1ConfigOwnerSelect {
    width: 222px;
}

#adminUsersRightTop1OverflowInner #adminUsersRightTop1ButtonSaveHolder {
    position: relative;
    width: 90px;
    height: 28px;
    float: right;
    margin-top: 2px;
    margin-right: 8px;
}

#adminUsersRightTop1OverflowInner .configurationUpdatedInfo {
    float: left;
    line-height: 24px;
    width: calc(100% - 106px);
}

#adminUsers #adminUsersRight #adminUsersRightTop2Overflow {
    width: 50%;
    height: 66%;
    float: left;
    overflow: auto;
}

#adminUsers #adminUsersRight #adminUsersRightTop2OverflowInner {
    /* Hoehe wird per Javascript gesetzt, siehe adminDevices.js.php */
}

#adminUsersRightTop2OverflowInner #adminUsersRightTop2Header {
    font-weight: bold;
    margin: 0 auto 2px;
    text-align: center;
    margin-top: 5px;
}

#adminUsersRightTop2OverflowInner #userConfigurationPermissionsSelection {
    margin: 4px;
    width: calc(100% - 8px);
}

#adminUsersRightTop2OverflowInner #userConfigurationPermissionsSelection tr th {
    text-align: left;
}

#adminUsersRightTop2OverflowInner #userConfigurationPermissionsSelection tr .tdSelect {
    width: calc(100% - 30px);
}

#adminUsersRightTop2OverflowInner #userConfigurationPermissionsSelection tr .tdSelect select {
    width: 100%;
}

#adminUsersRightTop2OverflowInner #userConfigurationPermissionsSelection tr .tdLoader {
    position: relative;
    width: 30px;
}

#adminUsersRightTop2OverflowInner #adminUsersRightTop2PermissionsTable {
    margin: 16px 4px 4px;
    width: calc(100% - 8px);
    border-collapse: collapse;
}

#adminUsersRightTop2OverflowInner #adminUsersRightTop2PermissionsTable #adminUsersRightTop2PermissionsTableDevicesHeadline {
    border-top: 1px solid black;
}

#adminUsersRightTop2OverflowInner #adminUsersRightTop2PermissionsTable tr {
    height: 32px;
    vertical-align: middle;
}

#adminUsersRightTop2OverflowInner #adminUsersRightTop2PermissionsTable tr .tdName {
    padding-left: 4px;
}

#adminUsersRightTop2OverflowInner #adminUsersRightTop2PermissionsTable tr .tdButton {
    width: 34px;
    padding-left: 4px;
    padding-right: 4px;
    position: relative;
}

#adminUsersRightTop2OverflowInner #adminUsersRightTop2PermissionsTable tr .tdDelete {
    width: 28px;
    padding-left: 8px;
    position: relative;
}

#adminUsers #adminUsersRight #adminUsersRightBottom {
    width: 100%;
    height: 34%;
    clear: both;
    border-top: 4px solid silver;
    box-sizing: border-box;
}

#adminUsers #adminUsersRight #adminUsersRightBottom #adminUsersRightBottomLogTableHeader {
    height: 15px;
}

#adminUsers #adminUsersRight #adminUsersRightBottom #adminUsersRightBottomOverflow {
    width: 100%;
    height: calc(100% - 17px);
    overflow: auto;
}

#adminUsers #adminUsersRight #adminUsersRightBottomOverflowInner {
    /* Hoehe wird per Javascript gesetzt, siehe adminDevices.js.php */
}

#adminUsersRightBottom table {
    margin: 1px 4px 0;
    width: calc(100% - 4px);
    font-size: 12px;
}

#adminUsersRightBottom table tr {
    vertical-align: middle;
}

#adminUsersRightBottom table tr .left {
    width: 15%;
}

#adminUsersRightBottom table tr .middle {
    width: 25%;
}

#adminUsersRightBottom table tr .right {
    width: 60%;
}

#deviceDetailsHeader #deviceDetailsHeaderOnlineState {
    float:left;
    height: 23px;
}

#deviceDetailsHeader #deviceDetailsHeaderOnlineState img {
    width: 22px;
    height: 22px;
}

#deviceDetailsHeader #deviceDetailsHeaderDescription {
}

#deviceDetailsHeader #deviceDetailsHeaderCloseButton {
}

#deviceDetails #deviceDetailsTabs {
    text-align: center;
}

#deviceDetails div.page {
    display: none;
    position: relative;
    height: calc(100% - 36px);
    width: 100%;
}

#deviceDetails #deviceDetails1 {
    display: block;
} 

#deviceDetails #deviceDetails1LeftOverflow {
    position: relative;
    height: 100%;
    width: 50%;
    box-sizing: border-box;
    border-right: 1px solid silver;
    float: left;

    /* Untergeordnete Float-Left/Right-Elemente sollen nicht untereinander erscheinen, falls die Breite vom Browserfenster gestaucht wird. */
    overflow: auto;
}

#deviceDetails #deviceDetails1LeftOverflowInner {
    /* Hoehe wird per Javascript gesetzt/berechnet in deviceDetails.js */
}

#deviceDetails #deviceDetails1LeftTop {
    /* Hoehe wird per Javascript gesetzt/berechnet in deviceDetails.js */
    width: 100%;
    height: 50%;
}

#deviceDetails #deviceDetails1LeftTopInfos {
    height: 100%;
}

#deviceDetails #deviceDetails1LeftTopInfosLeft {
    /* Breite wird per Javascript gesetzt/berechnet in deviceDetails.js */
    float: left;
    height: 100%;
    padding: 5px;
    box-sizing: border-box;
}

#deviceDetails #deviceDetails1LeftTopInfosRight {
    /* Hoehe/Breite werden per Javascript gesetzt/berechnet in deviceDetails.js */
    float: right;
    background: rgb(200,200,200);
}

#deviceDetails #deviceDetails1LeftTopInfosOpenWeatherOverflow {
    height: 100%;
    overflow: auto;
    text-align: center;
}

#deviceDetails #deviceDetails1LeftTopInfosOpenWeatherHeader {
    margin: 3px 10px 3px;
    text-align: center;
}

#deviceDetails #deviceDetails1LeftTopInfosOpenWeatherHeaderLink {
    font-size: 14px;
    font-weight: bold;
    color: #909090;
}

#deviceDetails #deviceDetails1LeftTopInfosOpenWeatherIcon {
    min-height: 44px;
    width: 44px;
    height: 44px;
    margin: auto;
}

#deviceDetails #deviceDetails1LeftTopInfosOpenWeatherClouds {
    min-height: 16px;
}

#deviceDetails #deviceDetails1LeftTopInfosOpenWeatherTemp {
    min-height: 16px;
    font-weight: bold;
}

#deviceDetails #deviceDetails1LeftTopInfosOpenWeatherHumidityInfo {
    min-height: 16px;
    margin-top: 5px;
}

#deviceDetails #deviceDetails1LeftTopInfosOpenWeatherHumidity {
    min-height: 16px;
}

#deviceDetails #deviceDetails1LeftTopInfosOpenWeatherPressureInfo {
    min-height: 16px;
    margin-top: 5px;
}

#deviceDetails #deviceDetails1LeftTopInfosOpenWeatherPressure {
    min-height: 16px;
    margin-bottom: 5px;
}

#deviceDetails #deviceDetails1LeftTopInfosOpenWeatherWindSpeedInfo {
    min-height: 16px;
    margin-top: 5px;
}

#deviceDetails #deviceDetails1LeftTopInfosOpenWeatherWindSpeed {
    min-height: 16px;
    margin-bottom: 5px;
}

#deviceDetails #deviceDetails1LeftTopInfosDescription {
    font-size: 14px;
    font-weight: bold;
}

#deviceDetails #deviceDetails1LeftTopInfosType {
    margin-top: 12px;
    font-weight: bold;
}

#deviceDetails #deviceDetails1LeftTopEdit {
    height: 100%;
    display: none;
    padding: 5px;
    box-sizing: border-box;
}

#deviceDetails #deviceDetails1LeftTopEditDescription {
    font-size: 14px;
    font-weight: bold;    
}

#deviceDetails #deviceDetails1LeftTopEdit input {
    width: 60%;
}

#deviceDetails #deviceDetails1LeftTopEdit #deviceDetails1LeftTopEditForm {
    height: calc(100% - 40px);
}

#deviceDetails #deviceDetails1LeftTopEdit #deviceDetails1LeftTopEditFormPostal {
    width: 30%;
}

#deviceDetails #deviceDetails1LeftTopEdit #deviceDetails1LeftTopEditFormAdditional {
    width: 100%;
    font-size: 10px;
    height: 62px;
}

#deviceDetails #deviceDetails1LeftMiddle {
    display: none;
    width: 100%;
    height: 40%;
}

#deviceDetails #deviceDetails1LeftMiddleImg {
    max-width: 100%;
    max-height: calc(100% - 10px);
    margin: 5px auto;
    display: block;
}

#deviceDetails #deviceDetails1LeftBottom {
    /* Hoehe wird per Javascript gesetzt/berechnet in deviceDetails.js */
    height: 50%;
    width: 100%;
    box-sizing: border-box;
}

#deviceDetails #deviceDetails1LeftBottom #deviceDetails1LeftBottomMap {
    height: calc(100% - 25px); /* 25px werden fuer die Buttonleiste - Position setzen/ermitteln - benoetigt */
    width: 100%;
}

#deviceDetails #deviceDetails1Right {
    float: left;
    position: relative;
    width: 50%;
    height: 100%;
    box-sizing: border-box;
}

#deviceDetails #deviceDetails1RightTop {
    height: 44px;
    width: 100%;
    background: rgb(200,200,200);
    box-sizing: border-box;
    float: left;
}

#deviceDetails #deviceDetails1RightTopInfoRefresh {
    width: calc(100% - 200px);
    height: 44px;
    float: left;
    padding-left: 10px;
    box-sizing: border-box;
}

#deviceDetails #deviceDetails1RightTopInfoRefresh #deviceDetails1RightTopInfoRefreshSucceededInfo {
    display: none;
    font-weight: bold;
    line-height: 44px;
}

#deviceDetails #deviceDetails1RightTopInfoRefresh img {
    height: 22px;
    width: 22px;
}

#deviceDetails #lastStatusUpdate {
    padding-left: 5px;
    line-height: 20px;
    font-weight: bold;
}

#deviceDetails #lastStatusUpdate #lastStatusUpdateContent{
    margin-left: 3px;
    font-weight: normal;
}

#deviceDetails #deviceDetails1RightConfigChangedInfo {
    display: none;
    height: 36px;
    font-weight: bold;
    text-align: center;
    margin-top: 2px;
}

#deviceDetails #deviceDetails1RightBottomOverflow {
    height: calc(100% - 44px - 20px);
    width: 100%;
    box-sizing: border-box;    
    overflow: auto;
}

#deviceDetails #deviceDetails1RightBottomOverflowInner {
    padding-top: 2px;
    box-sizing: border-box;
}

#deviceDetails #deviceDetails1RightBottomOverflowInner table {
    width: calc(100% - 8px);
    margin-left: 5px;
    margin-bottom: 20px;
}

#deviceDetails #deviceDetails1RightBottomOverflowInner table tr {
}

#deviceDetails #deviceDetails1RightBottomOverflowInner table tr td {
    /*
    line-height: 22px;
    */
    vertical-align: middle;
}

#deviceDetails #deviceDetails1RightBottomOverflowInner table tr td.left {
    padding-left: 3px;
}

#deviceDetails #deviceDetails1RightBottomOverflowInner table tr td.middle {
    position: relative;
    font-weight: bold;
    width: 60px;
    text-align: center;
    padding-top: 3px;
    padding-bottom: 3px;
}

#deviceDetails #deviceDetails1RightBottomOverflowInner table tr .InputAnalogAlert {
    color: #FF0000;
}

#deviceDetails #deviceDetails1RightBottomOverflowInner table tr td.middle img {
    width: 22px;
    height: 22px;
    /* Vertical-Align MUSS hier im IMG-Element gesetzt werden, statt im uebergeordneten TD-Element! */
    vertical-align: middle;
}

#deviceDetails #deviceDetails1RightBottomOverflowInner table tr td.right {
    width: 170px;
    padding-right: 3px;
    text-align: right;
}

#deviceDetails .deviceDetailsHistoryOverflow {
    height: 100%;
    width: 100%;
    overflow: auto;
}

#deviceDetails .deviceDetailsHistoryOverflow .deviceDetailsHistoryOverflowInner {
    /* Hoehe wird per Javascript gesetzt/berechnet in deviceDetails.js */
}

#deviceDetails .deviceDetailsMessagesTable {
    margin: auto;
    font-size: 12px;
}

#deviceDetails .deviceDetailsMessagesTable tr {
    height: 22px;
    text-align: center;
}

#deviceDetails .deviceDetailsMessagesTable tr th {
    background: white;
    position: sticky;   /* CSS-Trick, damit der Header auch beim Herunterscrollen weiter mit angezeigt wird - siehe https://css-tricks.com/position-sticky-and-table-headers/ */
    top: 0; /* Wird unbedingt benoetigt fuer stickiness */
    
    /*
    box-shadow: 0 2px 6px -1px rgba(0, 0, 0, 0.4);
    */
    
    /*
        Theoretisch koennte man natuerlich auch Header und Body in separate
        Tabellen packen und nur beim Body "overflow: auto" setzen. Aber die
        Tabelle laesst sich dann nicht mehr mittels "margin: auto" zentrieren,
        da dann beim Tabellen-Body margin auf die Fenster-Breite minus der
        Breite des Scrollbalkens angewendet werden wuerde.
        Header und Body waeren also folglich nicht mehr an der gleichen Position
        zentriert. Und ein fester Margin-Left-Wert fuer Header und Body waere
        widerum eine unschoene Loesung, da die Groesse des Detail-Fensters
        von der Bildschirmgroesse abhaengig ist, also eine relative Groesse
        besitzt.
    */
}

#deviceDetails .deviceDetailsMessagesTable tr .td1 {
    width: 300px;
    text-align: left;
    padding-left: 4px;
    padding-right: 4px;
}

#deviceDetails .deviceDetailsMessagesTable tr .td2 {
    width: 160px;
}

#deviceDetails .deviceDetailsMessagesTable tr .td3 {
    width: 160px;
}

#deviceDetails .deviceDetailsMessagesTable tr .td4 {
    width: 100px;
}

#deviceDetails .deviceDetailsMessagesButtonLoadMoreHolder {
    width: 240px;
    height: 26px;
    margin: 8px auto 0;
}

#deviceDetails .windowLeft .picListElem {
    text-align: center;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}

#deviceDetails .windowLeft .picListElem:hover {
    background-color: silver;
}

#deviceDetails .windowLeft .picListElem .divImg {
}

#deviceDetails .windowLeft .picListElem .divComment {
    margin-top: 5px;
    line-height: 12px;
}

#deviceDetails #deviceDetails4RightOverflow {
    height: 100%;
    overflow: auto;
}

#deviceDetails .uploadHeader {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
}

#deviceDetails .windowContent {
    padding: 5px;
    height: 100%;
    box-sizing: border-box;
}

#deviceDetails .windowUpload {
    display: none;
}

#deviceDetails .deviceDetailsContentImgHolder {
    /*
    width: fit-content;
    width: -moz-fit-content;
    margin: auto;
    */
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100% - 46px);
}

#deviceDetails .deviceDetailsContentImgHolder img {
    /* Damit das Image beim Herunter-Scrollen nicht ggfs. von der ueberstehenden, unteren Kante des Tab-Buttons (fuer "Bilder" bzw. "Schaltpläne") ueberdeckt wird. */
    position: relative;
    z-index: 1;
}

#deviceDetails .deviceDetailsContentImg {
    /* Max-Hoehe wird per Javascript gesetzt (siehe deviceDetailsPictures.js.php) */
    max-width: 100%;
    width: auto;
    height: auto;
}

#deviceDetails .deviceDetailsUploadInfo {
    line-height: 24px;
}

#deviceDetails .buttonHolder {
    width: 90px;
    height: 28px;
    float: right;
    margin-top: 2px;
    margin-right: 8px;
}

#deviceDetails .commentShowText {
    text-align: center;
    min-height: 14px;
}

#deviceDetails .commentShowButtonsHolder {
    margin-top: 6px;
    width: 190px;
}

#deviceDetails .commentEdit {
    margin-top: 4px;
    display: none;
}

#deviceDetails .deviceDetailsCommentEditTextArea {
    display: block;
    margin: 0 auto 6px;
}

#deviceDetails #deviceDetails5 {
}

#deviceDetails #deviceDetails5TopOverflow {
    width: 100%;
    height: calc(100% - 114px);
    overflow: auto;
    border-bottom: 1px solid silver;
    box-sizing: border-box;
}

#deviceDetails #deviceDetails5TopOverflow #deviceDetails5TopOverflowInner {
    /* Hoehe wird per Javascript gesetzt/berechnet in deviceDetails.js */
}

#deviceDetails #deviceDetailsDocumentsTable {
    font-size: 13px;
    margin: 5px auto 0;
}

#deviceDetails #deviceDetailsDocumentsTable tr td {
    height: 34px;
    vertical-align: middle;
    cursor: pointer;
}

#deviceDetails #deviceDetailsDocumentsTable tr th {
    text-align: center;
}

#deviceDetails #deviceDetailsDocumentsTable tr .td1 {
    padding-left: 5px;
    padding-right: 5px;
    width: 350px;
}

#deviceDetails #deviceDetailsDocumentsTable tr .td1 .td1DivEdit {
    display: none;
}

#deviceDetails #deviceDetailsDocumentsTable tr .td1 .td1DivEdit .td1DivEditForm {
    width: calc(100% - 82px);
    float: left;
}

#deviceDetails #deviceDetailsDocumentsTable tr .td1 .td1DivEdit .td1DivEditForm input {
    width: 100%;
    height: 21px;
}

#deviceDetails #deviceDetailsDocumentsTable tr .td2 {
    text-align: center;
    width: 60px;
}

#deviceDetails #deviceDetailsDocumentsTable tr .td3 {
    text-align: center;
    width: 130px;
}

#deviceDetails #deviceDetailsDocumentsTable tr .td4 {
    padding-left: 6px;
    width: 90px;
}

#deviceDetails #deviceDetailsDocumentsTable tr .td5 {
    padding-left: 6px;
    width: 30px;
}

#deviceDetails #deviceDetails5Bottom {
    width: 500px;
    height: 108px;
    margin: auto;
}

#deviceDetails #deviceDetails5Bottom #deviceDetails5BottomUploadHeader {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

#deviceDetails #deviceDetails5Bottom #deviceDetails5BottomUploadForm {
    font-size: 12px;
}

#deviceDetails #deviceDetails5Bottom #deviceDetails5BottomUploadForm1 {
    float: left;
    width: 250px;
}

#deviceDetails #deviceDetails5Bottom #deviceDetails5BottomUploadForm2 {
    float: left;
    width: 250px;
}

#deviceDetails #deviceDetails5Bottom #deviceDetails5BottomUploadForm2 input {
    width: 100%;
}

#deviceDetails #deviceDetails5Bottom .deviceDetailsUploadInfo {
    line-height: 36px;
}

#deviceDetails #deviceDetails5Bottom #deviceDetails5BottomUploadButtonSaveHolder {
    margin-top: 8px;
    width: 90px;
}

#deviceDetails #deviceDetails6RightOverflow {
    height: 100%;
    overflow: auto;
}

#deviceDetails #deviceDetails7Left {
    position: relative;
    height: 100%;
    width: 60%;
    box-sizing: border-box;
    border-right: 1px solid silver;
    float: left;

    /* Untergeordnete Float-Left/Right-Elemente sollen nicht untereinander erscheinen, falls die Breite vom Browserfenster gestaucht wird. */
    overflow: auto;
}

#deviceDetails #deviceDetails7LeftTop {
    height: 60px;
    width: 100%;
    background: rgb(200,200,200);
    box-sizing: border-box;
    float: left;
}

#deviceDetails .deviceDetailsCaption {
    line-height: 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

#deviceDetails #deviceDetails7LeftTop #deviceDetails7LeftTopContent {
    width: 100%;
    height: calc(100% - 20px); /* Hoehe von "deviceDetailsCaption" abziehen. */
}

#deviceDetails #deviceDetails7LeftTopContent #deviceDetails7LeftTopContentSendInfo {
    width: calc(100% - 265px);
    height: 100%;
    float: left;
    display: table;
    padding-left: 10px;
    box-sizing: border-box;
}

#deviceDetails #deviceDetails7LeftTopContent #deviceDetails7LeftTopContentSendInfo div {
    font-weight: bold;
    vertical-align: middle;
}

#deviceDetails #deviceDetails7LeftTopContent #deviceDetails7LeftTopContentSendInfo #deviceDetails7LeftTopContentSendInfoChangePossibleText {
    /*
    display: table-cell;
    */
    display: none;
    color: #FF0000;
}

#deviceDetails #deviceDetails7LeftTopContent #deviceDetails7LeftTopContentSendInfo #deviceDetails7LeftTopContentSendInfoChangeNotPossibleText {
    /*
    display: table-cell;
    */
    display: none;
    color: #FF0000;
}

#deviceDetails #deviceDetails7LeftTopContent #deviceDetails7LeftTopContentSendInfo #deviceDetails7LeftTopContentSendInfoSucceededText {
    /*
    display: table-cell;
    */
    display: none;
    color: #00BB00;
}

#deviceDetails #deviceDetails7LeftTopContent #deviceDetails7LeftTopContentSendInfo #deviceDetails7LeftTopContentSendInfoFailedText {
    /*
    display: table-cell;
    */
    display: none;
    color: #FF0000;
}

#deviceDetails #deviceDetails7LeftBottomOverflow {
    width: 100%;
    height: calc(100% - 60px);
    float: left;
    box-sizing: border-box;    
    overflow: auto;
}

#deviceDetails #deviceDetails7LeftBottomOverflowInner {
    /* Hoehe wird per Javascript gesetzt/berechnet in deviceDetails.js */
}

#deviceDetails #deviceDetails7LeftBottom1 {
    text-align: center;
    padding-top: 5px;
    height: 62px;
}

#deviceDetails #deviceDetails7LeftBottom1 table {
    float: right;
    margin-right: 14px;
    border-collapse: collapse;
    border: 2px solid black;
    text-align: center;
    font-size: 10px;
    width: 160px;
}

#deviceDetails #deviceDetails7LeftBottom1 table th {
    border-bottom: 2px solid black;
}

#deviceDetails #deviceDetails7LeftBottom1 table tr td {
    padding: 2px;
}

#deviceDetails #deviceDetails7LeftBottom1 table tr .blockEnd {
    border-right: 2px solid black;
}

#deviceDetails #deviceDetails7LeftBottom1 #deviceDetails7LeftBottom1DipSwitchesOld, #deviceDetails7LeftBottom1DipSwitchesS3 {
    display: none;
}

#deviceDetails #deviceDetails7LeftBottom1 #deviceDetails7LeftBottom1DipSwitchesOld tr td {
    width: 14.28%;
}

#deviceDetails #deviceDetails7LeftBottom1 #deviceDetails7LeftBottom1DipSwitchesS3 tr td {
    width: 25%;
}

#deviceDetails #deviceDetails7LeftBottom1 #deviceDetails7SelectModuleType {
    float: right;
    width: 320px;
    margin-right: 188px;
}

#deviceDetails #deviceDetails7LeftBottom2 {
    position: relative;
    width: 400px;
    height: 125px;
    margin: 4px auto 0;
}

#deviceDetails #deviceDetails7LeftBottom2 #deviceDetails7SelectedModuleImg{
}

#deviceDetails .deviceDetailsModuleMaskElemDefault {
    position: absolute;
    cursor: pointer;
    border: 0;
    box-sizing: border-box;
    padding: 1px;
}

#deviceDetails .deviceDetailsModuleMaskElemActive {
    background-color: rgba(0, 128, 0, 0.4);
}

#deviceDetails .deviceDetailsModuleMaskElemS3Input {
    width: 68px;
    height: 12px;
    padding: 2px;
}

#deviceDetails .deviceDetailsModuleMaskElemS3Input > img {
    position: relative;
    top: -7px;
    width: 62px;
    height: 6px;
}

#deviceDetails .deviceDetailsModuleMaskElemS3Output {
    width: 10px;
    height: 10px;
}

#deviceDetails .deviceDetailsModuleMaskElemS3Output > img {
    position: relative;
    top: -6px;
    width: 6px;
    height: 6px;
}

#deviceDetails .deviceDetailsModuleMaskElemS3ExtenderVertical {
    padding: 2px;
    width: 12px;
    height: 25px;
}

#deviceDetails .deviceDetailsModuleMaskElemS3ExtenderVertical > img {
    width: 6px;
    height: 19px;
}

#deviceDetails .deviceDetailsModuleMaskElemS5 {
    width: 11px;
    height: 11px;
}

#deviceDetails .deviceDetailsModuleMaskElemS5 > img {
    width: 7px;
    height: 7px;
    position: absolute;
}

#deviceDetails .deviceDetailsModuleMaskElemS6 {
    width: 22px;
    height: 11px;
}

#deviceDetails .deviceDetailsModuleMaskElemS6 > img {
    width: 18px;
    height: 7px;
    position: absolute;
}

#deviceDetails .deviceDetailsModuleMaskElemNormalExtender {
    width: 11px;
    height: 24px;
    padding-top: 3px;
    padding-bottom: 3px;
}

#deviceDetails .deviceDetailsModuleMaskElemNormalExtender > img {
    width: 7px;
    height: 15px;
}

#deviceDetails .deviceDetailsModuleMaskElemDefault > img {
    visibility: hidden;
}

#deviceDetails .deviceDetailsModuleMaskElemSelected {
    border: #FF0000 solid 1px;
}

#deviceDetails .deviceDetailsModuleMaskElemSelected > img {
    visibility: visible;
}

#deviceDetails .deviceDetailsModuleMaskElemDefault:hover {
    border: #FF0000 solid 1px;
}

#deviceDetails .deviceDetailsModuleMaskElemDefault:hover > img {
    visibility: visible;
}

#deviceDetails #deviceDetails7LeftBottom3 {
    font-size: 12px;
}

#deviceDetails #deviceDetails7LeftBottom3_1 {
    width: 430px;
    height: 22px;
    margin: 0 auto;
}

#deviceDetails #deviceDetails7LeftBottom3_1Info {
    width: 230px;
    float:left;
    line-height: 20px;
    font-weight: bold;
}

#deviceDetails #deviceDetails7LeftBottom3_1ButtonSaveHolder, #deviceDetails7LeftBottom3_1ButtonDeleteHolder {
    position: relative;
    margin-left: 10px;
    width: 90px;
    float: left;
}

#deviceDetails #deviceDetails7LeftBottom3_2 {
    width: 380px;
    min-height: 14px;
    margin: 0 auto;
    font-weight: bold;
    text-align: center;
}

#deviceDetails #deviceDetails7LeftBottom3_3Config, #deviceDetails7LeftBottom3_3Diana {
    margin: 0 auto;
    text-align: left;
    line-height: 20px;
}

#deviceDetails #deviceDetails7LeftBottom3_3Buttons {
    width: 242px;
    height: 20px;
    margin: 5px auto 0;
}

#deviceDetails #deviceDetails7LeftBottom3_3Config {
    width: 380px;
    
    display: block;
}

#deviceDetails7LeftBottom3 label {
    position: relative;
    top: -2px;
    font-size: 13px;
}

#deviceDetails7LeftBottom3_3ConfigOutputDigital, #deviceDetails7LeftBottom3_3ConfigInputDigital, #deviceDetails7LeftBottom3_3ConfigInputAnalog {
    display: none;
}

#deviceDetails7LeftBottom3_3ConfigInputAnalog {
    display: block;
}

#deviceDetails7LeftBottom3_3Config table {
}

#deviceDetails7LeftBottom3_3Config, #deviceDetails7LeftBottom3_3Diana table {
    margin: 0 auto;
}

#deviceDetails7LeftBottom3_3Config table .left {
    vertical-align: top;
    font-weight: bold;
    padding-top: 4px;
    min-width: 124px;
}

#deviceDetails7LeftBottom3_3Config table tr#deviceDetails7LeftBottom3_3ConfigOutputDigitalInversionHolder td.right {
    padding-top: 3px;
}

#deviceDetails7LeftBottom3_3Config table tr#deviceDetails7LeftBottom3_3ConfigOutputDigitalHiddenHolder td.right {
    padding-top: 3px;
}

#deviceDetails7LeftBottom3_3Config table tr#deviceDetails7LeftBottom3_3ConfigInputDigitalHiddenHolder td.right {
    padding-top: 3px;
}

#deviceDetails7LeftBottom3_3Config table tr#deviceDetails7LeftBottom3_3ConfigInputAnalogHiddenHolder td.right {
    padding-top: 3px;
}

#deviceDetails7LeftBottom3_3Config table tr#deviceDetails7LeftBottom3_3ConfigInputAnalogNoAlertingHolder td.right {
    padding-top: 3px;
}

.deviceDetails7LeftBottom3InputValueType1 {
    width: 48px;
}

.deviceDetails7LeftBottom3InputValueType2 {
    width: 80px;
}

.deviceDetails7LeftBottom3InputValueType3 {
    width: 260px;
}

#deviceDetails7LeftBottom3_3Diana {
    display: none;
}

#deviceDetails7LeftBottom3_3Diana table thead {
    font-weight: bold;
    text-align: center;
}

#deviceDetails7LeftBottom3_3Diana table .left {
    vertical-align: middle;
    font-weight: bold
}

#deviceDetails7LeftBottom3_3Diana .dianaColumn1 {
    width: 60px;
}
#deviceDetails7LeftBottom3_3Diana .dianaColumn2 {
    width: 180px;
}
#deviceDetails7LeftBottom3_3Diana .dianaColumn3 {
    width: 200px;
}

#deviceDetails7LeftBottom3_3DianaConfig {
    width: 440px;
    margin: 0 auto;
}

#deviceDetails7LeftBottom3_3DianaConfigInputDigital {
    /*
    display: table-row-group;
    */
    display: none;
}

#deviceDetails7LeftBottom3_3DianaConfigInputAnalog {
    /*
    display: table-row-group;
    */
    display: none;
}

#deviceDetails7LeftBottom3_3DianaConfigVariable {
    height: 23px;
}

#deviceDetails7LeftBottom3_3DianaIndentureLevel {
    width: 430px;
    margin: 0 auto;
}

#deviceDetails7LeftBottom3_3DianaIndentureLevelHeader {
    font-weight: bold;
    text-decoration: underline;
}

#deviceDetails7LeftBottom3_3DianaIndentureLevel table {
    margin: 0 auto;
}

#deviceDetails7LeftBottom3_3DianaIndentureLevel table .left {
    width: 160px;
}
#deviceDetails7LeftBottom3_3DianaIndentureLevel table .left select {
    width: 160px;
    height: 23px;
}
#deviceDetails7LeftBottom3_3DianaIndentureLevel table .middle {
    width: 180px;
}
#deviceDetails7LeftBottom3_3DianaIndentureLevel table .right {
    width: 40px;
}

#deviceDetails #deviceDetails7Right {
    float: left;
    position: relative;
    width: 40%;
    height: 100%;
    box-sizing: border-box;
}

#deviceDetails #deviceDetails7Right #deviceDetails7RightPossibleSmsTargetsInfo {
    margin-top: 20px;
    margin-left: 10px;
}

#deviceDetails #deviceDetails7Right #deviceDetailsRightPossibleSmsTargetsSelection {
    float: left;
    width: calc(100% - 52px);
    margin-left: 10px;
}

#deviceDetails #deviceDetails7Right #deviceDetailsRightSelectedSmsTargetsTable {
    width: calc(100% - 20px);
    table-layout: fixed;
    padding-top: 15px;
    font-size: 13px;
    margin-left: 10px;
}

#deviceDetails #deviceDetails7Right #deviceDetailsRightSelectedSmsTargetsTable tr {
    height: 32px;
}

#deviceDetails #deviceDetails7Right #deviceDetailsRightSelectedSmsTargetsTable tr td {
    padding: 2px;
    word-break: break-word;
}

#deviceDetails #deviceDetails7Right #deviceDetailsRightSelectedSmsTargetsTable .smsTargetColumn1 {
    width: 30%;
}
#deviceDetails #deviceDetails7Right #deviceDetailsRightSelectedSmsTargetsTable .smsTargetColumn2 {
    width: 25%;
}
#deviceDetails #deviceDetails7Right #deviceDetailsRightSelectedSmsTargetsTable .smsTargetColumn3 {
    width: 45%;
}
#deviceDetails #deviceDetails7Right #deviceDetailsRightSelectedSmsTargetsTable .smsTargetColumn4 {
    width: 27px;
    padding-left: 3px;
}

#deviceDetails #deviceDetails8LogTable {
    width: 90%;
}

#deviceDetails #deviceDetails8LogTable tr .td1 {
    padding: 0;
    text-align: center;
    width: 150px;
}

#deviceDetails #deviceDetails8LogTable tr .td2 {
    padding-left: 4px;
    padding-right: 4px;
    text-align: left;
    width: 180px;
}

#deviceDetails #deviceDetails8LogTable tr .td3 {
    padding-left: 4px;
    padding-right: 4px;
    text-align: left;
    width: calc(100% - 320px);
}

/* Openlayers-Werbe-Link ausblenden */
.ol-attribution.ol-uncollapsible {
    display: none;
}
