.categories-block .category-wrapper > .category {
    background-color: #123;
    border-radius:var(--theme--border-radius);
}
.categories-block .category-wrapper{
    height: 200px;
    width:100%;
}
@media screen and (min-width:576px) and (max-width:991px){
    .categories-block .category-wrapper{
        width:50%;
    }
    .categories-block.odd .category-wrapper:first-child{
        width:100%;
    }
}
@media screen and (min-width:992px){
   
    .categories-block.count-7 > div,
    .categories-block.count-9 > div{
        max-height: 860px;
    }
    .categories-block .category-wrapper{
        width:auto;
    }
}
.category{
    display:block;
    height:100%;
    position:relative;
    overflow: hidden;
    cursor:pointer;
}
.category-image {
    position: absolute;
    left: 0;
    top:0;
    width:100%;
    height:100%;
    background-position:center center;
    background-size: cover;
    transition-duration:400ms;
    transition-timing-function: ease-in-out;
}
.category-image::after{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 100%);
    z-index:1;
}
.category-title {
    position: absolute;
    left: 20px;
    bottom:0.5em;
    z-index: 1;
}
.category-title h3 {
    color:#fff;
    font-size: 1em;
}
.category:hover .category-image{
    transform:scale(1.1);
}

.category-edit-link,
.no-image {
    color: #fff;
    position: absolute;
    display: flex;
    justify-content:start;
    align-items:
    center;
    top:15px;
    left: 35px;
    z-index: 100;
    height: 20px;
    visibility: visible;
    padding:15px 10px;
    border:1px solid #fff;
    border-radius: 4px;
    font-weight:var(--theme--input-font-weight);
}

.category-edit-link:hover {
    color:#fff;
    background-color:rgba(0,0,0,0.6);
}

.no-image {
    top:55px;
    color: #ff0000;
    border-color:#ff0000;
    background-color:rgba(1,0.5,0.5,0.5);
}

.category-edit-link > i,
.no-image > i {
    margin-right:5px;
}