.categories-list .col {
    position: relative;
}

.categories-list .col.tiles {
    overflow: hidden;
}

.categories-list .col.tiles:hover .content {
    transform: scale(1.1);
}

.categories-list .col.tiles:hover .content:before {
    background-color: rgba(0, 0, 0, .6);
}

.categories-list .col.tiles:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.categories-list .col.tiles .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all ease 2s;
    text-align: center;
}

.categories-list .col.tiles .content:hover {
    text-decoration: none;
}

.categories-list .col.tiles .content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(0, 0, 0, .2);
    transition: all ease 2s;
}

.categories-list .col.tiles .content>div {
    position: relative;
    z-index: 3;
}

.categories-list .col.tiles .content>div h3 {
    color: white;
    margin: 0;
}

.categories-list .col.blocks:hover .content .cat-img {
    transform: scale(1.05);
}

.categories-list .col.blocks:hover .content h3 {
    top: -10px;
}

.categories-list .col.blocks .content {
    text-align: center;
    margin-top: 2px;
}

.categories-list .col.blocks .content:hover {
    text-decoration: none;
}

.categories-list .col.blocks .content .cat-img {
    border-radius: 6px;
    background-position: center;
    background-size: cover;
    transition: all ease 1s;
}

.categories-list .col.blocks .content .cat-img:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.categories-list .col.blocks .content h3 {
    color: black;
    margin-top: 20px;
    margin-bottom: 0;
    position: relative;
    top: 0;
    transition: all ease 0.5s;
}

.categories-list .editable:hover .content{
    box-shadow: 0 0 0 2px #FD6481;
}

.categories-list .editable {
    position: relative;
}

.categories-list .editable .content{
    display: block;
    overflow: hidden;
}

.categories-list .editable .edit-pin:hover {
    background-color: #EA3D5E;
}

.categories-list .editable .edit-pin {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: #FD6481;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 4px;
    line-height: 27px;
    text-align: center;
    display: none;
    z-index: 99 !important;
}

.categories-list .col.blocks.editable .edit-pin {
    right: 20px;
}

.categories-list .editable:hover .edit-pin {
    display: block;
}