.category .bx-filter .bx-filter-popup-result.right {
    color: #ffffff;
    user-select: none;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    padding-top: 11px;
    background: green;
    border: none;
}
.category .bx-filter .bx-filter-popup-result {
    z-index: 20;
}
.category .bx-filter .bx-filter-popup-result a {
    color: #32b14b;
}
.category {
    width: 100%;
    padding: 20px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.category__side {
    width: 300px;
}
.category__side-head {
    width: 100%;
    position: relative;
    z-index: 0;
}
.category__side-head-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0;
}
.category__side-head:after {
    content: "";
    position: absolute;
    top: 0;
    left: -17px;
    width: calc(100% + 34px);
    height: 100px;
    z-index: -1;
    background: #FFFFFF;
    box-shadow: 0 -10px 10px rgba(175, 175, 175, 0.15);
    border-radius: 20px 20px 0 0;
}
.category__side-head-img {
    width: 40px;
    margin-right: 17px;
}
.category__side-head-img img {
    max-width: 100%;
}
.category__side-head-text {
    width: calc(100% - 40px - 17px);
    color: #272731;
}
.subcategory .category__side-head-text {
    color: #B0B0B7;
}
.subcategory .category__side-head-list-item {
    color: #B0B0B7;
}
.category__side-head-list-item.active {
    color: #272731;
}
.category__side-head-list {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.category__side-head-list-item {
    display: inline-block;
    padding: 5px 0;
    padding-left: 77px;
    color: #5F5F71;
    transition: .5s;
}
.category__side-head-list-item:first-child {
    padding-top: 0;
}
.category__side-head-list-item:last-child {
    padding-bottom: 0;
}
.category__side-head-link {
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    background: #EBF3F0;
    border-radius: 10px;
    transition: .5s;
}
.category__side-head-link-img {
    display: flex;
    align-items: center;
}
.category__side-head-link-img path {
    transition: .5s;
}
.subcategory .category__side-head-link-text {
    color: #B0B0B7;
}
.category__side-head-link-text {
    margin-left: 20px;
    padding-top: 1px;
    display: block;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 175%;
    color: #5F5F71;
    transition: .5s;
}
.category__side-body {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 15px;
}
.category__side-body-title {
    margin-bottom: 30px;
    color: #3E3E47;
}
.filter-switcher {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
}
.filter-switcher__title {
    color: #3E3E47;
}
.filter-switcher__label {
    cursor: pointer;
}
.filter-switcher__input {
    display: none;
}
.filter-switcher__input:checked ~ .filter-switcher__img:after {
    left: calc(100% - 3px);
    transform: translateX(-100%) translateY(-50%);
}
.filter-switcher__input:checked ~ .filter-switcher__img {
    background: var(--green);
}
.filter-switcher__img {
    width: 32px;
    height: 20px;
    display: block;
    background: #B0B0B7;
    position: relative;
    border-radius: 13px;
    transition: .3s;
    margin-left: 10px;
}
.filter-switcher__img:after {
    content: '';
    position: absolute;
    transition: .3s;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--white);
}
.filter-block {
    width: 100%;
    margin-bottom: 30px;
}
.filter-block:last-child {
    margin-bottom: 0;
}
.filter-block__head {
    width: 100%;
    margin-bottom: 10px;
    color: #3E3E47;
}
.filter-block__body {
    display: flex;
    flex-direction: column;
    max-height: 250px;
    overflow-y: scroll;
}
.filter-block__body::-webkit-scrollbar {
    width: 5px;
    height: 0;
}
.filter-block__body::-webkit-scrollbar-track {
    background: #D8D8DC;
    border: 2px solid var(--white);
}
.filter-block__body.active::-webkit-scrollbar-track {
    background: transparent;
}
.filter-block__body::-webkit-scrollbar-thumb {
    background: #B0B0B7;
    border-radius: 5px;
}
.filter-block__checkbox {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
    cursor: pointer;
}
.filter-block__checkbox:last-child {
    margin-bottom: 0;
}
.filter-block__input {
    display: none;
}
.filter-block__img {
    height: 16px;
    width: 16px;
    margin-right: 10px;
    border: 1px solid #272731;
    border-radius: 4px;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}
.filter-block__img svg {
    max-width: 100%;
    max-height: 100%;
    transition: .3s;
    opacity: 0;
}
.filter-block__text {font-weight: 500;font-size: 16px;line-height: 102.02%;color: #000;
    user-select: none;
    transition: .5s;
} 
.filter-block__input:checked + .filter-block__img svg {
    opacity: 1;
}
.filter-block__input:checked + .filter-block__img {
    background: var(--green);
    border-color: var(--green);
}
.category__side-body-buttons {
    width: 100%;
    display: flex;
    align-items: initial;
    justify-content: flex-start;
}
.category__side-body-select {
    width: 136px;
    height: 39px;
    background: #61D378;
    border-radius: 10px;
    color: #FFFFFF;
    margin-right: 10px;
    transition: .5s;
}
.category__side-body-clear {
    width: 136px;
    height: 39px;
    background: #EBF3F0;
    border-radius: 10px;
    color: #868B9A;
    transition: .5s;
}
.category__side-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.category__side-banner {
    width: 100%;
    display: block;
}
.category__side-banner img {
    width: 100%;
}
.category__side-news {
    width: 100%;
    margin: 40px 0;
}
.category__side-news-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.category__side-news-title {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    color: #3E3E47;
}
.category__side-news-link {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transition: .5s;
}
.category__side-news-link-text {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-align: right;
    color: #3E3E47;
    transition: .5s;
}
.category__side-news-link-img {
    margin-left: 6px;
    display: flex;
    align-items: center;
}
.category__side-news-link-img path {
    transition: .5s;
}
.category__side-news-body {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.category__side-news-item {
    width: 100%;
    background: #FFFFFF;
    padding: 16px;
    box-shadow: 0px 10px 20px rgba(13, 37, 60, 0.2);
    border-radius: 10px;
    margin-bottom: 16px;
    color: #3E3E47;
    transition: .5s;
}
.category__side-news-item:last-child {
    margin-bottom: 0;
}
.category__main {
    width: 950px;
}
.category__main-info {
    width: 100%;
    margin-bottom: 15px;
}
.category__main-info-body {
    max-height: 91px;
    position: relative;
    overflow: hidden;
}
.category__main-info-body:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, .6) 20.78%, #ffffff 55.78%);
}
.category__main-info-body.active {
    max-height: none;
    overflow: visible;
    padding-bottom: 40px;
}
.category__main-info-body.active:after {
    display: none;
}
.category__main-info-body.active .category__main-info-body-btn svg {
    transform: scaleY(-1);
}
.category__main-info-body.active .category__main-info-body-btn-text:nth-child(2) {
    display: block;
}
.category__main-info-body.active .category__main-info-body-btn-text:nth-child(1) {
    display: none;
}
.category__main-info-body-btn-text:nth-child(2) {
    display: none;
}
.category__main-info-body-btn {
    display: inline-flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 3;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.category__main-info-body-btn-text {
    color: #32B14B;
    margin-right: 7px;
    transition: .5s;
}
.category__main-info-body-btn-img {
    display: flex;
    align-items: center;
}
.category__main-info-body-btn-img path {
    transition: .5s;
}
.category__main-title {
    width: 100%;
    margin-bottom: 20px;
    color: #3E3E47;
}
.category__main-text {
    width: 100%;
    color: #3E3E47;
    text-align: justify;
}
.category__main-info-body .category__main-text img {
    /*display: inline-block;*/
}
.category__main-text img {
    max-width: 100%;
    height: auto;
    padding: 10px;
    /*display: block;*/
    /*margin: 0 auto;*/
    /*float: none ;*/
}
.category__main-text a {
    color: var(--green-header);
    text-decoration: underline;
}
.category__main-head {
    padding: 10px 0;
    position: relative;
    /*z-index: 0;*/
}
.category__main-head:after {
    content: '';
    position: absolute;
    z-index: -1;
    width: calc(100% + 34px + 34px);
    left: -34px;
    top: 0;
    height: 150px;
    background: #FFFFFF;
    box-shadow: 0 -10px 10px rgba(175, 175, 175, 0.15);
    border-radius: 20px 20px 0px 0px;
}
.category__main-filters {
    width: 100%;
    display: flex;
    align-items: initial;
    justify-content: flex-start;
    margin: -5px -10px;
}
.category__main-filters-checkbox {
    margin: 5px 10px;
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    background: #FFFFFF;
    box-shadow: 2px 2px 15px rgba(50, 30, 65, 0.2);
    border-radius: 10px;
    cursor: pointer;
}
.category__main-filters-checkbox-input {
    display: none;
}
.category__main-filters-checkbox-img {
    height: 16px;
    width: 16px;
    margin-right: 10px;
    border: 1px solid #272731;
    border-radius: 4px;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}
.category__main-filters-checkbox-img svg {
    max-width: 100%;
    max-height: 100%;
    transition: .3s;
    opacity: 0;
}
.category__main-filters-checkbox-text {
    color: #3E3E47;
    user-select: none;
}
/*.category__main-filters-checkbox-input:checked + .category__main-filters-checkbox-img {*/
/*    background: #000;*/
/*}*/
.category__main-filters-checkbox-input:checked + .category__main-filters-checkbox-img svg {
    opacity: 1;
}
.category__main-filters-checkbox-input:checked + .category__main-filters-checkbox-img {
    background: var(--green-header);
    border-color: var(--green-header);
}
.category__main-added {
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.category__main-added-item {
    padding: 5px 10px;
    padding-right: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    background: #32B14B;
    border-radius: 5px;
    margin-right: 6px;
}
.category__main-added-item:last-child {
    margin-right: 0;
}
.category__main-added-item-text {
    margin-right: 10px;
    color: #FFFFFF;
}
.category__main-added-item-delete {
    display: flex;
    align-items: center;
    padding: 3px;
}
.category__main-body {
    width: calc(100% + 20px);
    margin: 0 -10px;
    display: flex;
    align-items: initial;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.category__main-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 25px;
}
.category__main-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    font-style: normal;
    height: 50px;
    font-weight: 400;
    font-size: 13px;
    line-height: 175%;
    color: #272731;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(13, 37, 60, 0.2);
    transition: .5s;
    cursor: pointer;
}
.category__main-head-flex {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.category__main-head-mobile {
    display: none;
    width: 50px;
    height: 40px;
    background: #B0B0B7;
    box-shadow: 2px 2px 15px rgba(50, 30, 65, 0.2);
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}
.category__main-text {
}
.category__main-text &gt; *:first-child {
    padding-top: 0;
}
.category__main-text &gt; *:last-child {
    padding-bottom: 0;
}
/*.category__main-text &gt; *:last-child img {*/
/*    float: none;*/
/*}*/
.category__main-text p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #3E3E47;
    padding: 10px 0;
}
.category__main-text ol li {
    margin-left: 10px;
    list-style-position: outside !important;
}
.category__main-text ol ul {
     list-style-type: circle;
}
.category__main-text ul li {
    list-style: none;
    position: relative;
    /*display: flex;*/
    /*flex-wrap: wrap;*/
}
.category__main-text ul li &gt; * {
    margin-right: 5px;
}
.category__main-text ul li:before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #3E3E47;
    right: calc(100% + 7px);
    top: 13px;
}
.category__main-text h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    color: #3E3E47;
    padding: 10px 0;
}
.category__main-text h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: #3E3E47;
    padding: 10px 0;
}
.category__main-text h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #3E3E47;
    padding: 10px 0;
}
.category__main-text li {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #3E3E47;
    list-style-position: inside;
    padding: 5px 0;
}
/*.category__main-text ul li {
    display: flex;
}*/
.category__main-text ol {
    padding: 10px 0 10px 15px;
}
.category__main-text ul {
    padding: 10px 0 10px 15px;
}
.category__main-text .category__main-info-body.active {
    padding-bottom: 40px ;
}
.category__main-filters-select {
    width: 220px;
    margin: 5px 10px;
    position: relative;
}
.category__main-filters-select .catalog__filter-block-head-side {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}
.catalog__filter-block-head-logo {
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.category__main-filters-select .catalog__filter-block-head {
    background: #FFFFFF;
    box-shadow: 2px 2px 15px rgba(50, 30, 65, 0.2);
    border-radius: 10px;
    padding: 5px 12px 5px 15px;
    height: 40px;
}
.category__main-filters-select.select-active .catalog__filter-block-head {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background: #FFFFFF;
}
.category__main-filters-select .catalog__filter-block-option-text {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.category__main-filters-select .catalog__filter-block-option-text svg {
    margin-right: 10px;
}
.category__main-filters-select .catalog__filter-block-head-arrow {
    right: 15px;
}
.category__main-filters-select .catalog__filter-block-body-list {
    background: #FFFFFF;
    max-height: none;
    overflow: visible;
}
.category__main-filters-select.select-active .catalog__filter-block-body {
    background: #ffffff;
    padding-left: 15px;
    padding-right: 15px;
}
.category__main-filters-select .catalog__filter-block-head-value {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #3E3E47;
    width: calc(100% - 30px);
}
.category__main-filters-select.select-active .catalog__filter-block-body {
    /*z-index: 10;*/
}
@media (min-width: 1399px) {
    .category__main-info-body-btn:hover .category__main-info-body-btn-text {
        color: var(--green-header);
        transition: .3s;
    }
    .category__main-info-body-btn:hover .category__main-info-body-btn-img path {
        stroke: var(--green-header);
        transition: .3s;
    }
    .filter-block__checkbox:hover .filter-block__text {
        color: var(--green-header);
        transition: .3s;
    }
    .category__side-body-select:hover {
        background: var(--green);
        cursor: pointer;
        transition: .3s;
    }
    .category__side-body-clear:hover {
        background: var(--green-header);
        cursor: pointer;
        color: var(--white);
        transition: .3s;
    }
    .category__main-more:hover {
        transition: .3s;
        color: var(--white);
        background: var(--green-header);
    }
    .category__side-head-list-item:hover:not(.active) {
        transition: .3s;
        cursor: pointer;
        color: var(--green);
    }
    .category__side-head-link:hover {
        transition: .3s;
        background: var(--green-header);
    }
    .category__side-head-link:hover .category__side-head-link-text {
        transition: .3s;
        color: var(--white);
    }
    .category__side-head-link:hover .category__side-head-link-img path {
        transition: .3s;
        fill: var(--white);
    }
    .category__side-news-item:hover {
        transition: .3s;
        cursor: pointer;
        color: var(--green);
    }
    .category__side-news-link:hover .category__side-news-link-text {
        transition: .3s;
        color: var(--green);
    }
    .category__side-news-link:hover .category__side-news-link-img path {
        transition: .3s;
        stroke: var(--green);
    }
    .category__main-text a:hover {
        text-decoration: none;
    }
}
@media (max-width: 1399px) {
    .category__main-text h2 {
        font-size: 20px;
        line-height: 24px;
    }
    .category__main-text h1 {
        font-size: 24px;
        line-height: 28px;
    }
    .category {
        position: relative;
    }
    .category__main {
        width: 100%;
    }
    .category__side-bottom, .category__side-head {
        display: none;
    }
    .category__side {
        display: none;
        position: absolute;
        width: 100%;
        z-index: 2;
        background: var(--white);
        left: 0;
        top: 0;
        padding: 50px 16px;
    }
    .filter-block {
        width: 50%;
    }
    .category__side-body-title {
        width: 100%;
    }
    .category__side-body {
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    .category__side.active {
        display: block;
    }
    .category__main-title {
        font-size: 24px;
        line-height: 29px;
    }
    .category__main-info {
        margin-bottom: 30px;
    }
    .category__main-head {
        padding-top: 23px;
    }
    .category__main-body {
        margin-top: -13px;
        margin-bottom: -13px;
    }
    .category .product-card__helper {
        padding-top: 13px;
        padding-bottom: 13px;
    }
    .category__main-bottom {
        margin-top: 37px;
    }
    .category__main-more {
        background: #FFFFFF;
        color: #787878;
        box-shadow: 0px 10px 20px rgba(13, 37, 60, 0.2);
    }
    .category {
        padding-top: 10px;
        padding-bottom: 60px;
    }
    .category .product-card__helper {
        width: 25%;
    }
    .category__main-filters {
        width: calc(100% - 50px);
        flex-wrap: wrap;
    }
    .category__main-head-mobile {
        display: flex;
        transition: .3s;
    }
    .category__main-head-mobile.active {
        background: #32B14B;
    }
}
@media (max-width: 799px) {
    .category__main-text img {
        width: 100%;
        max-width: 100%;
    }
    .filter-block {
        width: 100%;
    }
    .category__main-head:after {
        width: calc(100% + 32px);
        left: -16px;
        box-shadow: 0px -10px 10px rgba(175, 175, 175, 0.15);
        border-radius: 20px 20px 0px 0px;
    }
    .category .product-card__helper {
        width: 50%;
    }
    .category__main-added {
        flex-wrap: wrap;
        width: calc(100% + 6px);
        margin: -3px;
        margin-top: 24px;
    }
    .category__main-added-item {
        margin: 3px;
    }
    .category {
        padding-bottom: 100px;
    }
}