.lootbox-case {
  max-width: 800px;
  margin: auto;
  position: relative;
}
.lootbox-case-window {
  max-width: 100%;
  height: max-content;
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  margin: auto;
}

.lootbox-case-shadow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 40px 0 50px -20px rgba(0, 0, 0, 0.7),
    inset -40px 0 50px -20px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.lootbox-case-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid var(--orange-1);
  background-color: transparent;
  z-index: 10;
}

.lootbox-case-spinnable {
  width: max-content;
  position: relative;
  left: 0;
}

.lootbox-case-item {
  float: left;
  margin: 0 5px;
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: gray;
  position: relative;
}

.lootbox-case-item::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
}

.lootbox-case-item .name {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 10px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  font-weight: bold;
  position: relativee;
  z-index: 1;
}

.lootbox-case-item .image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relativee;
  z-index: 1;
}

.lootbox-case-item .image img {
  max-width: 70%;
  max-height: 70%;
}
