/* Subtle admin gear in footer */
.ask-admin-gear {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: rgba(135, 142, 154, 0.75);
  text-decoration: none;
  opacity: 0.6;
  border: 1px solid rgba(135,142,154,.25);
  border-radius: 50%;
  background: rgba(255,255,255,.02);
  transition: transform .2s ease, opacity .2s ease, color .2s ease;
  z-index: 3;
}
.ask-admin-gear:hover {
  transform: translateX(-50%) rotate(20deg);
  opacity: 0.95;
  color: rgba(170, 175, 185, 0.95);
}
.ask-admin-gear svg {
  width: 13px;
  height: 13px;
  display: block;
}
