/* @CHARSET "ISO-8859-15"; */

/*
	COMMON 2WCOM STYLE
	Version: 1.0

	History:
		1.0 ojepsen (10.07.2018):
			Erstellung

		2.0 rmagnussen, ojepsen (01.03.2019)
			Neues Web-Interface-Layout und -Design

*/


/* ######################################################## Color Definitions */
/* Important Note:
   Internet Explorer does not support CSS vars.
   Therefore everywhere where the CSS vars are used a corresponding CSS entry with the direct color value is added.
   This makes the the CSS vars somehow useless.
   BUT: They are at least still a (very important) comment like addon.
   When we someday drop IE support we can delete the direct color entries.
*/
:root {
  --light-blue-color: #88aabb;
  --blue-color: #285a8c;
  --dark-blue-color: #224c76;
  --white-color: #ffffff;
  --light-grey-color: #efefef;
  --light-grey-color-filter: invert(97%) sepia(6%) saturate(411%) hue-rotate(303deg) brightness(112%) contrast(87%);
  --medium-grey-color: #cccccc;
  --medium-grey-color-filter: invert(95%) sepia(24%) saturate(0%) hue-rotate(121deg) brightness(87%) contrast(83%);
  --disabled-grey-color: #aaaaaa;
  --disabled-grey-color-filter: invert(78%) sepia(0%) saturate(7%) hue-rotate(217deg) brightness(86%) contrast(93%);
  --dark-grey-color: #585858;
  --dark-grey-color-filter: invert(33%) sepia(0%) saturate(32%) hue-rotate(140deg) brightness(101%) contrast(92%);
  --black-color: #3c3c3c;
  --black-color-filter: invert(18%) sepia(0%) saturate(0%) hue-rotate(165deg) brightness(100%) contrast(82%);
  --green-color: #23af8c;
  --dark-green-color: #1e9476;
  --disabled-green-color: #99CCBB;
  --orange-color: #f3943e;
  --dark-orange-color: #d48336;
  --red-color: #e61f38;
  --dark-red-color: #cf1d35;
  /* Note: Please also add new entries in global_functions.js / loadCssVariables() */
}


/* ######################################################## globale formatierung */
* {
	padding: 0;
	margin: 0;
}


/* Blendet alle SW relevanten Werte aus*/
.swDeviceField {
	display: none;
}

html,body{
	margin:0;
	padding:0;
	border:none;
	font-family: 'Source Sans Pro', Calibri, FreeSans, sans-serif;
	font-size: 13px;
	color: #3c3c3c;
	color: var(--black-color);
	background-color: #efefef;
	background-color: var(--light-grey-color);
	cursor:default;
}

#globalDiv {
	position: relative;
	width:1350px; /* navi 235 + 15 (margin-left) + content 1100 = 1350*/
	margin:0 auto;
	text-align:left;
	display: flex;
}

.B1{
	position:relative;
	margin:0px;
	padding:0px 10px 10px 10px;
	overflow:hidden;
}

.B2{
	position:relative;
	background-color:white;
	/* overflow:hidden; */
	padding: 15px;
	padding-top: 1px;
	margin-bottom: 15px;
}


.B2.B2right{
	float:right;
	margin:0px;
	width: 47%;
}
.B2.B2left{
	float:left;
	margin:0px;
	width: 47%;
}

.B2 table{
	position:relative;
	width:100%;
}

.B2 table td, .B2 table th{
	line-height:16px;
}

.B2 .fL100
{
	float:left;
	width:100%;
}
.B2 .fL32
{
	float:left;
	width:32%;
}
.B2 .fL33
{
	float:left;
	width:33%;
}
.B2 .fL48
{
	float:left;
	width:48%;
}
.B2 .fL49
{
	float:left;
	width:49%;
}
.B2 .fL65
{
	float:left;
	width:65%;
}

.B2 .fR65
{
	float:right;
	width:65%;
}
.B2 .fR49
{
	float:right;
	width:49%;
}
.B2 .fR48
{
	float:right;
	width:48%;
}
.B2 .fR33
{
	float:right;
	width:33%;
}
.B2 .fR32
{
	float:right;
	width:32%;
}


/*.B3 {
	background-color: white;

	box-sizing: border-box;
}*/

.B3 {
	background-color: #efefef;
	background-color: var(--light-grey-color);
	padding: 10px;
	box-sizing: border-box;
}

.B3.B3_ledStrip{
	/* padding-left: 16px; */
	position: relative;
	border-width: 0px;
}


#container {
    /* left: 245px;
    position: absolute; */
    /* top: 0; */
    width: 1100px;
	padding-left: 15px;
	/* padding-right: 15px; */
	flex-shrink: 0;
}

#contentContainer {
    position: relative;
}




/* ######################################################## HEADER CONTAINER */
#headerContainer {
	width: 1100px;
}
/* ######################################### HEADER */

#header {
    width: 100%;
    height: 110px;
    position: relative;
	background-color: #3c3c3c;
	background-color: var(--black-color);
	margin-top: 15px;
	display: flex;
}

#header .space{
	flex-shrink: 1; 
	flex-wrap: nowrap; 
	overflow: hidden; 
	flex-basis:  auto !important; 
	width: 50px;
}

#header #deviceNameCon {
	/* display: inline-block; */
	font-size: 23px;
	color: white;
	vertical-align: top;
	position: relative;
	width: 120px;
	margin-left: 20px;
	margin-right: 10px;
}

#header #deviceNameCon table{
	margin-top: 15px;
}

#header #deviceNameCon #deviceSubName {
	font-size: 11pt;
}

#header #deviceInfo{
	/* display: inline-block; */
	position: relative;
	width: 300px;
	margin-right: 10px;
}

#header  #deviceInfo table{
    border-spacing: 0px;
	width: 100%;
	margin-top: 20px;
}

#header  #deviceInfo table th{
	width:30%;
	line-height: 22px;
	font-size: 13px;
	font-weight:bold;
	text-align:left;
	border-bottom: 1px solid #585858;
	border-bottom: 1px solid var(--dark-grey-color);
	color: #efefef;
	color: var(--light-grey-color);
}
#header  #deviceInfo table td{
	width:70%;
	line-height: 22px;
	font-size: 13px;
	font-weight:normal;
	text-align:left;
	max-width:178px;
	overflow:hidden;
	border-bottom: 1px solid #585858;
	border-bottom: 1px solid var(--dark-grey-color);
	color: #efefef;
	color: var(--light-grey-color);
}

#header #ledBlockNew {
	/* display: inline-block; */
	flex-grow: 0;
	position: relative;
	vertical-align: top;
	width: 170px;
	margin-right: 10px;
}

#header #ledBlockNew table{
	margin-top: 20px;
}

#header #ledBlockNew table tr{
	line-height: 23px;
}

#header #ledBlockNew table th {
	color:#efefef;
	color:var(--light-grey-color);
	font-size: 13px;
	font-weight:bold;
}

#header #ledBlockNew table td div {
	width: 20px;
	height: 20px;
	border-radius: 10px;
	margin: unset;
	display: block;
}

#header #icy_player {
	flex-shrink: 0;
	margin-left: auto;
	order: 2; /*flex style*/
	position: relative;
	width: 340px;
	vertical-align: top;
	margin-right: 10px;
}

#header #icy_source{
    border-bottom: 1px solid var(--dark-grey-color);
	display: inline-block;
	margin-top: 20px;
}

#header #icy_label {
    color: white;
    font-weight: bold;
    line-height: 22px;
    width: 80px;
    display: inline-block;
}

#header #icy_button {
	display: inline-block;
}

#header #icy_volCon {
    display: inline-block;
	margin-top: 13px;
	height: 30px;
	width: 62px;
	margin-left: 30px;
	cursor: pointer;
	position: absolute;
}

#header #icy_vol0{	height: 4px; }
#header #icy_vol1{	height: 8px; }
#header #icy_vol2{	height: 12px;}
#header #icy_vol3{	height: 16px;}
#header #icy_vol4{	height: 20px;}
#header #icy_vol5{	height: 24px;}
#header #icy_vol6{	height: 28px;}

#icy_volCon div{
    display: inline-block;
	background-color: white;
	position:relative;
	width: 6px;
	box-sizing: border-box;
}
#icy_volCon div.hover{
	background-color: #23af8c;
	background-color: var(--green-color);
}

/* SMALL VIEW */
#smallNaviCon{
	z-index: 1000;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
}

#smallNaviCon #nav_left{
	position: absolute; 
	z-index: 1001;
	display: block !important;
	margin-top: 0px;
	width: 235px;
	background-color: #efefef;
	background-color: var(--light-grey-color);
}
#smallNaviCon #nav_left .support{
	margin-bottom: 0px !important;
}
#smallNaviCon #nav_left .top a#logo{
	pointer-events:none;
}

#nav_left .btn_pin{
	display: none;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 36px;
	height: 36px;
	cursor: pointer;
}

#nav_left .btn_pin div{
	position: absolute;
	left: 10px;
	top: 10px;
}

body.smallView #nav_left .btn_pin
{
	display: block;
}
#nav_left .btn_pin.active.show
{
	display: block;
	top: 15px;
}
#nav_left .btn_pin:hover div{
	/*Color: #ffffff  Source: https://codepen.io/sosuke/pen/Pjoqqp */
	filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(27deg) brightness(104%) contrast(102%);
}


#header #nav_btnCon{
	width: 60px;
	height: 100%;
	background-color: #efefef ;
	/* border-right: 15px solid #efefef; */
}

#header #nav_btnCon div.btn{
	width: 48px;
	height: 100%;
	background-color: #285a8c;
	background-color: var(--blue-color);
	cursor: pointer;
}

#header #nav_btnCon div.btn div{
	margin: auto;
	height: 32px;
	position: relative;
	background-repeat: no-repeat;
}

#header #nav_btnCon div.btn div.logo{
	background-image: url(../../cwi/images/logo_2wcom.png);
	background-position: -84px 5px;
	 background-size: 118px;
	height: 32px; 
	top: 12px;
	left: 4px;
}
#header #nav_btnCon div.btn div.menu{
	background-image: url(../../cwi/images/icon_menu.png);
	background-position: 0px 4px;
	width: 32px;
	background-size: 32px;
	top: 28px;
}

#header #nav_slideCon {
	display: none;
	position: fixed;
	left: 0px;
	height: 100%;
	width: 15px;
	top: 0px;
}

body.smallView #header #nav_slideCon{
	display: block;
}

#header #nav_slideBtn{
	position: fixed;
	left: 0px;
	top: 0px;
	height: 100%;
	width: 8px;
	position: fixed;
	display: none;
	cursor: pointer;
	z-index: 1;
	background-color: #285a8c;
	background-color: var(--blue-color);
}

@media (max-width: 1278px) {
	body.smallView #nav_left {
		display: none;
	}
}
/* ######################################### HEADER  END */

/* ######################################### NOTIFICATION BAR START */
#headerContainer #notificationBar{
	height: 30px;
	width: 100%;
	display: none;
	background-color: #3c3c3c;
	background-color: var(--black-color);
	margin-top: 5px;
	color: white;
}

#headerContainer #notificationBar.show,
#headerContainer #notificationBar.show >div{
	display: flex;
	justify-content: center;
  	align-items: center;
}

#headerContainer #notificationBar.show .confirmBtn
{
	margin: 0px 15px;
}
/* ######################################### NOTIFICATION BAR END */
/* ######################################################## HEADER CONTAINER END */


#content{
	background-color:#efefef;
	background-color:var(--light-grey-color);
}


.caption1{
	font-size: 27px;
	width:100%;
	padding-bottom: 5px;
	display: flex;
}

.caption2, .caption2Line, .caption2_1{
	font-size: 20px;
	position: relative;
	margin-top: 11px;
	margin-bottom: 3px;
}

span.caption2_enh{
	font-size: 14px;
	position: relative;
	bottom: 3px;
	left: 8px;
}

.ui-dialog .caption2,
.ui-dialog .caption2_1,
.ui-dialog .caption2Line
{
	font-size: 17px;
}

.caption2Line{
	border-bottom: 1px solid #585858;
	border-bottom: 1px solid var(--dark-grey-color);
}

.caption3, .caption3_1, .caption4, .caption4_1{
	line-height:20px;
	font-weight:normal;
	min-height: 21px;
	border-bottom: 1px solid #cccccc;
	border-bottom: 1px solid var(--medium-grey-color);
}
.caption3, .caption3_1{
	margin-top:14px;
	margin-bottom:6px;
	font-size: 15px;
}

.caption4, .caption4_1{
	margin-top:10px;
	margin-bottom:3px;
	font-size: 13px;
	padding-left: 5px;
}

.caption2_1, .caption3_1, .caption4_1{
	margin-top:0px;
}

.caption2_2, .caption3_2, .caption4_2{
	margin-top:5px;
}


.captionLine{
	margin-top:3px;
	margin-bottom:3px;
	font-size: 13px;
	line-height:20px;
	font-weight:bold;
	min-height: 9px;
	border-bottom: 2px solid #005ea8;
}

.dividerLine{
	margin-top: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #cccccc;
	border-bottom: 1px solid var(--medium-grey-color);
}

.bottomLine, tr.bottomLine th, tr.bottomLine td{
	border-bottom: 1px solid #cccccc;
	border-bottom: 1px solid var(--medium-grey-color);
}

#footer{
	color:#005ea8;
	background-color:#005ea8;
	padding:5px 0 5px 10px;
	margin:5px 0 5px 0;
	line-height:16px;
	color:white;
}

.flexCon_center,
.fC{
	display: flex !important;
	align-items: center;
	justify-content: center;
}


.flexCon_vCenter,
.fvC{
	display: flex !important;
	align-items: center;
}

.fvB{
	display: flex !important;
	align-items: flex-end
}

.flexCon_hCenter,
.fhC{
	display: flex !important;
	justify-content: center;
}

.flexCon_hRight,
.fhR{
	display: flex !important;
	justify-content: flex-end;
}

.flexCon_hLeft,
.fhL{
	display: flex !important;
	justify-content: flex-start;
}

.flexCon_hSpace,
.fhS{
	display: flex !important;
	justify-content: space-between;
}

.flexCon_space{
	display: flex;
	justify-content: space-between;
}

.flexCon_space > .B2,
.flexCon_space > div:not([class*='flex_spacer']):not([class*='flex_w'])
{
	flex-shrink: 1;
	flex-basis: 50%;
	flex-wrap: nowrap;
	overflow: hidden;
}
.flexCon_space > div{
	box-sizing:border-box;
}

.flex_Xp {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis:  auto !important; flex-grow: 1;}
.flex_Auto {flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis:  auto !important; flex-grow: 1000;}
.flex_0p {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis:  0% !important; }
.flex_5p {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis:  5% !important; }
.flex_7p {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis:  7% !important; }
.flex_8p {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis:  8% !important; }
.flex_9p {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis:  9% !important; }
.flex_10p {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis: 10% !important; }
.flex_15p {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis: 15% !important; }
.flex_20p {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis: 20% !important; }
.flex_25p {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis: 25% !important; }
.flex_30p {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis: 30% !important; }
.flex_33p {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis: 33% !important; }
.flex_35p {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis: 35% !important; }
.flex_40p {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis: 40% !important; }
.flex_45p {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis: 45% !important; }
.flex_50p {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis: 50% !important; }
.flex_55p {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis: 55% !important; }
.flex_60p {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis: 60% !important; }
.flex_65p {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis: 65% !important; }
.flex_66p{	flex-shrink: 1;	flex-wrap: nowrap; overflow: hidden; flex-basis: 66% !important; }
.flex_70p {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis: 70% !important; }
.flex_75p {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis: 75% !important; }
.flex_80p {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis: 80% !important; }
.flex_85p {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis: 85% !important; }
.flex_90p {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis: 90% !important; }
.flex_95p {	flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis: 95% !important; }
.flex_100p {flex-shrink: 1; flex-wrap: nowrap; overflow: hidden; flex-basis: 100% !important; }

.flex_w5, 	.flex_spacer5	{	flex-shrink: 0;	flex-grow: 0; flex-basis: 5px !important; }
.flex_w10, 	.flex_spacer10	{	flex-shrink: 0;	flex-grow: 0; flex-basis: 10px !important; }
.flex_spacer, /* 15px = perfect width :) -> default! */
.flex_w15, 	.flex_spacer15	{	flex-shrink: 0;	flex-grow: 0; flex-basis: 15px !important;	}
.flex_w20, 	.flex_spacer20	{	flex-shrink: 0;	flex-grow: 0; flex-basis: 20px !important;	}
.flex_w25, 	.flex_spacer25	{	flex-shrink: 0;	flex-grow: 0; flex-basis: 25px !important;	}
.flex_w30, 	.flex_spacer30	{	flex-shrink: 0;	flex-grow: 0; flex-basis: 30px !important;	}
.flex_w35, 	.flex_spacer35	{	flex-shrink: 0;	flex-grow: 0; flex-basis: 35px !important;	}
.flex_w40, 	.flex_spacer40	{	flex-shrink: 0;	flex-grow: 0; flex-basis: 40px !important;	}
.flex_w45, 	.flex_spacer45	{	flex-shrink: 0;	flex-grow: 0; flex-basis: 45px !important; 	}
.flex_w50, 	.flex_spacer50	{	flex-shrink: 0;	flex-grow: 0; flex-basis: 50px !important; 	}
.flex_w60, 	.flex_spacer60	{	flex-shrink: 0;	flex-grow: 0; flex-basis: 60px !important; 	}
.flex_w75, 	.flex_spacer75	{	flex-shrink: 0;	flex-grow: 0; flex-basis: 75px !important; 	}
.flex_w80, 	.flex_spacer80	{	flex-shrink: 0;	flex-grow: 0; flex-basis: 80px !important; 	}
.flex_w90, 	.flex_spacer90	{	flex-shrink: 0;	flex-grow: 0; flex-basis: 90px !important; 	}
.flex_w100, .flex_spacer100	{	flex-shrink: 0;	flex-grow: 0; flex-basis: 100px !important; }
.flex_w150, .flex_spacer150	{	flex-shrink: 0;	flex-grow: 0; flex-basis: 150px !important;	}
.flex_w160					{	flex-shrink: 0;	flex-grow: 0; flex-basis: 160px !important;	}
.flex_w165					{	flex-shrink: 0;	flex-grow: 0; flex-basis: 165px !important;	}
.flex_w170					{	flex-shrink: 0;	flex-grow: 0; flex-basis: 170px !important;	}
.flex_w175					{	flex-shrink: 0;	flex-grow: 0; flex-basis: 175px !important;	}
.flex_w180					{	flex-shrink: 0;	flex-grow: 0; flex-basis: 180px !important;	}
.flex_w185					{	flex-shrink: 0;	flex-grow: 0; flex-basis: 185px !important;	}
.flex_w190					{	flex-shrink: 0;	flex-grow: 0; flex-basis: 190px !important;	}
.flex_w195					{	flex-shrink: 0;	flex-grow: 0; flex-basis: 195px !important;	}
.flex_w200					{	flex-shrink: 0;	flex-grow: 0; flex-basis: 200px !important;	}
.flex_w205					{	flex-shrink: 0;	flex-grow: 0; flex-basis: 205px !important;	}
.flex_w210					{	flex-shrink: 0;	flex-grow: 0; flex-basis: 210px !important;	}
.flex_w215					{	flex-shrink: 0;	flex-grow: 0; flex-basis: 215px !important;	}
.flex_w220					{	flex-shrink: 0;	flex-grow: 0; flex-basis: 220px !important;	}
.flex_w225					{	flex-shrink: 0;	flex-grow: 0; flex-basis: 225px !important;	}
.flex_w230					{	flex-shrink: 0;	flex-grow: 0; flex-basis: 230px !important;	}
.flex_w235					{	flex-shrink: 0;	flex-grow: 0; flex-basis: 235px !important;	}
.flex_w240					{	flex-shrink: 0;	flex-grow: 0; flex-basis: 240px !important;	}

.flexCon_space [class^=flex_spacer] .flex_line{
	width: 3px;
	background-color: white;
	height: 100%;
	margin: 0 auto
}

/* ######################################################## dialog */
.D1{
	position:relative;
	margin:0px;
	padding:15px;
	background-color: #efefef !important;
	background-color: var(--light-grey-color) !important;
	border:0px;
	overflow:visible;
}

.D2{
	position:relative;
	margin:0px;
	padding:15px !important;
	background-color:#FFF !important;
	border:0px;
	overflow:visible;
}

.D2Tabs .D2{
	border: 1px solid #3c3c3c;
	border: 1px solid var(--black-color);
}

.D2 table{
	position:relative;
	width:100%;
}

.D3 {
	background-color: #efefef;
	background-color: var(--light-grey-color);
	padding: 10px;
	box-sizing: border-box;
}

/*
.D2 table{
	position:relative;
	background-color:#eeeeee;
	border:1px solid #000;
	width:100%;
	border-radius:4px;
	font-size: 10px;
	border-spacing: 0;
	padding: 3px;
}

.D2 table td{
	height:21px;
}

.D2 table th{
	height:21px;
	text-align: left;
} */

.D2 table td.small{
	text-align:center;
	line-height:16px;
	font-size: 10px;
	width:60px;
}

.D2 table td.rb{
	text-align:right;
	white-space:nowrap;
	vertical-align:bottom;
}

.D2 td, .D2 th{
    font-size: 13px !important;
    height: 27px;
    margin: 0;
	padding: 0;
    position: relative;
	text-align: left;
	box-sizing:border-box;
}



/* ######################################################## navi TOP*/
#nav_top{
    background-color: #005ea8;
    font-size: 13px;
    height: 31px;
    line-height: 18px;
    margin-top: 0;
    padding: 0;
    width: 1046px;
    z-index: 1000010;
}

#nav_top a{
	text-decoration:none;
	border-right:1px solid #FFF;
	padding:4px 32px;
	color:#FFF;
	float:left;
}

#nav_top a:hover{
	color:#333;
	background-color:#C6D6F6;
}

#nav_top .itemsel{
	background-color:#B3C5EA;
	margin-left:0;
	color:#333;
}

#nav_top .itemsel:hover{
	background-color:#B3C5EA;
}

#nav_top .wait{
	margin:5px 0 0 26px;
}

#nav_top #logoutButton{
	padding: 0px;
	line-height: 10px;
	min-width: 100px;
	border:none;
	cursor:pointer;
	height: 26px;
}


/* ######################################################## navi LEFT*/
#nav_left{
	/* position:absolute; */
	top:0px;
	/* left:5px; */
	width:235px;
	/* padding:0 5px 0 0; */
	margin-top: 15px;
	/* margin-right: 15px; */
}

#nav_left p,#nav_left a{
	margin:0;
	padding:2px 0;
}

#nav_left .top{
	margin:0;
}

#nav_left .top #logo{
	height:110px;
	padding:0;
	margin:0;
	display:block;
	background-color: #285a8c;
	background-color: var(--blue-color);
	background:url(../../cwi/images/logo_2wcom.png) no-repeat center center #285a8c;
	background:url(../../cwi/images/logo_2wcom.png) no-repeat center center var(--blue-color);
}


#nav_left .bottom{
	margin:0 0 5px 0;
	background-color: #285a8c;
	background-color: var(--blue-color);
	padding-bottom: 15px;
}

#nav_left .support{
	margin-top:15px;
	background-color:#23af8c;
	background-color:var(--green-color);
	padding: 10px 0px;
}

#nav_left .support .header{
	font-weight:bolder;
	padding:1px 5px 5px 15px;
	color: white;
	font-size: 17px;
}

#nav_left .item{
	font-weight:bolder;
	padding:15px 5px 1px 15px;
	background-color: #285a8c;
	background-color: var(--blue-color);
	color: white;
	font-size: 17px;
}




#nav_left a,
#nav_left #logout_form > span{
	display:block;
	text-decoration:none;
	color:#efefef;
	color:var(--light-grey-color);
	background-color:#285a8c;
	background-color:var(--blue-color);
	padding:1px 5px 1px 15px;
	font-size: 14px;
	cursor:pointer;
	outline: none;
}

#nav_left #logout_form > span{
	font-size: 13px;
	font-style: italic;
	cursor:default;
	color:#aaaaaa;
	color:var(--disabled-grey-color);
}
#nav_left .support a{
	display:block;
	text-decoration:none;
	color:#efefef;
	color:var(--light-grey-color);
	background-color:#23af8c;
	background-color:var(--green-color);
	padding:1px 5px 1px 15px;
	font-size: 14px;
	cursor:pointer;
}

#nav_left .disabled{
	display:block;
	text-decoration:none;
	padding:1px 5px 1px 15px;
	background-color:#285a8c;
	background-color:var(--blue-color);
	color: #aaaaaa;
	color: var(--disabled-grey-color);
	font-size: 14px;
	font-weight: normal;
}

#nav_left a:disabled{
	background-color:#AAA;
}

#nav_left .disabled span{
	color: #aaaaaa !important;
	color: var(--disabled-grey-color) !important;
}


#nav_left a:hover{
	background-color:#224c76;
	background-color:var(--dark-blue-color);
}

#nav_left .support a:hover{
	background-color:#1e9476;
	background-color:var(--dark-green-color);
}

#nav_left .itemsel, #nav_left .itemsel:hover{
	cursor:default;
	background-color:#224c76;
	background-color:var(--dark-blue-color);
	color: white;
}
#nav_left .itemsel span{
	color:white;
	font-weight: bold;
}


#nav_left .presel, #nav_left .presel:hover{
	cursor:default;
	background-color:#3c3c3c;
	background-color:var(--black-color);
	color: white;
}

#nav_left .oldsel, #nav_left .oldsel:hover{
	cursor:default;
}
#nav_left .oldsel span{
	font-weight: bold;
}

#nav_left .itemsel span span, #nav_left .presel span span{
	color:#C6D6F6 !important;
}

.navi_sysLabel1{
	font-size: 9px;
	top: 0px;
	position: relative;
	width: 34px;
	height: 11px;
	line-height: 10px;
	color: #AAA;
	left: 2px;
}

.navi_sysValue1{
	position: relative;
	left: 2px;
	height: 13px;
	line-height: 13px;
	display: block;
}

#nav_left_bottom p{
	position: relative;
}

#nav_left_bottom p.collapseBtn span{
	cursor: pointer;
	position: absolute;
	right: 6px;
	width: 16px;
	height: 16px;
	float: right;
	top: 18px;
	background-image: url(../../cwi/css/ui/images/ui-icons_aaaaaa_256x240.png);
	background-position: 0px 0px;
}
#nav_left_bottom p.collapseBtn span:hover
{
	background-image: url(../../cwi/css/ui/images/ui-icons_ffffff_256x240.png);
}
#nav_left_bottom p.collapseBtn[collapsed="true"] span{
	background-position: -65px 0px;
}


/***************** page caption ********************/

.pageCaption{
	height: 45px;
	top: -1px;
	position: relative;
	padding-bottom: 0px;
}
.pageCaption div{
	position: relative;
	color: #aaaaaa;
	color: var(--disabled-grey-color);
}
.pageCaption .headline{
	font-size: 16px;
	font-weight: normal;
}

.pageCaption .icon{
	position: relative;
	top: 1px;
	left: -1px;
}
.pageCaption .labelCon{
	position: relative;
	top: -21px;
	padding-left: 14px;
	height: 32px;
	line-height: 32px;
}
.pageCaption .labelCon .label{
	color: #3c3c3c;
	color: var(--black-color);
	width: max-content;
}

.pageCaptionRightContent {
	position: absolute;
	display: flex !important;
	height: 45px;
	width: fit-content;
	right: 0px;
  	align-items: flex-end;
	box-sizing: border-box;
	padding-bottom: 5px;
}

.pageCaptionRightContent .customizeBtn{
	position: relative;
	right: 0px;
}
.pageCaptionRightContent .customizeBtn:hover{
	cursor: pointer;
	filter: none;
}


/***************** scrolling styles ********************/
div.scrollContainer{
	width: 100%;
	height: 100%;

}
div.scrollArea {
	width: 100%;
	text-align:left;
	overflow:hidden;
	position: relative;
}
div.scrollArea span {
	position: relative;
	white-space:nowrap;
    left: 0px;
	cursor: normal;
	display: normal;
}

/* ######################################################## tables and forms */
table{
	border-collapse:separate;
	border-spacing:0px;
}

table.fixed{
	table-layout: fixed;
}


form{
	margin:0;
	padding:0;
	border:none;
}

/* Alle Elemente der n Spalte (th oder td) bekommen float right!*/
table.fR_2col tr th:nth-child(2) > *, table.fR_2col tr td:nth-child(2) > *{
	float: right;
}
table.fR_3col tr th:nth-child(3) > *, table.fR_3col tr td:nth-child(3) > *{
	float: right;
}





.levels th{
	font-weight: normal;
	font-size: 10px;
}

.levels td{
	background-color: #efefef;
	background-color: var(--light-grey-color);
	font-size: 13px;
}

.rOnly tr{
	height: 22px;
}

.rOnly td, .rOnly th,
td.rOnly, th.rOnly{
	background: white;
	border-bottom: 1px solid #cccccc;
	border-bottom: 1px solid var(--medium-grey-color);
	height: 16px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 2px !important;
	padding-right: 2px;
}

.rOnly td, td.rOnly{
	font-weight: normal;
}

.rOnly th, th.rOnly{
	font-weight: bold;
}

.rOnlyGrey table tr th:first-child, table.rOnlyGrey tr th:first-child,
.rwGrey table tr th:first-child, table.rwGrey tr th:first-child {
	padding-left: 4px !important;
}
.rOnlyGrey table tr td:first-child, table.rOnlyGrey tr td:first-child,
.rwGrey table tr td:first-child, table.rwGrey tr td:first-child {
	padding-left: 4px !important;
}
.rOnlyGrey table tr th:last-child, table.rOnlyGrey tr th:last-child,
.rwGrey table tr th:last-child, table.rwGrey tr th:last-child {
	padding-right: 4px;
}
.rOnlyGrey table tr td:last-child, table.rOnlyGrey tr td:last-child,
.rwGrey table tr td:last-child, table.rwGrey tr td:last-child {
	padding-right: 4px;
}

.rOnlyGrey tr{
	height: 24px;
}

.rwGrey tr{
	height: 28px;
}

.rOnlyGrey td, .rOnlyGrey th,
td.rOnlyGrey, th.rOnlyGrey,
.rwGrey td, .rwGrey th,
td.rwGrey, th.rwGrey{
	border-bottom: 1px solid #cccccc;
	border-bottom: 1px solid var(--medium-grey-color);
	height: 16px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 2px !important;
	padding-right: 2px !important;
    font-size: 13px;
}

.rwGrey td, .rwGrey th,
td.rwGrey, th.rwGrey{
	border: none;
}

.rwGrey tr.bbLine td, .rwGrey tr.bbLine th{
	border-bottom: 1px solid #cccccc !important;
	border-bottom: 1px solid var(--medium-grey-color) !important;
}

/* Entfernt bei der letzten Zeile den Strich ... */
.rOnlyGrey tr:last-child td, .rOnlyGrey tr:last-child th,
tr:last-child td.rOnlyGrey, tr:last-child th.rOnlyGrey,
.rwGrey tr:last-child td, .rwGrey tr:last-child th,
tr:last-child td.rwGrey, tr:last-child th.rwGrey
/*.rOnly tr:last-child td, .rOnly tr:last-child th,
tr:last-child td.rOnly, tr:last-child th.rOnly*/
{
	border-bottom: 1px solid #efefef;
	border-bottom: 1px solid var(--light-grey-color);
}

.rOnlyGrey td, td.rOnlyGrey{
	font-weight: normal;
}

.rOnlyGrey th, th.rOnlyGrey{
	font-weight: bold;
}

.columnLabel tr:first-child th{
	font-weight: bold;
	/*OJ: Denke das padding kann raus ?! */
	/*padding-left: 2px;*/
	box-sizing: border-box;
}

.hoverAction:not(.columnLabel) tr:hover td,
.hoverAction:not(.columnLabel) tr:hover th,
.hoverAction.columnLabel tr:not(:first-child):hover td,
.hoverAction.columnLabel tr:not(:first-child):hover th,
tr.hoverAction:hover td,
tr.hoverAction:hover th{
	background-color: #cccccc;
	background-color: var(--medium-grey-color);
}




.hoverAction .rOnly tr:hover th,
.rOnly tr.hoverAction:hover th,
tr.hoverAction.rOnly:hover th{
	background-color: transparent !important;
}

tr.hoverAction:hover td .my_v_bar,
tr.hoverAction:hover td .my_h_bar{
	background-color: white !important;
}

tr.hoverAction:hover td .vlan_vbar,
tr.hoverAction:hover td .vlan_svbar,
tr.hoverAction:hover td .vlan_hbar{
	background-color: white !important;
}

.hoverActive,
.hoverActive td,
.hoverActive th
{
	background-color: #cccccc;
	background-color: var(--medium-grey-color);
}

.droppableTarget {
	border: 2px solid #efefef;
	border: 2px solid var(--light-grey-color);
}

.whiteDroppableTarget {
	border: 2px solid white;
}

.droppableTargetHint {
	background-color: #cccccc;
	background-color: var(--medium-grey-color);
	border: 2px solid #cccccc;
	border: 2px solid var(--medium-grey-color);
}

.droppableTargetActive {
	border: 2px solid #23af8c;
	border: 2px solid var(--green-color);
}

.B3.levelmeter td {
    border: 1px solid #eeeeee;
    padding: 2px 3px 2px;
}


.B3 input {
    display: inline-block;
    outline: medium none;
    text-decoration: none;
	padding: 1px;
	height: 16px;

}
.B3 select {
    display: inline-block;
    outline: medium none;
    text-decoration: none;
	padding: 1px;
	height: 20px;
}
.B3 span {
	line-height: 20px;
}



.B3 td, .B3 th{
    font-size: 13px !important;
    height: 27px;
    margin: 0;
	padding: 0;
    position: relative;
	text-align: left;
	box-sizing:border-box;
}

.B3 tr{
	height: 27px;
}

.B3 td{
	font-weight: normal;
}
.B3 th {
    font-weight: bold;
}


.h25 {
	height:25px !important;
}

.h10 tr, .h10 tr td, .h10 tr th, .h10, tr.h10 td, tr.h10 th {	height:10px !important; }
.h12 tr, .h12 tr td, .h12 tr th, .h12, tr.h12 td, tr.h12 th {	height:12px !important; }
.h14 tr, .h14 tr td, .h14 tr th, .h14, tr.h14 td, tr.h14 th {	height:14px !important; }
.h16 tr, .h16 tr td, .h16 tr th, .h16, tr.h16 td, tr.h16 th {	height:16px !important; }
.h18 tr, .h18 tr td, .h18 tr th, .h18, tr.h18 td, tr.h18 th {	height:18px !important; }
.h20 tr, .h20 tr td, .h20 tr th, .h20, tr.h20 td, tr.h20 th {	height:20px !important; }
.h21 tr, .h21 tr td, .h21 tr th, .h21, tr.h21 td, tr.h21 th {	height:21px !important; }
.h22 tr, .h22 tr td, .h22 tr th, .h22, tr.h22 td, tr.h22 th {	height:22px !important; }
.h23 tr, .h23 tr td, .h23 tr th, .h23, tr.h23 td, tr.h23 th {	height:23px !important; }
.h24 tr, .h24 tr td, .h24 tr th, .h24, tr.h24 td, tr.h24 th {	height:24px !important; }
.h25 tr, .h25 tr td, .h25 tr th, .h25, tr.h25 td, tr.h25 th {	height:25px !important; }
.h27 tr, .h27 tr td, .h27 tr th, .h27, tr.h27 td, tr.h27 th {	height:27px !important; }
.h30 tr, .h30 tr td, .h30 tr th, .h30, tr.h30 td, tr.h30 th {	height:30px !important; }
.h35 tr, .h35 tr td, .h35 tr th, .h35, tr.h35 td, tr.h35 th {	height:35px !important; }
.h40 tr, .h40 tr td, .h40 tr th, .h40, tr.h40 td, tr.h40 th {	height:40px !important; }
.h45 tr, .h45 tr td, .h45 tr th, .h45, tr.h45 td, tr.h45 th {	height:45px !important; }
.h50 tr, .h50 tr td, .h50 tr th, .h50, tr.h50 td, tr.h50 th {	height:50px !important; }
.h55 tr, .h55 tr td, .h55 tr th, .h55, tr.h55 td, tr.h55 th {	height:55px !important; }
.h60 tr, .h60 tr td, .h60 tr th, .h60, tr.h60 td, tr.h60 th {	height:60px !important; }
.h65 tr, .h65 tr td, .h65 tr th, .h65, tr.h65 td, tr.h65 th {	height:65px !important; }



.rOnly.h20 td,
.h20 td.rOnly{
	border-width: 1px;
}

a.link{
	color: #23af8c !important;
	color: var(--green-color) !important;
}

:not(a).link{
	color: #23af8c !important;
	color: var(--green-color) !important;
	cursor: pointer;
}

a:link, a:visited
{
  color: #23af8c;
  color: var(--green-color);
}

a:hover, a:active {
	color: #1e9476;
	color: var(--dark-green-color);
  }

/* ######################################################## button, input ect. style */

::-moz-selection { /* Code for Firefox */
  background: var(--green-color);
}

::selection {
  background: #23af8c;
  background: var(--green-color);
}

.button input{
	cursor:pointer;
	margin-right:5px;
	padding:0 5px;
}

.button button{
	float: left;
	margin-left: 3px;
}
.button button:first-child{
	margin-left: 0px;
}


.button a{
	text-decoration: none;
}



button,
input[type="button"],
input[type="submit"],
input[type="FILE"]
{
	border: 1px solid #23af8c;
	border: 1px solid var(--green-color);
	background-color: white;
	border-radius: 11px;
	padding: 1px 10px;
	height: 22px;
	font-size: 13px;
	font-family: 'Source Sans Pro', Calibri, FreeSans, sans-serif;
	margin: 0px;
	padding-top: 0px;
}

button:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
input[type="FILE"]:focus
{
	box-shadow: 0 0 4px #1e9476;
	box-shadow: 0 0 4px var(--dark-green-color);
	outline: none;
}

button:not([disabled]):hover,
input[type="button"]:not([disabled]):hover,
input[type="submit"]:hover,
input[type="FILE"]:hover
{
	border-color: #1e9476;
	border-color: var(--dark-green-color);
	background-color: #23af8c !important;
	background-color: var(--green-color) !important;
	color: white;
}

button:active,
input[type="button"]:active,
input[type="submit"]:active,
input[type="FILE"]:active
{
	background-color: #1e9476;
	background-color: var(--dark-green-color) !important;
}

input[type="text"],
input[type="password"],
textarea {
	padding:1px 5px;
	border: 1px solid #23af8c;
	border: 1px solid var(--green-color);
	height: 23px;
	box-sizing: border-box;
}

.propFont{
	font-family:monospace !important;
}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
	box-shadow: 0 0 2px #1e9476;
	box-shadow: 0 0 2px var(--dark-green-color);
	outline: none;
}

input[type="text"]:hover,
input[type="password"]:hover,
textarea:hover {
	border-width: 1px;
	border-color: #1e9476;
	border-color: var(--dark-green-color);
}

button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled,
input[type="FILE"]:disabled,
input[type="text"]:disabled ,
input[type="password"]:disabled,
textarea:disabled
{
	border-width: 1px !important;
	border-color: #aaaaaa !important;
	border-color: var(--disabled-grey-color) !important;
	background-color: white !important;
	color: #aaaaaa !important;
	color: var(--disabled-grey-color) !important;
}

/* Units die innerhalb eines Input Felds angezeigt werden */
.inputUnit{
	cursor: text;
}

/* Klasse hover wird via js hinzugefuegt */
.ui-spinner:hover,
.ui-spinner.hover{
	border-color: #005ea8;
}


textarea{
	resize: none;
}

input:not([type='button']) {
	font-size: 13px;
	font-family: 'Source Sans Pro', Calibri, FreeSans, sans-serif;
}

div.inputUnit,
div.selectUnit {
	position: absolute;
	right: 4px;
	display: flex;
	align-items: center;
	height: 23px;
	color: #aaaaaa;
	/* user-select: none; */
	z-index: 10;
	font-size: 12px;
	font-style: italic;
}
div.selectUnit {
	right: 17px;
}


/* STYLE die ORIGINAL SELECT UM */
select:not(.no-ww-style){
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #23af8c;
	border: 1px solid var(--green-color);
	background: white;
	background-image:url(../../cwi/images/arrow_down_000000.png);
	background-position: right;
	background-repeat: no-repeat;
	outline: none;
	color: #3c3c3c;
	color: var(--black-color);
	height: 23px;
	padding: 1px;
	padding-left: 5px;
	font-family: 'Source Sans Pro', Calibri, FreeSans, sans-serif;
	font-size: 13px;
}

@supports ( -moz-orient:inline ) and (not (contain-intrinsic-size: 10rem )) /* Problem is solved in Firefox 107 ( support for rule 'contain-intrinsic-size' ) */
{
	select:not(.no-ww-style){
		padding-left: 0px;
  }
}

select.ww-chrome-style, select.ww-opera-style{
	padding-left: 4px;
}
select.ww-ie-style{
	padding-left: 2px;
}

select:not(.no-ww-style)::-moz-focusring {
	color: transparent;
    text-shadow: 0 0 0 #000;
}

select:not(.no-ww-style)::-ms-expand {
    display: none;
}

select:not(.no-ww-style):focus::-ms-value {
    background-color: transparent;
	color: black;
}

select:not(.no-ww-style):focus{
	box-shadow: 0 0 2px #1e9476;
	box-shadow: 0 0 2px var(--dark-green-color);
	background-image: url(../../cwi/images/arrow_down_000000.png), -moz-linear-gradient(right, white 0px, white 13px, var(--green-color) 13px, var(--green-color) 14px, white 14px, white 100%);	 	/* FF3.6+ */
	background-image: url(../../cwi/images/arrow_down_000000.png), -webkit-gradient(right, white 0px, white 13px, var(--green-color) 13px, var(--green-color) 14px, white 14px, white 100%);			/* Chrome, Safari4+ */
	background-image: url(../../cwi/images/arrow_down_000000.png), -webkit-linear-gradient(right, white 0px, white 13px, var(--green-color) 13px, var(--green-color) 14px, white 14px, white 100%);	/* Chrome10+,Safari5.1+ */
	background-image: url(../../cwi/images/arrow_down_000000.png), -o-linear-gradient(right, white 0px, white 13px, var(--green-color) 13px, var(--green-color) 14px, white 14px, white 100%);			/* Opera 11.10+ */
	background-image: url(../../cwi/images/arrow_down_000000.png), -ms-linear-gradient(right, white 0px, white 13px, #23af8c 13px, #23af8c 14px, white 14px, white 100%);								/* IE 10+ */
	background-image: url(../../cwi/images/arrow_down_000000.png), linear-gradient(to left, white 0px, white 13px, var(--green-color) 13px, var(--green-color) 14px, white 14px, white 100%);
	outline: none;
}

select:not(.no-ww-style):hover{
	background-image: url(../../cwi/images/arrow_down_000000.png), -moz-linear-gradient(right,   var(--green-color) 0%,  var(--green-color) 13px,  var(--dark-green-color) 13px,  var(--dark-green-color) 14px, white 14px, white 100%);	 	/* FF3.6+ */
	background-image: url(../../cwi/images/arrow_down_000000.png), -webkit-gradient(right,   var(--green-color) 0%,  var(--green-color) 13px,  var(--dark-green-color) 13px,  var(--dark-green-color) 14px, white 14px, white 100%);			/* Chrome, Safari4+ */
	background-image: url(../../cwi/images/arrow_down_000000.png), -webkit-linear-gradient(right,   var(--green-color) 0%,  var(--green-color) 13px,  var(--dark-green-color) 13px,  var(--dark-green-color) 14px, white 14px, white 100%);	/* Chrome10+,Safari5.1+ */
	background-image: url(../../cwi/images/arrow_down_000000.png), -o-linear-gradient(right,   var(--green-color) 0%,  var(--green-color) 13px,  var(--dark-green-color) 13px,  var(--dark-green-color) 14px, white 14px, white 100%);			/* Opera 11.10+ */
	background-image: url(../../cwi/images/arrow_down_000000.png), -ms-linear-gradient(right,  #23af8c 0%,  #23af8c 13px,  #1e9476 13px,  #1e9476 14px, white 14px, white 100%);								/* IE 10+ */
	background-image: url(../../cwi/images/arrow_down_000000.png), linear-gradient(to left,  var(--green-color) 0%, var(--green-color) 13px,  var(--dark-green-color) 13px,  var(--dark-green-color) 14px, white 14px, white 100%);
}

select:not(.no-ww-style):disabled{
	border-color: var(--disabled-grey-color);
	border-color: #aaaaaa;
	color: var(--disabled-grey-color) !important;
	color: #aaaaaa !important;
	background-image: url(../../cwi/images/arrow_down_aaaaaa.png)
}

select:not(.no-ww-style) > option:disabled{
	color: var(--disabled-grey-color) !important;
	color: #aaaaaa !important;
}

/* ######################################################## WWCOM ICONS */

button.wwcom-button {
	padding: 1px;
	overflow: hidden;
	width: 22px;
	height: 22px;
 }
 button.wwcom-button:not([disabled]):active {
	/*padding: 0px !important;*/
	overflow: hidden;
 }

 input.wwcom-button::-moz-focus-inner,
 button.wwcom-button::-moz-focus-inner {
	 border: 0;
	 padding: 0;
 }

 button.wwcom-button[class*='wwcom-icon']:disabled,
 button.wwcom-button:disabled div[class*='wwcom-icon']
 {
	   filter: alpha(opacity=50); /* For IE8 and earlier */
	 opacity: 0.5;
 }

 [class*='wwcom-icon'], .wwcom-icon,
 [wwcom-icon]{
	 width: 16px;
	 height: 16px;
	 background-repeat: no-repeat;
	 display: block;
	 overflow: hidden;
	 text-indent: -99999px;
	 background-image:url(../../cwi/css/ui/images/ui-icons_000000_256x240.png);
 }

 .wwcom-icon-16 {	background-size: 16px;	width: 16px;	height: 16px;	 }
 .wwcom-icon-20 {	background-size: 20px;	height: 20px;	width: 20px;	 }
 .wwcom-icon-25 {	background-size: 25px;	height: 25px;	width: 25px;	 }
 .wwcom-icon-30 {	background-size: 30px;	height: 30px;	width: 30px;	 }

 button.wwcom-button [class*='wwcom-icon'], button.wwcom-button .wwcom-icon{
 /*	width: 18px;
	 height: 18px;*/
	 margin-left: 1px;
 }

 button:hover:not([disabled]) [class*='wwcom-icon'], button:hover:not([disabled]) .wwcom-icon,
 button:active:not([disabled]) [class*='wwcom-icon'], button:active:not([disabled]) .wwcom-icon{
	 background-image:url(../../cwi/css/ui/images/ui-icons_ffffff_256x240.png);
 }

 .wwcom-icon-white{
	background-image:url(../../cwi/css/ui/images/ui-icons_ffffff_256x240.png);
	/*Color: #ffffff  Source: https://codepen.io/sosuke/pen/Pjoqqp */
	filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(27deg) brightness(104%) contrast(102%);
 } 
 
 .wwcom-icon-light-grey-color{
	background-image:url(../../cwi/css/ui/images/ui-icons_efefef_256x240.png);
	/*Color: #efefef  Source: https://codepen.io/sosuke/pen/Pjoqqp */
	filter: invert(97%) sepia(6%) saturate(411%) hue-rotate(303deg) brightness(112%) contrast(87%);
 }

 .wwcom-icon-grey{
	 background-image:url(../../cwi/css/ui/images/ui-icons_aaaaaa_256x240.png);
	  /*Color: #aaaaaa  Source: https://codepen.io/sosuke/pen/Pjoqqp */
	 filter: invert(69%) sepia(47%) saturate(0%) hue-rotate(214deg) brightness(93%) contrast(82%);
 }

 .wwcom-icon-red{
	 background-image:url(../../cwi/css/ui/images/ui-icons_e61f38_256x240.png);
 }

 .wwcom-icon-green{
	 background-image:url(../../cwi/css/ui/images/ui-icons_23af8c_256x240.png);
 }

 .wwcom-icon-blue{
	 background-image:url(../../cwi/css/ui/images/ui-icons_285a8c_256x240.png);
	 /*Color: #285a8c  Source: https://codepen.io/sosuke/pen/Pjoqqp */
	 filter: invert(29%) sepia(20%) saturate(2228%) hue-rotate(172deg) brightness(95%) contrast(84%);
 }

 .wwcom-icon-dark-blue{
	background-image:url(../../cwi/css/ui/images/ui-icons_224c76_256x240.png);
	/*Color: #224c76  Source: https://codepen.io/sosuke/pen/Pjoqqp */
	filter: invert(25%) sepia(8%) saturate(6571%) hue-rotate(177deg) brightness(87%) contrast(84%);
}

 .wwcom-icon-orange{
	 background-image:url(../../cwi/css/ui/images/ui-icons_f3943e_256x240.png);
 }

 .wwcom-icon-light-blue-color{
	 /*Color: #88aabb  Source: https://codepen.io/sosuke/pen/Pjoqqp */
	 filter: invert(71%) sepia(21%) saturate(393%) hue-rotate(155deg) brightness(89%) contrast(87%);
} 

.wwcom-icon-medium-grey-color{
	 /*Color: #cccccc  Source: https://codepen.io/sosuke/pen/Pjoqqp */
	 filter: invert(95%) sepia(24%) saturate(0%) hue-rotate(121deg) brightness(87%) contrast(83%);
}

.wwcom-icon-disabled-grey-color{
	 /*Color: #aaaaaa  Source: https://codepen.io/sosuke/pen/Pjoqqp */
	 filter: invert(78%) sepia(0%) saturate(7%) hue-rotate(217deg) brightness(86%) contrast(93%);
}



 .wwcom-icon-popup{	 		background-position: -48px -80px;  }
 .wwcom-icon-lamp{			background-position: -128px -128px;	}
 .wwcom-icon-star{			background-position: -224px -112px;	}
 .wwcom-icon-important{		background-position: -32px -144px;	} /* Ausrufezeichen */
 .wwcom-icon-save{			background-position: -96px -112px;	} /* Diskette */

 .wwcom-icon-expand{
	 background-position: -64px -16px;
 }

 .wwcom-icon-collapse{
	 background-position: 1px -16px;
 }

 .wwcom-icon-expand-2{
	 background-position: -33px -16px;
 }

 .wwcom-icon-collapse-2{
	 background-position: -96px -16px;
 }

 .wwcom-icon-expand-small{
	 background-position: -37px -16px;
 }

 .wwcom-icon-collapse-small{
	 background-position: -68px -16px;
 }

 .wwcom-icon-plus{
	 background-position: -16px -129px;
 }

 .wwcom-icon-minus{
	 background-position: -48px -129px;
 }

 .wwcom-icon-help{
	 background-position: -48px -144px;
 }

 .wwcom-icon-check,
 .wwcom-icon-success,
 [wwcom-icon="check"]{
	 background-position: -64px -144px;
 }

 .wwcom-icon-cross{
	 background-position: -80px -128px;
 }

 .wwcom-icon-sortArrows{
	 background-position: -128px -48px;
 }

 .wwcom-icon-arrow-down{
	background-position: -64px -48px;
}

.wwcom-icon-arrow-circle-right{
	background-position: -112px -192px;
}

.wwcom-icon-arrow-down-right{
	background-image:url(../../cwi/images/icon_arrow_down_right.png);
	background-size: 16px;
}

[wwcom-icon="clipboard"]{
	background-position: -176px -129px;
}

.wwcom-icon-garbage{
	background-position: -176px -96px;
}

.wwcom-icon-pin-off{
	background-image:url(../../cwi/images/icon_pinOff.png);
}

.wwcom-icon-pin-on{
	background-image:url(../../cwi/images/icon_pinOn.png);
}

.wwcom-icon-edit{
	background-image:url(../../cwi/images/icon_edit.png);
	background-size: 16px;
}

.wwcom-icon-warning {
    background-image:url(../../cwi/images/icon_warning.png);
}

/* ######################################################## globale "tools" */
.nowrap {
    white-space: nowrap !important;
}

.noSelect{
	-moz-user-select: -moz-none;
	-moz-user-select: none;
	-o-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

div.error,
span.error,
div#warning
{
	float:none;
	text-align:center;
	white-space:nowrap;
	color:#e61f38;
	color:var(--red-color);
	font-size: 19px;
	margin:10px 0px;
}

div#warning{
	color: #f3943e;
	color: var(--orange-color);
}

div.info {
	float:none;
	text-align:center;
	white-space:nowrap;
	font-weight:bold;
	color:#285a8c;
	color:var(--blue-color);
	font-size: 15px;
	margin:10px 0px;
}

.note {
	font-size: 12px;
	font-style: italic;
}


div.important {
	float:none;
	text-align:center;
	white-space:nowrap;
	font-weight:bold;
	font-size: 13px;
	margin:0px 20px;
}

#globalDiv.blur #header,
#globalDiv.blur #nav_left,
#globalDiv.blur #footer,
#globalDiv.blur #content{
	-webkit-filter: blur(1px); /* Safari 6.0 - 9.0 */
	filter: blur(1px);
}

/* ######################################################## Overlay Msg... */

#contentContainer #overlayMsgCon{
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
}
#contentContainer #overlayMsg{
	height: 150px;
	width: 400px;
	padding: 10px;
	background-color: #3c3c3c;
	background-color: var(--black-color);
	color: white;
	font-size: 23px;
	position: relative;
}
/* ######################################################## Overlay Msg... */


/* ######################################################## Overlay WAIT Container START */
#waitOverlayGlobal{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	display: flex;
	justify-content: center;
  	align-items: center;
	z-index: 1000;
	background-color: #00000066;
}
#waitOverlayGlobal #waitOverlayContainer{
	height: 300px;
	width: 500px;
	padding: 10px;
	background-color: var(--light-grey-color);
	color: white;
	font-size: 23px;
	box-sizing: border-box;
	position: absolute;
	display: flex;
	flex-direction: column;
}

#waitOverlayGlobal #waitOverlayContainer .left_header_content{
	display: flex;
	height: 100%;
	margin-bottom: 5px;
}
#waitOverlayGlobal #waitOverlayContainer .header_content{
	display: flex;
	flex-direction: column;
	width: 100%;
}

#waitOverlayGlobal #waitOverlayContainer .content{
	height: 100%;
	background-color: white;
}

#waitOverlayGlobal #waitOverlayContainer .header{
	height: 55px;	
	color: white;
	background-color: var(--black-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 5px;

}

#waitOverlayGlobal #waitOverlayContainer .left{
	height: 100%;	
	width: 50px;
	background-color: var(--blue-color);
	margin-right: 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#waitOverlayGlobal #waitOverlayContainer .left .logo{
	background-image: url(../../cwi/images/logo_2wcom.png);
	background-position: -91px 0px;
	background-size: 118px;
	height: 34px;
	width: 27px;
	margin-top: 8px;
}

#waitOverlayGlobal #waitOverlayContainer .stepCon{
	margin-top: 14px;
	height: 100%;	
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#waitOverlayGlobal #waitOverlayContainer .stepCon div.dot{
	width: 5px;
	height: 5px;
	border-radius: 7px;
	margin: 9px 0px;
	border: solid 1px white;
}

#waitOverlayGlobal #waitOverlayContainer .stepCon div.dot.done{
	background-color: white;
}

#waitOverlayGlobal #waitOverlayContainer .stepCon div.dot .line{
	/* background-color: white; */
	width: 1px;
	height: 9px;
	position: relative;
	top: -14px;
	left: 2px;
	border-left: dotted 1px white;
}

#waitOverlayGlobal #waitOverlayContainer .stepCon div.dot.done .line{
	background-color: white;
	border-left: none;
}

#waitOverlayGlobal #waitOverlayContainer .historyView{
	width: 100%;
	height: 100%;
	padding-left: 5px;
}
#waitOverlayGlobal #waitOverlayContainer .historyView div
{
	font-size: 14px;
	vertical-align: bottom;
	height: 25px;
	display: flex;
	align-items: center;
	color: #aaaaaa;
	color: var(--black-color);
}

#waitOverlayGlobal #waitOverlayContainer .bottom
{
	height: 20px;
	background-color: var(--dark-green-color);
	padding: 0px 5px;
	display: flex;
	justify-content: space-between
}

#waitOverlayGlobal #waitOverlayContainer .bottom div
{
	font-size: 12px;
	color: white;
	height: 100%;
}

/* ######################################################## Overlay WAIT Container END*/

div.in_line{
display: inline-block;
}

.n					{	font-weight:normal !important;	}
.i					{	font-style:italic !important; }
.bold, .b			{ 	font-weight:bold !important; }
.fL					{	float:left !important;}
.fR					{	float:right !important;}
.fN					{	float:none !important;}

.tOE{
	overflow: hidden;
	text-overflow: ellipsis;
}

table.tR tr th,
table.tR tr td		{	text-align:right;	}
.tR:not(table),
table tr th.tR		{	text-align:right !important;	}

table.tC tr th,
table.tC tr td		{	text-align:center;	}
.tC:not(table),
table tr th.tC		{	text-align:center !important;	}

table.tL tr th,
table.tL tr td		{	text-align:left;}
.tL:not(table),
table tr th.tL		{	text-align:left !important;	}

.pR					{	position: relative !important;}
.pA					{	position: absolute !important;}
.bN					{	border:none !important; }

.cB 				{	clear: both;}


.colorGreen {
	color: #23af8c !important;
	color: var(--green-color) !important;
}
.colorDisabledGrey {
	color: #aaaaaa !important;
	color: var(--disabled-grey-color) !important;
}
.bColorWhite {
	background-color: white !important;
	background-color: var(--white-color) !important;
}



.t-4{	top: -4px !important;}
.t-3{	top: -3px !important;}
.t-2{	top: -2px !important;}
.t-1{	top: -1px !important;}
.t0{	top: 0px !important;}
.t1{	top: 1px !important;}
.t2{	top: 2px !important;}
.t3{	top: 3px !important;}
.t4{	top: 4px !important;}
.t5{	top: 5px !important;}
.t6{	top: 6px !important;}
.t7{	top: 7px !important;}
.t8{	top: 8px !important;}
.t9{	top: 9px !important;}
.t10{	top: 10px !important;}

.b0{	bottom: 0px !important;}
.b1{	bottom: 1px !important;}
.b2{	bottom: 2px !important;}
.b3{	bottom: 3px !important;}
.b4{	bottom: 4px !important;}
.b5{	bottom: 5px !important;}

.l-4{	left: -4px !important;}
.l-3{	left: -3px !important;}
.l-2{	left: -2px !important;}
.l-1{	left: -1px !important;}
.l0{	left: 0px !important;}
.l1{	left: 1px !important;}
.l2{	left: 2px !important;}
.l3{	left: 3px !important;}
.l4{	left: 4px !important;}
.l5{	left: 5px !important;}
.l10{	left: 10px !important;}
.l15{	left: 15px !important;}

.r-4{	right: -4px !important;}
.r-3{	right: -3px !important;}
.r-2{	right: -2px !important;}
.r-1{	right: -1px !important;}
.r0{	right: 0px !important;}
.r1{	right: 1px !important;}
.r2{	right: 2px !important;}
.r3{	right: 3px !important;}
.r4{	right: 4px !important;}
.r5{	right: 5px !important;}
.r10{	right: 10px !important;}
.r15{	right: 15px !important;}
.r20{	right: 20px !important;}

.m0		{	margin: 0px 	!important;}
.m1		{	margin: 1px 	!important;}
.m2		{	margin: 2px 	!important;}
.m3		{	margin: 3px 	!important;}
.m4		{	margin: 4px 	!important;}
.m5		{	margin: 5px		!important;}
.m6		{	margin: 6px		!important;}
.m7		{	margin: 7px		!important;}
.m8		{	margin: 8px		!important;}
.m9		{	margin: 9px		!important;}
.m10	{	margin: 10px	!important;}
.m15	{	margin: 15px	!important;}
.m20	{	margin: 20px	!important;}

.mT0	{	margin-top: 0px 	!important;}
.mT1	{	margin-top: 1px 	!important;}
.mT2	{	margin-top: 2px 	!important;}
.mT3	{	margin-top: 3px 	!important;}
.mT4	{	margin-top: 4px 	!important;}
.mT5	{	margin-top: 5px		!important;}
.mT6	{	margin-top: 6px		!important;}
.mT7	{	margin-top: 7px		!important;}
.mT8	{	margin-top: 8px		!important;}
.mT9	{	margin-top: 9px		!important;}
.mT10	{	margin-top: 10px	!important;}
.mT15	{	margin-top: 15px	!important;}
.mT20	{	margin-top: 20px	!important;}

.mR0	{	margin-right: 0px 	!important;}
.mR1	{	margin-right: 1px 	!important;}
.mR2	{	margin-right: 2px 	!important;}
.mR3	{	margin-right: 3px 	!important;}
.mR4	{	margin-right: 4px 	!important;}
.mR5	{	margin-right: 5px	!important;}
.mR6	{	margin-right: 6px	!important;}
.mR7	{	margin-right: 7px	!important;}
.mR8	{	margin-right: 8px	!important;}
.mR9	{	margin-right: 9px	!important;}
.mR10	{	margin-right: 10px	!important;}
.mR15	{	margin-right: 15px	!important;}
.mR20	{	margin-right: 20px	!important;}
.mR25	{	margin-right: 25px	!important;}
.mR30	{	margin-right: 30px	!important;}
.mR35	{	margin-right: 35px	!important;}
.mR40	{	margin-right: 40px	!important;}
.mR50	{	margin-right: 50px	!important;}

.mL0	{	margin-left: 0px 	!important;}
.mL1	{	margin-left: 1px 	!important;}
.mL2	{	margin-left: 2px 	!important;}
.mL3	{	margin-left: 3px 	!important;}
.mL4	{	margin-left: 4px 	!important;}
.mL5	{	margin-left: 5px	!important;}
.mL6	{	margin-left: 6px	!important;}
.mL7	{	margin-left: 7px	!important;}
.mL8	{	margin-left: 8px	!important;}
.mL9	{	margin-left: 9px	!important;}
.mL10	{	margin-left: 10px	!important;}
.mL13	{	margin-left: 13px	!important;}
.mL14	{	margin-left: 14px	!important;}
.mL15	{	margin-left: 15px	!important;}
.mL20	{	margin-left: 20px	!important;}
.mL22	{	margin-left: 22px	!important;}
.mL25	{	margin-left: 25px	!important;}
.mL30	{	margin-left: 30px	!important;}
.mL35	{	margin-left: 35px	!important;}

.mB0	{	margin-bottom: 0px 	!important;}
.mB1	{	margin-bottom: 1px 	!important;}
.mB2	{	margin-bottom: 2px 	!important;}
.mB3	{	margin-bottom: 3px 	!important;}
.mB4	{	margin-bottom: 4px 	!important;}
.mB5	{	margin-bottom: 5px	!important;}
.mB6	{	margin-bottom: 6px	!important;}
.mB7	{	margin-bottom: 7px	!important;}
.mB8	{	margin-bottom: 8px	!important;}
.mB9	{	margin-bottom: 9px	!important;}
.mB10	{	margin-bottom: 10px	!important;}
.mB15	{	margin-bottom: 15px	!important;}
.mB20	{	margin-bottom: 20px	!important;}

.m0Auto {	margin: 0 auto !important; }

.p0{	padding: 0px !important;}
.p1{	padding: 1px !important;}
.p2{	padding: 2px !important;}
.p3{	padding: 3px !important;}
.p4{	padding: 4px !important;}
.p5{	padding: 5px !important;}
.p6{	padding: 6px !important;}
.p7{	padding: 7px !important;}
.p8{	padding: 8px !important;}
.p9{	padding: 9px !important;}
.p10{	padding: 10px !important;}
.p15{	padding: 15px !important;}
.p20{	padding: 20px !important;}


.pL0	{	padding-left: 0px 	!important;}
.pL1	{	padding-left: 1px 	!important;}
.pL2	{	padding-left: 2px 	!important;}
.pL3	{	padding-left: 3px 	!important;}
.pL4	{	padding-left: 4px 	!important;}
.pL5	{	padding-left: 5px	!important;}
.pL6	{	padding-left: 6px	!important;}
.pL7	{	padding-left: 7px	!important;}
.pL8	{	padding-left: 8px	!important;}
.pL9	{	padding-left: 9px	!important;}
.pL10	{	padding-left: 10px	!important;}
.pL12	{	padding-left: 12px	!important;}
.pL15	{	padding-left: 15px	!important;}
.pL20	{	padding-left: 20px	!important;}

.pT0	{	padding-top: 0px 	!important;}
.pT1	{	padding-top: 1px 	!important;}
.pT2	{	padding-top: 2px 	!important;}
.pT3	{	padding-top: 3px 	!important;}
.pT4	{	padding-top: 4px 	!important;}
.pT5	{	padding-top: 5px	!important;}
.pT6	{	padding-top: 6px	!important;}
.pT7	{	padding-top: 7px	!important;}
.pT8	{	padding-top: 8px	!important;}
.pT9	{	padding-top: 9px	!important;}
.pT10	{	padding-top: 10px	!important;}
.pT15	{	padding-top: 15px	!important;}
.pT20	{	padding-top: 20px	!important;}

.pR0	{	padding-right: 0px 	!important;}
.pR1	{	padding-right: 1px 	!important;}
.pR2	{	padding-right: 2px 	!important;}
.pR3	{	padding-right: 3px 	!important;}
.pR4	{	padding-right: 4px 	!important;}
.pR5	{	padding-right: 5px	!important;}
.pR6	{	padding-right: 6px	!important;}
.pR7	{	padding-right: 7px	!important;}
.pR8	{	padding-right: 8px	!important;}
.pR9	{	padding-right: 9px	!important;}
.pR10	{	padding-right: 10px	!important;}
.pR15	{	padding-right: 15px	!important;}
.pR20	{	padding-right: 20px	!important;}

.pB0	{	padding-bottom: 0px !important;}
.pB1	{	padding-bottom: 1px !important;}
.pB2	{	padding-bottom: 2px !important;}
.pB3	{	padding-bottom: 3px !important;}
.pB4	{	padding-bottom: 4px !important;}
.pB5	{	padding-bottom: 5px	!important;}
.pB6	{	padding-bottom: 6px	!important;}
.pB7	{	padding-bottom: 7px	!important;}
.pB8	{	padding-bottom: 8px	!important;}
.pB9	{	padding-bottom: 9px	!important;}
.pB10	{	padding-bottom: 10px !important;}
.pB15	{	padding-bottom: 15px !important;}
.pB20	{	padding-bottom: 20px !important;}


.dNone{ display: none !important; }
.dInlineBlock, .iLBlock {display: inline-block;}
.iLFlex {display: inline-flex;}
.dFR{ display: flow-root; }

.oH{ overflow: hidden; }
.oV{ overflow: visible !important; }

.fS7{ font-size: 9px !important; }
.fS8{ font-size: 10px !important; }
.fS9{ font-size: 12px !important; }
.fS10{ font-size: 13px !important; }
.fS11{ font-size: 14px !important; }
.fS12{ font-size: 15px !important; }
.fS13{ font-size: 17px !important; }

.colorDisabledGrey {
	color:  #aaaaaa;
	color: var(--disabled-grey-color);
}
.colorDarkGrey {
	color:  #585858;
	color: var(--dark-grey-color);
}

.vAM{ vertical-align: middle; }
.vAT{ vertical-align: top; }

.bNone { border: 0px !important; }
.bTNone { border-top: none !important;}
.bLNone { border-left: none !important;}
.bRNone { border-right: none !important;}
.bBNone { border-bottom: none !important;}

.button{
	margin-top:15px;
	width: 100%;
	height: 20px;
}
#content > .button{
	margin-bottom: 10px;
}

.spacer3, tr.spacer3							{	height: 3px !important;  }
.spacer5, tr.spacer5							{	height: 5px !important;  }
.spacer, .spacer10, tr.spacer, tr.spacer10		{	height: 10px !important; }
.spacer15, tr.spacer15							{	height: 15px !important; }
.spacer20, tr.spacer20							{	height: 20px !important; }

span.infoCon{
	position: relative;
	min-width: 16px;
	height: 16px;
	top: 2px;
	color: #60CC00;
	font-weight: bold;
	float: left;
	margin-left: 3px;
}
span.infoCon.wait{
	background-image: url("../../cwi/images/wait.gif");
	background-repeat: no-repeat;
}

div.wait{
	min-width: 16px;
	min-height: 16px;
	background-image: url("../../cwi/images/wait.gif");
	background-repeat: no-repeat;
}

div.success{
	min-width: 16px;
	min-height: 16px;
	background-image: url("../../cwi/css/ui/images/ui-icons_23af8c_256x240.png");
	background-position: -64px -144px;
	background-repeat: no-repeat;
}

.save-error{
	background-color: #f3943e !important;
	background-color: var(--orange-color) !important;
}

/* ######################################################## HELP ICON */
.helpIcon div{
	width: 16px;
	height: 16px;
	background-repeat: no-repeat;
	background-image:url(../../cwi/css/ui/images/ui-icons_99CCBB_256x240.png);
	border: 1px solid #99CCBB;
	border-radius: 16px;
	background-position: -48px -144px;
}


.hoverAction:not(.columnLabel) tr:hover td .helpIcon:not(:hover) div,
.hoverAction:not(.columnLabel) tr:hover th .helpIcon:not(:hover) div,
.hoverAction.columnLabel tr:not(:first-child):hover td .helpIcon:not(:hover) div,
.hoverAction.columnLabel tr:not(:first-child):hover th .helpIcon:not(:hover) div,
tr.hoverAction:hover td .helpIcon:not(:hover) div,
tr.hoverAction:hover th .helpIcon:not(:hover) div{
	border: 1px solid #1e9476;
	background-image:url(../../cwi/css/ui/images/ui-icons_1e9476_256x240.png);
}

.helpIcon:hover div{
	background-color: #23af8c;
	background-image:url(../../cwi/css/ui/images/ui-icons_ffffff_256x240.png);
	border-color: #1e9476;
}



/* ######################################################## CONFIRM DIALOG */

.ui-dialog .ui-dialog-content.confirmDialog{
	font-size: 13px;
	padding: 8px 15px;
}
.confirmDialog th.logo{
	width: 56px;
}

.confirmDialog th div {
	height: 48px;
	top: 8px;
	width: 48px;
	position: absolute;
	margin: 0;
}
.confirmDialog th div.warning {
    background: url(../../cwi/images/icon_warning.png) no-repeat top left;
}
.confirmDialog th div.confirm {
    background: url(../../cwi/images/icon_confirm.png) no-repeat top left;
}
.confirmDialog th div.alert {
    background: url(../../cwi/images/icon_alert.png) no-repeat top left;
}
.confirmDialog th div.info {
    background: url(../../cwi/images/icon_info.png) no-repeat top left;
}


/* ################################################################# LEDs*/
@keyframes led_red_blink
{
	0%   {background-color:	#e61f38; background-color:var(--red-color);}
	50%  {background-color:	#aaaaaa; background-color:var(--disabled-grey-color);}
	100% {background-color:	#e61f38; background-color:var(--red-color);}
}

@keyframes led_green_blink
{
	0%   {background-color: #23af8c; background-color:var(--green-color);}
	50%  {background-color:	#aaaaaa; background-color:var(--disabled-grey-color);}
	100% {background-color: #23af8c; background-color:var(--green-color);}
}

@keyframes led_yellow_blink
{
	0%   {background-color: #f3943e; background-color:var(--orange-color);}
	50%  {background-color:	#aaaaaa; background-color:var(--disabled-grey-color);}
	100% {background-color: #f3943e; background-color:var(--orange-color);}
}

@keyframes led_green_red_blink
{
	0%   {background-color: #23af8c; background-color:var(--green-color);}
	50%  {background-color:	#e61f38; background-color:var(--red-color);}
	100% {background-color: #23af8c; background-color:var(--green-color);}
}

.led_grey,
.led_green,
.led_green_a,
.led_green_red_a,
.led_yellow,
.led_yellow_a,
.led_red,
.led_red_a,
.led_blue,
.led_white,
.led_na
{
	width:14px;
	height:14px;
	margin-top:1px;
	display:inline-block;
	border-radius: 7px;
}

.led_w5 	{	width:	5px;	height:	5px;	}
.led_w6 	{	width:	6px;	height:	6px;	}
.led_w7 	{	width:	7px;	height:	7px;	}
.led_w8 	{	width:	8px;	height:	8px;	}
.led_w9 	{	width:	9px;	height:	9px;	}
.led_w10 	{	width:	10px;	height:	10px;	}

.led_strip{
	width: 8px !important;
	border-radius: 0px;
	margin-right: 8px;
	height: 100%;
	top: 0px;
	left: 0px;
	margin: 0px;
	position: absolute;
}

.led_grey,
[statusColor="grey"],
[statusColor="0"] {
	background-color:#aaaaaa;
	background-color:var(--disabled-grey-color);
}

.led_red,
[statusColor="red"],
[statusColor="1"] {
		background-color:#e61f38;
	background-color:var(--red-color);
}

.led_green,
[statusColor="green"],
[statusColor="2"] {
	background-color:#23af8c;
	background-color:var(--green-color);
}

.led_yellow,
[statusColor="yellow"],
[statusColor="3"] {
		background-color:#f3943e;
	background-color:var(--orange-color);
}

.led_standby{
	background-image: repeating-linear-gradient(-45deg, #aaaaaa 0%, #aaaaaa 50%,  #23af8c 50%, #23af8c 100%);
}

.led_na, /* Not available */
[statusColor="100"] {
	background-color: none;
	background-image:url(../../cwi/css/ui/images/ui-icons_aaaaaa_256x240.png);
	background-position: -49px -129px;
}

.led_blue{
	background-color:#285a8c;
	background-color:var(--blue-color);
}

.led_white{
	background-color:#efefef;
	background-color:var(--light-grey-color);
}

.led_green_a{
	animation: led_green_blink 1.5s infinite;
}

.led_green_red_a{
	animation: led_green_red_blink 1.5s infinite;
}

.led_yellow_a{
	animation: led_yellow_blink 1.5s infinite;
}

.led_red_a{
	animation: led_red_blink 1.5s infinite;
}

.led_text{
	vertical-align:top;
}

.duoled_grey,
.duoled_green_l,
.duoled_green_r
{
	width:28px;
	height:14px;
	margin-top:1px;
	display:inline-block;
}

.duoled_grey{
	background-image:url('../../cwi/images/duoled_grey.gif');
}
.duoled_green_l{
	background-image:url('../../cwi/images/duoled_green_l.gif');
}
.duoled_green_r{
	background-image:url('../../cwi/images/duoled_green_r.gif');
}

.led2_grey,
.led2_green,
.led2_red,
.led2_yellow,
.led2_blue,
.led2_white,
.led2_red_a,
.led2_green_a,
.led2_yellow_a,
.led2_green_red_a,
.led2_in,
.led2_out,
.led2_warning,
.led2_power
{
	width:20px;
	height:20px;
	margin-top:1px;
	display:inline-block;
}

.led2_grey{
	background-color:#aaaaaa;
	background-color:var(--disabled-grey-color);
	z-index:0;
}
.led2_red{
	background-color:#e61f38;
	background-color:var(--red-color);
	z-index:0;
}
.led2_green{
	background-color:#23af8c;
	background-color:var(--green-color);
	z-index:0;
}
.led2_yellow{
	background-color:#f3943e;
	background-color:var(--orange-color);
	z-index:0;
}
.led2_blue{
	background-color:#285a8c;
	background-color:var(--blue-color);
	z-index:0;
}
.led2_white{
	background-color:#efefef;
	background-color:var(--light-grey-color);
	z-index:0;
}
.led2_red_a{
	animation: led_red_blink 1.5s infinite;
	z-index:0;
}
.led2_green_a{
	animation: led_green_blink 1.5s infinite;
	z-index:0;
}
.led2_yellow_a{
	animation: led_yellow_blink 1.5s infinite;
	z-index:0;
}
.led2_green_red_a{
	background-color:var(--green-color);
	animation: led_green_red_blink 1.5s infinite;
	z-index:0;
}

.led2_power{
	background-image:url('../../cwi/images/led2_power.png');
	z-index:1;
	left: -20;
}
.led2_warning{
	background-image:url('../../cwi/images/led2_warning.png');
	z-index:1;
	left: -20;
}
.led2_in{
	background-image:url('../../cwi/images/led2_in.png');
	z-index:1;
	left: -20;
}
.led2_out{
	background-image:url('../../cwi/images/led2_out.png');
	z-index:1;
	left: -20;
}


@keyframes pulse {
	0%, 100% {
		border-color: #005ea8;
	}
	30% {
		border-color: #f1f1f1;
	}
}

@keyframes errorpulse {
	0%, 100% {
		background-color: #ffffff;
	}
	25% {
		background-color: #FCAC2B;
	}
	50% {
		background-color: #ffffff;
	}
	75% {
		background-color: #FCAC2B;
	}
}

.errorpulse {
	animation: errorpulse 1.5s ease-out;
}

/* ######################################################## WIDTH */
.w3  {	width:3px  !important;}
.w4  {	width:4px  !important;}
.w5  {	width:5px  !important;}
.w10 {	width:10px  !important;}
.w13 {	width:13px  !important;}
.w15 {	width:15px  !important;}
.w20 {	width:20px  !important;}
.w25 {	width:25px  !important;}
.w30 {	width:30px  !important;}
.w35 {	width:35px  !important;}
.w37 {	width:37px  !important;}
.w40 {	width:40px  !important;}
.w45 {	width:45px  !important;}
.w50 {	width:50px  !important;}
.w55 {	width:55px  !important;}
.w60 {	width:60px  !important;}
.w65 {	width:65px  !important;}
.w70 {	width:70px  !important;}
.w75 {	width:75px  !important;}
.w80 {	width:80px  !important;}
.w85 {	width:85px  !important;}
.w90 {	width:90px  !important;}
.w95 {	width:95px  !important;}
.w100{	width:100px  !important;}
.w105{	width:105px  !important;}
.w110{	width:110px  !important;}
.w115{	width:115px  !important;}
.w120{	width:120px  !important;}
.w125{	width:125px  !important;}
.w130{	width:130px  !important;}
.w135{	width:135px  !important;}
.w140{	width:140px  !important;}
.w145{	width:145px  !important;}
.w150{	width:150px  !important;}
.w155{	width:155px  !important;}
.w160{	width:160px  !important;}
.w165{	width:165px  !important;}
.w170{	width:170px  !important;}
.w175{	width:175px  !important;}
.w180{	width:180px  !important;}
.w185{	width:185px  !important;}
.w190{	width:190px  !important;}
.w195{	width:195px  !important;}
.w200{	width:200px  !important;}
.w205{	width:205px  !important;}
.w210{	width:210px  !important;}
.w215{	width:215px  !important;}
.w220{	width:220px  !important;}
.w225{	width:225px  !important;}
.w230{	width:230px  !important;}
.w235{	width:235px  !important;}
.w240{	width:240px  !important;}
.w245{	width:245px  !important;}
.w250{	width:250px  !important;}
.w255{	width:255px  !important;}
.w260{	width:260px  !important;}
.w265{	width:265px  !important;}
.w270{	width:270px  !important;}
.w275{	width:275px  !important;}
.w280{	width:280px  !important;}
.w285{	width:285px  !important;}
.w290{	width:290px  !important;}
.w295{	width:295px  !important;}
.w300{	width:300px  !important;}
.w305{	width:305px  !important;}
.w310{	width:310px  !important;}
.w315{	width:315px  !important;}
.w320{	width:320px  !important;}
.w325{	width:325px  !important;}
.w330{	width:330px  !important;}
.w335{	width:335px  !important;}
.w340{	width:340px  !important;}
.w345{	width:345px  !important;}
.w350{	width:350px  !important;}
.w355{	width:355px  !important;}
.w360{	width:360px  !important;}
.w365{	width:365px  !important;}
.w370{	width:370px  !important;}
.w375{	width:375px  !important;}
.w380{	width:380px  !important;}
.w385{	width:385px  !important;}
.w390{	width:390px  !important;}
.w395{	width:395px  !important;}
.w400{	width:400px  !important;}
.w405{	width:405px  !important;}
.w410{	width:410px  !important;}
.w415{	width:415px  !important;}
.w420{	width:420px  !important;}
.w425{	width:425px  !important;}
.w430{	width:430px  !important;}
.w435{	width:435px  !important;}
.w440{	width:440px  !important;}
.w445{	width:445px  !important;}
.w450{	width:450px  !important;}
.w455{	width:455px  !important;}
.w460{	width:460px  !important;}
.w465{	width:465px  !important;}
.w470{	width:470px  !important;}
.w475{	width:475px  !important;}
.w480{	width:480px  !important;}
.w800{	width:800px  !important;}
.w1000{	width:1000px  !important;}
.w1070{	width:1070px  !important;}
.w1100{	width:1100px  !important;}
.wAuto{	width:auto;}


/* ######################################################## MIN WIDTH */
.mW5  {	min-width:5px  !important;}
.mW10 {	min-width:10px  !important;}
.mW13 {	min-width:13px  !important;}
.mW15 {	min-width:15px  !important;}
.mW20 {	min-width:20px  !important;}
.mW25 {	min-width:25px  !important;}
.mW30 {	min-width:30px  !important;}
.mW35 {	min-width:35px  !important;}
.mW37 {	min-width:37px  !important;}
.mW40 {	min-width:40px  !important;}
.mW45 {	min-width:45px  !important;}
.mW50 {	min-width:50px  !important;}
.mW55 {	min-width:55px  !important;}
.mW60 {	min-width:60px  !important;}
.mW65 {	min-width:65px  !important;}
.mW70 {	min-width:70px  !important;}
.mW75 {	min-width:75px  !important;}
.mW80 {	min-width:80px  !important;}
.mW85 {	min-width:85px  !important;}
.mW90 {	min-width:90px  !important;}
.mW95 {	min-width:95px  !important;}
.mW100{	min-width:100px  !important;}



.w1p				{	width: 1% !important;	}
.w2p				{	width: 2% !important;	}
.w3p				{	width: 3% !important;	}
.w4p				{	width: 4% !important;	}
.w5p				{	width: 5% !important;	}
.w6p				{	width: 6% !important;	}
.w7p				{	width: 7% !important;	}
.w8p				{	width: 8% !important;	}
.w10p				{	width: 10% !important;	}
.w12_5p				{	width: 12.5% !important;}
.w15p				{	width: 15% !important;	}
.w16p				{	width: 16% !important;	}
.w17p				{	width: 17% !important;	}
.w18p				{	width: 18% !important;	}
.w19p				{	width: 19% !important;	}
.w20p				{	width: 20% !important;	}
.w21p				{	width: 21% !important;	}
.w22p				{	width: 22% !important;	}
.w23p				{	width: 23% !important;	}
.w24p				{	width: 24% !important;	}
.w25p				{	width: 25% !important;	}
.w26p				{	width: 26% !important;	}
.w27p				{	width: 27% !important;	}
.w28p				{	width: 28% !important;	}
.w29p				{	width: 29% !important;	}
.w30p				{	width: 30% !important;	}
.w31p				{	width: 31% !important;	}
.w32p				{	width: 32% !important;	}
.w33p				{	width: 33% !important;	}
.w35p				{	width: 35% !important;	}
.w40p				{	width: 40% !important;	}
.w45p				{	width: 45% !important;	}
.w46p				{	width: 46% !important;	}
.w47p				{	width: 47% !important;	}
.w48p				{	width: 48% !important;	}
.w49p				{	width: 49% !important;	}
.w50p				{	width: 50% !important;	}
.w51p				{	width: 51% !important;	}
.w55p				{	width: 55% !important;	}
.w60p				{	width: 60% !important;	}
.w64p				{	width: 64% !important;	}
.w65p				{	width: 65% !important;	}
.w66p				{	width: 66% !important;	}
.w70p				{	width: 70% !important;	}
.w75p				{	width: 75% !important;	}
.w80p				{	width: 80% !important;	}
.w85p				{	width: 85% !important;	}
.w90p				{	width: 90% !important;	}
.w95p				{	width: 95% !important;	}
.w100p, .wMax		{	width:100% !important;	}

.w100p-2			{	width:calc(100% - 2px) !important; }
.w100p-5			{	width:calc(100% - 5px) !important; }
.w100p-10			{	width:calc(100% - 10px) !important; }
.w100p-20			{	width:calc(100% - 20px) !important; }
.w100p-30			{	width:calc(100% - 30px) !important; }
.w100p-40			{	width:calc(100% - 40px) !important; }
.w100p-50			{	width:calc(100% - 50px) !important; }
.w100p-60			{	width:calc(100% - 60px) !important; }
.w100p-70			{	width:calc(100% - 70px) !important; }
.w100p-80			{	width:calc(100% - 80px) !important; }
.w100p-90			{	width:calc(100% - 90px) !important; }
.w100p-100			{	width:calc(100% - 100px) !important; }
.w100p-110			{	width:calc(100% - 110px) !important; }

td.w5p				{	width:5% !important; 		padding-right: 5px !important;}
td.w10p				{	width:10% !important; 		padding-right: 5px !important;}
td.w15p				{	width:15% !important; 		padding-right: 5px !important;}
td.w20p				{	width:20% !important; 		padding-right: 5px !important;}
td.w25p				{	width:25% !important; 		padding-right: 5px !important;}
td.w30p				{	width:30% !important; 		padding-right: 5px !important;}
td.w35p				{	width:35% !important; 		padding-right: 5px !important;}
td.w40p				{	width:40% !important; 		padding-right: 5px !important;}
td.w45p				{	width:45% !important; 		padding-right: 5px !important;}
td.w50p				{	width:50% !important; 		padding-right: 5px !important;}
td.w55p				{	width:55% !important; 		padding-right: 5px !important;}
td.w60p				{	width:60% !important; 		padding-right: 5px !important;}
td.w65p				{	width:65% !important; 		padding-right: 5px !important;}
td.w70p				{	width:70% !important; 		padding-right: 5px !important;}
td.w75p				{	width:75% !important; 		padding-right: 5px !important;}
td.w80p				{	width:80% !important; 		padding-right: 5px !important;}
td.w85p				{	width:85% !important; 		padding-right: 5px !important;}
td.w90p				{	width:90% !important; 		padding-right: 5px !important;}
td.w95p				{	width:95% !important; 		padding-right: 5px !important;}
td.w100p, td.wMax	{	width:100% !important; 		padding-right: 5px !important;}


.h100p, .hMax		{	height:100% !important;	}






/* ######################################################## DragAndDrop */

/* Parameter Readonly */
table.dragTable{
    background-color: #23af8cCC;
	border: 1px solid #3c3c3c;
	border: 1px solid var(--black-color);
	padding: 1px !important;
	-webkit-box-shadow: 5px 6px 6px -2px rgba(0,0,0,0.3);
	-moz-box-shadow: 5px 6px 6px -2px rgba(0,0,0,0.3);
	box-shadow: 5px 6px 6px -2px rgba(0,0,0,0.3);
	border-spacing: 2px;
}

table.dragTable th{
	color: white;
	font-weight: bold;
	height: 20px;
}

table.dragTable td{
	border: 1px solid #1e9476;
	background-color: white;
	height: 20px;
	padding-left: 2px;
}

.dragCon .dragPoint{
	border: 1px dashed #23af8cCC;
	width: 20px;
	height: 20px;
	border-radius: 18px;
	margin: 5px auto;
}

.ui-draggable-handle:not(.ui-draggable-disabled),
.dragTable,
.dragPoint{
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.ui-draggable-handle:active:not(.ui-draggable-disabled),
.dragTable,
.dragPoint{
	cursor: -webkit-grabbing;
	cursor: -moz-grabbing;
	cursor: grabbing;
}

/* FILE INPUT DRAG AND DROP */
.dragDropZone.dragover{
    background-color:var( --medium-grey-color);
}

input.dragDropInput{
                position: absolute;
                cursor: pointer;
                opacity:0;
                filter: alpha(opacity=0);
                z-index: 10000;
}

.dragDropZone:not(.dragover) input.dragDropInput{
                top:-4000px !important;
                left:-4000px !important;
}

/* ######################################################## MOUSE CONTROL */

input.mCActive, span.ui-spinner.mCActive{
	animation: mouseControlActive 2s infinite;
}

@keyframes mouseControlActive
{
	0%   {	border-color: #005ea8;	background: #C6D6F6;	}
	50%  {	border-color: #6D6D6D;	background: #FFFFFF;	}
	100% {	border-color: #005ea8;	background: #C6D6F6;	}
}

body.mCActive, [mouseControlTargetId]{
	cursor: e-resize !important;
	-moz-user-select: -moz-none;
	-moz-user-select: none;
	-o-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}


/* ######################################################## Save Button */

.label_saved{
	color:#23af8c;
	color:var(--green-color);
	position: relative;
	left: 5px;
	top: 3px;
	float: left;
}

button.submit_button, button.submit_button1, button.submit_button2, button.default_button {
	background-color: #23af8c;
	background-color: var(--green-color);
	color: white;
}

button.submit_button:hover:not([disabled]), button.default_button:hover:not([disabled]) {
	background-color: #1e9476 !important;
	background-color: var(--dark-green-color) !important;
	color: white;
}

button.submit_button.save-error, button.default_button.save-error{
	color: black !important;
	background-color: #f3943e !important;
	background-color: var(--orange-color) !important;
	border-color: #3c3c3c;
}

button.submit_button.save-error:hover, button.default_button.save-error:hover{
	background-color: #f3943e !important;
	background-color: var(--orange-color) !important;
}

button.submit_button.save-error:focus, button.default_button.save-error:focus{
	box-shadow: 0 0 2px #f3943e !important;
	box-shadow: 0 0 2px var(--orange-color) !important;
}

button.submit_button,
button[type="submit"]
{
	min-width: 60px;
	position: relative;
}


button.submit_button .waitCon,
button[type="submit"] .waitCon
{
	position: absolute;
	top: 0px;
	left: 9px;
	height: 100%;
	width: 40px;
}

button.submit_button .waitCon [class*='point'],
button[type="submit"] .waitCon [class*='point']
{
	height: 5px;
	width: 5px;
	/*background-color: #1e9476;*/
	border-radius: 4px;
	display: inline-block;
  	animation-name: ani_submit_button_wait_point;
  	animation-duration: 0.6s;
  	animation-iteration-count: infinite;
  	position: relative;
  	top: 0px;
}
button:hover.submit_button .waitCon [class*='point'],
button:hover[type="submit"] .waitCon [class*='point']
{
  	animation-name: ani_submit_button_wait_point_hover;
}

button.submit_button .waitCon .point1,
button[type="submit"] .waitCon .point1
{
  	animation-delay: 0s;
}
button.submit_button .waitCon .point2,
button[type="submit"] .waitCon .point2
{
	margin-left: 7px;
	margin-right: 7px;
  	animation-delay: 0.2s;
}
button.submit_button .waitCon .point3,
button[type="submit"] .waitCon .point3
{
  	animation-delay: 0.4s;
}

@keyframes ani_submit_button_wait_point {
  0%   	{background-color: #1e9476;}
  10% 	{background-color: white;}
  30% 	{background-color: white;}
  40%   {background-color: #1e9476;}
  100%  {background-color: #1e9476;}
}
@keyframes ani_submit_button_wait_point_hover {
  0%   	{background-color: #23af8c;}
  10% 	{background-color: white;}
  30% 	{background-color: white;}
  40%   {background-color: #23af8c;}
  100%  {background-color: #23af8c;}
}



button.submit_button .saved,
button[type="submit"] .saved
{
	height: 14px;
	width: 16px;
	background-image: url("../images/done.svg");
	background-repeat: no-repeat;
	position: absolute;
	top: 3px;
	left: 22px;
}


/* ######################################################## Sonstiges */
/* ValueTable content */
.vtContent {
	margin-top: 10px;
}

div[switchState="1"], .greenCheck{
	background-image: url(../../cwi/css/ui/images/ui-icons_23af8c_256x240.png);
	background-position: -64px -144px;
	width: 16px;
	height: 16px;
}

div[switchState="0"]{
	background-image: url(../../cwi/css/ui/images/ui-icons_aaaaaa_256x240.png);
	background-position: -48px -128px;
	width: 16px;
	height: 16px;
}

div[scs="1"]{
	background-image: url(../images/icon20_individual.png);
	width: 20px;
	height: 20px;
}

div[scs="0"]{
	background-image: url(../images/icon20_global.png);
	width: 20px;
	height: 20px;
}

div[cam="0"]{
	background-image: url(../images/icon20_automatic.png);
	width: 20px;
	height: 20px;
}

div[cam="1"]{
	background-image: url(../images/icon20_manual.png);
	width: 20px;
	height: 20px;
}

div[cam="2"]{
	background-image: url(../images/icon20_phonebook_automatic.png);
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
}

div[cam="3"]{
	background-image: url(../images/icon20_phonebook_manual.png);
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
}

div[cam="4"]{
	background-image: url(../images/icon20_reject.png);
	width: 20px;
	height: 20px;
}


/* MOUSE CONTROL */

input.mCActive, span.ui-spinner.mCActive{
	animation: mouseControlActive 2s infinite;
}

@keyframes mouseControlActive
{
	0%   {	border-color: #005ea8;	background: #C6D6F6;	}
	50%  {	border-color: #6D6D6D;	background: #FFFFFF;	}
	100% {	border-color: #005ea8;	background: #C6D6F6;	}
}

body.mCActive, [mouseControlTargetId]{
	cursor: e-resize !important;
	-moz-user-select: -moz-none;
	-moz-user-select: none;
	-o-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.play {
	margin-top: 15px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-left: 20px solid white;
    border-bottom: 12px solid transparent;
	cursor: pointer;
}

.play:hover {
    border-left: 20px solid #23af8c;
    border-left: 20px solid var(--green-color);
}

.play.disabled {
    border-left: 20px solid #aaaaaa;
    border-left: 20px solid var(--disabled-grey-color);
	cursor: default;
}

.pause {
	margin-top: 19px;
    width: 6px;
    height: 20px;
    border-right: 5px solid white;
    border-left: 5px solid white;
	margin-right: 4px;
}

.pause:hover {
    border-right: 5px solid #23af8c;
    border-right: 5px solid var(--green-color);
    border-left: 5px solid #23af8c;
    border-left: 5px solid var(--green-color);
}

/* GLOBAL SITE */
.bundleVersion div.btn, .codecVersion div.btn{
	cursor: pointer;
	background-image: url(../../cwi/css/ui/images/ui-icons_3c3c3c_256x240.png);
	width: 12px;
	height: 16px;
	background-position: -68px -16px;
	float: left;
}

.bundleVersion div.btn.collapsed, .codecVersion div.btn.collapsed{
	background-position: -36px -16px;
}

table.rOnlyGrey tr.bundleDetails th, 
table.rOnly tr.bundleDetails th, 
table.rOnlyGrey tr.codecDetails th,
table.rOnly tr.codecDetails th
{
	padding-left: 15px !important;
}

/* FIRMWARE UPDATE DIALOG */
.fwUpdateDialog table th,
.fwUpdateDialog table td
{
	text-align: center;
}


/* ALARM SEITE - BUTTONs zum setzen von Ref. Werten */
.btnSetRefValue{
	position: relative;
	/* display: inline-flex; */
}
.btnSetRefValue span:not(.val){
	position: absolute;
	color:#aaaaaa;
	top:0px;
}
.btnSetRefValue span.set{
	left: 5px;
}
.btnSetRefValue span.unit{
	right: 5px;
}
.btnSetRefValue:hover span:not(.val){
	color: white;
}



#alarmInfoCon{
	z-index: 15;
	position: absolute;
	height: 0px;
	width: 0px;
	display: flex !important;
	justify-content: center;
}

#alarmInfoCon .infoCon{
	background-color: #23af8c;
	border: 1px solid #23af8c;
	box-sizing: border-box;
	color: white;
	border-radius: 5px;
	overflow: hidden;
	width: max-content;
	position: absolute;
}

#alarmInfoCon .btnCon{
	background-color: white;
	height: 100%;
	width: 50px;
	position: relative;
}

#alarmInfoCon .valCon{
	position: relative;
	height: 100%;
	margin-left: 10px;
	margin-right: 10px;
	width: auto;
}

#alarmInfoCon .valCon .helper{
	height: 30px;
}

#alarmInfoCon .valCon .label{
	font-size: 10px;
    height: 15px;
    line-height: 15px;
	white-space: nowrap;
}

#alarmInfoCon .valCon .value{
	font-size: 13px;
    height: 15px;
    line-height: 15px;
	float: left;
	white-space: nowrap;
}
#alarmInfoCon .valCon .value img{
	height: 15px;
}

#alarmInfoCon .valCon .unit{
	font-size: 10px;
    height: 15px;
    line-height: 17px;
	padding-left: 7px;
	float: left;
}

/* ######################################################## LOG SITE - START  ########################################################*/

.empty_log
{
	margin-top: 8px;
	font-style: italic;
}
.log_table{
	max-width: 1048px;
	border: 1px solid #cccccc !important;
	border: 1px solid var(--medium-grey-color) !important;
}

.log_table,
.file_table
{
	border-spacing: 0px;
	text-align: left;
	background-color: #efefef !important;
	background-color: var(--light-grey-color) !important;
}

.log_table tr
{
	height: 20px;
}

.log_table th,
.file_table th,
.file_table td
{
	border-bottom: 1px solid #cccccc;
	border-bottom: 1px solid var(--medium-grey-color);
	padding: 6px 4px 6px 4px;
	/* margin-top: 12px; */
	height: 20px;
}

.file_table tbody tr:last-of-type th,
.file_table tbody tr:last-of-type td
{
	border-bottom: none;
}

.log_table td,
.file_table td
{
	padding: 2px 4px;
	vertical-align: center;
}

.log_table td:nth-child(1)
{
	width:18%;
}

.log_table td:nth-child(2)
{
	width:12%;
}

/* ######################################################## LOG SITE - END ########################################################*/

/* ######################################################## GPI SITE - START  ########################################################*/

.gpiEmptyTr td > div,
.gpiEmptyTr td select,
.gpiEmptyTr td > button.del
{
	display: none !important;
}


/* ######################################################## GPI SITE - END  ########################################################*/

/* ######################################################## SCHEDULER SITE - START  ########################################################*/

.schedulerEmptyTr td > div,
.schedulerEmptyTr td select,
.schedulerEmptyTr td > button.del
{
	display: none !important;
}


/* ######################################################## SCHEDULER SITE - END  ########################################################*/

/* ######################################################## STATUS - TIME / CLOCK - START  ########################################################*/
.ntpPtpStatusCon > div
{
	padding-bottom: 15px;
}
/* ######################################################## STATUS - TIME / CLOCK - END  ########################################################*/

/* Value Panel like LEDs */
.ledborder_grey{
	border-left:solid 8px var(--disabled-grey-color);
}

.ledborder_red{
	border-left:solid 8px var(--red-color);
}

.ledborder_green{
	border-left:solid 8px var(--green-color);
}

.ledborder_yellow{
	border-left:solid 8px var(--orange-color);
}

.rotate {
	animation: rotation 2s infinite linear;
}

@keyframes rotation {
	from { transform: rotate(0deg); }
	80% { transform: rotate(359deg); }
	to { transform: rotate(359deg);	}
}

.inputPortWarning
{
  -webkit-box-shadow: inset 0px 0px 2px 1px orange !important;
  -moz-box-shadow: inset 0px 0px 2px 1px orange !important;
  box-shadow: inset 0px 0px 2px 1px orange !important;
  border-color: orange !important;
}


.vlan_hbar
{
	position: absolute !important;
	height: 1px !important;
	background-color: #cccccc !important;
	width: 14px !important;
	left: 80px !important;
	top: 16px !important;
	z-index: 1 !important;
}

.vlan_vbar
{
	position: absolute !important;
	height: 30px !important;
	background-color: #cccccc !important;
	width: 1px !important;
	left: 80px !important;
	top: 0px !important;
}

.vlan_svbar
{
	position: absolute !important;
	height: 16px !important;
	background-color: #cccccc !important;
	width: 1px !important;
	left: 80px !important;
	top: 0px !important;
}


/* LOG VIEW TOOLTIP */
div#logViewTooltipCon{
	padding: 5px;
	/* width: 200px; */
	border: 1px solid;
	/* border-color: white; */
	/* border-color: #285a8c;
	border-color: var(--blue-color);
	background-color: white;
	background-color:#23af8c;
	background-color:var(--green-color); */
	
	border-color: #23af8c;
	background-color:#efefef;
	background-color:var(--light-grey-color);

	z-index: 1000;
	overflow: hidden;
	/* height: 50px; */
	position: absolute;
	/* display: none; */
}


/* Copy Helper see function copyToClipboard() */
#copyhelper{
	position: absolute;
	top: -100000px;
	left: -100000px;
}

