/**====================================
Contents
====================================**/
.ecomm04-cat-list{
    display: flex;
    justify-content: space-between;
    margin-left: -10px;
    margin-right: -10px;
}
.ecomm04-cat-list .slick-list{
    padding-left: 0 !Important;
}
.ecomm04-cat-list li{
    padding-left: 10px;
    padding-right: 10px;
}
.ecomm04-cat-card{    
    max-width: 156px;
    display: flex;
    flex-direction: column;
}
.ecomm04-cat-card figure{
    flex: 0 0 auto;
    width: 136px;
    height: 136px;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 5px rgba(0,0,0,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 22px;
}
.ecomm04-cat-card figure img{
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.ecomm04-cat-card span{
    display: block;
    font-size: 14px;
    color: #000;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}


/**====================================
Responsive 
====================================**/
@media (max-width: 1199px){
    
}
@media (max-width: 991px){
    
}
@media (max-width: 767px){
    .ecomm04-cat-card figure{
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
    .ecomm04-cat-card span{
        font-size: 12px;
    }
}
@media (max-width: 575px){
    .ecomm04-cat-card figure{
        width: 80px;
        height: 80px;
    }
}



