@charset "UTF-8";
:root {
  --handleBkg: transparent;
  --windowMenuActiveBorderColor: #75BAFF;
  --windowMenuWidth: 70px;
  --windowMenuBkg: #596f9b;
  --windowMenuHoverBkg: #8294B9;
  --windowMenuBorderColor: #88A4E0;
  --windowMenuBorderSize: 1px;
  --windowMenuAltBkg: rgb(130, 148, 185);
  --windowMenuAltTextColor: rgb(117, 186, 255);
  --itemMenuItemHoverBkg: #8294B9;
  --itemMenuTextColor: white;
  --itemMenuTextColorActive: #FFB563;
  --itemMenuWidth: 185px;
  --itemMenuBkg: #596f9b;
  --itemMenuAltBkg: white;
  --itemMenuBorderColor: #88A4E0;
  --itemMenuBorderSize: 1px;
  --itemMenuAltBorderColor: #c5c5c5;
  --adminMenuText: #596F9B;
  --adminMenuBkg: white;
  --adminMenuWidth: 200px;
  --adminModalWidth: 300px;
  --adminModalBkg: #596F9B;
  --adminMenuBorderColor: #75BAFF;
  --adminMenuInputBorderColor: #75BAFF;
  --adminMenuInputButtonColor: #75BAFF;
  --adminMenuBackBackgroundColor: #75BAFF;
  --adminMenuHoverBkg: #8294B9;
  --adminMenuButtonBkg: #75BAFF;
  --adminMenuButtonColor: white;
  --adminMenuButtonDeleteBkg: #E74C3C;
  --adminMenuButtonDeleteColor: white;
  --customMenuHeight: 32px;
  --animation: cubic-bezier(.02, .01, .47, 1);
}

.itemMenu {
  z-index: 2;
  height: 100vh;
  position: fixed;
  left: calc(0px - var(--itemMenuWidth) - var(--itemMenuBorderSize));
  top: var(--customMenuHeight);
  bottom: 0;
  transition: left 0.3s;
  width: fit-content;
}
.itemMenu.active {
  left: calc(var(--windowMenuWidth) + var(--windowMenuBorderSize));
}
.itemMenu-content {
  border-right: var(--itemMenuBorderSize) solid var(--itemMenuBorderColor);
  background-color: var(--itemMenuBkg);
  height: 100%;
  width: var(--itemMenuWidth);
}
.itemMenu-content .ui-resizable-e {
  top: 15px;
  opacity: 0.01;
  background-color: #596F9B;
}
.itemMenu-content-inside {
  height: calc(100% - 15px);
  padding-top: 15px;
}
.itemMenu-content-inside-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 2px;
  cursor: pointer;
}
.itemMenu-content-inside-close img {
  height: 10px;
  width: 10px;
}
.itemMenu-content-inside-items {
  overflow-x: hidden;
  overflow-y: auto;
  height: calc(100% - 22px - 8px);
  padding-left: 5px;
  padding-right: 5px;
  /* width */
}
.itemMenu-content-inside-items::-webkit-scrollbar {
  width: 5px;
}
.itemMenu-content-inside-items {
  /* Track */
}
.itemMenu-content-inside-items::-webkit-scrollbar-track {
  background: grey;
}
.itemMenu-content-inside-items {
  /* Handle */
}
.itemMenu-content-inside-items::-webkit-scrollbar-thumb {
  background: black;
}
.itemMenu-content-inside-items {
  /* Handle on hover */
}
.itemMenu-content-inside-items::-webkit-scrollbar-thumb:hover {
  background: black;
}
.itemMenu-content-inside-items::-webkit-scrollbar-corner {
  background: rgba(0, 0, 0, 0);
}
.itemMenu-content-inside-items-item {
  overflow: hidden;
  width: calc(100% - 10px);
  color: white;
  position: relative;
  font-family: Verdana, sans-serif;
  font-size: 11px;
  padding: 5px;
}
.itemMenu-content-inside-items-item:hover {
  background-color: var(--itemMenuItemHoverBkg);
  border-radius: 3px;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1);
}
.itemMenu-content-inside-items-item:hover .itemMenu-content-inside-items-item-content > *, .itemMenu-content-inside-items-item:hover .itemMenu-content-inside-items-item-content a {
  color: var(--itemMenuTextColorActive) !important;
  text-decoration: none !important;
}
.itemMenu-content-inside-items-item.frame {
  pointer-events: none;
  height: calc(100% - 10px);
}
.itemMenu-content-inside-items-item.frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.itemMenu-content-inside-items-item-content {
  width: max-content;
  display: flex;
  align-items: center;
}
.itemMenu-content-inside-items-item-content > *, .itemMenu-content-inside-items-item-content a {
  color: var(--itemMenuTextColor) !important;
  text-decoration: none !important;
}
.itemMenu-content-inside-items-item-content-link {
  margin-right: 5px;
  cursor: pointer;
  display: none;
  align-items: center;
}
.itemMenu-content-inside-items-item-content-link img {
  height: 14px;
  width: 16px;
}
.itemMenu-content-inside-items-item-content-code {
  display: flex;
  align-items: center;
}
.itemMenu-content-inside-items-item-content-code .element-image {
  display: flex;
}
.itemMenu-content-inside-items-item-content-code img {
  margin-right: 5px;
}
.itemMenu-content-inside-items-item-alt {
  transition: opacity 300ms ease-in-out;
  opacity: 0;
  align-items: center;
  pointer-events: none;
  position: fixed;
  display: flex;
}
.itemMenu-content-inside-items-item-alt-arrow {
  width: 0;
  position: relative;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 10px solid var(--itemMenuAltBorderColor);
}
.itemMenu-content-inside-items-item-alt-arrow-sub {
  top: -5px;
  left: 2px;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 9px solid var(--itemMenuAltBkg);
}
.itemMenu-content-inside-items-item-alt-text {
  border: 1px solid var(--itemMenuAltBorderColor);
  background-color: var(--itemMenuAltBkg);
  border-radius: 3px;
  width: max-content;
  box-shadow: rgba(0, 0, 0, 0.1) 4px 4px 6px;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  padding: 4px 10px;
  display: flex;
  align-items: center;
}
.itemMenu-content-inside-items-item-alt-text .element-image {
  display: flex;
}
.itemMenu-content-inside-items-item-alt-text img {
  margin-right: 5px;
}
.itemMenu-content-inside-items-item-alt-text > *, .itemMenu-content-inside-items-item-alt-text a {
  color: black !important;
  text-decoration: none !important;
}

.windowMenu {
  z-index: 3;
  border-right: var(--windowMenuBorderSize) solid var(--windowMenuBorderColor);
  background-color: var(--windowMenuBkg);
  height: 100vh;
  position: fixed;
  left: calc(0px - var(--windowMenuWidth) - var(--windowMenuBorderSize));
  top: var(--customMenuHeight);
  bottom: 0;
  width: var(--windowMenuWidth);
  transition: left 0.5s;
}
.windowMenu.active {
  left: 0;
}
.windowMenu.active .windowMenu-handle {
  display: none;
}
.windowMenu-handle {
  cursor: pointer;
  width: 5px;
  position: fixed;
  opacity: 0;
  background-color: var(--handleBkg);
  top: var(--customMenuHeight);
  bottom: 0;
  left: 0;
  transition: opacity 300ms ease-in-out;
}
.windowMenu-handle:hover {
  opacity: 1;
}
.windowMenu-content {
  padding-top: 15px;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  height: calc(100% - 15px);
}
.windowMenu-content-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 2px;
  cursor: pointer;
}
.windowMenu-content-close img {
  height: 10px;
  width: 10px;
}
.windowMenu-content-items {
  width: 100%;
  overflow-y: auto;
  height: calc(100vh - 15px - 32px);
  /* width */
}
.windowMenu-content-items::-webkit-scrollbar {
  width: 5px;
}
.windowMenu-content-items {
  /* Track */
}
.windowMenu-content-items::-webkit-scrollbar-track {
  background: grey;
}
.windowMenu-content-items {
  /* Handle */
}
.windowMenu-content-items::-webkit-scrollbar-thumb {
  background: black;
}
.windowMenu-content-items {
  /* Handle on hover */
}
.windowMenu-content-items::-webkit-scrollbar-thumb:hover {
  background: black;
}
.windowMenu-content-items::-webkit-scrollbar-corner {
  background: rgba(0, 0, 0, 0);
}
.windowMenu-content-items-window {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.windowMenu-content-items-window:not(:last-child) {
  margin-bottom: 5px;
}
.windowMenu-content-items-window.active:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: var(--windowMenuActiveBorderColor);
}
.windowMenu-content-items-window-block {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 3px;
  transition: fil 1ms ease-in-out;
}
.windowMenu-content-items-window-block:hover {
  background-color: var(--windowMenuHoverBkg);
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1);
}
.windowMenu-content-items-window-block-count {
  display: none;
  background-color: #3498DB;
  color: white;
  border-radius: 100px;
  height: 14px;
  font-size: 9px;
  font-family: "Roboto", sans-serif;
  width: 14px;
  align-items: center;
  justify-content: center;
  font-weight: lighter;
  position: absolute;
  right: -3px;
  top: 0px;
}
.windowMenu-content-items-window-block-alt {
  transition: opacity 300ms ease-in-out;
  display: none;
  align-items: center;
  pointer-events: none;
  position: fixed;
  left: 55px;
}
.windowMenu-content-items-window-block-alt-text {
  background-color: var(--windowMenuAltBkg);
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 3px;
  width: max-content;
  box-shadow: rgba(0, 0, 0, 0.1) 4px 4px 6px;
}
.windowMenu-content-items-window-block-alt-text {
  background-color: var(--windowMenuAltBkg);
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  color: var(--windowMenuAltTextColor);
  border-radius: 3px;
  font-size: 13px;
  font-family: Verdana, sans-serif;
  width: max-content;
  box-shadow: rgba(0, 0, 0, 0.1) 4px 4px 6px;
}
.windowMenu-content-items-window-block-icon {
  transition: filter 0.3s ease-in-out;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.windowMenu-content-items-window-block-icon img {
  height: 100%;
}

.checkbox-label {
  display: block;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  font-size: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  color: white;
  user-select: none;
}
.checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-label-mark {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  background-color: silver;
}
.checkbox-label-mark:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 3px;
  width: 2px;
  height: 5px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label:hover input ~ .checkbox-label-mark {
  background-color: gray;
}

.checkbox-label input:checked ~ .checkbox-label-mark {
  background-color: var(--adminMenuButtonBkg);
}

.checkbox-label input:checked ~ .checkbox-label-mark:after {
  display: block;
}

.dialog {
  position: absolute;
  background-color: #c5c5c5;
  height: 30px;
  display: flex;
  justify-content: right;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}
.dialog .checkbox-label-mark {
  background-color: white;
}
.dialog .checkbox-label:hover input ~ .checkbox-label-mark {
  background-color: #75BAFF;
}

.window {
  position: absolute;
  display: none;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.window.fullScreen {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 5 !important;
}
.window.fullScreen .window-inside {
  margin: 5px !important;
  height: calc(100% - 10px) !important;
}
.window.fullScreen .window-label {
  width: initial !important;
  max-width: initial !important;
}
.window.fullScreen .window-label-labeling-text {
  cursor: initial !important;
}
.window.fullScreen .window-content {
  width: 100% !important;
  height: 100% !important;
}
.window-draggable {
  background-color: black;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: none;
  opacity: 0.1;
}
.window-inside {
  border: solid #7F7F7F 0;
  text-align: center;
  background-color: #FFFFF8;
  box-shadow: rgba(0, 0, 0, 0.1) 4px 4px 6px;
}
.window-label {
  background-color: #1B1D26;
  cursor: move;
  height: 19px;
  font-size: 16px;
  padding: 0 5px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.window-label-linksContainer {
  display: flex;
  align-items: center;
}
.window-label-linksContainer-item {
  height: 13px;
  width: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.window-label-linksContainer-item:not(:last-child) {
  margin-right: 5px;
}
.window-label-linksContainer-item img {
  height: 100%;
  width: 100%;
}
.window-label-linksContainer-share {
  display: none;
  transition: transform 0.15s ease;
}
.window-label-linksContainer-share.share-copied {
  transform: scale(1.25);
}
.window-label-actions {
  display: flex;
  align-items: center;
  margin-right: -5px;
}
.window-label-actions-item {
  height: 13px;
  width: 13px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.window-label-actions-item:not(:last-child) {
  margin-right: 5px;
}
.window-label-actions-item img {
  height: 100%;
  width: 100%;
}
.window-label-actions-pin {
  display: none;
}
.window-label-actions-close, .window-label-actions-clean {
  display: none;
}
.window-label-actions-clean {
  display: none;
}
.window-label-labeling {
  width: calc(100% - 100px);
}
.window-label-labeling-text {
  color: white;
  cursor: pointer;
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.window-label-labeling-edit {
  display: none;
  text-align: center;
  align-items: center;
}
.window-label-labeling-edit-input {
  z-index: 2;
  width: 100%;
  height: 14px;
  padding-bottom: 0;
  padding-inline: 0;
  outline: none;
  border: none;
}
.window-label-notifications {
  display: none;
}
.window-content {
  flex-direction: column;
  overflow: auto;
  overflow: -moz-scrollbars-none;
}
.window-content-iframe {
  border: 0;
}
.window .element {
  border-bottom: solid #f3f3f3 0;
  text-align: left;
  display: flex;
  align-items: center;
  width: calc(100% - 10px);
}
.window .element:hover .element-delete-activated {
  display: block;
}
.window .element-content {
  order: 0;
}
.window .element-content > *, .window .element-content a {
  color: black !important;
  text-decoration: none !important;
}
.window .element-delete {
  display: none;
  cursor: pointer;
}
.window .element-truncate {
  text-overflow: ellipsis;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.window .link {
  font-size: 13px;
}
.window .link-url-icon {
  height: 13px;
  width: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.window .link-url-icon:not(:last-child) {
  margin-right: 5px;
}
.window .link-url-icon img {
  height: 100%;
  width: 100%;
}

.customMenu {
  height: calc(var(--customMenuHeight) - 1px);
  z-index: 3;
  background-color: #596F9B;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  padding: 0 0;
  align-items: center; /* Tohle zajišťuje perfektní svislé vycentrování */
  border-bottom: 1px solid #88A4E0;
}
.customMenu .logo {
  width: 100px;
  height: auto;
  margin-left: 5px;
  margin-right: 0;
}
.customMenu .ikony-container {
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.customMenu .ikony {
  display: flex;
  gap: 13px;
}
.customMenu .uzivatel {
  display: flex;
  align-items: center;
  color: white;
  font-size: 11px;
  font-family: Arial, sans-serif;
  margin-right: 5px;
}
.customMenu .logout {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-right: 5px;
  margin-left: 5px;
}
.customMenu .vyhledavaci-kontejner {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: auto;
  margin-right: 60px;
}
.customMenu .vyhledavaci-pole {
  width: 200px;
  height: 20px;
  padding-right: 25px;
  border: 1px solid #ccc;
  border-radius: 2px;
  outline: none;
  font-size: 12px;
}
.customMenu .vyhledavaci-pole:focus {
  border-color: red;
}
.customMenu .vyhledavaci-tlacitko {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: flex;
  align-items: center;
}
.customMenu .ikona-lupy {
  width: 14px;
  height: 14px;
}
.customMenu .ikona-wrapper {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 2px;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.customMenu .ikona-wrapper:hover {
  background-color: #8294B9;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1);
}
.customMenu .ikona {
  width: 24px;
  height: 24px;
}
.customMenu .notifikace {
  position: absolute;
  top: -1px;
  left: 17px;
  color: white;
  font-size: 9px;
  font-family: "Roboto", sans-serif;
  font-weight: lighter;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.customMenu .notifikace.orange {
  background-color: #F39C12;
}
.customMenu .notifikace.blue {
  background-color: #3498DB;
}
.customMenu .notifikace.red {
  background-color: #E74C3C;
}
.customMenu .svisla-cara {
  width: 1px;
  height: 20px;
  background-color: #88A4E0;
  margin: 3px 0;
}
.customMenu .menu-wrapper {
  margin-right: 30px;
  margin-left: 100px;
}
.customMenu .menu-ikona {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.customMenu .menu-box {
  z-index: 3;
  display: none;
  position: absolute;
  width: 100px;
  height: 25px;
  background-color: #DBEAF9;
  border-radius: 2px;
  top: 28px;
  left: 65px;
  transform: translateX(-65%);
  align-items: center;
  justify-content: space-evenly;
}
.customMenu .menu-box.active {
  display: flex;
}
.customMenu .menu-box img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

html, body {
  overscroll-behavior: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  background-color: #596F9B;
}
body #templates {
  display: none;
}
body #content {
  display: flex;
  flex-wrap: nowrap;
  transition: margin-left 0.5s;
}
body #content #windowsElements {
  position: relative;
}

.layout_default .picker_sample {
  display: none;
}
.layout_default .picker_done {
  display: none;
}
.layout_default .picker_sl {
  height: 94px !important;
}
.layout_default.picker_wrapper {
  width: 120px !important;
  padding: 0 !important;
}

.ui-sortable-helper.restricted {
  pointer-events: auto !important;
  cursor: not-allowed !important;
}
.ui-sortable-helper.restricted div {
  pointer-events: none !important;
}
.ui-resizable {
  position: static !important;
}
.ui-icon-gripsmall-diagonal-se {
  background-position: -66px -225px !important;
}

.fa-list {
  color: white;
}

form {
  margin: 0;
}

/*# sourceMappingURL=style.css.map */
