
.category_wrapper {
    margin: 10px 10px;
    cursor: pointer;
    background-color:#fff;
}
.category_list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 10px 0;
    border: 3px solid #e5d3bd;
    border-radius: 10px;
    align-content: center;
}

.category_list>.category_item {
        flex: 0 1 auto;
        height: 80px;
        border: 4px solid #e5d3bd;
        display: flex;
        flex-direction: row;
        align-items: center;
        border-radius: 10px;
        margin: 10px 10px;
        width: 24%;
        background-color: #e5d3bd;
    }
.category_item>.category_icon {
    padding: 0 10px;
    }
.category_item > .category_icon>img {
    height:70px;
    width:70px;
}
.category_item>.category_name{
    font-size:18px;
    
    padding:2px;
    color:#874c18;
}
