/* Filter block */
.is-flex{
    display: flex;
}
.catalog-block-filters ul,
.catalog-block-filters li,
.catalog-block-filters p{
    list-style: none;
    padding: 0;
    margin: 0;
}

.brand-filters .filter-sort__title,
.catalog-block-filters .filter-sort__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.catalog-block-filters .filter-sort__list-filter {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.catalog-block-filters .filter-sort__list-filter .btn-filter {
    position: relative;
    align-items: center;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    color: #444;
    cursor: pointer;
    display: flex;
    font-size: 12px;
    height: 34px;
    margin: 0 10px 10px 0;
    padding: 5px 10px;
    white-space: nowrap;
    text-transform: none;
    justify-content: center;
}

.catalog-block-filters .filter-sort__list-filter .btn-filter .icon {
    align-items: center;
    display: flex;
    margin-right: 6px;
    width: 15px;
    position: relative;
}

.catalog-block-filters .btn-filter #total-filter-num{
    position: absolute;
    color: #fff;
    background-color: #FB743E;
    border-radius: 50%;
    display: inline-block;
    font-size: 10px;
    height: 16px;
    line-height: 16px;
    position: absolute;
    top: -7px;
    text-align: center;
    right: -7px;
    width: 16px;
}


.catalog-block-filters .filter-sort__list-filter .brand-filters ul{
    display: grid;
    grid-auto-rows: minmax(min-content, max-content);
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 8px;
}

.catalog-block-filters .filter-sort__list-filter .btn-filter-item {
    position: relative;
}

.catalog-block-filters .filter-sort__list-filter .brand-filter-item .btn-filter{
    height: 40px;
    background-color: #fff;
    margin-right: 0;
}

.catalog-block-filters .filter-sort__list-filter .btn-filter-item .brand-image {
    display: flex;
    justify-content: center;
    max-height: 36px;
    width: auto;
    max-width: 90%;
    object-fit: contain;
}

.catalog-block-filters .filter-sort__list-filter .btn-filter span{
    display: inline-block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.catalog-block-filters .filter-sort__list-filter input{
    display: none;
}

.catalog-block-filters .filter-sort__list-filter input:checked + .btn-filter,
.catalog-block-filters .filter-sort__list-filter .btn-filter.active,
.catalog-block-filters .price-range-filter .button__filter-parent.active,
.catalog-block-filters .rating-filter .button__filter-parent.active {
    background: #fef2f2;
    border: 1px solid #d70018;
    color: #d70018;
    position: relative;
}

.catalog-block-filters .filter-sort__list-filter input:checked + .btn-filter .icon,
.catalog-block-filters .filter-sort__list-filter .btn-filter.active .icon,
.catalog-block-filters .price-range-filter .button__filter-parent.active .icon,
.catalog-block-filters .rating-filter .button__filter-parent.active .icon {
    fill: #d70018;
}

.catalog-block-filters .filter-sort__list-filter .btn-filter.active.deactive {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #444;
}

.catalog-block-filters .filter-sort__list-filter .btn-filter.active.deactive .icon {
    fill: #444;
}

.catalog-block-filters .filter-sort__list-filter .list-filter-child input:checked + .btn-filter:after,
.catalog-block-filters .filter-sort__list-filter .btn-filter-item.active:after {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 15px;
    height: 10px;
    background-color: #d70018;
    border-radius: 0 8px 0 8px;
    content: "✓";
    font-size: 7px;
    color: #fff;
    text-align: center;
    line-height: initial;
}

.catalog-block-filters .filter-sort__list-filter .btn-filter .item-value-filter:not(:last-child):after {
    content: "|";
}

.catalog-block-filters {
    position: relative;
}

.catalog-block-filters .btn-filter .icon {
    align-items: center;
    display: flex;
    margin-left: 6px;
    margin-right: 0;
    width: 15px;
}

.catalog-block-filters .list-filter-child {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    display: none;
    opacity: 0;
    padding: 10px 10px 0;
    position: absolute;
    transition: 0.5s;
    width: 365px;
    z-index: -1;
}

.catalog-block-filters .filter-item-wrap{
    width: 100%;
    position: relative;
    display: flex;
}

.catalog-block-filters .list-filter-child.right {
    left: auto;
    right: 0;
}



.catalog-block-filters .list-filter-child.right.active:after {
    left: auto;
    right: 30px;
}

.catalog-block-filters .list-filter-child.active {
    display: block;
    opacity: 1;
    z-index: 100;
}

.catalog-block-filters .list-filter-child.active:after {
    border-bottom: 10px solid #fff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    content: "";
    left: 30px;
    position: absolute;
    top: -10px;
}

.catalog-block-filters .list-filter-child.all {
    width: 800px;
}

.catalog-block-filters .list-filter-child.all .header-filter-all {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.catalog-block-filters .btn-close-filter {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    padding: 8px 10px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.1rem;
    margin: 0;
    position: absolute;
    right: 10px;
}

.catalog-block-filters .active_filters{
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
	padding-top: 30px;
}

.catalog-block-filters .active_filters span:first-child{
    margin-right: 10px;
}

.catalog-block-filters .active_filters .active_filter_item{
    display: flex;
    border: 1px solid #fb743e;
    padding-left: 5px;
    height: 24px;
    align-items: center;
    border-radius: 4px;
    font-size: 14px;
    line-height: 24px;
}

.catalog-block-filters .active_filters .active_filter_item img{
    height: 22px;
    width: auto;
}

.catalog-block-filters .active_filters .active_filter_item .remove-active-filter{
    width: 22px;
    height: 22px;
    display: block;
    cursor: pointer;
    background: red;
    margin-left: 5px;
}

.catalog-block-filters .list-filter-child.all .listFilter {
    display: flex;
    flex-wrap: wrap;
   height: 300px;
    min-height: 250px;
    overflow-y: auto;
    width: 100%;
}

.catalog-block-filters .list-filter-child.all .listFilter .filter-wrapper {
    width: 100%;
}

.catalog-block-filters .title-filter {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
}

.catalog-block-filters .list-filter-child ul {
    display: flex;
    flex-wrap: wrap;
}

.catalog-block-filters .list-filter-child .btn-filter-group {
    display: none;
    justify-content: space-between;
    margin-bottom: 10px;
}

.catalog-block-filters .list-filter-child .btn-filter-group.show {
    display: flex;
}

.catalog-block-filters .list-filter-child .btn-filter-group .button {
    font-size: 14px;
    font-weight: 600;
    width: calc(50% - 5px);
}

.catalog-block-filters .list-filter-child .btn-filter-group .button.submit {
    background-color: #d70018;
}

.catalog-block-filters .list-filter-child .price-filter-range .range-header {
    display: flex;
    justify-content: space-between;
}

.catalog-block-filters .list-filter-child .price-filter-range .range-header p{
    margin-bottom: 0;
}

.catalog-block-filters .list-filter-child .price-filter-range .price-range-slider-ltr {
    margin: 10px auto;
}

.catalog-block-filters .list-filter-child .price-filter-range .price-range-slider-ltr .ui-slider {
    background-color: #9f9d9d;
    border-radius: 10px;
}

.catalog-block-filters .list-filter-child .price-filter-range .price-range-slider-ltr .ui-slider-range {
    transition-duration: 0.25s;
    background-color: rgb(215, 16, 8);
}

.catalog-block-filters .list-filter-child .price-filter-range .price-range-slider-ltr .ui-slider .ui-slider-handle {
    background-color: #fff;
    border: 2px solid rgba(215, 0, 24, 0.52);
    border-radius: 50%;
    box-shadow: 0.5px 0.5px 2px 1px rgba(0, 0, 0, 0.32);
    box-sizing: border-box;
    cursor: pointer;
}

.catalog-block-filters .filter-sort__list-filter .overlay-clear {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5;
    background-color: rgba(0, 0, 0, .4);
}

@media screen and (max-width: 768px) {

    .catalog-block-filters .filter-sort__list-filter .filter-wrapper{
        padding-top: 8px;
    }

    .catalog-block-filters .list-filter-child.all {
        width: calc(100vw - 20px);
    }

    .catalog-block-filters .list-filter-child.all .listFilter {
        height: 350px;
        width: 100%;
    }

    .catalog-block-filters .list-filter-child.all .listFilter .filter-wrapper {
        width: 100%;
    }

    .catalog-block-filters .filter-sort__list-filter .brand-filters ul{
        display: grid;
        grid-auto-rows: minmax(min-content, max-content);
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-gap: 6px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 717px) {

    .catalog-block-filters .filter-sort__list-filter {
        flex-wrap: nowrap;
        overflow-x: auto;
        width: 100%;
    }

    .catalog-block-filters .filter-sort__list-filter .filter-wrapper{
        position: static;
    }

    .catalog-block-filters .list-filter-child {
        position: absolute;
    }

    .catalog-block-filters .list-filter-child.all {
        background-color: #fff;
        border-radius: 10px 0 0 10px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
            0 2px 4px -1px rgba(0, 0, 0, 0.06);
        height: 100%;
        margin-top: 0 !important;
        overflow: hidden;
        padding: 0;
        position: fixed;
        right: -80%;
        top: 0;
        transition: 0.5s;
    }

    .catalog-block-filters .list-filter-child.all.active {
        bottom: 0;
        opacity: 1;
        right: 0;
        top: 0;
        transform: translateX(0);
        width: 100%;
        z-index: 1021;
    }

    .catalog-block-filters .btn-close-filter {
        background-color: transparent;
        border: 0;
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        right: 0;
        position: static;
    }

    .catalog-block-filters .list-filter-child.all .listFilter,
    #pmca-active-filters {
        padding: 10px;
        width: 100%;
        height: fit-content;
        overflow-x: auto;
        max-height: calc(100% - 100px);
        margin-bottom: 0;
    }

    .catalog-block-filters .list-filter-child.active {
        opacity: 1;
        right: 50%;
        transform: translateX(50%);
        width: 350px;
        z-index: 10;
    }

    .catalog-block-filters .list-filter-child.active:after {
        display: none;
    }

    .catalog-block-filters .filter-sort__list-filter .overlay-clear.all {
        background: rgba(0, 0, 0, 0.53);
        z-index: 1020;
    }
}

@media screen and (max-width: 540px) {
    .catalog-block-filters .filter-sort__list-filter {
        overflow-x: auto;
    }
}

.filter-actions{
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, .05);
    font-size: 0;
    margin: 8px -10px 0;
    padding: 10px;
    text-align: center;
    display: flex;
    gap: 5px;
}

.view-filter-results, .btn-close-filter, .reset-filter, .reset-filter-all {
    display: inline-block;
    font-size: 14px;
    line-height: 16px;
    margin: 0 5px;
    padding: 14px 10px;
    text-align: center;
    min-width: 120px;
    max-width: 100%;
    flex: 1;
    position: relative;
    white-space: nowrap;
    overflow: visible;
}

.catalog-block-filters .btn-close-filter {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #333;
    float: right;
    font-size: 14px;
    line-height: 21px;
    padding: 5px 5px 5px 0;
    text-align: right;
    width: 65px;
}

.view-filter-results{
    background-color: #FB743E;
    border-radius: 8px;
    color: #fff;
}

.view-filter-results.loading .count-results {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: #FB743E;
    border-radius: 8px;
}

.view-filter-results.loading .count-results .spinner {
    display: block;
    width: 20px;
    height: 20px;
    border: 5px solid #fff;
    border-top: 5px solid transparent;
    -webkit-animation: load-animate infinite linear 1s;
    animation: load-animate infinite linear 1s;
    border-radius: 100%;
}

#preloader {
    position: absolute;
    top: 234px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 2;
    background: rgba(255,255,255,.75)
}

.lds-roller {
    display: block;
    position: relative;
    width: 80px;
    height: 80px;
    top: 50px;
    margin: 0 auto;
    text-align: center
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(.5,0,.5,1) infinite;
    transform-origin: 40px 40px
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #000;
    margin: -4px 0 0 -4px
}

.lds-roller div:nth-child(1) {
    animation-delay: -.036s
}

.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px
}

.lds-roller div:nth-child(2) {
    animation-delay: -.072s
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px
}

.lds-roller div:nth-child(3) {
    animation-delay: -.108s
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px
}

.lds-roller div:nth-child(4) {
    animation-delay: -.144s
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px
}

.lds-roller div:nth-child(5) {
    animation-delay: -.18s
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px
}

.lds-roller div:nth-child(6) {
    animation-delay: -.216s
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px
}

.lds-roller div:nth-child(7) {
    animation-delay: -.252s
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px
}

.lds-roller div:nth-child(8) {
    animation-delay: -.288s
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}


@keyframes load-animate {
    0% {
        transform: rotate(0deg)
    }

    50% {
        transform: rotate(180deg);
        opacity: .35
    }

    100% {
        transform: rotate(360deg)
    }
}

#pmca-load-more-products {
    display: block;
    overflow: hidden;
    position: relative;
    line-height: 40px;
    font-size: 14px;
    color: #FB743E;
    text-align: center;
    border-radius: 4px;
    margin: 20px auto 10px;
    width: 340px;
    background-color: #fff;
    border: 1px solid #FB743E;
    font-weight: bold;
}

#pmca-load-more-products::after {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #FB743E;
    content: '';
    position: relative;
    right: -5px;
    top: 11px
}

#pmca-load-more-products:not(.prevent):hover {
    background-color: #FB743E;
    color: #fff;
    border: 1px solid #FB743E
}

#pmca-load-more-products:not(.prevent):hover::after {
    border-top: 5px solid #fff
}

.bubblingG {
    text-align: center;
    width: 99%;
    height: 40px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255,255,255,.75);
    z-index: 1
}

.bubblingG span {
    display: inline-block;
    vertical-align: middle;
    width: 7px;
    height: 7px;
    margin: 25px 3px;
    background: #fff;
    border-radius: 49px;
    -o-border-radius: 49px;
    -ms-border-radius: 49px;
    -webkit-border-radius: 49px;
    -moz-border-radius: 49px;
    animation: bubblingG 1.5s infinite alternate;
    -o-animation: bubblingG 1.5s infinite alternate;
    -ms-animation: bubblingG 1.5s infinite alternate;
    -webkit-animation: bubblingG 1.5s infinite alternate;
    -moz-animation: bubblingG 1.5s infinite alternate
}

.pmca_readmore_product_wrapper .bubblingG span {
    animation: bubblingG-black 1.5s infinite alternate;
    -o-animation: bubblingG-black 1.5s infinite alternate;
    -ms-animation: bubblingG-black 1.5s infinite alternate;
    -webkit-animation: bubblingG-black 1.5s infinite alternate;
    -moz-animation: bubblingG-black 1.5s infinite alternate
}

#bubblingG_1 {
    animation-delay: 0s;
    -o-animation-delay: 0s;
    -ms-animation-delay: 0s;
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s
}

#bubblingG_2 {
    animation-delay: .45s;
    -o-animation-delay: .45s;
    -ms-animation-delay: .45s;
    -webkit-animation-delay: .45s;
    -moz-animation-delay: .45s
}

#bubblingG_3 {
    animation-delay: .9s;
    -o-animation-delay: .9s;
    -ms-animation-delay: .9s;
    -webkit-animation-delay: .9s;
    -moz-animation-delay: .9s
}

@keyframes bubblingG {
    0% {
        width: 7px;
        height: 7px;
        background-color: #fff;
        transform: translateY(0)
    }

    100% {
        width: 17px;
        height: 17px;
        background-color: #288ad6;
        transform: translateY(-20px)
    }
}

@-o-keyframes bubblingG {
    0% {
        width: 7px;
        height: 7px;
        background-color: #fff;
        -o-transform: translateY(0);
    }

    100% {
        width: 17px;
        height: 17px;
        background-color: #288ad6;
        -o-transform: translateY(-20px);
    }
}

@-ms-keyframes bubblingG {
    0% {
        width: 7px;
        height: 7px;
        background-color: #fff;
        -ms-transform: translateY(0)
    }

    100% {
        width: 17px;
        height: 17px;
        background-color: #288ad6;
        -ms-transform: translateY(-20px)
    }
}

@-webkit-keyframes bubblingG {
    0% {
        width: 7px;
        height: 7px;
        background-color: #fff;
        -webkit-transform: translateY(0)
    }

    100% {
        width: 17px;
        height: 17px;
        background-color: #288ad6;
        -webkit-transform: translateY(-20px)
    }
}

@-moz-keyframes bubblingG {
    0% {
        width: 7px;
        height: 7px;
        background-color: #fff;
        -moz-transform: translateY(0)
    }

    100% {
        width: 17px;
        height: 17px;
        background-color: #288ad6;
        -moz-transform: translateY(-20px)
    }
}

@keyframes bubblingG-black {
    0% {
        width: 7px;
        height: 7px;
        background-color: #fff;
        transform: translateY(0)
    }

    100% {
        width: 17px;
        height: 17px;
        background-color: #FB743E;
        transform: translateY(-20px)
    }
}

@-o-keyframes bubblingG-black {
    0% {
        width: 7px;
        height: 7px;
        background-color: #fff;
        -o-transform: translateY(0);
    }

    100% {
        width: 17px;
        height: 17px;
        background-color: #FB743E;
        -o-transform: translateY(-20px);
    }
}

@-ms-keyframes bubblingG-black {
    0% {
        width: 7px;
        height: 7px;
        background-color: #FB743E;
        -ms-transform: translateY(0)
    }

    100% {
        width: 17px;
        height: 17px;
        background-color: #FB743E;
        -ms-transform: translateY(-20px)
    }
}

@-webkit-keyframes bubblingG-black {
    0% {
        width: 7px;
        height: 7px;
        background-color: #fff;
        -webkit-transform: translateY(0)
    }

    100% {
        width: 17px;
        height: 17px;
        background-color: #FB743E;
        -webkit-transform: translateY(-20px)
    }
}

@-moz-keyframes bubblingG-black {
    0% {
        width: 7px;
        height: 7px;
        background-color: #fff;
        -moz-transform: translateY(0)
    }

    100% {
        width: 17px;
        height: 17px;
        background-color: #FB743E;
        -moz-transform: translateY(-20px)
    }
}

/* Layout dọc */
.filter-layout-vertical {
    flex-direction: column !important;
    align-items: flex-start !important;
}

.filter-layout-vertical .filter-wrapper {
    width: 100%;
    margin-bottom: 10px;
}

/* Sticky filter */
.catalog-block-filters.enable-sticky {
    background: #fff;
    transition: all 0.3s ease;
}

.catalog-block-filters.enable-sticky.is-stuck {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.catalog-block-filters.sticky-fixed {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    background: #fff !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
    width: 100% !important;
}

.pmca-sticky-placeholder {
    display: none;
    width: 100%;
}

/* Price range filter */
.price-range-filter .price-range-inputs,
.price-range-inputs-inside {
    padding: 10px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.price-range-filter .price-input-group,
.price-range-inputs-inside .price-input-group {
    flex: 1;
    min-width: 120px;
}

/* Price range slider */
.price-range-slider {
    margin: 15px 10px;
    height: 8px;
}

.price-range-slider .ui-slider-range {
    background: #d70018;
}

.price-range-slider .ui-slider-handle {
    background: #fff;
    border: 2px solid #d70018;
    border-radius: 50%;
    cursor: pointer;
    width: 18px;
    height: 18px;
    top: -5px;
}

.price-range-filter-inside,
.rating-filter-inside {
    width: 100%;
    margin-bottom: 15px;
}

.price-range-filter .price-input-group label,
.price-range-inputs-inside .price-input-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 500;
}

.price-range-filter .price-input-group input,
.price-range-inputs-inside .price-input-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    display: block !important;
}

.apply-price-range, .reset-price-range {
    display: inline-block;
    font-size: 14px;
    line-height: 16px;
    margin: 0 5px;
    padding: 14px 0;
    text-align: center;
    width: 170px;
    cursor: pointer;
    border: none;
    border-radius: 8px;
}

.apply-price-range {
    background-color: #FB743E;
    color: #fff;
}

.reset-price-range {
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    color: #333;
}

/* Rating filter */
.rating-filter ul,
.rating-filter-list {
    display: block !important;
    list-style: none;
    padding: 0;
    margin: 0;
}

.rating-filter ul li,
.rating-filter-list li {
    width: 100%;
    margin-bottom: 8px;
}

.rating-filter-item,
.rating-label {
    width: 100% !important;
    justify-content: flex-start !important;
    font-size: 16px !important;
    color: #ffa41c;
    display: flex;
    cursor: pointer;
}

.rating-filter-item.active,
.rating-filter-list input:checked + .rating-label {
    background: #fef2f2;
    border-color: #ffa41c;
    color: #ffa41c;
}

.rating-filter-list input[type="radio"] {
    display: none;
}

/* Filter position styles */
.filter-position-left .filter-block-container {
    max-width: 300px;
    float: left;
    margin-right: 20px;
}

.filter-position-right .filter-block-container {
    max-width: 300px;
    float: right;
    margin-left: 20px;
}

@media screen and (max-width: 768px) {
    .catalog-block-filters .list-filter-child.all{
        border-radius: 0;
        padding: 65px 0 15vh;
    }


    .fiter-close-button{
        background-color: #fff;
        border-bottom: 1px solid #e0e0e0;
        left: 0;
        right: 0;
        margin: 0 auto;
        position: fixed;
        padding: 6px 10px;
        top: 0;
        width: 100%;
        max-width: 640px;
        z-index: 13;
    }

    .list-filter-child.all .filter-actions{
        position: fixed;
        bottom: 0;
        margin: 8px 0 0;
        width: 100%;
    }
}

