select::-ms-expand {
    display: none;
}



@media only screen and (max-width: 990px) {
	.catalog-category-view .container > .row-content{
		display: flex;
		flex-wrap: wrap;
	}
	.catalog-category-view .container > .row-content .col-main{
		order:2;
	}
	.catalog-category-view .container > .row-content .col-sidebar{
		order:1;
	}
	.catalog-category-view .container > .row-content .col-sidebar .filter-options .filter-options-content{
		display: none;
	}
	.catalog-category-view .container > .row-content .col-sidebar .filter-options .filter-options-content.is-open{
		display: block;
	}	
	.catalog-category-view .container > .row-content .col-sidebar .filter-options .filter-options-title[aria-expanded="false"]:after{
		content: "";
		display: inline-block;
		width: 10px;
		height: 10px;
		border-right: 2px solid #fe3c00;
		border-bottom: 2px solid #fe3c00;
		transform: rotate(45deg); /* plus shape */
		transition: transform 0.3s ease;
		margin-left: 8px;
        top: 6px;
        position: relative;		
	}
	.catalog-category-view .container > .row-content .col-sidebar .filter-options .filter-options-title[aria-expanded="true"]:after{
		content: "";
		display: inline-block;
		width: 10px;
		height: 10px;
		border-right: 2px solid #fe3c00;
		border-bottom: 2px solid #fe3c00;
		transform: rotate(45deg); /* plus shape */
		transition: transform 0.3s ease;
		margin-left: 8px;
        top: 11px;
        position: relative;			
		transform: rotate(-135deg); /* minus shape */
	}	
	.catalog-category-view .container > .row-content .col-sidebar .filter-options .filter-options-title{
		display: flex;
		justify-content: space-between;
	}	

}