#theme-switcher-skeleton {
  position: relative;
}
#theme-switcher-skeleton::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  inset-block: 7px;
  inset-inline-end: 10px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--aui-item-disabled-text, var(--aui-lesser-body-text));
  animation: 0.86s cubic-bezier(0.4, 0.15, 0.6, 0.85) infinite spinnerRotateAnimation;
}
@keyframes spinnerRotateAnimation {
  to {
    transform: rotate(360deg);
  }
}
