.page_archive{
	padding: 30px 0;
}
h1.th_pagearchive{
	margin: 0;
	padding: 0;
	margin-bottom: 20px;
	padding-bottom: 10px;
	position: relative;
	font-size: 33px;
	text-transform: uppercase;
	color: var(--cl2);
	font-weight: bold;
	text-align: center;
}
h1.th_pagearchive::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 80px;
	height: 3px;
	background: var(--cl1);
}

ul.listcategogy_sidebar{
	margin: 0;
	padding: 0;
	list-style: none;

	background: #fff;
	padding: 1rem;
	border-radius: 10px;
	box-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
}
ul.listcategogy_sidebar > li{
	border-bottom: 1px solid #CCC;
}
ul.listcategogy_sidebar > li > a{
	display: block;
	height: 50px;
	line-height: 50px;
	cursor: pointer;
	z-index: 2;
	font-size: 16px;
	text-decoration: none;
	color: #333;
	text-transform: uppercase;
	position: relative;
}
ul.listcategogy_sidebar > li > a:before {
	position: absolute;
	right: 0px;
	top: 23px;
	display: block;
	width: 10px;
	height: 2px;
	background: #999;
	content: "";
	transition: all 0.1s ease-out;
}
ul.listcategogy_sidebar > li > a:after {
	position: absolute;
	right: 4px;
	top: 19px;
	z-index: 5;
	display: block;
	height: 10px;
	width: 2px;
	background: #999;
	content: "";
	transition: all 0.1s ease-out;
}
ul.listcategogy_sidebar > li > a > img{
	width: 20px;
	height: 20px;
}

ul.listcategogy_sidebar > li.has-sub.open > a:after,
ul.listcategogy_sidebar > li.has-sub.open > a:before {
	transform: rotate(45deg);
}

ul.listcategogy_sidebar > li > ul{
	padding-left: 30px;

	display: none;
}
ul.listcategogy_sidebar > li > ul > li{
	position: relative;
}
ul.listcategogy_sidebar > li > ul > li > a {
	height: 30px;
	line-height: 30px;
	color: #000;
}

ul.listcategogy_sidebar > li.open > ul{
	display: block;
}

.grid_pagearchive{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 20px;

	margin-bottom: 30px;
}
.grid_pagearchive .col_pagearchive{
	grid-column-end: span 1;
}
.item_pagearchive{
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}
.item_pagearchive a{
	display: block;
	position: relative;
}
.info_pagearchive{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient( 0deg, rgb(115 75 186) 0%, rgb(117 78 190) 30%, rgba(59, 96, 188, 0) 100% );
	padding: 5px 10px;
}
.info_pagearchive h3{
	margin: 0;
	padding: 0;
	margin-bottom: 3px;
	padding-bottom: 3px;
	text-transform: capitalize;
	border-bottom: 1px solid rgb(255 255 255 / 20%);
	font-size: 15px;
	color: #fff;
}
.info_pagearchive .date{
	color: #fff;
}


/*phantrang*/
ul.pagination {
	display: flex;
}

a.page-link {
	display: inline-block;
	padding: 5px 8px;
	background: var(--cl2);
	color: #fff;
}

li.page-item {
	margin-right: 4px;
}

li.page-item.active a {
	background: var(--cl1);
}