/*
 * -----------------------------------------------------------------------------
 * Lucom Interaction Platform
 * (C) Lucom GmbH, Erkrath. All rights reserved.
 *
 * $Id: menu.css 28981 2022-05-04 10:12:41Z marc $
 * -----------------------------------------------------------------------------
 */
.menuPanel {
	background-color: #ffffff;
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11pt;
	font-style: normal;
	font-weight: bold;
	margin: 0;
	padding: 0;
}

.menuPanel ul {
	margin: 0;
	padding: 0;
}

.menuPanel li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.menuPanel .link > a,
.menuPanel .link > a:hover,
.menuPanel .link > a:focus,
.menuPanel .link > a:active,
.menuPanel .link > div:hover {
	margin: 0;
	text-decoration: none;
}

.menuPanel .link  a {
	display: block;
	margin: 0;
	color: #000000;
}

.menuItem {
	padding-left: 25px;
}

.menuItemCollapsed {
	padding-left: 12px;
}

.menuLabel {
	height: 38px;
	line-height: 38px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.menuPanel .link > a span,
.menuPanel .link > div span {
	overflow: hidden;
}

/*
 * Note: ths definition has to be listed AFTER the ".item a" definition.
 * Otherwise NS7 will not change the background color on the hover effect.
 * So the order of style definitions seems to be quite important ;-)
 */
.menuPanel .item .link > a:hover,
.menuPanel .item .link > a:focus,
.menuPanel .item .link > a:active,
.menuPanel .item .link > div:hover {
	background-repeat: repeat-x;
	background-color: #cccccc;
	color: #000000;

}

.menuPanel .itemSelected {
	background-repeat: repeat-x;
	background-color: #eeeeee;
}

.menuPanel .itemSelected .link > a,
.menuPanel .itemSelected .link > div {
	color: #000000;
}

.menuPanel .itemSelected .link > a span,
.menuPanel .itemSelected .link > div span {
	overflow: hidden;
}

.menuPanel .subItem .link > a,
.menuPanel .subItem .link > div {
	font-size: 11pt;
	font-weight: normal;
	padding-left: 42px;
	overflow: hidden;
	color: #000000;
	background-color: #ffffff;
}

.menuPanel .subItemSelected {
	color: #ffffff;
}

.menuPanel .subItemSelected .link > a,
.menuPanel .subItemSelected .link > div {
	color: #000000;
	background-color: #eeeeee;
}

.menuPanel .subItemSelected .link > a:hover,
.menuPanel .subItemSelected .link > a:focus,
.menuPanel .subItemSelected .link > a:active,
.menuPanel .subItemSelected .link > div:hover,
.menuPanel .subItem .link > a:hover,
.menuPanel .subItem .link > a:focus,
.menuPanel .subItem .link > a:active,
.menuPanel .subItem .link > div:hover {
	background-image: none;
	font-weight: normal;
	color: #000000;
	background-color: #cccccc;
}

.menuPanel .label {
	color: grey;
	font-size: 11pt;
	font-weight: normal;
	padding: 15px 0 4px 20px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.menuItemSeparator {
	border: 1px solid #CCCCCC;
	margin: 10px 5px;
}

.menuItemSeparator.hidden {
	display: none;
}

.menuPanel .collapsed {
	display: none !important;
}

.clearBoth {
	float: none;
}

.menuPanel .menuImg {
	width: 32px;
	height: 32px;
	padding-right: 4px;
	vertical-align: middle;
	display: inline-block;
}

.menuPanel .menuHoverImg {
	width: 32px;
	height: 32px;
	padding-right: 4px;
	vertical-align: middle;
	display: inline-block;
}

.menuPanel .opener {
	float: left;
}

.menuPanel .opener img {
	width: 16px;
	height: 32px;
	padding-top: 2px;
	padding-left: 7px;
}

.menuPanel .opener:hover,
.menuPanel .opener:focus,
.menuPanel .opener:active {
	cursor: pointer;
}

.menuLabelIcon {
	height: 38px;
	line-height: 38px;
	float: left;
	position: relative;
}

.menuLabelIcon.hasChildren.indicator:after {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(0, 0, 0, 0);
	border-left-color: #000000;
	border-width: 5px;
	margin-top: -5px;
}

.menuItemTooltip {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	border: 1px solid #CCCCCC;
	border-radius: 5px;
	padding: 5px;
	background-color: white;
	-webkit-box-shadow: rgb(150, 150, 150) 2px 2px 10px 1px;
	-moz-box-shadow: rgb(150, 150, 150) 2px 2px 10px 1px;
	box-shadow: rgb(150, 150, 150) 2px 2px 10px 1px;
	z-index: 91;
}

.menuItemTooltip.hide {
	transition: opacity 200ms;
	opacity: 0;
	visibility: visible;
}

.menuItemTooltip.show {
	transition: opacity 200ms;
	opacity: 1;
	visibility: visible;
}

.menuItemTooltip:after {
	right: 100%;
	top: 20px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(0, 0, 0, 0);
	border-right-color: #000000;
	border-width: 5px;
	margin-top: -5px;
}

.menuIconTooltipLink {
	border-radius: 5px;
	padding-right: 15px;
}

.menuIconTooltipLink div {
	display: inline-block;
	vertical-align: middle;
}

.tooltipItemOpener div {
	width: 16px;
	height: 32px;
	padding-top: 2px;
	padding-left: 7px;
	background-repeat: no-repeat;
	background-position: center;
}

.tooltipItemOpener .closed {
	background-image: url(../images/menu/closed.png);
}
.tooltipItemOpener .opened {
	background-image: url(../images/menu/opened.png);
}

.menuItemTooltip .loading {
	background-image: url(../images/menu/ajax-loader.gif);
	height: 32px;
	width: 32px;
	padding: 10px;
	background-position: center;
	background-repeat: no-repeat;
}

.menuCollapser {
	position: fixed;
	bottom: 18px;
	width: inherit;
	height: 40px;
	cursor: pointer;
	background-image: url(../images/menu/collapse.png);
	background: url(../images/menu/collapse.png), -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 25%, rgba(255,255,255,1) 100%);
	background: url(../images/menu/collapse.png), -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(25%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,1)));
	background: url(../images/menu/collapse.png), -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 25%,rgba(255,255,255,1) 100%);
	background: url(../images/menu/collapse.png), -o-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 25%,rgba(255,255,255,1) 100%);
	background: url(../images/menu/collapse.png), -ms-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 25%,rgba(255,255,255,1) 100%);
	background: url(../images/menu/collapse.png), linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 25%,rgba(255,255,255,1) 100%);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

.menuCollapser.collapsed {
	background-image: url(../images/menu/uncollapse.png);
	background: url(../images/menu/uncollapse.png), -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 25%, rgba(255,255,255,1) 100%);
	background: url(../images/menu/uncollapse.png), -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(25%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,1)));
	background: url(../images/menu/uncollapse.png), -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 25%,rgba(255,255,255,1) 100%);
	background: url(../images/menu/uncollapse.png), -o-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 25%,rgba(255,255,255,1) 100%);
	background: url(../images/menu/uncollapse.png), -ms-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 25%,rgba(255,255,255,1) 100%);
	background: url(../images/menu/uncollapse.png), linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 25%,rgba(255,255,255,1) 100%);
	background-position: 50%;
	background-repeat: no-repeat;
}

.resizeHandler {
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
	cursor: ew-resize;
	
	position: absolute;
	font-size: 0.1px;
	display: block;
	-ms-touch-action: none;
	touch-action: none;
	background-image: url(../images/resizeHandler.png);
	background-position: right center;
	background-repeat: no-repeat;
}

.menuPanel .menuLabel.hide,
.menuPanel .subItem.hide,
.menuPanel .opener.hide,
.menuPanel > ul > li > .label.hide {
	transition: opacity 200ms;
	opacity: 0;
	visibility: visible;
}

.menuPanel .menuLabel.show,
.menuPanel .subItem.show,
.menuPanel .opener.show,
.menuPanel > ul > li > .label.show {
	transition: opacity 200ms;
	opacity: 1;
	visibility: visible;
}
