.list-tours .dropdown-header {
	background: white;
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: border-color 0.2s ease;
	border: 1px solid #ccc;
	padding: 0px 12px;
}

.list-tours .dropdown-header:hover {
	border-color: #d0d0d0;
}

.list-tours .dropdown-header.active {
	border-color: #00a86b;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.list-tours .header-content {
	display: flex;
	/* align-items: center; */
	gap: 8px;
	width: 100%;
}

.list-tours .location-icon {
	font-size: 1.1rem;
	color: #666;
	padding: 12px 0;
	line-height: 21px;
}

.list-tours .header-text {
	color: #333;
	font-size: 14px;
	font-weight: 500;
}

.list-tours .arrow {
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #999;
	transition: transform 0.2s ease;
}

.list-tours .arrow.rotated {
	transform: rotate(180deg);
}

.list-tours .dropdown-list {
	position: absolute;
	top: 37px;
	left: 0px;
	width: 186.625px;
	background: white;
	border-top: none;
	border-radius: 4px;
	max-height: 200px;
	overflow-y: auto;
	z-index: 1000;
	display: none;
	visibility: visible;
	transition: all 0.2s ease;
	border: 1px solid rgba(0, 0, 0, 0.15);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.list-tours .dropdown-list.show {
	display: block;
}

.list-tours .dropdown-item {
	color: #333;
	cursor: pointer;
	transition: background-color 0.1s ease;
	padding: 3px 12px;
	font-size: 14px;
}

.list-tours .dropdown-item:hover {
	background-color: #f8f8f8;
}

.list-tours .dropdown-item:last-child {
	border-bottom: none;
}

.list-tours .dropdown-item.selected {
	background-color: #f5f5f5;
	color: #262626;
}

.list-tours .dropdown-list::-webkit-scrollbar {
	width: 6px;
}

.list-tours .dropdown-list::-webkit-scrollbar-track {
	background: #f1f1f1;
}

.list-tours .dropdown-list::-webkit-scrollbar-thumb {
	background: #c1c1c1;
	border-radius: 3px;
}

.list-tours .dropdown-list::-webkit-scrollbar-thumb:hover {
	background: #a8a8a8;
}

.list-tours .dropdown-header input {
	width: 100%;
	padding: 12px 0px;
	border: none;
	background-color: var(--white-color);
	height: unset;
}

.list-tours .dropdown-header input:focus {
	outline: none;
}

.list-tours .dropdown-header input::placeholder {
	color: #000;
}

.list-tours .dropdown-list.active {
	visibility: visible;
	width: 100%;
	top: 45px;
	left: 0px;
	display: block;
}

.list-tours .dropdown-item:hover {
	background-color: #f5f5f5;
	color: #262626;
}

.list-tours .dropdown-header.focus {
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
	transition: 0.3s ease;
}

.list-visit {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
}

.visit-item {
	color: #000;
	border-color: #6A6A6A;
	margin-bottom: 5px;
	margin-right: 10px;
	margin-top: 5px;
	padding: 5px 7px;
	border-radius: 6px;
	border: 1px solid var(--brand-gold);
	width: fit-content;
	font-size: 14px;
}

.delete-visit-item {
	padding-left: 10px;
	color: #6A6A6A;
	cursor: pointer;
}

.clear-visit-item {
	font-weight: bold;
	color: var(--brand-gold);
	margin: 5px 0;
	order: 9999;
	cursor: pointer;
	font-size: 14px;
}

.filter-checkbox {
	accent-color: var(--brand-gold);
}

/* .list-tours .list-item-dropdown {
    display: flex;
    justify-content: space-between;
    gap: 0px 10px;

} */

.list-dropdown {
	background: rgb(245, 245, 245);
	padding: 16px;
	border-radius: 10px;
}

.list-dropdown button.btn-reset {
	padding: 0px;
	font-size: 14px;
	background-color: transparent;
	color: #b39439;
	margin-top: 7px;
	font-weight: 500;
	border: none;
}

.list-tours .item-dropdown {
	position: relative;
	/* width: 100%; */
}

.img-left {
	height: 100%;
	max-height: 100%;
}

.title-search {
	margin-bottom: 20px;
}

.filter_bar {
	background: rgba(245, 245, 245, 1);
	border-radius: 10px;
}

.filter_bar ul li:nth-child(n+6) {
	display: none;
	transition: 0.5s ease;
}

.filter_bar ul:hover li {
	display: list-item;
	transition: 0.5s ease;
}

.filter-menu {
	color: #fff;
	background: #b39439;
	padding: 10px;
	font-size: 16px;
	font-weight: 500;
	border-radius: 10px 10px 0px 0px;
}

.filter-group {
	padding: 0px 15px;

}

.filter-group_item {
	padding: 15px 0px;
}

.filter-group:not(:last-child) .filter-group_item {
	border-bottom: 1px solid gray;
}

.toggle_filter .title {
	font-weight: 500;
	text-transform: capitalize;
}

.toggle_filter {
	margin-bottom: 10px;
}

.filter-checkbox ul li {
	position: relative;
	padding-left: 20px;
}

.filter-checkbox ul li a {
	color: #333;
	font-size: 13px;
}

.filter-checkbox ul li a:hover,
.filter-checkbox ul li a:active {
	color: #ae8c2c;
}

.filter-checkbox ul li::before {
	content: "•";
	color: rgb(172, 172, 172);
	font-size: 30px;
	position: absolute;
	left: 0px;
	top: -11px;
}

.title-search p {
	color: #ae8c2c;
	font-size: 16px;
	font-weight: 600;
}

#type-sort {
	border-radius: 6px;
	border-color: rgba(175, 175, 175, 1);
	color: #000;
	padding: 10px 15px;
	background-color: white;
	height: unset;
}

.clamp-text {
	margin-left: 5px;
	font-size: 14px;
}

.tour-item {
	margin-bottom: 25px;
}

.tour-item_content {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.tour-item_content h3 a {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-webkit-line-clamp: 2;
	font-size: 20px;
	font-weight: 600;
}

.tour-item_content h3 span.btnday {
	color: #ae8c2c;
	border: 1px solid #ae8c2c;
	display: inline-block;
	padding: 2px 7px;
	border-radius: 6px;
	font-size: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	white-space: nowrap;
}

.icon-container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 26px;
	height: 26px;
	background-color: #e0e0e0;
	border-radius: 50%;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.icon-container i {
	color: #666666;
	font-size: 0.875rem;
}

.tour-item_content .star li {
	margin-right: 2px;
}

.tour-item_content .star li svg {
	height: 13px;
	fill: #ffc300;

}

.tour-item_content .star li p {
	font-size: 12px;
	color: gray;
	padding: 0px;
	margin-left: 5px;
}

.padd2-0 {
	padding: 2px 0px;
}

.tour-item {
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	border-radius: 10px;
	overflow: hidden;
}

.box-price-botom {
	margin: 20px 10px 0 10px;
}

.box-price-botom a {
	color: #ffffff;
	border-radius: 5px;
	background: #fb6a00;
	padding: 5px 20px;
	font-size: 14px;
}

.tour-item_content {
	padding: 20px;
}

.price_line {
	font-size: 14px;
	color: #6A6A6A;
}

.price--color {
	color: #ea5b31;
}

.price_number {
	font-size: 18px;
}

.box-price-tour {
	border-top: 1px solid #cacaca;
	margin-top: 15px;
}

.package_type {
	background-color: #b39439;
	color: var(--white-color);
	padding: 5px 10px;
	text-transform: uppercase;
	border-radius: 0px 0px 5px 5px;
	left: 10%;
}

.item-content a {
	color: var(--text-dark);
}

.item-content a:hover {
	color: var(--brand-gold);
}

.popup-filter {
	position: fixed !important;
	width: 65%;
	z-index: 10;
	background-color: white;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	border-radius: 10px;
	transform: translateX(100%);
	transition: all 200ms linear 0s;
	overflow: scroll;
}

.popup-filter.show {
	transform: translateX(0%);
}

.popup-filter_body {
	padding: 25px;
}

.tab-block {
	height: 290px;
	margin: 50px auto;
}

.tab-block .tab-mnu {
	list-style: none;
	overflow: hidden;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.tab-block .tab-mnu li {
	box-sizing: border-box;
	float: left;
	font-size: 13px;
	text-align: center;
	padding: 6px 15px 4px 15px;
	cursor: pointer;
	border: 1px solid #eee;
	border-radius: 5px;
}

/* Loại bỏ border phải của phần tử cuối cùng */
.tab-block .tab-mnu li:last-child {
	border-right: none;
}

.tab-block .tab-mnu li.active {
	border-bottom: 1px solid;
	border-bottom-color: currentcolor;
	cursor: default;
	border-color: #b39439;
	background: #b39439;
	color: rgb(255, 255, 255);
}

.tab-block .tab-cont {
	box-sizing: border-box;
	border-top: 1px solid white;

}

.tab-block .tab-cont .tab-pane {
	padding: 25px 0px;
}

.popup-filter .filter .filter-title {
	font-size: 14px;
	font-weight: 600;
	color: #b39439;
}

.popup-filter .filter-items-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.popup-filter label.label-filter {
	font-size: 13px;
	font-weight: 400;
	display: flex;
	align-items: center;
	cursor: pointer;
	flex-basis: 100%;
}

@media (min-width: 480px) {
	.popup-filter label.label-filter {
		flex-basis: calc(50% - 0.5rem);
	}
}

@media (min-width: 768px) {
	.popup-filter label.label-filter {
		flex-basis: calc(33.333% - 0.666rem);
	}
}

@media (min-width: 1024px) {

	.popup-filter label.label-filter {
		flex-basis: calc(25% - 0.75rem);
	}
}

@media (min-width: 1280px) {

	.popup-filter label.label-filter {
		flex-basis: calc(20% - 0.8rem);
	}
}

@media (max-width: 768px) {
	#list_tour {
		margin-top: 2rem;
	}
}

.popup-filter label.label-filter input {
	margin-right: 5px;
}

.popup-filter_body form {
	height: 40px;
	background-color: rgb(241, 241, 241);
	border-radius: 40px;
	overflow: hidden;
}

.popup-filter_body form input {
	height: 100%;
	width: 100%;
	background-color: transparent;
	padding: 0px 20px 0px 50px;
	border: transparent;
}

.popup-filter_body form input:focus {
	outline: none;
}

.popup-filter_body form button {
	height: 100%;
	background-color: transparent;
}

.popup-filter_body h3 {
	font-size: 20px;
	font-weight: 300;
	margin-bottom: 15px;
}

#apply_visit {
	position: fixed;
	bottom: 30px;
	left: 70%;
	transform: translateX(-50%);
	padding: 7px 30px;
	border-radius: 5px;
	background: #b39439;
	color: white;
	cursor: pointer;
	width: fit-content;
	z-index: 50;
}

.close-menu_filter {
	height: 20px;
	position: absolute;
	right: 20px;
}

.close-menu_filter svg {
	height: 15px;
}

.rating-vote {
	color: #999;
	font-size: 12px;
}