@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Orbitron:wght@400;500;600;700;800;900&display=swap");
html {
  box-sizing: border-box;
}

*::before,
*,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100vh;
}

.container {
  width: 100%;
  height: 100%;
  background: #202020;
  overflow: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
}
.container:before {
  content: "";
  z-index: 4010;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(#444 50%, #111 50%);
  background-size: 100% 4px;
  background-repeat: repeat-y;
  opacity: 0.14;
  box-shadow: inset 0px 0px 1px 1px rgba(0, 0, 0, 0.8);
  animation: pulse 5s linear infinite;
  pointer-events: none;
}

.topbar {
  background: #ff3333;
  min-height: 50px;
  display: flex;
  font-family: "Orbitron", monospace;
  color: #1a1a1a;
  font-weight: 600;
  padding: 0 20px;
}
.topbar .left, .topbar .center, .topbar .right {
  display: flex;
  flex: 1;
  align-items: center;
}

.container__inner {
  display: flex;
  padding: 20px;
  gap: 20px;
  height: calc(100% - 50px);
  width: inherit;
}
.container__inner .sidebar {
  flex: 0 0 200px;
}
.container__inner .body {
  flex: 1;
  color: #e6e6e6;
  font-family: "Orbitron", monospace;
  font-weight: 400;
  overflow-y: auto;
}
.container__inner .body article {
  border-left: 5px solid #e6e6e6;
  padding: 0 0 0 10px;
}
.container__inner .body article:not(:last-child) {
  margin: 0 0 20px 0;
}

.sidebar .sidebar__group {
  margin: 0 0 10px 0;
}
.sidebar .sidebar__group > *:not(:last-child) {
  margin: 0 0 10px 0;
}
.sidebar .sidebar__block .block__body .list {
  display: flex;
  flex-direction: column;
}
.sidebar .sidebar__block .block__body .list .list__item {
  display: flex;
  align-items: center;
  color: #e6e6e6;
  text-decoration: unset;
  padding: 4px 0;
}
.sidebar .sidebar__block .block__body .list .list__item.inactive {
  opacity: 0.5;
  pointer-events: none;
}
.sidebar .sidebar__block .block__body .list .list__item:hover, .sidebar .sidebar__block .block__body .list .list__item:active {
  color: #1a1a1a;
  background: #e6e6e6;
}
.sidebar .sidebar__block .block__body .list .list__item:hover .icn, .sidebar .sidebar__block .block__body .list .list__item:active .icn {
  color: #1a1a1a;
  background: #e6e6e6;
  fill: #000;
}
.sidebar .sidebar__block .block__body .list .list__item .left {
  flex: 1;
}
.sys__window {
  display: flex;
  flex-direction: column;
  border: 5px solid #ff3333;
}
.sys__window .window__heading {
  display: flex;
  background: #ff3333;
  color: black;
  padding: 5px;
}
.sys__window .window__heading .heading__caption {
  flex: 1;
  font-family: "Orbitron", monospace;
  color: #1a1a1a;
  font-weight: 600;
}
.sys__window .window__heading .heading__controls {
  margin-left: auto;
}
.sys__window .window__body {
  padding: 5px;
  color: #e6e6e6;
  font-family: "Orbitron", monospace;
  font-weight: 400;
}
.sys__window .window__body.scroll {
  overflow-y: scroll;
  max-height: 200px;
}

.icn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.icn.icn-arrow {
  background: url("../img/sprites.svg") no-repeat -1px -1px;
  width: 14px;
  height: 14px;
}

.inl_cont{
	position: relative;
}

.inl_cont > .ovl{
	position: absolute;
}

@keyframes pulse {
  0% {
    transform: scale(1.001);
    opacity: 0.14;
  }
  8% {
    transform: scale(1);
    opacity: 0.13;
  }
  15% {
    transform: scale(1.004);
    opacity: 0.14;
  }
  30% {
    transform: scale(1.002);
    opacity: 0.11;
  }
  100% {
    transform: scale(1);
    opacity: 0.14;
  }
}
@media (min-width: 240px) and (max-width: 768px) {
  .container .topbar .center, .container .topbar .right {
    display: none;
  }
  .container .container__inner {
    flex-direction: column;
  }
}

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