:root {
  --main-bg-color: #fff;
  --bg-highlight: #f8f9fa;
  --bg-menu-highlight: #ecedef;
  --bg-table-highlight: #fffbe6;
  --bg-draggable: #f2f3f4;
  --bg-input: var(--main-bg-color);
  --bg-module: #fff;
  --bg-module-table: #f6f7f9;
  --bg-module-title: #f0f1f3;
  --bg-button-hover-rgba: #000a1e14;
  --main-line-color: #c2c5cbbf;
  --line-graph: #e2e4e7;
  --line-highlight: #66686c;
  --line-light: #999b9f;
  --main-text-color: #33373e;
  --black-text-color: #111317;
  --muted-text-color: #aaabaf;
  --menu-text-color: #555659;
  --title-text-color: #77787a;
  --support-icon-color: #66676a;
  --button-text-color: #fff;
  --button-bg-color: #307029;
  --button-bg-gray: #cccdcf;
  --button-highlight: #409437;
  --layer-bg-green: #97d091;
  --layer-bg-yellow: #ffc354;
  --green-value-color: #390;
  --yellow-value-color: #f5bc00;
  --red-value-color: #c00;
  --link-color: #2196f3;
  --red-value-color-rgba: rgba(204, 0, 0, 0.4);
  --chart-color-0: #2196f3;
  --chart-color-1: #390;
  --chart-color-2: #f5bc00;
  --chart-color-3: #f57f00;
  --chart-color-0-rgba: #2196f366;
  --chart-color-1-rgba: #33990066;
  --chart-color-2-rgba: #f5bc0066;
  --chart-color-3-rgba: #f57f0050;
  --chart-color-blend-0: #e49300;
  --chart-color-blend-0-rgba: #ffca6a;
  --gn-color: #ffce2b;
  --gn-color-rgb: #ffce2b;
  --gn-color-rgba: rgba(255, 206, 43, 0.5);
  --gn-highlight-color: rgba(255, 223, 126, 0.4);
  --gn-highlight-color-hover: rgba(255, 223, 126, 0.2);
  --gray: #999b9f;
  --gray-rgba: #80828480;
  --white: #fff;
  --black: #000;
  --header-height: 44px;
  --gn-logo: url(../img/logo-gn-black.png);
  overscroll-behavior-y: none;
}
:root .toggle-light {
  display: inherit;
}
:root .toggle-dark {
  display: none;
}
:root.dm {
  --main-bg-color: #202128;
  --bg-highlight: #111217;
  --bg-menu-highlight: #2b2d32;
  --bg-table-highlight: #fffbe6;
  --bg-draggable: #2b2d30;
  --bg-input: var(--bg-highlight);
  --bg-module: #2a2e36;
  --bg-module-table: #33373e;
  --bg-module-title: #3e424b;
  --bg-button-hover-rgba: rgba(235, 245, 255, 0.08);
  --main-line-color: #7c8a9099;
  --line-graph: #444548;
  --line-highlight: #dddee0;
  --line-light: #888a8c;
  --button-bg-gray: #33373e;
  --main-text-color: #eeeff2;
  --black-text-color: #f2f4f6;
  --muted-text-color: #66676a;
  --menu-text-color: #cccdcf;
  --title-text-color: #999a9c;
  --support-icon-color: #aaabaf;
  --green-value-color: #4ac50c;
  --red-value-color: #f46262;
  --red-value-color-rgba: rgba(244, 98, 98, 0.4);
  --gray: #666;
  --chart-color-blend-0-rgba: #b1822d;
  --gn-logo: url(../img/logo-gn-white.png);
  --secondary-color: #ccc !important;
}
:root.dm body.atlas.tech {
  --main-bg-color: #050805;
  --bg-highlight: #020402;
  --bg-menu-highlight: #0a0f0a;
  --bg-table-highlight: #0d140d;
  --bg-draggable: #0a0f0a;
  --bg-input: #020402;
  --bg-module: #0b120b;
  --bg-module-table: #0f160f;
  --bg-module-title: #132013;
  --bg-button-hover-rgba: rgba(0, 255, 0, 0.08);
  --main-line-color: #00ff0055;
  --line-graph: #0f1a0f;
  --line-highlight: #00ff00;
  --line-light: #1f3d1f;
  --button-bg-gray: #0f160f;
  --main-text-color: #b6ffb6;
  --black-text-color: #eaffea;
  --muted-text-color: #3a5f3a;
  --menu-text-color: #8aff8a;
  --title-text-color: #66cc66;
  --support-icon-color: #4d994d;
  --green-value-color: #00ff00;
  --red-value-color: #ff4d4d;
  --red-value-color-rgba: rgba(255, 77, 77, 0.4);
  --gray: #2f4f2f;
  --chart-color-blend-0-rgba: #00ff00aa;
  --gn-logo: url(../img/logo-gn-white.png);
  --gn-color: #00ff00 !important;
  --main-color: #00ff00 !important;
  --secondary-color: #66ff66 !important;
}
:root.dm .toggle-light {
  display: none;
}
:root.dm .toggle-dark {
  display: inherit;
}
* {
  box-sizing: border-box;
}
*::-webkit-scrollbar {
  -webkit-appearance: none;
}
*::-webkit-scrollbar:vertical {
  width: 4px;
}
*::-webkit-scrollbar:horizontal {
  height: 4px;
}
*::-webkit-scrollbar-thumb {
  border-radius: 0;
  border: 0;
  /* It can't be transparent. */
  background-color: var(--title-text-color);
}
*::-webkit-scrollbar-track {
  background-color: var(--main-bg-color);
  border-radius: 0;
}
*:focus {
  outline: none;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}
a.link {
  color: var(--link-color);
}
a.link:hover {
  text-decoration: underline;
}
b {
  font-weight: 500;
}
input {
  font-family: "Roboto", Arial, sans-serif;
  color: var(--main-text-color);
  background: transparent;
}
.clearfix {
  clear: both;
  display: block;
}
.blankspan-xs {
  height: 0.5em;
}
.blankspan-s {
  height: 1em;
}
.blankspan-m {
  height: 1.5em;
}
.blankspan-l {
  height: 2em;
}
.display-block {
  display: block;
}
.display-none {
  display: none;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.text-align-left {
  text-align: left;
}
.text-align-right {
  text-align: right;
}
.text-align-center {
  text-align: center;
}
[ng\:cloak],
[ng-cloak],
.ng-cloak {
  display: none !important;
}
html {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-y: scroll;
  overflow-y: overlay;
}
html body {
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: var(--main-bg-color);
  overflow-y: scroll;
  overflow-y: overlay;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  color: var(--main-text-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.1s ease-in;
}
html body .logo-wrapper {
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.3s;
}
html body .logo-wrapper:hover {
  cursor: pointer;
  opacity: 0.8;
}
html body.atlas header .logo-wrapper {
  width: 64px;
  height: 26px;
  background-image: var(--main-logo);
}
html body.atlas footer .logo-wrapper {
  margin-top: -1px;
  width: 132px;
  height: 11px;
  background-image: var(--gn-logo);
}
html body header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 1em;
  color: var(--menu-text-color);
  background: var(--main-bg-color);
  border-bottom: 1px solid var(--main-line-color);
  z-index: 1000;
  transition: background 0.1s ease-in;
}
html body header .pipe {
  width: 1px;
  height: 26px;
  background: var(--main-line-color);
  cursor: default;
}
html body header .breadcrumbs {
  display: flex;
  margin-top: 1px;
  justify-content: space-between;
  align-items: center;
  gap: 0 7px;
}
html body header .breadcrumbs .pipe {
  margin: 0 7px;
  display: none;
}
@media screen and (max-width: 768px) {
  html body header .breadcrumbs .pipe {
    display: inherit;
  }
}
html body header .breadcrumbs span.mobile-menu {
  font-size: 1em;
  display: none;
  transition: color 0.1s;
}
html body header .breadcrumbs span.mobile-menu:hover {
  color: var(--main-color);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  html body header .breadcrumbs span.mobile-menu {
    display: inherit;
  }
}
html body header .breadcrumbs .crumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 6px;
}
@media screen and (max-width: 640px) {
  html body header .breadcrumbs .crumb {
    display: none;
  }
}
html body header .breadcrumbs .crumb span.arrow {
  line-height: 1em;
  font-size: 0.75em;
  color: var(--muted-text-color);
}
html body header .breadcrumbs .crumb a {
  opacity: 1;
}
html body header .breadcrumbs .crumb a:hover p {
  text-decoration: underline;
}
html body header .breadcrumbs .crumb a p.text {
  margin: 6px 0;
  line-height: 1em;
}
html body header .menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 258px;
}
html body header .menu .switch {
  position: relative;
  display: inline-block;
  margin-left: 10px;
  width: 32px;
  height: 16px;
}
html body header .menu .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
html body header .menu .switch input:checked + .slider:before {
  background-color: var(--link-color);
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}
html body header .menu .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--button-bg-gray);
  -webkit-transition: 0.1s;
  transition: 0.4s;
  border-radius: 10px;
}
html body header .menu .switch .slider span.icon {
  position: absolute;
  top: 0;
  font-size: 10px;
  line-height: 16px;
}
html body header .menu .switch .slider span.icon.dm {
  left: 7px;
  color: var(--white);
}
html body header .menu .switch .slider span.icon.lm {
  right: 5px;
  color: var(--black);
}
html body header .menu .switch .slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 2px;
  bottom: 2px;
  background-color: var(--white);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
  z-index: 1;
}
html body header .menu .empty-switch {
  width: 42px;
  height: 16px;
}
html body header .menu .icon {
  position: relative;
}
html body header .menu .apps {
  position: relative;
}
html body header .menu .apps .icon {
  top: 2px;
  font-size: 1em;
  transition: color 0.1s;
}
html body header .menu .apps .icon:hover {
  color: var(--gn-color);
  cursor: pointer;
}
html body header .menu .apps .icon.open {
  color: var(--gn-color);
}
html body header .menu .apps nav {
  position: absolute;
  top: 27px;
  right: 0;
  margin-right: -0.5em;
  padding: 8px 0 4px;
  background: var(--main-bg-color);
  border: 1px solid var(--main-line-color);
  border-top: none;
  box-shadow: inset 0 4px 0 0 var(--gn-color), rgba(25, 25, 25, 0.2) 0px 3px 6px 0px;
  width: 152px;
  display: none;
}
html body header .menu .apps nav a {
  display: block;
  padding: 0.5em 1em;
  line-height: 18px;
  text-align: right;
}
html body header .menu .apps nav a:hover {
  opacity: 1;
  background-color: var(--bg-menu-highlight);
}
html body header .menu .pipe {
  margin: 0 4px;
}
html body header .menu a.logout {
  display: block;
}
html body header .menu a.logout .icon {
  top: 2px;
  font-size: 1em;
  transition: color 0.1s;
}
html body header .menu a.logout .icon:hover {
  color: var(--gn-color);
}
html body header .menu a.profile {
  display: block;
  width: 140px;
  text-align: right;
  text-wrap: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
html body header .menu a.profile:hover {
  text-decoration: underline;
}
html body #main {
  position: relative;
  margin: var(--header-height) 0 0;
  height: calc(100vh - var(--header-height));
  overflow: hidden;
}
html body #main .system-content {
  margin: 30px 1em;
}
html body #main .system-content h1 {
  margin: 20px 0;
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: -0.5px;
  color: var(--title-text-color);
}
html body #main .system-content p {
  margin: 10px 0;
  color: var(--main-text-color);
}
html body #main .system-content a {
  color: var(--link-color);
}
html body #main .system-content a:hover {
  opacity: 1;
  text-decoration: underline;
}
html body #main .system-content form {
  margin: 40px 0 0;
  width: 100%;
  max-width: 300px;
}
html body #main .system-content form .field {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
html body #main .system-content form .field label {
  color: inherit;
}
html body #main .system-content form .field input {
  padding: 3px 7px;
  width: 180px;
  height: 32px;
  font-size: 1em;
  background: var(--bg-input);
  border: 1px solid var(--main-line-color);
  border-radius: 2px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
html body #main .system-content form .field input:hover,
html body #main .system-content form .field input:focus-within {
  box-shadow: 0 0 0 1px var(--bg-input), 0 0 0 3px var(--gn-color);
  border-color: transparent;
}
html body #main .system-content form p {
  text-align: right;
  margin: 0;
}
html body #main .system-content form p a {
  font-size: 12px;
  color: var(--main-line-color);
}
html body #main .system-content form p a:hover {
  text-decoration: underline;
}
html body #main .system-content form input[type="submit"] {
  margin: 10px 0 0;
  padding: 10px 20px;
  width: auto;
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 1em;
  font-weight: 700;
  line-height: 1em;
  color: var(--button-text-color);
  background-color: var(--button-bg-color);
  transition: background-color 0.1s ease;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}
html body #main .system-content form input[type="submit"]:hover {
  background-color: var(--button-highlight);
}
html body #main > .info-bar {
  position: fixed;
  left: var(--tab-menu-width);
  top: 40px;
  width: calc(100% - var(--tab-menu-width));
  display: none;
  z-index: 800;
}
html body #main > .info-bar.weekly {
  left: 0;
  width: 100%;
}
html body #main > .info-bar .message {
  width: 100%;
  padding: 12px 1em;
  background: var(--layer-bg-yellow);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
html body #main > .info-bar .message.green {
  background-color: #97d091;
}
html body #main > .info-bar .message p {
  margin: 0 0 0 1em;
  width: calc(100% - 2em);
  line-height: 16px;
  text-align: center;
  color: var(--black);
  opacity: 0.8;
}
html body #main > .info-bar .message span.close {
  font-size: 1em;
  line-height: 10px;
  color: var(--black);
  opacity: 0.9;
}
html body #main > .info-bar .message span.close:hover {
  opacity: 0.6;
  cursor: pointer;
}
html body #main > .popup {
  position: fixed;
  top: 0;
  left: 0;
  box-sizing: border-box;
  padding: 1em;
  margin: 18px 0;
  width: max-content;
  max-width: 480px;
  background: var(--main-bg-color);
  border: 1px solid var(--main-line-color);
  border-radius: 8px;
  box-shadow: rgba(25, 25, 25, 0.2) 0px 3px 6px 0px;
  z-index: 900;
  display: none;
}
html body #main > .popup p {
  margin: 5px 0;
  line-height: 1.25em;
  color: var(--menu-text-color);
}
html body #main > .popup p.content {
  margin: 0;
}
html body #main > .popup p span.visibility,
html body #main > .popup p i {
  font-size: 0.86em;
}
html body #main > .popup p ul {
  margin: 0;
  padding: 0;
}
html body #main > .popup p ul li {
  padding: 1px 5px 5px;
  list-style: none;
}
html body #main > .popup span.info {
  position: absolute;
  top: 0.25em;
  right: 0.25em;
  font-size: 1em;
  color: #fff;
}
html body #main .confirm-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 900;
  display: none;
}
html body #main .confirm-layer > .dialog {
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 150px);
  padding: 0.67em 0.75em;
  margin: 0;
  width: 300px;
  background: var(--main-bg-color);
  border: 1px solid var(--main-line-color);
  border-radius: 2px;
  box-shadow: rgba(25, 25, 25, 0.2) 0px 3px 6px 0px;
}
html body #main .confirm-layer > .dialog p {
  margin: 0.67em;
  color: var(--main-text-color);
  line-height: 1.33em;
}
html body #main .confirm-layer > .dialog .buttons {
  display: flex;
  justify-content: flex-end;
  margin: 5px 0.5em;
}
html body #main .confirm-layer > .dialog .buttons button {
  margin-left: 0.25em;
  padding: 0.5em;
  font-size: 1em;
  font-weight: 600;
  line-height: 1em;
  color: var(--support-icon-color);
  background: none;
  border: none;
}
html body #main .confirm-layer > .dialog .buttons button:hover {
  opacity: 0.8;
  cursor: pointer;
}
html body footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 1em;
  color: var(--menu-text-color);
  background: var(--main-bg-color);
  border-top: 1px solid var(--main-line-color);
  z-index: 1000;
  cursor: default;
  transition: background 0.1s ease-in;
}
html body footer span {
  margin-left: 1em;
  line-height: 1em;
}
.box-shadow {
  box-shadow: 0px 3px 6px 0px rgba(25, 25, 25, 0.2);
}
