/* CAT CHILDREN ARCHIVE */
.cut_children {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    column-gap: 15px;
    justify-content: flex-start;
    overflow-y: hidden;
    overflow-x: auto;
    padding-bottom: 10px;;
}
.cut_children::-webkit-scrollbar {
    height: 5px;
}
.cut_children::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
}
.cut_children::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.cat_item {
    width: 120px;
    min-width: 120px;
    min-height: 100px;
    text-align: center;
    cursor: pointer;
    padding: 5px;
    background: #FFF;
    border-radius: 17px;
}
.cat_item a {
    color: #000;
}
.cat_item_img_holder {
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cat_item.active{
    border: 1px solid var(--e-global-color-secondary);
}
p.cat_item_title {
    font-size: 15px;
    font-weight: 600;
    line-height: 16px;
    margin-top: 3px;
    margin-bottom: 0 !important;
}
@media screen and (max-width: 768px) {
    .cut_children {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding:  0;
        justify-content: flex-start;
        column-gap: 5px;
    }
    
    .cat_item {
        flex: 0 0 auto;
        width: 100px;
    }
    p.cat_item_title {
        font-size: 14px;
        margin-top: 0;
    }
    .cut_children::-webkit-scrollbar {
        display: none;
    }
    .cat_item {
        width: 100px;
        min-width: 100px;
        min-height: 100px;
    }
    .cat_item_img_holder {
        height: 65px;
    }
    img.cat_item_img {
        max-height: 55px;
    }
}