
.archive .content-area {
    background: #e1dcd8;
    padding: 80px 0;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}


.shoplist_header .page-title {
	font-size: 6.25vw;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -3px;
}

.sort_filter {
	display: flex;
    align-items: center;
    border: 2px solid #333;
    width: fit-content;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    min-height: 57px;
}

.sort_filter svg {
	width: 22px;
	height: 20px;
	margin-right: 10px;
}

.woocommerce-result-count {
	display: none;
}

.filter_sorting {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 80px;
}

.filter_sorting .sort_select {
	display: flex;
	align-items: center;
}

.filter_sorting .sort_select span {
	margin-right: 20px;
}

.filter_sorting .sort_select select {
    border: 2px solid #333;
    padding: 15px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    min-height: 57px;
    background: transparent;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
    font-family: 'Jost';
}


.filter_sorting .woocommerce-ordering {
    position: relative;
}


.filter_sorting .woocommerce-ordering::after {
    content: '•';
    position: absolute;
    right: 20px;
    font-size: 40px;
    top: 0;
    bottom: 0;
    pointer-events: none;
    line-height: 1.55;
}

/* Archive product */


.archive ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px;
    margin-top: 50px;
}


.archive ul.products img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 1;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: #f2f2f2;
}


.woocommerce-no-products-found .woocommerce-info {
    margin-top: 30px;
}

/* Side bar */

.shop-sidebar {
    position: fixed;
    background: #fff;
    top: 0;
    bottom: 0;
    z-index: 5;
    left: -30%;
    padding: 30px 50px;
    width: 30%;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.shop-sidebar .filter_heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.shop-sidebar .filter_heading span {
	font-size: 30px;
	color: #333;
	letter-spacing: -.025em;
}

.shop-sidebar .filter_heading svg {
    width: 25px;
    height: 25px;
}

.shop-sidebar .filter_heading .icon {
    cursor: pointer;
    width: 40px;
    height: 40px;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-sidebar .filter_heading .icon:hover {
	background: #000;
}

.shop-sidebar .filter_heading .icon:hover svg {
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(6584%) hue-rotate(107deg) brightness(113%) contrast(101%);
}

.shop-sidebar .filter_sorting .sort_filter {
	display: none;
}

.shop-sidebar .filter_sorting .woocommerce-ordering .sort_select,
.shop-sidebar select,
.shop-sidebar .sort_select,
.shop-sidebar .woocommerce-ordering {
    width: 100% !important;
}

.shop-sidebar .filter_sorting .sort_select select { 
    border: none;
    padding: 0;
    min-height: inherit;
    border-bottom: 1px solid #8a8a8a;
    border-radius: 0;
    color: #8a8a8a;
    padding: 5px 0;
}

.shop-sidebar .filter_sorting .sort_select {
    flex-direction: column;
}

.shop-sidebar .filter_sorting .sort_select span {
    display: block;
    margin: 0;
    width: 100%;
    color: #8a8a8a;
    font-size: 13px;
}

.shop-sidebar .filter_sorting .woocommerce-ordering::after {
    line-height: 0.9;
    color: #8a8a8a;
    right: 0;
}

.shop-sidebar .bapf_head h3 {
    font-weight: 400;
    font-size: 17px;
}

.shop-sidebar .berocket_single_filter_widget {
    margin-top: 30px;
}

.bapf_slidr_jqrui .bapf_from, 
.bapf_slidr_jqrui .bapf_to {
    font-size: 15px;
}

.bapf_taprice {
    margin-left: 5px;
}

.bapf_sfilter .bapf_body .bapf_slidr_main .ui-slider-handle {
    border: 1px solid #000;
}


@media only screen and (max-width: 1600px) {
    .shop-sidebar {
        width: 40%;
        left: -40%;
    }
}

@media only screen and (max-width: 1600px) {
    .archive ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media only screen and (max-width: 768px) {
    .woocommerce-products-header {
        display: block;
    }
    .archive ul.products {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
    .shoplist_header .page-title {
        font-size: 45px;
        letter-spacing: -1px;
    }
    .archive ul.products img {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    .product-info-wrap {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .shop-main .filter_sorting .sort_select {
        display: none;
    }
    .shop-main .filter_sorting {
        position: fixed;
        z-index: 5;
        left: 50%;
        bottom: 25px;
        transform: translate(-50%);
    }
    .shop-main .filter_sorting .sort_filter {
        background: #171717;
        color: #fff;
        font-size: 14px;
        letter-spacing: 1px;
    }
    .sort_filter {
        min-height: 50px;
        padding: 10px 30px;
    }
    .shop-wrap .product-info-wrap .price {
        flex-direction: column;
        align-items: flex-start;
        height: 45px;
    }
    .shop-wrap .product-info-wrap .price del {
        margin-left: 0;
    }
    .shop-wrap .product-info-wrap {
        padding: 15px 15px 15px;
    }
    .shop-wrap .product-info-wrap .woocommerce-loop-product__title {
        font-size: 15px;
        min-height: 45px;
    }

    /**/

    .shop-sidebar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 95%;
        top: auto;
        transform: translateY(100%);
        border-radius: 20px 20px 0 0;
        overflow-y: auto;
        z-index: 999;
    }

    body.sidebar-open::after, body.search-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.5) 80%);
        z-index: 4;
    }

    .shop-sidebar {
        padding: 30px 20px;
    }

    .shop-sidebar .filter_sorting .sort_select {
        background: #f5f5f5;
        padding: 10px 15px;
        border-radius: 7px;
    }

    .shop-sidebar .filter_sorting .sort_select select {
        border-bottom: none;
    }

    .shop-sidebar .filter_sorting .woocommerce-ordering::after {
        display: none;
    }

    .woocommerce-result-count.braapfNotReplaced {
        position: absolute;
        bottom: 50px;
        left: 50%;
        transform: translate(-50%);
        background: #171717;
        color: #fff;
        padding: 13px 20px;
        width: 80%;
        text-align: center;
        border-radius: 25px;
        font-size: 14px;
        letter-spacing: 0.3px;
    }

    .filter_sorting .sort_select select {
        color: #333 !important;
    }

    .shop-wrap .product-image-wrap .onsale {
        left: 10px;
    }


}



@media only screen and (max-width: 600px) {
    .archive .content-area {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        padding: 30px 0 50px;
    }
}









