.gt.window {
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.75);
  position: fixed;
  display: flex;
  flex-direction: column;
  background: var(--theme-color-secondary);
  border: 1px solid var(--theme-color-primary);
}
.gt.window .titleBar {
  flex-shrink: 0;
  width: 100%;
  height: 30px;
  background: var(--theme-color-tertiary);
  display: flex;
  padding: 0 10px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--theme-color-primary);
}
.gt.window .titleBar .title {
  user-select: none;
  font-family: monospace;
}
.gt.window .titleBar .control button {
  user-select: none;
  background: none;
  border: none;
}
.gt.window .content {
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  height: calc(100% - 30px);
}
.gt.window .resizer {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  /* background: white; */
}
.gt.window .resizer.top-left {
  left: -5px;
  top: -5px;
  cursor: nwse-resize;
}
.gt.window .resizer.top-right {
  right: -5px;
  top: -5px;
  cursor: nesw-resize;
}
.gt.window .resizer.bottom-left {
  left: -5px;
  bottom: -5px;
  cursor: nesw-resize;
}
.gt.window .resizer.bottom-right {
  right: -5px;
  bottom: -5px;
  cursor: nwse-resize;
}
.gt.window.active {
  box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.75);
}
.gt.window.active .titleBar {
  background: linear-gradient(-135deg, var(--theme-color-primary), var(--theme-color-secondary) 50px, var(--theme-color-tertiary) 100px);
}

.gt *::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.gt *::-webkit-scrollbar-thumb {
  background: var(--theme-color-primary);
}
.gt *::-webkit-scrollbar-track {
  background: var(--theme-color-secondary);
}
.gt * {
  scrollbar-face-color: var(--theme-color-primary);
  scrollbar-track-color: var(--theme-color-secondary);
}
.gt * {
  scrollbar-color: var(--theme-color-primary) var(--theme-color-secondary);
  scrollbar-width: auto;
}
.gt.menubars {
  display: flex;
  flex-direction: column;
}
.gt.menubars .menubar {
  position: static;
}
.gt.menubar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background: black;
  display: flex;
  align-items: center;
}
.gt.menubar > * {
  margin: 4px 2px;
}
.gt.menubar > .dropdown {
  margin: 0 !important;
}
.gt.menubar > .dropdown > button {
  height: 25px;
  border: 0;
  padding: 0 5px;
}
.gt.menubar > .dropdown > div {
  background: var(--theme-background);
  position: absolute;
  flex-direction: column;
  transition: 0.2s;
  display: none;
  overflow: hidden;
}
.gt.menubar > .dropdown > div > * {
  margin-bottom: 2px;
  padding: 0 5px;
}
.gt.menubar > .dropdown > div hr {
  width: 100%;
  height: 1px;
  background: var(--theme-color-primary);
}
.gt.menubar > .dropdown > div button {
  border: 0;
  background: transparent;
}
.gt.menubar > .dropdown > div button:hover {
  background: var(--theme-color-highlightBg);
}
.gt.menubar > .dropdown:hover div {
  display: flex;
}

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