:root {
	--menu-width: 300px;
	--menu-compact-width: 54px;
	--color-info: #50a6ee;
	--color-error: #f44566;
	--color-warn: #ff7511;
	--color-module: #c220fd;
	--color-view: #50a6ee;
	--color-registry: #05d06a;
}

html {
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	height: 100%;
}

body { 
	margin: 0;
	font-family: 'Lato', sans-serif;
	background-color: #ffffff;
	height: 100%;
}

form { overflow: hidden; height: 100%; display: block; }

/* common */

.nav-tabs li a { outline: none; }

.zoomIn, .fadeInUp, .fadeInDown, .slideOutLeft, .slideInRight, .slideOutRight {
	-webkit-animation-duration: 150ms;
	animation-duration: 150ms;
	-webkit-animation-delay: 0;
	animation-delay: 0;
}
.zoomOut {
	-webkit-animation-duration: 300ms;
	animation-duration: 300ms;
	-webkit-animation-delay: 0;
	animation-delay: 0;
}
.slideInDown {
	-webkit-animation-duration: 100ms;
	animation-duration: 100ms;
	-webkit-animation-delay: 0;
	animation-delay: 0;
}
.fadeInRight, .fadeOutRight {
	-webkit-animation-duration: 200ms;
	animation-duration: 200ms;
	-webkit-animation-delay: 0;
	animation-delay: 0;
}

.form-group { margin-bottom: 25px; }
input[type=text], textarea { outline: none; }
input[type=text].form-control, input[type=password].form-control, .pq-grid input[type="text"] {
	border: 1px solid #b9bcc0;
	height: 42px;
	padding: 5px 15px 5px 15px;
	background-color: #ffffff;
	border-radius: 3px;
	box-shadow: none;
}
.pq-grid input[type="text"] { height: auto; }
.textbox {
	padding: 5px 10px 5px 10px;
	border: 1px solid #e3e3e3; 
	color: #3c4450; 
	border-radius: 3px;	
	background-color: #ffffff;
	box-shadow: none;
	outline: none;
}
.textbox:focus { border-color: #66afe9; box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6); }
span.select2-selection.select2-selection--single { border-radius: 3px; border-color: #b9bcc0; }

label {
	font-family: 'Lato', sans-serif;
	color: #3c4450;
	text-transform: uppercase;
	font-weight: normal;
}
.checkbox-label { text-transform: none; }
.checkbox-custom::before { border-radius: 0 !important; width: 16px !important; height: 16px !important; top: 1px !important; padding: 2px 0 0 2px !important; }
.has-error label { color: #3c4450 !important; }
.has-error .form-control, .has-error .form-control:focus, 
.app-inp-error, .app-inp-error:focus, .app-inp-error .btn,
.ui-state-error .btn { border-color: #ff0000 !important; }
.ui-state-error { background: none !important; }
.app-lbl-error { color: #ff0000 !important; }
.select2-dropdown { z-index: 40000; }

h2 {
	font-size: 33px;
	font-weight: 300;
	color: #3c4450;
	margin: 0;
}

.popover { background-color: #49505b; border-color: #49505b; box-shadow: none; border-radius: 5px; }
.popover-content { font-family: 'Lato', sans-serif; background-color: #49505b; padding: 10px; color: #ffffff; border-color: #49505b; }
.popover.bottom > .arrow::after  { border-bottom-color: #49505b; }
.popover.left > .arrow::after  { border-left-color: #49505b; }
.popover.right > .arrow::after  { border-right-color: #49505b; }

.context-menu-list { z-index: 11 !important; }

/* spinner */

#refreshModuleWait_ctl { display: none; }
#spinner, #refreshModuleWait {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 99999;
	cursor: progress;
}
.spinner-wrp {
	width: 100%;
	height: 3px;
	background: linear-gradient(to right,#42a5f5,#42a5f5);
	background-color: #f8f7f7;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	border-radius: 4px;
	background-size: 20%;
	background-repeat: repeat-y;
	background-position: -25% 0;
	animation: spinnerScroll 1.2s ease-in-out infinite;
}
@keyframes spinnerScroll{
	50% { background-size: 80% }
	100% { background-position: 125% 0; }
}
@-webkit-keyframes spinnerScroll{
	50% { background-size: 80% }
	100% { background-position: 125% 0; }
}
  
.spinner {
	width: 40px;
	text-align: center;
}
.spinner > div {
	width: 10px;
	height: 10px;
	background-color: #b2b8bf;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
	0%, 80%, 100% { -webkit-transform: scale(0) }
	40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
	0%, 80%, 100% { 
		-webkit-transform: scale(0);
		transform: scale(0);
	} 40% { 
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
}

#app-wait-l1_ctl, #app-wait-l2_ctl { display: none; }
.app-wait-l1 {
	height: 100vh;
	width: 100vw;
	font-family: Helvetica;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	cursor: progress;
}
.loader-l1 {
	height: 20px;
	width: 250px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.loader-l1-dot {
	animation-name: loader-l1;
	animation-timing-function: ease-in-out;
  	animation-duration: 3s;
	animation-iteration-count: infinite;
	height: 20px;
	width: 20px;
	border-radius: 100%;
	background-color: black;
	position: absolute;
	border: 2px solid white;
}
.loader-l1-dot:first-of-type {
	background-color: #8cc759;
	animation-delay: 0.5s;
}
.loader-l1-dot:nth-of-type(2) {
	background-color: #8c6daf;
	animation-delay: 0.4s;
}
.loader-l1-dot:nth-of-type(3) {
	background-color: #ef5d74;
	animation-delay: 0.3s;
}
.loader-l1-dot:nth-of-type(4) {
	background-color: #f9a74b;
	animation-delay: 0.2s;
}
.loader-l1-dot:nth-of-type(5) {
	background-color: #60beeb;
	animation-delay: 0.1s;
}
.loader-l1-dot:nth-of-type(6) {
	background-color: #fbef5a;
	animation-delay: 0s;
}
.loader-l1-text {
	position: absolute;
	top: 200%;
	left: 0;
	right: 0;
	width: 4rem;
	margin: auto;
}
.loader-l1-text:after {
	font-weight: bold;
	animation-name: loading-l1-text;
	animation-duration: 3s;
	animation-iteration-count: infinite;
}
@keyframes loader-l1 {
	15% { transform: translateX(0); }
	45% { transform: translateX(230px); }
	65% { transform: translateX(230px); }
	95% { transform: translateX(0); }
}
.app-wait-l2-img { position: fixed; bottom: 60px; left: calc(50% - 67px); }

/* save state loader */

.app-save-state-ctl { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.app-spinner-dot {
	width: 10px;
	height: 10px;
	border: 2px solid grey;
	border-radius: 50%;
	float: left;
	margin: 0 5px;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-animation: fx 1000ms ease infinite 0ms;
	animation: fx 1000ms ease infinite 0ms;
}
.app-spinner-dot:nth-child(2) {
	-webkit-animation: fx 1000ms ease infinite 300ms;
	animation: fx 1000ms ease infinite 300ms;
}
.app-spinner-dot:nth-child(3) {
	-webkit-animation: fx 1000ms ease infinite 600ms;
	animation: fx 1000ms ease infinite 600ms;
}
@-webkit-keyframes fx {
	50% { -webkit-transform: scale(1); transform: scale(1); opacity: 1;}
	100% { opacity: 0; }
}
@keyframes fx {
	50% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; }
	100% { opacity: 0; }
}

/* layout */

.app-intro { position: absolute; top: 0; right: 0; bottom: 20%; left: 0; display: flex; justify-content: center; align-items: flex-end; }
.app-intro img { width: 168px; height: auto; }

.app-page { display: flex; align-items: stretch; height: 100vh; min-height: 100vh; max-height: 100vh; }
.app-menu { width: var(--menu-width); min-width: var(--menu-width); max-width: var(--menu-width); display: flex; flex-direction: column; background-color: #f8f8f8; border-right: 1px solid #dddddd; position: relative; overflow: hidden; z-index: 102; }
.app-content { flex: 1; }
.app-menu-foot { display: flex; align-items: center; margin: auto 12px 0 11px; height: 65px; padding: 0 10px 0 10px; border-top: 1px solid #dddddd; }
.app-menu-foot-logo img { width: 87px; height: auto; }
.app-menu-foot-icons { margin-left: auto; display: flex; align-items: center; }
.app-menu-foot-icons i.dropdown-toggle { font-size: 20px; color: #727a86; }
.app-menu-foot-icons > i.fa-thumbtack { cursor: pointer; font-size: 20px; color: #727a86; margin-left: 20px; }
.app-menu-foot-icons > i.fal { display: none; }

.app-tabs { height: calc(100vh - 160px); }
.app-module-menu { height: calc(100vh - 141px); } /* więcej o margin-bottom .app-module-menu-toggle > div */
.app-tabs { position: relative; overflow: hidden; z-index: 10; margin-top: 10px; }
.app-tab { display: flex; align-items: center; margin: 0; border: 1px solid #f8f8f8; border-right-width: 4px; height: 34px; padding: 0 10px 0 15px; cursor: pointer; }
.app-tab-dot { width: 13px; height: 13px; border-radius: 5px; margin: 0 9px 0 15px; cursor: move; }
.app-tab-type-registry-layout .app-tab-dot { display: none; }
.app-tab-type-registry-layout .app-tab-label { font-weight: normal; }
.app-tab-has-children .app-tab-dot { margin-left: 0; }
.app-tab-has-children .app-tab { padding-left: 5px; }
.app-tab-has-children .app-nested-tabs .app-tab { padding-left: 30px; }
.app-tab-type-module .app-tab-dot { background-color: var(--color-module); }
.app-tab-type-view .app-tab-dot { background-color: var(--color-view); }
.app-tab-type-registry .app-tab-dot { background-color: var(--color-registry); }
.app-tab-drop-over-down { border-bottom: 2px dashed #4c4c4c; }
.app-tab-drop-over-up { border-top: 2px dashed #4c4c4c; }
.app-nested-tabs { display: none; }
.app-tab-expand { cursor: pointer; min-width: 20px; width: 20px; max-width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; margin-right: 5px; }
.app-tab-expand i { font-size: 16px; color: #818893; }
i.app-tab-ico-expanded, i.app-tab-ico-collapsed { display: none; }
.app-tab-expanded i.app-tab-ico-expanded { display: inline-block; } 
.app-tab-expanded i.app-tab-ico-collapsed { display: none; }
.app-tab:hover i.app-tab-ico-collapsed { display: inline-block; }
.app-tab-expanded .app-tab:hover i.app-tab-ico-collapsed { display: none; }
.app-tab-expanded .app-nested-tabs { display: block; }
.app-tab-label { font-size: 14px; font-weight: bold; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; flex: 1; line-height: 34px; }
.app-tab-actions { margin-left: auto; display: flex; align-items: center; }
i.app-tab-close { font-size: 16px; color: #727a86; cursor: pointer; display: none; margin-left: 14px; }
.app-tab:hover i.app-tab-close { color: #000000; }
.app-tab.active { border-top: 1px solid #dddddd; border-bottom: 1px solid #dddddd; background-color: #ffffff; }
.app-tab-type-module .app-tab.active { border-right: 4px solid var(--color-module); }
.app-tab-type-view .app-tab.active { border-right: 4px solid var(--color-view); }
.app-tab-type-registry .app-tab.active { border-right: 4px solid var(--color-registry); }
.app-tab-expanded > .app-tab.active { border-color: #f8f8f8; background-color: inherit; }

i.app-tab-default-ico { font-size: 14px; color: #727a86; display: none; }
.app-tab-default i.app-tab-default-ico { display: inline-block; }
.app-tab:hover i.app-tab-default-ico { display: none; }

i.app-tab-unhide, i.app-tab-hide { display: none; font-size: 15px; color: #727a86; cursor: pointer; }
i.app-tab-unhide:hover, i.app-tab-hide:hover { color: #000000; }
.app-tab:hover i.app-tab-hide { display: inline-block; }
.app-tab-hidden { display: none; }
.app-tab-show-all .app-tab-hidden { display: block; }
.app-tab-hidden .app-tab:hover i.app-tab-hide { display: none; }
.app-tab-hidden i.app-tab-unhide { display: inline-block; }
.app-tab:hover { background-color: #e9ebec; }
.app-tab:hover .app-tab-close.fal { display: inline-block; }

i.app-tab-hide-hidden, i.app-tab-show-hidden { display: none; font-size: 15px; color: #727a86; cursor: pointer; }
i.app-tab-hide-hidden:hover, i.app-tab-show-hidden:hover { color: #000000; }
.app-tab:hover i.app-tab-show-hidden { display: inline-block; }
.app-tab-show-all i.app-tab-show-hidden, .app-tab-show-all .app-tab:hover i.app-tab-show-hidden { display: none; }
.app-tab-show-all .app-tab:hover i.app-tab-hide-hidden { display: inline-block; }

.app-tab-layout-actions { margin-right: 14px; display: none; }
.app-tab-layout-actions > i { font-size: 20px; color: #727a86; cursor: pointer; }
.app-tab-layout-actions > i:hover { color: #000000; }
.app-tab:hover .app-tab-layout-actions { display: block; }
.app-tab-layout-action-delete a { color: #ff0000 !important; }

.app-module-menu-toggle { background-color: #f8f8f8; position: relative; z-index: 101; }
.app-module-menu-toggle > div { border-bottom: 1px solid #dddddd; margin: 0 16px 19px 12px; padding: 0; display: flex; align-items: center; height: 65px; }
.app-module-menu-nav-left { display: flex; align-items: center; }
.app-module-menu-nav-left > i { font-size: 19px; color: #727a86; cursor: pointer; }
.app-module-menu-nav-left > i:hover { color: #000000; }
.app-module-menu-nav-right { margin: 0 0 0 auto; display: flex; align-items: center; cursor: pointer; }
.app-module-menu-nav-right > i { font-size: 24px; color: #727a86; margin-left: 23px; }
.app-module-menu-nav-right > i:hover { color: #000000; }
.app-module-menu-nav-right > i.app-tab-nav-back { color: #d7d9dc; cursor: auto; font-size: 25px; }
.app-module-menu-nav-right > i.app-tab-nav-back:hover { color: #d7d9dc; }
.app-module-menu-nav-right > i.app-tab-nav-back.app-tab-nav-active { color: #727a86; cursor: pointer; }
.app-module-menu-nav-right > i.app-tab-nav-back.app-tab-nav-active:hover { color: #000000; }
i.app-tab-close-ico-off { margin: 0 23px 0 0; }
i.app-tab-close-ico-off, .app-tab-close-lbl { display: none; }
.app-module-menu-toggle-on .app-tab-add-ico, .app-module-menu-toggle-on .app-folder-add-ico, .app-module-menu-toggle-on .app-dashboard-ico, .app-module-menu-toggle-on .app-tab-nav-back { display: none; }
.app-module-menu-toggle-on i.app-tab-close-ico-off { display: inline-block; }  
.app-module-menu-toggle-on .app-tab-close-lbl { display: inline; }
.app-module-menu { position: absolute; top: -100vh; width: var(--menu-width); max-width: var(--menu-width); background-color: #f8f8f8; border-right: 1px solid #dddddd; z-index: 100; transition: top 80ms ease; }
.app-module-menu-on { top: 74px; }
.app-module-menu-item, .app-module-menu-group-item { display: flex; align-items: center; height: 29px; padding: 0 15px 0 15px; }
.app-module-menu-item:hover, .app-module-menu-group-item:hover { background-color: #e9ebec; cursor: pointer; }
.app-module-menu-section-name { font-weight: bold; text-transform: uppercase; padding: 10px 0 10px 15px; }
.app-module-menu-group { padding-left: 4px; }
.app-module-menu-group-items { display: none; }
.app-module-menu-group-toggle { width: 17px; }
.app-module-menu-group-toggle .fa-caret-down { display: none; }
.app-module-menu-group-toggle .fa-caret-right { display: inline-block; }
.app-module-menu-group.expanded { padding-left: 0; }
.app-module-menu-group.expanded .fa-caret-down { display: inline-block; }
.app-module-menu-group.expanded .fa-caret-right { display: none; }
.app-module-menu-group.expanded .app-module-menu-group-items { display: block; }
.app-module-menu-item-name { white-space: nowrap; text-overflow: ellipsis; overflow: hidden; flex: 1; line-height: 29px; }
.app-module-menu-group-items .app-module-menu-item-name { padding-left: 17px; }
.app-module-menu-show-bottom { margin: 10px 18px 0 30px; cursor: pointer; display: flex; align-items: center; }
.app-module-menu-show-bottom i { font-size: 18px; color: #818893; margin-right: 7px; }
.app-module-menu-show-bottom span { font-size: 14px; color: #3c4450; }
.app-module-menu-show-bottom:hover * { color: #000000; }
.app-tab-draggable { display: block; }

/* d&d */

.ui-draggable-dragging { border-radius: 4px; box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.16); border: solid 1px #ddd; background-color: #f8f8f8; }

/* folders */

.app-folder { display: flex; align-items: center; margin: 5px 12px 5px 11px; height: 39px; }
i.app-folder-ico-expanded { display: none; }
.app-folder-expanded i.app-folder-ico-expanded { display: inline-block; }
.app-folder-expanded i.app-folder-ico-collapsed { display: none; }
/* d&d folderów - wymuszenie zamknięcia */
.app-folder-draggable-dragging i.app-folder-ico-expanded { display: none; }
.app-folder-draggable-dragging i.app-folder-ico-collapsed { display: inline-block; }
.app-folder-ico { width: 19px; }
.app-folder-type-R .app-folder-ico i { font-size: 13px; color: #818893; }
.app-folder-type-U .app-folder-ico i { font-size: 10px; color: #818893; }
.app-folder-data { flex: 1; }
.app-folder-input { display: none; }
.app-folder-input .textbox { padding: 9px 10px 9px 4px; border-radius: 5px; border: solid 1px #ddd; background-color: #fff; height: 39px; width: 100%; font-size: 17px; font-weight: bold; color: #7d8590; box-shadow: none; }
.app-folder-data label { font-size: 17px; font-weight: bold; color: #3c4450; margin: 0; text-transform: none; }
.app-folder-type-E .app-folder-ico { width: 14px; } 
.app-folder-type-E .app-folder-input { display: block; }
.app-folder-type-E .app-folder-data label { display: none; }
.app-folder-type-E .app-folder-actions, .app-folder-type-U .app-folder-actions, .app-folder-type-E .app-folder-ico i { display: none; }
.app-folder-type-R .app-folder-ico i { cursor: pointer; }
.app-folder-type-R .app-folder-ico i.app-folder-ico-unassigned { display: none; }
.app-folder-type-U .app-folder-ico i.app-folder-ico-collapsed, .app-folder-type-U .app-folder-ico i.app-folder-ico-expanded { display: none; }
.app-folder-type-U .app-folder-ico i.app-folder-ico-unassigned { display: inline-block; } 
.app-folder-adding .app-folder-ico i { display: none; }
.app-folder-actions { width: 20px; height: 20px; display: none; align-items: center; justify-content: center; }
.app-folder-actions > i.app-folder-close { font-size: 18px; cursor: pointer; color: #727a86; }
.app-folder-action-menu > i { font-size: 24px; cursor: pointer; color: #727a86; }
.app-folder-type-U:hover .app-folder-actions, .app-folder-type-R:hover .app-folder-actions { display: flex; }
.app-folder-type-U:hover i.app-folder-close { color: #000000; }
.app-folders-regular .app-folder label.ui-draggable-handle { cursor: move; }
.app-folder-group .app-folder-tabs { display: none; }
.app-folder-group .app-folder-tabs > span { display: block; }
.app-folder-expanded.app-folder-group .app-folder-tabs { display: block; }
.app-folder-draggable-dragging.app-folder-expanded.app-folder-group .app-folder-tabs { display: none; }
.app-folder-tab-hover.app-folder-group { border-bottom: solid 1px #989ca1; }
.app-folder-group .app-tab-drop-up, .app-folder-group.app-folder-drop-up, .app-all-tabs .app-tab-drop-up, .app-folders-unassigned .app-tab-drop-up { border-top: solid 1px #989ca1; }
.app-folder-group .app-tab-drop-down, .app-folder-group.app-folder-drop-down, .app-all-tabs .app-tab-drop-down, .app-folders-unassigned .app-tab-drop-down { border-bottom: solid 1px #989ca1; }

/* head */

.app-head { height: 71px; border-bottom: 1px solid #dddddd; background-color: #e8eaec; position: relative; }
.app-menu-compact .app-head { margin-left: 305px; }

/* head registry */

.app-head-reg-actions { display: table; margin: 0 auto 0 auto; }
.app-head-reg-dropdown { display: inline-block; margin: 0 2px 0 2px; }
.app-head-reg-dropdown > a.dropdown-toggle { width: 36px; height: 36px; background: url(/images/img02.png) 0 2px no-repeat; display: block; }
.app-head-reg-dropdown > a.dropdown-toggle:hover { background-position: 0 -36px; }
.app-head-reg-dropdown > .dropdown-menu { margin-top: 6px; }
.app-head-reg-dropdown > .dropdown-menu li.app-menu-section { padding: 4px 20px 4px 30px; font-weight: bold; color: #3c4450; white-space: nowrap; }
.app-head-reg-dropdown > .dropdown-menu li a { padding-top: 4px; padding-bottom: 4px; padding-left: 30px; }
.app-head-reg-c1, .app-head-reg-ins, .app-head-reg-save { width: 36px; height: 36px; background-repeat: no-repeat; background-position: 0 2px; display: inline-block; margin: 0 2px 0 2px; } 
.app-head-reg-ins { background-image: url(/images/img03.png); } 
.app-head-reg-c1 { background-image: url(/images/img04.png); } 
.app-head-reg-save { background-image: url(/images/img05.png); } 
.app-head-reg-ins:hover, .app-head-reg-c1:hover, .app-head-reg-save:hover, .app-head-reg-c1-sel { background-position: 0 -36px; cursor: pointer; }
.app-head-reg-actions li a .fa { margin-left: -20px; margin-right: 6px; }

/* menu */

.app-msg-box-layout .app-msg-box-content { padding: 40px 30px 30px 30px !important; }
.app-msg-box-layout input.textbox {
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	margin: 17px 0 25px 0;
}
.app-msg-box-layout-1 { display: table-cell; vertical-align: top; }
.app-msg-box-layout-1a { white-space: nowrap; padding-right: 10px; padding-top: 9px; }
.app-msg-box-layout-1b > span:last-of-type { display: block; }
.app-msg-box-layout-1b .textbox { width: 100%; }
.app-msg-box-layout span.ui-state-error {
	display: block;
	margin-top: 5px;
	font-size: 14px;
	color: #fe0000;
}
.app-msg-box-layout-2 span.ui-state-error { margin: -20px 0 25px 0; }
.app-msg-box-layout span.ui-state-error .fa { color: #fe0000; font-size: 15px; margin-right: 5px; }
.app-msg-box-layout .app-msg-box-header { position: relative; } 
.app-msg-box-layout .app-msg-box-header p { font-size: 22px; font-family: 'Lato', sans-serif; font-weight: bold; padding-left: 30px; }
.app-msg-box-layout-close {
	position: absolute;
	top: 5px;
	right: 15px;
	cursor: pointer;
	color: #cacaca;
	font-size: 24px;
	font-weight: bold;
}
.app-msg-box-content-fav-add .ui-state-error { border: none; background: none; }

/* growl */

.app-notify-container { position: fixed; bottom: 100px; right: 90px; }
.app-notify-msg { width: 371px; min-height: 75px; padding: 0 38px 0 0; border-radius: 4px; border: solid 1px #ddd; background-color: #ffffff; box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.16); display: none; align-items: flex-start; margin-top: 15px; position: relative; }
.app-notify-ico { width: 57px; align-self: stretch; text-align: center; padding-top: 19px; }
.app-notify-ico i { font-size: 24px; display: none; color: #ffffff; }
.app-notify-text { -webkit-line-clamp: 7; color: #3c4450; font-size: 14px; line-height: 22px; cursor: pointer; flex: 1; overflow: hidden; text-overflow: ellipsis; display: -webkit-box !important; -webkit-box-orient: vertical; align-self: center; margin-top: 22px; margin-bottom: 22px; padding-left: 18px; }
.app-notify-close { position: absolute; top: 6px; right: 6px; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.app-notify-close i { font-size: 18px; color: #727a86; }
.app-notify-close:hover i { color: #000000; }

.app-notify-info, .app-notify-warn, .app-notify-error { display: flex; }

.app-notify-info .app-notify-ico { background-color: var(--color-info); }
.app-notify-info .app-notify-ico-info { display: block; }
.app-notify-warn .app-notify-ico { background-color: var(--color-warn); }
.app-notify-warn .app-notify-ico-warn { display: block; }
.app-notify-error .app-notify-ico { background-color: var(--color-error); }
.app-notify-error .app-notify-ico-error { display: block; }

/* msgbox */

.app-msg-box { 
	box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.1);
	width: 515px;
	border: 1px solid #e1dfda;
	background-color: #ffffff;
	border-radius: 4px;
}
.app-msg-box-header { display: table; width: 100%; border-bottom: 1px solid #e1dfda; }
.app-msg-box-header > div { display: none; vertical-align: middle; text-align: center; width: 48px; height: 68px; }
.app-msg-box-header > div .fa { font-size: 19px; color: #ffffff; }
.app-msg-box-header > p { display: table-cell; vertical-align: middle; height: 68px; font-weight: 500; font-size: 22px; font-family: 'Lato', sans-serif; font-weight: bold; color: #3c4450; padding-left: 22px; line-height: 25px; }
.app-msg-box-content { color: #3c4450; font-size: 14px; padding: 30px 22px 40px 22px; overflow-y: auto; overflow-x: hidden; max-height: 60vh; }
.app-msg-box-content * { color: #3c4450; font-size: 14px; }
.app-msg-box-btn { display: table; margin: 0 25px 25px auto; }
.app-msg-box-btn .btn { margin-left: 11px; }

/* login */

.app-login-body { background-color: #f6f6f6; }
.app-login-logo { width: 154px; margin-bottom: 39px; }
.app-login-panel { background-color: #ffffff; margin: 0 auto 0 auto; box-sizing: border-box; }
.app-login-button { display: table; margin: 40px 0 0 auto; }
.app-login-head {
	padding-bottom: 33px;
	border-bottom: 1px solid #b6b3b3;
	margin-bottom: 40px;
	display: table;
	width: 100%;
}
.app-login-head h2 { display: table-cell; vertical-align: top; }
.app-login-head > div { display: table-cell; text-align: right; vertical-align: bottom; }
.app-login-panel .form-group { margin-bottom: 20px; }
.app-login-mode { font-size: 14px; color: #39d7ff; cursor: pointer; }
.app-login-mode:hover { text-decoration: underline; }

/* dashboard */

.app-dashboard { overflow: hidden; position: relative; }
.app-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; }
.app-grid-item {
	background-color: #ffffff;
	border: 1px solid #dddddd;
	margin: 20px 0 0 20px;
	width: 354px; 
}
.app-grid-item-visible { min-height: 335px; padding-bottom: 70px; position: relative; }
.app-grid-item-empty { height: 335px; display: flex; justify-content: center; align-items: center; }
.app-grid-item-empty .icon { font-size: 133.5px; color: #ebecee; }

/* registry */

.ui-widget { font-family: inherit; }
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: inherit;
	font-size: 1em;
}

.app-reg-grid, .app-pq-grid, .app-reg-grid-sidebar-content { height: calc(100vh - 120px); }
.app-reg-grid-has-date-toolbar, .app-reg-grid-has-date-toolbar .app-pq-grid, .app-reg-grid-has-date-toolbar .app-reg-grid-sidebar-content { height: calc(100vh - 162px); }
.app-reg-grid { overflow: hidden; box-sizing: border-box; }

.app-pq-grid { border-radius: 0 !important; border: none; }
.app-pq-grid .fa { font-family: "Font Awesome 6 Pro" !important; }
.pq-merge-inner .pq-group-icon::before { display: block; margin-top: 3px; margin-left: 3px; }
.pq-grid-number-col { border-top: none !important; }
.pq-grid-header-inner > .table { border-right: none !important; border-left: none !important; }
.pq-grid-bottom  .btn { color: #333333; } 
.pq-grid-cell a { color: #333333; }
.pqg-vert-frozen-line { display: none; }
.pq-grid select { background-color: #ffffff; }
.app-reg-page[data-reg-type="1"] .pq-grid-cell.pq-state-select, .app-reg-page[data-reg-type="1"] .pq-grid-row.pq-state-select { background: #dcf6ce !important; }
.app-pq-grid .pq-grid-cont-outer .pq-grid-row > td { border-bottom-width: 0 !important; padding-bottom: 6px; padding-top: 6px; }
.app-pq-grid .pq-grid-cont-outer .pq-grid-row:last-of-type > td { border-bottom-width: 1px !important; }
.app-pq-grid .pq-header-outer .pq-grid-title-row > th { vertical-align: middle; padding-top: 3px; padding-bottom: 3px; min-height: 23px; }
.app-pq-grid .pq-header-outer .pq-grid-title-row .pq-td-div { display: flex; white-space: normal; overflow: hidden; }
.app-pq-grid .pq-header-outer .pq-grid-title-row .pq-td-div p { text-transform: none; margin: 0; line-height: normal; }
.pq-grid-title-row .pq-td-div:hover { text-decoration: none; }
.pq-grid-title-row .pq-td-div .pq-col-sort-icon:hover { text-decoration: underline; cursor: pointer; }
.app-pq-grid .pq-header-outer .pq-grid-hd-search-field { height: 29px; }

.app-icon-freeze { display: none; min-width: 20px; height: 20px; cursor: pointer; position: absolute; right: 0; top: 0; align-items: center; justify-content: center; border-radius: 23px; }
.pq-grid-title-row th[pq-col-indx='0']:hover .app-icon-freeze,
.pq-grid-title-row th[pq-col-indx='1']:hover .app-icon-freeze,
.pq-grid-title-row th[pq-col-indx='2']:hover .app-icon-freeze,
.pq-grid-title-row th[pq-col-indx='3']:hover .app-icon-freeze,
.pq-grid-title-row th[pq-col-indx='4']:hover .app-icon-freeze,
.pq-grid-title-row th[pq-col-indx='5']:hover .app-icon-freeze,
.pq-grid-title-row th[pq-col-indx='6']:hover .app-icon-freeze,
.pq-grid-title-row th[pq-col-indx='7']:hover .app-icon-freeze { display: flex; }
.app-icon-freeze:hover { border: 1px solid #757575; }
.app-icon-freeze .icon { color: #757575; }
.pq-td-border-right > tbody > tr > .pq-grid-cell.pq-last-frozen-col,
.table-bordered > tbody > tr > th.pq-last-frozen-col { border-right-color: #333333; }
.pq-grid-title-row th.pq-last-frozen-col .app-icon-freeze { display: flex; }

.pq-group-item { display: flex; align-items: center; }
.pq-group-item p { margin: 0; }

.select2-search__field { padding: 1px 4px 1px 4px !important; box-shadow: none !important; }
.select2-selection, .select2-search__field { border-color: #cccccc !important; outline: none; }
.select2-selection__rendered { color: #343434; }
.select2-results__options li { padding-top: 3px; padding-bottom: 3px; }
.select2-results__options li:first-of-type { height: 26px; }

#reg .app-top-header-dropdown { width: 250px; }
.app-reg-grid-font-size { padding: 3px 20px 3px 20px; }
.app-reg-grid-font-size input { width: 30px !important; height: 34px !important; padding-left: 5px !important; padding-right: 5px !important; margin-left: 10px !important; text-align: right; }

.app-pq-clear-grouping { position: absolute; right: 10px; top: calc(50% - 10px); cursor: pointer; }
.app-pq-clear-grouping .icon { font-size: 12px; color: #bfc4cb; }
.app-pq-clear-grouping .icon:hover { color: #3c4450; }

.app-pq-error { padding: 30px; font-family: "Lucida Console", Monaco, monospace; font-size: 14px; color: #ff0000; }

.app-reg-date-filter { float: left; padding: 13px 0 0 15px; }
.app-reg-date-filter > span { display: table-cell; vertical-align: middle; padding-right: 10px; }
.app-reg-date-filter .date input.form-control { height: 28px; width: 85px; border-color: #b9bcc0; border-right-width: 0; padding: 0 0 0 10px; }
.app-reg-date-filter .dropdown-toggle { border-color: #b9bcc0; padding-right: 8px; padding-top: 2px; padding-bottom: 2px; }
.app-reg-date-filter .dropdown-toggle .caret { margin-left: 15px; }
.app-reg-date-filter .dropdown-menu { height: auto; max-height: 80vh; overflow-x: hidden; }
.app-reg-date-filter .date .input-group-addon { background-color: #ffffff; padding: 4px; }
.app-reg-date-filter .date .input-group-addon .fa { color: #3d94d6; }
.app-reg-date-filter-btn { border: 1px solid #3d94d6; background-color: #ffffff; width: 28px; height: 28px; text-align: center; vertical-align: middle; display: table-cell; cursor: pointer; border-radius: 3px; }
.app-reg-date-filter-btn .fa { font-size: 20px; color: #3d94d6; }

.app-toolbar-right .dropdown-toggle { width: 46px; height: 34px; display: block; padding-top: 7px; text-align: center; border: 1px solid #abb1b7; background-color: #ffffff; border-radius: 5px; }
.app-toolbar-right .dropdown-toggle .icon { font-size: 17px; color: #000000; }
.app-toolbar-right .dropdown-toggle:hover { border-color: #42d9ff; border-width: 3px; padding-top: 5px; text-decoration: none; }
.app-toolbar-right .dropdown-toggle:hover .icon { color: #42d9ff; }
.app-toolbar-right .dropdown { display: table-cell; vertical-align: middle; }
.app-toolbar-close { font-size: 24px; color: #989ca1; cursor: pointer; }
.app-toolbar-close:hover { color: #000000; }

.app-reg-ref-1 { display: table-cell; vertical-align: middle; padding-right: 15px; }

.app-toolbar-layouts { height: 36px; border-left: 1px solid #b6b7b8; padding-left: 15px; display: flex; align-items: center; }
.app-toolbar-layouts a { font-size: 14px; color: #3c4450; text-transform: uppercase; }
.app-toolbar-layout-actions { display: flex; align-items: center; border-right: 1px solid #dddddd; padding-right: 15px; margin-right: 5px; min-width: 74px; height: 34px; }
.app-toolbar-layout-actions .app-pq-button-tiny .icon { font-size: 19px; color: #6b6b6b; }
.app-toolbar-layout-menu { margin-left: -2px; }
.app-toolbar-layout-menu li a { padding-left: 10px; display: flex; align-items: center; padding-top: 5px; padding-bottom: 5px; width: 100%; }
.app-toolbar-layout-menu li a span { line-height: 20px; }
.app-toolbar-layout-menu li a .fa { font-size: 11px; }
.app-toolbar-layout-menu li.selected a span { font-weight: bold; }
.app-toolbar-layout-menu .divider { margin: 5px 0 5px 0; }
.app-toolbar-layout-menu .app-dropdown-has-submenu { display: flex; align-items: center; }
.app-toolbar-layout-menu .app-dropdown-submenu { height: 30px; width: 30px; display: flex; align-items: center; top: 0; }

/* grid */

.pq-loading-mask { width: auto !important; background: #d8e8fa !important; border-color: #acc9df; }
.app-reg-page[data-reg-type="1"] .pq-loading-mask { background: #dcf6ce !important; }
.pq-grid-number-cell { background: #f5f4f4 !important; color: #f5f4f4 !important; }

.app-pq-button { display: flex; justify-content: center; align-items: center; height: 34px; width: 56px; border-radius: 40px !important; border: 1px solid #d1d1d1; text-align: center; background-color: #ffffff; cursor: pointer; margin-left: 10px; }
.app-pq-button > .icon { color: #000000; font-size: 16px; }
.app-pq-button:hover { border-width: 3px; }

.app-pq-button-action { width: 55px; border-color: #07e47f; }
.app-pq-button-action .icon { color: #07e47f; }

.app-pq-button-info { width: 55px; border-color: #42a5f5; }
.app-pq-button-info .icon { color: #42a5f5; }

.app-pq-clear-filter { position: absolute; left: calc(50% - 5px); top: calc(50% - 6px); cursor: pointer; }
.app-pq-clear-filter .icon { font-size: 12px; }

.app-pq-button-danger { width: 55px; border-color: #f44587; }
.app-pq-button-danger .icon { color: #f44587; }

.app-pq-button-default { width: 55px; }
.app-pq-button-default .icon { font-size: 18px; }

.app-pq-button-light { width: 57px; background-color: #f7f8f9; }
.app-pq-button-light .icon { font-size: 14px; }
.app-pq-button-light:hover { border-color: #acacac; }

.app-pq-button-nb { border: none; }
.app-pq-button-nb > .dropdown-toggle > .icon { font-size: 20px; }

.app-reg-toolbar-edit { width: 57px; }
.app-reg-toolbar-edit:hover { border-color: #42d9ff; }
.app-reg-toolbar-edit:hover .icon { color: #42d9ff !important; }

.app-reg-toolbar-del-ref { width: 57px; }
.app-reg-toolbar-del-ref:hover { border-color: #42d9ff; }
.app-reg-toolbar-del-ref:hover .icon { color: #42d9ff !important; }

.app-reg-toolbar-editor-add { width: 57px; }
.app-reg-toolbar-editor-add:hover { border-color: #42d9ff; }
.app-reg-toolbar-editor-add:hover .icon { color: #42d9ff !important; }

.app-reg-toolbar-add-ref { width: 57px; }
.app-reg-toolbar-add-ref:hover { border-color: #42d9ff; }
.app-reg-toolbar-add-ref:hover .icon { color: #42d9ff !important; }

.app-reg-toolbar-delete:hover { border-color: #ff0000 !important; }
.app-reg-toolbar-delete:hover .icon { color: #ff0000 !important; }

.app-pq-button-tiny { width: 48px; }
.app-pq-button-tiny .icon { font-size: 14px; }
.app-pq-button-tiny:hover { border-color: #42d9ff; }
.app-pq-button-tiny:hover .icon { color: #42d9ff; }

.app-pq-button-close { 
	background-image: url(/images/x3.png);
	background-repeat: no-repeat;
	background-position: calc(100% - 6px) 6px;
}
.app-pq-button-close:hover { 
	background-image: url(/images/x4.png);
	background-position: calc(100% - 4px) 4px;
}
.app-pq-button-reload .icon { margin-right: 5px; }
.app-pq-button-reload-single { min-width: 97px; white-space: nowrap; vertical-align: middle; display: flex; align-content: center; align-items: center; padding: 0 10px 0 10px; }
.app-pq-button-reload-single:hover { box-shadow: 0 0 0 3px #42d9ff inset; border: none; color: #42d9ff !important; }
.app-pq-button-reload:hover .icon { color: #42d9ff !important; }
.app-pq-reload-period { line-height: 18px; padding-right: 10px; }
.app-pq-reload-period:first-letter { text-transform: uppercase; }
.app-toolbar-reload .app-pq-split-button > .app-pq-button { min-width: 100px; }
.app-toolbar-reload .app-pq-split-button > .app-pq-button .icon { margin-right: 10px; margin-left: 10px; }
.app-toolbar-reload .app-pq-split-button > .app-pq-button:hover { border: 3px solid #42d9ff; }
.app-toolbar-reload .app-pq-split-button > .app-pq-button:hover * { color: #42d9ff; } 

.app-pq-button-plg { width: 45px; white-space: nowrap; }
.app-reg-plg-inline { height: 34px; display: flex; align-items: center; }
.app-pq-button-plg .fa, .app-pq-button-plg-dropdown .dropdown .fa { font-size: 14px; }
.app-pq-button-plg:hover { border-color: #42d9ff; color: #42d9ff !important; }
.app-pq-button-plg:hover .fa { color: #42d9ff !important; }
.app-pq-button-plg-avl { padding-right: 25px; width: 70px; display: table-cell; vertical-align: middle; padding-top: 3px; }
.app-pq-button-plg-avl .fa { margin-top: 0; }
.app-pq-button-plg-ctx { height: 34px; width: 0; display: table-cell; position: relative; }
.app-pq-button-plg-ctx > div { height: 34px; width: 22px; position: absolute; top: 0; left: -28px; text-align: center; cursor: pointer; border-left: 1px solid #eeeff0; padding-top: 6px; }
.app-pq-button-plg-ctx .caret { color: #6b6b6b; }
.app-pq-button-plg-drop li .fa { margin-right: 5px; }
.app-pq-button-plg-div { width: 10px !important; display: table-cell; }
.app-pq-button-plg-div:first-of-type { display: none; }
.app-pq-button-plg-inline { width: 55px; }
.app-pq-button-plg-inline .icon { color: #6b6b6b; }
.app-pq-button-plg-inline:hover .icon { color: #42d9ff; }

.app-pq-button-export { width: 55px; }
.app-pq-button-export .icon { font-size: 17px; color: #000000; }
.app-pq-button-export .dropdown-toggle { display: flex; align-items: center; }
.app-pq-button-export:hover { border-color: #42d9ff; }
.app-pq-button-export:hover .icon { color: #42d9ff !important; }
.app-pq-button-export:hover * { text-decoration: none; }

.pq-grid .select2-selection { height: 22px !important; } 
.pq-grid .select2-selection__rendered { line-height: 20px !important; }
.pq-grid .select2-selection__arrow { height: 20px !important; }
.app-date-editor { width: 100px; }
.pq-grid-footer-info { float: right; margin-top: 4px; }

.app-group-summary { color: #2373b9; }
.app-group-summary-cust { background-color: #d8e8fa !important; }
.ui-state-highlight .app-group-summary { color: #ffffff; }
.ui-state-error { font-family: 'Lato', sans-serif !important; font-size: 14px !important; box-shadow: none !important; }
.ui-state-highlight .pq-group-icon { background-image: url(/images/ui-icons_ffffff_256x240.png) !important; }
.ui-widget-shadow { -webkit-box-shadow: 0px 0px 5px #666666; box-shadow: 0px 0px 5px #666666; }
.ui-tooltip { background-color: #49505b; border: none !important; box-shadow: none; }
.ui-tooltip-content { color: #ffffff; font-family: 'Lato', sans-serif !important; line-height: 1.1em; padding: 10px; }

.app-pq-col-red { color: #ff0000 !important; }
tr.pq-summary-row td.pq-grid-cell * { color: #55b923 !important; }
tr.pq-summary-row .app-group-summary, .table > tbody > tr.pq-summary-row > td.app-pq-col-red { line-height: 40px; }

/* user group */

.app-user-group-editor .checkbox { margin: 0; height: 20px; }
.app-group-reg-name { width: 80%; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
.app-group-views .checkbox, .app-group-registers .checkbox { padding-top: 0; min-height: auto; }
.app-group-views .checkbox label, .app-group-registers .checkbox label { min-height: 14px; }

/* change password */

.app-password-dialog { background-color: #ffffff; }
.app-password-close {
	display: table;
	margin-left: auto;
	margin-top: -10px;
	margin-bottom: 15px;
	cursor: pointer;
}

/* editor */

.app-reg-page { display: table; width: 100%; background-color: #ffffff; }
.app-reg-grid-ctl { display: flex; width: 100%; align-items: stretch; background-color: #e8eaec; }
.app-reg-grid-ctl > span { display: block; width: 100%; }
.app-reg-grid-sidebar-content { display: none; align-items: stretch; position: relative; }
.app-reg-grid-sidebar-content > span { display: flex; width: 100%; align-items: stretch; }
.app-reg-grid-sidebar-actions { width: 45px; background-color: #e8eaec; border-left: 1px solid #dddddd; padding-top: 38px; position: relative; }
.app-reg-grid-sidebar-action { width: 38px; height: 59px; display: flex; align-items: center; justify-content: center; border: 1px solid #d1d1d1; border-top-right-radius: 20px; border-bottom-right-radius: 20px; margin-left: -1px; cursor: pointer; margin-bottom: 6px; background-color: #f4f5f6; }
.app-reg-grid-sidebar-action .icon { font-size: 18px; color: #4c4c4c; }
.app-reg-grid-sidebar-action:hover { background-color: #ffffff; }
.app-reg-grid-sidebar-spinner { display: none; }
.app-reg-grid-sidebar-spinner > div { position: absolute; top: 9px; left: 10px; right: 0; bottom: 9px; background-color: #ffffff; z-index: 9999; }
.app-reg-grid-sidebar-spinner-wrp { display: table; margin: 20px auto 0 auto; }
.app-reg-sidebar-open .app-reg-grid-sidebar-actions { margin-top: 8px; margin-bottom: 8px; padding-top: 30px; } 
.app-reg-editor-open .app-reg-grid-sidebar-action-editor,
.app-reg-files-open .app-reg-grid-sidebar-action-files { background-color: #ffffff; border-left: none; } 
.app-reg-sidebar-open > span { width: calc(100% - 482px); }
.app-reg-sidebar-open > .app-reg-grid-sidebar-content { width: 482px; display: flex; }
.app-reg-files-open > span { width: calc(100% - 482px); }
.app-reg-files-open > .app-reg-grid-sidebar-content { width: 482px; }
.app-reg-sidebar-control { border-left: 1px solid #d0d0d0; background-color: #e8eaec; padding: 8px 0 8px 8px; display: flex; align-items: stretch; width: 100%; }
.app-reg-sidebar-control-wrapper { border-left: 1px solid #d0d0d0; border-bottom: 1px solid #d0d0d0; border-top: 1px solid #d0d0d0; background-color: #ffffff; width: 100%; display: flex; align-items: stretch; flex-direction: column; }
.app-reg-sidebar-control-top { padding: 6px 9px 0 0; text-align: right; position: relative; }
.app-reg-sidebar-control-top .fa { cursor: pointer; color: #bfc4cb; font-size: 18px; }
.app-reg-sidebar-control-top .fa:hover { color: #3c4450; }
.app-reg-editor-wait { position: absolute; top: 10px; left: calc(50% - 10px); }
.app-reg-editor-content { padding: 0 28px 0 28px; position: relative; margin-top: 20px; flex: 1; }
.app-reg-editor-field-label { color: #6e737b; font-size: 14px; padding: 15px 0 5px 0; }
.app-reg-editor-field-1 .textbox { width: 100%; line-height: 26px; }
.app-reg-editor-field-2 .textbox { width: 197px; line-height: 26px; }
.app-reg-editor-field .textbox[readonly] { background-color: #f6f6f6; }
.app-reg-editor-field .select2 { height: 38px; width: 100% !important; max-width: 426px !important; }
.app-reg-editor-field .select2-selection { height: 38px; border-color: #b9bcc0; }
.app-reg-editor-field .select2-selection__arrow { height: 36px !important; }
.app-reg-editor-field .select2-selection__rendered { line-height: 38px !important; }
.app-reg-editor-field .select2-container--default.select2-container--disabled .select2-selection--single { background-color: #f6f6f6; }
.app-reg-editor-field textarea { height: 130px; min-width: 100%; max-width: 100%; width: 100%; margin: 0; }
.app-reg-editor-field-3 input.form-control, .app-reg-editor-field-4 input.form-control { height: 38px; }
.app-reg-editor-field-3 .date[disabled] input, .app-reg-editor-field-4 .date[disabled] input { background-color: #f6f6f6; }
.app-reg-editor-field-3 .input-group-addon, .app-reg-editor-field-4 .input-group-addon { padding-top: 4px; padding-bottom: 4px; }
.app-reg-editor-field-3 .app-reg-editor-field-control, .app-reg-editor-field-4 .app-reg-editor-field-control { width: 197px; }
.app-reg-editor-field-5 .checkbox { margin: 0; }
.app-reg-editor-field-5 .checkbox-label { padding-left: 5px; }
.app-reg-editor-field-5 .app-reg-editor-field-label { display: none; }
.app-reg-editor-field-5 .app-reg-editor-field-control { margin-top: 15px; }
.app-reg-editor-foot { width: calc(100% - 56px); margin: 0 28px 0 27px; display: table; background-color: #ffffff; border-bottom: 1px solid #d0d0d0; }
.app-reg-editor-foot > div { height: 76px; width: 50%; display: table-cell; vertical-align: middle; }
.app-reg-editor-foot-1 { padding-left: 28px; color: #fe0000; }
.app-reg-editor-foot-1 .fa { color: #fe0000; font-size: 15px; margin-right: 7px; }
.app-reg-editor-foot-2 { padding-right: 22px; }
.app-reg-editor-foot-2 .app-btn-split { padding-top: 6px; padding-bottom: 6px; border-right: 2px solid #0ebce8; }
.app-reg-editor-foot-2 .app-btn-split[disabled] { border-right: 1px solid #e1dfdf; }
.app-reg-editor-expand { margin: 6px 0 0 auto; display: table; padding: 0; border: 1px solid #b9bcc0; cursor: pointer; width: 29px; height: 23px; text-align: center; line-height: 23px; }
.app-reg-editor-expand .fa { font-size: 15px; color: #4b5153; }
.app-reg-editor-expanded { position: fixed; width: 100vw; height: 100vh; z-index: 20000; top: 0; left: 0; background-color: #ffffff; padding-left: 5px; padding-right: 5px; }
.app-reg-editor-expanded textarea { height: calc(100vh - 78px); }
.app-reg-editor-expanded .app-reg-editor-expand .fa-expand { display: none; } 
.app-reg-editor-expanded .app-reg-editor-expand .fa-compress { display: inline-block !important; }
.app-reg-editor-field-error { font-size: 14px; color: #fe0000; margin-top: 4px; }
.app-reg-editor-field-error .fa { font-size: 14px; color: #fe0000; margin-right: 5px; }
.app-reg-editor-field-invalid .textbox, .app-reg-editor-field-invalid .select2-selection { border-color: #ff0000; }
.app-reg-editor-field .textbox:focus, .app-reg-editor-field .select2-container--focus .select2-selection,
.app-reg-editor-field-3 input.form-control:focus, .app-reg-editor-field-4 input.form-control:focus { border-color: #66afe9; box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6); }

/* files */

.app-reg-files-content { flex: 1; padding: 0 30px 0 30px; position: relative; }
.app-reg-files-add { cursor: pointer; color: #656464; font-size: 14px; position: relative; }
.app-reg-files-add:hover { color: #333333; }
.app-reg-file-items { border-bottom: 1px solid #cccccc; margin-top: 10px; }
.app-reg-file { display: flex; align-items: center; padding: 5px 8px 5px 20px; border: 1px solid #cccccc; border-radius: 5px; min-height: 62px; margin-bottom: 8px; }
.app-reg-file:last-of-type { margin-bottom: 25px; }
.app-reg-file-ico { width: 22px; height: 28px; min-width: 22px; min-height: 28px; display: flex; align-items: center; justify-content: center; color: #fefefe; font-size: 9px; font-weight: 900; text-transform: uppercase; border-radius: 5px; position: relative; }
.app-reg-file-ico div { position: absolute; top: 0; right: 0; width: 0; height: 0; border-top: 5px solid #ffffff; border-left: 5px solid transparent; }
.app-reg-file-ico:hover, .app-reg-file-ico:focus, .app-reg-file-ico:active, .app-reg-file-ico:visited { color: #fefefe; text-decoration: none; }
.app-reg-file-pnl { margin-left: 14px; }
.app-reg-file-name { font-size: 14px; color: #333333; overflow: hidden; text-overflow: ellipsis; width: 220px; white-space: nowrap; display: block; }
.app-reg-file-name:hover, .app-reg-file-name:focus, .app-reg-file-name:active, .app-reg-file-name:visited { color: #333333; text-decoration: none; }
.app-reg-file-data { display: none; align-items: center; }
.app-reg-file-data * { font-size: 12px; color: #848181; }
.app-reg-file-data-ext { text-transform: uppercase; }
.app-reg-file-data-ext:hover, .app-reg-file-data-ext:focus, .app-reg-file-data-ext:active, .app-reg-file-data-ext:visited,
.app-reg-file-data-date:hover, .app-reg-file-data-date:focus, .app-reg-file-data-date:active, .app-reg-file-data-date:visited { color: #848181; text-decoration: none; }
.app-reg-file-data span { padding-left: 5px; padding-right: 5px; }
.app-reg-file-del { cursor: pointer; color: #bfc4cb; font-size: 13px; align-self: flex-start; margin-left: auto; display: none; }
.app-reg-file-del:hover { color: #3c4450; }
.app-reg-file-progress { display: none; height: 4px; margin-top: 5px; width: 0; }
.app-reg-file-db .app-reg-file-data { display: flex; }
.app-reg-file-upl .app-reg-file-progress { display: block; }
.app-reg-file-upl .app-reg-file-dnl { display: none; }
.app-reg-file-upl .app-reg-file-del { display: none; }
.app-reg-file-db:hover { border-color: #959595; background-color: #f3f4f5; }
.app-reg-file-db:hover .app-reg-file-del { display: block; }
.app-reg-file-db:hover .app-reg-file-dnl { color: #4186e0; } 
.app-reg-file-db:hover .app-reg-file-dnl:hover, .app-reg-file-db:hover .app-reg-file-dnl:focus, .app-reg-file-db:hover .app-reg-file-dnl:visited, .app-reg-file-db:hover .app-reg-file-data:active { color: #4186e0; }

.app-reg-file-type-0 .app-reg-file-ico { background-color: #4c4c4c; }
.app-reg-file-type-0 .app-reg-file-progress { background-color: #4c4c4c; }
.app-reg-file-type-1 .app-reg-file-ico { background-color: #ea4e9d; }
.app-reg-file-type-1 .app-reg-file-progress { background-color: #ea4e9d; }
.app-reg-file-type-2 .app-reg-file-ico { background-color: #42a5f5; }
.app-reg-file-type-2 .app-reg-file-progress { background-color: #42a5f5; }
.app-reg-file-type-3 .app-reg-file-ico { background-color: #56d683; }
.app-reg-file-type-3 .app-reg-file-progress { background-color: #56d683; }
.app-reg-file-type-4 .app-reg-file-ico { background-color: #fd9a00; }
.app-reg-file-type-4 .app-reg-file-progress { background-color: #fd9a00; }
.app-reg-file-type-5 .app-reg-file-ico { background-color: #ce6aeb; }
.app-reg-file-type-5 .app-reg-file-progress { background-color: #ce6aeb; }

/* comments */

.app-reg-comment-add-panel { min-height: 62px; background-color: #f8f7f7; border-top: 1px solid #d0d0d0; display: flex; align-items: flex-start; padding: 13px 30px 13px 25px; }
.app-reg-comment-usr { min-height: 33px; height: 33px; min-width: 33px; width: 33px; display: flex; align-items: center; justify-content: center; margin-right: 12px; font-size: 13px; font-family: 'Roboto', sans-serif; font-weight: bold; color: #ffffff; border-radius: 50%; }
.app-reg-comment-inp { display: block; flex: 1; padding: 6px 10px 3px 10px; border: 1px solid #b9bcc0; background-color: #ffffff; border-radius: 3px; margin: 0; box-shadow: none; min-height: 33px; }
.app-reg-comment-inp .ql-editor { padding: 0; max-height: 20px; min-height: 20px; transition: min-height 200ms ease;}
.app-reg-comment-inp .ql-container.ql-snow { border: none; }
.app-reg-comment-inp .ql-toolbar.ql-snow { border: none; padding: 0; }
.app-reg-comment-actions { display: none; align-items: center; margin-bottom: 5px; margin-top: 20px; }
.app-reg-comment-toolbar { display: flex; align-items: center; }
.app-reg-comment-actions > button { margin-left: auto; padding-top: 7px; padding-bottom: 7px; }
.app-reg-comment-has-focus .app-reg-comment-actions { display: flex; }
.app-reg-comment-has-focus .ql-editor { max-height: 200px; min-height: 80px; }
.ql-snow .ql-stroke { stroke: #656464; } 
.ql-editor.ql-blank::before { left: 0; font-style: normal; }
.ql-snow.ql-toolbar button:hover, .ql-snow .ql-toolbar button:hover, .ql-snow.ql-toolbar button:focus, .ql-snow .ql-toolbar button:focus, .ql-snow.ql-toolbar button.ql-active, .ql-snow .ql-toolbar button.ql-active, .ql-snow.ql-toolbar .ql-picker-label:hover, .ql-snow .ql-toolbar .ql-picker-label:hover, .ql-snow.ql-toolbar .ql-picker-label.ql-active, .ql-snow .ql-toolbar .ql-picker-label.ql-active, .ql-snow.ql-toolbar .ql-picker-item:hover, .ql-snow .ql-toolbar .ql-picker-item:hover, .ql-snow.ql-toolbar .ql-picker-item.ql-selected, .ql-snow .ql-toolbar .ql-picker-item.ql-selected { color: #42a5f5; stroke: #42a5f5; }
.ql-blank p { font-size: 14px; color: #a2a1a1; }
.app-reg-comments-content { margin-bottom: 20px; }
.app-reg-comment-add { cursor: pointer; color: #656464; font-size: 14px; margin-top: 20px; }
.app-reg-comment-add:hover { color: #333333; }
.app-reg-comment { display: flex; align-items: flex-start; margin-top: 20px; }
.app-reg-comment-p1 { flex: 1; }
.app-reg-comment-p2 { display: flex; }
.app-reg-comment-p2 p { margin: 0; font-size: 14px; font-weight: bold; color: #333333; }
.app-reg-comment-p2 span.time { font-size: 12px; color: #949292; padding-left: 15px; }
.app-reg-comment-p2 span.time:first-letter { text-transform: uppercase; }
.app-reg-comment-p2 span.app-reg-comment-del { cursor: pointer; color: #bfc4cb; font-size: 13px; align-self: flex-start; margin-left: auto; display: none; }
.app-reg-comment:hover .app-reg-comment-p2 span.app-reg-comment-del { display: block; } 
.app-reg-comment-p2 span.app-reg-comment-del.app-reg-file-del:hover { color: #3c4450; }

.app-reg-comment-text { font-size: 14px; line-height: 21px; color: #333333; }
.app-reg-comment-text * { color: #333333; font-size: 14px; }
.app-reg-comment-more { font-weight: bold; font-size: 14px; color: #42a5f5; cursor: pointer; margin: 20px 0 0 45px; }
.app-reg-comment-old { display: none; }

/* export */

.app-msg-box-export { width: 610px; }
.app-msg-box-export .app-msg-box-btn { margin: 0 40px 25px 29px; display: block; }
.app-msg-box-export .app-msg-box-content { padding-bottom: 10px; }
.app-reg-exp-all .checkbox-label { font-weight: bold; }
.app-reg-exp > div { overflow: hidden; }
.app-reg-exp-1 { text-align: right; padding: 8px 10px 0 0; color: #6e737b; font-size: 13px; width: 130px; float: left; }
.app-reg-exp-2 { padding-bottom: 15px; width: 200px; float: left; }
.app-reg-exp-2 .textbox { width: 100%; }
.app-reg-exp-2 .checkbox { margin-top: 0; }
.app-reg-exp-3 { float: left; }
.app-reg-exp-3 .checkbox-label { font-size: 14px; color: #3c4450; margin: 0; }
.app-reg-exp-4 { float: left; width: 415px; height: 210px; border: 1px solid #b9bcc0; padding: 10px 15px 10px 15px; position: relative; margin-bottom: 15px; }
.app-reg-exp-4 .checkbox { margin: 5px 0 5px 0; }
.app-msg-box-export .checkbox-label, .app-msg-box-export .checkbox-label:hover, .app-msg-box-export .checkbox-label:focus, .app-msg-box-export .checkbox-label:active { font-size: 14px; color: #3c4450 !important; }
.app-reg-exp-5 { padding-bottom: 15px; width: 415px; float: left; }
.app-reg-exp-5 .textbox { width: 100%; padding-top: 8px; padding-bottom: 8px; border-color: #b9bcc0; }
.app-reg-exp-clp { position: fixed; top: -10px; left: -10px; }
.app-reg-exp-clp textarea { width: 10px; height: 10px; }
.app-reg-exp-menu { position: relative; }
.app-reg-exp-menu a { padding-right: 25px !important; }
.app-reg-exp-menu .fa { display: none; }
.app-reg-exp-menu:hover .fa { display: inline-block; position: absolute; right: 5px; top: calc(50% - 7.5px); cursor: pointer; font-size: 15px; }
.app-reg-exp-menu:hover a { background-color: #eeeeee; }

.app-param { margin-top: 20px; }

/* response */

.app-msg-box-reponse { width: 610px; }
.app-resp-item { display: flex; align-items: center; height: 50px; }
.app-resp-item label { margin: 0; padding: 0 20px 0 0; width: 160px; text-align: right; }
.app-resp-item .textbox { width: 300px; }
.app-resp-item .icon { margin-left: 15px; cursor: pointer; font-size: 12px; color: #bfc4cb; }
.app-resp-add { cursor: pointer; font-size: 13px; font-weight: bold; color: #42a5f5; margin-top: -15px; text-transform: uppercase; }

/* grid updating */

.app-reg-u1 { display: table; width: 526px; margin: 0 auto 0 auto; }
.app-reg-u2 { display: table-cell; vertical-align: middle; height: calc(100vh - 72px); }
.app-reg-u3 { border: 1px solid #d5d5d5; padding:  50px; background-color: #ffffff; text-align: center; }
.app-reg-u3 div:first-of-type { font-size: 21px; padding-top: 30px; color: #3c4450; }
.app-reg-u3 p { margin: 12px 0 35px 0; color: #3c4450; }


/* toolbar */

.app-toolbar { display: flex; align-items: center; border-bottom: 1px solid #dddddd; }
.app-toolbar-left { display: flex; align-items: center; height: 77px; padding-left: 21px; }
.app-toolbar-right { display: flex; align-items: center; height: 77px; text-align: right; margin: 0 24px 0 auto; }
.app-toolbar-right > div { display: flex; justify-content: flex-end; align-items: center; }
.app-toolbar-item { margin-left: 10px; }
.app-toolbar-reload { margin-left: 10px; }
.app-toolbar-reload .app-pq-button { margin-left: 0; }
.app-toolbar-shortcut { width: 40px; height: 40px; border-radius: 10px; display: flex; justify-content: center; align-items: center; }
.app-toolbar-shortcut i { color: #ffffff; font-size: 18px; display: none; }
.app-toolbar-shortcut-1 { background-color: var(--color-registry); }
.app-toolbar-shortcut-1 i.fa-pencil-alt { display: inline-block; }
.app-toolbar-shortcut-2 { background-color: var(--color-view); }
.app-toolbar-shortcut-2 i.fa-list { display: inline-block; }
.app-toolbar-reg-info { padding-left: 20px; padding-right: 15px; }
.app-toolbar-reg-info div { font-size: 20px; font-weight: bold; color: #3c4450; line-height: 1em; margin-bottom: 2px; }
.app-toolbar-reg-info-grp { font-size: 13px; text-transform: uppercase; line-height: 1em; }

.app-pq-split-button { display: flex; align-items: center; margin-left: 10px; }
.app-pq-split-button .app-pq-button { margin-left: 0; }
.app-pq-split-button > .app-pq-button { border-top-right-radius: 0 !important; border-bottom-right-radius: 0 !important; z-index: 1; }
.app-pq-split-button .dropdown .app-pq-button { border-top-left-radius: 0 !important; border-bottom-left-radius: 0 !important; width: 25px; padding-right: 2px; }
.app-pq-split-button .dropdown { z-index: 2; margin-left: -1px; }
.app-pq-split-button > .app-pq-button:hover { z-index: 3; }
.app-pq-split-button .dropdown:hover { z-index: 3; }

.app-toolbar-filter-text { font-size: 14px; line-height: 26px; color: #898f98; }
.app-toolbar-filter-elem { height: 30px; display: flex; margin: 0 4px 0 4px; border-radius: 15px; align-items: center; padding: 0 12px 0 12px; cursor: pointer; background-color: #ffffff; }
.app-toolbar-filter-elem-label { font-size: 14px; line-height: 26px; color: #3c4450; white-space: nowrap; }
.app-toolbar-filter-elem-ico { width: 9px; height: 9px; background-color: #05d06a; border-radius: 50%; margin-left: 7px; display: none; }
.app-toolbar-filter-elem-close { font-size: 14px; color: #727a86; margin-left: 7px; visibility: hidden; width: 9px; }
.app-toolbar-filter-elem-inc { background-color: #e9ebec; }
.app-toolbar-filter-elem-inc .app-toolbar-filter-elem-ico { display: block; }
.app-toolbar-filter-elem-inc .app-toolbar-filter-elem-close { display: none; visibility: visible; }
.app-toolbar-filter-elem:hover { background-color: #f2f2f2; }
.app-toolbar-filter-elem:hover .app-toolbar-filter-elem-close { visibility: visible; }
.app-toolbar-filter-elem:hover .app-toolbar-filter-elem-ico { visibility: none; }
.app-toolbar-filter-elem-inc:hover { background-color: #e9ebec; }
.app-toolbar-filter-elem-inc:hover .app-toolbar-filter-elem-close { display: block; }
.app-toolbar-filter-elem-inc:hover .app-toolbar-filter-elem-ico { display: none; }

.app-toolbar-filter-elem-drag { padding: 0 4px 0 4px; }
.app-toolbar-filter-elem-drag .app-toolbar-filter-elem { margin: 0; }
.app-toolbar-filter-elem-drop-left { border-left: 1px solid #989ca1; }
.app-toolbar-filter-elem-drop-right { border-right: 1px solid #989ca1; }

.app-toolbar-date-filter { position: relative; }
.app-toolbar-filter-date-field { margin-right: 12px; white-space: nowrap; cursor: pointer; position: relative; }
.app-toolbar-filter-date-fields { display: flex; align-items: center; position: relative; overflow-y: hidden; overflow-x: auto; }
.app-toolbar-filter-date-add-period { cursor: pointer; margin-left: 12px; border-radius: 15px; padding: 0 12px 0 12px; height: 30px; display: flex; align-items: center; }
.app-toolbar-filter-date-add-period:hover { background-color: #f2f2f2; }
.app-toolbar-date-filter-drop { min-width: 225px; }
.app-toolbar-date-filter-drop, .app-toolbar-date-filter-cal, .app-toolbar-date-filter-column { position: absolute; top: 41px; right: 0; background-color: #ffffff; border: 1px solid #dddddd; border-radius: 3px; z-index: 100; display: none; box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.1) !important; padding-top: 6px; }
.app-toolbar-date-filter-column { left: 0; right: auto; top: 33px; width: 250px; padding-bottom: 6px; }
.app-toolbar-date-filter-p1 { display: table-cell; vertical-align: middle; width: 30px; text-align: center; cursor: pointer; }
.app-toolbar-date-filter-p1 div { display: none; height: 27px; max-height: 27px; line-height: 27px; }
.app-toolbar-date-filter-p1 .icon { display: none; }
.app-toolbar-date-filter-p2 { display: table-cell; vertical-align: middle; width: 155px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; height: 27px; font-size: 14px; color: #3c4450; text-align: left; cursor: pointer; }
.app-toolbar-date-filter-p3 { display: table-cell; vertical-align: middle; width: 22px; text-align: left; }
.app-toolbar-date-filter-sep1 { border-bottom: 1px solid #dddddd; margin-bottom: 6px; height: 6px; }
.app-toolbar-date-filter-sep2 { display: block; height: 12px; }
.app-toolbar-date-filter-inc-ico { width: 9px; height: 9px; background-color: #05d06a; border-radius: 50%; display: none; margin: auto; }
.app-toolbar-date-filter-period:hover { background-color: #f8f7f7; }
.app-toolbar-date-filter-period-inc .app-toolbar-date-filter-p2 { font-weight: bold; }
.app-toolbar-date-filter-period-inc .app-toolbar-date-filter-inc-ico { display: block; }
.app-toolbar-date-filter-has-offset { position: relative; }
.app-toolbar-date-filter-has-offset > span { display: none; width: 22px; height: 27px; cursor: pointer; padding-top: 4px; }
.app-toolbar-date-filter-has-offset:hover > span { display: block; }
.app-toolbar-date-filter-period:hover .app-toolbar-date-filter-has-offset > span { display: block; } 
.app-toolbar-date-filter-offset { position: absolute; top: 0; right: -15px; z-index: 200; border: 1px solid #dddddd; background-color: #ffffff; display: none; }
.app-toolbar-date-filter-offset-wrp { position: relative; max-height: 180px; padding: 3px 0 3px 0; }
.app-toolbar-date-filter-offset-item { height: 27px; line-height: 27px; padding: 0 30px 0 15px; font-size: 14px; margin: 2px 0 2px 0; white-space: nowrap; }
.app-toolbar-date-filter-offset-item:hover { background-color: #f8f7f7; cursor: pointer; }
.app-toolbar-date-filter-foot { display: flex; align-items: center; justify-content: space-around; height: 58px; }
.app-toolbar-date-filter-foot .btn { padding: 6px 10px 6px 10px; min-width: 90px; }
.app-toolbar-date-filter-clear { text-align: center; font-size: 13px; font-weight: bold; color: #dddddd; text-transform: uppercase; cursor: pointer; }
.app-toolbar-date-filter-clear:hover { color: #2487d8; }
.app-toolbar-date-filter-cal { width: 500px; }
.app-toolbar-date-filter-cal-hide { display: table; margin: 20px 20px 15px 20px; cursor: pointer; font-size: 13px; font-weight: bold; color: #0da0c5; }
.app-toolbar-date-filter-inp { display: table; margin: 0 25px 20px auto; }
.app-toolbar-date-filter-inp > div { display: table-cell; vertical-align: middle; padding-left: 10px; }
.app-toolbar-date-filter-inp > div .btn { margin-left: 18px; }
.app-toolbar-date-filter-inp input.form-control { height: 28px; padding-top: 0; padding-bottom: 0; width: 110px; }
.app-toolbar-date-filter-cal-inline { width: 50%; float: left; border-top: 1px solid #dddddd; border-top-right-radius: 3px; border-top-left-radius: 3px; }
.app-toolbar-date-filter-cal-inline:first-of-type { border-right: 1px solid #dddddd; }
.app-toolbar-date-filter-cal-inline .datepicker-inline { width: 247px; }
.app-toolbar-date-filter-cal-inline .active { background-color: #0ebce8 !important; }
.app-toolbar-date-filter-group { font-size: 13px; color: #858993; padding-left: 20px; margin-top: 12px; margin-bottom: 6px; }
.app-toolbar-date-filter-group-1 { display: flex; align-items: center; height: 27px; }
.app-toolbar-date-filter-group-1:hover { background-color: #f8f7f7; }
.app-toolbar-date-filter-group-2 { width: 30px; display: flex; justify-content: center; }
.app-toolbar-date-filter-group-1.selected .app-toolbar-date-filter-group-2 .app-toolbar-date-filter-inc-ico { display: block; }
.app-toolbar-date-filter-group-3 { font-size: 14px; color: #3c4450; cursor: pointer; }

.app-dropdown-has-submenu { position: relative; }
.app-dropdown-has-submenu > a { padding-right: 30px !important; }
.app-dropdown-submenu {visibility: hidden; position: absolute; right: 0; top: 1px; cursor: pointer; width: 26px; height: 20px; display: table-cell; vertical-align: middle; }
.app-dropdown-has-submenu:hover .app-dropdown-submenu { visibility: visible; }
.app-dropdown-submenu-icon { color: #3c4450; font-size: 9px; }
.app-dropdown-submenu .dropdown { margin: 0 auto 0 auto !important; display: table; }

.app-datatable-wrp { position: relative; overflow: hidden; height: calc(100vh - 125px); }
.app-datatable-wrp .app-datatable-row-exp > td { padding: 0; }
.app-datatable-wrp .table-bordered { border-top-width: 0 !important; }
.app-datatable-toolbar { display: table; width: 100%; border-bottom: 1px solid #dddddd; }
.app-datatable-toolbar-right { display: table-cell; vertical-align: middle; height: 50px; text-align: right; padding-right: 24px; }
.app-datatable-toolbar-right .app-pq-button { display: inline; }
.app-datatable-toolbar-right .app-pq-button-info .fa { margin-top: 6px; }
.app-datatable-help { font-size: 24px; color: #000000; cursor: pointer; }
.app-datatable-toolbar-right .popover { width: 300px; }
.app-datatable-toolbar-right .popover h5 { font-weight: bold; font-size: 18px; }

.app-reg-warn-panel > div { background-color: #fffdc6; display: table; width: 100%; border-bottom: 1px solid #dddddd; margin-top: -1px; }
.app-reg-warn-panel > div > div { display: table-cell; vertical-align: middle; height: 37px; }
.app-reg-warn-panel-ico { width: 50px; text-align: right; }
.app-reg-warn-panel-ico .icon { color: #7e7979; font-size: 20px; }
.app-reg-warn-panel-msg { padding-left: 10px; color: #3c4450; font-size: 14px; }
.app-reg-warn-panel-msg a { color: #3c4450; margin-left: 20px; display: inline-block; border-bottom: 1px dotted #3c4450; }
.app-reg-warn-panel-msg a:hover { text-decoration: none; }
.app-reg-warn-panel-close { width: 25px; padding-right: 10px; cursor: pointer; }
.app-reg-warn-panel-close .icon { color: #000000; font-size: 10px; }

/* toolbar filter */

.app-toolbar-filter { display: flex; align-items: center; border-bottom: 1px solid #dddddd; height: 42px; justify-content: flex-end; padding: 0 20px 0 20px; position: relative; }
.app-toolbar-filter-item { display: flex; align-items: center; cursor: pointer; }
.app-toolbar-filter-item > .icon { color: #6b6b6b; font-size: 20px; }
.app-toolbar-filter-item > div { font-size: 20px; margin-left: 10px; font-size: 14px; }
.app-toolbar-filter-item-empty-text { color: #a2a1a1; display: none; }
.app-toolbar-filter-item-empty .app-toolbar-filter-item-empty-text { display: block; }
.app-toolbar-filter-item-sep { height: 25px; width: 1px; background-color: #dddddd; margin-left: 12px; margin-right: 12px; }
.app-toolbar-filter-sel { cursor: pointer; display: flex; align-items: center; }
.app-toolbar-filter-sel > div { padding-right: 5px; }
.app-toolbar-filter-sel > span { font-size: 14px; color: #3c4450; padding-right: 5px; }
.app-toolbar-filter-sel > span p { display: inline; }
.app-toolbar-filter-sel span b { text-transform: uppercase; }
.app-toolbar-filter-sel .icon-check { color: #16cb1b; }
.app-toolbar-filter-sel .icon-cross { color: #ff0202; }
.app-toolbar-filter-sel.app-toolbar-filter-text-item { padding-left: 5px; cursor: auto; }
.app-toolbar-filter-item.app-toolbar-filter-text { cursor: auto; }
.app-toolbar-filter-item.app-toolbar-filter-text.app-toolbar-filter-item-empty { display: none; }
.app-toolbar-filter-item-empty-sep { display: none; }
.app-toolbar-filter-text-item .icon { margin: 0 2px 0 2px; }

/* toolbar filter sql */

.app-toolbar-filter-sql { margin-right: 12px; margin-left: 26px; }
.app-toolbar-filter-sql-add .app-toolbar-filter-text { border-radius: 15px; padding: 0 12px 0 12px; height: 30px; display: flex; align-items: center; }
.app-toolbar-filter-sql-add:hover .app-toolbar-filter-text { background-color: #f2f2f2; }
.app-toolbar-filter-grid-label { margin-right: 12px; color: #898f98; }
.app-toolbar-filter-sql-dropdown-menu { width: 500px; margin-top: 5px; margin-right: 20px; padding: 0; }
.app-sql-editor-nav { display: flex; align-items: center; height: 60px; padding: 0 20px 0 20px; border-top: 1px solid #dddddd; }
.app-sql-editor-nav div { color: #42a5f5; cursor: pointer; font-size: 13px; font-weight: bold; text-transform: uppercase; }
.app-sql-editor-nav-clear:hover { color: #2487d8; }
.app-sql-editor-nav-apply { margin-left: auto; padding: 6px 10px 6px 10px; min-width: 90px; }
.CodeMirror { width: 100%; min-width: 100%; max-width: 100%; border: none; padding: 15px; resize: none; min-height: 160px; height: auto; }
.CodeMirror-hints { z-index: 2001; }
.CodeMirror-scroll { overflow: hidden !important; }

/* sort icons */
.pq-col-sort-icon.icon { font-size: 10px; }
.pq-group-remove.icon, .pq-group-remove:hover { font-size: 10px; font-weight: normal !important; border: none !important; margin-left: 0 !important; }

/* user menu */

.app-user-menu { display: inline-block; margin-right: 9px; }
.app-user-menu a.dropdown-toggle:hover, .app-user-menu a.dropdown-toggle:active, .app-user-menu a.dropdown-toggle:focus, .app-user-menu a.dropdown-toggle:visited { text-decoration: none; }
.app-user-menu a.dropdown-toggle > div { display: table-cell; width: 33px; height: 33px; vertical-align: middle; text-align: center; color: #ffffff; font-size: 13px; font-weight: bold; font-family: 'Roboto', sans-serif; border-radius: 50%; }
.app-user-menu a.dropdown-toggle:hover > div { opacity: 0.9; }

/* module */

.app-module { height: 100vh; position: relative; overflow: hidden; }
.app-standard-module { background-color: #f6f6f6; display: flex; flex-direction: column; } 
.app-module-toolbar { display: flex; align-items: center; height: 76px; min-height: 76px; background-color: #ffffff; border-bottom: 1px solid #dddddd; padding-left: 21px; }
.app-module-toolbar-icon { background-color: var(--color-module); width: 32px; height: 32px; text-align: center; padding-top: 6px; border-radius: 3px; }
.app-module-toolbar-icon .icon { font-size: 20px; color: #ffffff; }
.app-module-toolbar-icon i { font-size: 20px; color: #ffffff; }
.app-module-toolbar-name { font-size: 22px; font-weight: bold; color: #3c4450; margin-left: 20px; }
.app-module-toolbar-group { font-size: 13px; color: var(--color-module); margin-left: 15px; padding-top: 2px; text-transform: uppercase; }
.app-module-close { margin-left: auto; margin-right: 24px; }
.app-module-close i { cursor: pointer; font-size: 24px; color: #989CA1; }

/* user settings */

.app-user-pref-module { background-color: #f6f6f6; }
.app-user-pref-ctl { display: flex; align-items: flex-start; justify-content: center; margin-top: 9px; margin-bottom: 10px; }
.app-user-pref-groups { width: 304px; border: 1px solid #dddddd; background-color: #ffffff; margin: 0 12px 0 0; padding: 6px 0 6px 0; list-style-type: none; }
.app-user-pref-groups li { height: 40px; vertical-align: middle; padding: 0 10px 0 27px; cursor: pointer; line-height: 40px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: bold; text-transform: uppercase; }
.app-user-pref-groups li:hover { background-color: #f6f6f6; }
.app-user-pref-groups li.active { background-color: #00cbfe; color: #ffffff; }
.app-user-pref-pnl { height: calc(100vh - 166px); width: 577px; border: 1px solid #dddddd; background-color: #ffffff; padding: 20px 32px 20px 34px; }
.app-user-pref-pnl h4 { margin: 0; font-size: 22px; font-weight: bold; }
.app-tab-compact .app-user-pref-pnl { height: calc(100vh - 140px); }
.app-user-pref-item { overflow: hidden; margin-top: 25px; }
.app-user-pref-item-label { float: left; width: 400px; }
.app-user-pref-item-label label { text-transform: none; padding-right: 10px; display: inline; margin: 0; }
.app-user-pref-item-label .icon { color: #b8b8b8; font-size: 16px; cursor: pointer; }
.app-user-pref-item-ctl { float: right; width: 100px; text-align: right; }
.app-user-pref-item-ctl a { font-size: 13px; font-weight: bold; color: #0da0c5; text-transform: uppercase; }
.app-user-pref-item-help { font-size: 14px; line-height: 18px; font-style: italic; color: #626973; padding-top: 15px; display: none; }

/* gatto */

.ta-bk-module .app-module-toolbar > span { display: table; margin: 0 20px 0 auto; }
.ta-bk-module-ctl { display: flex; width: 100%; gap: 10px; flex: 1; align-items: stretch; padding: 10px; }
.ta-bk-module-l { width: 265px; border: 1px solid #dddddd; background-color: #ffffff; padding: 11px 2px 0 2px; }
.ta-bk-module-c { border: 1px solid #dddddd; background-color: #ffffff; padding: 20px 30px 30px 35px; position: relative; flex: 1; max-height: calc(100vh - 96px); }
.ta-operation { display: table; border-spacing: 0; }
.app-tab-compact .ta-bk-module-c { height: calc(100vh - 140px); }
.ta-bk-module-r { width: 350px; display: flex; align-items: stretch; }
.ta-bk-module-r > span { display: flex; align-items: stretch; width: 100%; }
.ta-bk-module-r > span > div { display: flex; align-items: stretch; flex-direction: column; width: 100%; }
.ta-bk-search { height: 56px; position: relative; }
.ta-bk-search img { position: absolute; left: 16px; top: 13px; }
.ta-bk-search input { width: 100%; height: 42px; background-color: #ffffff; border: 1px solid #dddddd; border-radius: 21px; font-size: 14px; color: #8590a0; padding: 0 20px 0 45px; line-height: 40px; outline: none; }
.ta-bk-search .icon { position: absolute; right: 10px; top: 14px; cursor: pointer; color: #6a6767; font-size: 13px; }
.ta-bk-hist { border: 1px solid #dddddd; background-color: #ffffff; position: relative; flex: 1; width: 100%; max-height: calc(100vh - 152px); }
.app-tab-compact .ta-bk-hist { height: calc(100vh - 196px); }
.ta-bk-hist h4 { display: table-cell; height: 41px; vertical-align: middle; padding: 0 0 0 15px; color: #8590a0; font-size: 14px; }
.ta-bk-module-c h4 { font-size: 13px; color: #6e737b; margin: 0; padding-bottom: 25px; }
.ta-bk-oper { display: flex; align-items: center; cursor: pointer; height: 39px; padding: 0 10px 0 25px; }
.ta-bk-oper span { font-size: 13px; color: #3c4450; text-transform: uppercase; white-space: nowrap; }
.ta-bk-oper:hover { background-color: #f6f6f6; }
.ta-bk-oper-sel, .ta-bk-oper-sel:hover { background-color: #00cbfe; }
.ta-bk-oper-sel span, .ta-bk-oper-sel:hover span { font-weight: bold; color: #ffffff; }
.ta-edit-item { display: table-row; }
.ta-edit-item > label { display: table-cell; vertical-align: top; font-weight: normal; font-size: 13px; color: #6e737b; min-width: 90px; white-space: nowrap; padding: 30px 12px 0 0; }
.ta-edit-label { font-weight: normal; font-size: 13px; color: #6e737b; padding: 0 15px 0 30px; }
.ta-edit-item > p { display: table-cell; height: 10px; }
.ta-edit-item > div { display: table-cell; padding-top: 20px; width: 285px; }
.ta-edit-item-label > label, .ta-edit-item-label > div { vertical-align: middle; padding-top: 0; height: 30px; }
.ta-edit-item-label > div { font-size: 14px; color: #3c4450; }
.ta-edit-item > div .input-group, .ta-edit-item > div .dropdown-toggle { width: 100%; max-width: 285px; }
.ta-edit-item > div .input-group.date { width: 139px; }
.ta-edit-item > div .input-group.date input { padding-left: 10px; padding-right: 5px; }
.ta-edit-item > div .select2 { width: 285px !important; max-width: 285px !important; outline: none; }
.ta-edit-item .select2-selection, .ta-edit-item .select2 { border-color: #b9bcc0 !important; height: 42px; outline: none; }
.ta-edit-item .select2-selection__arrow { top: 7px !important; }
.ta-edit-item .select2-selection__rendered { height: 42px; line-height: 42px !important; color: #3c4450 !important; outline: none; }
.select2-results__option--highlighted { color: #ffffff !important; }
.ta-edit-item > div .dropdown-toggle { position: relative; padding-top: 9px; padding-bottom: 9px; color: #3c4450 !important; height: 42px; }
.ta-edit-item > div .dropdown-toggle:hover { background-color: #ffffff !important; }
.ta-edit-item > div .dropdown-toggle .caret { position: absolute; right: 5px; top: 19px; color: #888888; }
.ta-edit-item > div .dropdown-menu { width: 285px; }
.ta-edit-item > div .dropdown-menu li { height: 26px; }
.ta-edit-item > div > p { padding-top: 10px; color: #6e737b; font-weight: bold; margin: 0; }
.ta-edit-item .textbox { height: 42px; line-height: 42px; width: 285px; padding: 0 10px 0 10px; color: #3c4450; }
.ta-edit-item-inline > span { display: table-cell; vertical-align: middle; white-space: nowrap; }
.ta-acc-pnl span { font-size: 25px; font-weight: bold; line-height: 25px; }
.ta-acc-pnl div { display: table; margin: 0 0 0 auto; }
.ta-acc-pnl p { font-size: 12px; color: #8590a0; margin: 0; text-align: right; text-transform: uppercase; }
.ta-acc-neg { color: #fe0000; }
div.ta-doc-list { width: 462px; }
.ta-doc-list > div { border: 1px solid #b9bcc0; border-radius: 3px; padding: 6px 0 6px 0; }
.ta-doc { display: flex; align-items: center; cursor: pointer; height: 29px; padding: 0 15px 0 13px; }
.ta-doc-radio { width: 18px; height: 18px; border: 3px solid #00cbfe; border-radius: 50%; background-color: #ffffff; }
.ta-doc-el { color: #3c4450; }
.ta-doc-el-1 { width: 200px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; padding-left: 13px; }
.ta-doc-el-2 { padding: 0 10px 0 10px; }
.ta-doc-el-3 { margin: 0 0 0 auto; text-align: right; }
.ta-doc-el-3-neg { color: #fe0000; }
.ta-doc:hover { background-color: #f8f7f7; }
.ta-doc:hover .ta-doc-radio { border-color: #0ebce8; }
.ta-doc-sel .ta-doc-radio { border-width: 5px; }
.ta-doc-sel .ta-doc-el { font-weight: bold; }
.ta-doc-amount .textbox { width: 233px !important; text-align: right !important; font-size: 16px; font-weight: bold; -moz-appearance: textfield; outline: none; }
.ta-doc-amount .textbox::-webkit-outer-spin-button, 
.ta-doc-amount .textbox::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.ta-doc-curr { color: #6e737b; font-size: 13px; padding-left: 5px; }
.ta-doc-setl-link { color: #8590a0; font-size: 14px; margin: 10px 15px 10px auto; cursor: pointer; display: table; border-bottom: 1px dotted #8590a0; }
.ta-doc-setl-div { border-top: 1px solid #b9bcc0; margin: 10px 0 10px 0; }
.ta-doc-inv .ta-doc-el { color: #8590a0; }
.ta-doc-ban { color: #989ca3; font-size: 21px; }
.ta-add-item { padding-left: 15px; }
.ta-add-item .icon { font-size: 21px; color: #39b3d7; cursor: pointer; }

.ta-trans { height: 88px; display: flex; justify-content: space-between; align-items: flex-end; padding: 0 18px 13px 24px; border-left-width: 7px; border-left-style: solid; border-bottom: 1px solid #dddddd; }
.ta-trans:first-of-type { border-top: 1px solid #dddddd; }
.ta-trans:hover { background-color: #faf9f9; }
.ta-trans-neg { border-left-color: #FFBA00; }
.ta-trans-pos { border-left-color: #00CBFE; }
.ta-trans-l * { white-space: nowrap; text-overflow: ellipsis; }
.ta-trans-r { text-align: right; }
.ta-trans-r * { white-space: nowrap; }
.ta-trans-l h5 { margin: 0; line-height: 22px; font-size: 14px; font-weight: bold; color: #3c4450; cursor: pointer; }
.ta-trans-l div, .ta-trans-r div { line-height: 22px; font-size: 14px; color: #3c4450; }
.ta-trans-l p, .ta-trans-r p { margin: 0; font-size: 12px; color: #8f99a7; }
.ta-trans-ico .icon-arrow-up, .ta-trans-ico .icon-arrow-down { color: #a69e9e; font-size: 12px; }
.ta-trans-ico .icon-trash { font-size: 15px; color: #a69e9e; cursor: pointer; display: none; }
.ta-trans:hover .icon-trash { display: block; }
.ta-trans:hover .ta-trans-del .icon-arrow-up, .ta-trans:hover .ta-trans-del .icon-arrow-down { display: none; }
.ta-box-customer textarea { height: 100px !important; }

.select2-selection.ui-state-error { border-color: #ff0000 !important; }

.ta-edit-item-2 > div { width: 450px; }
.ta-edit-item-2 > div .input-group, .ta-doc-editor .ta-edit-item > div .dropdown-toggle { max-width: 450px; }
.ta-edit-item-2 > div .select2 { width: 450px !important; max-width: 450px !important; }
.ta-edit-item-2 > div .dropdown-menu { width: 450px; }
.ta-edit-item-2 .textbox { width: 450px; }
.ta-edit-item-3 > div { width: 462px; }
.ta-edit-item-3 > div .input-group, .ta-doc-editor .ta-edit-item > div .dropdown-toggle { max-width: 462px; }
.ta-edit-item-3 > div .select2 { width: 462px !important; max-width: 462px !important; }
.ta-edit-item-3 > div .dropdown-menu { width: 462px; }
.ta-edit-item-3 .textbox { width: 462px; }
.ta-edit-item-4 > label { padding-top: 20px; }
.ta-edit-item-4 > div { padding-top: 10px; }

div.ta-edit-currency .select2 { width: 90px !important; margin-left: 8px; }

.ta-msg-box-split .ta-edit-item > label { text-align: right; }
.ta-msg-box-split .ta-edit-item > div { font-weight: bold; }
.ta-msg-box-split .app-msg-box-content { padding-left: 35px; padding-right: 35px; }
.ta-msg-box-split .ta-edit-item > div { width: 400px; }
.ta-msg-box-split .ta-edit-item > div .input-group.date { width: 125px; }
.ta-msg-box-split .ta-edit-item > div .input-group.date input { padding-left: 5px; padding-right: 0; font-weight: normal; }
.ta-msg-box-split .ta-doc-amount .textbox { width: 195px !important; }
.ta-split-item-1 > div { font-size: 16px; }
.ta-split-item-1 > div > span, .ta-msg-box-split .ta-doc-amount b { font-size: 14px; color: #3c4450; padding-left: 10px; font-weight: normal; }
.ta-msg-box-split .ta-doc-amount b { display: table-cell; vertical-align: middle; }
.ta-split-item-2 > label { padding-top: 15px; } 
.ta-split-item-2 > div { padding-top: 13px; } 
.ta-split-item-3 { border-bottom: 1px solid #e1dfda; margin: 20px -35px 10px -35px; }

/* addressbook */

.app-adbk-ctl { display: table; border-spacing: 8px; margin: 0 auto 0 auto; }
.app-adbk-ctl > div { display: table-cell; vertical-align: top; height: calc(100vh - 166px); border: 1px solid #dddddd; background-color: #ffffff; }
.app-tab-compact .app-adbk-ctl > div { height: calc(100vh - 140px); }
.app-adbk-l { position: relative; width: 770px; }
.app-adbk-r { width: 590px; overflow: hidden; min-width: 550px; }
.app-adbk-top { display: flex; width: 100%; border-bottom: 1px solid #ece8e8; justify-content: space-between; align-items: center; padding: 0 30px 0 20px; height: 67px; }
.app-adbk-top-1 { position: relative; width: 50%; }
#adbkSearch { height: 38px; border: 1px solid #dddddd; background-color: #ffffff; border-radius: 29px; width: 100%; padding: 0 25px 0 45px; line-height: 36px; font-size: 14px; color: #3c4450; outline: none; }
.app-adbk-top-1 img { left: 10px; top: calc(50% - 8px); position: absolute; }
.app-adbk-top-1 .icon { position: absolute; right: 10px; top: calc(50% - 7px); color: #999595; font-size: 14px; cursor: pointer;  display: none; }
.app-adbk-top-2 { display: flex; align-items: center; }
.app-adbk-top-2 .icon { font-size: 20px; color: #595656; cursor: pointer; }
.app-adbk-top-2 .icon:hover { color: #08e9f7; }
.app-adbk-total { color: #8590a0; font-size: 14px; padding-right: 30px; }
.app-adbk-search-plch { color: #8590a0 !important; }
.app-adbk-filter { position: absolute; top: 50px; right: 25px; background-color: #ffffff; border: 1px solid #dddddd; border-radius: 3px; z-index: 100; box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.1) !important; padding: 20px; display: none; }
.app-adbk-filter-sep { height: 1px; background-color: #dddddd; margin: 20px 0 20px 0; }
.app-adbk-filter .radio label, .app-adbk-filter .checkbox label { text-transform: none; padding-left: 25px; }
.app-adbk-filter .checkbox { margin: 13px 0 13px 0; }
.app-adbk-filter .radio { margin-bottom: 13px; }

.app-adbk-items { position: relative; height: calc(100vh - 233px); }
.app-tab-compact .app-adbk-items { height: calc(100vh - 209px); }
.app-adbk-items.app-adbk-has-former-warn { height: calc(100vh - 286px); }
.app-tab-compact .app-adbk-items.app-adbk-has-former-warn { height: calc(100vh - 262px); }

.app-adbk-dep-col .fa-caret-down { display: none; }
.app-adbk-dep-col .fa-caret-right { display: inline-block; }
.app-adbk-dep-exp .fa-caret-down { display: inline-block; }
.app-adbk-dep-exp .fa-caret-right { display: none; }
.app-adbk-dep { display: flex; align-items: center; margin: 0 32px 0 15px; height: 64px; }
.app-adbk-dep-1 { width: 19px; height: 19px; cursor: pointer; }
.app-adbk-dep-1 .fa { font-size: 20px; color: #3c4450; }
.app-adbk-dep-2 { display: flex; align-self: stretch; align-items: center; border-bottom: 1px solid #ece8e8; width: 100%; }
.app-adbk-dep-3 { font-size: 21px; color: #3c4450; font-weight: bold; cursor: pointer; }
.app-adbk-dep-4 { margin: 0 0 0 auto; color: #8590a0; font-size: 14px; }
.app-adbk-dep-items { display: none; }
.app-adbk-item { display: flex; height: 56px; align-items: stretch; margin-right: 32px; }
.app-adbk-item:hover .app-adbk-item-1 { border-left: 4px solid #cdc6c6; }
.app-adbk-item-1 { width: 34px; min-width: 34px; }
.app-adbk-item-2 { display: flex; border-bottom: 1px solid #ece8e8; align-items: center; width: 100%; }
.app-adbk-item-3 { width: 33px; height: 33px; line-height: 33px; border-radius: 50%; text-align: center; font-family: 'Roboto', sans-serif; font-size: 13px; font-weight: bold; color: #ffffff; cursor: pointer; }
.app-adbk-item-4 { padding-left: 10px; }
.app-adbk-item-4 div { font-size: 14px; color: #3c4450; cursor: pointer; }
.app-adbk-item[data-leader='true'] .app-adbk-item-4 div { font-weight: bold; }
.app-adbk-item-4 p { font-size: 12px; color: #8590a0; margin: 2px 0 0 0; text-transform: uppercase; cursor: pointer; }
.app-adbk-item-5 { margin: 0 0 0 auto; }
.app-adbk-item-5 .icon { font-size: 20px; display: none; }
.app-adbk-item-5 .icon-shield-user, .app-adbk-d5 .icon-shield-user { color: #ffba00; }
.app-adbk-item-5 .icon-cloud, .app-adbk-d5 .icon-cloud { color: #5bb1de; }
.app-adbk-item[data-leader='true'] .icon-shield-user { display: inline; }
.app-adbk-item[data-remote='true'] .icon-cloud { display: inline; }
.app-adbk-details { padding: 30px 25px 30px 35px; height: calc(100vh - 166px); position: relative; }
.app-tab-compact .app-adbk-details { height: calc(100vh - 140px); }
.app-adbk-d1 { display: table; width: 100%; border-bottom: 1px solid #ece8e8; margin-bottom: 30px; }
.app-adbk-d2 { display: table-cell; vertical-align: top; width: 125px; }
.app-adbk-d2 div { width: 96px; height: 96px; border-width: 4px; border-style: solid; border-radius: 50%; background-color: #ffffff; font-size: 38px; font-family: 'Roboto', sans-serif; text-align: center; line-height: 92px; }
.app-adbk-d3 { display: table-cell; vertical-align: top; }
.app-adbk-d3 h3 { font-size: 22px; font-weight: bold; color: #3c4450; margin: 0; }
.app-adbk-d4 { font-size: 14px; color: #3c4450; text-transform: uppercase; padding-top: 10px; }
.app-adbk-d5 { display: flex; margin-top: 10px; align-items: center; }
.app-adbk-d5 .icon { font-size: 20px; }
.app-adbk-d5 div { padding: 0 30px 0 10px; font-size: 15px; color: #3c4450; }
.app-adbk-d6 { padding-top: 10px; padding-bottom: 30px; font-size: 15px; color: #3c4450; }
.app-adbk-d6 span { padding: 0 12px 0 12px; font-size: 15px; color: #3c4450; }
.app-adbk-d7 { display: flex; margin: 20px 15px 0 35px; align-items: center; }
.app-adbk-d7 .icon { font-size: 22px; }
.app-adbk-d7 div { color: #3c4450; font-size: 14px; padding-left: 20px; }
.app-adbk-d7 p { font-size: 12px; color: #7d848e; margin: 0 0 0 auto; text-transform: uppercase; }
.app-adbk-d8 { border-top: 1px solid #ece8e8; margin: 25px 0 0 0; padding: 20px 0 20px 5px; font-size: 15px; font-weight: bold; color: #3c4450; cursor: pointer; }
.app-adbk-d8 .fa { font-size: 15px; color: #3c4450; margin-left: 10px; font-weight: normal; }
.app-adbk-d8-col .fa-angle-right { display: inline-block; }
.app-adbk-d8-col .fa-angle-down { display: none; }
.app-adbk-d8-exp .fa-angle-down { display: inline-block; }
.app-adbk-d8-exp .fa-angle-right { display: none; }
.app-adbk-d9 { display: none; padding-bottom: 25px; }
.app-adbk-former-warn { display: flex; width: 100%; background-color: #ffba00; height: 53px; align-items: center; padding: 0 20px 0 26px; border-bottom: 1px solid #ece8e8; }
.app-adbk-items-former { background-color: #f8f7f7; }
.app-adbk-former-warn .icon { color: #ffffff; }
.app-adbk-former-warn .icon-cross { font-size: 15px; cursor: pointer; margin: 0 0 0 auto; display: block; }
.app-adbk-former-warn .icon-warning-circle { font-size: 22px; }
.app-adbk-former-warn div { font-size: 14px; font-weight: bold; color: #ffffff; padding-left: 15px; }

/* absence widget */

.app-grid-item-absence { width: 420px; border-top: 4px solid #ce6aeb; }
.app-wgt-abs-ctl { position: relative; }
.app-wgt-abs-head { display: flex; align-items: center; padding: 0 18px 0 22px; height: 68px; border-bottom: 1px solid #ffffff; }
.app-grid-item-visible .app-wgt-abs-head { border-color: #ece8e8; }
.app-wgt-abs-head .dropdown-toggle { cursor: pointer; }
.app-wgt-abs-head-1 { font-size: 21px; font-weight: bold; color: #3c4450; cursor: pointer; }
.app-wgt-abs-head .dropdown-toggle .fa { font-size: 16px; color: #9098a3; margin-left: 5px; }
.app-wgt-abs-add .icon { font-size: 20px; color: #bbbfc6; cursor: pointer; }
.app-wgt-abs-filter { margin-left: 15px; position: relative; }
.app-wgt-abs-filter-toggle { font-size: 20px; color: #bbbfc6; cursor: pointer; }
.app-wgt-abs-filter-toggle-inc { color: #fd9a00; }
.app-wgt-abs-filter-dropdown { position: absolute; top: 35px; right: 0; background-color: #ffffff; border: 1px solid #dddddd; border-radius: 3px; z-index: 100; box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.1) !important; padding: 20px; display: none; }
.app-wgt-abs-filter-dropdown-item { font-size: 14px; color: #3c4450; white-space: nowrap; margin-bottom: 4px; height: 24px; display: flex; align-items: center; }
.app-wgt-abs-filter-dropdown-item:hover { cursor: pointer; }
.app-wgt-abs-filter-dropdown-item > div { width: 30px; }
.app-wgt-abs-filter-dropdown-item .fa { color: #39b3d7; font-size: 18px; }
.app-wgt-abs-filter-dropdown-item .app-wgt-abs-filter-off { font-size: 20px; }
.app-wgt-abs-filter-dropdown-item .app-wgt-abs-filter-on { display: none; }
.app-wgt-abs-filter-dropdown-item-sel .app-wgt-abs-filter-off { display: none; }
.app-wgt-abs-filter-dropdown-item-sel .app-wgt-abs-filter-on { display: inline-block; }
.app-wgt-abs-filter-apply { color: #0da0c5; text-align: center; cursor: pointer; padding: 20px 0 0 0; text-transform: uppercase; border-top: 1px solid #dddddd; margin: 15px -20px 0 -20px; font-weight: bold; }
.app-wgt-abs-filter-sep { background-color: #dddddd; height: 1px; margin: 10px -20px 10px -20px; }
.app-wgt-abs-head-icon { margin: 0 0 0 auto; display: none; align-items: center; }
.app-grid-item-visible .app-wgt-abs-head-icon { display: flex; }
.app-wgt-abs-head-icon .icon:hover { color: #08e9f7; }
.app-wgt-abs-date-toggle { display: flex; align-items: center; margin: 0 18px 0 18px; height: 65px; cursor: pointer; border-bottom: 1px solid #ece8e8; }
.app-wgt-abs-date-toggle-sep .app-wgt-abs-item:last-of-type, .app-wgt-abs-date-toggle-off.app-wgt-abs-date-toggle-sep { border-bottom-color: #aba7a7; }
.app-wgt-abs-date-toggle > p { margin: 0; font-size: 18px; color: #3c4450; }
.app-wgt-abs-date-toggle > div { width: 20px; }
.app-wgt-abs-date-toggle > span { display: block; margin: 0 0 0 auto; font-size: 12px; color: #8590a0; }
.app-wgt-abs-date-toggle .fa { font-size: 20px; color: #7b8088; }
.app-wgt-abs-date-toggle-col .fa-caret-right { display: inline-block; }
.app-wgt-abs-date-toggle-col .fa-caret-down { display: none; }
.app-wgt-abs-date-toggle-exp .fa-caret-down { display: inline-block; }
.app-wgt-abs-date-toggle-exp .fa-caret-right { display: none; }
.app-wgt-abs-date-toggle-off { cursor: auto; }
.app-wgt-abs-date-toggle-off .fa { display: none; }
.app-wgt-abs-date-toggle-off p { color: #8590a0; }
.app-wgt-nav-left { position: absolute; bottom: 25px; left: 20px; display: flex; align-items: center; }
.app-wgt-nav-right { position: absolute; bottom: 25px; right: 20px; display: flex; align-items: center; }
.app-wgt-nav-sep { color: #8590a0; padding: 0 8px 0 8px; }
.app-wgt-nav-right .app-wgt-nav-sep:first-of-type { display: none; }
.app-wgt-nav-el { cursor: pointer; border-bottom: 1px dotted #ece8e8; color: #8590a0; }
.app-wgt-nav-el * { color: #8590a0; }
.app-wgt-nav-el .fa { margin-right: 5px; font-size: 14px; }
.app-msg-box-absence { width: 480px; }
.app-msg-box-absence .app-msg-box-content { padding-bottom: 20px; }
.app-msg-box-absence .app-msg-box-btn { display: flex; align-items: center; padding: 0 45px 0 45px; margin-right: 0; margin-bottom: 40px; }
.app-msg-box-absence .app-msg-box-btn > span .btn { margin: 0; }
.app-msg-box-absence .app-msg-box-btn > span:last-of-type { margin: 0 0 0 auto; display: block; }
.app-abs-edit-item { display: flex; align-items: center; margin-bottom: 25px; }
.app-abs-edit-item label { margin: 0; font-size: 13px; font-family: Roboto, sans-serif; color: #6e737b; padding-right: 10px; text-align: right; }
.app-abs-edit-item label:first-of-type { width: 90px; }
.app-abs-edit-item label:last-of-type { padding-left: 10px; }
.app-abs-edit-item .select2, .app-abs-edit-item .dropdown-toggle, .app-abs-edit-item .dropdown-menu { width: 320px !important; }
.app-abs-edit-item .select2-selection, .app-abs-sel-item { height: 56px; }
.app-abs-edit-item .select2-selection__arrow { top: 16px !important; }
#select2-absenceEditor-results li:first-of-type { height: 60px; }
.app-abs-edit-item .date { width: 140px; }
.app-abs-edit-item .date input { padding-left: 10px; padding-right: 5px; }
.app-abs-edit-item .dropdown-toggle { height: 42px; }
.app-abs-edit-item .dropdown li a { height: 30px; }
.app-abs-edit-item .dropdown-toggle .caret { position: absolute; right: 10px; top: calc(50% - 3px); }
.app-abs-sel-item { display: flex; align-items: center; padding: 0 5px 0 5px; }
.app-abs-sel-item-1, .app-wgt-abs-item-1 { min-width: 32px; width: 32px; height: 32px; border-radius: 50%; color: #ffffff; font-size: 13px; font-weight: bold; font-family: Roboto, sans-serif; text-align: center; line-height: 32px; }
.app-abs-sel-item-2 { margin-left: 15px; }
.app-abs-sel-item-2 div { font-size: 14px; color: #3c4450; line-height: 16px; padding-bottom: 5px; }
.app-abs-sel-item-2 p { font-size: 12px; color: #8590a0; margin: 0; line-height: 1em; text-transform: uppercase; }
.app-abs-sel-item-2 div, .app-abs-sel-item-2 p { width: 230px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
#select2-absenceEditor-results .select2-results__option--highlighted .app-abs-sel-item-2 * { color: #ffffff; }
.app-wgt-abs-item { display: flex; align-items: center; margin: 0 18px 0 18px; height: 58px; border-bottom: 1px solid #ece8e8; }
.app-wgt-abs-item *[onclick] { cursor: pointer; }
.app-wgt-abs-item-2 { margin-left: 10px; }
.app-wgt-abs-item-2 div { font-size: 14px; color: #3c4450; line-height: 16px; padding-bottom: 5px; }
.app-wgt-abs-item-2 p { font-size: 12px; color: #8590a0; margin: 0; line-height: 1em; text-transform: uppercase; }
.app-wgt-abs-item-4 { margin: 0 0 0 auto; }
.app-wgt-abs-item-4 div { text-align: right; }
.app-wgt-abs-item-4 p { text-transform: none; text-align: right; }

/* holiday widget */

.app-grid-item-holiday { border-top: 4px solid #37c5ab; }
.app-grid-item-holiday .app-wgt-abs-filter-dropdown { padding-right: 0; min-width: 250px; }
.app-wgt-abs-filter-dropdown-ctl { max-height: 300px; position: relative; padding-right: 20px; }
.app-wgt-hld-filter { border-top: 1px solid #dddddd; margin: 15px 0 -20px -20px; height: 60px; display: flex; align-items: center; padding: 0 20px 0 20px; }
.app-grid-item-absence .app-wgt-hld-filter { padding-right: 0; margin-right: -20px; }
.app-wgt-hld-filter span { cursor: pointer; color: #0da0c5; font-weight: bold; text-transform: uppercase; }
.app-wgt-hld-filter span:last-of-type { display: block; margin: 0 0 0 auto; }
.app-grid-item-absence .app-wgt-hld-filter span:last-of-type { margin-right: 20px; }
.app-wgt-hld-filter-s { display: block; margin-right: 20px; }
.app-wgt-hld-filter-d { display: none; margin-right: 20px; }
.app-wgt-abs-filter-dropdown-selall .app-wgt-hld-filter-s { display: none; }
.app-wgt-abs-filter-dropdown-selall .app-wgt-hld-filter-d { display: block; }
.app-grid-item-holiday .app-wgt-abs-item-1 { color: #abb2bd; border: 1px solid #abb2bd; }

.app-msg-box-warning .app-msg-box-btn { display: flex; justify-content: space-between; align-items: center; margin: 0 25px 25px 25px; }

/* work schedule widget */

.app-grid-item-work-organisation { border-top: 4px solid #fd9a00; }
.app-wgt-work-1 { overflow: hidden; max-width: 100%; }
.app-wgt-work-1 p { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-right: 5px; }
.app-wgt-work-2 { border-top: 1px solid #aba7a7; margin-top: -1px; }
.app-wgt-work-3 .app-wgt-abs-item-4 p { text-transform: uppercase; }
.app-wgt-abs-head-nb { border-bottom: none; }
.app-wgt-abs-head-icon img { margin: 0; opacity: 0.5; }
.app-wgt-abs-head-search { padding: 0 18px 8px 22px; margin-top: -10px; border-bottom: 1px solid #ece8e8; position: relative; display: none; }
.app-wgt-abs-head-search input { width: 100%; border: none; color: #3c4450; font-size: 14px; height: 14px; padding: 0 30px 3px 8px; outline: none; background-color: #ffffff; border-bottom: 1px solid #ece8e8; display: block; }
.app-wgt-abs-head-search-clear { position: absolute; right: 25px; top: 0; cursor: pointer; display: none; }
.app-wgt-abs-item-4 .icon-shield-user { font-size: 20px; color: #ffba00; }

/* website widget */

.app-grid-item-website { border-top: 4px solid #42c545; }
.app-grid-item-website .app-wgt-abs-item { height: 40px; }
.app-wgt-web-1 { max-width: 16px; height: auto; margin-right: 5px; }
.app-wgt-web-2 { color: #3c4450; }
.app-wgt-web-3 { margin: 0 0 0 auto; display: flex; align-items: center; visibility: hidden; }
.app-wgt-web-3 .icon { margin-left: 5px; cursor: pointer; font-size: 14px; color: #3c4450; }
.app-wgt-abs-item:hover .app-wgt-web-3 { visibility: visible; }
.app-wgt-web-3 a:hover, .app-wgt-web-3 a:active, .app-wgt-web-3 a:focus, .app-wgt-web-3 a:visited { text-decoration: none; outline: none; }
.app-wgt-web-nav { margin: 15px 18px 10px auto; display: flex; align-items: center; justify-content: flex-end; }
.app-wgt-web-inactive { margin-top: -1px; }
.app-wgt-test-inactive { margin-top: -11px; }
.app-wgt-web-inactive .app-wgt-web-2, .app-wgt-web-inactive .app-wgt-web-2:hover,
.app-wgt-test-inactive .app-wgt-web-t3, .app-wgt-test-inactive .app-wgt-web-t3:hover { color: #8590a0; }
.app-wgt-web-inactive .app-wgt-abs-item:first-of-type, .app-wgt-test-inactive .app-wgt-web-test:first-of-type { border-top: 1px solid #000000; }
.app-wgt-test-inactive .app-wgt-web-test:first-of-type { border-top: 1px solid #000000; padding-top: 15px; padding-bottom: 10px; }
.app-wgt-web-test { display: flex; align-items: center; border-bottom: 1px solid #ece8e8; margin: 10px 18px 10px 18px; min-height: 40px; padding-bottom: 5px; }
.app-wgt-web-t1 { display: flex; align-items: center; width: 20px; cursor: pointer; }
.app-wgt-web-t1 .fa { color: #7b8088; font-size: 17px; }
.app-wgt-web-test-col .app-wgt-web-t1 .fa-caret-right { display: block; }
.app-wgt-web-test-col .app-wgt-web-t1 .fa-caret-down { display: none; }
.app-wgt-web-test-exp .app-wgt-web-t1 .fa-caret-right { display: none; }
.app-wgt-web-test-exp .app-wgt-web-t1 .fa-caret-down { display: block; }
.app-wgt-web-t2 { width: 26px; }
.app-wgt-web-t2 img { width: 20px; height: auto; }
.app-wgt-web-t3 { width: 250px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 14px; color: #3c4450; cursor: pointer; }
.app-wgt-web-t4 { display: block; margin-left: auto; cursor: pointer; font-size: 17px; color: #4c4c4c; }
.app-wgt-web-test-col .app-wgt-web-t4 { display: none; }
.app-wgt-web-test-col:hover .app-wgt-web-t4 { display: block; }
.app-wgt-web-ver { margin: 0 18px 0 18px; padding-left: 26px; padding-bottom: 5px; border-bottom: 1px solid #ece8e8; }
.app-wgt-web-ver a, .app-wgt-web-ver span { display: block; font-size: 14px; color: #3c4450; padding: 5px 0 5px 0; }
.app-wgt-test-inactive .app-wgt-web-ver span { color: #8590a0; }

/* menu kontekstowe */

.context-menu-item.context-menu-hover { background-color: #f8f7f7 !important; }
.context-menu-item.context-menu-hover span { color: #2f2f2f !important; }

.app-head-reg-action-row-sel { background-color: #f6ced6 !important; }
.app-reg-page[data-reg-type="1"] .app-head-reg-action-row-sel .pq-grid-cell.pq-state-select, .app-reg-page[data-reg-type="1"] .app-head-reg-action-row-sel.pq-grid-row.pq-state-select { background-color: #f6ced6 !important; }

/* placeholder */

.app-content-placeholder .app-cp-el { position: relative; }
.app-content-placeholder .app-cp-el-wrp { position: absolute; width: calc(100% + 2px); height: calc(100% + 2px); top: -1px; left: -1px; background-image: url(/images/img_preloader.gif); background-repeat: no-repeat; background-size: 100% 100%; background-color: #f2f2f2 !important; z-index: 9999; margin: 0 !important; border-radius: 2px; }
.app-content-placeholder .app-cp-el-hidden { display: none; }
.app-content-placeholder .app-pq-button .app-cp-el-wrp, .app-content-placeholder .app-pq-split-button  .app-cp-el-wrp { border-radius: 40px; } 
.app-content-placeholder .app-toolbar-layouts .app-cp-el-wrp { height: 16px; }
.app-content-placeholder .app-toolbar-reg-info .app-cp-el { color: #ffffff; }
.app-content-placeholder .app-toolbar-reg-info .app-cp-el-wrp { height: 17px; top: 1px; }

/* ruben */

.rbn-pm-module-content { flex: 1; background-color: #ffffff; display: flex; align-items: stretch; }
.rbn-pm-left { width: 250px; display: flex; align-self: flex-start; flex-direction: column; height: calc(100vh - 76px); }
.rbn-pm-main { flex: 1; border-left: 1px solid #dddddd; display: flex; flex-direction: column; }
.rbn-pm-search { margin: 20px 20px 0 20px; border: 1px solid #dddddd; border-radius: 50px; display: flex; align-items: center; height: 39px; padding: 0 10px 0 10px; }
.rbn-pm-search input { width: 100%; padding: 0 10px 0 10px; font-size: 15px; border: none; line-height: 30px; }
.rbn-pm-search i { color: #989CA1; }
.rbn-pm-search i:first-of-type { font-size: 17px; width: 17px; }
.rbn-pm-search-clear { cursor: pointer; font-size: 19px; width: 19px; }
.rbn-pm-headers { display: flex; align-items: center; justify-content: space-between; padding: 4px 25px 8px 25px; }
.rbn-pm-headers i { font-size: 12px; color: #818893; margin-left: 2px; }
.rbn-pm-headers span { font-weight: bold; font-size: 15px; cursor: pointer; }
.rbn-pm-header-sort-field-name .rbn-pm-header-count i { display: none !important; }
.rbn-pm-header-sort-field-count .rbn-pm-header-name i { display: none !important; }
.rbn-pm-header-sort-dir-asc .rbn-pm-sort-down { display: none !important; }
.rbn-pm-header-sort-dir-desc .rbn-pm-sort-up { display: none !important; }
.rbn-pm-add-item { margin: 20px 25px 8px 25px; height: 32px; display: flex; align-items: center; }
.rbn-pm-add-item p { font-size: 15px; color: #707070; }
.rbn-pm-add-item p:hover { cursor: pointer; color: #50A6EE; }
.rbn-pm-add-item input, .rbn-pm-item input { width: 176px; border: 1px solid #00CBFE; border-radius: 8px; height: 32px; outline: none; box-shadow: none !important; }
.rbn-pm-add-item input { width: 203px; }
.rbn-pm-items { position: relative; overflow: hidden; margin-bottom: 20px; }
.rbn-pm-item { display: flex; align-items: center; justify-content: space-between; height: 32px; padding: 0 25px 0 25px; }
.rbn-pm-item p { font-size: 15px; width: 170px; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; margin: 0; }
.rbn-pm-item span i { color: #00CBFE; }
.rbn-pm-item div { display: none; cursor: pointer; margin-right: -3px; }
.rbn-pm-item div i { font-size: 16px; color: #727A86; }
.rbn-pm-item div i.fas { display: none; }
.rbn-pm-item-del { margin-left: 12px; }
.rbn-pm-item-read .rbn-pm-item-del:hover i.fas { color: #F44566; display: inline-block; }
.rbn-pm-item-read .rbn-pm-item-del:hover i.far { display: none; }
.rbn-pm-item-read .rbn-pm-item-edit:hover i.fas { color: #50A6EE; display: inline-block; }
.rbn-pm-item-read .rbn-pm-item-edit:hover i.far { display: none; }
.rbn-pm-item-read:hover { cursor: pointer; background-color: #E9EBEC; }
.rbn-pm-item-read:hover div { display: block; }
.rbn-pm-item-read:hover span { display: none; }
.rbn-pm-item.selected { background-color: #E9EBEC; }
.rbn-pm-editor { flex: 1; padding: 40px 40px 0 40px; }
.rbn-pm-editor-main { display: flex; align-items: center; justify-content: center; gap: 50px; }
.rbn-pm-editor-left i, .rbn-pm-editor-right i { font-size: 51px; color: #C2C5CB; cursor: pointer; }
.rbn-pm-editor-left i:hover, .rbn-pm-editor-right i:hover { color: #989CA1; }
.rbn-pm-editor-center { display: flex; align-items: strech; overflow: hidden; width: 800px; height: 474px; }
.rbn-pm-editor-center, .rbn-pm-editor-center > div { border-radius: 25px; }
.rbn-pm-editor-2 .rbn-pm-editor-center, .rbn-pm-editor-2 .rbn-pm-editor-center > div { border-radius: 50px 100px 0px 50px; }
.rbn-pm-editor-add { display: none; align-items: center; justify-content: center; width: 100%; flex-direction: column; gap: 30px; }
.rbn-pm-editor-add > div { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 19px; }
.rbn-pm-editor-add > div i { color: #727A86; }
.rbn-pm-editor-add > div:first-of-type i { font-size: 28px; }
.rbn-pm-editor-add > div:last-of-type i { font-size: 30px; }
.rbn-pm-thumbs { height: 195px; width: 100%; max-width: calc(100vw - 550px); overflow: hidden; display: flex; align-items: stretch; padding: 0 15px 4px 15px; }
.rbn-pm-thumbs-ctl { position: relative; display: flex; gap: 22px; align-items: flex-end; padding-left: 15px; }
.rbn-pm-thumbs-ctl > div { width: 116px; min-width: 116px; min-height: 116px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; }
.rbn-pm-thumbs-ctl > div.ps__scrollbar-x-rail { min-height: 6px; }
.rbn-pm-thumb { flex-direction: column; }
.rbn-pm-thumb-image { width: 116px; height: 116px; border-radius: 10px; background-size: auto 100%; cursor: pointer; background-position: center; }
.rbn-pm-image-del { display: none; margin-bottom: 14px; cursor: pointer; }
.rbn-pm-image-del i { font-size: 22px; }
.rbn-pm-image-del i.far { color: #727A86; }
.rbn-pm-image-del i.fas { color: #F44566; display: none; }
.rbn-pm-image-del:hover i.far { display: none; }
.rbn-pm-image-del:hover i.fas { display: inline-block; }
.rbn-pm-thumb-image-wrp, .rbn-pm-image-add-wrp, .rbn-pm-image-save-btn-wrp { padding: 7px; border-radius: 12px; border: 4px solid #ffffff; }
.rbn-pm-thumb:hover .rbn-pm-thumb-image-wrp, .rbn-pm-image-add-wrp:hover { border-color: #D7D9DC; }
.rbn-pm-thumb-selected:hover .rbn-pm-thumb-image-wrp, .rbn-pm-image-save-btn-wrp { border-color: #00CBFE; } 
.rbn-pm-thumb-selected .rbn-pm-image-del { display: flex; }
.rbn-pm-thumb-selected .rbn-pm-thumb-image-wrp, .rbn-pm-editor-adding .rbn-pm-image-add-wrp { border-color: #00CBFE; }
.rbn-pm-thumbs-ctl > div.rbn-pm-image-save-wrp { flex-direction: column; width: auto; margin-left: -11px; }
.rbn-pm-thumbs-ctl > div.rbn-pm-image-save-wrp .rbn-pm-image-del { display: block; }
.rbn-pm-thumbs-ctl > div.rbn-pm-image-add-wrp { min-width: auto; width: auto; margin-left: -11px; }
.rbn-pm-image-add { min-width: 116px; width: 116px; height: 116px; background-color: #F2F2F2; cursor: pointer; color: #989CA1; font-size: 65px; font-weight: 300; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.rbn-pm-image-save { display: flex; flex-direction: column; justify-content: center; align-items: center; background-color: #00CBFE; cursor: pointer; width: 116px; min-height: 116px; border-radius: 10px; }
.rbn-pm-image-save i { font-size: 30px; color: #ffffff; }
.rbn-pm-image-save p { margin: 10px 0 0 0; font-size: 15px; color: #ffffff; }
.rbn-pm-image-save p:first-letter { text-transform: uppercase; }
.rbn-pm-nodata { display: none; font-size: 20px; font-weight: 500; text-align: center; }
.rbn-pm-main-nodata { justify-content: center; align-items: center; }
.rbn-pm-main-nodata .rbn-pm-editor, .rbn-pm-main-nodata .rbn-pm-thumbs { display: none; }
.rbn-pm-main-nodata .rbn-pm-nodata { display: block; }
.rbn-pm-editor-adding .rbn-pm-editor-left, .rbn-pm-editor-adding .rbn-pm-editor-right, .rbn-pm-editor-adding .rbn-pm-editor-image { display: none; }
.rbn-pm-editor-adding .rbn-pm-editor-add { display: flex; }
.rbn-pm-editor-adding .rbn-pm-editor-center { background-color: #f2f2f2; }
.rbn-pm-editor-adding.rbn-pm-editor-cropping .rbn-pm-editor-image { display: block; }
.rbn-pm-editor-adding.rbn-pm-editor-cropping .rbn-pm-editor-add { display: none; }
.rbn-pm-action-view .rbn-pm-image-save-wrp { display: none; }
.rbn-pm-action-view .rbn-pm-image-add-wrp { display: flex; }
.rbn-pm-action-add .rbn-pm-image-save-wrp { display: flex; }
.rbn-pm-action-add .rbn-pm-image-add-wrp { display: none; }

.app-msg-box-layout-share { width: 493px; }
.app-msg-box-layout-share .app-msg-box-content { padding: 0 30px 24px 31px; }
.app-layout-share-1 { display: flex; align-items: flex-start; padding-top: 31px; }
.app-layout-share-1 > span { flex: 1; }
.app-layout-share-1 > label { font-size: 13px; color: #6E737B; text-transform: uppercase; font-weight: normal; margin-right: 8px; min-width: 100px; padding-top: 7px; text-align: right; }
.app-layout-share-1 .textbox { width: 100%; }
.app-layout-share-2 { border: 1px solid #B9BCC0; padding: 17px 13px 17px 13px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.fuelux .app-layout-share-2 .checkbox { margin: 0; }
.app-layout-share-2 .checkbox .checkbox-label { padding-left: 14px; line-height: 1em; color: #3C4450 !important; }


