:root {
  --panel-background: #363F44;
  --panel-text-color: #B3B3B3;
  --panel-text-color-highlight: #eee;
  --button-background: #4c585e;
  --button-background-highlight: #586870;
  --button-background-highlight-transparent: rgba(255, 255, 255, 0.05);
  --button-text-color: #B3B3B3;
  --panel-border-dark: rgba(0, 0, 0, 0.5);
  --panel-border-light: rgba(255, 255, 255, 0.2);
  --input-background: #9aa7ab;
  --input-text-color: #000000;
  --window-background: rgba(206, 205, 205, 0.9);
  --window-shadow: -1px -1px 0 0 rgba(255, 255, 255, 0.8), 1px 1px 0 0 rgba(0, 0, 0, 0.8);
  --window-border-color: #658FC3;
  --window-caption-background: #658FC3;
  --window-caption-color: white;
  --window-icon-label-color: white;
  --icon-white-filter: none;
  --listitem-font-size: 12px;
  --color-success: #17BB64;
  --color-error: #eb6b4e;
}

html {
  box-sizing: border-box;
  touch-action: none;
}

*, *:before, *:after {
  box-sizing: inherit;
  touch-action: none;
}

body {
  padding: 0;
  margin: 0;
  overflow: hidden;
  touch-action: none;
  font-family: sans-serif;
  background-color: black;
}

body.custompointer {
  cursor: url("../_img/cursor/blank.cur"), default;
}

body.custompointer #desktop,
body.custompointer textarea {
  cursor: url("../_img/cursor/blank.cur"), default;
}

#screen {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

#desktop {
  background-color: #697f88;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

#mousepointer {
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 100001;
  pointer-events: none;
  background-image: url("../_img/cursor/pointer_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  color: #ec6a44;
  transform: translate(-20px, -20px);
}

.selectBox {
  border: 1px dashed rgba(255, 255, 255, 0.47);
  position: absolute;
  display: none;
  background-color: rgba(60, 90, 117, 0.3);
}

.selectBox.active {
  display: block;
}

iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

#globalDragItem {
  position: absolute;
  pointer-events: none;
  width: 16px;
  height: 16px;
  z-index: 100000;
  opacity: 0;
  transition: opacity 0.4s ease;
}

#globalDragItem .dragclone {
  position: absolute;
  background-color: #D7E7F3;
  padding: 2px;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

#globalDragItem.visible {
  opacity: 1;
}

.topbar {
  position: absolute;
  z-index: 100;
  background-color: #ECECEC;
  height: 20px;
  left: 0;
  right: 0;
  top: 0;
}
.topbar .homebutton {
  user-select: none;
  -webkit-user-select: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 130px;
  padding: 0 10px;
  font-size: 12px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
}
.topbar .homebutton small {
  opacity: 0.6;
  font-size: 9px;
  margin-left: 5px;
}
.topbar .homebutton:hover {
  background-color: white;
}
.topbar .messageContainer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: 12px;
  padding: 0 10px;
  display: flex;
  align-items: center;
}
.topbar .menu {
  position: absolute;
  top: 0;
  left: 130px;
}
.topbar .menuitem {
  user-select: none;
  -webkit-user-select: none;
  display: inline-block;
}
.topbar .menuitem.divider {
  pointer-events: none;
  height: 2px;
  margin: 2px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.topbar .menuitem.disabled {
  pointer-events: none;
  opacity: 0.5;
  position: relative;
}
.topbar .menuitem label {
  display: block;
  padding: 0 10px;
  font-size: 12px;
  line-height: 20px;
}
.topbar .menuitem label:hover {
  background-color: white;
  cursor: pointer;
}
.topbar .menuitem .submenu {
  display: none;
  position: absolute;
  background-color: white;
  border: 1px solid silver;
  white-space: nowrap;
}
.topbar .menuitem .submenu .menuitem {
  display: block;
}
.topbar .menuitem .submenu.active {
  display: block;
}

.popupmenu {
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  background-color: #ECECEC;
  z-index: 100;
}
.popupmenu .menuitem {
  user-select: none;
  -webkit-user-select: none;
  display: block;
}
.popupmenu .menuitem.divider {
  pointer-events: none;
  height: 2px;
  margin: 2px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.popupmenu .menuitem.disabled {
  pointer-events: none;
  opacity: 0.5;
  position: relative;
}
.popupmenu .menuitem label {
  display: block;
  padding: 2px 20px 2px 10px;
  font-size: 12px;
  line-height: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.popupmenu .menuitem label:hover {
  background-color: white;
  cursor: pointer;
}
.popupmenu .menuitem:last-child label {
  border-bottom: none;
}
.popupmenu .menuitem .submenu {
  display: none;
  position: absolute;
  background-color: white;
  border: 1px solid silver;
  white-space: nowrap;
}
.popupmenu .menuitem .submenu .menuitem {
  display: block;
}
.popupmenu .menuitem .submenu.active {
  display: block;
}

#desktop .window {
  z-index: 10;
  position: absolute;
  border: 2px solid var(--window-border-color);
  width: 240px;
  height: 200px;
  resize: both;
  box-shadow: var(--window-shadow);
  background-color: var(--window-background);
  user-select: none;
  -webkit-user-select: none;
  will-change: transform;
}
#desktop .window.borderless {
  border: none;
  box-shadow: none;
  background: none;
}
#desktop .window.borderless .inner {
  top: 0;
  overflow: hidden;
}
#desktop .window.borderless .bar {
  display: none;
}
#desktop .window .inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 19px;
  overflow: auto;
  transition: right 0.3s ease-in-out;
}
#desktop .window .inner.droptargetactive {
  background-color: rgba(255, 255, 255, 0.2);
}
#desktop .window .inner::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}
#desktop .window .inner::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
#desktop .window .inner::-webkit-scrollbar-thumb {
  background: #658fc3;
  border: 1px solid #ffffff;
  border-bottom-color: black;
  border-right-color: black;
}
#desktop .window .inner::-webkit-scrollbar-thumb:hover {
  background: #719cd1;
}
#desktop .window .inner::-webkit-scrollbar-thumb:active {
  background: #5b85b6;
}
#desktop .window .inner::-webkit-scrollbar-track {
  background: #7a7a7a;
  border: 0;
}
#desktop .window .inner ::-webkit-scrollbar-corner {
  background: #7a7a7a;
}
#desktop .window .bar {
  background-color: var(--window-caption-background);
  color: var(--window-caption-color);
  padding: 2px;
  border-bottom: 1px solid black;
  position: relative;
  padding-left: 20px;
  height: 19px;
}
#desktop .window .bar .caption {
  display: inline-block;
  font-size: 12px;
  font-family: sans-serif;
  line-height: 12px;
}
#desktop .window .bar .close {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 1px;
  top: 1px;
}
#desktop .window .bar .close:before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.67);
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -2px 0 0 -2px;
}
#desktop .window .bar .close:hover {
  border: 1px solid white;
}
#desktop .window .bar .button {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: absolute;
  right: 1px;
  top: 1px;
}
#desktop .window .bar .button.view {
  right: 18px;
}
#desktop .window .bar .button.maximize {
  /*right: 18px;*/
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.3803921569);
}
#desktop .window .bar .button:hover {
  border: 1px solid white;
  cursor: pointer;
}
#desktop .window .bar .button:hover.maximize {
  box-shadow: inset 0 3px 0 #ffffff;
}
#desktop .window .sizer {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 14px;
  height: 14px;
  border: 7px solid transparent;
  z-index: 10;
}
#desktop .window .sizer:before {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 14px;
  height: 14px;
  border: 7px solid white;
  border-left-color: transparent;
  border-top-color: transparent;
  z-index: 10;
  content: "";
  left: -7px;
  top: -6px;
  border-bottom-color: #658FC3;
  border-right-color: #658FC3;
}
#desktop .window .sizer.custom:before {
  display: none;
}
#desktop .window.inactive {
  opacity: 0.8;
}
#desktop .window.inactive .inner {
  pointer-events: none;
}
#desktop .window.inactive .bar {
  background-color: #6e8497;
}
#desktop .window.inactivecontent .inner {
  pointer-events: none;
}

body.defaultpointer #desktop .window .sizer {
  cursor: nw-resize;
}

body.defaultpointer #desktop .window .bar {
  cursor: move;
}
body.defaultpointer #desktop .window .bar .close {
  cursor: pointer;
}

.icon {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 5px;
  font-family: sans-serif;
  text-align: center;
}
.icon.delayed {
  transition: opacity 0.4s ease;
}
.icon .glyph {
  width: 40px;
  height: 40px;
  background-color: #b7b5b7;
  border-radius: 10px;
  display: block;
  margin: auto;
}
.icon .glyph.cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.icon .glyph.contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.icon .glyph .preview {
  width: 90%;
  height: 90%;
  margin: 5%;
  position: absolute;
  background-color: transparent;
  display: flex;
  padding: 5%;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.icon .glyph .preview img {
  border: 2px solid white;
  display: block;
  max-height: 100%;
  max-width: 100%;
}
.icon .glyph .preview.default {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border: 1px solid white;
}
.icon .glyph canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
.icon .label {
  font-size: 11px;
  background-color: transparent;
  border: none;
  color: var(--window-icon-label-color);
  padding: 4px 0;
  position: absolute;
  left: 50%;
  user-select: none;
  -webkit-user-select: none;
}
.icon .label span {
  display: block;
  position: relative;
  left: -50%;
  max-height: 1.8em;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80px;
  line-height: 0.9em;
}
.icon .label .modal {
  translate: -50% 0;
}
.icon .label .modal input {
  text-align: center;
  width: 100px;
  font-size: 12px;
  border: 1px solid black;
  background-color: rgba(255, 255, 255, 0.9);
}
.icon .label .modal input:focus {
  outline: none;
}
.icon.active .image {
  box-shadow: 0 0 2px 2px yellow;
}
.icon.active .preview {
  background-color: rgba(255, 255, 255, 0.1);
}
.icon.ghost {
  opacity: 0.3;
}

.listview .icon {
  width: 100%;
  height: 20px;
}
.listview .icon .image {
  display: none;
}
.listview .icon .label {
  color: black;
  text-shadow: none;
  left: 0;
  text-align: left;
}
.listview .icon .label span {
  left: 0;
  text-align: left;
}

.loader {
  position: absolute;
  box-shadow: 0 0 0 8px rgba(238, 238, 238, 0.4) inset;
  width: 40px;
  height: 40px;
  margin: 10px;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
.loader.fade {
  opacity: 0;
}
.loader.centered {
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.loader:before, .loader:after {
  position: absolute;
  background: #fff;
  content: "";
  width: 8px;
  height: 8px;
  left: 0;
  top: 0;
  animation: square 2s linear infinite;
}
.loader:after {
  background: #000;
  animation-delay: -1s;
}

@keyframes square {
  25% {
    left: 100%;
    top: 0;
    transform: translate(-100%, 0);
  }
  50% {
    left: 100%;
    top: 100%;
    transform: translate(-100%, -100%);
  }
  75% {
    left: 0;
    top: 100%;
    transform: translate(0, -100%);
  }
}
.notificationcontainer {
  position: absolute;
  top: 25px;
  right: 0;
  z-index: 9999;
  width: 200px;
  background-color: var(--panel-background);
  color: var(--panel-text-color);
  border: 1px solid var(--panel-border-dark);
  border-left-color: var(--panel-border-light);
  border-top-color: var(--panel-border-light);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}
.notificationcontainer.active {
  opacity: 1;
  pointer-events: all;
}
.notificationcontainer .notification {
  padding: 10px;
  font-size: 12px;
}
.notificationcontainer .notification.error {
  border-left: 2px solid #eb6b4e;
  padding-left: 8px;
}
.notificationcontainer .notification label {
  display: block;
  font-weight: bold;
  margin-bottom: 4px;
}
.notificationcontainer .notification label .close {
  float: right;
  cursor: pointer;
  opacity: 0.7;
}
.notificationcontainer .notification label .close:hover {
  opacity: 1;
}
.notificationcontainer .notification .text {
  margin-bottom: 10px;
}
.notificationcontainer .notification .progress {
  position: relative;
  margin-top: 17px;
}
.notificationcontainer .notification .progress .text {
  position: absolute;
  right: 0;
  top: -14px;
}
.notificationcontainer .notification .bar {
  width: 100%;
  height: 7px;
  border: 1px solid white;
  position: relative;
  margin-top: 8px;
}
.notificationcontainer .notification .bar .inner {
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}

.toast {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 9999;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}
.toast.waiting {
  border: 2px solid var(--panel-border-dark);
  border-left: 1px solid transparent;
  animation: spin 1s infinite linear;
}
.toast.error {
  background: linear-gradient(0deg, rgba(235, 107, 78, 0.8) 0%, rgba(30, 64, 51, 0.1) 80%);
  border: 1px solid #eb6b4e;
}
.toast.success {
  background: var(--color-success);
}
.toast.error {
  background: var(--color-error);
}
.toast.active {
  opacity: 1;
  pointer-events: all;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.content .panel {
  background-color: var(--panel-background);
  color: var(--panel-text-color);
  border: 1px solid var(--panel-border-dark);
  border-left-color: var(--panel-border-light);
  border-top-color: var(--panel-border-light);
}
.content .panel.light {
  background-color: #6a757b;
}
.content .panel.transparent {
  background-color: transparent;
  border: none;
}
.content .panel.borderbottom, .content .panel.transparent.borderbottom {
  border-bottom: 1px solid var(--panel-border-dark);
}
.content .panel::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}
.content .panel::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
.content .panel::-webkit-scrollbar-thumb {
  background: #658fc3;
  border: 1px solid #ffffff;
  border-bottom-color: black;
  border-right-color: black;
}
.content .panel::-webkit-scrollbar-thumb:hover {
  background: #719cd1;
}
.content .panel::-webkit-scrollbar-thumb:active {
  background: #5b85b6;
}
.content .panel::-webkit-scrollbar-track {
  background: #7a7a7a;
  border: 0;
}
.content .panel ::-webkit-scrollbar-corner {
  background: #7a7a7a;
}
.content .button {
  border: 1px solid var(--panel-border-dark);
  background-color: var(--button-background);
  color: var(--button-text-color);
  border-left-color: var(--panel-border-light);
  border-top-color: var(--panel-border-light);
  padding: 3px 6px;
  text-align: center;
  margin: 2px;
  font-size: 13px;
}
.content .button.big {
  padding: 6px;
}
.content .button.inline {
  display: inline-block;
}
.content .button:hover {
  background-color: var(--button-background-highlight);
  cursor: pointer;
}
.content .button.transparent {
  background-color: transparent;
  border: none;
}
.content .button.transparent:hover {
  background-color: var(--button-background-highlight-transparent);
}
.content .button.square {
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: 0;
  position: relative;
  vertical-align: middle;
  display: inline-block;
}
.content .button.square .icon {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 50px;
  height: 50px;
  left: 7px;
}
.content .button.square label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 12px;
  text-shadow: 0 0 2px black, 0 0 2px black;
  color: #b3bac4;
}
.content .button.square:hover label {
  color: #fff;
}
.content .button.square.big {
  width: 80px;
  height: 80px;
  padding: 0;
  border-radius: 0;
  position: relative;
}
.content .button.square.big .icon {
  width: 60px;
  height: 60px;
  left: 10px;
}
.content .button.square.big label {
  bottom: 6px;
}
.content .iconbutton {
  width: 16px;
  height: 16px;
  background-color: red;
}
.content .iconbutton.right {
  position: absolute;
  right: 4px;
  top: 4px;
}
.content .iconbutton.left {
  position: absolute;
  left: 4px;
  top: 0;
}
.content .iconbutton.edit {
  background-color: transparent;
  background-image: url("../../_img/icons/line/edit.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px 16px;
  opacity: 0.5;
}
.content .iconbutton:hover {
  opacity: 1;
  cursor: pointer;
}
.content .content.withbuttons {
  bottom: 35px;
  border-bottom: 1px solid var(--panel-border-dark);
  overflow: auto;
}
.content .buttons {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  padding: 4px 8px;
}
.content .buttons.bottom {
  top: auto;
  bottom: 0;
  height: 35px;
  border-top: 1px solid var(--panel-border-light);
  text-align: right;
}
.content input[type=text],
.content input[type=password] {
  padding: 2px 4px;
  border: 1px solid rgba(0, 0, 0, 0.8);
  background-color: var(--input-background);
  line-height: 14px;
  height: 22px;
  color: var(--input-text-color);
}
.content input[type=text]:focus,
.content input[type=password]:focus {
  outline: none;
}
.content select {
  padding: 2px;
  border: 1px solid rgba(0, 0, 0, 0.8);
  background-color: var(--input-background);
}
.content .cel {
  padding: 2px 4px;
  display: inline-block;
  font-size: 12px;
}
.content .cel.label {
  background-color: rgba(255, 255, 255, 0.1);
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
  width: 100px;
}
.full {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.capitalize {
  text-transform: capitalize;
}

.overflow {
  overflow: auto;
}

.nooverflow {
  overflow: hidden;
}

.hidden {
  display: none;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.flex {
  display: flex;
}

.centered {
  text-align: center;
}

.toolbar {
  position: absolute;
  height: 40px;
  left: 0;
  right: 0;
  top: 0;
}
.toolbar .button.tool {
  position: absolute;
  top: 1px;
  width: 22px;
  height: 22px;
  background-color: transparent;
  border-color: transparent;
}
.toolbar .button.tool .icon {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  border-radius: 0;
  opacity: 0.5;
  filter: var(--icon-white-filter);
}
.toolbar .button.tool:hover {
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}
.toolbar .button.tool:hover .icon {
  opacity: 1;
}

.list .listitem {
  padding: 3px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  color: var(--panel-text-color);
  font-size: var(--listitem-font-size);
}
.list .listitem:hover {
  background-color: rgba(179, 209, 232, 0.15);
  color: var(--panel-text-color-highlight);
}
.list .listitem.selected {
  background-color: rgba(158, 199, 176, 0.2);
  color: var(--panel-text-color-highlight);
}
.list .listitem.folder, .list .listitem.file {
  padding-left: 18px;
  background-image: url("../../_img/icons/line/file.png");
  background-repeat: no-repeat;
  background-position: 0 2px;
}
.list .listitem.folder {
  background-image: url("../../_img/icons/line/folder.png");
}
.list .listitem .modal input {
  text-align: left;
  width: 100%;
  font-size: 12px;
  border: 1px solid black;
  background-color: rgba(255, 255, 255, 0.9);
}
.list .listitem .modal input:focus {
  outline: none;
}

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