@import url("./bootstrap-icons.css");

i-sort::selection { /* Safari */ 
	background: #55f;
	color: white;
}
::-moz-selection { /* Firefox */
	background: #55f;
	color: white;
}

input:focus, textarea:focus, select:focus {
	outline: none; /* Removes the thick border in Chrome */
}

input[type=range] {
	-webkit-appearance: none; /* Hides the slider so that custom slider can be made */
	/*width: 100%;*/ /* Specific width is required for Firefox. */
	background: transparent; /* Otherwise white in Chrome */
}

input[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: 1px solid #999;
	height: 20px;
	width: 20px;
	border-radius: 10px;
	background: #ffffff;
	margin-top: -6px;  /* specify a margin in Chrome */
}

input[type=range]::-moz-range-thumb {
	/*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
	border: 1px solid #777;
	height: 20px;
	width: 20px;
	border-radius: 10px;
	background: #ffffff;
}

input[type=range]::-ms-thumb {
	border: 1px solid #777;
	height: 20px;
	width: 20px;
	border-radius: 10px;
	background: #ffffff;
}

input[type=range]::-webkit-slider-runnable-track {
	width: 100%;
	height: 8px;
	background: #aaa;
}

input[type=range]:focus::-webkit-slider-runnable-track {
	outline: none; 
}

input[type=range]::-moz-range-track {
	width: 100%;
	height: 8px;
	background: #aaa;
	border: 0;
}

input[type=range]::-moz-focus-outer {
	border: 0;
}

input[type=range]::-ms-track {
	width: 100%;
	height: 8px;
	background: #aaa;
	border-color: transparent;
	color: transparent;
}

.input-plain {
	width: 100%;
	/*width: 1500px;*/
	border: none;
	outline: none;
	box-shadow: none;
	background: none;
}

select {
	border: 1px solid #aaa;
	background-color: #fff;
}

/* not working
option {
	margin: 1px 2px 1px 4px;
	padding: 3px 0;
	max-height: 40px;
	height: 40px;
}*/

textarea {
	resize: none;
	tab-size: 4;
  -moz-tab-size: 4;
  -o-tab-size: 4;
}
.textarea {
	border: none;
	background: none;
	font-family: arial;
	font-size: 12px;
}
.textarea-notes {
	height: 100%;
	width: 100%;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */

	padding: 20px 8px 8px 16px;
	/*border: 1px solid #ccc;*/
	border: none;
	font-family: Arial;
	font-size: 14px;
}

.scroll-bars-y {
	overflow-y: scroll;
}
.break_all {
	overflow: auto;
	white-space: normal;
}
.checkbox0, .radio0 {
	width: 13px;
	height: 13px;
	margin: 0;
	padding: 0;
	display: block; /* needed to remove extra margin */
	overflow: hidden;
}
.checkbox1, .radio1 {
	width: 14px;
	height: 14px;
}
.checkbox2, .radio2 {
	width: 18px;
	height: 18px;
}
.cursor-default {
	cursor: default;
}

html {
	height: 100%;
}
body {
	height: 100%;
	cursor: default;
	font-family: arial;
	font-size: 12px;
	margin: 0;
	padding: 0;
	/*background-color: #F3F3F3;*/

	/*background: -webkit-linear-gradient(180deg, #0bb 0%, #fff 100%); /* For Safari 5.1 to 6.0 */
	/*background: linear-gradient(180deg, #0bb 0%, #fff 100%); /* Standard syntax */
}
svg {
	font-family: arial;
}
* {
	outline-offset: -4px; 
}


#main_screen {
/*	display: table;*/
	height: 100%;

	display: flex;
	width: 100%;
}

/* only works in FF and Opera
@keyframes blink { 
	50% { border-color: #ff0000; } 
}
.style__ {
    /*animation: blink .5s step-end infinite alternate;
	border: 8px solid #fff;
}
*/

#tree {
	vertical-align: top;
/*	overflow-x: hidden;*/
	white-space: nowrap;
	margin: 0;

	display: inline-flex !important;
	flex-shrink: 0;
	overflow: hidden;
}

#tree.collapsed-tree {
	display: none !important;
}

#tree-width { /* not working in #tree, due to style="display:table-cell" ? */
	font-size: 14px;

	display: flex;
	flex-direction: column;
}

#divider,
#divider_ghost {
	display: table-cell;
	vertical-align: top;
	min-height: 100%;
	border-left: 2px solid #aaa;
	border-right: none;
	cursor: e-resize;
}
.fullscreen-mode
#full-screen-block-divider {
	display: flex !important;
}
.fullscreen-mode
#divider,
.fullscreen-mode
#divider_ghost {
	border-right: unset;
}

.obsolete-element {
	pointer-events: none;
	display: none !important;
}
#tree_pin_icon
.visible {
	display: inline;
}
#tree_pin_icon
.invisible {
	display: none;
}
#tree_pin_icon:hover
.visible {
	display: none;
}
#tree_pin_icon:hover
.invisible {
	display: inline;
}
#divider.collapsed-tree {
	z-index: 999999 !important;
	width: 4px;
	border-left: none;
}
.collapsed-tree
#tree_toggle_container {
	width: 100%;
	height: 100%;
/*	z-index: 99;*/
/*	opacity: 0.4;*/
	border-right: 1px solid #888;
}
.hint-popup {
	position: absolute;
	cursor: pointer;
/*	background-color: rgb(255, 255, 255);*/
	padding: 4px 7px 5px 3px;
	border-radius: 0px 12px 42px 0px;
	border-top: 1px solid #777;
	border-right: 1px solid #777;
	border-bottom: 1px solid #777;
	border-left: none;
	display: none;
	white-space: nowrap;
	box-shadow: 1px 3px 5px #777;
}
@keyframes moveLeft {
	from {
		left: 0px;
	}
	to {
		left: -220px; /* Change this to set the target position */
	}
}
@keyframes flashBorder {
	0% {
		border-color: rgb(225, 225, 142);
		box-shadow: 1px 3px 5px #777;
/*		opacity: 0;*/
	}
	30% {
		border-color: rgb(225, 225, 142);
		box-shadow: 1px 3px 5px rgb(225, 225, 142);
/*		opacity: 1;*/
	}
	100% {
		border-color: rgb(225, 225, 142);
		box-shadow: 1px 3px 5px #777;
/*		opacity: 1;*/
	}
}

#tree-toggle,
#tree-toggle_ghost {
	position: absolute;
	top: 0;
	width: 4px;
	height: calc(var(--tree-header-height) - 1px);
	cursor: pointer;
	background-color: #ddd;
	border: solid #777 1px;
	z-index: 1;
}
.fullscreen-mode
#tree-toggle,
.fullscreen-mode
#tree-toggle_ghost {
  z-index: 999999;
}
.fullscreen-mode
.collapsed-tree
#tree-toggle,
.fullscreen-mode
.collapsed-tree
#tree-toggle_ghost {
  z-index: 999999;
  left: -3px !important;
}

:root {
	--tree-header-height: 79px;
}
.new-tree-style-modifier
#tree-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
}
.new-tree-style-modifier
.tree__header-version {
/*	margin-left: 0px !important;*/
}
.new-tree-style-modifier
#user {
/*	margin: 0px 0 0 5px !important;*/
}
#tree_menu_hint_cont {
	top: calc(0px - var(--tree-header-height));
}
#tree_menu_hint_cont
.hint-msg {
	white-space: normal;
}

.ghost-element {
	opacity: 0;
	pointer-events: none;
}
.ghost-element.visible {
	opacity: 1;
}

#main-cell {
	margin: 0;

	display: inline-flex;
	width: 100%;
	overflow: unset;
}
.fullscreen-mode
#main-cell {
/*	overflow: hidden !important;*/
}

.fullscreen-mode
#scr-main {
	display: none;
}

#main-cont {
/*	height: calc(100% - 2px);*/
	width: 100%;
}

.fullscreen-mode
#main {
	width: calc(100% - 1px);
	height: 100%;
	left: 0px;
}

#scr-full {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
}
.fullscreen-mode
#scr-full {
	pointer-events: auto;
}

.col-max {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#scr-full .col-max {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100%;
}

:root {
	--block-padding: 2px;
}

.block {
	position: relative;
	overflow: hidden;
	padding: 2px;
}
#scr-full .block {
	position: relative;
	overflow: hidden;
	padding: var(--block-padding);
}

#scr-full .main__block {
	border-top: unset;
	border-left: unset;
	border-right: unset;
	border-radius: unset;
	-webkit-border-radius: unset;
	margin: 0 !important;
	display: flex;
	flex-direction: column;
}

#scr-full .main__block.collapsed-block {
	height: 31px;
}

.blockDrag {
	cursor: move;
	height: 25px;
	overflow: hidden;
	font-weight: bold;
}
#scr-full .blockDrag {
	height: 26px;
	cursor: url("./colapse-icon.svg") 14 14, default;
	padding: 3px 4px 0 0;
	flex-shrink: 0;
}

.debugW {
	overflow: hidden;
	border: 1px solid #ccc;
	padding: 2px;
	margin: 0 2px;
	float: right;
	word-wrap: break-word;
	max-width: 99%;
	background-color: white;
}
#scr-full .debugW {
	margin-left: auto;
	flex-shrink: 0;
}

#scr-full .fullscreen-disabled-icon {
	opacity: 0.2;
	cursor: default;
}

.resizeHandle{
	position: absolute;
	height: 18px;
	width: 18px;
}
#scr-full .resizeHandle {
	display: none;
}

#scr-full .block-body {
/*	height: 100%;*/
}

#scr-full .module-container {
	flex-direction: column;
}

#scr-full .module-container.active-module {
	display: flex !important;
/*	height: 100%;*/
}

#scr-full .table-container-modifier {
	width: calc(100% - 1px);
/*	height: 100%;*/
}

#scr-full .table-container-modifier.top-section {
	flex-basis: 0;
}

#scr-full .main__chart-container {
	margin: 1.5px;
	left: -0.5px;
}

:root {
	--contBody-padding: 4px;
	--contBody-border: 1px;
}

.contBody {
	position: relative;
	min-height: 80px;
	padding: 4px;
	/*border: 1px solid #ccc;
	background: #fff;*/
}
#scr-full .contBody {
	position: relative;
	min-height: 80px;
	padding: var(--contBody-padding);
	/*border: 1px solid #ccc;
	background: #fff;*/
/*	height: calc(100% - var(--contBody-padding)*2 - var(--contBody-border)*2) !important;*/
}

:root {
	--t-cont-margin: 12px;
	--t-cont-border: 1px;
}

.t-cont{
	position: relative;
	background: white;
	border: 1px solid #555;
	overflow: hidden;
	margin-top: 12px;
}
#scr-full .t-cont {
	position: relative;
	background: white;
	border: var(--t-cont-border) solid #555;
	overflow: hidden;
	margin-top: var(--t-cont-margin);
	height: calc(100% - var(--t-cont-margin) - var(--t-cont-border)*2);
}

:root {
	--t-cont2-margin: 50px;
	--t-cont2-border: 1px;
}

.t-cont2{
	position: relative;
	background: white;
	border: 1px solid;
	overflow: hidden;
	margin-top: 50px;
}
#scr-full .t-cont2 {
	position: relative;
	background: white;
	border: var(--t-cont2-border) solid;
	overflow: hidden;
	margin-top: var(--t-cont2-margin);
	height: calc(100% - var(--t-cont2-margin) - var(--t-cont2-border)*2);
}

#scr-full .table-wrapper-modifier {
/*	width: 100% !important;*/
/*	height: 100% !important;*/
	display: flex;
	flex-direction: column;
}
#scr-full .table-wrapper-modifier {
	height: 100% !important;
}

:root {
	--table-scrollbar-thickness: 16px;
}

#scr-full .table-head-modifier {
	flex: 0 0;
/*	width: calc(100% - var(--table-scrollbar-thickness)); !important;*/
}

#scr-full .table-body-modifier {
	flex: 1 1 auto;
/*	min-width: calc(100% - var(--table-scrollbar-thickness)); !important;*/
}

#scr-full .bottom-section .table-body-modifier {
/*	height: 0px !important;*/
}

#scr-full .tbl-main {
/*	width: 100%;*/
}

#scr-full-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #dd5;
	opacity: 0.2;
}

.motto {
	cursor: default;
	font-size: 14px;
	color: maroon;
	margin: 0 0 10px 20px;
}

/*.head-login {
	float: right;
	color: blue;
	margin: 6px 0 0 10px;
}*/
.site-intro-popup, .site-intro-popup-big {
	padding: 10px;
	color: maroon;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
}
.site-intro-popup-big {
	padding: 30px 0 30px 0;
	font-size: 28px;
}
.site-intro-popup-small {
	padding: 64px 0 0 0;
	color: maroon;
	font-size: 14px;
	text-align: center;
}
.site-intro {
	padding: 4px 8px 4px 4px;
	text-align: justify;
}
.site-img-fu {
	float: left;
	height: 40px;
	width: 127px;
	margin: 4px 24px 30px 0;
}
.site-img-vi {
	float: left;
	height: 40px;
	width: 117px;
	margin: 4px 24px 30px 0;
}


.full-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.filter-drop, .multi-drop {
	position: absolute;
	background-color: #fff;
	border: 1px solid #777;
	padding: 1px 20px 4px 4px;
}
.subBut-drop {
	position: absolute;
	background-color: #fff;
	border: 1px solid #aaa;
	padding: 0 14px;
}
.audioWave-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.audioWave-marker {
	position: absolute;
	top: 0;
	left: -20px;
	width: 2px;
	height: 100%;
	background-color: #0d0;
}
.save-cancel {
	position: absolute;
	padding: 1px;
	opacity: 0.6;
	width: 19px;
	height: 19px;
}
.save-cancel:hover {
	background-color: #eee;
	border: 1px solid #777;
	padding: 0;
	opacity: 1;
}
span {
	cursor: pointer;
}

.link-help-pdf.help-tutorials {
	display: inline-block;
}
.new-marker {
  position: relative;
  padding-right: 12px;
}
.new-marker::after {
content: "new";
  position: absolute;
  top: -5px;
  right: -9px;
  background-color: red;
  color: white;
  padding: 0px 3px 1px;
  border-radius: 3px;
  font-size: 9px;
}

.link, .link-help {
	color: #06a;
	cursor: pointer;
}
.link-help-pdf {
	color: maroon;
}

.link-warn-more {
	color: #08c;
	white-space: nowrap;
	text-decoration: underline;
}
/*.link:hover, .link-help:hover, .link-help-pdf:hover, .link-warn:hover {*/
.link:hover, .link-help:hover, .link-help-pdf:hover {
	text-decoration: underline;
}
.link-add-obj {
	color: maroon;
	text-decoration: underline;
}
.link-site-downl {
	font-size: 16px;
	color: #06a;
	text-decoration: underline;
	margin: 2px 10px 2px 40px;
	cursor: pointer;
}
.link-site-downl:hover {
	color: #08c;
}

.bold {
	font-weight: 700;
	/*color: #b40;*/
	color: maroon;
	cursor: default;
}
.bold-big { /* used in web site */
	font-size: 18px;
	font-weight: 700;
	color: maroon;
	cursor: default;
}

.col {
	float: left;
}
.col-f {
	position: absolute;
}
.blockName {
	float: left;
	height: 22px;
	overflow: hidden;
	padding: 0px 4px;
	margin: 2px 4px 0 0;
	font-size: 14px;	
}

.resize-segment{
	position: absolute;
	right: -6px;
	bottom: -10px;
	height: 4px;
	width: 20px;
	border: 1px solid #333;
	cursor: n-resize;
}

.top-tab, .top-tab-active {
	float: right;
	cursor: pointer;
	padding: 0px 4px;
	margin: 2px 1px 4px 1px;
	font-size: 12px;
	border: 2px solid transparent;
}

.top-tab-active, .compON, .optON { /* imitate border: 2px inset #bbb;*/
	background: #fff;
	border-top: 2px solid #333;
	border-right: 2px solid #ccc;
	border-bottom: 2px solid #ccc;
	border-left: 2px solid #333;
}
.top-tab-active
.more-tabs-btn {
	top: 4px !important;
	left: 4px !important;
	transform: rotate(0deg);
}

.top-tab {
	border: 2px solid transparent;
}
.top-icon{
	float: right;
	cursor: pointer;
	width: 20px;
	height: 20px;
	margin: 2px 3px 0px 3px;
}

.topClose2{
	float: left;
	cursor: pointer;
	width: 20px;
	height: 20px;
	margin: 2px 0px 0px -2px;
}

table {
	table-layout: fixed;
	border-collapse: collapse;
	empty-cells: show;
	white-space: nowrap;
}
th, td {
	overflow: hidden;
	border: 1px solid #ccc;
	/*padding: 2px 4px 2px 2px;*/
	padding: 2px 1px 2px 2px;

}
.W, .L {
	text-align: left;
}
.D, .R {
	text-align: right;
}
.Lpad4{
	text-align: left;
	padding-left: 4px;
}
.Rpad10{
	text-align: right;
	padding-right: 10px;
}
.C {
	text-align: center;
}
.head-aggr {
	text-align: left;
	height: 16px;
	width: 100%;
	font-weight: 700;
	cursor: pointer;
}
.head-aggr:hover {
	text-decoration: underline;
}

.Red {  /*red text */
	color: #e00;
	font-weight: 700;
}
.Gre { /* green text */
	color: #0a0;
	font-weight: 700;
}
.RedBG {  /*red bg */
	background-color: #fdd;
}
.GreBG {
	background-color: #dfd;
}
.GrayBG {
	background-color: #eee;
}
.Gray2BG {
	background-color: #f4f4f4;
}
.Gre2BG {
	background-color: #e5f0e5;
}
.YelBG {
	background-color: #f5f5e5;
}
.DIS {  /*red text */
	color: #e00;
}
.edit-dis {
	color: #999;
	background-color: #f0f0f0;
	/*background-color: #f4f4f4;
	text-decoration: line-through;*/
}

.red   {background: #fcc}
.green {background: #cfc}
.yel   {background: #ffc}
.blue  {background: #ccf}
.edited  {background: #def}
.gray  {color: #999}

.target-1   {background: #faa} /* red */
.target-2	{background: #fc6} /* orange */
.target-3	{background: #ff8} /* yellow */
.target-5	{background: #ccf} /* blue */
.target-10	{background: #9f9} /* green */
.target-11	{background: #aed} /* teal */


.ABS { /* alert background red */
	background-color: #fcc;
}
.ABScl { /* alert background green/clear */
	background-color: #cfc;
}
.DIF { /* alert background yellow */
	background-color: #ffc;
}
.Dir1 {
	color: maroon;
}
.Dir2 {
	color: #06a;
}
.Hr {
	text-decoration: underline;
}
.pointer{
	cursor: pointer;
}

.report_date {
	font-weight: bold;
	color: #006;
	cursor: default;
}
.legendBG {
	background-color: rgb(233, 233, 255);
}


td.parVal {
	color: white;
	font-weight: bold;
	text-align: center;
}
.not-avail {
	background: #eee;
	color: #888;
	text-align: center;
	margin: 4px 8px;
}

.colSelSel {
	width: 220px;
	min-height: 26px;
	font-size: 15px;
	border: 1px solid #aaa;
	margin: 6px 0 6px 20px;
	color: maroon;
	font-weight: 700;
}

.paramGR {
	border: 1px solid #aaa;
	width: 240px;
	margin: 0 6px;
	padding: 2px 6px;
	font-weight: 400;
	cursor: pointer;
}

.tmpDivWidth {
	position: absolute;
	visibility: hidden;
	height: auto;
	width: auto;
	white-space: nowrap;
}

.optTbl {
	margin-top: 4px;
	vertical-align: middle;
}

.optTbl td {
	border: none;
	padding: 3px;
}
.optCont {
	position: relative;
	display: table-cell; /**/
}
.optDis{
	position: absolute;
	top: 0;
	left: 0;
	background-color: #ccc !important;
	opacity: 0.5;
}

.optHead{
	color: maroon;
	font-weight: 700;
	font-size: 16px;
	text-decoration: underline;
	padding: 12px 6px 6px 50px;
}

.optName {
	color: maroon;
	font-weight: 700;
	font-size: 14px;
	padding: 4px 2px 4px 8px;
	cursor: default;
}

.optInput {
	font-size: 14px;
	/*margin: 1px 2px 1px 0;*/
	padding: 2px 2px 2px 4px;
	border: 1px solid #aaa;
	/*whiteSpace: nowrap;*/
}
.optColor {
	position: relative;
	/*margin: 0 2px 0 0;*/
	border: 1px solid #aaa;
	height: 20px;
	cursor: pointer;
	text-align: center;
	color: #444;
}
.optCheck {
	/*margin: 0 2px 0 0;*/
	width: 22px;
	cursor: pointer;
}
.m2-menu-container {
	display: flex !important;
	white-space: nowrap;
}
.optDrop-container {
/*	margin-top: -20px;*/
}
.optDrop{
	font-family: arial;
	font-size: 12px;
	overflow: hidden;
	height: 20px;
	border: 1px solid #aaa;
	background: white;
	/*margin: 1px 2px 1px 0;*/
	padding: 3px 2px 0px 4px;
	color: maroon !important;
	font-weight: 700;
	/*vertical-align: middle; - not working, not an inline element */
}


/* removes the arrow, may redo to our arrows later, inly works for select, not option
select, option{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	margin: 0; 
	padding: 4px;
}*/

.optSel{
	width: 100%;
	font-family: arial;
	font-size: 12px;
	/* moved to select tag
	border: 1px solid #aaa;
	background-color: #fff;*/

	/*margin: 1px 2px 1px 4px;*/
	padding: 3px; /*3px 0*/
	color: maroon;
	font-weight: 700;
}

.optSelOpt{ /* only working in FF - border not working any more */
	border: 1px solid #ccc;
	margin: 4px;
	padding: 2px 6px;
	font-weight: 400;
}

.optOK{
	margin: 10px auto 0 auto;
	cursor: pointer;
	border: 1px dotted transparent;
  border-radius: 7px;
  padding: 1px !important;
  display: flex !important;
  width: fit-content !important;
  height: fit-content !important;
}
.optButton{
	/*width: 100px;*/
	font-size: 16px;
	margin-left: 4px;
	border: 1px solid #aaa;
}

#colSel-head{
	font-size: 15px;
	font-weight: 700;
	background-color: #ddd;
	border: 1px solid #000;
}
#colSel-body{
	overflow-y: scroll;
	height: 522px;
}
.colSel{
	float: left;
	padding: 4px 8px;
}

.drop-file-over{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #bbb;
	opacity: 0.7;
}
.drop-file-text {
	position: absolute;
	top: 70px;
	width: 100%;
	left: 0;
	font-weight: 700;
	font-size: 40px;
	text-align: center;
	color: #fff;
}
.refr-text {
	position: absolute;
	top: 30px;
	left: 300px;
	font-weight: 700;
	color: #fff;
	opacity: 1;
}
.drop-file-desc{
	margin: 20px auto 0 auto;
	font-size: 16px;
	font-weight: 700;
	text-align: left;
}

.drop-file-over-tree{
	position: absolute;
	top: -1px;
	left: -1px;
	width: 150px;
	height: 70px;
	background: #f4f4f4;
}
.drop-file-text-tree{
	position: absolute;
	top: 5px;
	left: -1px;
	width: 150px;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	color: #999;
}

.th-1 {
	border-top: none;
	border-bottom: none;
	padding: 2px 4px 0 2px;
}
.th-2 {
	border-top: none;
	border-bottom: 1px solid #ccc;
	padding: 0;
}

.th-res {
	cursor: col-resize;
	position: absolute;
	right: 0px;
	width: 4px;
	height: 105%;
}
.th-res2 {
	position: absolute;
	right: 0px;
	width: 2px;
	height: 105%;
}

.col-sort {
	position: absolute;
	right: 4px;
	top: 1px;
}
.col-sort2 {
	position: absolute;
	width: 100%;
}
.col-match {
	position: absolute;
	overflow: hidden;
	width: 100%;
	height: 30px;
}

/*.col-filter {
	border: 1px solid #ccc;
	width: 100%;
}
.col-filter-active {
	border: 1px solid blue;
	width: 100%;
	background-color: #F7F7FF;
}*/

.col-float {
	border: 1px solid red;
	height: 32px;
	text-align: center;
	font-weight: 700;
	/*cursor: pointer; not working */
}

.tbl-main {
	width: 100px; /* needed for <col> to work */
}

.tbl-help {
	border: none;
	white-space: normal;
	width: 100px; /* needed for <col> to work */
}
.tbl-help td {
	overflow: visible;
	padding: 6px 6px 6px 30px;
	border: none !important;
}

.callflow-pack {
	overflow: visible;
	border-left: 3px solid #aaa;
	border-right: 3px solid #aaa;
	border-top: none;
	border-bottom: none;
	padding-bottom: 1px;
	text-align: center;
}
.callflow-media {
	overflow: hidden;
	border-left: 3px solid #aaa;
	border-right: 3px solid #aaa;
	border-top: none;
	padding-bottom: 6px;
	text-align: center;
}
.callflow-media-range {
	border: 0px solid #fff;
	border-bottom: 1px solid #777;
	width: 28px;
	padding: 0;
	margin: 0 4px;
	text-align: center;
}
.callflow-media-select {
	border: 1px solid #aaa;
	width: 70px;
	padding: 0;
	margin: 0 3px;
}

.callflow-callid {
	overflow: hidden;
	border-left: 3px solid #aaa;
	border-right: 3px solid #aaa;
	border-top: none;
	border-bottom: none;
	padding: 4px 2px;
}
.callflow-none {
	border: none;
}
.callflow-del {
	position: absolute;
	top: 18px;
	left: 1px;
	width: 14px;
	height: 14px;
	opacity: 0.5;
}
.callflow-del:hover {
	opacity: 1;
}

.menuButCont {
	position: absolute;
	overflow: hidden;
	top: -9px;
	left: 18px;
	width: calc(100% - 35px);
	height: 26px;
	white-space: nowrap;
}
.menuButCont2 {
	position: absolute;
	overflow: hidden;
	top: 24px;
	left: 18px;
	width: calc(100% - 35px);
	height: 26px;
}

.menuIcon  {
	display: inline-block;
	border-radius: 11px; /* keep here, bigger radius! */
	-webkit-border-radius: 11px;
	border: 2px solid #ccc;
	background-color: #fff;
	width: 20px;
	height: 20px;
	margin-right: 2px;
	cursor: pointer;
}
.menuStrip {
	display: inline-block;
	position: relative;
	border-radius: 11px; /* keep here, bigger radius! */
	-webkit-border-radius: 11px;
	border: 2px solid #ccc;
	margin: 8px 3px -3px 3px;
	padding: 2px 4px;
	background-color: #fff;
	font-weight: 700;
	/*top: -10px;  changed by style for some elem */
	cursor: pointer;
}
.menuDrop {
	display: inline-block;
	position: relative;
	top: -9px;
	margin: 10px 3px 0 3px;
	padding: 2px 4px;
	font-weight: 700;
	color: maroon;
	cursor: default;
}

.compON, .compOFF, .optON, .optOFF {
	font-size: 14px;
	font-weight: bold;
	padding: 2px 10px;
	color: maroon;
	white-space: nowrap;
	cursor: pointer;
}
.compON, .compOFF {
	margin: 8px;
	text-align: center;
}
.optON, .optOFF {
	margin: 2px 8px;
	text-align: left;
}
.compOFF, .optOFF {
	border: 2px solid #aaa;
}

.color-palette {
	position: relative;
	cursor: pointer;
	height: 24px;
	border: 1px solid black;
	margin: 9px;
	padding-left: 10px;
	width: 240px;
	font-size: 16px;
}

.moveBut{
	cursor: pointer;
	border: 2px solid blue;
	margin: 2px;
	padding: 1px;
}

.arrowButLR{
	cursor: pointer;
	margin-bottom: 8px;
	border: 1px dotted transparent;
  border-radius: 7px;
  padding: 1px !important;
  display: flex !important;
  width: fit-content !important;
  height: fit-content !important;
}

.delBut-cont{
	position: relative;
	min-height: 14px;
}

.delBut, .delAggrRow{
	position: absolute;
	width: 16px;
	height: 16px;
}
.delBut{
	top: 0;
	right: 0;
	opacity: 0;
}
.delAggrRow{
	top: 3px;
	right: 2px;
	opacity: 0.3;
}
.delButOpa{
	opacity: 0.3;
}
.delBut:hover, .delAggrRow:hover, .opacity04:hover {
	opacity: 1;
}
.opacity04 {
	opacity: 0.4;
}

.grayBG-hover:hover {
	background: #f5f5f5;
}

.fDropBg:hover {
	background: #def;
}

.fDrop-head {
	width: 100px;
	border-top: 1px solid #aaa !important;
	border-bottom: 1px solid #aaa !important;
	margin-bottom: 6px;
	font-weight: 700;
}

.moveButOK{
	cursor: pointer;
	border: 2px solid green;
	margin: 60px 2px 2px 2px;
	padding: 1px;
}

.menu-cont {
	position: absolute;
	display: none;
	border: 1px solid #ccc;
}

.menu-icon-close {
	position: absolute;
	width: 20px;
	height: 20px;
	opacity: 0.4;
}
.menu-icon-close:hover {
	opacity: 0.8;
}

.empty-div {
	position: relative;
	width: 280px;
	height: 110px;
	margin: 10px auto;
}
.empty-txt {
	position: absolute;
	top: 28px;
	left: 50px;
	width: 204px;
	font-size: 16px;
}
.load1 {
	position: absolute;
	left: 74px;
	top: 46px;
	z-index: 9999999 !important;
}
.load1-menu {
	position: absolute;
	left: 74px;
	top: 86px;
	z-index: 9999999 !important;
}
.load2 {
	border: 1px solid #999;
	background: white;
	padding: 3px;
	font-size: 18px;
	color: #555;
	z-index: 9999999 !important;
}
.load-gear {
	vertical-align: middle;
	opacity: 0.7;
	width: 52px;
	height: 35px;
	z-index: 9999999 !important;
}

.loaderr1 {
	position: absolute;
	left: 94px;
	top: 66px;
	min-width: 250px;
	z-index: 9999999 !important;
}
.loaderr2 {
	border: 1px solid #999;
	background: white;
	padding: 10px 16px 14px 16px;
	font-size: 16px;
	font-weight: 700;
	color: #c00;
	z-index: 9999999 !important;
}

.opt_name, .help-head-cont {
	color: maroon;
	font-weight: 700;
	font-size: 14px;
	padding: 8px 0 4px 10px;
}
.help-head-cont {
	height: 28px;
	overflow-y: hidden;
}

.opt_name_red {
	margin-left: 6px;
	color: #d00;
	font-size: 16px;
	cursor: default;
}

.opt2_name {
	text-align: right;
	color: maroon;
	font-weight: 700;
	font-size: 12px;
	padding: 4px;
}

.opt2_param {
	width: 30px;
	border: 1px solid #ccc;
	margin-bottom: 2px;
	padding: 2px;
	font-size: 12px;
}

.opt_head_join {
	width: 100%;
	border: 1px solid #ccc;
	margin: 0 0 0 0;
	padding: 1px;
	font-size: 14px;
}

.share_descr {
	color: maroon;
	font-weight: 700;
	font-size: 14px;
	padding: 8px 20px 10px 20px;
}

.scroll-base {
	display: none;
}
.scroll-base0-0 {
	position: relative;
	width: 100%;
	border-bottom: 1px solid #222;
}
.scroll-base0-1 {
	position: absolute;
	bottom: 0;
	width: 100%;
	border-top: 1px solid #222;
}
.scroll-base1 {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	border-left: 1px solid #222;
}
.scroll-slider {
	/*text-align: center;*/
	border: 1px solid #6a6a6a;
}
.scroll-slider:hover{
	border: 1px solid #000;
}
.scroll-stop {
	/*text-align: center;*/
	border: 1px solid #999;
}
.scroll-stop:hover{
	border: 1px solid #555;
}

.tbl-paste1 {
	margin: 4px 2px;
	padding: 8px;
	white-space: nowrap;
	background: #fff;
	border: 1px solid #ccc;
}
.tbl-paste2 {
	overflow: auto;
	padding: 2px;
	margin: 0;  /* to cancel <pre> margin */
}

.help-cont1 {
	margin: 2px;
	padding: 10px 6px;
	background: #f3f3f3;
	border: 1px solid #aaa;
}


.help-cont2 {
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 2px 2px 2px 10px;
	font-size: 16px;
}

.help-cont2 li {
	margin-bottom: 6px;
}

.help-intro {
	margin: 4px 24px 4px 40px;
	color: maroon;
	font-style: italic;
}

.help-head {
	margin: 16px 6px 8px 0;
	padding: 2px 8px 4px 40px;
	color: maroon;
	font-weight: 700;
	text-decoration: underline;
	cursor: pointer;
	border: 1px solid #999;
}

.help-body {
	padding: 0 16px 10px 16px;
	text-align: justify;
}

.help-img {
	display: block;
	padding: 16px;
	margin: 20px 20px 20px 30px;
	cursor: pointer;
	font-size: 14px; /* for alt tags*/
	min-width: 100px; /* for alt tags*/
	background-color: #fff;
}
.help-img-sh {
	box-shadow: 0 0 12px #888;
	-moz-box-shadow: 0 0 12px #888;
	-webkit-box-shadow: 0 0 12px #888;
}
.help-img-rnd {
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
}
.tutorial-container
.help-cont1 {
	margin: 0px;
  border: 1px solid rgba(0,0,0,0.2);
  padding-top: 0;
}
.tutorial-container {
	border: none !important;
  padding: 0 !important;
}
.help-head.new-help-folder {
	cursor: pointer;
	text-decoration: unset;
	padding: 8px 18px 8px 41px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 6px;
  opacity: 0.75;
  position: relative;
  display: flex;
}
.help-head.new-help-folder:hover {
  opacity: 0.85;
}
.help-head.new-help-folder:before {
   content: "+";
   font-size: 22px;
   font-weight: 100;
   color: maroon;
   opacity: 0.3;
   position: absolute;
   top: 4px;
   left: 16px;
}
.help-head.new-help-folder.custom-click:before {
   content: "";
}
.help-head.new-help-folder.custom-click {
   padding-left: 18px;
}
.help-head.new-help-folder.expanded:before {
   content: "\2013";
   font-size: 18px;
   font-weight: 700;
   color: maroon;
   opacity: 0.3;
   position: absolute;
   top: 5px;
   left: 18px;
}
.help-head.new-help-folder.expanded {
  border-radius: 6px 6px 4px 4px;
/*  border-bottom: none;*/
  margin-bottom: 0;
}
:root {
	--files-column-width: 280px;
}
.help-head.new-help-folder
.new-help-folder-name {
	width: calc(var(--files-column-width) - 28px);
  flex-shrink: 0;
/*  white-space: nowrap;*/
/*  overflow: hidden;*/
/*  text-overflow: ellipsis;*/
  padding-right: 16px;
}
.help-head.new-help-folder
.new-help-folder-description {
	flex-grow: 1;
  white-space: nowrap;
	text-overflow: ellipsis;
  overflow: hidden;
  opacity: 0.5;
  font-weight: normal;
}
.help-head.new-help-folder.expanded
.new-help-folder-description {
	display: none;
}
.help-head.new-help-folder.expanded + .new-help-folder-container {
  display: flex;
  flex-direction: column;
}
.new-help-folder-container {
	display: none;
}
.new-help-folder-container > :last-child {
	margin-bottom: 12px;
}
.new-help-intro {
	padding: 8px 2px;
}
.new-help-body {
	padding: 16px 20px 8px;
}
.tutorial-entry {
	display: flex;
	background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 6px;
	margin: 14px 6px 0px 0;
  padding: 8px 12px 12px;
  border-radius: 4px 4px 8px 8px;
}
.tutorial-files {
	display: flex;
	flex-direction: column;
	width: var(--files-column-width);
	flex-shrink: 0;
}
.tutorial-file {
	display: flex;
	margin: 6px 2px 3px;
}
.tutorial-file:hover {
  cursor: pointer;
}
.tutorial-file:hover
.tutorial-copylink {
	display: flex;
}
.tutorial-file:hover
.tutorial-filename {
	text-decoration: underline;
}
.bold.tutorial-icon {
  font-size: 22px;
}
.bold.tutorial-icon:hover {
  cursor: pointer;
}
.bold.tutorial-icon
.bi-filetype-pdf,
.bold.tutorial-icon
.bi-file-earmark-pdf {
	color: red;
}
.bold.tutorial-icon
.bi-filetype-docx,
.bold.tutorial-icon
.bi-file-earmark-word {
	color: blue;
}
.bold.tutorial-icon
.bi-filetype-xlsx,
.bold.tutorial-icon
.bi-file-earmark-spreadsheet {
	color: green;
}
.bold.tutorial-icon
.bi-file-earmark-text {
	color: rgba(0,0,0,0.7);
}
.tutorial-custom-icon {
	width: 20px;
	height: 20px;
	padding-right: 2px;
}
.bold.tutorial-filename-container {
	position: relative;
/*	text-overflow: ellipsis;*/
  overflow: hidden;
  display: flex;
}
.bold.tutorial-filename {
	margin: 4px 6px;
	padding-left: 4px;
	white-space: nowrap;
	font-weight: normal;
	text-overflow: ellipsis;
  overflow: hidden;
}
.bold.tutorial-filename:hover {
  cursor: pointer;
}
.tutorial-copylink {
  cursor: pointer;
  position: relative;
  top: 2px;
	right: 0;
  color: #555;
  font-size: 18px;
  display: none;
  background-color: #fcfcfc;
/*  background-image: radial-gradient(circle, #fcfcfc 35%, transparent 100%);*/
  padding-left: 2px;
}
.tutorial-copylink.hidden {
  display: none !important;
}
.help-body.tutorial-description {
	padding: 10px 4px 8px 24px;
	flex-grow: 1;
}


.cell-icon {
	opacity: 0.3;
	display: none;
}
.cell-icon:hover {
	opacity: 1;
}
.cell-icon-cont:hover .cell-icon {
	display: block;
}

.i-drop{
	position: absolute;
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.cal-cont0 {
	float: left;
	margin-left: 4px;
	font-size: 14px;
	color: maroon;
	font-weight: 700;
}
.cal-container {
	width: 472px !important;
	padding: 3px;
}
.cal-cont0
select {
	height: 23px;
  padding: 0px 6px;
}
.cal-cont0
.rnd {
	border-radius: 4px;
}
.cal-cont1 {
	padding: 4px;
}
.cal-cont2.cal-dates {
	margin-bottom: 17px;
}
.cal-cont2.cal-hours {
	margin-bottom: 22px;
}
.cal-cont2.cal-minutes {
	margin-bottom: 12px;
}
.dev-features__utc-time-modifier
.cal-cont2.cal-minutes {
	margin-bottom: 12px !important;
}
.cal-pm {
	position: relative;
	left: -3px !important;
}
.calON.cal-pm {
	padding: 0 4px 0 2px !important;
	left: -2px !important;
}
.cal-ampm
{
	position: relative;
	left: -2px;
}
.cal-cont1 {
	border: 1px solid #ccc;
}
.cal-cont2 {
	border: 1px solid transparent;
  margin: 4px 4px 8px 4px;
  padding: 2px 3px 2px 6px;
}
.dev-features__utc-time-modifier
.cal-cont2 {
	border: 1px solid transparent;
  margin: 4px 4px 8px 4px;
  padding: 2px 3px 2px 6px;
  position: relative;
}
.cal-cont2:last-child {
  margin-bottom: 8px;
}
.dev-features__utc-time-modifier
.cal-cont2:last-child {
	margin-top: -10px;
	margin-bottom: 2px;
}
.calendar-popup-option-item, .calendar-popup-date-item {
	padding: 4px !important;
}
.calendar-popup-label {
	padding: 4px 10px;
  opacity: 0.6;
}
.calendar-popup-date-item {
/*	text-align: center;*/
/*	padding: 6px 8px !important;*/
}
.popup-menu-hr {
	border: none;
	width: calc(100% - 8px);
	border-top: 1px solid #888;
	border-bottom: 1px solid #eee;
	margin: 9px auto 6px;
}

.dev-features__utc-time-modifier
#menu10-opt-cal_usr_timezone-over,
.dev-features__utc-time-modifier
#menu10-opt-cal_sys_timezone-over,
.dev-features__utc-time-modifier
#menu10-opt-cal_utc_timezone-over {
	width: 292px !important;
  height: 23px !important;
  display: block !important;
  top: 2px !important;
}
.dev-features__utc-time-modifier
.opt-drop-cell-container
.optDrop {
	height: 18px !important;
  padding: 3px 0px 0px 6px !important;
  margin: 2px 0px 0px !important;
}
.dev-features__utc-time-modifier
.opt-drop-cell-container
.i-drop {
	top: 1px !important;
}

.cal-tbl {
	table-layout: fixed;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
}

.cal-td, .cal-td-pad {
	border: none;
	padding: 0;
}
.cal-year-right, .cal-year-left {
	opacity: 0.5;
}
.cal-month-year:hover {
	text-decoration: underline;
}
.cal-td {
	height: 21px;
}
.cal-td-pad {
	height: 2px;
	cursor: default;
}
.cal-th, .cal-th2 {
	padding: 2px 0;
	margin: 8px;
	border: none;
	border-bottom: 1px solid maroon;
}
.cal-th-new {
	padding: 2px 0 9px;
	border: none;
}
.cal-th2 {
	font-size: 12px;
	font-weight: 400;
}
.calOFF {
	width: 18px;
	padding: 2px 5px;
}
.calON {
	width: 18px;
	padding: 0 3px !important;
  font-size: 14px;
  margin-top: -5px;
  position: relative;
  top: 5px;
  border: 1px solid rgba(0,0,0,0.5) !important;
}

.cal-hour {
	margin: 0 0 2px 12px;
	font-size: 12px;
	font-weight: 400;
	text-decoration: underline;
}

.cal-input {
	width: 186px;
  padding: 4px 4px;
  font-size: 15px;
  text-align: center;
	outline: none;
	border: 1px solid #bbb;
}
.dev-features__utc-time-modifier
.cal-input {
	width: 139px;
  padding: 4px 2px 4px 6px;
  font-size: 14px;
  text-align: left;
  outline: none;
  border: 1px solid #bbb;
  margin: 0 2px 0 -1px;
}

.labels {font-size: 12px}
.labelMax {font-size: 12px; font-weight: bold;}

/*.i-arrow, .i-arrowUD, .i-OK, .i-Del, .i-DelF, .i-Del1, .i-Del2, .i-Del3 {stroke-width: 2; stroke-linecap: round}*/ 

.i-arrow, .i-arrowUD, .i-OK {stroke-width: 2; stroke-linecap: round} 
.i-DelDrop {stroke-width: 0}
.i-arrowUD {stroke: maroon; fill: #fc7}
.i-OK {stroke: green; fill: #A9F5A9} /* green */
.i-OK2 {stroke-width: 2.5; stroke-linecap: round} /* top menu pin block */
.i-OK3 {stroke-width: 4; stroke-linecap: round} /* Add obj button */
.i-OK4 {stroke-width: 1.7; stroke: #130; fill: #9dc} /* greenish, add to change deck, etc. */
/* 5 is used */
.i-OK6 {stroke-width: 2.5; stroke: #881; fill: #ffb} /* select row in call flow */

.i-OK-Dis {stroke: red; fill: red} /* disabled status row */
.i-OK-Disabled {stroke: #777; fill: #ccc} /* disabled row */
.i-Del {stroke: #A20000; fill: #FF5F5F} /* red, delete in edit */
.i-Del1 {stroke: #806; fill: #F450EE} /* purple in chart menu */
.i-Del2 {stroke: #a50; fill: #fb6} /* orange in chart menu */
/* 3 is used */
.i-Del6 {stroke: #881; fill: #ffb} /* deselect row in call flow */
.i-Del9 {stroke: #999; fill: #ddd} /* remove all highlights */

.redStrike {stroke: red; stroke-width: 1.5; opacity: 0.8}
.i-add_par {fill:#ddd}
.i-sortRep {stroke: #f66; fill: #fee} /* red sort arrow */
.i-sortClone {stroke: green; fill: #A9F5A9}
.i-sortCDR {stroke: #130; fill: #cd9}
.i-sortLogs {stroke: #130; fill: #9dc}
.i-sortExport {stroke: #169; fill: #8cf}
.i-sortTree {stroke: #00f; fill: #ccf}
.i-sortDialer {stroke: #f00; fill: #fac}
.i-sortPlayer {stroke: purple; fill: violet}
.i-sortHistory {stroke: #552; fill: #eea}
.i-addAggr {stroke: #010; fill: #5d9}

.i-plus {stroke: #084B8A; stroke-width: 0.8; fill: none}
.i-plus2 {stroke: #084B8A; stroke-width: 0.8; fill: #E0ECF8}
.i-minus {display: none}

#tree-header {
	position: relative;
	overflow: hidden; /* top div overflow do not propagate in FF */
	border-bottom: solid #000 1px;
	padding: 4px 0 4px 10px;

	display: inline-table;
	height: var(--tree-header-height);
}

.tree-bottom-spacing {
	padding-bottom: 18px;
}

#tree-cont {
/*	overflow: hidden;*/
	font-size: 14px;

	display: flex;
	overflow-x: hidden;
	overflow-y: auto;
	height: 100%;
}

.tree-pin {
	cursor: pointer;
  font-size: 16px;
  padding: 3px 4px;
  position: absolute;
	right: 20px;
  top: 6px;
  z-index: 1;
  border-radius: 4px;
 }
.base-popup-icon-svg {
	width: 16px;
  height: 20px;
  position: relative;
  top: 4px;
/*  fill: maroon;*/
/*  stroke: maroon;*/
}
.new-tree-style-modifier
.edit-input-ok {
	position: relative;
	left: 3px;
	color: rgba(0,0,255,0.7);
	font-size: 16px;
	padding-right: 4px;
}
.new-tree-style-modifier
.edit-input-ok:hover {
	color: rgba(0,0,255,1);
}
.new-tree-style-modifier.color-scheme-dark
.edit-input-ok,
.new-tree-style-modifier.color-scheme-grey
.edit-input-ok {
	color: rgba(0, 180, 255, 0.7) !important;
}
.new-tree-style-modifier.color-scheme-dark
.edit-input-ok:hover,
.new-tree-style-modifier.color-scheme-grey
.edit-input-ok:hover {
	color: rgba(0, 180, 255, 1) !important;
}
.new-tree-style-modifier
.edit-input {
	top: 3px;
  position: relative;
}
.new-tree-style-modifier
.folder-item
.edit-input {
	top: 1px;
}
.new-tree-style-modifier
.edit-input input {
	border: 1px solid rgba(0, 0, 255, 0.4);
  height: 12px;
  background-color: #fff;
}

.new-tree-style-modifier
.tree-density.compact
.base-menu-handler {
/*	margin-top: -74px;*/
}
.new-tree-style-modifier
.tree-density.compact
#tree-header {
/*	padding-bottom: 0 !important;*/
}
.new-tree-style-modifier
.tree-density.compact
#tree-ul-top {
	padding-top: 8px;
	padding-left: 17px;
}
.new-tree-style-modifier
.tree-density.compact
.item-div {
	padding: 1px 2px 6px 0px;
  height: 11px;
  margin-top: 0px;
  margin-left: 2px;
}
.new-tree-style-modifier
.tree-density.compact
.item-div.drop-file-item {
  height: 63px !important;
}
.new-tree-style-modifier
#tree.tree-density.compact
ul {
	margin-left: 22px;
}
.new-tree-style-modifier
.tree-density.compact
.tree-item-toggle {
	position: absolute;
	padding-top: 3px;
	margin-left: -14px;
}
.new-tree-style-modifier
.tree-density.compact
.tree__folder-icon {
/*	padding: 0 4px 0 2px;*/
	top: 0px;
	transform: scale(0.9);
}
.new-tree-style-modifier
.tree-density.compact
.tree-icon {
	font-size: 15px;
	padding: 0 6.5px 0 3.5px;
	top: -1px;
}
.new-tree-style-modifier
.tree-density.compact
.tree-icon.low-height {
	top: 0px;
}
.new-tree-style-modifier
.tree-density.compact
.item-text {
	padding: 0 2px 2px 0px;
	top: -0.1px;
}
.new-tree-style-modifier
.tree-density.compact
.edit-icon {
  padding: 0px 6px 0px;
}
.new-tree-style-modifier
.tree-density.compact
.edit-input {
	top: 0px;
}
.new-tree-style-modifier
.tree-density.compact
.folder-item
.edit-input {
	top: -2px;
}

.new-tree-style-modifier
.tree-density.wide
.base-menu-handler {
/*	margin-top: -78px;*/
}
.new-tree-style-modifier
.tree-density.wide
#tree-header {
/*	padding: 10px 13px !important;*/
}
.new-tree-style-modifier
.tree-density.wide
#tree-ul-top {
	padding-top: 6px;
	padding-left: 22px;
}
.new-tree-style-modifier
.tree-density.wide
.item-div {
	font-size: 15px;
	padding: 2px 5px 6px 1px;
  height: 16px;
  margin-top: 3px;
  margin-left: 0px;
}
.new-tree-style-modifier
.tree-density.wide
.item-div.folder-item {
	font-size: 15px;
	padding: 2px 5px 7px 1px;
	height: 15px;
  margin-top: 3px;
  margin-left: 0px;
	opacity: 0.7;
}
.new-tree-style-modifier.color-scheme-light
.tree-density.wide
.item-div.folder-item {
	opacity: 0.9;
}
.new-tree-style-modifier
.tree-density.wide
.item-div.drop-file-item {
  height: 68px !important;
}
.new-tree-style-modifier
#tree.tree-density.wide
ul {
	margin-left: 25px;
}
.new-tree-style-modifier
.tree-density.wide
.tree-item-toggle {
	position: absolute;
	padding-top: 5px;
	margin-left: -15px;
}
.new-tree-style-modifier
.tree-density.wide
.tree__folder-icon {
	padding: 0 2px 0 5px;
/*	top: 3px;*/
	transform: scale(1);
}
.new-tree-style-modifier
.tree-density.wide
.folder-item
.bi-gear {
	top: 2px;
}
.new-tree-style-modifier
.tree-density.wide
.tree-icon {
	font-size: 17px;
	padding: 0 3.5px 0 5.5px;
	top: 1px;
}
.new-tree-style-modifier
.tree-density.wide
.tree-icon.low-height {
	top: 2px;
}
.new-tree-style-modifier
.tree-density.wide
.item-text {
	padding: 0 2px 2px 5px;
	top: 1.5px;
}
.new-tree-style-modifier
.tree-density.wide
.edit-icon {
  padding: 2px 12px 0px;
}
.new-tree-style-modifier
.tree-density.wide
.edit-input {
	top: 1px;
}

.new-tree-style-modifier
#tree-ul-top {
	padding-top: 6px;
	padding-left: 17px;
}
.base-menu-handler {
	font-size: 16px;
	padding: 3px 5px;
	cursor: pointer;
	border-radius: 4px;
	position: absolute;
	right: 0px;
	top: 6px;
  z-index: 1;
}
.alternative-secondary {
	display: flex !important;
}
.alternative-secondary {
	display: none !important;
}
.dev-features__alternative-design-modifier.alternative-design-on
.alternative-primary {
	display: none !important;
}
.dev-features__alternative-design-modifier.alternative-design-on
.alternative-secondary {
	display: flex !important;
}
.base-menu-handler i {
	opacity: 0.8;
}
.base-menu-handler i:hover {
	opacity: 1;
}
.base-menu-body {
	display: flex;
	flex-direction: column;
	font-size: 14px;
	padding: 5px 5px 4px;
	border: 1px solid #666;
	border-radius: 5px;
	position: absolute;
	background-color: #fff;
}
.color-scheme-grey
.base-menu-body {
  background-color: #555;
  border-color: #aaa;
}
.color-scheme-dark
.base-menu-body {
  background-color: #353535;
  border-color: #888;
}
.base-menu-label hr {
	color: #fefefe;
	margin-left: -4px;
  width: calc(100% + 7px);
  margin-bottom: 0;
  top: -2px;
  position: relative;
}
.color-scheme-dark
.base-menu-label hr {
	color: #777;
}
.color-scheme-grey
.base-menu-label hr {
	color: #999;
}
.base-menu-label {
	font-size: 15px;
	color: #444;
	padding: 0 6px;
  margin-bottom: 4px;
}
.color-scheme-dark
.base-menu-label {
	color: #999;
}
.color-scheme-grey
.base-menu-label {
	color: #bbb;
}
.base-menu-option {
	display: flex;
	align-items: center;
	color: #222;
	padding: 2px 6px;
	height: 20px;
	border-radius: 3px;
	cursor: pointer;
	border: 1px solid transparent;
	margin-bottom: 1px;
}
.color-scheme-dark
.base-menu-option,
.color-scheme-grey
.base-menu-option {
	color: #ccc;
}
.base-menu-option:hover {
/*	background-color: #eee;*/
	border-color: #ccc;
}
.color-scheme-grey
.base-menu-option:hover,
.color-scheme-dark
.base-menu-option:hover {
	background-color: #444;
	border-color: transparent;
}
.base-menu-option.active {
	border: 1px solid #bbb;
/*	background-color: #f0f0f0;*/
}
.color-scheme-dark
.base-menu-option.active,
.color-scheme-grey
.base-menu-option.active {
	border-color: #999;
}
.base-menu-option.active:hover {
/*	background-color: #eee;*/
	border-color: #999;
}
.color-scheme-dark
.base-menu-option.active:hover,
.color-scheme-grey
.base-menu-option.active:hover {
	background-color: #444;
	border-color: #999;
}
.base-menu-option
.option-icon {
	font-size: 18px;
/*	width: 22px;*/
	padding-right: 6px;
}
.new-tree-style-modifier
.tree__folder-icon {
	padding: 0 4px 0 2px;
	position: relative;
	top: 3px;
	transform: scale(0.9);
}
.new-tree-style-modifier.color-scheme-default
.tree__folder-icon,
.new-tree-style-modifier.color-scheme-light
.tree__folder-icon,
.new-tree-style-modifier.color-scheme-hot
.tree__folder-icon {
  stroke: #222;
  fill: #fff;
}
.new-tree-style-modifier.color-scheme-grey
.tree__folder-icon,
.new-tree-style-modifier.color-scheme-dark
.tree__folder-icon {
  stroke: #ddd;
  fill: rgba(0,0,0,0);
}
.new-tree-style-modifier.color-scheme-default
.tree__folder-icon,
.new-tree-style-modifier.color-scheme-light
.tree__folder-icon,
.new-tree-style-modifier.color-scheme-hot
.tree__folder-icon {
  stroke: #222;
  fill: #fff;
}
.new-tree-style-modifier.color-scheme-grey
.tree__folder-icon,
.new-tree-style-modifier.color-scheme-dark
.tree__folder-icon {
  stroke: #ddd;
  fill: rgba(0,0,0,0);
}
.new-tree-style-modifier
.tree-icon {
	font-size: 16px;
	padding: 0 6px 0 3px;
	color: #222;
	cursor: move;
	position: relative;
	top: 2px;
}
.new-tree-style-modifier
.tree-icon.low-height {
	top: 3px;
}
.new-tree-style-modifier
.new-tree-folder
.tree-icon {
/*	color: #444 !important;*/
	color: #444;
}
.new-tree-style-modifier
.new-tree-icon
.tree-icon {
	color: #222;
/*	color: #222 !important;*/
}
.new-tree-style-modifier.color-scheme-grey
.new-tree-folder
.tree-icon,
.new-tree-style-modifier.color-scheme-dark
.new-tree-folder
.tree-icon {
	color: #bbb !important;
}
.new-tree-style-modifier.color-scheme-grey
.new-tree-icon
.tree-icon,
.new-tree-style-modifier.color-scheme-dark
.new-tree-icon
.tree-icon {
	color: #ddd !important;
}
.new-tree-style-modifier.color-scheme-default
.tree__folder-icon-picto,
.new-tree-style-modifier.color-scheme-grey
.tree__folder-icon-picto,
.new-tree-style-modifier.color-scheme-dark
.tree__folder-icon-picto,
.new-tree-style-modifier.color-scheme-light
.tree__folder-icon-picto,
.new-tree-style-modifier.color-scheme-hot
.tree__folder-icon-picto {
	display: none;
}

.new-tree-style-modifier
.tree-item-toggle {
	position: absolute;
	padding-top: 5px;
	margin-left: -16px;
}
.new-tree-style-modifier
.item-text {
	position:relative;
	vertical-align:top;
	padding: 0 2px 2px 2px;
	top: 2px;
}
.new-tree-style-modifier
.item-div {
	padding: 0px 3px 6px 2px;
  height: 15px;
	border: 1px solid rgba(0,0,0,0);
	border-radius: 5px;
	margin-top: 1px;
	margin-left: 2px;
	cursor: pointer;
	display: inline-block;
	opacity: 0.8;
}
.new-tree-style-modifier.color-scheme-light
.item-div {
	opacity: 1;
}
.new-tree-style-modifier
.item-div:hover {
	border: 1px solid #ccc;
}
.new-tree-style-modifier.color-scheme-grey
.item-div:hover {
	border: 1px solid #333;
}
.new-tree-style-modifier.color-scheme-dark
.item-div:hover {
	border: 1px solid #111;
}
.new-tree-style-modifier
.item-div.tree__item-active {
/*	background-color: #ccc;*/
	border: 1px solid #aaa;
}
.new-tree-style-modifier.color-scheme-default
.item-div.tree__item-active,
.new-tree-style-modifier.color-scheme-hot
.item-div.tree__item-active {
	filter: brightness(106%);
}
.new-tree-style-modifier.color-scheme-grey
.item-div.tree__item-active {
/*	background-color: #383838;*/
}
.new-tree-style-modifier.color-scheme-dark
.item-div.tree__item-active {
/*	background-color: #000;*/
}
.new-tree-style-modifier.color-scheme-light
.item-div.tree__item-active {
	background-color: #eee;
	border: 1px solid #bbb;
}
.new-tree-style-modifier
.drop-file-over-tree.tree__item-active {
	border: none;
}
.new-tree-style-modifier
.item-div
.edit-icon {
	position: absolute;
  cursor: pointer;
  font-size: 14px;
  opacity: 0;
  padding: 2px 10px;
}
.new-tree-style-modifier
.item-div:hover
.edit-icon {
	opacity: 0.8 !important;
}
.new-tree-style-modifier
.item-div.active-folder {
	border: 1px solid #ccc;
}
.new-tree-style-modifier
.item-div.non-open-item {
/*	margin-left: 22px;*/
}
.new-tree-style-modifier
.item-div.drop-file-item {
	width: 172px;
  height: 66px !important;
}
#tree ul { /* help should have bullets */
	list-style-type: none;
	margin-left: 22px;
	padding-left: 0;
}
.new-tree-style-modifier
#tree ul {
	margin-left: 25px;
}
#main li {
	padding: 0 0 4px 0;
}
#tree-ul-float {
	position: relative;
}

.item-div {
	padding: 1px;
	height: 18px;
}

.item-text {
	border: 1px solid transparent;
}
.item-text:hover {
	text-decoration: underline;
}
.new-tree-style-modifier
.item-text {
	border: none;
}
.new-tree-style-modifier
.item-text:hover {
	text-decoration: none;
}
.new-tree-style-modifier
.tree__item-active.drop-file-over-tree,
.new-tree-style-modifier
.tree__item-active.item-text {
	background-color: rgba(0,0,0,0);
}
.new-tree-style-modifier
.drop-file-item
.item-text {
	color: rgba(0,0,0,0);
}
.new-tree-style-modifier
.item-div.active-folder {
	border: 1px solid rgba(0,0,0,0.2);
	background-color: rgba(0,0,0,0);
}

#pointer {
	position: relative;
	border: 1px solid #F78181;
	background: #FBEFEF;
	margin-left: 20px;
}
.new-tree-style-modifier
#pointer {
	margin-left: 0;
}
a {
	text-decoration: none;
	color: black; /* needed! otherwise navy in menu */
}
a:hover {
	text-decoration: underline;
}
.dev-features__new-popup-modifier
.sub-menu-palette-item {
	position: relative;
	padding-right: 26px;
}
.dev-features__new-popup-modifier
.sub-menu-item {
	display: flex;
/*	display: grid;*/
/*	grid-template-columns: auto auto 1fr auto;*/
	position: relative;
}
.dev-features__new-popup-modifier
.sub-menu-palette-container {
	position: absolute;
	width: 100%;
/*  left: 152px;*/
/*  left: 207px;*/
/*  left: 146px;*/
/*  left: 196px;*/
  top: 3px;
  display: flex;
  align-items: flex-start;
  height: 0;
}
.dev-features__new-popup-modifier
.sub-menu-palette-handler {
	position: relative;
  border-radius: 5px;
  padding: 0px 2px;
  color: #555;
  opacity: 0.8;
/*  border: 1px solid rgba(0,0,0,0.5);*/
  font-size: 12px;
/*  height: 38px;*/
  height: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 196px;
}
.dev-features__new-popup-modifier
.sub-menu-palette-item.active
.sub-menu-palette-handler {
	opacity: 1;
}
.dev-features__new-popup-modifier
.sub-menu-handler-icon {
	justify-self: end;
	top: 2px;
	position: relative;
	font-size: 12px;
	opacity: 0.5;
	padding-left: 6px;
}
.dev-features__new-popup-modifier
.sub-menu-item:hover
.sub-menu-handler-icon,
.dev-features__new-popup-modifier
.sub-menu-handler-icon.active {
	opacity: 0.8;
}
.dev-features__new-popup-modifier
.sub-menu-body {
/*	position: relative;*/
	position: absolute;
/*  margin: 0 6px;*/
	margin: -8px 2px;
  z-index: 1;
}
.c-menu {
	position: absolute;
	display: none;
	border: 1px solid #777;
	padding: 4px;
	background-color: white;
	font-size: 14px;
}
.c-menu-but {
	padding: 2px 2px 4px 2px;
	height: 18px;
	vertical-align: middle;
	white-space: nowrap;
}
.c-menu-icon {
	float: left;
	height: 18px;
	width: 24px;
}
.c-menu-icon-new {
	display: flex;
	margin-top: 5px;
	float: left;
	height: 18px;
	width: 24px;
}
.c-menu-input {
	position: relative;
	top: -3px;
	margin-left: 4px;
	border: 1px solid #06a;
	font-size: 13px;
}
.new-tree-style-modifier
.c-menu-input {
	top: -1px;
}

.c-menu-co {
	float: left;
	height: 15px;
	width: 37px;
	margin: 3px 5px;
	border: 1px solid #777;
	font-size: 11px;
	cursor: pointer;
	opacity: 0.6;
}
.tree-add {
	position: absolute;
	display: none;
	width: 134px;
	border: 1px solid black;
	padding: 6px;
	background: #ddd; /*#F6D0AA*/
	font-size: 14px;
}
.table_layout {
	table-layout: fixed;
	margin: 4px 0px;
	text-align: left;
	vertical-align: top;
}
.table_layout td {
	border: none;
}

/*.rnd {
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
}

.sh {
	box-shadow: 4px 4px 12px #888;
	-moz-box-shadow: 4px 4px 12px #888;
	-webkit-box-shadow: 4px 4px 12px #888;
}*/

.logview-but {
	padding: 2px 5px;
	border: 1px solid #888;
	font-size: 14px;
}
.logbody_pre {
	margin: 0;
	font-family: arial;
	line-height: 140%;
}
.logbody_h323 {
	margin: 0 0 6px 22px;
	padding-left: 6px;
	border-left: 1px solid #bbb;
	min-height: 16px;
}

.hint-msg{
	position: absolute;
	/*max-width: 200px;
	min-width: 174px;*/
	width: 174px;
	border: 1px solid black;
	padding: 10px;
	border: 2px solid #aa0;
	background: #ffa;
	font-size: 12px;
}
.hint-help{
	margin-top: 10px;
	font-size: 12px;
	font-weight: 700;
	color: maroon;
	cursor: pointer;
}
.hint-help:hover {
	text-decoration: underline;	
}
.hint-close{
	color: #00b;
	text-decoration: underline;
}
.screen-link{
	font-size: 12px;
	font-weight: 400;
	text-decoration: underline;
}
.count_box{
	background-color: #c00;
	color: #fff;
	margin-left: 4px;
	padding: 2px 6px;
	font-weight: 900;
}

.i-report-refresh {
	fill: #39e;
	stroke: #39e;
}

table.diff {
	border-collapse:collapse;
	border:1px solid darkgray;
	white-space:pre-wrap;
}
table.diff tbody { 
	/*font-family: Courier, monospace;*/
	font-family: Lucida Console;
}
table.diff tbody th {
	font-family:verdana,arial,'Bitstream Vera Sans',helvetica,sans-serif;
	background:#EED;
	font-size:11px;
	font-weight:normal;
	border:1px solid #BBC;
	color:#886;
	padding:.3em .5em .1em 2em;
	text-align:right;
	vertical-align:top;
}
table.diff thead {
	border-bottom:1px solid #BBC;
	background:#EFEFEF;
	font-family:Verdana;
}
table.diff thead th.texttitle {
	text-align:left;
}
table.diff tbody td {
	padding:0px .4em;
	padding-top:.4em;
	vertical-align:top;
}
table.diff .empty {
	max-width: 700px;
	white-space: pre-wrap;
	background-color:#eee;
}
table.diff .equal {
	max-width: 700px;
	white-space: pre-wrap;
}
table.diff .replace {
	max-width: 700px;
	white-space: pre-wrap;
	background-color:#feb;
}
table.diff .delete {
	white-space: pre-wrap;
	background-color:#fdd;
}
table.diff .skip {
	white-space: pre-wrap;
	background-color: #EFEFEF;
	border: 1px solid #AAA;
	border-right: 1px solid #BBC;
}
table.diff .insert {
	white-space: pre-wrap;
	background-color: #dfd;
}
table.diff th.author {
	text-align: right;
	border-top: 1px solid #BBC;
	background: #EFEFEF;
}

/* Multidrop box styles*/
.multi-drop {
	padding-right:0px;
	padding-left:0px;
	padding-bottom:0px;
	padding-top:0px;
}

.multi-drop-scrollbar::-webkit-scrollbar {
	width: 5px;
	height: 5px;
	background-color: #CCC;
}

.multi-drop-scrollbar::-webkit-scrollbar-thumb {
	background: #777; 
}

table#mDropTable:hover tr.mDropBgSingle td.highlighted_opt {
	background:none;
}
tr.mDropBgSingle:hover td.doHover,
table#mDropTable:hover tr.mDropBgSingle:hover td.highlighted_opt, 
tr.mDropBg td.highlighted_opt, 
tr.mDropBg:hover td.highlighted_opt {
	background:#fa0;
}
tr.mDropBgMulti:hover td.doHover {
	background:#fda;
}
tr.mDropBg td {
	height: 13px;
}
tr.mDropBg td.commentCol {
	padding-right: 15px;
	max-width: 500px;
}
tr.mDropBg td.FF_fix {
	padding-right: 25px;
}
tr.mDropBg td.inputWidth {
	width: 13px;
}

/* hidden menu styles */
.icon-hidden-menu {
	padding: 2px 4px 2px 6px; 
	text-align: center;
	width: 21px !important;
	height: 15px !important;
	top: -6px !important;
	margin-left: 10px;
	font-size: 16px;
	float: none;
	position: relative;
	display: inline-block !important;
	margin-top: 0;
}
.i-cross-margin{
	margin-left:3px;
	margin-right:3px;
	width:47px;
}
.hiddenMenuClearfix{
	padding:6px;
}
.hiddenMenuClearfix::after{
	content:"";
	clear:both;
	display:table;
}
.hiddenMenuClearfix > div, .hiddenMenuClearfix > span {
	margin:0px !important;
	left:0 !important;
	top:0 !important;
}

/* Floated blocks icons */
.main__screen-floated-icon{
	padding-right: 20px;
}
.main__screen-floated-icon svg{
	width: 14px;
	height: 14px; 
	position: absolute;
	top: 3px;
}
.main__screen-floated-icon.disabled svg{
	stroke: #a77;
}
svg.menu_hamburger{
	fill: #600000;
}
.main__screen-floated-icon.disabled svg.menu_hamburger{
	fill: #a77;
}
.main__screen-link{
	padding-left:20px !important;
}
.main__screen-name{
	white-space: nowrap;
	padding-top: 0px;
  padding-left: 4px;
	margin: 2px !important;
	display: flex;
  flex-direction: column;
}

:root {
	--main-menu-top: 0px;
	--main-menu-left: 0px;
	--main-menu-handle-margin-bottom: 4px;
}
#scr-main {
  z-index: 999999999;
  left: calc(7px + var(--main-menu-left));
  top: calc(29px + var(--main-menu-top) + var(--main-menu-handle-margin-bottom));
}
.fullscreen-mode
#scr-main {
  left: calc(-1px + var(--main-menu-left));
  top: calc(26px + var(--main-menu-top) + var(--main-menu-handle-margin-bottom));
}
.scr-menu-handle {
	display: none;
	position: absolute;
	padding: 6px 8px 7px 12px;
	opacity: 0.5;
	font-size: 10px;
	cursor: pointer;
	left: calc(0px + var(--main-menu-left));
	top: calc(-2px + var(--main-menu-top));
	width: 14px;
	height: 16px;
}
.fullscreen-mode
.scr-menu-handle {
	left: calc(-1px + var(--main-menu-left));
	top: calc(1px + var(--main-menu-top));
}
.fullscreen-mode
#scr-main
.scr-menu-handle {
	top: calc(-26px + var(--main-menu-top) - var(--main-menu-handle-margin-bottom));
	left: calc(-1px + var(--main-menu-left));
}
#scr-main
.scr-menu-handle {
	top: calc(-25px + var(--main-menu-top) - var(--main-menu-handle-margin-bottom));
	left: calc(-1px + var(--main-menu-left));
}
.scr-menu-handle:hover {
  opacity: 1;
}
#scr-full
.blockName,
#columns
.col:first-child
.block:first-child
.blockName {
	padding: 1px 22px 0 0;
	margin-left: 22px;
}
#columns
.main__column-of-blocks-thumb:first-child
.block:first-child
.blockName {
	padding: 3px 22px 0 0;
	margin-left: 24px;
}
.main__column-of-blocks-thumb:first-child
.block:first-child
.scr-menu-handle {
	top: calc(0px + var(--main-menu-top));
	left: calc(2px + var(--main-menu-left));
}
#scr-main
.scr-menu-handle,
#columns
.col:first-child
.block:first-child
.scr-menu-handle,
#scr-full
.scr-menu-handle {
	display: block !important;
}
.main__column-of-blocks-thumb
.blockName {
	padding-top: 2px;
}
.main__screen-floated-icon {
  position: relative;
  top: -11px;
}
.main-screen-menu-icon {
	padding: 0 8px 0 5px;
  position: relative;
  top: 1px;
}
.main-screen-menu-item {
	padding-right: 6px;
	display: flex;
	user-select: none;
	border: 1px solid transparent;
  padding-left: 1px;
}
.main-screen-menu-item.selected
{
	border: 1px solid #bbb;
  border-radius: 3px;
}
.main-screen-menu-hr {
	border: none;
	width: calc(100% - 8px);
	border-top: 1px solid #888;
	border-bottom: 1px solid #eee;
	margin: 6px auto;
}
#icon-deleteFloatBlocks:hover
svg {
	color: #922;
}
.first-block
.blockName.tooltip::before {
	content: attr(tooltip);
	position: absolute;
	top: 20px;
	left: 21px;
	border: 1px solid #aaa;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.5);
	padding: 8px 12px;
	z-index: 9999999;
	display: none;
	color: maroon;
}
.main__column-of-blocks-thumb
.first-block
.blockName.tooltip::before {
	top: 22px;
	left: 23px;
}
.fullscreen-mode
.first-block
.blockName.tooltip::before {
	top: 23px;
}
.fullscreen-mode
.main__blockcol-thumb
.first-block
.blockName.tooltip::before {
	top: 23px;
/*	left: 23px;*/
}
.first-block
.blockName.tooltip:hover::before {
	display: block;
}

/* Row view / edit */

.rowview-header-cont {
	position: relative;
	overflow-x: hidden;
	overflow-y: hidden;
	margin-right: 10px;
	height: 42px;
}

.rowview-header-item {
	float: left;
	overflow-x: hidden;
	overflow-y: hidden;
	margin: 16px 0 10px 30px;
	font-size: 14px;
	white-space: nowrap;
}



.rowview-tbl {
	display: table;
	width: 100%;
}
.rowview-tbl-row {
	display: table-row;
	height: 23px;
}
.rowview-tbl-cell {
	display: table-cell;
	padding: 0 4px;
	white-space: nowrap;
}
.rowview-line {
	vertical-align: middle;
}

.rowview-head {
	white-space: nowrap;
	font-size: 12px;
	text-align: right;
	width: 5%;
	vertical-align: middle;
	border: none;
	min-height: 19px;
	line-height: 19px;
	margin: 3px 0;
	padding: 2px 4px 2px 2px;
}
.rowview-cell-cont {
	white-space: nowrap;
	font-size: 12px;
	overflow: auto;
	min-width: 80px;
	background-color: #fff;
	border-left: 1px solid #ccc;
	/*max-width: 200px;
	border-right: 1px solid #ccc;*/
}

.rowview-cell {
	min-height: 19px;
	line-height: 19px;
	margin: 3px 0;
	padding: 0 2px 0 2px;
	overflow-x: hidden;
	position: relative;
}
.rowview-cell-border { /* editing */
	box-shadow: 0 0 5px #06a;
  	border: 1px solid #06a;
}
.rowview-input-edit {
	width: 100%;
	border: none;
	font-size: 12px; /* needed for drop-down */
}
.input-edit, .input-edit4, .input-edit9, .input-dis-div {
	border: 1px solid #06a;
	font-size: 12px; /* needed for drop-down */
	overflow: hidden;
}
.input-edit {
	width: calc(100% - 6px);
}
.input-edit4 {
	width: calc(100% - 2px);
	padding: 2px 0 1px 0;
	background-color: #fff;
}
.input-edit9 {
	/*width: calc(100% - 3px);*/
	height: 15px;
	padding: 1px;
	background-color: #fff;
}
.input-dis-div {
	/*background-color: #ddd;*/
	height: 16px;
	padding-left: 2px;
}

/* New menu styles */

.scrollbar{
	scrollbar-width: thin;
	scrollbar-color: #bbb #f5f5f5;
}
.scrollbar::-webkit-scrollbar{
	width: 8px;
	background-color: #f5f5f5;
}
.scrollbar::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.5);
	box-shadow: inset 0 0 2px rgba(0,0,0,0.5);
	border-radius: 8px;
	background-color: #f5f5f5;
}
.scrollbar::-webkit-scrollbar-thumb{
	border-radius: 8px;
	background-color: #bbb;
	width: 8px;
}
.scrollbar::-webkit-scrollbar:horizontal,
.scrollbar::-webkit-scrollbar-track:horizontal,
.scrollbar::-webkit-scrollbar-thumb:horizontal {
	height: 8px;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
	input[type='radio'].rowedit-radio{
	  -webkit-appearance: none;
	  -moz-appearance: none;
	  height: 15px;
	  width:15px;
	  outline: none;
	  display: inline-block;
	  vertical-align: top;
	  position: relative;
	  margin: 1px 4px 0px 0px;
	  cursor: pointer;
	  border: 1px solid #d6d6d6;
	  background: #fff;
	  border-radius: 50%;
	}
	input[type='radio'].rowedit-radio:after {
	  content: '';
	  display: block;
	  left: 0;
	  top: 0;
	  position: absolute;
	  width: 13px;
	  height: 13px;
	  border-radius: 50%;
	  background: #000;
	  opacity: 0;
	  transform: scale(0.5); 
	  -moz-transform: scale(0.5); 
	  -ms-transform: scale(0.5); 
	  -webkit-transform: scale(0.5); 
	  -o-transform: scale(0.5)	  
	}
	input[type='radio'].rowedit-radio:checked:after {
		opacity: 1;
	}
  }

/*============================================*\
 |        Tabs Scrolling Feature CSS          |
\*============================================*/
.tab-animation {
	animation: move_right 0.1s ease 1;
}

.main__block-top-tab-new {
	direction: ltr;
}

.main__tabs-scroller {
	overflow: hidden;
    position: relative;
    right: 0px;
    margin: -2px 0 0;
    height: 32px;
}

.main__tabs-container {
	padding-top: 2px;
    overflow: hidden;
    position: relative;
    width: 100%;
    direction: rtl;
    display: flex !important;
    justify-content: right !important;
    margin: 0 0 0 auto;
}

.main__block-top-tab-active
.main__more-btn-border {
	border: 1px solid transparent !Important;
}

.main__tabs-btn-right-container {
	width: 24px;
	height: 30px;
	position: absolute;
	top: 0px;
	right: 0px;
	border: 0 !important;
	display: none;
    z-index: 998;
    padding-left: 4px;
}

.main__tabs-btn-left-container {
	width: 24px;
	height: 30px;
	position: absolute;
	top: 0px;
	left: 0px;
	border: 0 !important;
	display: none;
    z-index: 998;
    padding-right: 2px;
}

.main__tab-scroll-btn-visible {
	display: flex !important;
	flex-direction: row;
	z-index: 999;
}

.main__tab-scroll-btn-disabled {
/*	opacity: 0;*/
}

.main__tab-scroll-btn-disabled
.main__tab-scroll-btn-left {
	opacity: 0.3 !Important;
/*	border: 1px solid #aaa !Important;*/
}

.main__tab-scroll-btn-disabled
.main__tabs-scroll-arrow-icon {
	opacity: 0.3 !Important;
/*	color: #aaa !Important;*/
}

.main__tab-scroll-btn-left {
    font-size: 14px;
    cursor: pointer;
    z-index: 999;
    /*background-color: #e6e6e6;*/
    width: 12px;
	border-radius: 12px 0 0 12px;
    -webkit-border-radius: 12px 0 0 12px;
    /*background: linear-gradient(to bottom, #e4e4bd 0%, #fff 80%);
    background: -webkit-linear-gradient(top, #e4e4bd 0%, #fff 80%);
    border: 1px solid #bbb;*/
    border: 1px solid currentColor !Important;
    padding: 0px 2px 0 4px !important;
	top: 4.5px;
    height: 17px;
}

.main__tab-scroll-btn-disabled
.main__tab-scroll-btn-right {
	opacity: 0.3 !Important;
/*	border: 1px solid #aaa !Important;*/
}

.main__tab-scroll-btn-right {
    font-size: 14px;
    cursor: pointer;
    z-index: 999;
    /*background-color: #e6e6e6;*/
    width: 12px;
	border-radius: 0 12px 12px 0;
    -webkit-border-radius: 0 12px 12px 0;
    /*background: linear-gradient(to bottom, #e4e4bd 0%, #fff 80%);
    background: -webkit-linear-gradient(top, #e4e4bd 0%, #fff 80%);
    border: 1px solid #bbb;*/
    border: 1px solid currentColor !Important;
    padding: 0px 3px 0 3px !important;
	top: 4.5px;
    height: 17px;
    left: 7px;
}

.main__tabs-scroll-arrow-icon {
	position: absolute;
    font-size: 11px;
    top: 3px;
    color: maroon;
}

.tree__custom-scrollbar::-webkit-scrollbar {
    width: 5px !important;
    height: 5px !important;
    background-color: #ddd !important;
    -webkit-appearance: auto !important;
}

.tree__custom-scrollbar::-webkit-scrollbar-corner {
    background-color: #ddd !important;
}

.tree__custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #aaa !important;
}

.main__custom-scrollbar::-webkit-scrollbar {
    width: 10px !important;
    height: 10px !important;
    background-color: #ddd !important;
    -webkit-appearance: auto !important;
}

.main__custom-scrollbar::-webkit-scrollbar-corner {
    background-color: #ddd !important;
}

.main__custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #aaa !important;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.scroll-width-thin {
  scrollbar-width: thin;
}

#columns   .window-object,
#columns-f .window-object {
	border: 1px solid rgba(0, 0, 0, 0.5);
	box-shadow: 4px 4px 12px #777;
	-webkit-box-shadow: 4px 4px 12px #777;
}
#columns-f .window-object.top-window {
/*	border: 1px solid rgba(0, 0, 0, 1);*/
	box-shadow: 4px 4px 12px #555;
	-webkit-box-shadow: 4px 4px 12px #555;
}

#columns-f .window-object > * {
	opacity: 1;
}
#columns-f .window-object.top-window > * {
	opacity: 1;
}

#columns-f .window-object            .blockDrag {
	opacity: 0.5;
}
#columns-f .window-object.top-window .blockDrag {
	opacity: 1;
}

.float-block-menu .window-object {
	box-shadow: 4px 4px 12px #999;
	-webkit-box-shadow: 4px 4px 12px #999;
}
.float-block-menu .window-object.top-window {
/*	border: 1px solid rgba(0, 0, 0, 0.4);*/
	box-shadow: 4px 4px 12px #777;
	-webkit-box-shadow: 4px 4px 12px #777;
}

.float-block-menu .window-object            .main__options-body > * {
	opacity: 1;
}
.float-block-menu .window-object.top-window .main__options-body  > * {
	opacity: 1;
}

.more-controls-active
.more-controls-btn {
/*	top: 4px !important;*/
/*	left: 4px !important;*/
/*	transform: rotate(0deg) !important;*/
}

.menuButCont
.hidden-menu-item {
	display: none !important;
}
.hidden-menu-item.more-controls-active {
	display: inline-block !important;
}

.inactive-close_icon {
	display: block;
}
.active-close_icon {
	display: none;
}
.top-window
.inactive-close_icon {
	display: none;
}
.top-window
.active-close_icon {
	display: block;
}
:focus {
    outline: none;
}
.top-window
.default-ok-action:not(textarea):not(.disable-selection) {
	border: 1px dotted #000;
  border-radius: 7px;
  padding: 1px !important;
}
.adjust-svg-height
svg.main__table-drop-icon {
	height: 48px;
}

:root {
	--tree-warnings-padding-left: 14px;
	--tree-warnings-padding-right: 24px;
}
#tree-cont {
	flex-direction: column;
}
.tree_warnings-body {
	position: relative;
/*	background-color: bisque;*/
	background-color: #f88;
/*	border-bottom: 1px solid burlywood;*/
	border-bottom: 1px solid #db5f5f;
	z-index: 1;
	width: calc(100% - var(--tree-warnings-padding-right) - var(--tree-warnings-padding-left));
	padding: 6px var(--tree-warnings-padding-right) 6px var(--tree-warnings-padding-left);
}
.tree_warnings-text {
/*	color: maroon;*/
	color: white;
	font-size: 14px;
	font-weight: bold;
	white-space: normal;
	line-height: 1.5;
}
.tree_warnings-close-icon {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 24px;
	color: #fee;
	cursor: pointer;
}

:root {
	--info-window-image-text-padding: 120px;
}
.dev-features__informational-window-modifier
.image-shader {
	width: 100%;
  height: calc(100% - 3px - var(--info-window-image-text-padding));
  color: white;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(0,0,0,0.05);
  position: absolute;
  z-index: 1;
  display: flex;
	justify-content: center;
  padding-top: var(--info-window-image-text-padding);
  font-size: 48px;
  text-align: center;
  text-shadow: 1px 1px 12px rgba(0, 0, 0, 0.7);
}
.dev-features__informational-window-modifier
.image-shader:hover {
  background-color: rgba(0,0,0,0.1);
}
.dev-features__informational-window-modifier
.img-link {
	border: 1px solid rgba(0,0,0,0.3);
	opacity: 0.9;
}
.dev-features__informational-window-modifier
.img-link:hover {
	border: 1px solid rgba(0,0,0,0.5);
	opacity: 1;
}
