/* Crisp sidebar tools and unique top-system glyphs. */
.client-toolbar .toolbar-icon.options-icon,
.client-toolbar .toolbar-icon.analyzers-icon {
  display: block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: 40px 80px;
  image-rendering: pixelated;
}

.client-toolbar .toolbar-icon.options-icon {
  background-image: url("assets/client-ui/topbuttons/options.png");
}

.client-toolbar .toolbar-icon.analyzers-icon {
  background-image: url("assets/client-ui/topbuttons/analyzers.png");
}

.client-toolbar .toolbar-icon.options-icon > img,
.client-toolbar .toolbar-icon.analyzers-icon > img {
  display: none;
}

.client-top-actions button {
  display: grid;
  place-items: center;
  border-radius: 3px;
  transition: background .14s ease, transform .14s ease;
}

.client-top-actions button:hover {
  background: #ffffff18;
  transform: translateY(-1px);
}

.client-top-actions button:active {
  transform: translateY(0);
}

.system-glyph {
  position: relative;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  box-sizing: border-box;
  font-style: normal;
  line-height: 1;
}

.system-glyph-dex {
  border: 2px solid #7fc3ee;
  border-radius: 3px;
  background: linear-gradient(90deg, #15354b 47%, #7fc3ee 48% 52%, #15354b 53%);
  color: #d8f0ff;
  font: 900 7px/1 Arial, sans-serif;
  letter-spacing: .4px;
  box-shadow: 0 0 5px #60baf566;
}

.system-glyph-capture {
  width: 25px;
  height: 25px;
  border: 2px solid #e8ecef;
  border-radius: 50%;
  background: linear-gradient(#d94e56 0 42%, #252c31 43% 57%, #edf1f2 58%);
  box-shadow: 0 0 5px #ffffff55;
}

.system-glyph-capture::after {
  content: "";
  width: 7px;
  height: 7px;
  border: 2px solid #252c31;
  border-radius: 50%;
  background: #f4f5f4;
  box-shadow: 0 0 0 1px #e8ecef;
}

.system-glyph-diamond {
  color: #65d9ff;
  font: 900 28px/1 Georgia, serif;
  text-shadow: 0 0 6px #38bce6;
}

.system-glyph-friends::before,
.system-glyph-friends::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #67d39d;
}

.system-glyph-friends::before {
  left: 4px;
  top: 3px;
  width: 9px;
  height: 9px;
  box-shadow: 11px 2px 0 #8bdcb5, 0 0 5px #39b97b66;
}

.system-glyph-friends::after {
  left: 1px;
  bottom: 3px;
  width: 16px;
  height: 10px;
  border-radius: 9px 9px 3px 3px;
  box-shadow: 10px 1px 0 -1px #8bdcb5;
}

.system-glyph-ranking {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  padding: 4px;
  border-bottom: 2px solid #e2bd55;
}

.system-glyph-ranking em {
  display: block;
  width: 5px;
  background: linear-gradient(#f5d977, #b98b27);
  box-shadow: 0 0 4px #d8ac4366;
}

.system-glyph-ranking em:nth-child(1) { height: 8px; }
.system-glyph-ranking em:nth-child(2) { height: 14px; }
.system-glyph-ranking em:nth-child(3) { height: 20px; }
