/* Minification failed. Returning unminified contents.
(267,40): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
(588,25): run-time error CSS1039: Token not allowed after unary operator: '-main-color'
 */
.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-justify-center {
    justify-content: center;
}

.flex-justify-between {
    justify-content: space-between;
}

.flex-justify-evenly {
    justify-content: space-evenly;
}

.flex-justify-end {
    justify-content: flex-end;
}

.flex-align-center {
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.m-b-1 {
    margin-bottom: 0.5rem;
}

.m-b-2 {
    margin-bottom: 1rem;
}

.m-b-3 {
    margin-bottom: 2rem;
}

.m-t-1 {
    margin-top: 0.5rem;
}

.m-t-2 {
    margin-top: 1rem;
}

.m-t-3 {
    margin-top: 2rem;
}

.p-t-1 {
    padding-top: 0.5rem;
}

body.no-scroll {
    overflow-y: hidden;
}

#fp-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #00000099;
}

.fp-overflow {
    overflow: hidden;
}



.search-wrapper {
    background-color: #f3f3f3;
    margin-top: -10px;
    padding: 10px 5px;
}

    .search-wrapper .search-app-inner {
        display: flex;
        flex-direction: row;
        width: 100%;
    }


    /* Filters Section */

    .search-wrapper .filters-section {
        position: fixed;
        left: 0;
        right: 0;
        top: -1px;
        bottom: -1px;
        width: 100%;
        display: none;
        background-color: #fff;
        z-index: 5;
        overflow-y: auto;
        padding: 10px;
    }

        .search-wrapper .filters-section.opened {
            display: flex;
            flex-direction: column;
        }

        .search-wrapper .filters-section .filters-header {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            padding: 10px 0;
            font-weight: 600;
            border-bottom: 2px solid #c0c0c0;
            position: relative;
        }

            .search-wrapper .filters-section .filters-header button {
                position: absolute;
                right: 0;
                top: 0;
                background-color: transparent;
                font-size: 1.4em;
                display: flex;
                align-items: center;
                justify-content: center;
            }

        .search-wrapper .filters-section .filters-selected {
            padding: 15px 0;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
        }

            .search-wrapper .filters-section .filters-selected .filter-selected-item {
                padding: 5px 10px;
                border: 1px solid #ccc;
                border-radius: 3px;
                margin: 0 5px 5px 0;
                display: flex;
                flex-direction: row;
                align-items: center;
                font-size: 0.8em;
            }

                .search-wrapper .filters-section .filters-selected .filter-selected-item button {
                    font-size: 1em;
                    background-color: transparent;
                    border: 1px solid #000;
                    border-radius: 50%;
                    margin-left: 10px;
                    width: 20px;
                    height: 20px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    padding: 0;
                    color: #363636;
                }

                .search-wrapper .filters-section .filters-selected .filter-selected-item.clear-item {
                    border: none;
                }

                    .search-wrapper .filters-section .filters-selected .filter-selected-item.clear-item button {
                        border: none;
                        width: auto;
                        height: auto;
                        margin: 0;
                        text-decoration: underline;
                    }

        .search-wrapper .filters-section .filters-section-inner {
            position: relative;
            padding-bottom: 50px;
        }

        .search-wrapper .filters-section .filter-item {
            display: flex;
            flex-direction: column;
            border-bottom: 1px solid #e0e0e0;
            font-size: 0.9em;
        }

            .search-wrapper .filters-section .filter-item .filter-item-header {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                padding: 10px 5px;
                color: #000;
                cursor: pointer;
            }

                .search-wrapper .filters-section .filter-item .filter-item-header:hover {
                    background-color: #f6f6f6;
                }

        .search-wrapper .filters-section .filter-item-header .icon {
            color: #666;
            font-size: 10px;
        }

            .search-wrapper .filters-section .filter-item-header .icon:before {
                content: "\f078";
            }


        .search-wrapper .filters-section .filter-item .filter-content {
            display: none;
            flex-direction: column;
            margin: 5px 0 10px 0;
            padding: 0 5px;
            max-height: 250px;
            overflow-y: auto;
        }

            .search-wrapper .filters-section .filter-item .filter-content .filter-search {
                display: flex;
                margin: 0px 0 10px 0;
                width: 100%;
            }

                .search-wrapper .filters-section .filter-item .filter-content .filter-search input {
                    width: 100%;
                    border: 1px solid #ccc;
                    border-radius: 4px;
                    padding: 6px;
                    background-color: #fafafa;
                }

            .search-wrapper .filters-section .filter-item .filter-content .filter-value-wrapper {
                display: flex;
                flex-direction: row;
                align-items: center;
                flex-shrink: 0;
                margin-bottom: 6px;
            }

                .search-wrapper .filters-section .filter-item .filter-content .filter-value-wrapper input {
                    margin-right: 10px;
                    display: inline-flex;
                }

        .search-wrapper .filters-section .filter-item.range .filter-value-wrapper {
            justify-content: space-between;
        }

            .search-wrapper .filters-section .filter-item.range .filter-value-wrapper input {
                width: 35%;
                margin: 0;
                border: 1px solid #ccc;
                border-radius: 4px;
                padding: 4px 10px;
            }

            .search-wrapper .filters-section .filter-item.range .filter-value-wrapper button {
                background-color: var(--main-color);
                color: #fff;
                font-size: 0.9em;
            }

        .search-wrapper .filters-section .filters-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 6;
        }

            .search-wrapper .filters-section .filters-footer button {
                background-color: #3787b3;
                border: none;
                border-radius: 0;
                width: 100%;
                color: #fff;
                padding: 10px 0;
                height: 50px;
            }



        .search-wrapper .filters-section .filter-item.open .filter-item-header .icon:before {
            content: "\f077";
        }

        .search-wrapper .filters-section .filter-item.open .filter-content {
            display: flex;
        }

        .search-wrapper .filters-section .filter-loader {
            display: none;
            top: 0;
            left: 0;
            position: absolute;
            width: 100%;
            height: 100%;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: #ffffffcc;
        }

            .search-wrapper .filters-section .filter-loader.active {
                display: flex;
            }

            .search-wrapper .filters-section .filter-loader img {
                width: 50px;
            }


        /* OLD CSS */

        .search-wrapper .filters-section.filter-options::-webkit-scrollbar {
            width: 10px;
        }

        .search-wrapper .filters-section.filter-options::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 100px;
        }

        .search-wrapper .filters-section.filter-options::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 100px;
        }


    /* Products Section */

    .search-wrapper .products-section {
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }


    /* Products Categories */


    .search-wrapper .sub-categories {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        margin-bottom: calc(1rem - 4px);
    }

        .search-wrapper .sub-categories .category-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-right: 10px;
            padding: 10px 15px;
            font-size: 0.9em;
            border: 1px solid #ccc;
            border-radius: 3px;
            box-shadow: 0px 0px 1px 0px #ccc;
            cursor: pointer;
            background-color: #fff;
            color: #333;
        }

            .search-wrapper .sub-categories .category-item .item-header {
                font-weight: 600;
                text-align: center;
            }



    /* Products Header */


    .search-wrapper .products-section .products-header {
        justify-content: space-between;
        border: 1px solid #ccc;
    }

        .search-wrapper .products-section .products-header .total-text {
            font-weight: 600;
        }

        .search-wrapper .products-section .products-header #filter-toggle-button {
            width: 50%;
            padding: 10px 0;
            text-align: center;
            border-right: 1px solid #ccc;
            color: #fff;
            background-color: #3787b3;
            position: relative;
        }

            .search-wrapper .products-section .products-header #filter-toggle-button i {
                position: absolute;
                left: 10px;
                top: 12px;
                font-size: 17px;
            }

            .search-wrapper .products-section .products-header #filter-toggle-button .filter-popover-backdrop {
                position: fixed;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
                background-color: #000000a3;
                z-index: 1;
            }

#search-filter-popover.show {
    opacity: 1;
    display: unset !important;
}

#search-filter-popover .popover-narrow {
    display: block;
    width: 1rem;
    height: 0.5rem;
}

#search-filter-popover .popover-body {
    padding: 10px;
    text-align: center;
}

.search-wrapper .products-section .products-header .select-wrapper {
    width: 50%;
    position: relative;
    display: flex;
}

.search-wrapper .products-section .products-header select {
    width: 100%;
    color: #666;
    border: none;
    text-align: center;
    padding: 0 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.search-wrapper .products-section .products-header .select-wrapper i {
    position: absolute;
    right: 10px;
    top: 12px;
    font-size: 17px;
    transform: rotate( 90deg);
}



/* Products Selected Filters*/

.search-wrapper .products-section .filters-selected {
    padding: 15px 0;
    margin: 0 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

    .search-wrapper .products-section .filters-selected .filter-selected-item {
        padding: 5px 10px;
        border: 1px solid #ccc;
        border-radius: 3px;
        margin: 0 7px 5px 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        font-size: 0.8em;
    }

        .search-wrapper .products-section .filters-selected .filter-selected-item button {
            font-size: 1em;
            background-color: transparent;
            border: 1px solid #000;
            border-radius: 50%;
            margin-left: 10px;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            color: #363636;
        }

        .search-wrapper .products-section .filters-selected .filter-selected-item.clear-item {
            border: none;
        }

            .search-wrapper .products-section .filters-selected .filter-selected-item.clear-item button {
                border: none;
                width: auto;
                height: auto;
                margin: 0;
                text-decoration: underline;
            }


/* Products Loader */

.search-wrapper .products-section .products-loader {
    display: none;
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffffcc;
    z-index: 10;
}

    .search-wrapper .products-section .products-loader img {
        width: 100px;
    }

    .search-wrapper .products-section .products-loader.active {
        display: flex;
    }


/* Product Next */

.search-wrapper .products-section .product-more {
    height: 1px;
}

/* Product Prev */

.search-wrapper .products-section .products .prev-page-button {
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: #ccc;
    color: #000;
    border: 1px solid #000;
    margin: 0 4px 10px 4px;
}

/* No Product*/

.search-wrapper .products-section .no-product {
    padding: 20px 0 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

    .search-wrapper .products-section .no-product .no-product-icon img {
        max-width: 100px;
        max-height: 100px;
    }

    .search-wrapper .products-section .no-product .no-product-icon svg, .search-wrapper .products-section .no-product .no-product-icon svg image {
        width: 103px;
        height: 75px;
    }

    .search-wrapper .products-section .no-product .no-product-inner {
        font-weight: 600;
        padding: 15px 0 25px 0;
        text-align: center;
    }

    .search-wrapper .products-section .no-product .no-product-suggestions ul li {
        margin-bottom: 5px;
    }

        .search-wrapper .products-section .no-product .no-product-suggestions ul li i {
            font-size: 1.3em;
            color: var(--main-color);
        }


/* Product Item */

.product-item {
    width: calc(50% - 8px);
    margin: 4px;
    border: 1px solid #e5e5e5;
    border-radius: 2px;
    color: #111616;
    background-color: #fff;
    font-size: 12px;
}

    .product-item:hover {
        box-shadow: 0px 1px 3px 5px #dddddd1a, 0 0 8px #ddd;
    }

    .product-item .image {
        height: 150px;
        margin-top: 0.5em;
        position: relative;
    }

        .product-item .image img {
            max-height: 150px;
            margin: 0 auto;
            width: auto;
        }

        .product-item .image > a {
            display: block;
        }

        .product-item .image > .color-options {
            border-radius: 3px;
            box-shadow: 0 2px 2px 0 #00000033;
            background-color: #ffffff;
            border: none;
            position: absolute;
            right: 10px;
            bottom: 5px;
            /* cursor: pointer; */
            display: flex;
            padding: 2px 5px;
            align-items: center;
            z-index: 0;
        }

            .product-item .image > .color-options > div {
                display: flex;
            }

            .product-item .image > .color-options .color-option {
                width: 12px;
                height: 12px;
                border: solid 1px #ffffff;
                background-color: black;
                border-radius: 50%;
                z-index: 3;
            }

                .product-item .image > .color-options .color-option:nth-child(2) {
                    z-index: 2;
                    margin-left: -6px;
                    background-color: red;
                }

                .product-item .image > .color-options .color-option:nth-child(3) {
                    z-index: 1;
                    margin-left: -6px;
                    background-color: blue;
                }

            .product-item .image > .color-options .count {
                color: #333333;
                margin: 0 0 0 2px;
                font-size: 10px;
            }

    .product-item > .name {
        margin-top: 0.5em;
        margin-bottom: 0.5em;
    }

        .product-item > .name a {
            color: #7e7e7e;
            display: block;
            width: 90%;
            overflow: hidden;
            font-size: 1em;
            line-height: 1.2em;
            height: 2.4em;
        }

    .product-item .price-section {
        width: 100%;
        margin-bottom: 0.5em;
    }

        .product-item .price-section .badge {
            padding: 5px;
            background-color: #f90909;
            color: #fff;
            font-weight: bold;
            border-radius: 0;
            display: inline-flex;
            flex-direction: column;
        }

            .product-item .price-section .badge .discount-amount {
                display: block;
                padding-bottom: 6px;
                font-size: 1.65em;
            }

        .product-item .price-section .price-old {
            color: #9e9e9e;
            text-decoration: line-through;
            padding-left: 10px;
        }

        .product-item .price-section .price-new {
            font-weight: bold;
            font-size: 1.4em;
            color: #484848;
        }

        .product-item .price-section .price-old + .price-new {
            padding-left: 10px;
        }

        .product-item .price-section .price.multi .price-new {
            font-size: 1.2em;
        }

    .product-item .login-wrapper {
        margin-bottom: 10px;
    }

        .product-item .login-wrapper .login-links {
            width: 100%;
        }

        .product-item .login-wrapper a {
            color: #3787b3;
            font-weight: bold;
            padding: 0 10px;
        }

            .product-item .login-wrapper a:hover {
                text-decoration: underline;
            }

    .product-item .badges {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 5px;
    }

        .product-item .badges .badge-item {
            width: 60%;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            padding: 5px;
            border: 1px solid #333;
        }

            .product-item .badges .badge-item .badge-text {
                font-size: 0.9em;
                font-weight: bold;
            }

    .product-item .extra {
        margin-top: 5px;
        border-top: 1px solid #ddd;
        padding-top: 5px;
        font-size: 0.9em;
        color: #999;
    }

        .product-item .extra img {
            width: auto !important;
        }

.product-loader {
    width: 100%;
}

    .product-loader img {
        max-width: 50px;
        height: auto;
    }

body.search-page.filters-opened .whatsapp-send-link {
    bottom: 55px;
}


@media(min-width:768px) {
    .search-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 1170px;
        margin: 50px auto 0 auto;
        background-color: transparent;
    }

        .search-wrapper .filters-section {
            position: static;
            left: unset;
            right: unset;
            top: unset;
            bottom: unset;
            display: flex;
            flex-direction: column;
            width: 250px;
            z-index: unset;
            overflow: unset;
            padding: 0;
        }

            .search-wrapper .filters-section .filters-header {
                display: none;
            }

            .search-wrapper .filters-section .filters-section-inner {
                padding-bottom: 10px;
            }

            .search-wrapper .filters-section .filters-footer {
                position: static;
            }

        .search-wrapper .products-section {
            width: calc(100% - 275px);
            margin-left: 25px;
            padding: 0;
            overflow-y: unset;
            position: relative;
        }

            .search-wrapper .products-section .products-header {
                align-items: center;
                justify-content: flex-end;
                border: none;
                margin: 1rem 5px 0 5px;
            }

                .search-wrapper .products-section .products-header #filter-toggle-button {
                    display: none;
                }

                .search-wrapper .products-section .products-header .select-wrapper {
                    width: auto;
                }

                    .search-wrapper .products-section .products-header .select-wrapper select {
                        width: auto;
                        border: 1px solid #ccc;
                        padding: 5px 10px;
                        font-size: 12px;
                        text-align: left;
                    }

                    .search-wrapper .products-section .products-header .select-wrapper i {
                        display: none;
                    }

        .search-wrapper .sub-categories {
            flex-wrap: wrap;
            overflow-x: unset;
            white-space: unset;
            margin: 0 5px;
            order: -1;
        }

            .search-wrapper .sub-categories .category-item {
                width: calc(25% - 10px);
                box-shadow: none;
                padding: 10px 0;
                margin-bottom: 10px;
                border-radius: 2px;
            }

    /* Products */

                .product-item {
        width: calc(25% - 10px);
        margin: 5px;
        font-size: 14px;
    }

        .product-item .image {
            height: 200px;
        }

            .product-item .image img {
                max-height: 200px;
                min-height: 100px;
            }

        .product-item > .name {
            margin-top: 1em;
            margin-bottom: 1em;
        }

            .product-item > .name a {
                line-height: 1.5em;
                height: 3em;
            }

        .product-item .price-section {
            font-size: 13px;
            margin-top: 1em;
            margin-bottom: 1em;
        }
}

