.fs-loop-container {
    --fs-loop-color: #016ecd;
}

/** INFOBAR **/

.fs-loop-container .fs-loop-infobar {
    margin-bottom: 10px;
    display: flex;
    justify-content: end;
    align-items: center;
    font-style: italic;
    gap: 20px;
}

@media screen and (max-width: 600px) {
    .fs-loop-container .fs-loop-infobar {
        justify-content: space-between;
    }
    .fs-loop-container {
        overflow: hidden;
    }    
}

.fs-loop-container .fs-loop-infobar .fs-product-view {
    display: flex;
}

.fs-loop-container .fs-loop-infobar .fs-product-view button {
    padding: 0 8px;
    font-size: 16px;
    border: none;
    background-color: #f5f5f5;
    color: #111;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    background-image: none;
}
/*
.fs-loop-container .fs-loop-infobar .fs-product-view button i {
    font-size: 22px;
    line-height: 1;
    vertical-align: text-top;
}
*/
.fs-loop-container .fs-loop-infobar .fs-product-view button.active {
    background-color: #dfdfdf;
}

.fs-loop-container .fs-loop-infobar .fs-product-view button:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.fs-loop-container .fs-loop-infobar .fs-product-view button:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

/** LOOP **/

.fs-loop-container ul.products {
    display: grid;
    gap: 10px;
    margin: 0;
    overflow: visible;
}

.fs-loop-container .fs-loop.columns-6 ul.products {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.fs-loop-container .fs-loop.columns-5 ul.products {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.fs-loop-container .fs-loop.columns-4 ul.products {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.fs-loop-container .fs-loop.columns-3 ul.products {
    grid-template-columns: 1fr 1fr 1fr;
}

.fs-loop-container .fs-loop.columns-2 ul.products {
    grid-template-columns: 1fr 1fr;
}

.fs-loop-container .fs-loop.columns-1 ul.products {
    grid-template-columns: 1fr;
}

.fs-loop-container ul.products::before {
    content: none;
}

.fs-loop-container ul {
    padding: 0;
    list-style: none;
}

.fs-loop-container ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
}

@media screen and (max-width: 1150px) {
    .fs-loop-container ul.products {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .fs-loop-container ul.products {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
    }
}

@media screen and (max-width: 550px) {
    .fs-loop-container ul.products {
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }
}

.fs-loop-container .fs-loop.list ul.products {
    grid-template-columns: 1fr !important;
}

.fs-loop-container .fs-loop-not-found {
    display: none;
}

.fs-loop-container .fs-loop-not-found.active {
    display: flex;
    justify-content: center;
    padding: 50px 0;
    align-items: center;
    gap: 10px;
}

.fs-loop-container .fs-loop-footer {
    padding: 20px;
    display: flex;
    justify-content: center;
}

.fs-loop-container .fs-loop-footer .fs-load-more {
    display: none;
}

.fs-loop-container .fs-loop-footer .fs-load-more.active {
    display: inline-block;
}

.fs-loop-container .fs-loop-footer .fs-load-more.loading {
    position: relative;
    padding-right: 40px;
}

.fs-loop-container .fs-loop-footer .fs-load-more.loading::after {
    font-family: WooCommerce;
    content: "\e01c";
    vertical-align: top;
    font-weight: 400;
    position: absolute;
    top: 0.8em;
    right: 1em;
    animation: spin 2s linear infinite;
}

/** FILTER **/

.fs-loop-container .fs-filters-mobile-header,
.fs-loop-container .fs-filters-mobile-toggle {
    display: none;
}

.fs-loop-container .fs-filters > .fs-filter-show {
    display: none;
}

.fs-loop-container .fs-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.fs-loop-container .fs-filters .fs-filter {
    position: relative;
}

.fs-loop-container .fs-filters .fs-filter.fade {
    opacity: 0.3;
    pointer-events: none;
}

.fs-loop-container .fs-filters .fs-filter .fs-filter-toggle {
    border: none;
    background-color: #f5f5f5;
    color: #111;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 0;
    box-shadow: none;
    background-image: none;
}

.fs-loop-container .fs-filters .fs-filter .fs-filter-toggle:hover {
    background-color: #dfdfdf;
}

.fs-loop-container .fs-filters .fs-filter .fs-filter-toggle:focus {
    outline: 1px solid #111;
}

.fs-loop-container .fs-filters .fs-filter .fs-filter-toggle i {
    margin-left: 10px;
    font-size: 20px;
    transition: all 0.1s ease-in-out;
}

.fs-loop-container .fs-filters .fs-filter .fs-filter-toggle svg {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

.fs-loop-container .fs-filters .fs-filter .fs-filter-toggle i.eicon-angle-right {
    transform: rotate(90deg);
}

.fs-loop-container .fs-filters .fs-filter.active .fs-filter-toggle i.eicon-angle-right {
    transform: rotate(270deg);
}

.fs-loop-container .fs-filters .fs-filter .fs-filter-toggle .selected-count {
    display: none;
}

.fs-loop-container .fs-filters .fs-filter.selected .fs-filter-toggle .selected-count {
    margin-right: 10px;
    border-radius: 50%;
    background-color: var(--fs-loop-color);
    color: #fff;
    width: 20px;
    height: 20px;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-size: 12px;
    display: flex;
}

.fs-loop-container .fs-filters .fs-filter .fs-filter-content {
    display: none;
    position: absolute;
    min-width: 300px;
    max-height: 400px;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 100;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-shadow: 5px 5px 20px 3px #dfdfdf;
    box-shadow: 1px 3px 8px 0px #929292;
    top: 120%;
    z-index: 99999;
}

.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content {
    display: flex;
    flex-direction: column;
}

.fs-loop-container .fs-filters .fs-filter .fs-filter-content::-webkit-scrollbar {
    width: 7px;
}

.fs-loop-container .fs-filters .fs-filter .fs-filter-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.fs-loop-container .fs-filters .fs-filter .fs-filter-content::-webkit-scrollbar-thumb {
    background: rgb(160, 160, 160);
}

.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content .search-container {
    position: sticky;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 10;
}

.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content .search-container .clear {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    color: #111;
}

.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content input[type="text"] {
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #ddd;
    border-top: none;
    border-radius: 0;
    outline: none;
    padding-right: 20px;
}

.fs-loop-container .fs-filter ul li label .color {
    width: 40px;
    height: 20px;
    margin-right: 10px;
    border-radius: 3px;
}

.fs-loop-container .fs-filter ul li label .color.white {
    border: 1px solid #ddd;
}

.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content ul {
    padding: 0;
    list-style: none;
    background-color: #fff;
    margin: 0 !important;
}

.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content ul ul li {
    padding-left: 15px;
}

.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content ul li {
    font-size: 1rem;
    background-color: #fff;
}

.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content ul li.fade {
    opacity: 0.3;
    pointer-events: none;
}

.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content ul li:hover {
    background-color: #f5f5f5;
}

.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content ul li label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 13px 20px;
}

.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content ul li label > div {
    display: flex;
}

.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content ul li label .name {
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 80%;
    overflow: hidden;
    padding: 2px 0;
}

.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content ul li label .count {
    font-size: 0.8rem;
    line-height: 20px;
}

.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content ul li label input[type="radio"],
.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content ul li label input[type="checkbox"] {
    display: none;
}

.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content ul li label .fs-filter-radio,
.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content ul li label .fs-filter-checkbox {
    width: 20px;
    height: 20px;
    background-color: #e5e5e5;
    position: relative;
    margin-left: 8px;
    border-radius: 3px;
}

.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content ul li label .fs-filter-radio {
    border-radius: 50%;
}

.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content ul li label input[type="checkbox"]:checked + .fs-filter-checkbox,
.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content ul li label input[type="radio"]:checked + .fs-filter-radio {
    width: 16px;
    height: 16px;
    outline-offset: 2px;
    outline: 2px solid var(--fs-loop-color);
    background-color: var(--fs-loop-color);
    margin-left: 12px;
}
/*
.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content ul li label .fs-filter-checkbox::after {
    content: "";
    display: none;
    position: absolute;
    left: 6px;
    top: 2px;
    width: 8px;
    height: 14px;
    border: solid #111;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content ul li label input[type="checkbox"]:checked + .fs-filter-checkbox::after {
    display: block;
}
*/
.fs-loop-container .fs-filter-overlay {
    display: none;
    background-color: rgba(17,17,17,.4);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    z-index: 9999;
}

.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content .content-header {
    display: none;
    justify-content: space-between;
    padding: 15px 20px;
    align-items: center;
}

.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content .content-header a {
    font-size: 30px;
    color: #111;
}

.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content .content-footer {
    display: none;
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
}

.fs-loop-container .fs-filters .fs-filter.active .fs-filter-content .content-footer a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #111;
    color: #fff;
    width: 100%;
    padding: 10px 0;
}

.fs-loop-container .fs-filters .fs-filter.active.dimensions-filter .fs-filter-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 30px;
}

.fs-slider {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fs-slider .info {
    font-size: 12px;
}

.fs-slider .info .name {
    margin-right: 5px;
    font-weight: 600;
}

.fs-slider .slider {
    height: 4px;
}

.fs-slider .slider .ui-slider-handle {
    top: 1px;
    border: none;
    outline: none;
    background-color: #ffffff;
    border: 2px solid #4e4e4e;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transform: translateY(-50%);
    margin-left: -10px;
}
/*
.fs-slider .slider span:nth-child(2) {
    transform: translate(8px, -50%);
}

.fs-slider .slider span:nth-child(3) {
    transform: translate(-4px, -50%);
}
*/
.fs-slider .slider .ui-slider-range {
    background-color: #4e4e4e;
    z-index: 2;
}

.fs-slider .ticks .ui-slider-tick-mark {
    display: inline-block;
    width: 1px;
    background: #b1b1b1;
    height: 24px;
    position: absolute;
    top: -12px;
}

.fs-slider .ticks .ui-slider-tick-mark:nth-child(odd) {
    height: 36px;
    top: -18px;
}


.fs-loop-container .search-filter {
    position: relative;
}

.fs-loop-container .search-filter input {
    height: 40px;
    border: 1px solid #ddd;
    outline: none;
    padding-right: 40px;
}

.fs-loop-container .search-filter button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    padding: 10px;
    background-color: transparent;
    border: none;
    outline: none;
}

.fs-loop-container .search-filter button svg {
    width: 100%;
    height: 100%;
}


@media (max-width: 600px) {

    .fs-loop-container .fs-filters {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .fs-loop-container .fs-filters .fs-filter .fs-filter-content {
        position: fixed;
        width: 95%;
        left: 50%;
        top: 50%;
        max-height: 80%;
        max-width: 100vw;
        transform: translate(-50%,-50%);
    }

    .fs-loop-container .fs-filter-overlay.active {
        display: block;
    }

    .fs-loop-container .fs-filters .fs-filter.active .fs-filter-content .content-header {
        display: flex;
    }

    .fs-loop-container .fs-filters .fs-filter .fs-filter-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .fs-loop-container .fs-filters .fs-filter.active .fs-filter-content .content-footer {
        display: flex;
    }

}

/** TAX TOGGLE **/

.fs-loop-container .dp-tax-toggle {
    position: relative;
    width: 130px;
    overflow: hidden;
}

.fs-loop-container .dp-tax-toggle input {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.fs-loop-container .dp-tax-toggle .knobs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.fs-loop-container .dp-tax-toggle span {
    position: absolute;
    top: 5px;
    width: 55px;
    height: 24px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding: 9px 4px;
    border-radius: 2px;
    transition: 0.3s ease all;
    display: inline-block;
    left: 8px;
    color: #fff;
    z-index: 1;
}

.fs-loop-container .dp-tax-toggle .knobs::before {
    position: absolute;
    top: 8px;
    width: 55px;
    height: 26px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding: 9px 4px;
    border-radius: 2px;
    transition: 0.3s ease all;
    content: "";
    left: 8px;
    background-color: var(--fs-loop-color);
}

.fs-loop-container .dp-tax-toggle .knobs::after {
    position: absolute;
    top: 5px;
    width: 60px;
    height: 24px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding: 9px 4px;
    border-radius: 2px;
    transition: 0.3s ease all;
    content: 'Företag';
    right: 8px;
    color: #111;
}

.fs-loop-container .dp-tax-toggle .layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f5f5f5;
    transition: 0.3s ease all;
    z-index: 1;
}

.fs-loop-container .dp-tax-toggle input:checked + .knobs span {
    color: #111;
}

.fs-loop-container .dp-tax-toggle input:checked + .knobs::before {
    left: 62px;
    width: 60px;
}

.fs-loop-container .dp-tax-toggle input:checked + .knobs::after {
    color: #fff;
}

@media ( max-width: 600px ) {

    .fs-loop-container .dp-tax-toggle {
        width: 100%;
    }

    .fs-loop-container .dp-tax-toggle span {
        width: 65px;
    }

    .fs-loop-container .dp-tax-toggle .knobs::before {
        width: 65px;
    }

    .fs-loop-container .dp-tax-toggle .knobs::after {
        width: 70px;
    }

    .fs-loop-container .dp-tax-toggle input:checked + .knobs::before {
        left: 85px;
        width: 70px;
    }

}

/** META TOGGLE **/

.fs-loop-container .fs-meta-toggle label {
    cursor: pointer;
    border: none;
    background-color: #f5f5f5;
    color: #111;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 0;
    box-shadow: none;
    font-size: 1rem;
    line-height: 1.5;
    gap: 10px;
    transition: all .3s;
    width: 100%;
    justify-content: space-between;
}

.fs-loop-container .fs-meta-toggle label:hover {
    background-color: #dfdfdf;
}

.fs-loop-container .fs-meta-toggle {
    display: flex;
    gap: 10px;
}

.fs-loop-container .fs-meta-toggle label > div {
    display: flex;
    align-items: center;
}

.fs-loop-container .fs-meta-toggle label input {
    display: none;
}

.fs-loop-container .fs-meta-toggle label .fs-filter-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #a5a5a5;
    display: inline-block;
}

.fs-loop-container .fs-meta-toggle label input:checked + .fs-filter-checkbox {
    width: 16px;
    height: 16px;
    outline: 2px solid var(--fs-loop-color);
    outline-offset: 2px;
}

.fs-loop-container .fs-meta-toggle .count {
    display: none;
}

/** FILTER COLLECTOR **/

.fs-loop-container .fs-filter-collector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.fs-loop-container .fs-filter-collector button {
    border: none;
    background-color: #f5f5f5;
    color: #111;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 0.3rem 1rem;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 400;
    background-image: none;
    line-height: 1.3;
}

.fs-loop-container .fs-filter-collector button:hover {
    background-color: #dfdfdf;
}

.fs-loop-container .fs-filter-collector button span.remove {
    width: 0;
    height: 20px;
    transition: all 0.3s ease-in-out;
}

.fs-loop-container .fs-filter-collector button span.remove svg {
    width: 100%;
    height: 100%;
}

.fs-loop-container .fs-filter-collector button.fs-clear-filters span.remove,
.fs-loop-container .fs-filter-collector button:hover span.remove {
    width: 20px;
}

@media ( max-width: 600px ) {
    .fs-loop-container .fs-filter-collector {
        margin-bottom: 20px;
    }
}

/**** PAGINATION *****/

.fs-loop-container .fs-pagination {
    display: flex;
}

.fs-loop-container .fs-pagination a,
.fs-loop-container .fs-pagination span {
    line-height: 1;
    padding: 10px 15px;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    color: #111;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
}

.fs-loop-container .fs-pagination a:last-child {
    border-right: 1px solid #ddd;
}

.fs-loop-container .fs-pagination a.active {
    cursor: initial;
    pointer-events: none;
    background-color: #dfdede;
}

@media ( max-width: 600px ) {

    .fs-loop-container .fs-pagination a,
    .fs-loop-container .fs-pagination span {
        padding: 5px 10px;
    }

}

/**** ANIMATE *****/

.product.animate__animated {
    animation-duration: 300ms !important;
}

.fs_animate_delay_100 {
    animation-delay: 100ms;
}

.fs_animate_delay_200 {
    animation-delay: 200ms;
}

.fs_animate_delay_300 {
    animation-delay: 300ms;
}

.fs_animate_delay_400 {
    animation-delay: 400ms;
}

.fs_animate_delay_500 {
    animation-delay: 500ms;
}

.fs_animate_delay_600 {
    animation-delay: 600ms;
}

.fs_animate_delay_700 {
    animation-delay: 700ms;
}

.fs_animate_delay_800 {
    animation-delay: 800ms;
}

.fs_animate_delay_900 {
    animation-delay: 900ms;
}

.fs_animate_delay_1000 {
    animation-delay: 1000ms;
}

.fs_animate_delay_1100 {
    animation-delay: 1100ms;
}

.fs_animate_delay_1200 {
    animation-delay: 1200ms;
}

.fs_animate_delay_1300 {
    animation-delay: 1300ms;
}

.fs_animate_delay_1400 {
    animation-delay: 1400ms;
}

.fs_animate_delay_1500 {
    animation-delay: 1500ms;
}

.fs_animate_delay_1600 {
    animation-delay: 1600ms;
}

.fs_animate_delay_1700 {
    animation-delay: 1700ms;
}

.fs_animate_delay_1800 {
    animation-delay: 1800ms;
}

/** Product card loader **/

.fs-product-card-loader {
    width: 215px;
    height: 300px;
    background:
        linear-gradient(0.25turn, transparent, #FFF, transparent),
        linear-gradient(#DDD, #DDD),
        linear-gradient(#DDD, #DDD),
        linear-gradient(#DDD, #DDD),
        linear-gradient(#DDD, #DDD);
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 215px 220px, 215px 130px, 130px 15px, 210px 15px, 175px 15px;
    background-position: -215px 0, 0 0, 15px 150px, 15px 180px, 15px 210px;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    to {
        background-position: 215px 0, 0 0, 15px 150px, 15px 180px, 15px 210px;
    }
}
















/** LIST VIEW **/

.fs-loop-container .fs-loop.list .dp-product {
    flex-direction: row;
}

.fs-loop-container .fs-loop.list .dp-product .image .sale-bubble {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
}

.fs-loop-container .fs-loop.list .dp-product .image {
    flex: 0 0 200px;
}

.fs-loop-container .fs-loop.list .dp-product .image a {

}

.fs-loop-container .fs-loop.list .dp-product .image img {
    height: auto !important;
    margin: 0;
}

.fs-loop-container .fs-loop.list .dp-product .body {
    justify-content: initial;
}

.fs-loop-container .fs-loop.list .dp-product .body .rating {
    display: block;
}

.fs-loop-container .fs-loop.list .dp-product .body .desc {
    display: block;
}

.fs-loop-container .fs-loop.list .dp-product .body .readmore a {
    margin: 0;
}

.fs-loop-container .fs-loop.list .dp-product .body .elementor-button {
    width: max-content;
}

@media ( max-width: 600px ) {

    .fs-loop-container .fs-loop.list .dp-product .image {
        flex: 0 0 100px;
    }

    .fs-loop-container .fs-loop.list .dp-product .image .sale-bubble {
        width: 30px;
        height: 30px;
        font-size: 0.6rem;
    }

    .fs-loop-container .fs-loop.list .dp-product .body {
        font-size: 0.9rem;
    }

}

.fs-loop-container .fs-loop.list .product a.button {
    display: none !important;
}

.fs-loop-container .fs-loop.list .product .woocommerce-LoopProduct-link {
    display: flex;
}

.fs-loop-container .fs-loop.list .product .woocommerce-LoopProduct-link img {
    max-width: 200px
}























/** FILTER MOBIL OFFCANVAS **/

@media ( max-width: 600px ) {

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
        color: #111;
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile-header i {
        color: #111;
        font-size: 2rem;
        margin-top: 4px;
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile-toggle {
        background-color: #f5f5f5;
        display: block;
        text-align: center;
        padding: 5px 0;
        color: #111;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile-toggle i {
        transform: rotate(90deg);
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile {
        display: none;
        position: fixed;
        z-index: 4000000;
        visibility: hidden;
        pointer-events: none;
        transition: visibility 0.7s;
        overflow: hidden;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 0;
        height: 0;
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile .fs-filters-bg {
        position: absolute;
        background-color: rgba(0,0,0,0.25);
        opacity: 0;
        transition: opacity 0.5s 0.15s;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile .fs-filters {
        background-color: #fff;
        position: absolute;
        display: block;
        overflow-y: scroll;
        width: 100%;
        top: 0;
        right: 0;
        bottom: 0;
        max-width: 440px;
        will-change: transform;
        transform: translateX(-100%);
        transition: transform 0.25s;
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile.active {
        pointer-events: auto;
        visibility: visible;
        height: 100%;
    }
    
    .fs-loop-container.mobile-offcanvas .fs-filters-mobile.active .fs-filters-bg {
        transition: opacity 0.25s;
        opacity: 1;
    }
    
    .fs-loop-container.mobile-offcanvas .fs-filters-mobile.active .fs-filters {
        transform: translateX(0);
        transition: transform 0.5s 0.25s;
        gap: 0;
        flex-wrap: nowrap;
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile .fs-filters .fs-filter {
        border-bottom: 1px solid #ddd;
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile .fs-filters .fs-filter .fs-filter-toggle {
        background-color: transparent !important;
        color: #111 !important;
        border: none !important;
        outline: none;
        flex-direction: row-reverse;
        justify-content: flex-end;
        gap: 10px;
        padding: 1.4rem 1rem !important;
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile .fs-filters .fs-filter .fs-filter-toggle i {
        position: absolute;
        right: 16px;
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile .fs-filters .fs-filter .fs-meta-toggle {
        padding: 1rem 0;
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile .fs-filters .fs-filter .fs-meta-toggle > label {
        background-color: transparent !important;
        padding: 0.5rem 1rem !important;
        font-weight: 600 !important;
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile .fs-filters {
        background-color: #fff;
        z-index: 2;
        margin: 0;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile .fs-filters .fs-filter-content {
        position: unset;
        width: auto;
        max-height: initial;
        max-width: initial;
        transform: none;
        box-shadow: none;
        border-radius: 0;
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile .fs-filters .fs-filter-content .content-header {
        display: none !important;
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile .fs-filters .fs-filter-content .content-footer .fs-filter-show {
        display: none !important;
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile .fs-filters .fs-filter-show {
        margin-top: 20px;
        text-align: center;
        padding: 15px 0;
        display: block;
        position: sticky;
        bottom: 0;
        margin-top: auto;
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile .dp-tax-toggle {
        overflow: visible;
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile .dp-tax-toggle input {
        height: 40px;
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile .dp-tax-toggle .knobs {
        border: none !important;
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile .dp-tax-toggle input:checked + .knobs::before {
        left: 280px;
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile .fs-filters .fs-filter .search-container {
        margin: 0 20px;
        margin-bottom: 20px;
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile .fs-filters .fs-filter .search-container input {
        padding: 10px 20px 10px 0;
    }

    .fs-loop-container .fs-filters .fs-filter.active .fs-filter-content .search-container .clear {
        right: 0;
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile .fs-filters .fs-filter.search-filter input {
        border: none;
    }

    .fs-loop-container.mobile-offcanvas .fs-filters-mobile .fs-filters .fs-filter .knobs {
        background-color: transparent !important;
    } 

}

