#easy-mixitup-list {
display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}

.easy-mixitup-item {
    min-width: 250px;
    width: 30%;
}

.easy-mixitup-buttons {
    margin-bottom: 16px;
}


.easy-mixitup-item-wrapper {
    overflow:hidden;
    position: relative;
    cursor:pointer;
}
.easy-mixitup-item-wrapper:hover {
    cursor:pointer;
}
.easy-mixitup-item img {
    max-width:100%;
    position: relative;
    top:0;
    -webkit-transition: all 600ms cubic-bezier(0.645, 0.045, 0.355, 1);
    transition:         all 600ms cubic-bezier(0.645, 0.045, 0.355, 1);		
}

.easy-mixitup-item-label {
    position: absolute;
    width: 100%;
    height:40px;
    bottom:-40px;
    -webkit-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
    transition:         all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.easy-mixitup-item-label-bg {
    background: #096b9f;
    width: 100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
}

.easy-mixitup-item-label-text {
    color:#fff;
    position: relative;
    z-index:500;
    padding:5px 8px;
}
			

.easy-mixitup-item:hover .easy-mixitup-item-label {
    bottom:0;
}
.easy-mixitup-item:hover img {
    top:-30px;
} 