.grid {
    position: relative;
    display: flex;
}
.item {
    cursor: move;

    position: absolute;
    margin: 8px;
    z-index: 1;
}
.item.muuri-item-dragging {
    z-index: 3;
}
.item.muuri-item-releasing {
    z-index: 2;
}
.item.muuri-item-hidden {
    z-index: 0;
}
.item-content {
    position: relative;
    width: 100%;
    height: 100%;
}