#home_inventory {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 600px;
    /* filter: saturate(25%); */
    margin-bottom: 1rem;
}

#home_inventory .painel {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 1rem;
    box-shadow: 0px 0px 10px rgba(0,0,0,1);
    z-index: 2;
}

.equipment {
    position: relative;
    cursor: pointer;
    z-index: 3;
    border-radius: 1rem;
}
.equipment:hover {
    box-shadow: 1px 1px 10px rgb(75, 74, 74) inset;
}
.item-background {
    background: url(../_img/ui/uzu.png) no-repeat;
    background-size: contain;
    background-position: center;
}

.equipment_stamp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: saturate(20%);
    z-index: 4;
}

.headband {
    position: absolute;
    right: 20%;
    top: 18%;
}

.weapon {
    position: absolute;
    left: 20%;
    bottom: 20%;
}

.vest {
    position: absolute;
    right: 18%;
    bottom: 40%;
}

.shoes {
    position: absolute;
    right: 15%;
    bottom: 15%;
}

#details-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    gap: 1rem;
    top: 0;
    left: 0;
    border-radius: 1rem 1rem 0 0;
    width: 100%;
    height: 0px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.568);
    z-index: 9;
    transition: .3s;
}

@media (max-width: 720px) {
    #home_inventory {
        width: calc(100% - 2rem);
    }

    #home_inventory .painel {    
        width: 100%;
        height: 600px;
    }
}