.filter-products-tion {
	margin-left: 0;
	position: sticky;
	top: 100px;
	margin-right: 10px;
}

.filter-products-tion .danh-muc {
	margin-bottom: 30px;
    padding: 15px 15px;
    border-radius: 6px;
    border: 1px solid #efefef;
}

.filter-products-tion .danh-muc .title {
	position: relative;
	font-size: 18px;
	font-weight: 600;
	padding-bottom: 5px;
	margin-bottom: 10px;
	color: #000;
	border-bottom: solid 1px #eee;
}

.filter-products-tion .nav-item {
	position: relative;
	display: block;
}


.filter-products-tion .nav-link {
	display: block;
	padding: 5px 30px 5px 0;
	word-wrap: break-word;
	position: relative;
	text-transform: unset;
	font-weight: 400;
	font-size: 15px;
	color: #333;
	line-height: 1.4;
}

.filter-products-tion .nav-link:hover {
	color: #133585;
}

.filter-products-tion .down-icon svg{
	width: 15px;
	height: 15px;
}

.filter-products-tion .down-icon {
	position: absolute;
	top: 0;
    right: 0;
    transition: 0.3s all;
    cursor: pointer;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
	width: 30px;
	height: 34px;
}

.filter-products-tion .down-icon.active {
	transform: rotate(180deg);
}

.filter-products-tion .down-icon.active svg {
	fill: #133585;
}

.filter-products-tion ul .menu-down {
	padding-left: 20px;
	display: none;
}

.filter .filter-container .filter-item:not(:last-child) {
	border-bottom: 1px solid #efefef;
    padding-bottom: 20px;
    margin-bottom: 15px;
}

.filter .filter-item .filter-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
    cursor: pointer;
    display: grid;
    grid-template-columns: auto 20px;
    align-items: center;
    transition: .3s;
}

.filter .filter-item .filter-title.active {
	margin-bottom: 0;
}

.filter .filter-item .filter-title.active svg {
	transform: rotate(180deg);
}

.filter .filter-item .filter-title svg {
	width: 15px;
	height: 15px;
	transition: .3s;
}

.filter .filter-item .filter-list-item:not(:last-child) {
	margin-bottom: 10px;
}

.filter .filter-item label {
	margin-bottom: 0;
	cursor: pointer;
	color: #181818;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
	font-size: 14px;
	transition: .3s;
}

.filter .filter-item label:hover {
	color: #133585;
}

.filter .filter-item label input {
	display: none;
}

.filter .filter-item label .check {
	border-radius: 3px;
    border: 1px solid #a0a0a0;
    height: 16px;
    width: 16px;
    display: inline-block;
    position: relative;
}

.filter .filter-item label input:checked + .check {
	background: #133585;
	border-color: #133585;
} 

.filter .filter-item label input:checked + .check:after {
	content: "";
    color: #fff;
    position: absolute;
    width: 12px;
    height: 10px;
    top: 2px;
    left: 1px;
    background-image: url('../images/icon-check.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.title-page {
	display: grid;
	grid-template-columns: 50% auto;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 25px;
}

.title-page h1 {
	font-size: 23px;
}

.title-page .sort-by {
	display: flex;
	align-items: center;
}

.title-page .sort-by span {
	white-space: nowrap;
}

.title-page select {
	padding: 10px;
	border-radius: 8px;
	border: 1px solid #e9e9e9;
	font-size: 16px;
	margin-left: 10px;
	width: 100%;
	max-width: 200px;
}

select:focus {
	outline: none;
}

.icon-filter,
.close-filter {
	display: none;
}

@media (max-width: 1200px) {
	.filter-products-tion {
		margin-left: 0px;
	}
}

@media (max-width: 992px) { 
	.filter-products-tion {
		position: fixed;
		top: 0;
		left: 0;
		height: 100vh;
		width: 80%;
		background: #FFF;
		z-index: 100000;
		overflow-y: auto;
		box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
		transform: translateX(-100%);
		transition: .3s;
	}

	.filter-products-tion.active {
		transform: translateX(0);
	}

	.filter-products-tion .danh-muc {
		border: none;
	}

	.filter .filter-container .filter-item {
		padding: 0 15px 20px;
	}

	.filter .filter-item .filter-title,
	.filter-products-tion .danh-muc .title {
		font-size: 16px;
	}

	.filter-products-tion .nav-item {
		padding: 0;
	}

	.icon-filter {
		display: block;
		position: fixed;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
	}

	.icon-filter {
		width: 40px;
		height: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
		background: #133585;
		border-radius: 50% 0 0 50%;
	}

	.icon-filter svg {
		width: 20px;
		height: 20px;
	}

	.icon-filter svg path {
		stroke: #FFF;
	}

	.close-filter {
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		top: 0;
		right: 0;
		width: 30px;
		height: 30px;
	}

	.close-filter svg {
		width: 20px;
		height: 20px;
	}

	.sort-by span {
		display: none;
	}

	.title-page h2 {
		font-size: 18px;
	}

	.title-page select {
		margin-left: 0;
	}

	.title-page h1 {
		font-size: 20px;
	}
}