@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Outlined");
html, body {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  touch-action: none;
}

* {
  box-sizing: border-box;
}

body {
  background-color: #000;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  -webkit-user-select: none;
  user-select: none;
}
body {
  color: #efefef;
}

.main-area {
  display: flex;
  flex-grow: 1;
  margin-top: -2px;
}

.inactive, .inactive .menu {
  --blur-level: 0;
  --opacity: 100%;
  --filter: brightness(50%);
}
.inactive .header > * {
  color: #767676;
}

body, .dark {
  --blur-level: 65px;
  --opacity: 70%;
  --filter: brightness(100%) grayscale(0%);
}
body .menu, .dark .menu {
  --opacity: 85%;
}
body .inactive, .dark .inactive {
  --filter: brightness(150%) grayscale(0%);
}

.light {
  --blur-level: 30px;
  --opacity: 75%;
}
.light .inactive {
  --filter: brightness(85%) grayscale(0%);
}
.light .inactive .menu {
  --filter: brightness(90%) grayscale(0%);
}

.window {
  position: absolute;
  width: 500px;
  height: 500px;
  min-width: 300px;
  min-height: 200px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  align-content: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid #353535;
  animation: window-open 0.15s ease-out;
  transition: 0.3s border-color;
}
.window.close {
  animation: window-close 0.15s ease-in;
  animation-fill-mode: forwards;
}
.window .header {
  display: flex;
  align-content: center;
  justify-content: space-between;
  padding: 0 15px;
  width: 100%;
  background: rgb(29 29 29/var(--opacity));
  -webkit-backdrop-filter: blur(var(--blur-level));
  backdrop-filter: blur(var(--blur-level));
  filter: var(--filter);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1) inset;
  transition: 0.3s;
  transition-property: background-color, border-color;
  border-bottom: 1px solid;
  border-color: #1d1d1d;
}
.window .header .title-bar {
  display: flex;
  padding: 14px;
  padding-left: 0;
}
.window .header .title-bar img {
  width: 23px;
  margin: -4px -2px;
  margin-right: 4px;
}
.window .header .title-bar span {
  margin-left: 4px;
}
.window .title-btn {
  height: 100%;
  padding: 2px 4px;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.window .title-btn, .window .title-btn span {
  font-size: 18px;
  font-weight: bold;
}
.window .menu {
  height: 100%;
  padding: 20px 10px;
  background: rgb(23 23 23/var(--opacity));
  -webkit-backdrop-filter: blur(var(--blur-level));
  backdrop-filter: blur(var(--blur-level));
  filter: var(--filter);
  padding-right: 0;
  width: 140px;
  border-right: 1px solid #171717;
  margin-right: -1px;
  transition: 0.3s;
  transition-property: background-color, border-color;
}
.window .menu ul {
  list-style: none;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
}
.window .menu ul li.category-title {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.8;
  padding-left: 4px;
}
.window .menu ul li {
  font-size: 13px;
  padding: 5px 4px;
  padding-left: 13px;
}
.window .content {
  background: #1c1c1c;
  flex-grow: 1;
  padding: 20px 15px;
  height: 100%;
  transition: 0.3s background-color;
  margin-left: -1px;
}

.light {
  color: #333;
}
.light .header {
  background-color: rgb(255 255 255/var(--opacity));
  border-color: white;
}
.light .window {
  border-color: #b8b8b8;
}
.light .content {
  background: #FFF;
}
.light .menu {
  background: rgb(255 255 255/var(--opacity));
  border-color: white;
}
.light .file-icon .icon > span.material-icons {
  color: #acacac;
  font-family: "Material Icons Outlined";
}

.resize-interface .resize-touch-area {
  position: absolute;
  width: 15px;
  height: 15px;
  z-index: 500;
}
.resize-interface .resize-touch-area.top {
  top: 0;
  left: 0;
  width: 100%;
  cursor: ns-resize;
}
.resize-interface .resize-touch-area.bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  cursor: ns-resize;
}
.resize-interface .resize-touch-area.left {
  top: 0;
  left: 0;
  height: 100%;
  cursor: ew-resize;
}
.resize-interface .resize-touch-area.right {
  top: 0;
  right: 0;
  height: 100%;
  cursor: ew-resize;
}
.resize-interface .resize-touch-area.top-left {
  top: 0;
  left: 0;
  cursor: nwse-resize;
}
.resize-interface .resize-touch-area.top-right {
  top: 0;
  right: 0;
  cursor: nesw-resize;
}
.resize-interface .resize-touch-area.bottom-left {
  bottom: 0;
  left: 0;
  cursor: nesw-resize;
}
.resize-interface .resize-touch-area.bottom-right {
  bottom: 0;
  right: 0;
  cursor: nwse-resize;
}

.desktop {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-image: url("roberto-nickson-lGCfApDzhYw-unsplash.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: 0.6s opacity;
}
.desktop.show {
  opacity: 1;
}

.container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.template {
  display: none;
}

@keyframes window-open {
  0% {
/*     opacity: 0; */
    transform: scale(0);
  }
  100% {
/*     opacity: 1; */
    transform: scale(1);
  }
}
@keyframes window-close {
  0% {
/*     opacity: 1; */
    transform: scale(1);
  }
  100% {
/*     opacity: 0; */
    transform: scale(1);
  }
}
.file-icon-list {
  display: flex;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
  align-content: flex-start;
}
.file-icon-list .file-icon {
  width: 100px;
  height: 100px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.file-icon-list .file-icon .filename {
  font-size: 13px;
  font-weight: 600;
}
.file-icon-list .file-icon.selected {
  background-color: rgba(0, 0, 0, 0.5);
}
.file-icon-list .file-icon .icon span {
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  font-size: 65px;
}
.file-icon-list.smaller {
  padding: 10px;
}
.file-icon-list.smaller .file-icon {
  width: 70px;
  height: 70px;
  margin: 15px;
}
.file-icon-list.smaller .icon span {
  font-size: 55px;
}

.desktop .file-icon-list .file-icon {
  color: #efefef;
}
.desktop .file-icon-list .file-icon .filename {
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}
.desktop .file-icon-list .file-icon .icon > span {
  font-family: "Material Icons" !important;
  color: #efefef;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

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