.lootbox-case {
  max-width: 100%;
  height: 185px;
  margin: auto;
  position: relative;
}

.lootbox-case__window {
  height: 185px;
}

.lootbox-case::before {
  background: linear-gradient(
    271deg,
    rgba(41, 41, 45, 1) 31%,
    rgba(224, 224, 224, 0) 100%
  );
  right: 0;
}

.lootbox-case::after {
  background: linear-gradient(
    90deg,
    rgba(41, 41, 45, 1) 31%,
    rgba(224, 224, 224, 0) 100%
  );
  left: 0;
}

.lootbox-case::before,
.lootbox-case::after {
  width: 50%;
  height: 100%;
  position: absolute;
  bottom: 0;
  z-index: 99;
  content: "";
}

.lootbox-case__shadow {
  visibility: hidden;
}
.lootbox-case__item {
  --case-size: 185px;
  width: var(--case-size);
  height: var(--case-size);
}

.lootbox-case__item-image {
  min-height: 115px;
}
