/* CAT CHILDREN ARCHIVE */
.cut_children {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    column-gap: 5px;
    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: 140px;
    text-align: center;
    cursor: pointer;
    padding: 5px;
    background: #FFF;
    border-radius: 17px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.cat_item a {
    color: #0A2D59;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

.cat_item_img_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 90px;
}

.cat_item_img {
    max-height: 100%;
    width: auto;
    max-width: 100%;
    display: block;
}

@media screen and (max-width: 768px) {
    .cut_children {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 10px 0;
        justify-content: flex-start;
        column-gap: 10px;
    }

    .cat_item {
        flex: 0 0 auto;
        width: 70px !important;
    }

    .cat_item_img_wrap {
        height: 80px;
    }

    p.cat_item_title {
        font-size: 14px;
        margin-top: 0;
    }

    .cut_children::-webkit-scrollbar {
        display: none;
    }
}

.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;
}