.category-top {
    margin: 8px 0 32px;
}

.category-top .breadcrumb{
    justify-content: center;
    padding-top: 0;
}

.category-actions {
    margin-bottom: 1rem;
    max-width: 407px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.category-actions .select-selected {
    width: 20px;
    overflow: hidden;
    white-space: nowrap;
    color: transparent;

    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.22656 6.77344L0.695312 2.16406C0.460938 1.95573 0.460938 1.73438 0.695312 1.5L0.96875 1.22656C1.17708 0.992188 1.39844 0.992188 1.63281 1.22656L5.53906 5.21094L9.44531 1.22656C9.67969 1.01823 9.90104 1.01823 10.1094 1.22656L10.3828 1.5C10.6172 1.73438 10.6172 1.95573 10.3828 2.16406L5.85156 6.77344C5.64323 6.98177 5.4349 6.98177 5.22656 6.77344Z' fill='%23231F20'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 11px 8px;
}

.category-actions .select-items {
    left: auto;
}

.category-actions .select-selected {
    margin-bottom: 0;
    border: 0;
    padding-bottom: 0;
    color: transparent;
}

.category-actions .select-items div {
    color: #DE418E;
}

.pagination-result {
    display: none;
}

.category-visual-description {
    margin-bottom: 20px;
}

.sort-action {
    display: flex;
    justify-content: flex-end;
    height: 100%;
    align-items: center;
}

.sort-action label {
    color: var(--black, #231F20);
    font-size: 16px;
    line-height: 26px;
    margin-right: 5px;
}

.sort-action select {
    margin-bottom: 0;
    color: #DE418E;
}

.categories-list {
    margin-bottom: 2rem;
}

.category-item {
    margin-bottom: 8px;
}

.category-item a {
    color: #777777;
    font-size: 16px;
    text-decoration: none;
}

.category-item.active a {
    color: #DE418E;
    font-weight: 600;
    line-height: 19px;
    text-decoration-line: underline;
}

.category-item a:hover {
    color: #DE418E;
    text-decoration-line: underline;
}

/* #column-left {
    display: none;
} */

#category-left-side {
    position: fixed;
    background: #fff;
    left: -400px;
    top: 0;
    bottom: 0;
    max-width: 375px;
    width: 100%;
    z-index: 999;
    padding: 15px;
    box-sizing: border-box;
    transition: left 0.2s ease-in-out;
    box-shadow: 0px 0px 10px #ccc;
}

#category-left-side.active {
    left: 0;
    transition: left 0.2s ease-in-out;
}

.left-side-content {
    height: calc(100% - 20px);
    overflow: auto;
    padding-right: 10px;
}

#category-left-side .close {
    margin-left: auto;
    display: block;
    margin-bottom: 15px;
}

.filters-mobile {
    display: block;
}

.btn-filters {
    border-radius: 2px;
    background: #DE418E;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 9px 30px;
    line-height: 1;
}

.btn-filters svg {
    margin-right: 8px;
}

@media (min-width: 768px) {
    .category-actions {
        max-width: 100%;
        margin-left: 0;
        margin-top: 0;
    }

    .category-actions .select-selected {
        width: auto;
        color: #DE418E;
        background: none;
    }
}


@media (min-width: 992px) {

    .left-side-content {
        height: 100%;
    }

    #category-left-side {
        position: static;
        box-shadow: none;
        padding-top: 0;
        padding-bottom: 0;
    }    

    .filters-mobile {
        display: none;
    }

    #category-left-side .close {
        display: none;
    }
    
    .pagination-result {
        display: block;
        color: var(--black, #231F20);
        font-size: 16px;
        line-height: 26px;
    }

    .category-visual-description {
        margin-bottom: 50px;
    }
}