#screen {

  z-index: 100;
  background-color: black;
  box-shadow: 0px 0px 10px 0px black;

}

.canvas-wrapper {
  min-width: 480px;
  min-height: 352px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.health-mana-circles {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 360px;
  height: 253px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1000;
}

.health-mana-circles.disabled {
  display: none;
}

.health-mana-circle-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.circle-track,
.circle-fill {
  fill: none;
  stroke-width: 16px;
  stroke-linecap: butt;
}

.circle-track {
  stroke: rgba(0, 0, 0, 0.48);
}

.health-track {
  filter: drop-shadow(1px 1px 0px rgba(255, 255, 255, 0.26));
}

.mana-track {
  filter: drop-shadow(-1px 1px 0px rgba(255, 255, 255, 0.26));
}

.circle-fill {
  stroke-dasharray: var(--arc-length, 274);
  stroke-dashoffset: 0;
  transition: stroke-dasharray 120ms linear, stroke 120ms linear;
}

.health-fill {
  stroke: #1fb13a;
  filter: drop-shadow(1px 1px 0px rgba(0, 0, 0, 0.65));
}

.health-fill.health-warning {
  stroke: #d7c72b;
}

.health-fill.health-critical {
  stroke: #d72b2b;
}

.mana-fill {
  stroke: #2538d8;
  filter: drop-shadow(-1px 1px 0px rgba(0, 0, 0, 0.65));
}
