.lootbox-case-window {
    height: 170px;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

.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;
    bottom: 0;
    left: 500px;
    width: 3px;
    background-color: red;
    z-index: 10;
}

.lootbox-case-spinnable {
    width: 20000px;
}

.lootbox-case-item {
    float: left;
    margin-right: 3px;
    width: 170px;
    height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: gray;
}

.lootbox-case-item .name {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

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

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