.main-items .items {
	display: flex;
	flex-wrap: wrap;
	padding: 10px;
}
.main-items .item {
	flex: 0 0 50%;
	padding: 15px;
}
.main-items .item-body {}
.main-items .item-thumb {
	box-shadow: 5px 5px 4px 3px rgba(0,0,0, .5);
}
.main-items .item-thumb span {
	aspect-ratio:80 / 103;
	display: block;
}
.main-items .item-thumb img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}
.main-items .item-title {
	font-size: 1.5rem;
	padding: 1.5rem 0 1rem;
	text-align: center;
}

.fancybox-opened .fancybox-skin {
	background: none !important;
	box-shadow: none !important;
}
.fancybox-close {
	background:rgba(255,255,225, 1);
	color:#fff;
	height:5rem;
	width: 5rem;
}
.fancybox-close::after,
.fancybox-close::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%; /* Chiều dài thanh, bằng chiều rộng vùng chứa */
	height: 4px; /* Chiều dày thanh */
	background-color: #333; /* Màu của biểu tượng */
}
.fancybox-close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
.fancybox-close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (min-width: 992px) {
	.main-items .item {
		flex: 0 0 25%;
	}
}
.main-items .owl-carousel {
	
}
.main-items .owl-nav {
	display: flex;
	justify-content: space-between;
	margin: 0;
	position: absolute;
	z-index: 100;
	left: 0;
	right: 0;
	top: 50%;
	transform: translate(0, -50%);
	visibility: hidden;
}

.owl-theme .owl-nav [class*="owl-"] {
	background:rgba(1,1,1, .6) center center no-repeat;
	width:3rem;
	height:5rem;
	margin:0 !important;
	position: relative;
	visibility: visible;
}
.owl-theme .owl-nav [class*="owl-"]::after {
	content: "";
	position: absolute;
}
.main-items .owl-nav .owl-prev::after {
	border-top: 1.5rem solid transparent;
	border-bottom: 1.5rem solid transparent;
	border-right: 1.5rem solid #fff;
	top: 1rem;
	right: 1rem;
}
.main-items .owl-nav .owl-next::after {
	border-top: 1.5rem solid transparent;
	border-bottom: 1.5rem solid transparent;
	border-left: 1.5rem solid #fff;
	top: 1rem;
	left: 1rem;
}