#vlf-hub {
	text-align: center;
}
.vlf-search-box {
	margin-bottom: 30px;
}
.vlf-type-cards {
	display: flex;
	justify-content: space-between;
}
.vlf-card { 
	border: 1px solid #ddd;
	border-radius: 8px;
	width: 30%;
	transition: 0.2s; }
.vlf-card:hover {
	box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}
.vlf-card img {
	max-width: 100%;
	height: auto; }
.select2-container .select2-selection {
    border: 1px solid #aaa !important;
}

/* page detail */
.choose-vehicle {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30%, auto));
	justify-content: space-evenly;
	grid-gap: 20px;
    padding: 0 20px 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #f9f9f9;
    margin-bottom: 30px;
	box-shadow: -5px -5px 10px rgba(255, 255, 255, 0.7), 3px 3px 5px rgba(0, 0, 0, 0.25);
}
.vlf-row label {
	margin: 20px 0 5px;
}
#vlf-result {
    display: flex;
    justify-content: space-between;
    gap: 30px;
	align-items: flex-start;
}
.vlf-products {
    list-style: none;
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
}

.vlf-products li {
    display: flex;
    align-items: center;
    margin: 0 !important;
	gap: 15px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
	box-shadow: -5px -5px 10px rgba(255, 255, 255, 0.7), 3px 3px 5px rgba(0, 0, 0, 0.25);
	background-color: #f9f9f9;
}
.product-image img {
	width: 200px;
    height: auto;
	display: block;
	border-radius: 5px;
}
.product-infomation {
	flex: 1;
    display: flex;
    flex-direction: column;
}

@media (max-width: 487px) {
    .choose-vehicle {
        display: block;
    }
	.vlf-products {
		font-size: 14px;
	}
	.vlf-products li {
		padding: 15px;
	}
	.product-image img {
	width: 150px;
	}
}
@media (max-width: 868px) {
	#vlf-result {
		flex-wrap: wrap;
	}
	.specs-vehicle {
		position: unset !important;
	}
}

.specs-vehicle {
	min-width: fit-content;
	position: sticky;
	top: 120px;
}
.specs-vehicle li {
	display: table-row;
}
.specs-vehicle span, .specs-vehicle strong {
	display: table-cell;
	padding: 7px 15px 5px;
}
.specs-vehicle li:nth-child(odd) {
  background-color: #f9f9f9; /* màu cho hàng lẻ */
}
.specs-vehicle ul {
	border: 1px solid #ccc;
	border-radius: 5px;
	overflow: hidden;
	list-style: none;
	box-shadow: -5px -5px 10px rgba(255, 255, 255, 0.7), 3px 3px 5px rgba(0, 0, 0, 0.25);
}
.select2-container--default .select2-selection--single .select2-selection__clear {
	display: none;
}

.select2-container--disabled .select2-selection {
  opacity: 0.7;
}
.select2-container {
	width: 100% !important;
}