.page-catalog .breadcrumb{
    background: unset;
}

.page-catalog .breadcrumb{
    background: unset;
    padding-left: 0;
}

.page-catalog .breadcrumb-item a{
    color: #4B4B4D;
    font-weight: normal;
}
.page-catalog .breadcrumb-item.active{
    color: #99BF4C;
    font-weight: normal;
}
.breadcrumb{
    vertical-align: middle;
}
.breadcrumb li:after{
    color:#4B4B4D;
}

.count-products{
    color: #C4C4C4;
    font-weight: normal;
    font-family: "Century Gothic", sans-serif;
    font-size: 15px;
}

.catalog-title{
    margin-bottom: 3px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.catalog-title h1{
    font: 24px "Century Gothic Bold", sans-serif;

}

.page-catalog__content{
    padding-top: 30px;
}

.category-children{
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    margin-left: -20px;
}
.category-children__title{
    font-weight: bold;
    text-transform: uppercase;
    color: #4B4B4D ;

}
.category-children__container{
    display: flex;
    gap: 10px;
    padding-bottom: 20px;

}
.category-children__item{

}
.category-children__item a{
    color: #4B4B4D ;
}
.category-children__sort {
    color: #C4C4C4;
    display: grid;
    grid-template-columns: 146px 1fr 1fr;
    grid-gap: 20px;
    max-width: 610px;
}

.category-children__sort-item{
    padding-bottom: 10px;
    cursor: pointer;
}

.category-children__sort-item span{

    border-bottom: 1px dotted #C4C4C4;
    /*text-decoration: underline dotted;*/
}
.category-children__sort-item.active{
    color: #99BF4C;
}

.category-children__sort-item.active span{

    border-bottom: 1px dotted #99BF4C;
    /*text-decoration: underline dotted;*/
}

.category-children__sort-item span:after{
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    width: 17px;
    height: 10px;
    background-size: 100%;
    background-repeat: no-repeat;
}

.category-children__sort-item--down span:after{
    background-image: url("/images/filter/drop-arrow.png");
}

.category-children__sort-item--down.active span:after{
    background-image: url("/images/filter/drop-arrow-active.png");
}

.category-children__sort-item--up span:after{
    -moz-transform: scale(-1, -1);
    -o-transform: scale(-1, -1);
    -webkit-transform: scale(-1, -1);
    transform: scale(-1, -1);
    vertical-align: unset;
    background-image: url("/images/filter/drop-arrow.png");
}

.category-children__sort-item--up.active span:after{
    background-image: url("/images/filter/drop-arrow-active.png");
}
