::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
	background-color: rgb(41, 47, 72);
	margin: 1px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    -webkit-border-radius: 6px;
}

::-webkit-scrollbar-thumb:window-inactive {
	background-color: rgb(71, 90, 120);
}

::-webkit-input-placeholder { color:rgb(154, 151, 186); }
::-moz-placeholder { color:rgb(154, 151, 186); }
:-ms-input-placeholder { color:rgb(154, 151, 186); }
:-moz-placeholder { color:rgb(154, 151, 186); }

@font-face {
    font-family: 'Flat-UI-Icons';
    src:url(../fonts/flat-ui-icons-regular.eot);
    src:url(../fonts/flat-ui-icons-regular.eot?#iefix) format('embedded-opentype'),
    	url(../fonts/flat-ui-icons-regular.woff) format('woff'),
    	url(../fonts/flat-ui-icons-regular.ttf) format('truetype'),
    	url(../fonts/flat-ui-icons-regular.svg#flat-ui-icons-regular) format('svg');
}

[class^="fui-"],
[class*="fui-"] {
  font-family: 'Flat-UI-Icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fui-list:before {
  content: "\e61a"; /*hrabičky*/
}

body {
	background-color: #2c2e41;
	color: var(--primary-font-color);
	font-family: "Helvetica Neue", sans-serif;
	overflow: hidden;
}

body.slave > * {
	visibility: hidden;
}

h1, h2, h3 {
	color: rgb(113, 125, 177);
	text-shadow: 1px 1px 1px black;
}

textarea[disabled="disabled"],
input[disabled="disabled"],
input[readonly="readonly"],
select[disabled="disabled"] {
	opacity: 0.7;
}

code, .code {
	font-family: 'Source Code Pro', Menlo, Monaco, Lucida Console, monospace;
	white-space: pre-wrap;
	word-break: break-all;
}

code .light, .code .light { font-weight: 300; }
code .regular, .code .regular { font-weight: 400; }
code .medium, .code .medium { font-weight: 500; }
code .bold, .code .bold { font-weight: 700; }
code i, .code i { font-style: normal; }
code b, .code b { font-weight: inherit; }

code {
    color: #efefef;
    border: 1px solid #3a3a39;
    background-color: #2a2a29;
    padding: 0px 2px;

    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -o-border-radius: 2px;
    -ms-border-radius: 2px;
    -khtml-border-radius: 2px;
    border-radius: 2px;
}

span.contrast-color {
	background: inherit;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: invert(1) grayscale(1) contrast(9);
}

.composite-input {
	position:relative;
}

.composite-input .composite-ctrl {
	background-color: rgb(133, 4, 213);
	width: 24px;
	height: 24px;
	position: absolute;
	top: -2px;
}

.composite-input .composite-ctrl[indent="1"], .composite-input composite-ctrl[indent="1"] {right: 4px;}
.composite-input .composite-ctrl[indent="2"], .composite-input composite-ctrl[indent="2"] {right: 32px;}
.composite-input .composite-ctrl[indent="3"], .composite-input composite-ctrl[indent="3"] {right: 64px;}

.composite-input input[indent="1"], .composite-input textarea[indent="1"] {padding-right: 32px;}
.composite-input input[indent="2"], .composite-input textarea[indent="2"] {padding-right: 64px;}
.composite-input input[indent="3"], .composite-input textarea[indent="3"] {padding-right: 96px;}

.lin input {
	width: 100%;
	box-sizing: border-box;
}

.help-tip {
	margin-left: 8px;
	cursor: help;
	display: inline-block;
	position: relative;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	font-size: 12px;
	line-height: 22px;
	vertical-align: middle;
	text-align: center;
	color: rgb(96, 96, 140);
}

.help-tip:before {
	content: "?";
	font-weight: bold;
}

.help-tip:hover > * {
    display:block;
    z-index: 999;
    transform-origin: 100% 0%;

    -webkit-animation: tooltipFadeIn 0.3s ease-in-out;
    animation: tooltipFadeIn 0.3s ease-in-out;
}

.help-tip > * {    /* The tooltip panel */
    display: none;
    text-align: left;
    background-color: #1E2021;
    padding: 20px;
    width: 300px;
    position: absolute;
    border-radius: 3px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    right: -4px;
    color: #dcd4e4;
    font-size: 13px;
    line-height: 1.4;
}

.help-tip > *:before { /* The pointer of the tooltip */
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	border: 6px solid transparent;
	border-bottom-color: #1E2021;
	right: 10px;
	top: -12px;
}

.help-tip > *:after { /* Prevents the tooltip from being hidden */
    width: 100%;
    height: 40px;
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
}

@-webkit-keyframes tooltipFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }

    100% {
        opacity: 100%;
        transform: scale(1);
    }
}

@keyframes tooltipFadeIn {
    0% { opacity:0; }
    100% { opacity:100%; }
}

/* ASCII code 157 = Ø (uppercase slashed zero or empty set) */
/* ∅ lowercase */
.empty-set:before {
	content: "Ø";
    font-size: 32px;
    display: block;
    text-align: center;
    padding: 22px;
    color: rgb(140, 141, 170);
}

.pictogram {
	min-width: 40px;
    min-height: 40px;

    box-shadow: rgba(29, 32, 36, 0.9) 1px 2px 2px;
    -webkit-box-shadow: rgba(29, 32, 36, 0.9) 1px 2px 2px;
    -moz-box-shadow: rgba(29, 32, 36, 0.9) 1px 2px 2px;

    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

#enterprise-logo {
	max-height: 42px;
    border: 0;
    border-width: 0;
    vertical-align: middle;
    margin-left: 20px;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.spinning {
	background-image: url("../images/spinning20x20.gif");
	background-repeat: no-repeat;
	min-width: 14px;
	min-height: 14px;
	font-size: 0 !important;
}

a:link, a:visited, a:active, a {
	text-decoration: none;
	color: var(--tertiary-font-color);
	border-bottom: 1px dashed transparent;
}

a:hover {
	text-decoration: none;
	color: white;
	border-bottom: 1px dashed silver;
}

button.ui-button {
	box-shadow: rgb(29, 32, 36) 0px 2px 3px;
	-webkit-box-shadow: rgb(29, 32, 36) 0px 2px 3px;
	-moz-box-shadow: rgb(29, 32, 36) 0px 2px 3px;
}

.lng-link {
	margin: 4px;
	margin-left: 13px;
    margin-right: 0px;

    padding: 4px;
    padding-left: 6px;
    padding-right: 6px;
    background-color: rgb(66, 81, 97);
}

.lng-link.selected {
	background-color: rgb(50, 130, 80);
}

.help-link {
	background-color: rgb(48, 66, 115);
	margin-left: 2px;
	margin-right: 2px;
}

.req-failed {
	background-color: rgba(220, 118, 4, 0.15);
	margin-left: 4px;
}

.req-failed.badge {background-color: rgb(204, 109, 4);}
.req-failed.badge.badge-error {background-color: rgb(190, 38, 84);}

.msg-cnt-bubble {
	display: inline-block;
	cursor: default;
	position: relative;
	top: -8px;
	background: rgb(118, 105, 123);
	color: white;
	border-radius: 2px;
	padding: 2px;
	padding-left: 4px;
	padding-right: 4px;
	font-size: 12px;
	margin-right: 3px;
}

.msg-cnt-bubble:after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-left-color: rgb(118, 105, 123);
	border-right: 0;
	border-bottom: 0;
	margin-top: -3px;
	margin-right: -5px;
}

.app-shell {
	background-color: rgb(120, 118, 4);
	margin-left: 4px;
}

.app-cnf {
	background-color: rgb(56, 97, 170);
	margin-left: 4px;
}

.transfer.rondo {
	background-color: rgb(101, 63, 120);
}

.completely-approved {
	color: rgb(255, 214, 58);
    font-style: italic;
}

a.services {
	background-color: rgb(2, 119, 68);
    margin-left: 4px;
}

a.task-list {
	background-color: rgb(48, 98, 119);
    margin-left: 4px;
}

#dialog-yn .alert {
	background-color: rgb(183, 0, 0);
    padding: 12px;
}

#dialog-yn input {
	box-sizing: border-box;
    width: 100%;
}

#dialog-yn .labeled-checkbox {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
}

#dialog-yn .labeled-checkbox label {
	margin: 8px;
}

#dialog-services .service {
	margin-top: 12px;
	background-color: rgb(78, 88, 128);
    padding: 4px;
}

#dialog-services .service.auto-approve .title {
	color: gray;
}

#dialog-services .service.auto-approve .play {
	visibility: hidden;
}

#dialog-services .title,
#dialog-services .progress {
	margin-left: 24px;
	display: inline-block;
	font-size: 16px;
}

#dialog-services .title {min-width: 280px;}

#dialog-services .progress {
	color: lightgray;
	float: right;
}

.tab-content-selector {
	min-width: 360px;
}

.tab-content-selector .ad-ctrl {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
}

.tab-content-selector .filter-panel {
	max-height: 210px;
	overflow-y: auto;
	margin-bottom: 12px;
	display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    align-content: flex-start;
}

.tab-content-selector .filter-item {
	background-color: rgb(112, 98, 131);
	padding: 4px;
    padding-left: 8px;
    padding-right: 8px;
    display: inline-block;
    margin-right: 1px;
    margin-bottom: 1px;
    flex-grow: 1;
}

.tab-content-selector .filter-item > .app-name {
	margin-left: 6px;
}

.tab-content-selector .select-all {
	font-size: 16px;
	display: inline-block;
	padding: 5px;
	padding-left: 8px;
    padding-right: 8px;
    background-color: rgb(92, 97, 120);
    margin: 2px;

	border-bottom: 1px solid black;
	border-right: 1px solid black;

	border-top: 1px solid rgb(112, 113, 125);
	border-left: 1px solid rgb(112, 113, 125);
}

.tab-content-selector .filter-item.selected {
	background-color: rgb(24, 155, 38);
}

.tab-content-selector .filter-item.approved:after {
	content: " •";
	color: green;
}

.tab-content-selector .filter-item.stored:after {
	content: " •";
	color: orange;
}

.tab-content-selector .filter-item.modified:after {
	content: " •";
	color: gray;
}

.tab-content-selector .filter-item.rejected:after {
	content: " •";
	color: red;
}

.tab-content-selector .filter-item.empty:after {
	content: " •";
	color: pink;
}

.tab-content-selector .filter-item.child:after {
	content: " •";
	color: lightblue;
}

.tab-content-selector .ad-ctrl input {
	flex-grow: 1;
	width: 150px;
}

#dialog-services .service > a, #dialog-services .service .info {margin-right: 8px;}

#dialog-services .service .info.error {
	-webkit-box-shadow: 0px 0px 5px 1px red;
	-moz-box-shadow: 0px 0px 5px 1px red;
	box-shadow: 0px 0px 5px 1px red;
}

#dialog-services .service .info.running {
	background-color: lime;
	-webkit-box-shadow: 0px 0px 5px 1px lime;
    -moz-box-shadow: 0px 0px 5px 1px lime;
    box-shadow: 0px 0px 5px 1px lime;
}

#dialog-services .service .info.stopping {
	background-color: orange;
	-webkit-box-shadow: 0px 0px 5px 1px orange;
	-moz-box-shadow: 0px 0px 5px 1px orange;
	box-shadow: 0px 0px 5px 1px orange;
}

#dialog-services .service .info.halted {background-color: gray;}

#dialog-services .service a.stop {background-color: rgb(190, 38, 84);}

#dialog-services .service a.play {background-color: green;}

#layout {
	width: 100%;
	height:100%;
	position:absolute;
	top: 0;
    left: 0;
    border-collapse: collapse;
    border: dashed 0px;
    border-color: black;
}

#layout td {
	border: dashed 0px;
}

#header {
	height: 50px;
	background-color: #444c62;
	text-align: center;
}

#module-variant-bar {
	position: relative;
	width: 30px;
	overflow: hidden;
	background-color: #444c62;
}

#app-id,
#module-variant-menu {
	position: absolute;
    top: 40px;
    right: 0px;
    white-space: nowrap;

    -webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
	transform-origin: right bottom;

	z-index:2;
	background-color: #444c62;
}

#app-id {
	top: calc(90% - 250px);
	margin: 4px;
	font-size: 14px;
	color: rgb(101, 105, 119);
	z-index:1;
}

#module-variant-menu a.variant {
	margin-left: 3px;
	display: inline-block;
	position: relative;
	white-space: nowrap;
	padding: 4px;
	padding-right: 8px;
	padding-left: 8px;
	font-size: 15px;

	-webkit-border-top-left-radius: 8px;
	-moz-border-top-left-radius: 8px;
	border-top-left-radius: 8px;

	-webkit-border-top-right-radius: 8px;
	-moz-border-top-right-radius: 8px;
	border-top-right-radius: 8px;

	border-top: 1px solid #373737;
	border-left: 1px solid #373737;
	border-right: 1px solid #373737;
}

#module-variant-menu a.variant.variant-selected {
	background-image: url("../images/struct-bg.png");
	box-shadow: rgb(61, 67, 76) -3px 0px 2px;
    -webkit-box-shadow: rgb(61, 67, 76) -3px 0px 2px;
    -moz-box-shadow: rgb(61, 67, 76) -3px 0px 2px;
}

#selected-line {margin-right: 14px;}

#manage-selected-line {background-color: rgb(54, 62, 94);}

#footer {
	height: 32px;
	background-color: var(--footer-default-bg-color, #444c62);
	vertical-align: top;
	padding: 0;

	border-collapse: collapse;
	border-top: solid 1px;
	border-color: black;
	padding-left: 32px;
}

#header-info, #footer-info {
	text-align: right;
	padding-right: 22px;
	float: right;
	flex-grow: 1;
	white-space: nowrap;
}

#footer-info > .rondo {margin-top: 3px;}

#footer-tab-bar {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#logo-clever {
	position: absolute;
	top: 2px;
    left: 2px;
    background: url("../images/clever170x48.png") no-repeat;
    background-size: 170px 48px;
    width: 170px;
    height: 48px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    #logo-clever {
		background: url("../images/clever340x96.png") no-repeat;
		background-size: 170px 48px;
		left: 5px;
    }
}

#dialog-user > p:not(.logged) {
	display: flex;
	flex-wrap: wrap;
	/*justify-content: space-between;*/
	align-items: baseline;
}

#dialog-user .lng-link {
	display: inline-block;
	flex-grow: 1;
	border-radius: 3px;
}

#dialog-user > p > span {
	margin-left: 12px;
}

#dialog-user .ws-id,
#dialog-user .revision-zero,
#dialog-user .lng-inf
{
	color: silver;
	font-size: 12px;
	cursor: default;
}

#dialog-user .ws-id > span,
#dialog-user .revision-zero > span,
#dialog-user .lng-inf > span
{margin-left: 12px;}

#dialog-user .lng-inf {
	margin-top: 8px;
}

#dialog-user .revision-zero.selected {color: lime;}

#content {
	vertical-align: top;
	text-align: center;
	position: relative;
	background-image: url("../images/struct-bg.png");
	padding: 0;
}

.owner {
	background-color: rgb(112, 98, 131);
    display: block;
    margin: 12px 0 12px 12px;
    padding: 4px;
    padding-left: 12px;
    border-bottom: 1px solid transparent;
	border-radius: 3px;
}

.last-selected-owner {background-color: rgb(136, 98, 146);}

.tab-content {
	display:none;
	overflow: scroll;
	overflow-x: hidden;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.hidden {
	display:none !important;
}

.tool-item {
	min-width: 20px;
	width: initial;
	text-align: left;
}

.footer-tab {
	display: flex;
	justify-content: space-between;
	position: relative;
	padding: 4px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0;
    margin-right: 3px;
    flex-grow: 5;

    height: 19px;
	min-width: 30px;
	max-width: 180px;

    -webkit-border-bottom-left-radius: 8px;
	-moz-border-bottom-left-radius: 8px;
	border-bottom-left-radius: 8px;

	-webkit-border-bottom-right-radius: 8px;
	-moz-border-bottom-right-radius: 8px;
	border-bottom-right-radius: 8px;

	border-bottom: 1px solid #373737;
	border-left: 1px solid #373737;
	border-right: 1px solid #373737;
}

.footer-tab:not(.tab-selected) a {
	filter: brightness(180%);
}

.footer-tab:not(.tab-selected) {
	filter: brightness(92%);
	border-top: 1px solid #373737;
}

.footer-tab:not(.tab-selected),
.footer-tab:not(.tab-selected) .toolbar-options{
    background-color: var(--footer-default-bg-color, #444c62);
}

.footer-tab:not(.tab-selected) a{   
    color: var(--footerTabColor, red);
}

.footer-tab.tab-selected,
.footer-tab.tab-selected .toolbar-options{
    background-color: var(--footerTabColor, red);
}

.footer-tab.tab-selected a{ 
    color: white;
}

.footer-tab:has(> a.tab-link[data-id="tab-id-bom"]){
	--footerTabColor: var(--tab-id-bom-color);
}

.footer-tab:has(> a.tab-link[data-id="tab-id-contract"]){
	--footerTabColor: var(--tab-id-contract-color);
}

.footer-tab:has(> a.tab-link[data-id="tab-id-opr"]){
	--footerTabColor: var(--tab-id-opr-color);
}

.footer-tab:has(> a.tab-link[data-id="tab-id-isp"]){
	--footerTabColor: var(--tab-id-isp-color);
}

.footer-tab:has(> a.tab-link[data-id="tab-id-sen"]){
	--footerTabColor: var(--tab-id-sen-color);
}

.footer-tab:has(> a.tab-link[data-id="tab-id-ev-sen"]){
	--footerTabColor: var(--tab-id-ev-sen-color);
}

.footer-tab:has(> a.tab-link[data-id="tab-id-tra"]){
	--footerTabColor: var(--tab-id-tra-color);
}

.footer-tab:has(> a.tab-link[data-id="tab-id-doc"]){
	--footerTabColor: var(--tab-id-doc-color);
}

.footer-tab:has(> a.tab-link[data-id="tab-id-oms"]){
	--footerTabColor: var(--tab-id-oms-color);
}

.footer-tab:has(> a.tab-link[data-id="tab-id-wpn"]){
	--footerTabColor: var(--tab-id-wpn-color);
}

.footer-tab:has(> a.tab-link[data-id="tab-id-inb"]){
	--footerTabColor: var(--tab-id-inb-color);
}

.footer-tab:has(> a.tab-link[data-id="tab-id-apr"]){
	--footerTabColor: var(--tab-id-apr-color);
}

.footer-tab:has(> a.tab-link[data-id="tab-id-pln-line"]){
	--footerTabColor: var(--tab-id-pln-line-color);
}

.footer-tab:has(> a.tab-link[data-id="tab-id-wrk-shift-plan"]){
	--footerTabColor: var(--tab-id-wrk-shift-plan-color);
}

.footer-tab:has(> a.tab-link[data-id="tab-id-usr"]){
	--footerTabColor: var(--tab-id-usr-color);
}

.footer-tab:has(> a.tab-link[data-id="tab-id-esc"]){
	--footerTabColor: var(--tab-id-esc-color);
}

.footer-tab:has(> a.tab-link[data-id="tab-id-evt"]){
	--footerTabColor: var(--tab-id-evt-color);
}

.footer-tab:has(> a.tab-link[data-id="tab-id-cnf"]){
	--footerTabColor: var(--tab-id-cnf-color);
}

.footer-tab:has(> a.tab-link[data-id="tab-id-wks"]){
	--footerTabColor: var(--tab-id-wks-color);
}

.footer-tab a:link,
.footer-tab a:visited,
.footer-tab a:active,
a {
	text-decoration: none;
	border-bottom: 1px dashed transparent;
}

.footer-tab a:hover,
#module-variant-menu a.variant:hover {
	text-decoration: none;
	border-bottom: 1px dashed transparent;
}

.tab-selected {
	/*z-index: 1;*/
	box-shadow: rgb(22, 24, 27) 0px 1px 3px;
	-webkit-box-shadow: rgb(22, 24, 27) 0px 1px 3px;
	-moz-box-shadow: rgb(22, 24, 27) 0px 1px 3px;
}

.tab-selected a:hover {
	color: white;
}

.tab-selected a:link,
.tab-selected a:visited,
.tab-selected a:active,
a {
	color: white;
}

.footer-tab .menu-tab-ico {
	float: right;
    margin-left: 6px;
}

.footer-tab .tab-link,
.footer-tab .sub-tab {
	font-size: 15px;
	white-space: nowrap;
	flex-grow: 5;
}

.footer-tab .toolbar-options {
	display: inline-block;
	position: absolute;
	min-width: 100%;
	left: -1px;
	z-index: 99;

	-webkit-border-top-left-radius: 8px;
	-moz-border-top-left-radius: 8px;
	border-top-left-radius: 8px;

	-webkit-border-top-right-radius: 8px;
	-moz-border-top-right-radius: 8px;
	border-top-right-radius: 8px;

	border-top: 1px solid #373737;
	border-left: 1px solid #373737;
	border-right: 1px solid #373737;
}

.toolbar-options .sub-tab {
	display: block;
	padding: 4px;
    padding-left: 10px;
    padding-right: 10px;

	overflow-x: hidden;
	text-overflow: ellipsis;

	border-bottom: 1px solid rgb(76, 90, 116);
}

#content-title {
	margin-left: 200px;
	color: rgb(200, 200, 200);
	line-height: 50px;
}

#header .user-doc-link {
	margin-left: 12px;
	background-color: rgb(54, 62, 94);
}

.no-close .ui-dialog-titlebar-close {display: none;}

input {
	margin: 1px;
	padding: 4px 10px;
}

input.visible-whitespaces:first-line {
	/* background-color: gold; */
	word-spacing: 5px;
}

#dialog-input input {width: 89%;}

#dialog-login input {width: 92%;}

#dialog-login .login-msg {
	margin-bottom: 12px;
	font-size: 15px;
    color: rgb(255, 138, 5);
    font-style: italic;
}

input.input-modified, textarea.input-modified {/*ještě neuložená změna*/
	color: rgb(186, 47, 151) !important;
}

.rondo-checkbox[ref-id][ref-table][ref-column] {/*indikace checkboxu připraveného k autoupdatu a diffu*/
	background: rgb(57, 59, 150);
}

select[ref-id][ref-table][ref-column],
textarea[ref-id][ref-table][ref-column],
input[ref-id][ref-table][ref-column] {/*indikace pole připraveného k autoupdatu a diffu*/
	background: rgb(193, 213, 230);
}

.rondo-checkbox[ref-id][ref-table][ref-column].diff {/*změna oproti původní hodnotě*/
	background: rgb(62, 85, 50);
}

select[ref-id][ref-table][ref-column].diff,
textarea[ref-id][ref-table][ref-column].diff,
input[ref-id][ref-table][ref-column].diff {/*změna oproti původní hodnotě*/
	background: rgb(208, 231, 196);
}

.rondo-checkbox[ref-id][ref-table][ref-column].unchanged {/*shoda s původní hodnotou*/
	background: rgb(107, 109, 134);
}

select[ref-id][ref-table][ref-column].unchanged,
textarea[ref-id][ref-table][ref-column].unchanged,
input[ref-id][ref-table][ref-column].unchanged {/*shoda s původní hodnotou*/
	background: rgb(187, 191, 237);
}

.rondo-checkbox[ref-id][ref-table][ref-column].dnf {/*nebylo možné provést diff*/
	background: rgb(92, 24, 24);
}

select[ref-id][ref-table][ref-column].dnf,
textarea[ref-id][ref-table][ref-column].dnf,
input[ref-id][ref-table][ref-column].dnf {/*nebylo možné provést diff*/
	background: rgb(255, 217, 217);
}

.ui-widget-content input.mandatory {
	background: #fef4c0; /* default yellow background for mandatory field */
}

input.unsupported-validator {
	border: 1px solid orange !important;
}

textarea.invalid,
input.invalid,
select.invalid {
	border: 1px solid red !important;
	color: rgb(255, 149, 5) !important; /*oranžová*/
	background: rgb(200, 4, 42) !important; /*červená*/
}

input.warning {
	border: 2px solid rgb(255, 149, 5)!important;
}

.warning-msg {
    background-color: rgb(255 117 5);
    padding: 5px;
    margin: 5px 0;
    font-size: 12px;
}

select {
	font-size: 16px;
	font-weight: bold;
	height: 31px;
	/*background-color: #354164;*/
	/*color: white;*/
	color: #605874;
	border-color: rgb(84, 119, 136);
	border-width: 1px;
	padding: 2px;
	padding-left: 8px;
	padding-right: 8px;

	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

.dialog textarea, .dialog input, .dialog a {outline: none;}

.dialog label {
	margin-bottom: 2px;
    margin-top: 8px;
    display: block;
    font-size: 14px;
}

.dialog .pin > a {
	font-size: 14px;
}

.dialog {
	display: none;
}

#dialog-product-line .line{
	padding-top: 2px;
	padding-bottom: 2px;
}

#dialog-product-line .line-hruid{
	display: block;
	height: 12px;
	margin: -2px 0 0;
}

.sub-label{
	overflow: hidden;
	display: inline-block;
	white-space: nowrap;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: .65rem;
	opacity: .6;
}

span.ui-icon {
	display: inline-block;
	position: relative;
    top: 2px;
}

body .ui-widget-overlay {/* přepsání jQuery stylu */
	background: #383943;
    background-color: #383943;
    opacity: .8;
    filter: Alpha(Opacity=80)
}

.ui-cover, .ui-reload {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height:100%;
	z-index:99999;

	background-image: url("../images/loading.gif");
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgba(58, 70, 104, 0.8);

	color: white;
	margin: 0;
	padding: 0;
	display: block;
	text-align: center;
	vertical-align: middle;
	cursor: wait;
}

#end-of-list{
	height: 1rem;
	position: relative;
}

#end-of-list .ui-cover {
    background-color: unset;
}

.cover-text {
	color: white;
	background-color: rgb(209, 123, 5);
	padding: 15px;
}

.cover-escape {
	background-color: rgb(209, 123, 5);
	top: -10px;
}

/* no-click, no-action */
input.disabled,
a.disabled,
a.rondo-checkbox.disabled-checkbox,
.none-from-auth,
.none-from-config {
	pointer-events: none;
	opacity: 0.4;
	cursor: pointer;
}

.img-ico {
	width: 16px;
	height: 16px;
	position: relative;
	top: 3px;
	border: 0px solid green;
}

#app-msg-list-dialog .msg-item > span {
	margin: 8px;
    font-size: 15px;
}

#shell-panel .ts,
#app-msg-list-dialog .ts {
	color: rgb(230, 155, 255);
	white-space: nowrap;
}

#app-msg-list-dialog .msg-item {
	margin-bottom: 2px;
}

#app-msg-list-dialog .msg-item.warning {color:orange;}
#app-msg-list-dialog .msg-item.info {color:rgb(181, 217, 255);}

#app-msg-list-dialog .msg-stream {
	height: 100%;
    overflow-y: scroll;
	background-color: rgb(38, 40, 53);
	padding-left: 2px;
    padding-right: 2px;
}

ul.ui-autocomplete {
	max-height: 120px;
	overflow-y: scroll;
	overflow-x: hidden;
}

#dialog-relationship .link-editor-content {
	height: 220px;
	overflow-y: auto;
	overflow-x: hidden;
	box-sizing: border-box;
}

#dialog-relationship .link-editor .link-editor-item {
	width: 100%;
}

#dialog-relationship .link-editor .selected-link:before {
	content: "✓ ";
}

.row-block {
	padding: 3px 5px;
	background-color: rgb(65, 62, 119);
	border-radius: 3px;
	white-space: nowrap;
	margin: 1px 4px 1px 0;
	display: inline-block;
}

.row-block :hover{
	text-decoration: line-through;
	background-color: rgb(190, 38, 84);
}

/* jquery-osid.js */

.osid-index {margin-top: 6px;}

.osid-index > label {
	margin-right: 8px;
	margin-left: 4px;
}

.inspection-opr-index .operation-item,
.osid-index > .osid-item {
	margin: 2px;
	display: inline-block;
	padding: 4px;
	padding-left: 6px;
	padding-right: 6px;
	background-color: rgb(93, 82, 139);
	min-width: 120px;
}

.inspection-opr-index .operation-item.selected,
.osid-index > .osid-item.selected-osid {
	background-color: rgb(3, 143, 76);
}

.inspection-opr-index .filter {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
}

.inspection-opr-index .filter label {
	margin-right: 6px;
}

.inspection-opr-index .filter select {
	flex-grow: 1;
}

/* filter-dialogs (wp/doc/operation/inspection/terminal) */

.filter-container{
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
}

.filter-container .items-container{
	flex: 1 1 auto;
	overflow-y:auto;
	height: 50px;
}

.filter-container .btn-container{
	display: flex;
	justify-content: end;
	padding-top: 1rem;
	margin-right: -2px;
}

.filter-container a.play-filter {
    background-color: rgb(10, 119, 163);
}
.filter-container  a.reset-find {
    background-color: rgb(188, 82, 19);
}
.filter-container  .reset-all-find {
    background-color: rgb(190, 38, 84);
}

/* jquery-operation-title.js */

.opr-title-editor > label {
	display: inline-block;
    margin-right: 8px;
    margin-left: 4px;
}

.opr-title-editor > input {width: 400px;}

.event-url-editor > input {width: 400px;}

a.rondo.edit-customer, a.rondo.edit-model {background-color: rgb(26, 111, 148);}

#dialog-manage-line .delete-line-block {
	margin-top: 12px;
	border-top: 1px solid rgb(23, 27, 35);
}

#shell-panel {
	font-size: 15px;
	height: 99%;
    overflow-y: scroll;
	background-color: rgb(38, 40, 53);
	padding: 0px;
	padding-left: 4px;
}

#dialog-ws-interrupted p {color: orange;}
body.ws-interrupted #header {background-color: rgb(155, 42, 48);}

select.form-in-disabled {color: rgb(220, 217, 203);}

.error {
	background-color: rgb(194, 0, 0) !important;
	cursor: not-allowed;
}

.no-drop {
	cursor: no-drop!important;
}

.grabbing{
	cursor: grabbing;
}

.drop-allowed{
	cursor: grab;
}

a.highlighted-anchor {background-color: green;}

#header-info .header-link {
	max-width: 220px;
	white-space: nowrap;
	overflow-x: hidden;
	text-overflow: ellipsis;
	display: inline-block;
	line-height: 50px;
	vertical-align: middle;
}

#header-info #create-new-line.rondo.o-plus {
	margin-right: -2px;
}

.rondo.edit-kernel,
.rondo.edit-place
{
	background-color: rgb(120, 69, 120);
}

.rondo.icon-btn{
	display: inline-flex;
    justify-content: center;
    align-items: center;
}

.rondo.icon-btn img{
	height: 70%;
	width: 70%;
	filter: invert(100%) sepia(0%) saturate(7492%) hue-rotate(183deg) brightness(96%) contrast(104%);
}

.csv-file-input form {
	display: inline-block;
}

.csv-file-input form > * {
	margin-right: 6px;
}

.csv-file-input label {
	font-size: 15px;
	padding: 5px;
    padding-left: 12px;
    padding-right: 12px;
    cursor: pointer;
}

.csv-file-input label:hover {color:blue;}

#dialog-task-list > table {
	border-collapse: collapse;
	border: dashed 0px;
	border-color: black;
	width: 100%;
	margin-top: 0px;
}

#dialog-task-list > table > thead th {
	padding: 2px;
	padding-top: 6px;
	padding-bottom: 6px;
	font-size: 15px;
	font-weight: normal;
	border-bottom: 1px solid rgb(23, 27, 35);
}

#dialog-task-list > table > tbody > tr {
	border-bottom: 1px solid rgb(23, 27, 35);
	background-color: rgba(45, 48, 65, 0.6);
}

#dialog-task-list > table > tbody > tr > td {
	padding: 2px;
	padding-left: 12px;
	padding-right: 12px;
    border-left: dashed rgb(31, 31, 40) 1px;
    overflow-x: hidden;
    text-overflow: ellipsis;
    width: 33%;
    vertical-align: top;
}

#dialog-task-list .task-item {
	min-height: 26px;
	max-width: 640px;

	font-size: 15px;
	background-color: var(--secondary-color);
    margin: 4px;
    text-align: left;
    color: black;
    padding: 8px;
    padding-left: 12px;
    cursor: move;

	background-image: url("../images/stin.png");
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    box-shadow: rgba(29, 32, 36, 0.9) 1px 8px 8px;
    -webkit-box-shadow: rgba(29, 32, 36, 0.9) 1px 8px 8px;
    -moz-box-shadow: rgba(29, 32, 36, 0.9) 1px 8px 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    border: 1px solid #000000;
}

#dialog-task-list a.link {
	float: left;
	background-color: rgb(128, 118, 119);
	margin-right: 12px;
}

#dialog-task-list .task-item.dropped {
	border-color: rgb(255, 154, 5);
}

#dialog-place .place-index {margin-top: 8px;}

#dialog-place .place-index .place {
	margin-bottom: 2px;
	padding-bottom: 2px;
	border-bottom: 1px dashed rgb(45, 49, 113);
}

#dialog-run-diff label {
	display: inline-block;
	margin-right: 6px;
}

.table-editor-container .table-container .header .manage-col.custom-filtered {
	background-color: rgb(111, 70, 159);
}

.detail-container .detail-body {
	text-align: left;
	padding-top: 6px;
}

#tab-id-trolleys-content .detail-container label {
	margin-bottom: 2px;
	margin-top: 8px;
	margin-right: 12px;
	font-size: 14px;
	display: block;
}

#trolley-color-picker {
	margin-top: 6px;
	margin-left: 78px;
}

#tab-id-trolleys-content .detail-container button,
#tab-id-trolleys-content .detail-container select,
#tab-id-trolleys-content .detail-container input {
	box-sizing: border-box;
	width: 340px;
	margin-top: 2px;
	margin-right: 4px;
}

#tab-id-trolleys-content .detail-container .color > * {
	border: 1px solid var(--tertiary-font-color);
    vertical-align: top;
    text-align: center;
    margin-bottom: 3px;
}

.pp.loading,
.detail-container .loading {
	cursor: wait;
}

#tab-id-trolleys-content .colors-enum {
	display: flex;
	flex-wrap: wrap;
	align-content: stretch;
}

#tab-id-trolleys-content .colors-enum .color {
	padding: 6px;
    padding-left: 8px;
    padding-right: 8px;
    display: inline-block;
    flex-grow: 1;
}

#tab-id-trolleys-content .colors-enum .color:hover {
	text-decoration: line-through;
}

#tab-id-trolleys-content .add-color {
	background-color: rgb(2, 111, 64);
	margin-top: 4px;
	margin-bottom: 4px;
}

#tab-id-trolleys-content .detail-container .color .selected:not(.unset):after {
	content: "✓";
	font-size: 12px;
    font-weight: bold;
}

#tab-id-trolleys-content .detail-container button {
	margin-top: 24px;
	margin-bottom: 24px;
}

#concurrent-user {
	white-space: nowrap;
	font-size: 15px;
	cursor: default;
	position: absolute;
	top: 0;
	left: 200px;
	z-index: 999;
    padding: 4px;
    padding-left: 12px;
    padding-right: 12px;
    background-color: rgb(76, 105, 57);
    color: rgb(192, 255, 173);

	-webkit-box-shadow: rgb(22, 24, 27) 0px 1px 3px;
	-moz-box-shadow: rgb(22, 24, 27) 0px 1px 3px;
	box-shadow: rgb(22, 24, 27) 0px 1px 3px;

	border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
}

#concurrent-user .name {
	margin-left: 8px;
    margin-right: 8px;
}

#dialog-column-setup .find .enumerated {
	margin-bottom: 35px; /* extra space for control buttons (play/reset/resetAll) */
}

/****************** $.fn.createOmsRefs() *******************/

.oms-refs {
	margin-top: 12px;
	margin-bottom: 12px;
}

.ref-items {
	display: inline;
	margin-left: 22px;
}

.ref-items .item {
	padding: 6px;
	background-color: rgb(56, 91, 98);
	margin-right: 2px;
	display: inline-block;
}

.ref-items .item.blind {
	background-color: rgb(162, 105, 0);
}

.ref-items .item:hover {
	text-decoration: line-through;
	background-color: rgb(190, 38, 84);
}

/******************* next-publishing-validity ****************/

.next-publishing-validity {
    border: 1px solid #ffffff4a;
    padding: .5rem .8rem;
    position: relative;
	border-radius: .8rem;
	margin: 1.3rem 0;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: .5rem;
	min-width: fit-content;
}

.next-publishing-validity.warning{ border-color:rgb(255 117 5); }
.next-publishing-validity.warning label.title{ color: rgb(255 117 5); }

.next-publishing-validity .sub-warning {
    position: absolute;
    bottom: -1.4rem;
}

.next-publishing-validity label.title {
    position: absolute;
    top: -.5rem;
    left: .5rem;
	padding: 0 .3rem;
	margin: 0;
    background: #465079;
    font-weight: lighter;
    font-size: .7rem;
    color: #ffffff8c;
	border-radius: .3rem;
}

.next-publishing-validity label {
	white-space: nowrap;
	text-align: right;
}

.next-publishing-validity input {
    min-width: 7.3rem;
}

.header-inputs2 .next-publishing-validity input {
    width: 8rem;
}

.apply-variant{
	padding: .4em 1em;
	display: block;
	line-height: normal;
	width: 100%
}

/******************* MEDIA ****************/

@media all and (max-width: 1500px) {
	.footer-tab .tab-link,
    .footer-tab .sub-tab,
    .footer-tab .menu-tab-ico:before {
    	font-size: 14px;
    }
}

@media print {
	#footer, #module-variant-bar {
		display: none;
	}
}
