#booster-menu {
    background-color: rgb(69, 41, 36);
    width: 80%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    overflow: visible;
}
#activ-boosters {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.activ-booster {
    width: 25%;
    aspect-ratio: 64 / 106;
    background-image: url('../assets/design/booster_slot.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: pixelated;
    padding: 2%;
    box-sizing: border-box;
}
.activ-booster-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: pixelated;
}
.activ-booster-amount {
    font-size: 4vw;
    color: white;
    text-align: center;
}
.activ-booster-amount-content {
    width: 100%;
    height: 15%;
    margin-top: 10%;
}
.activ-booster-timer {
    font-size: 3vw;
    color: white;
    text-align: center;
}
.activ-booster-timer-content {
    width: 100%;
    height: 15%;
    margin-top: 14%;
}
#boosters-list {
    width: 100%;
    max-height: 50vh;
    display: flex;
    padding-left: 4%;
    padding-right: 4%;
    flex-wrap: wrap;
    background-image: url('../assets/design/menu.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: pixelated;
    overflow: scroll;
    scrollbar-width: none;
    position: relative;
    box-sizing: border-box;
    overflow: visible;
}
.booster-shelf {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    aspect-ratio: 247 / 78;
    background-image: url('../assets/design/booster_shelf.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: pixelated;
    padding-left: 7%;
    padding-right: 7%;
    padding-top: 3%;
    box-sizing: border-box;
    overflow: visible;
    gap: 4%;
}
.booster {
    width: 22%;
    height: 100%;
    overflow: visible;
    position: relative;
}
.booster-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: pixelated;
    bottom: 10%;
    left: 0;
    position: absolute;
    overflow: visible;
}
.booster-amount {
    font-size: 3vw;
    color: white;
    text-align: center;
    position: absolute;
    top: 80%;
    width: 100%;
    z-index: 100;
}
.booster-time {
    font-size: 3vw;
    color: white;
    text-align: center;
    position: absolute;
    top: 0%;
    width: 100%;
}