.cs-row{
    display: flex;
    flex-wrap: wrap;
    gap: 30px
}
.sidebar-wrap{
    flex: 0 0 25%;
    max-width: 25%;
}
.product-list-wrap{
    flex: 0 0 calc(75% - 30px);
    max-width: calc(75% - 30px);
}
.dropdown-header{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 12px 0;
    cursor: pointer;
}
.dropdown-header h3{
    margin: 0;
    font-size: 15px;
}
.dropdown.show .fa{
    transform: rotate(180deg);
}
.dropdown-content{
    max-height: 0;
    overflow: hidden;
}
.dropdown.show .dropdown-content{
    max-height: 500px;
    overflow: scroll;
}
.dropdown-content-info{
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0 6px 16px 16px;
}
.dropdown-content-info input{
    accent-color: #8b6829;
    margin: 0
}
@media (max-width: 736px) {
	.sidebar-wrap, .product-list-wrap{
		flex-basis: 100%;
		max-width: 100%;
	}
}