.dropper {
    width: 14.33%;
    height: 21.5%;
    display: inline-flex;
    background: rgba(40, 40, 40, 0.4);
    border-radius: 10px;
    transition: all 200ms linear;
    padding: 0;
}

.drop_hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8) inset;
}

.dragslot > .draggable {
    width: 10%;
    display: inline-flex;
    background: rgba(40, 40, 40, 0.4);
    border-radius: 10px;
    transition: all 200ms linear;
    user-select: none;
}

.dropper > .draggable {
    width: 100%;
    height: 100%;
    display: block;
    background: none;
}

.draggable img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.drag_hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8) inset;
}
