.dbfeaturedcategories{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.dbfeaturedcategories > .block{
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 15px;
}
.dbfeaturedcategories > .block > .category_principal{
    width: 100%;
    display: flex;
}
.dbfeaturedcategories > .block > .category_principal > a >.img_category_principal{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 150px;
    height: 150px;
}
.dbfeaturedcategories > .block > .category_principal >.category_title_block{
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 10px;
}
.dbfeaturedcategories > .block >.category_title_block_desktop{
    display: none;
}
.dbfeaturedcategories > .block > .category_principal >.category_title_block > .category_title{
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 5px;
    color:var(--color_font);
}
.dbfeaturedcategories > .block > .category_principal >.category_title_block > span{

}
.dbfeaturedcategories > .block > .category_principal >.category_title_block > span > a{
    text-decoration: none;
    color:var(--color_font);
}
.dbfeaturedcategories > .block > .subcategories{
    width: 100%;
    gap: 5px;
    display: flex;
    /*margin-right:  ;*/
}
.dbfeaturedcategories > .block > .subcategories > .item_subcategorie{
    margin-top: 15px;
    width: 33.3%;
    padding: 10px;
    background-color: white;
    text-align: center;
}
.dbfeaturedcategories > .block > .subcategories > .item_subcategorie > a >.img_subcategorie{
    width: 96px;
    height: 96px;
}
.dbfeaturedcategories > .block > .subcategories > .item_subcategorie > .subcategorie_name{
    width: 100%;
    height: 40%;
    margin-bottom: 0px;
    font-weight: 600;
    color:var(--color_font);
    font-size: 0.9375rem;
    text-align: center;
}
.dbfeaturedcategories > .block > .subcategories > .item_subcategorie > .subcategorie_name:visited{
    color:var(--color_font);
}

@media (min-width:1200px){
    .dbfeaturedcategories{
        flex-direction: row;
    }
    .dbfeaturedcategories > .block{
        flex-direction: row;
        width: 50%;
        justify-content: space-between;
    }
    .dbfeaturedcategories > .block:first-of-type{
        padding-left: 0;
    }
    .dbfeaturedcategories > .block:nth-of-type(2){
        padding-right: 0;
    }
    .dbfeaturedcategories > .block > .category_principal{
        width: 30%;
        align-items: center;
    }
    .dbfeaturedcategories > .block > .subcategories{
        width: 70%;
    }
    .dbfeaturedcategories > .block > .subcategories > .item_subcategorie{
        margin-top: 15px;
        width: 33.3%;
        padding: 10px;
        background-color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .dbfeaturedcategories > .block > .subcategories > .item_subcategorie > a >.img_subcategorie{
        margin: 15px auto 0;
    }
    .dbfeaturedcategories > .block >.category_title_block_desktop{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: left;
        text-align: left;
        padding: 10px;
        padding-left: 0;
        flex-basis: 100%;
    }
    .dbfeaturedcategories > .block >.category_title_block_desktop > .category_title{
        font-weight: 600;
        font-size: 25px;
        margin-bottom: 5px;
        color:var(--color_font);
        margin-right: 20px;
    }
    .dbfeaturedcategories > .block >.category_title_block_desktop > span{

    }
    .dbfeaturedcategories > .block >.category_title_block_desktop > span > a{
        text-decoration: none;
        color:var(--color_font);
    }
    .dbfeaturedcategories > .block > .category_principal >.category_title_block {
        display: none;
    }
    .dbfeaturedcategories > .block > .category_principal > a > .img_category_principal{
        width: 150px;
        height: 150px;
        margin-top: 15px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
}