@font-face {
  font-family: "IBM Plex Sans";
  src: url("/0/fonts/plex_sans/regular.ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/0/fonts/plex_sans/italic.ttf");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/0/fonts/plex_sans/bold.ttf");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/0/fonts/plex_sans/bolditalic.ttf");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "IBM Plex Sans Condensed";
  src: url("/0/fonts/plex_sans_condensed/regular.ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Sans Condensed";
  src: url("/0/fonts/plex_sans_condensed/italic.ttf");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "IBM Plex Sans Condensed";
  src: url("/0/fonts/plex_sans_condensed/bold.ttf");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Sans Condensed";
  src: url("/0/fonts/plex_sans_condensed/bolditalic.ttf");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("/0/fonts/jb_mono/regular.ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("/0/fonts/jb_mono/italic.ttf");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("/0/fonts/jb_mono/bold.ttf");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("/0/fonts/jb_mono/bolditalic.ttf");
  font-weight: 700;
  font-style: italic;
}
.plex-sans {
  font-family: "IBM Plex Sans";
}

.plex-sans-condensed {
  font-family: "IBM Plex Sans Condensed";
}

.jb-mono {
  font-family: "JetBrains Mono";
}

.red500 {
  color: #a73f5f;
}

.yellow500 {
  color: #b99646;
}

* {
  box-sizing: border-box;
}

html, body {
  padding: 0;
  margin: 0;
  color: #b9bdc8;
  background: #0e0f12;
}

.center {
  text-align: center;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  color: #c7cad3;
}

a, p, span, ol, ul, li, button, input, textarea, select, label, .nav-item, #notification-area {
  font-family: "IBM Plex Sans", sans-serif;
  color: #b9bdc8;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6, a, p {
  margin-top: 0;
}

h1 {
  font-size: 38px;
}

h2 {
  font-size: 30px;
  margin-top: 75px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 7px;
}
h2 span {
  font-size: 16px;
  font-weight: 400;
  margin-left: 10px;
}
h2.no-margin, h2.nomargin {
  margin-top: 0;
}

h3 {
  font-size: 22px;
}
h3.no-margin {
  margin-bottom: 0;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 16px;
}

a {
  color: #6985c6;
  text-decoration: underline;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
  background: #6985c6;
  color: white;
}
a.no-underline {
  text-decoration: none;
  background: none;
}
a.invisible {
  cursor: text;
  color: #b9bdc8;
  text-decoration: none;
}
a.invisible:hover {
  background: none;
}
a.option-button {
  text-decoration: none;
}
a.text {
  color: #b9bdc8;
}
a.white {
  color: white;
}
a.new-tab {
  margin-left: 10px;
  padding-left: 5px;
  padding-right: 5px;
}
a.new-tab img {
  width: 15px;
}

ul li, ol li {
  margin-bottom: 5px;
}

.error {
  color: #d897ab;
  font-weight: 700;
}

.bold {
  font-weight: 700;
}

.red {
  color: #d897ab;
}

.green {
  color: #97d8c4;
}

.blue {
  color: #97abd8;
}

.yellow {
  color: #d8c497;
}

.white {
  color: #ffffff;
}

.black {
  color: #000000;
}

.block {
  display: block;
}

pre, code {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  background: #2f333c;
  border: 1px solid #454b58;
  border-radius: 6px;
  color: #b9bdc8;
  margin: 0;
}
pre.copy:hover, code.copy:hover {
  cursor: pointer;
  background: #3a3f4a;
}
pre.copied, code.copied {
  background: #1f5142;
}
pre.copied:hover, code.copied:hover {
  background: #1f5142;
}

pre {
  padding: 10px;
  margin-bottom: 15px;
}

code {
  padding: 2px 6px;
}

mono {
  color: #69c6aa;
  font-family: "JetBrains Mono", monospace;
  font-size: 15px;
  line-height: 16px;
  font-weight: bold;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.75);
}

.command-block {
  margin-bottom: 20px;
}
.command-block code {
  display: block;
  padding: 5px 10px;
}
.command-block code:not(:last-child) {
  margin-bottom: 8px;
}

.response {
  background-color: #2f333c;
  border: 1px solid #505766;
  max-width: 500px;
  height: 100px;
  border-radius: 4px;
  padding: 5px;
  font-family: "IBM Plex Sans", sans-serif;
}

.tag {
  font-size: 13px;
  padding: 0px 3px;
  color: white;
  font-weight: 700;
  border-radius: 4px;
  vertical-align: top;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.tag.red {
  background: #7f3048;
  border: 1px solid #be5173;
}
.tag.green {
  background: #307f67;
  border: 1px solid #52bd9d;
}
.tag.blue {
  background: #30487f;
  border: 1px solid #5272bd;
}
.tag.yellow {
  background: #7f6730;
  border: 1px solid #bd9d52;
}
.tag.purple {
  background: #40307f;
  border: 1px solid #6752bd;
}

#copied-toast {
  background: #307f67;
  border: 1px solid #389478;
  color: white;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 12px;
  padding: 1px 2px;
  border-radius: 2px;
  top: 0;
  left: 0;
  position: fixed;
  display: none;
  z-index: 9999999999;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.important {
  color: #c66985;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.75);
  font-weight: 700;
}

bold, strong {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hidden {
  display: none !important;
}

.listcols {
  display: flex;
}
.listcols .col:not(:last-child) {
  margin-right: 50px;
}

.spacer10 {
  height: 10px;
  padding: 0;
  margin: 0;
}

.spacer15 {
  height: 15px;
  padding: 0;
  margin: 0;
}

.spacer20 {
  height: 20px;
  padding: 0;
  margin: 0;
}

.spacer30 {
  height: 30px;
  padding: 0;
  margin: 0;
}

.spacer40 {
  height: 40px;
  padding: 0;
  margin: 0;
}

.spacer60 {
  height: 60px;
  padding: 0;
  margin: 0;
}

.spacer100 {
  height: 100px;
  padding: 0;
  margin: 0;
}

.no-items {
  margin-left: auto;
  margin-right: auto;
  width: 500px;
  margin-top: 100px;
}
.no-items p {
  text-align: center;
  margin: 0;
  padding: 0;
}
.no-items img {
  width: 75px;
}
.no-items svg {
  width: 75px;
  height: 75px;
}
.no-items span {
  display: block;
  text-align: center;
}
.no-items span.title {
  font-size: 28px;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: bold;
}

.no-items-img {
  width: 100px;
  margin-bottom: 10px;
}

.tab-content .no-items {
  margin-top: 20px;
}

.not-selectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

#mfa-qr-holder {
  padding: 4px;
  background: #2f333c;
  border-radius: 6px;
  border: 1px solid #505766;
  display: inline-block;
  min-width: 100px;
  min-height: 100px;
}

#mfa-qr-loader {
  position: absolute;
  z-index: 1;
}

#mfa-qr {
  position: relative;
  z-index: 2;
}

.row-loader {
  max-width: 100px;
  height: 12px;
  border-radius: 1000px;
  outline: 1px solid #5b6374;
  color: #454b58;
  background: #454b58;
  border: 2px solid;
  position: relative;
  margin-top: 4px;
  margin-bottom: 4px;
  z-index: 0;
}
.row-loader::before {
  content: "";
  position: absolute;
  margin: 0px;
  width: 30%;
  top: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  background: #6985c6;
  animation: l3 1.5s infinite linear;
}
.row-loader.update {
  outline: 1px solid #69c6aa;
}
.row-loader.update::before {
  background: #52bd9d;
}

@keyframes l3 {
  50% {
    left: 100%;
    transform: translateX(-100%);
  }
}
/* HTML: <div class="loader"></div> */
/* HTML: <div class="loader"></div> */
.spinner {
  width: 70px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid #6985c6;
  border-right-color: transparent;
  animation: l2 0.5s infinite linear;
  margin-bottom: 10px;
}
.spinner.center {
  margin-left: auto;
  margin-right: auto;
}
.spinner.margin-equal {
  margin: 10px;
}

@keyframes l2 {
  to {
    transform: rotate(1turn);
  }
}
.delay500ms {
  visibility: hidden;
  animation: delay 0.5s forwards;
}

.delay1000ms {
  visibility: hidden;
  animation: delay 1s forwards;
}

@keyframes delay {
  99% {
    visibility: hidden;
  }
  100% {
    visibility: visible;
  }
}
#nice, #local {
  position: fixed;
  z-index: 99999;
  width: 100%;
  height: 100vh;
  background: #191b20;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeout 1.5s forwards;
}
#nice span, #local span {
  margin-top: -20px;
  font-size: 20px;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 900;
}

@keyframes fadeout {
  80% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}
.loading-bar {
  width: 100%;
  height: 20px;
  background: #2f333c;
  border-radius: 10px;
  padding: 3px;
  border: 1px solid #454b58;
}
.loading-bar .progress {
  height: 12px;
  background: #4669b9;
  border-radius: 20px;
  transition-duration: 0.4s;
}
.loading-bar .progress.green {
  background: #389478;
}
.loading-bar .progress.red {
  background: #a73f5f;
}
.loading-bar.pending {
  background: repeating-linear-gradient(135deg, #3a3f4a, #3a3f4a 10px, #2f333c 10px, #2f333c 20px);
  background-size: 1000000px;
  background-repeat: repeat-x;
  animation: pending 100000s linear infinite;
}
.loading-bar.pending .progress {
  display: none;
}

@keyframes pending {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -10000000px 0;
  }
}
.content-loader {
  width: 100%;
  height: 50px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.0666666667) 33%, rgba(0, 0, 0, 0.3333333333) 50%, rgba(0, 0, 0, 0.0666666667) 66%) #3a3f4a;
  background-size: 300% 100%;
  animation: content-loader 1.5s infinite linear;
  border-radius: 4px;
}

@keyframes content-loader {
  0% {
    background-position: right;
  }
}
/* HTML: <div class="loader"></div> */
.bulk-action-loader {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 28px;
  background: radial-gradient(circle closest-side, transparent 94%, transparent) right/calc(200% - 1em) 100%;
  animation: l24 1s infinite alternate linear;
}

.bulk-action-loader::before {
  content: "Doing bulk action...";
  line-height: 1em;
  color: rgba(0, 0, 0, 0);
  background: inherit;
  background-image: radial-gradient(circle closest-side, #fff 200%, #4669b9);
  -webkit-background-clip: text;
  background-clip: text;
}

@keyframes l24 {
  100% {
    background-position: left;
  }
}
#plugins, #themes, #info {
  position: relative;
}

.inplace-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.svg-white {
  fill: white !important;
}

table {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  text-align: left;
  border-spacing: 0px;
  margin-bottom: 15px;
  border-radius: 4px;
  box-shadow: 0px 2px 4px 0px rgba(255, 255, 255, 0.1);
}
table.inline-block {
  display: inline-block;
  margin-right: 20px;
}
table.no-margin {
  margin-bottom: 0px;
}
table td {
  padding: 10px;
  background: #2d3039;
  border-right: 1px solid #5b6374;
  border-bottom: 1px solid #5b6374;
}
table td:first-child {
  border-left: 1px solid #5b6374;
}
table td.copy:hover {
  cursor: pointer;
  background: #3a3f4a;
}
table td.copy.copied {
  background: #3a3f4a;
}
table td.key {
  background: #24272e;
  font-weight: 700;
}
table th {
  padding: 5px 10px;
  background: #191b20;
  border-top: 1px solid #5b6374;
  border-right: 1px solid #5b6374;
  border-bottom: 1px solid #5b6374;
}
table th:first-child {
  border-left: 1px solid #5b6374;
  border-top-left-radius: 4px;
}
table th:last-child {
  border-top-right-radius: 4px;
}
table tr.highlight td {
  background: #3a3f4a;
}
table tr.selectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
table tr.selectable:hover td {
  background: #3a3f4a;
  cursor: pointer;
}
table tr.selected td {
  background: #3a3f4a;
}
table tr:last-child td:first-child {
  border-bottom-left-radius: 4px;
}
table tr:last-child td:last-child {
  border-bottom-right-radius: 4px;
}
table.no-head tr:first-child td {
  border-top: 1px solid #5b6374;
}
table.no-head tr:first-child td:first-child {
  border-top-left-radius: 4px;
}
table.no-head tr:first-child td:last-child {
  border-top-right-radius: 4px;
}
table pre, table code {
  background: #454b58;
}
table pre.copy:hover, table code.copy:hover {
  background: #505766;
}
table pre.copied:hover, table code.copied:hover {
  background: #276854;
}
table pre {
  margin-bottom: 0;
}

.no-user-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.inline-error img {
  width: 32px;
  height: 32px;
  position: relative;
}
.inline-error span, .inline-error a {
  position: relative;
  vertical-align: top;
  top: 7px;
}
.inline-error span {
  margin-left: 10px;
}
.inline-error a {
  margin-left: 4px;
}

header {
  position: fixed;
  z-index: 5;
  width: calc(100% - 200px);
  background: #0e0f12;
  height: 60px;
  left: 205px;
  padding: 0px 30px 0px 43px;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #c7cad3;
}
header span {
  font-size: 16px;
  font-weight: normal;
}
header.no-padding {
  padding: 0px 30px 0px 13px;
}

aside {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 209px;
  padding-right: 9px;
  height: 100vh;
  background: #0e0f12;
}
aside .sidebar-title {
  height: 26px;
  padding: 0px 20px;
  margin-top: 15px;
  margin-bottom: 19px;
}
aside .sidebar-title a {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  color: #c7cad3;
}
aside .nav-item {
  position: relative;
  padding: 10px 10px 10px 20px;
  margin-right: -10px;
  transition-duration: 0.075s;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
aside .nav-item::before {
  content: "";
  position: absolute;
  opacity: 1;
  top: 0;
  left: -4px;
  width: 4px;
  height: 100%;
  background: #4669b9;
  transition-duration: 0.075s;
}
aside .nav-item.active {
  background: #191b20;
}
aside .nav-item.active::before {
  content: "";
  position: absolute;
  opacity: 1;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #b9bdc8;
}
aside .nav-item.active:hover::before {
  transform: translate(0px);
  background: #4669b9;
}
aside .nav-item:hover {
  background: #191b20;
  color: #b9bdc8;
}
aside .nav-item:hover::before {
  content: "";
  transform: translate(4px);
}
aside #sidebar-version {
  position: absolute;
  padding-left: 20px;
  margin-right: -10px;
  padding-bottom: 20px;
  bottom: 0;
}

#background {
  position: fixed;
  background: #191b20;
  width: calc(100% - 205px);
  height: calc(100vh - 60px);
  padding: 0;
  margin: 0;
  bottom: 0;
  right: 0;
  border-top-left-radius: 6px;
  z-index: 2;
  border-top: 1px solid #24272e;
  border-left: 1px solid #24272e;
}

main {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 205px;
  width: 1200px;
  min-height: calc(100vh - 75px);
  margin-top: 60px;
}
main.padded {
  padding: 30px 40px 100px 40px;
}
main.padded #notification-bar {
  margin: 0;
}
main.padded-full {
  padding: 30px 40px 100px 40px;
  width: calc(100% - 205px);
}
main.full-width {
  width: calc(100% - 205px);
}
main.no-ui {
  left: 0;
  margin-top: 0;
  width: 100%;
  min-height: 100vh;
  padding: 40px;
}
main.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
main.flex.column {
  flex-direction: column;
}

.main-padding {
  padding: 30px 40px 100px 40px;
}
.main-padding.no-bottom {
  padding: 30px 40px 0px 40px;
}

#maintenance {
  text-align: center;
  margin-top: 100px;
}
#maintenance img {
  max-width: 300px;
  margin-bottom: 50px;
}
#maintenance .logout {
  display: block;
  margin-top: 20px;
}

.button {
  position: relative;
  display: inline-block;
  padding: 8px 16px;
  margin-right: 3px;
  margin-top: 15px;
  margin-bottom: 15px;
  border: 1px solid #454b58;
  border-radius: 4px;
  background: #24272e;
  font-size: 14px;
  transition-duration: 0.075s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  box-shadow: 0px 1px 2px 0px rgba(255, 255, 255, 0.1);
  color: #c7cad3;
  text-decoration: none;
}
.button:hover {
  background: #3a3f4a;
  border-color: #727b90;
  box-shadow: 0px 2px 4px 0px rgba(255, 255, 255, 0.1);
  cursor: pointer;
  text-decoration: none;
  color: #c7cad3;
}
.button:hover span {
  color: white;
}
.button.nomargin, .button.no-margin {
  margin: 0;
}
.button.no-bottom-margin {
  margin-bottom: 0;
}
.button.block {
  display: block;
}
.button.text {
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
  background: none;
  font-size: 16px;
  color: #6985c6;
  text-decoration: underline;
  border-radius: 0;
}
.button.text:hover {
  text-decoration: none;
  background: #6985c6;
  color: white;
}
.button.text.white {
  color: white;
}
.button.text.white:hover {
  background: white;
  color: black;
}
.button.higher {
  background: #2f333c;
  border-color: #5b6374;
}
.button.higher:hover {
  background: #454b58;
  border-color: #80889b;
}
.button.higher.loader {
  background: #2f333c;
  border-color: #5b6374;
}
.button.higher.loader:hover {
  background: #2f333c;
  border-color: #5b6374;
}
.button.red {
  border-color: #be5173;
  color: #c7cad3 !important;
}
.button.red:hover {
  background: #a73f5f;
  border-color: #d897ab;
  color: white !important;
}
.button.blue {
  border-color: #5272bd;
}
.button.blue:hover {
  background: #4669b9;
  border-color: #97abd8;
  color: white;
}
.button.blue:hover span {
  color: white;
}
.button.green {
  border-color: #52bd9d;
}
.button.green:hover {
  background: #389478;
  border-color: #97d8c4;
  color: white;
}
.button.yellow {
  border-color: #bd9d52;
}
.button.yellow:hover {
  background: #b99646;
  border-color: #d8c497;
  color: white;
}
.button.theme {
  padding: 5px;
  border: none;
  background: none;
  box-shadow: none;
  margin: 0;
  margin-bottom: -5px;
  border-radius: 0;
}
.button.theme svg {
  fill: #c7cad3;
  width: 20px;
  height: 20px;
}
.button.fab {
  min-width: 48px;
  height: 48px;
  padding: 0;
  margin: 0;
  border-radius: 1000px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
  color: white;
  position: relative;
}
.button.fab svg {
  width: 38px;
  height: 38px;
  padding: 0;
  margin-top: 4px;
  margin-left: 4px;
  display: inline;
  position: relative;
  vertical-align: middle;
  fill: #ffffff;
}
.button.fab span {
  position: relative;
  display: inline;
  color: white;
  font-weight: bold;
  margin-left: 5px;
  margin-right: 12px;
  margin-bottom: -7px;
  padding-top: 7px;
  vertical-align: -18%;
  font-size: 15px;
}
.button.fab.green {
  background: #389478;
  border-color: #69c6aa;
}
.button.fab.green:hover {
  background: #69c6aa;
  border-color: #aee0d1;
}
.button.loader {
  cursor: default;
  background: #24272e;
  border-color: #505766;
}
.button.loader:hover {
  background: #24272e;
  border-color: #505766;
  box-shadow: 0px 1px 2px 0px rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: #c7cad3;
}
.button.loader span {
  animation: pulse 1s linear infinite;
  opacity: 0;
}
.button.mini {
  padding: 6px 12px;
  margin: 0;
  font-size: 13px;
}

@keyframes pulse {
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
}
.option-button {
  display: inline-block;
  background: #24272e;
  padding: 16px 20px 18px 20px;
  min-width: 300px;
  border: 1px solid #454b58;
  border-radius: 6px;
  transition-duration: 0.075s;
  cursor: pointer;
  margin-right: 8px;
  margin-bottom: 12px;
  box-shadow: 0px 1px 2px 0px rgba(255, 255, 255, 0.1);
}
.option-button:hover {
  background: #3a3f4a;
  border-color: #727b90;
  box-shadow: 0px 2px 4px 0px rgba(255, 255, 255, 0.1);
}
.option-button span {
  display: block;
}
.option-button span.owner {
  margin-bottom: 2px;
}
.option-button .title {
  font-size: 24px;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: bold;
  margin-bottom: 4px;
}
.option-button .description {
  font-size: 14px;
}
.option-button svg {
  width: 20px;
  height: 20px;
  margin-right: 4px;
  vertical-align: -15%;
  fill: #b9bdc8;
}

.new-site {
  background: #24272e;
  animation: 3s new-site linear none;
}
.new-site:hover {
  background: #3a3f4a;
}

@keyframes new-site {
  0% {
    background: #307f67;
    border-color: #52bd9d;
  }
  50% {
    background: #307f67;
    border-color: #52bd9d;
  }
  100% {
    background: #24272e;
  }
}
.fab-container {
  position: fixed;
}
.fab-container.bottom-right {
  bottom: 20px;
  right: 20px;
}

.plugins-toast {
  position: fixed;
  bottom: -100px;
  right: 40px;
  padding: 14px;
  border: 1px solid #5b6374;
  border-radius: 6px;
  background: #3a3f4a;
  box-shadow: 0px 2px 4px 0px rgba(255, 255, 255, 0.1);
  transition-duration: 0.3s;
}
.plugins-toast .title {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}
.plugins-toast .bulk-action-button {
  margin-right: 6px;
}

#site-alert {
  position: fixed;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  z-index: 99;
}
#site-alert span {
  display: block;
  text-align: center;
  color: white;
}
#site-alert.red {
  background-color: #a73f5f;
}
#site-alert.green {
  background-color: #389478;
}
#site-alert.blue {
  background-color: #4669b9;
}
#site-alert.yellow {
  background-color: #b99646;
}
#site-alert.purple {
  background-color: #5d46b9;
}

.box {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 4px;
  color: white;
  display: block;
  margin-bottom: 30px;
}
.box.inline {
  display: inline-block;
}
.box.no-margin {
  margin-bottom: 0;
}
.box.blue {
  background: #30487f;
  border: 1px solid #6985c6;
}
.box.blue.subtle {
  border-color: #5272bd;
}
.box.green {
  background: #307f67;
  border: 1px solid #69c6aa;
}
.box.green.subtle {
  border-color: #52bd9d;
}
.box.red {
  background: #7f3048;
  border: 1px solid #c66985;
}
.box.red.subtle {
  border-color: #be5173;
}
.box.yellow {
  background: #7f6730;
  border: 1px solid #c6aa69;
}
.box.yellow.subtle {
  border-color: #bd9d52;
}
.box.grey {
  background: #3a3f4a;
  border: 1px solid #80889b;
  color: white;
}
.box.subtle {
  background: #3a3f4a;
  color: white;
}
.box pre, .box code {
  background: rgba(0, 0, 0, 0.25) !important;
}
.box a {
  color: white;
  text-decoration: underline;
}
.box a:hover {
  background: white;
  color: black;
  text-decoration: none;
}

h1 .tag {
  position: absolute;
  display: inline-block;
  font-size: 14px;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  margin-bottom: 0px;
  margin-top: 7px;
  margin-left: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

#notification-bar {
  position: fixed;
  right: 40px;
  z-index: 9999999999;
}
#notification-bar .notification {
  display: none;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 4px;
  color: white;
  margin-bottom: 15px;
  box-shadow: 0px 4px 8px 0px rgba(255, 255, 255, 0.15);
  background: #30487f;
  border: 1px solid #6985c6;
}
#notification-bar .notification.red {
  background: #7f3048;
  border: 1px solid #c66985;
}
#notification-bar .notification.green {
  background: #307f67;
  border: 1px solid #69c6aa;
}
#notification-bar .notification a {
  color: white;
}
#notification-bar .notification a:hover {
  color: black;
  background: white;
}
#notification-bar .notification .dismiss-notification {
  font-size: 14px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  margin-left: 18px;
  padding-left: 3px;
  padding-right: 2px;
  position: relative;
  top: -1px;
  transition-duration: 0.1s;
}
#notification-bar .notification .dismiss-notification:hover {
  background-color: rgba(255, 255, 255, 0.75);
  color: black;
}

#discovered {
  background: #2f333c;
  border: 1px solid #389478;
  border-radius: 4px;
  margin-bottom: 50px;
  padding: 20px;
  box-shadow: 0px 2px 4px 0px rgba(255, 255, 255, 0.1);
}
#discovered .title {
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 20px;
  font-weight: 900;
}
#discovered .found-site {
  font-family: "IBM Plex Sans", sans-serif;
  margin-top: 8px;
}
#discovered .found-site .links {
  display: inline-block;
  margin-right: 20px;
}
#discovered .found-site .links a:first-child {
  margin-right: 10px;
}

.box {
  background: #2f333c;
}

body.modal-open {
  overflow: hidden;
}
body.modal-open header {
  z-index: 4;
}

.modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(10px) saturate(0);
          backdrop-filter: blur(10px) saturate(0);
}

.modal-window {
  width: 340px;
  margin-top: -175px;
  border-radius: 6px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.5);
}
.modal-window.wide {
  width: 500px;
}
.modal-window .title {
  position: relative;
  background: #24272e;
  border-bottom: 1px solid #505766;
  border-top: 1px solid #505766;
  border-right: 1px solid #505766;
  border-left: 1px solid #505766;
  color: #c7cad3;
  padding: 10px 20px;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 16px;
  font-weight: bold;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.35);
  z-index: 50;
}
.modal-window .content {
  position: relative;
  display: block;
  max-height: 80vh;
  overflow: scroll;
  padding: 20px;
  background: #191b20;
  border-left: 1px solid #505766;
  border-right: 1px solid #505766;
  z-index: 40;
  overflow: hidden;
}
.modal-window .content.bulleted {
  padding: 0;
}
.modal-window .content p:last-child {
  margin-bottom: 0;
}
.modal-window .content:last-child {
  border-bottom: 1px solid #505766;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.modal-window .content span {
  display: block;
}
.modal-window .content span.confirm {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.modal-window .content span strong {
  color: #c66985;
}
.modal-window .content span.all {
  color: #c66985;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-top: 15px;
}
.modal-window .actions {
  position: relative;
  padding: 10px 10px 12px 10px;
  background: #24272e;
  width: 100%;
  text-align: right;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-top: 1px solid #505766;
  border-left: 1px solid #505766;
  border-right: 1px solid #505766;
  border-bottom: 1px solid #505766;
  box-shadow: 0px -2px 2px 0px rgba(0, 0, 0, 0.25);
  z-index: 50;
}
.modal-window .actions .button {
  margin: 0px 0px 0px 2px;
}
.modal-window .close-modal {
  position: relative;
  float: right;
  background: #7f3048;
  border-radius: 4px;
  border: 1px solid #cf8098;
  padding: 4px 5px 3px 5px;
  transition-duration: 0.075s;
  cursor: pointer;
  margin-top: 5px;
  margin-right: 5px;
  box-shadow: 0px 3px 3px 0px rgba(18, 20, 24, 0.5);
  z-index: 60;
}
.modal-window .close-modal:hover {
  background: #a73f5f;
  border-color: #d897ab;
}
.modal-window .close-modal img {
  margin-bottom: -1.25px;
  width: 20px;
  height: 20px;
}

.respond-box {
  width: 600px;
  background: #24272e;
  padding: 40px;
  margin-top: -75px;
  border-radius: 10px;
  border: 1px solid #454b58;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}
.respond-box .title span {
  display: block;
  font-size: 28px;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 900;
}
.respond-box .initial-instructions span {
  display: block;
  margin-top: 5px;
}
.respond-box .content-requested {
  margin-top: 20px;
}
.respond-box .content-requested span {
  display: block;
}
.respond-box .content-requested span.head {
  font-weight: 700;
  font-size: 20px;
}
.respond-box .additional-instructions {
  margin-top: 20px;
}
.respond-box .additional-instructions span {
  display: block;
}
.respond-box .additional-instructions span.head {
  font-weight: 700;
  font-size: 20px;
}
.respond-box .response-entry {
  margin-top: 20px;
}
.respond-box textarea {
  background: #2f333c;
  border: 1px solid #454b58;
  border-radius: 4px;
  width: 100%;
  height: 100px;
  padding: 10px;
  margin-bottom: 10px;
}
.respond-box textarea:focus, .respond-box textarea:active {
  outline: none;
  background: #3a3f4a;
  border-color: #505766;
}

.disclaimer {
  max-width: 600px;
  display: block;
  margin-top: 10px;
  padding: 0px 5px;
  text-align: center;
  opacity: 0.5;
}

#login-bg, #login-bg-lazy {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 0;
  background-size: cover;
  opacity: 1;
  background-position: center center;
}

#login-bg {
  z-index: 0;
}

#login-bg-lazy {
  z-index: 1;
}
#login-bg-lazy::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}

#login-body {
  background: #0e0f12;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  height: 100vh;
  display: flex;
  align-items: left;
  justify-content: center;
  flex-direction: column;
}

#login-modal {
  background: rgba(25, 27, 32, 0.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.6);
          backdrop-filter: blur(40px) saturate(1.6);
  border-left: 1px solid #454b58;
  border-right: 1px solid #454b58;
  margin-left: 10%;
  padding: 40px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.5);
  width: 400px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
#login-modal .logo {
  width: 100%;
  margin-bottom: 50px;
  border-radius: 6px;
  border: 1px solid #6985c6;
}
#login-modal .content {
  width: 100%;
  margin-top: -100px;
}
#login-modal .title-wrap {
  margin-bottom: 20px;
  margin-top: -10px;
}
#login-modal .title-wrap .title {
  display: block;
  font-size: 28px;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 900;
  text-align: left;
}
#login-modal .invalid-login {
  display: block;
  color: #c66985;
  margin-bottom: 10px;
}
#login-modal input {
  background: rgba(47, 51, 60, 0.6);
}
#login-modal button {
  background: rgba(47, 51, 60, 0.6);
}
#login-modal button:hover {
  background: #4669b9;
}

.login-warning-box {
  background: #a73f5f;
  border: 1px solid #d897ab;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.25);
  padding: 20px;
  width: 400px;
  border-radius: 10px;
  margin-top: 20px;
}
.login-warning-box span {
  display: block;
  color: white;
}
.login-warning-box span.title {
  font-size: 24px;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 900;
  text-align: center;
  margin-bottom: 10px;
}

.login-caption {
  position: fixed;
  right: 15px;
  bottom: 15px;
  color: white;
  font-family: "IBM Plex Sans", sans-serif;
  text-align: right;
  padding: 10px 15px;
  background: rgba(25, 27, 32, 0.5);
  border: 1px solid #5b6374;
  border-radius: 6px;
  -webkit-backdrop-filter: blur(5px) saturate(1.7);
          backdrop-filter: blur(5px) saturate(1.7);
  z-index: 2;
}

label, input {
  display: block;
}

label {
  margin-bottom: 2px;
  margin-left: 1px;
}
label.client-can-see {
  color: #6985c6;
}
label.noblock {
  display: inline;
}
label.sub {
  font-size: 14px;
  color: rgba(185, 189, 200, 0.5);
  margin-top: 2px;
}

input, textarea, select {
  width: 100%;
  background: #24272e;
  border-radius: 4px;
  border: 1px solid #454b58;
  padding: 8px;
  font-size: 15px;
}
input:hover, textarea:hover, select:hover {
  border-color: #4669b9;
  outline: 2px solid #1f2e51;
}
input:active, input:focus, textarea:active, textarea:focus, select:active, select:focus {
  background: #2f333c;
  border-color: #6985c6;
  outline: 3px solid #30487f;
}
input:disabled, textarea:disabled, select:disabled {
  background-color: #191b20;
  border-color: #3a3f4a;
  color: rgba(185, 189, 200, 0.75);
  cursor: not-allowed !important;
}
input:disabled:hover, textarea:disabled:hover, select:disabled:hover {
  outline: none;
}
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: rgba(185, 189, 200, 0.75);
}
input::placeholder, textarea::placeholder, select::placeholder {
  color: rgba(185, 189, 200, 0.75);
}
input.invalid, textarea.invalid, select.invalid {
  border-color: #a73f5f;
  outline: 2px solid #511f2e;
}
input.invalid:hover, textarea.invalid:hover, select.invalid:hover {
  border-color: #c66985;
  outline: 2px solid #7f3048;
}
input.invalid:active, input.invalid:focus, textarea.invalid:active, textarea.invalid:focus, select.invalid:active, select.invalid:focus {
  border-color: #d897ab;
  outline: 3px solid #a73f5f;
}
input.higher, textarea.higher, select.higher {
  background: #2f333c;
}
input.higher:disabled, textarea.higher:disabled, select.higher:disabled {
  background-color: #3a3f4a;
  color: rgba(185, 189, 200, 0.75);
  cursor: not-allowed !important;
}
input.w300, textarea.w300, select.w300 {
  width: 300px;
}
input.nowidth, textarea.nowidth, select.nowidth {
  width: auto;
}

textarea {
  width: 100%;
  height: 100px;
}

select {
  cursor: pointer;
  width: initial;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-top: 1px;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #2f333c;
  border: 1px solid #505766;
  border-radius: 3px;
}
.checkmark.no-events:active {
  pointer-events: none;
}

.checkbox-container:hover input ~ .checkmark {
  border-color: #4669b9;
  outline: 2px solid #1f2e51;
}

.checkbox-container input:checked ~ .checkmark {
  background: #4669b9;
  border-color: #6985c6;
  outline: none;
}

.checkbox-container input:disabled ~ .checkmark {
  background: #24272e;
  border: 1px solid #454b58;
  cursor: not-allowed !important;
}
.checkbox-container input:disabled ~ .checkmark:hover {
  outline: none;
}

.checkbox-container input:disabled:checked ~ .checkmark {
  background: #24272e;
  border: 1px solid #454b58;
  cursor: not-allowed !important;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 8px;
  top: 3px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.checkbox-container.in-table {
  margin-bottom: 24px;
  padding-top: 0px;
  padding-left: 24px;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 68px;
  height: 30px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2f333c;
  border: 1px solid #505766;
  border-radius: 100px;
  transition-duration: 0.1s;
  outline: 0px solid #1f2e51;
}

.slider:hover {
  outline: 2px solid #1f2e51;
  border-color: #4669b9;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  border-radius: 100px;
  background-color: #abb0bd;
  transition-duration: 0.15s;
}

input:checked + .slider {
  background-color: #4669b9;
  border-color: #6985c6;
}

input:checked + .slider:before {
  background-color: rgba(255, 255, 255, 0.8);
}

input:checked + .slider:before {
  transform: translateX(38px);
}

.form-row {
  margin-bottom: 15px;
}
.form-row:last-child {
  margin-bottom: 0;
}

.form-row-checkbox {
  margin-top: 30px;
  margin-bottom: 30px;
}
.form-row-checkbox:last-child {
  margin-bottom: 0;
}

.w500 {
  max-width: 500px;
}

#search-input {
  width: 350px;
}

.selector {
  margin-top: 4px;
}
.selector div {
  display: inline-block;
  padding: 5px 15px;
  background: #24272e;
  border-top: 1px solid #454b58;
  border-bottom: 1px solid #454b58;
  font-family: "IBM Plex Sans", sans-serif;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.selector div:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-left: 1px solid #454b58;
}
.selector div:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-right: 1px solid #454b58;
}
.selector div:hover {
  background: #2f333c;
  border-color: #505766;
}
.selector div:active {
  background: #24272e;
  border-color: #454b58;
}
.selector div.active {
  background: #4669b9;
  border-color: #6985c6;
  color: white;
}
.selector div.active:hover {
  background: #5272bd;
  border-color: #97abd8;
}
.selector div.active:active {
  background: #395596;
  border-color: #6985c6;
}
.selector div.active.red {
  background: #a73f5f;
  border-color: #c66985;
  color: white;
}
.selector div.active.red:hover {
  background: #be5173;
  border-color: #d897ab;
}
.selector div.active.red:active {
  background: #963956;
  border-color: #c66985;
}
.selector div.active.round {
  border-radius: 4px;
  border: 1px solid #6985c6;
}

.row {
  background: #24272e;
}
.row::after {
  content: "";
  clear: both;
  display: table;
}
.row.center {
  display: flex;
  align-items: center;
}
.row .form-row {
  margin-bottom: 0;
}
.row.head {
  background-color: #2f333c;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border: 1px solid #454b58;
  font-weight: bold;
  height: 40px;
  z-index: 1;
}
.row.head.fixed {
  width: calc(100% - 200px);
  position: fixed;
}
.row.head.higher {
  background-color: #3a3f4a;
}
.row:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.row.higher {
  background: #2f333c;
}
.row.border {
  border: 1px solid #3a3f4a;
  border-top: none;
}
.row.border.higher {
  border-color: #454b58;
}
.row.clickable {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.row.clickable:hover {
  background-color: #2f333c;
  cursor: pointer;
}
.row.clickable.higher:hover {
  background-color: #3a3f4a;
}
.row.selectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.row.selectable:hover {
  background-color: #2f333c;
  cursor: pointer;
}
.row.selectable.selected {
  background-color: #3a3f4a;
}
.row.selectable.higher:hover {
  background-color: #3a3f4a;
}
.row.selectable.selected.higher {
  background-color: #454b58;
}
.row.fulfilled {
  background-color: #1f5142;
}
.row.fulfilled:hover {
  background-color: #276854;
}
.row.report-row .carat {
  width: 14px;
}
.row.report-row:nth-last-child(2):not(.selected) {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.row.report-sub-row {
  background: #191b20;
}

.row-head-spacer {
  height: 40px;
}

.row-head-carat-spacer {
  display: inline-block;
  width: 18px;
}

.row-sub-indent {
  display: inline-block;
  width: 30px;
}

.user-row:last-child .row {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.col-1 {
  width: 8.33%;
}

.col-2 {
  width: 16.66%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33%;
}

.col-5 {
  width: 41.66%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33%;
}

.col-8 {
  width: 66.66%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33%;
}

.col-11 {
  width: 91.66%;
}

.col-12 {
  width: 100%;
}

[class*=col-] {
  float: left;
  padding: 15px;
  font-family: "IBM Plex Sans", sans-serif;
}
[class*=col-].no-left-padding:first-child {
  margin-left: -15px;
}
[class*=col-].collapse {
  padding: 0;
}
[class*=col-].close {
  padding: 8px;
}
[class*=col-].scrunched {
  padding: 8px 15px;
}
[class*=col-].vertical-collapse {
  padding-bottom: 0;
  padding-top: 0;
}
[class*=col-].status-active {
  background-color: #4669b9;
  color: white;
}
[class*=col-].status-must-use {
  background-color: #273b68;
  color: #aebde0;
}
[class*=col-].status-dropin {
  background-color: #273b68;
  color: #aebde0;
}
[class*=col-].update-available {
  background-color: #389478;
  color: white;
}
[class*=col-].update-available span,
[class*=col-].update-available a {
  color: white;
}
[class*=col-].update-ignored {
  background-color: #3a1621;
  color: #e0aebe;
}

.tabbed-content {
  display: block;
}
.tabbed-content .tabs {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: #0e0f12;
  border: 1px solid #3a3f4a;
  display: inline-block;
  padding: 5px;
  border-radius: 6px;
  margin-bottom: 6px;
  position: relative;
}
.tabbed-content .tabs::after {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  background: transparent;
}
.tabbed-content .tabs .tab {
  display: inline-block;
  padding: 10px 20px;
  cursor: pointer;
  font-family: "IBM Plex Sans", sans-serif;
  position: relative;
  z-index: 3;
  transition-duration: 0.1s;
}
.tabbed-content .tabs .tab.active {
  color: white;
}
.tabbed-content .tabs #tab-background {
  position: absolute;
  z-index: 2;
  background: #454b58;
  border-radius: 4px;
  transition-duration: 0.1s;
}
.tabbed-content .content .tab-content {
  position: relative;
  background: #24272e;
  padding: 20px;
  z-index: 4;
  border-radius: 6px;
  border: 1px solid #454b58;
}

.tab-content-elements {
  position: relative;
  background: #24272e;
  padding: 20px;
  z-index: 4;
  border-radius: 6px;
  border: 1px solid #454b58;
}

.accordion {
  width: 100%;
  padding: 10px 20px;
  background: #2f333c;
  font-family: "IBM Plex Sans", sans-serif;
  margin-top: 40px;
  border: 1px solid #454b58;
  border-radius: 4px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.accordion:hover {
  background: #3a3f4a;
  border-color: #505766;
}
.accordion.open {
  font-weight: bold;
  background: #3a3f4a;
  border-bottom-color: #505766;
  border-top-color: #4669b9;
  border-left-color: #4669b9;
  border-right-color: #4669b9;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.accordion-content {
  padding: 20px;
  background: #2f333c;
  border: 1px solid #4669b9;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top: none;
}

#white {
  position: absolute;
  background: white;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

#lance {
  position: absolute;
  background: url("/0/img/lance_error.jpg") black;
  background-repeat: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
  z-index: 9998;
  display: none;
}

@media screen and (max-width: 1410px) {
  main {
    width: calc(100% - 210px);
  }
}
@media screen and (min-width: 1001px) {
  #open-mobile-menu {
    display: none;
  }
  #mobile-menu {
    display: none;
  }
  .mobile-only {
    display: none !important;
  }
}
@media screen and (max-width: 1000px) {
  .desktop-only {
    display: none !important;
  }
  aside {
    display: none;
  }
  header {
    width: 100%;
    left: 0;
    padding: 0px 20px;
    font-size: 20px;
    border-bottom: 1px solid #24272e;
    box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.75);
    position: fixed;
    top: 0;
    justify-content: flex-start;
  }
  header span {
    display: none;
  }
  #background {
    width: 100%;
    border-top-left-radius: 0;
    border: none;
    background: #191b20;
  }
  main {
    left: 0;
    width: 100% !important;
    padding: 20px 20px 100px 20px;
    position: relative;
    z-index: 2;
    overflow: hidden;
  }
  main.padded, main.padded-full {
    padding: 20px 20px 100px 20px;
  }
  main h1 {
    font-size: 24px;
  }
  main h1 .tag {
    font-size: 12px;
    font-family: "IBM Plex Sans", sans-serif;
    margin-left: 5px;
    margin-top: 2px;
  }
  main h2 {
    font-size: 22px;
  }
  main h3 {
    font-size: 20px;
  }
  .pre-container {
    overflow: scroll;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 10px;
  }
  .table-container {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 10px;
    max-width: calc(100% + 40px);
    overflow: scroll;
    display: inline-block;
  }
  table {
    box-shadow: 0px 2px 4px 0px rgba(255, 255, 255, 0.1);
    display: inline-block;
    margin-right: 10px;
  }
  table.minx {
    min-width: 700px;
  }
  #open-mobile-menu {
    display: inline-block;
  }
  #open-mobile-menu:hover {
    background: none;
  }
  #open-mobile-menu img {
    fill: red;
  }
  .mobile-menu-image svg {
    width: 45px;
    height: 45px;
    padding: 7px;
    margin-top: 7px;
    margin-left: -7px;
    margin-right: 10px;
    fill: #c7cad3;
  }
  #mobile-menu-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    z-index: 999;
    border-top: 1px solid #3a3f4a;
  }
  #mobile-menu {
    position: fixed;
    width: 300px;
    height: 100vh;
    z-index: 9999;
    background: #0e0f12;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    box-shadow: 20px 0px 50px 0px rgb(0, 0, 0);
    border-right: 1px solid #3a3f4a;
  }
  #mobile-menu .inner {
    margin-top: 75px;
    margin-left: 14px;
    margin-right: 14px;
  }
  #mobile-menu .nav-item {
    display: block;
    padding: 10px;
    text-align: left;
    font-size: 18px;
    font-weight: normal;
    border-bottom: 1px solid #24272e;
    text-decoration: none;
  }
  #mobile-menu .nav-item.active {
    color: #6985c6;
    font-weight: bold;
  }
  #mobile-menu .nav-item:nth-child(2) {
    border-top: 1px solid #24272e;
  }
  #mobile-menu .nav-item#logout-mobile {
    font-size: 16px;
    border: none;
    margin-top: 50px;
  }
  #mobile-menu .close-mobile-menu {
    position: absolute;
    left: 0;
    top: 0;
    padding: 7px;
    margin-top: 11px;
    margin-left: 14px;
  }
  #mobile-menu .close-mobile-menu:hover {
    background: none;
  }
  #mobile-menu .close-mobile-menu svg {
    width: 25px;
    height: 25px;
    fill: #c7cad3;
  }
  #search-bar {
    display: none;
  }
  .option-button {
    width: 100%;
  }
  .tabbed-content #tab-background {
    display: none;
  }
  .tabbed-content .tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
  }
  .tabbed-content .tabs .tab {
    border-radius: 4px;
  }
  .tabbed-content .tabs .tab.active {
    background: #454b58;
  }
  .tabbed-content .tabs::-webkit-scrollbar {
    display: none;
  }
  .tabbed-content .tabs::after {
    display: none;
  }
  .tabbed-content .content .tab-content {
    padding: 15px;
  }
  .scroll-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: calc(100% + 15px);
    padding-right: 15px;
  }
  .mobile-min-auto {
    width: -moz-max-content;
    width: max-content;
    display: block;
  }
  .mobile-min-500 {
    min-width: 500px;
    width: -moz-max-content;
    width: max-content;
    display: block;
  }
  .mobile-min-750 {
    min-width: 750px;
    width: -moz-max-content;
    width: max-content;
    display: block;
  }
  .mobile-min-1000 {
    min-width: 1000px;
    width: -moz-max-content;
    width: max-content;
    display: block;
  }
  .no-items {
    width: 100%;
  }
  #plugins .row {
    background: #2f333c;
    margin-bottom: 20px;
    border: 1px solid #505766;
    border-radius: 4px;
  }
  #plugins .row:last-child {
    margin-bottom: 0;
    border-bottom: 1px solid #505766 !important;
  }
  #plugins .row :nth-child(2) {
    border-bottom-left-radius: 4px;
  }
  #plugins .row.selected {
    background: #3a3f4a;
    border-color: #5b6374;
  }
  #plugins .plugin-action {
    display: none;
  }
  #plugins .head {
    display: none;
  }
  #plugins .plugin-slug {
    display: block;
    width: 100%;
    font-weight: 900;
    font-size: 20px;
    font-family: "IBM Plex Sans Condensed", sans-serif;
    padding-left: 13px;
  }
  #plugins .plugin-status {
    width: 30%;
    text-align: left;
  }
  #plugins .plugin-update {
    width: 45%;
    text-align: center;
  }
  #plugins .plugin-version {
    width: 25%;
    text-align: right;
  }
  #themes .row {
    background: #2f333c;
    margin-bottom: 20px;
    border: 1px solid #505766;
    border-radius: 4px;
  }
  #themes .row:last-child {
    margin-bottom: 0;
    border-bottom: 1px solid #505766 !important;
  }
  #themes .row :nth-child(2) {
    border-bottom-left-radius: 4px;
  }
  #themes .row.selected {
    background: #3a3f4a;
    border-color: #5b6374;
  }
  #themes .theme-action {
    display: none;
  }
  #themes .head {
    display: none;
  }
  #themes .theme-slug {
    display: block;
    width: 100%;
    font-weight: 900;
    font-size: 20px;
    font-family: "IBM Plex Sans Condensed", sans-serif;
    padding-left: 13px;
  }
  #themes .theme-status {
    width: 30%;
    text-align: left;
  }
  #themes .theme-update {
    width: 45%;
    text-align: center;
  }
  #themes .theme-version {
    width: 25%;
    text-align: right;
  }
  #info table:not(:last-child) {
    margin-bottom: 20px;
  }
  .plugins-toast {
    background: #0e0f12;
  }
  .modal-window {
    margin-top: 0;
    margin-left: 15px;
    margin-right: 15px;
  }
  .modal-window .content {
    max-height: 500px;
    overflow-y: scroll;
  }
  .button.fab {
    width: 61px;
    height: 61px;
  }
  .button.fab span {
    display: none;
  }
  .button.fab svg {
    width: 45px;
    height: 45px;
    margin-top: 7px;
    margin-left: 7px;
  }
  #login-modal {
    position: fixed;
    margin: 0;
    width: 100%;
    border: 0;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    padding: 20px;
  }
  #login-modal input {
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
  }
  #login-modal button {
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
  }
  .login-caption {
    bottom: 0;
    right: 0;
    border-radius: 0;
    border-top-left-radius: 6px;
    border-bottom: none;
    border-right: none;
    padding-right: 30px;
    padding-bottom: 20px;
  }
  .selector .selector-child {
    width: 100%;
    border-radius: 4px !important;
    margin-bottom: 6px;
    padding: 10px;
    border: 1px solid #454b58;
  }
}
@media screen and (max-height: 400px) {
  #mobile-menu .inner {
    margin-top: 0;
  }
}/*# sourceMappingURL=dark.css.map */