/************************************
 * Woo Page Product Overview
*************************************/
.woocommerce-products-header {position:relative; z-index:2;}

.woo-shop {
    --aside-width:300px;

    position:relative; z-index:1;
}

/* Product Overview > Layout columns */
.woo-shop-aside {
    width:var(--aside-width);
    position:relative; z-index:2;

}
.woo-shop-main__header {background:#fff;}
.woo-shop-main {width:calc(100% - var(--aside-width)); padding-left:30px;}

/* Pagination */
.site-pagination.woo-pagination {padding-top:var(--twc-spacing-default);}

/* Woo tool button */
.btn-woo-tools {
    background:none; color:var(--twc-color-text);
    display:inline-flex; align-items:center; position:relative;
    min-height:40px;
    transition:all .3s ease;
    line-height:1.1; font-size:14px;
}
.btn-woo-tools i {font-size:.9em; margin-right:10px; transform:translateY(.12em);}
.btn-woo-tools:hover {background:#fdfdfd;}

/************************************
 * Shop Main Tools
*************************************/
/* Result count, Ordering */
.woo-shop-main__tools {
    margin-bottom:var(--twc-spacing-25); position:relative; z-index:2;
    background:#fff;
    font-size:14px; font-weight:500;
}
.woo-shop-product-show .pf-system-select {width:45px;}
body .prdctfltr_wc .prdctfltr_filter {padding:0;}
body .woo-shop-product-show .prdctfltr_regular_title {display:none;}
.woo-shop-product-show__txt {margin-left:15px;}

/* Product per page */
.woo-shop-main__tools .prdctfltr_wc .prdctfltr_buttons {display:none;}
.woo-shop-main__tools .prdctfltr_wc .prdctfltr_woocommerce_ordering {margin:0;}

/* border */
@media only screen and (min-width:1181px) {
    .woo-shop-main__tools-col.left > div {border-right:1px solid rgba(112, 112, 112, .1);}
    .woo-shop-main__tools-col.right > div {border-left:1px solid rgba(112, 112, 112, .1);}
}
.woo-shop-main__tools-block {padding:5px 20px; min-height:58px;}

/* Ordering */
.woo-ordering__dropdown select {display:inline-block;}

/* Filter button */
.woo-shop-filter-button {display:none;}

/***************************************
 * Woo Page Product Overview - Responsive
****************************************/
@media only screen and (max-width:1180px) {
    /* Product Overview > Layout columns */
    .woo-shop-aside {display:none;}
    .woo-shop-aside,
    .woo-shop-main {width:100%; padding:0;}

    /* Filter button */
    .woo-shop-filter-button {display:flex;}
}
@media only screen and (max-width:1024px) {
    .woo-shop-main__tools {padding:10px 20px;}
    .woo-shop-main__tools-block {padding:0; min-height:unset; text-align:center;}

    /* Ordering */
    .woo-ordering__dropdown-btn {display:block;}
    .woo-ordering__dropdown select {position:absolute; top:0; left:0; background:red; height:100%; width:100%; z-index:2; opacity:0;}
}
@media only screen and (max-width:768px) {
    .woo-shop-main__tools-col.left {order:3; width:100%; padding:5px 0; justify-content:center;}
}


/*********************************************
 * Read More
**********************************************/
[data-read-more-content] {position:relative;}
[data-read-more]:not(.collapsed) [data-read-more-content]:after {opacity:0; visibility:hidden;}
[data-read-more-content]:after {
    content:""; position:absolute; bottom:0; left:0; right:0;
    height:400px; transition:all .3s ease;
    background:-webkit-linear-gradient(bottom, #fff 0%, rgba(0, 0, 0, 0) 100%);
    background:-o-linear-gradient(bottom, #fff 0%, rgba(0, 0, 0, 0) 100%);
    background:-ms-linear-gradient(bottom, #fff 0%, rgba(0, 0, 0, 0) 100%);
    background:-moz-linear-gradient(bottom, #fff 0%, rgba(0, 0, 0, 0) 100%);
    background:linear-gradient(to top, #fff 0%, rgba(0, 0, 0, 0) 100%);
}