
/*
	Overlay window style
*/
/*
	Overlay editor
*/
.overlay-editor {
	width: 100%;
	height: 100%;
	background-color: #5559;
	z-index: 1000;
	position: fixed;
	top: 0px;
	display: none;
	/* top: 0px; */
	/* bottom: 0px; */
}
.overlay-editor .middle {
	display: table-cell;
	height: 90%;
	vertical-align: middle;
}

.middle .body {
	/* margin-top:-5%; */
	margin-left:auto;
	margin-right:auto;
	width: 85%;
	height: 90%;
	/* border: 1px solid black; */
	position:relative;
	background-color:#fff;
}


.middle .body.small {
	/* margin-top:-5%; */
	margin-left:auto;
	margin-right:auto;
	width: 30%;
	height: 40%;
	/* border: 1px solid black; */
	position:relative;
	background-color:#fff;
}

.overlay-editor .header {
	height:40px;
	font-size:1.5em;
	font-weight: bold;
	background-color:#eee;
	/* margin:10px; */
}

.overlay-editor .header {
	height:40px;
	font-size:1.5em;
	font-weight: bold;
	background-color:#eee;
	/* margin:10px; */
}
.overlay-editor-title {
	display:inline-block;
	margin:5px 0px 0px 10px;
}

.centertitle {
	text-align: center;
	font-size: 1.5em;
	font-weight: bold;
	margin:5px;
}
.overlay-editor .header button {
	margin-right:4px;
	margin-top:2px;
	float:right;
}
.overlay-editor .content {
	position:absolute;
	top:40px;
	bottom:40px;
	width:100%;
	/* object-fit: contain; */
}
.overlay-editor .footer {
	position:absolute;
	bottom:0px;
	width:100%;
	height:40px;
	background-color:#eee;
}

.overlay-editor .footer button {
	margin-top:3px;
	margin-right:4px;
	float:right;
/*
	height:30px;
	width:60px;
	font-weight: bold;
*/
}

.overlay-editor  .propertyLabel {
	display: inline-block;
}

#overlaywindow-root {
	height:100%;
	position:relative;
}

#overlaywindow-menu {
	position:absolute;
	top:0px;
	height:40px;
	width:100%;
}
.overlaywindow-menu {
	position:absolute;
	top:0px;
	height:40px;
	width:100%;
}

#overlaywindow-content {
	position:absolute;
	top:40px;
	bottom:0px;
	right:0px;
	width:100%;
}


.overlaywindow-content {
	position:absolute;
	top:40px;
	bottom:0px;
	right:0px;
	width:100%;
}
.overlaywindow-content-panel{
	position:relative;
	height:100%;
	width:100%;
}

.overlaywindow-content-panel .scrollable{
	position:relative;
	height:100%;
	width:100%;
	overflow-y: auto;
}

.musdiagram-grid {
	display: grid;
	grid-template-columns: 60% 40%;
	grid-template-rows: 50% 50%;
}
.musdiagram-graph {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
	border-right: 1px solid #d8d8d8;
	overflow: hidden;
}
.musdiagram-network {
	grid-column: 2 / 3;
	grid-row: 1 / 3;
	/* border-top: 1px solid #d8d8d8; */
}

#mus-diagram-slider {
	position : absolute;
	background-color : white;
	font-size:18px;
	user-select: none;
	border: 1px solid #8B8B8B;
	border-radius: 4px;
	top:90%;
	z-index: 1000;
}


.scrollable{
	overflow: auto;
}

.leftside {
	float:left;
	width:20%;
	height:100%;
	display:flex;
	flex-direction: column;
}

.rightside {
	position:relative;
	display:flex;
	flex-direction: column;
	float:left;
	width:80%;
	height:100%;
	border-left: 1px solid #ccc;
}

.leftside .top {
	flex: 0 1;
}

.leftside .panel {
	flex: 0 1 auto;
	overflow-y: auto;
	margin:0px;
}


.rightside .top {
	flex: 0 1;
}

.rightside .panel {
	flex: 0 1 auto;
	overflow-y: auto;
	
}

.overlaywindow-content table{
	width:100%;
	border-collapse: collapse;
}
#overlaywindow-content table{
	width:100%;
	border-collapse: collapse;
}
#overlaywindow-content th{
	border: 1px solid #aaa;
	background-color: #f0f0f0;
	padding: 8px;
	}
 #overlaywindow-content td{
	border: 1px solid #ddd;
	padding: 8px;
 }
 .overlaywindow-content td{

	padding: 2px;
 }
 #overlaywindow-content td label {
	 margin:2px 2px 2px 2px;
	 padding:5px;
	 
	-webkit-user-select: none;  /* Chrome all / Safari all */
	-moz-user-select: none;     /* Firefox all */
	-ms-user-select: none;      /* IE 10+ */
	user-select: none;          /* Likely future */      
	  
 }

 #overlaywindow-content table.value-table input {
	 width:80px;
 }