.item-art {
  display: block;
  width: 54px;
  height: 54px;
  background-color: #0b0c0e;
  background-repeat: no-repeat;
  background-size: 200% 100%;
  box-shadow: inset 0 0 12px #000;
}

.item-rusty_sword, .item-iron_sword { background-image: url("img/items-weapons.webp"); }
.item-hide_armor, .item-chain_coat { background-image: url("img/items-armors.webp"); }
.item-ward_ring, .item-lantern_shield { background-image: url("img/items-accessories.webp"); }
.item-rusty_sword, .item-hide_armor, .item-ward_ring { background-position: left center; }
.item-iron_sword, .item-chain_coat, .item-lantern_shield { background-position: right center; }

.bar {
  display: block;
  width: 100%;
  height: 10px;
  appearance: none;
  border: 1px solid #3b4049;
  background: #050608;
}
.bar::-webkit-progress-bar { background: #050608; }
.bar.player-hp::-webkit-progress-value { background: linear-gradient(90deg,#517460,#8aa67c); }
.bar.enemy-hp::-webkit-progress-value { background: linear-gradient(90deg,#64251f,#b84b3c); }
.bar.player-hp::-moz-progress-bar { background: #6f8d70; }
.bar.enemy-hp::-moz-progress-bar { background: #8f342e; }

#enemyLayer { z-index: auto; }
#enemyImage { z-index: 2; mix-blend-mode: screen; }
.enemy-card { z-index: 3; }
.vignette { z-index: 4; }
.toast { z-index: 5; }
