/** @format */

/* ========== Main Title ========== */
.activities-main-title {
	font-size: 2rem;
	font-weight: 700;
	color: #212529;
	margin-bottom: 0.5rem;
	text-align: center;
}

/* ========== Grid and Card ========== */
.activities-grid {
	margin-bottom: 2rem;
}

.activities-card {
	border: none;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activities-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.activities-card img.card-img-top {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

/* ========== Badge ========== */
.activities-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 5px 10px;
	font-size: 0.85rem;
	font-weight: 600;
	border-radius: 20px;
	color: #fff;
	line-height: 1.2;
}

.activities-badge.bg-purple {
	background: #6f42c1;
}

/* ========== Card Body ========== */
.activities-card .card-body {
	padding: 1.25rem;
}

.activities-card .card-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #212529;
	margin-bottom: 0.5rem;
}

.activities-card .card-text {
	font-size: 0.9rem;
	color: #495057;
	line-height: 1.5;
	margin-bottom: 0.75rem;
}

/* ========== Metadata & Button ========== */
.activities-meta {
	font-size: 0.85rem;
	color: #6c757d;
	margin-bottom: 0.75rem;
}

.activities-meta span {
	display: inline-block;
	margin-right: 1rem;
}

.activities-meta i {
	margin-right: 0.4rem;
}

.activities-card .btn-outline-primary {
	width: 100px;
	text-align: center;
	/* đảm bảo text nằm giữa */
	padding-left: 0;
	padding-right: 0;
	background-color: #ed1c24c7 !important;
	color: white !important;
}

.activities-card .btn-outline-primary:hover {
	background-color: #d4111b !important;
	border-color: #d4111b !important;
	color: #fff !important;
}

/* ========== Sidebar ========== */
.sidebar-card {
	background: #fff;
	border-radius: 10px;
	padding: 1.25rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sidebar-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: #212529;
	margin-bottom: 0.75rem;
}

.sidebar-title i {
	margin-right: 0.5rem;
}

.sidebar li {
	color: white;
}

.sidebar-list,
.category-list {
	margin: 0;
	padding: 0;
}

.sidebar-item {
	margin-bottom: 0.75rem;
}

.sidebar-link {
	font-size: 0.95rem;
	color: #ed1c24c7;
	text-decoration: none;
	font-weight: 500;
}

.sidebar-link:hover {
	color: #0056b3;
	text-decoration: underline;
}

.sidebar-meta {
	font-size: 0.85rem;
	color: #6c757d;
}

.sidebar-meta span {
	display: block;
}

/* ========== Categories ========== */
.category-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0.75rem;
	font-size: 0.95rem;
	border-radius: 8px;
	margin-bottom: 0.25rem;
	transition: all 0.2s ease;
}

.category-item:hover {
	background-color: #f8f9fa;
}

.category-item.active {
	background-color: #e67e22;
	color: #fff;
}

.category-item.active .badge {
	background-color: #fff !important;
	color: #e67e22 !important;
}

.category-item.active .category-dot {
	color: #fff !important;
}

.category-dot {
	font-size: 0.5rem;
	margin-right: 0.5rem;
	vertical-align: middle;
}

.category-dot.launch {
	color: #dc3545;
}

.category-dot.openhouse {
	color: #28a745;
}

.category-dot.promotion {
	color: #ffc107;
}

.category-dot.seminar {
	color: #17a2b8;
}

.category-item .badge {
	font-size: 0.8rem;
	padding: 0.3rem 0.5rem;
	border-radius: 12px;
}

/* ========== Tags ========== */
.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.tags .badge {
	font-size: 0.85rem;
	padding: 0.4rem 0.8rem;
	border-radius: 12px;
}

/* ========== Form ========== */
.sidebar-card input.form-control {
	border-radius: 5px;
	font-size: 0.9rem;
	padding: 0.5rem;
}

.sidebar-card .btn-primary {
	border-radius: 5px;
	font-size: 0.9rem;
	padding: 0.5rem;
}

/* ========== Responsive ========== */
@media (max-width: 991.98px) {
	.activities-main-title {
		font-size: 1.75rem;
	}

	.activities-card img.card-img-top {
		height: 160px;
	}

	.activities-card .card-title {
		font-size: 1rem;
	}

	.activities-card .card-text {
		font-size: 0.85rem;
	}

	.sidebar-title {
		font-size: 1.1rem;
	}

	.sidebar-card {
		padding: 1rem;
	}
}

@media (max-width: 767.98px) {
	.activities-card img.card-img-top {
		height: 140px;
	}

	.activities-badge {
		font-size: 0.75rem;
		padding: 4px 8px;
	}

	.activities-card .card-body {
		padding: 1rem;
	}

	.activities-card .btn-outline-primary {
		font-size: 0.85rem;
	}
}

/* ========== Fix uniform button position inside card ========== */
.activities-card .card-body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* ========== Chi tiết button custom styles ========== */
.activities-card .btn-outline-primary {
	border-width: 2px;
	font-size: 0.9rem;
	padding: 0.4rem 0.9rem;
	background-color: transparent;
	border-color: #ed1c24c7;
	color: #ed1c24c7;
	outline: none;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.activities-card .btn-outline-primary:hover {
	background-color: #ed1c24c7;
	color: #fff;
	border-color: #ed1c24c7;
}

/* ========== Ensure all cards have equal height with consistent spacing ========== */
.activities-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* Optional: Add consistent margin-bottom between cards if needed */
.activities-grid>.col-md-6 {
	margin-bottom: 1rem;
}

/* Nút 'Xem thêm sự kiện' */
.text-center .btn-primary {
	background-color: #ed1c24 !important;
	color: #fff !important;
	border: 2px solid #ed1c24 !important;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.text-center .btn-primary:hover {
	background-color: #d4111b !important;
	border-color: #d4111b !important;
	color: #fff !important;
}

.btn-primary {
	background-color: #ed1c24 !important;
	color: #fff !important;
	border: 2px solid #ed1c24 !important;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary:hover {
	background-color: #d4111b !important;
	border-color: #d4111b !important;
	color: #fff !important;
}

/* tag */
.tags .badge {
	background-color: #f0f0f0;
	color: #333;
	padding: 8px 14px;
	margin: 4px;
	border-radius: 20px;
	font-size: 14px;
	display: inline-block;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.tags .badge:hover {
	background-color: #dcdcdc;
	color: #000;
}

/* modal */
.modal-content {
	background-color: white;
	padding: 5px;
	border-radius: 30px;
	width: 565px;
	max-width: fit-content;
}

.modal-header {
	display: grid;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.modal-content img {
	margin-left: auto;
	margin-right: auto;
	max-width: 50%;
	height: auto;
}

.modal-body {
	position: relative;
	flex: 1 1 auto;
	padding: 1rem;
}

.modal-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	padding: 0.75rem;
	border-top: 1px solid #dee2e6;
	border-bottom-right-radius: calc(0.3rem - 1px);
	border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
}

.input-group {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	width: 100%;
}

.form-row>.col,
.form-row>[class*="col-"] {
	padding-right: 5px;
	padding-left: 5px;
}

.col-3 {
	flex: 0 0 25%;
	max-width: 25%;
}

.input-group>.custom-file,
.input-group>.custom-select,
.input-group>.form-control,
.input-group>.form-control-plaintext {
	position: relative;
	flex: 1 1 auto;
	width: 1%;
	min-width: 0;
	margin-bottom: 0;
}

.form-control {
	margin: 0;
}

label {
	display: inline-block;
	margin-bottom: 0.5rem;
}

.form-group label {
	display: block;
	font-size: 14px;
	color: #333;
	margin-bottom: 5px;
}

.form-row {
	display: flex;
	gap: 10px;
}

.select-wrapper {
	flex: 0 0 25%;
	/* tương đương col-3 */
}

.input-wrapper {
	flex: 1;
	/* tương đương col-9 */
}

.custom-select,
.form-control {
	height: 50px;
	width: 100%;
	padding: 8px 12px;
	font-size: 16px;
}

.modal-button-register {
	background-color: #ed1c24c7;
	color: white;
	width: 100%;
	border-radius: 999px;
	height: 50px;
}

@-webkit-keyframes mui-auto-fill {
	from {
		display: block;
	}
}

@keyframes mui-auto-fill {
	from {
		display: block;
	}
}

@-webkit-keyframes mui-auto-fill-cancel {
	from {
		display: block;
	}
}

@keyframes mui-auto-fill-cancel {
	from {
		display: block;
	}
}

.form-row {
	display: flex;
	gap: 10px;
	/* Tùy chỉnh khoảng cách giữa 2 ô */
	margin-bottom: 15px;
}

.form-row .col-3,
.form-row .col-9 {
	flex: none;
}

.form-row .col-3 {
	width: 25%;
}

.form-row .col-9 {
	width: 75%;
}

.form-row select,
.form-row input {
	width: 100%;
	height: 50px;
	padding: 10px;
	box-sizing: border-box;
}

.modal-dialog {
	position: relative;
	margin: auto;
	top: 50%;
	transform: translateY(-50%);
	max-width: 500px;
}

/* Form Container Styling */
.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-size: 14px;
	color: #333;
	margin-bottom: 8px;
	font-weight: 500;
}

/* Form Row Layout */
.form-row {
	display: ruby;
	gap: 15px;
	align-items: center;
	margin-bottom: 10px;
}

.form-row .col-3,
.form-row .col-9 {
	flex: none;
}

.form-row .col-3 {
	width: 25%;
}

.form-row .col-9 {
	width: 75%;
}

/* Input and Select Styling */
.custom-select,
.form-control {
	height: 50px;
	padding: 10px 12px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 8px;
	box-sizing: border-box;
	width: 100%;
	transition: border-color 0.3s ease;
}

.custom-select:focus,
.form-control:focus {
	border-color: #ed1c24c7;
	/* Matches modal-button-register color */
	outline: none;
	box-shadow: 0 0 5px rgba(237, 28, 36, 0.3);
}

.custom-select {
	appearance: none;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 10px center;
	background-size: 12px;
	padding-right: 30px;
}

/* Input Group Styling */
.input-group {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.input-group-append {
	margin-left: -1px;
}

.input-group-text {
	display: flex;
	align-items: center;
	padding: 0 12px;
	border: 1px solid #ccc;
	border-left: none;
	border-radius: 0 8px 8px 0;
	background-color: #f8f9fa;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.input-group-text:hover {
	background-color: #e9ecef;
}

.input-group-text i {
	font-size: 18px;
	color: #666;
}

/* Checkbox Styling */
.form-check {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.form-check-input {
	width: 18px;
	height: 18px;
	margin-top: 0;
}

.form-check-label {
	font-size: 14px;
	color: #333;
}

/* Forget Password Link */
.forget-password {
	font-size: 14px;
	color: #ed1c24c7;
	/* Matches sign-up link color */
	cursor: pointer;
}

.forget-password:hover {
	text-decoration: none;
	color: #c7161e;
}

/* Invalid Feedback */
.invalid-feedback {
	display: none;
	font-size: 12px;
	color: #dc3545;
	margin-top: 5px;
}

.form-control:invalid+.invalid-feedback,
.form-control:invalid~.invalid-feedback {
	display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.form-row {
		flex-direction: column;
		gap: 10px;
	}

	.form-row .col-3,
	.form-row .col-9 {
		width: 100%;
	}

	.custom-select,
	.form-control {
		font-size: 14px;
	}
}

.input-group-text {
	display: flex;
	align-items: center;
	padding: 1rem 0.75rem;
	margin-bottom: 0;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	text-align: center;
	white-space: nowrap;
	background-color: #e9ecef;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
}

.form-check {
	display: flex;
	flex-direction: row;
	-webkit-box-pack: justify;
	justify-content: space-between;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

.form-check-input {
	position: absolute;
	margin-top: 0.19rem;
	margin-left: -1.25rem;
}

button,
input {
	overflow: visible;
}

button,
input,
optgroup,
select,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

.form-row-form {
	display: flex;
	gap: 15px;
	align-items: center;
	margin-bottom: 10px;
}

.body-2-medium,
.body-2-medium-black {
	font-family: Be Vietnam Pro;
	font-size: 11.5px;
	font-weight: 500;
	line-height: 18px;
}

h2 {
	color: #ff3023;
}

/** @format */

.dDqWDO .logged-in-avatar,
.dDqWDO .guest-avatar {
	border-radius: 50%;
	height: 16px;
	width: 16px;
}

/*!sc*/
@media (max-width: 768px) {
	.dDqWDO .guest-avatar {
		height: 20px;
		width: 20px;
	}
}

/*!sc*/
data-styled.g30[id="sc-cxpSdN"] {
	content: "dDqWDO,";
}

/*!sc*/
.jlkUCc.main-header-nav {
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	z-index: 1021;
}

/*!sc*/
.jlkUCc.main-menu-open {
	z-index: 2021;
}

/* vss border ======= header */
/*!sc*/
/* .jlkUCc.is-find-room-page {
	border-bottom: 1px solid #e5e7eb;
} */

/*!sc*/
.jlkUCc.hidden-header-menu {
	margin-top: -56px;
}

/*!sc*/
.jlkUCc .navbar-header {
	z-index: 10;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 65px;
}

/*!sc*/
.jlkUCc .navbar-header .header-logo {
	width: 120px;
	height: 60px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/*!sc*/
.jlkUCc .navbar-header .header-logo img {
	width: 100%;
}

/*!sc*/
.jlkUCc .navbar-header .header-menu {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 17px;
}

/*!sc*/
.jlkUCc .navbar-header .header-menu .new-tag {
	color: #952e17;
	font-size: 10px;
	font-weight: 500;
	line-height: 16px;
	background-color: #fdead7;
	height: 18px;
	width: 35px;
	border-radius: 20px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/*!sc*/
.jlkUCc .navbar-header .header-menu__item {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
	color: white;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

/*!sc*/
.jlkUCc .navbar-header .header-menu__item.account-menu {
	padding: 8px;
}

/*!sc*/
.jlkUCc .navbar-header .header-menu__item.account-menu img {
	width: 16px;
	border-radius: 50%;
}

/*!sc*/
.jlkUCc .navbar-header .header-menu__item.account-menu .menu-icon path {
	fill: white;
}

/*!sc*/
.jlkUCc .navbar-header .header-menu__item.account-menu .guest-avatar path {
	stroke: white;
}

/*!sc*/
.jlkUCc .navbar-header .header-menu__item.menu-mobile {
	display: none;
}

/*!sc*/
.jlkUCc .navbar-header .header-menu__item__icon {
	width: 8px;
}

/*!sc*/
.jlkUCc .navbar-header .header-menu__item__icon path {
	fill: white;
}

/*!sc*/
@media (max-width: 768px) {
	.jlkUCc .navbar-header .header-menu__item:not(.account-menu) {
		display: none;
	}
}

/*!sc*/
@media (max-width: 768px) {
	.jlkUCc .navbar-header {
		height: 56px;
	}

	.jlkUCc .navbar-header .header-logo {
		width: 112px;
		height: 44px;
	}
}

/*!sc*/
.jlkUCc .main-menu {
	top: 0px;
	right: 0px;
	height: 100vh;
	width: 100%;
	max-width: 600px;
	background-color: var(--primary-color);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	z-index: 1;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 100px;
	box-shadow: -24px 0px 24px -6px rgba(16, 25, 40, 0.1);
	position: absolute;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transform: translate(0px, 0px);
	-ms-transform: translate(0px, 0px);
	transform: translate(0px, 0px);
	-webkit-clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
	clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
	visibility: hidden;
	opacity: 1;
}

/*!sc*/
@media (max-width: 768px) {
	.jlkUCc .main-menu {
		padding: 30px;
	}
}

/*!sc*/
.jlkUCc .main-menu.open {
	right: 0px;
	-webkit-transform: translate(0px, 0px);
	-ms-transform: translate(0px, 0px);
	transform: translate(0px, 0px);
	-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	visibility: visible;
}

/*!sc*/
.jlkUCc .main-menu .animation-main-menu-item {
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transform: translate(0px, 50px);
	-ms-transform: translate(0px, 50px);
	transform: translate(0px, 50px);
	visibility: hidden;
	opacity: 0;
	-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
	clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

/*!sc*/
.jlkUCc .main-menu .animation-main-menu-item.active {
	-webkit-transform: translate(0px, 0px);
	-ms-transform: translate(0px, 0px);
	transform: translate(0px, 0px);
	visibility: visible;
	opacity: 1;
	-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/*!sc*/
.jlkUCc .main-menu__overlay {
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	height: 100vh;
}

/*!sc*/
.jlkUCc .main-menu__header img {
	width: 16px;
}

/*!sc*/
.jlkUCc .main-menu__body .menu-list {
	gap: 30px;
}

/*!sc*/
@media (max-width: 768px) {
	.jlkUCc .main-menu__body .menu-list {
		gap: 20px;
	}
}

/*!sc*/
.jlkUCc .main-menu__body .body-menu__item {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.5;
	color: white;
}

/*!sc*/
.jlkUCc .main-menu__footer .menu-list {
	gap: 15px;
}

/*!sc*/
.jlkUCc .main-menu__footer .footer-menu__item {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	color: white;
	text-transform: uppercase;
}

/*!sc*/
.jlkUCc .main-menu__footer .social-menu {
	gap: 24px;
}

/*!sc*/
.jlkUCc .main-menu .select-lang .MuiSelect-select {
	color: white !important;
}

/*!sc*/
.jlkUCc .item-menu:hover {
	color: var(--primary-orange);
}

/*!sc*/
.jlkUCc .user-name-item {
	gap: 12px;
}

/*!sc*/
.jlkUCc .user-name-item .chevron-right-round-icon path {
	fill: white;
}

/*!sc*/
.jlkUCc .user-name-item:hover .item-menu {
	color: var(--primary-orange);
}

/*!sc*/
.jlkUCc .user-name-item:hover .chevron-right-round-icon path {
	fill: var(--primary-orange);
}

/*!sc*/
.jlkUCc .select-lang {
	border: none;
	max-width: 100px;
}

/*!sc*/
.jlkUCc .select-lang .MuiSelect-select {
	height: auto;
	min-height: 0;
	padding: 0;
	color: white;
	background-color: transparent;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/*!sc*/
.jlkUCc .select-lang fieldset {
	display: none;
}

/*!sc*/
.jlkUCc.bg-white .header-menu__item {
	color: var(--primary-color);
}

/*!sc*/
.jlkUCc.bg-white .navbar-header .header-menu__item {
	color: #131313 !important;
}

/* Desktop: Ensure header navigation text links are visible and centered */
@media (min-width: 769px) {
	.header-nav-center {
		display: flex !important;
		flex: 1 1 auto !important;
		justify-content: center !important;
		align-items: center !important;
		gap: 20px !important;
	}
	.header-nav-center > a.header-menu__item {
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
		color: #131313 !important;
	}
	.header-nav-center > a.header-menu__item > span {
		display: inline !important;
		visibility: visible !important;
		color: #131313 !important;
	}
}

/*!sc*/
.jlkUCc.bg-white .header-menu__item__icon path {
	fill: var(--primary-color);
}

/*!sc*/
.jlkUCc.bg-white .header-menu__item.account-menu .menu-icon path {
	fill: var(--primary-color);
}

/*!sc*/
.jlkUCc.bg-white .header-menu__item.account-menu .guest-avatar path {
	stroke: var(--primary-color) !important;
}

/*!sc*/
.jlkUCc.bg-white .select-lang .MuiSelect-select {
	color: var(--primary-color);
}

/*!sc*/
data-styled.g38[id="sc-jJoQJp"] {
	content: "jlkUCc,";
}

/*!sc*/
.eFcoiy .hotline-btn-wrapper {
	opacity: 1;
	position: fixed;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 60px;
	width: 60px;
	border-radius: 60px;
	right: 24px;
	z-index: 2000;
	top: auto;
	bottom: calc(var(--chat-icon-bottom) + 10px);
	background-color: #ed1c24c7;
	box-shadow: 0px 2px 8px 0px #d551054d;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

/*!sc*/
@media (max-width: 575px) {
	.eFcoiy .hotline-btn-wrapper {
		bottom: calc(var(--chat-icon-bottom) + 30px);
	}
}

/*!sc*/
.eFcoiy .hotline-btn-wrapper:hover {
	box-shadow: 0px 10px 11px 4px #ff752626;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	background-color: #c32a20;
}

/*!sc*/
.eFcoiy .mobile {
	height: 44px !important;
	width: 44px !important;
	border-radius: 44px !important;
	bottom: calc(var(--chat-icon-bottom) + 20px);
}

/*!sc*/
.eFcoiy .mobile svg {
	width: 24px;
	height: 24px;
}

/*!sc*/
data-styled.g75[id="sc-jOxtWs"] {
	content: "eFcoiy,";
}

/*!sc*/
.cAWxGn {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	cursor: pointer;
	margin-top: 2px;
	border: 1px solid #dadada;
	background-color: #fff;
	border-radius: 60px;
	padding: 10px 16px;
	max-width: calc(100% / 3);
	width: 100%;
	margin: 10px;
}

/*!sc*/
@media screen and (max-width: 424px) {
	.cAWxGn {
		margin: 10px 4px;
		padding: 10px 8px;
	}
}

/*!sc*/
@media screen and (max-width: 340px) {
	.cAWxGn {
		width: auto;
	}
}

/*!sc*/
data-styled.g215[id="sc-jftFmt"] {
	content: "cAWxGn,";
}

/*!sc*/
.iFzTxe {
	font-size: 14px;
	font-weight: 300;
	line-height: 20px;
	color: #ff7526;
}

/*!sc*/
data-styled.g217[id="sc-jdhwqr"] {
	content: "iFzTxe,";
}

/*!sc*/
.bGOJpD {
	width: 14px;
	height: 14px;
	margin-left: 8px;
}

/*!sc*/
data-styled.g218[id="sc-fkJVfC"] {
	content: "bGOJpD,";
}

/*!sc*/
.joomzS {
	position: -webkit-sticky;
	position: sticky;
	top: 62px;
	overflow: hidden;
}

/*!sc*/
data-styled.g222[id="sc-ezHhwS"] {
	content: "joomzS,";
}

/*!sc*/
.fMTfSI .reset-container .svg-reset {
	display: block;
}

/*!sc*/
.fMTfSI .reset-container .svg-reset-orange {
	display: none;
}

/*!sc*/
.fMTfSI .reset-container:hover .svg-reset {
	display: none;
}

/*!sc*/
.fMTfSI .reset-container:hover .svg-reset-orange {
	display: block;
}

/*!sc*/
.fMTfSI .reset-container:hover .reset-text {
	color: #ff7526;
}

/*!sc*/
data-styled.g225[id="sc-eJRTFu"] {
	content: "fMTfSI,";
}

/*!sc*/
.hSKaaq {
	font-size: 18px;
	font-weight: 500;
	line-height: 26px;
}

/*!sc*/
data-styled.g227[id="sc-hlGDCY"] {
	content: "hSKaaq,";
}

/*!sc*/
.glhupE {
	width: 20px;
	margin-right: 4px;
}

/*!sc*/
data-styled.g228[id="sc-iidyiZ"] {
	content: "glhupE,";
}

/*!sc*/
.NJORg {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: #6d6e70;
}

/*!sc*/
data-styled.g229[id="sc-dYPfWK"] {
	content: "NJORg,";
}

/*!sc*/
.fiSVKf {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: #6d6e70;
}

/*!sc*/
data-styled.g230[id="sc-eVmaCL"] {
	content: "fiSVKf,";
}

/*!sc*/
.ipuPDT {
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
}

/*!sc*/
data-styled.g231[id="sc-gA-DPUo"] {
	content: "ipuPDT,";
}

/*!sc*/
.hlhdfP {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	padding: 10px 0px;
}

/*!sc*/
data-styled.g232[id="sc-hxaKAp"] {
	content: "hlhdfP,";
}

/*!sc*/
.dlRwmn {
	width: 24px;
	margin-right: 8px;
}

/*!sc*/
data-styled.g233[id="sc-gfXuXe"] {
	content: "dlRwmn,";
}

/*!sc*/
.eRqCOU {
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
}

/*!sc*/
data-styled.g234[id="sc-hcupDf"] {
	content: "eRqCOU,";
}

/*!sc*/
.kEnPPT:first-child {
	margin-right: 8px;
}

/*!sc*/
.kEnPPT .price-input-label {
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	margin-bottom: 4px;
}

/*!sc*/
.kEnPPT .price-input {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/*!sc*/
.kEnPPT .price-input input {
	padding-right: 30px;
	height: 40px;
	font-size: 14px;
}

/*!sc*/
.kEnPPT .price-input .price-suffix {
	font-size: 14px;
	line-height: 20px;
	position: absolute;
	right: 10px;
	-webkit-text-decoration: underline;
	text-decoration: underline;
	border-left: 1px solid #ddd;
	padding-left: 8px;
}

/*!sc*/
data-styled.g235[id="sc-oXPCX"] {
	content: "kEnPPT,";
}

/*!sc*/
.cPFOuG {
	margin-top: 20px;
}

/*!sc*/
.cPFOuG .reset-button {
	font-size: 14px;
	color: #ff1001;
	width: 80px;
	-webkit-text-decoration: underline;
	text-decoration: underline;
	text-underline-offset: 2px;
}

/*!sc*/
.cPFOuG .sort-button {
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	padding: 10px 16px;
	border-radius: 60px;
	background-color: #ff7526;
	border: none;
	color: #fff;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	width: 100%;
}

/*!sc*/
data-styled.g237[id="sc-cQMzAB"] {
	content: "cPFOuG,";
}

/*!sc*/
.hwVAeY {
	position: static;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	z-index: 1007;
	position: relative;
}

/*!sc*/
.hwVAeY.is-opening-popup {
	z-index: 1500;
}

/*!sc*/
.hwVAeY.is-opening-range-date-popup {
	z-index: 1600;
}

/*!sc*/
.hwVAeY.is-opening-range-date-popup .filter-range-date__content-item.is-active {
	background-color: #fff;
	box-shadow: 0px 1px 8px 2px rgba(27, 27, 27, 0.05);
}

/*!sc*/
.hwVAeY.is-opening-range-date-popup .filter-range-date__content-item.is-active .filter-range-date-trigger__date-text {
	color: var(--primary-orange);
}

/*!sc*/
.hwVAeY .filter-range-date__content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
}

/*!sc*/
.hwVAeY .filter-range-date__content-item {
	cursor: pointer;
	padding: 10px 24px;
	border-radius: 999px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

/*!sc*/
.hwVAeY .filter-range-date__content-item:hover {
	background-color: #fafafa;
}

/*!sc*/
@media (max-width: 768px) {
	.hwVAeY .filter-range-date__content-item:first-child {
		padding: 2px 0px 6px 20px;
	}

	.hwVAeY .filter-range-date__content-item:last-child {
		padding: 2px 15px 6px 0px;
	}
}

/*!sc*/
@media (max-width: 350px) {
	.hwVAeY .filter-range-date__content-item:last-child {
		padding-right: 7px;
	}
}

/*!sc*/
.hwVAeY .filter-range-date__content .mobile-divider {
	display: none;
	padding: 0 5px;
	padding-bottom: 6px;
	font-size: 12px;
	color: #6d6e70;
}

/*!sc*/
@media (max-width: 768px) {
	.hwVAeY .filter-range-date__content .mobile-divider {
		display: block;
	}
}

/*!sc*/
.hwVAeY .filter-range-date__icon {
	width: 24px;
	height: 24px;
	min-width: 24px;
	min-height: 24px;
	margin: 0;
	position: static;
	top: unset;
	left: unset;
	right: unset;
	bottom: unset;
}

/*!sc*/
.hwVAeY:not(.is-home-page) {
	-webkit-flex: 2;
	-ms-flex: 2;
	flex: 2;
}

/*!sc*/
@media (max-width: 768px) {
	.hwVAeY:not(.is-home-page) {
		-webkit-flex: none;
		-ms-flex: none;
		flex: none;
	}
}

/*!sc*/
.hwVAeY:not(.is-home-page) .filter-range-date__content {
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

/*!sc*/
.hwVAeY:not(.is-home-page) .filter-range-date__content-item {
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	height: 76px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/*!sc*/
@media (max-width: 768px) {
	.hwVAeY:not(.is-home-page) .filter-range-date__content-item {
		height: auto;
		-webkit-flex: none;
		-ms-flex: none;
		flex: none;
	}

	.hwVAeY:not(.is-home-page) .filter-range-date__content-item:first-child {
		padding: 2px 0px 6px 10px;
	}

	.hwVAeY:not(.is-home-page) .filter-range-date__content-item:last-child {
		padding: 2px 15px 6px 3px;
	}
}

/*!sc*/
.hwVAeY .filter-range-date-trigger__container {
	min-width: 130px;
}

/*!sc*/
@media (max-width: 768px) {
	.hwVAeY .filter-range-date-trigger__container {
		min-width: auto;
	}
}

/*!sc*/
.hwVAeY .filter-range-date-trigger__label {
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 16px;
	margin-bottom: 5px;
	color: #6c757d;
	padding-left: 6px;
}

/*!sc*/
@media (max-width: 768px) {
	.hwVAeY .filter-range-date-trigger__label {
		display: none;
	}
}

/*!sc*/
.hwVAeY .filter-range-date-trigger__date-text {
	overflow: hidden;
	color: #0a0a0a;
	text-overflow: ellipsis;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 18px;
	cursor: pointer;
}

/*!sc*/
@media (max-width: 768px) {
	.hwVAeY .filter-range-date-trigger__date-text {
		font-size: 12px;
		color: #6d6e70;
	}
}

/*!sc*/
.hwVAeY.find-room {
	padding: 0;
}

/*!sc*/
data-styled.g246[id="sc-bvFjSx"] {
	content: "hwVAeY,";
}

/*!sc*/
.bQzTOk .filter-range-date-popper__content .MuiPickersLayout-root {
	padding: 0;
	border-radius: 8px;
}

/*!sc*/
.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-root> :first-child {
	display: none;
}

/*!sc*/
.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer:not(:last-of-type) {
	border-right: none;
}

/*!sc*/
.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiTypography-subtitle1 {
	font-family: "Be Vietnam Pro", sans-serif;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: 32px;
	color: #131313;
	text-transform: capitalize;
}

/*!sc*/
.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root.MuiDateRangePickerDay-rangeIntervalDayHighlight {
	background: #fff2ea;
}

/*!sc*/
.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root.MuiDateRangePickerDay-rangeIntervalDayHighlight.MuiDateRangePickerDay-outsideCurrentMonth {
	background: transparent;
}

/*!sc*/
.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root .Mui-selected {
	background: #ff7526;
	color: #fff;
}

/*!sc*/
.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root .Mui-selected:focus {
	outline: none !important;
}

/*!sc*/
.bQzTOk .filter-range-date-popper__toolbar {
	grid-row: 1;
	grid-column: 1/3;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr auto;
	grid-column-gap: 16px;
	grid-row-gap: 16px;
}

/*!sc*/
.bQzTOk .filter-range-date-popper__toolbar__date-item {
	display: grid;
	grid-row: 1;
	grid-template-columns: auto 1fr;
	grid-template-rows: 1fr auto;
	border: 1px solid #ececec;
	border-radius: 8px;
	padding: 6px 24px 6px 12px;
	min-width: 212px;
}

/*!sc*/
.bQzTOk .filter-range-date-popper__toolbar__date-item:first-child {
	grid-column: 1;
}

/*!sc*/
.bQzTOk .filter-range-date-popper__toolbar__date-item:last-child {
	grid-column: 2;
}

/*!sc*/
.bQzTOk .filter-range-date-popper__toolbar__date-item.is-active {
	border-color: #ff7526;
}

/*!sc*/
.bQzTOk .filter-range-date-popper__toolbar__date-item__icon {
	grid-row: 1/3;
	grid-column: 1;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-inline-end: 12px;
}

/*!sc*/
.bQzTOk .filter-range-date-popper__toolbar__date-item__label {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	color: #000000;
	-webkit-letter-spacing: 0.08px;
	-moz-letter-spacing: 0.08px;
	-ms-letter-spacing: 0.08px;
	letter-spacing: 0.08px;
	grid-row: 1;
	grid-column: 2/3;
}

/*!sc*/
.bQzTOk .filter-range-date-popper__toolbar__date-item__date {
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	color: #ff7526;
	grid-row: 2;
	grid-column: 2/3;
}

/*!sc*/
.bQzTOk .filter-range-date-popper__toolbar__counter {
	height: 32px;
	padding: 10px 16px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 12px;
	background: #f6f6f6;
	grid-row: 2;
	grid-column: 1/3;
}

/*!sc*/
@media (max-width: 575px) {
	.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-root {
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.bQzTOk .filter-range-date-popper__content .MuiPickersLayout-contentWrapper {
		grid-row: 2;
		grid-column: 1/4;
	}

	.bQzTOk .filter-range-date-popper__content .MuiDayCalendar-root .MuiDayCalendar-header,
	.bQzTOk .filter-range-date-popper__content .MuiDayCalendar-root .MuiDayCalendar-weekContainer {
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer:not(:last-of-type) {
		border-right: none;
	}

	.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiTypography-subtitle1 {
		font-family: "Be Vietnam Pro", sans-serif;
		font-size: 24px;
		font-style: normal;
		font-weight: 500;
		line-height: 32px;
		color: #131313;
	}

	.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root.MuiDateRangePickerDay-rangeIntervalDayHighlight {
		background: #fff2ea;
		position: relative;
	}

	.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root.MuiDateRangePickerDay-rangeIntervalDayHighlight.MuiDateRangePickerDay-startOfMonth::before {
		display: none;
	}

	.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root.MuiDateRangePickerDay-rangeIntervalDayHighlight.MuiDateRangePickerDay-endOfMonth::after {
		display: none;
	}

	.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root.MuiDateRangePickerDay-rangeIntervalDayHighlight.MuiDateRangePickerDay-outsideCurrentMonth {
		background: transparent;
	}

	.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root.MuiDateRangePickerDay-rangeIntervalDayHighlight.MuiDateRangePickerDay-outsideCurrentMonth::before,
	.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root.MuiDateRangePickerDay-rangeIntervalDayHighlight.MuiDateRangePickerDay-outsideCurrentMonth::after {
		display: none;
	}

	.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root.MuiDateRangePickerDay-rangeIntervalDayHighlight.MuiDateRangePickerDay-rangeIntervalDayHighlightStart::before {
		display: none;
	}

	.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root.MuiDateRangePickerDay-rangeIntervalDayHighlight.MuiDateRangePickerDay-rangeIntervalDayHighlightEnd::after {
		display: none;
	}

	.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root.MuiDateRangePickerDay-rangeIntervalDayHighlight::before {
		content: "";
		position: absolute;
		top: 0;
		left: -50%;
		height: 100%;
		width: 50%;
		background-color: #fff2ea;
	}

	.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root.MuiDateRangePickerDay-rangeIntervalDayHighlight::after {
		content: "";
		position: absolute;
		top: 0;
		right: -50%;
		height: 100%;
		width: 50%;
		background-color: #fff2ea;
	}

	.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root .Mui-selected {
		background: #ff7526;
		color: #fff;
	}

	.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root .Mui-selected:focus {
		outline: none !important;
	}

	.bQzTOk .filter-range-date-popper__toolbar {
		grid-row: 1;
		grid-column: 1/4;
		grid-column-gap: 8px;
	}

	.bQzTOk .filter-range-date-popper__toolbar__date-item__label {
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 20px;
		-webkit-letter-spacing: 0.035px;
		-moz-letter-spacing: 0.035px;
		-ms-letter-spacing: 0.035px;
		letter-spacing: 0.035px;
	}

	.bQzTOk .filter-range-date-popper__toolbar__date-item__date {
		font-size: 16px;
		font-style: normal;
		font-weight: 500;
		line-height: 24px;
		color: #ff7526;
	}

	.bQzTOk .filter-range-date-popper__toolbar__counter {
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 20px;
		-webkit-letter-spacing: 0.035px;
		-moz-letter-spacing: 0.035px;
		-ms-letter-spacing: 0.035px;
		letter-spacing: 0.035px;
	}
}

/*!sc*/
@media (max-width: 486px) {
	.bQzTOk .filter-range-date-popper__toolbar {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 1fr 1fr;
		max-width: calc(100vw - 32px);
	}

	.bQzTOk .filter-range-date-popper__toolbar__date-item:first-child {
		grid-row: 1/2;
		grid-column: 1/3;
	}

	.bQzTOk .filter-range-date-popper__toolbar__date-item:nth-child(2) {
		grid-row: 2/3;
		grid-column: 1/3;
	}

	.bQzTOk .filter-range-date-popper__toolbar__counter {
		grid-row: 3/4;
		grid-column: 1/3;
	}

	.bQzTOk .filter-range-date-popper__content .MuiPickersLayout-contentWrapper,
	.bQzTOk .filter-range-date-popper__content .MuiPickersSlideTransition-root,
	.bQzTOk .filter-range-date-popper__content .MuiDayCalendar-weekContainer {
		max-width: calc(100vw - 32px);
	}

	.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root.MuiDateRangePickerDay-rangeIntervalDayHighlight::before {
		left: -35%;
		width: 35%;
	}

	.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root.MuiDateRangePickerDay-rangeIntervalDayHighlight::after {
		right: -35%;
		width: 35%;
	}

	@media (max-width: 412px) {
		.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root.MuiDateRangePickerDay-rangeIntervalDayHighlight::before {
			left: -15%;
			width: 15%;
		}

		.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root.MuiDateRangePickerDay-rangeIntervalDayHighlight::after {
			right: -15%;
			width: 15%;
		}
	}

	@media (max-width: 380px) {
		.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root.MuiDateRangePickerDay-rangeIntervalDayHighlight::before {
			left: -10%;
			width: 10%;
		}

		.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root.MuiDateRangePickerDay-rangeIntervalDayHighlight::after {
			right: -10%;
			width: 10%;
		}
	}

	@media (max-width: 340px) {
		.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root.MuiDateRangePickerDay-rangeIntervalDayHighlight::before {
			left: -10%;
			width: 10%;
		}

		.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root.MuiDateRangePickerDay-rangeIntervalDayHighlight::after {
			right: -10%;
			width: 10%;
		}
	}

	@media (max-width: 320px) {
		.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root.MuiDateRangePickerDay-rangeIntervalDayHighlight::before {
			display: none;
		}

		.bQzTOk .filter-range-date-popper__content .MuiDateRangeCalendar-monthContainer .MuiDateRangePickerDay-root.MuiDateRangePickerDay-rangeIntervalDayHighlight::after {
			display: none;
		}
	}
}

/*!sc*/
data-styled.g247[id="sc-ekrjqK"] {
	content: "bQzTOk,";
}

/*!sc*/
.buqzBj {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	z-index: 1007;
	position: relative;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	min-width: 150px;
	padding: 10px 24px;
	border-radius: 999px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

/*!sc*/
.buqzBj:not(.is-home-page) {
	height: 76px;
}

/*!sc*/
@media (max-width: 768px) {
	.buqzBj {
		min-width: auto;
		padding: 2px 0px 6px 15px;
	}

	.buqzBj:not(.is-home-page) {
		padding-left: 10px;
		height: auto;
	}
}

/*!sc*/
@media (max-width: 350px) {
	.buqzBj {
		padding-left: 7px;
	}
}

/*!sc*/
.buqzBj:hover {
	background-color: #fafafa;
}

/*!sc*/
.buqzBj.is-opening-popup {
	z-index: 1500;
}

/*!sc*/
.buqzBj.is-opening-occupancy {
	z-index: 1600;
	background-color: #fff;
	box-shadow: 0px 1px 8px 2px rgba(27, 27, 27, 0.05);
}

/*!sc*/
.buqzBj .filter-occupancy-box__desc-wrapper .title {
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 16px;
	margin-bottom: 5px;
	color: #6c757d;
	padding-left: 5px;
}

/*!sc*/
@media (max-width: 768px) {
	.buqzBj .filter-occupancy-box__desc-wrapper .title {
		display: none;
	}
}

/*!sc*/
.buqzBj .filter-occupancy-box__desc-wrapper .sub-title {
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 18px;
	color: #c9cbcc;
}

/*!sc*/
.buqzBj .filter-occupancy-box__desc-wrapper .detail {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/*!sc*/
.buqzBj .filter-occupancy-box__desc-wrapper .detail .dot {
	border-radius: 100%;
	width: 6px;
	height: 6px;
	border-top: 6px solid var(--color-gray-06);
	margin-inline: 10px;
}

/*!sc*/
.buqzBj .filter-occupancy-box__desc-wrapper .detail .count {
	color: var(--primary-color);
}

/*!sc*/
.buqzBj .filter-occupancy-box__desc-wrapper .detail .count .visible-on-mobile {
	display: none;
}

/*!sc*/
@media (max-width: 768px) {
	.buqzBj .filter-occupancy-box__desc-wrapper .detail .count {
		color: #6d6e70;
		font-size: 12px;
	}

	.buqzBj .filter-occupancy-box__desc-wrapper .detail .count .visible-on-mobile {
		display: inline-block;
	}
}

/*!sc*/
.buqzBj .filter-occupancy-box__desc-wrapper .detail .count-label {
	color: var(--color-gray-06);
}

/*!sc*/
.buqzBj .filter-occupancy-box__popover {
	margin: 0;
}

/*!sc*/
.buqzBj .filter-occupancy-box__popover.responsive-popover .MuiPopover-paper {
	border-radius: 8px;
	width: 350px;
	max-width: 350px;
}

/*!sc*/
.buqzBj.find-room {
	padding: 0;
}

/*!sc*/
data-styled.g256[id="sc-hoHwyw"] {
	content: "buqzBj,";
}

/*!sc*/
.ehxPr {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding: 16px 24px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 8px;
	color: var(--primary-white);
	background-color: var(--primary-light-orange);
	-webkit-transition: opacity 0.3s linear;
	transition: opacity 0.3s linear;
	font-size: 16px;
	line-height: 24px;
	font-style: normal;
	font-weight: 500;
	box-sizing: content-box;
	height: 24px;
	z-index: 1007;
}

/*!sc*/
.ehxPr.is-open-selection {
	z-index: 1500;
}

/*!sc*/
.ehxPr.is-circle {
	padding: 10px 32px;
	border-radius: 60px;
	border: none;
}

/*!sc*/
@media (max-width: 992px) {
	.ehxPr.is-circle {
		padding: 0;
		border-radius: 50%;
		height: 40px;
		width: 40px;
	}
}

/*!sc*/
.ehxPr:hover {
	box-shadow: 4px 8px 24px 0px var(--primary-orange-hover);
	background-color: var(--primary-light-orange);
}

/*!sc*/
data-styled.g257[id="sc-leSONj"] {
	content: "ehxPr,";
}

/*!sc*/
.bPklzq {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	min-width: 200px;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	z-index: 1007;
	position: relative;
	padding: 10px 24px;
	padding-left: 30px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	border-radius: 999px;
	cursor: pointer;
}

/*!sc*/
.bPklzq:hover {
	background-color: #fafafa;
}

/*!sc*/
.bPklzq.is-opening-popup {
	z-index: 1500;
}

/*!sc*/
.bPklzq:not(.is-home-page) {
	padding-left: 10px;
}

/*!sc*/
@media screen and (min-width: 768px) {
	.bPklzq:not(.is-home-page) {
		height: 76px;
	}
}

/*!sc*/
.bPklzq.is-opening-location {
	z-index: 1600;
	background-color: #fff;
	box-shadow: 0px 1px 8px 2px rgba(27, 27, 27, 0.05);
}

/*!sc*/
.bPklzq.is-opening-location .filter-customer-box__title-wrapper {
	border-color: var(--primary-orange);
}

/*!sc*/
.bPklzq.is-opening-location .filter-customer-box__desc-wrapper .detail .count {
	color: var(--color-gray-06);
}

/*!sc*/
.bPklzq.filter-customer-box--no-border .filter-customer-box__title-wrapper {
	border: none;
	padding-inline: 0;
}

/*!sc*/
.bPklzq .filter-customer-box__title-wrapper {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	cursor: pointer;
}

/*!sc*/
.bPklzq .filter-customer-box__title-wrapper img {
	width: 24px;
	height: 24px;
}

/*!sc*/
.bPklzq .filter-customer-box__title-wrapper:hover .filter-customer-box__desc-wrapper .detail .count {
	color: var(--color-gray-06);
}

/*!sc*/
.bPklzq .filter-customer-box__desc-wrapper .title {
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 16px;
	margin-bottom: 5px;
	color: #6c757d;
	padding-left: 5px;
}

/*!sc*/
.bPklzq .filter-customer-box__desc-wrapper .sub-title {
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 18px;
	color: #d4d4d4;
}

/*!sc*/
.bPklzq .filter-customer-box__desc-wrapper .detail {
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 24px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/*!sc*/
.bPklzq .filter-customer-box__desc-wrapper .detail .dot {
	border-radius: 100%;
	width: 6px;
	height: 6px;
	border-top: 6px solid var(--color-gray-06);
	margin-inline: 10px;
}

/*!sc*/
.bPklzq .filter-customer-box__desc-wrapper .detail .count {
	color: var(--primary-orange);
}

/*!sc*/
.bPklzq .filter-customer-box__desc-wrapper .detail .count-label {
	color: var(--color-gray-06);
}

/*!sc*/
.bPklzq .city-selected {
	font-size: 14px;
	line-height: 1.5;
	font-weight: 400;
	color: var(--primary-color);
}

/*!sc*/
@media (max-width: 768px) {
	.bPklzq {
		min-width: 100%;
	}

	.bPklzq.is-home-page {
		padding: 10px 10px 0 20px;
	}

	.bPklzq:not(.is-home-page) {
		padding: 10px 10px 5px 10px;
	}

	.bPklzq .title {
		display: none;
	}

	.bPklzq .sub-title {
		color: #a3a3a3 !important;
	}
}

/*!sc*/
.bPklzq.find-room {
	padding: 0;
}

/*!sc*/
data-styled.g258[id="sc-hmvnCu"] {
	content: "bPklzq,";
}

/*!sc*/
.dmyNaS {
	background-color: var(--bg-color-light-white);
	z-index: 1020;
}

/*!sc*/
.dmyNaS .find-room-container {
	z-index: 2024;
}

/*!sc*/
.dmyNaS:hover .div-line rect {
	fill: white;
}

/*!sc*/
@media (max-width: 768px) {
	.dmyNaS {
		box-shadow: 0px 10px 18px -2px rgba(16, 25, 40, 0.07) !important;
	}

	.dmyNaS .div-line:not(.visible-mobile) {
		display: none;
	}

	.dmyNaS .div-line.visible-mobile {
		height: 18px;
		margin-bottom: 6px;
	}
}

/*!sc*/
.dmyNaS.is-home-page-container {
	border-radius: 999px;
	border: 2px solid #f5f5f5;
}

/*!sc*/
.dmyNaS:not(.is-home-page-container) .filter-header-content-inner {
	padding-left: 10px;
}

/*!sc*/
.dmyNaS.shadow-container {
	box-shadow: 0px 6px 16px 0px rgba(16, 25, 40, 0.08),
		0px 0px 0px 1px rgba(16, 25, 40, 0.05);
}

/*!sc*/
.dmyNaS .MuiDivider-root {
	-webkit-align-self: center !important;
	-ms-flex-item-align: center !important;
	align-self: center !important;
	height: 38px;
}

/*!sc*/
data-styled.g274[id="sc-jefHZX"] {
	content: "dmyNaS,";
}

/*!sc*/
.dSuDWk {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin-inline: auto;
	position: relative;
}

/*!sc*/
data-styled.g275[id="sc-cqJhZP"] {
	content: "dSuDWk,";
}

/*!sc*/
.horZKy {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 85%;
	min-width: 80%;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-right: 10px;
}

/*!sc*/
data-styled.g276[id="sc-jNHqnW"] {
	content: "horZKy,";
}

/*!sc*/
.bkiIxI {
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/*!sc*/
@media (max-width: 768px) {
	.bkiIxI {
		gap: 0px;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

/*!sc*/
data-styled.g278[id="sc-aaqME"] {
	content: "bkiIxI,";
}

/*!sc*/
.kqsdgl .filter-range-date__content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

/*!sc*/
@media (max-width: 768px) {
	.kqsdgl .filter-range-date__content {
		gap: 0px;
	}
}

/*!sc*/
data-styled.g280[id="sc-eZhRLC"] {
	content: "kqsdgl,";
}

/*!sc*/
@media (max-width: 575px) {
	.jlPWpC {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		width: 100%;
		height: 48px;
		border-radius: 66px;
		box-sizing: border-box;
		padding-top: 12px;
		padding-bottom: 12px;
	}
}

/*!sc*/
@media (max-width: 350px) {
	.jlPWpC {
		margin-left: 0px !important;
	}
}

/*!sc*/
data-styled.g283[id="sc-dMOJrz"] {
	content: "jlPWpC,";
}

/*!sc*/
.kDRYRU .MuiSlider-root {
	color: #ff7526;
}

/*!sc*/
.kDRYRU .MuiSlider-root .MuiSlider-thumb:hover {
	box-shadow: 0 0 0 10px rgba(255, 117, 38, 0.16);
}

/*!sc*/
.kDRYRU .MuiSlider-root .MuiSlider-thumb.Mui-focusVisible {
	box-shadow: 0 0 0 10px rgba(255, 117, 38, 0.16);
}

/*!sc*/
data-styled.g293[id="sc-iJCbQK"] {
	content: "kDRYRU,";
}

/*!sc*/
.jleXra {
	overflow: hidden;
	position: relative;
	border-radius: 8px;
	border: 1px solid var(--borders-default, #e5e7eb);
}

/*!sc*/
.jleXra .map-img {
	max-width: 288px;
	width: 100%;
	height: 200px;
}

/*!sc*/
.jleXra .map-img span,
.jleXra .map-img img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

/*!sc*/
.jleXra .btn-container {
	position: absolute;
	inset: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/*!sc*/
.jleXra .btn-content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 4px;
	padding: 6px 12px;
	border-radius: 999px;
	background: #ffe9d4;
	box-shadow: 0px 2px 2px 0px #0000000f;
	box-shadow: 0px 4px 3px 0px #00000012;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	-webkit-letter-spacing: 0.005em;
	-moz-letter-spacing: 0.005em;
	-ms-letter-spacing: 0.005em;
	letter-spacing: 0.005em;
	text-align: center;
	color: #952e17;
}

/*!sc*/
.jleXra .btn-content:hover:not(.disabled),
.jleXra .btn-content:focus:not(.disabled) {
	background: #ffd0a8;
	color: #952e17;
	box-shadow: 0px 25px 25px 0px #00000026;
	border-color: transparent;
}

/*!sc*/
.jleXra .btn-content.disabled {
	opacity: 0.8;
	cursor: not-allowed;
}

/*!sc*/
data-styled.g295[id="sc-hKumaY"] {
	content: "jleXra,";
}

/*!sc*/
.ijPUgD {
	padding: 6px 16px;
	border-radius: 60px;
	box-shadow: 0px 4px 3px 0px #00000012;
	background-color: #ffe9d4;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	color: #952e17;
}

/*!sc*/
.ijPUgD:not(.disabled):hover {
	color: var(--primary-orange);
	background: white;
}

/*!sc*/
data-styled.g298[id="sc-bjztik"] {
	content: "ijPUgD,";
}

/*!sc*/
.title {
	font-size: 18px;
	font-weight: bold;
	/* margin-bottom: 4px; */
}

.sub-title {
	font-size: 14px;
	color: #666;
	height: auto;
	min-height: 20px;
	/* margin-bottom: 8px; */
	white-space: nowrap;
	overflow: hidden;
	/* border-right: 2px solid #666; */
	display: inline-block;
	max-width: 100%;
}

.location-input {
	padding: 6px 10px;
	font-size: 14px;
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 4px;
}

/* sort filter */
/* Optional: Fine-tune styling if needed */
.dropdown .form-label {
	color: #000;
	/* Match text color if needed */
}

.dropdown .btn-light {
	text-align: left;
	padding-left: 10px;
	/* Consistent with original padding */
}

.dropdown-menu {
	min-width: 100%;
	/* Ensure dropdown matches button width */
}

/* Ẩn radio gốc */
input[type="radio"] {
	display: none;
}

/* Layout dòng radio */
.radio-option {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	cursor: pointer;
}

/* Tạo nút tròn trước label */
.radio-option::before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid #ccc;
	margin-right: 10px;
	background-color: white;
	box-sizing: border-box;
	transition: 0.2s;
}

/* Khi radio được chọn thì đổi màu nút */
input[type="radio"]:checked+label.radio-option::before {
	background-color: white;
	border-color: white;
}

/* Facility List */
.facility-list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 12px;
}

.facility-column {
	flex: 1 1 50%;
	padding: 0 8px;
	box-sizing: border-box;
}

.facility-item {
	font-size: 14px;
	color: #666;
}

/* Custom navbar BS5 in header */
.custom-navbar .nav .nav-item .nav-link {
	color: var(--nav-item-color);
	font-weight: 500;
}

.custom-navbar .offcanvas-body .nav-item .nav-link {
	color: white;
	font-size: 1.6rem;
	font-weight: 600;
}

.custom-navbar .offcanvas-body .nav-item .nav-link:hover {
	color: var(--theme-text-hovercolor);
}

/*End Custom navbar BS5 in header */

/* Custom Breadcrumb BS5 */
.custom-breadcrumb .breadcrumb-item a {
	color: var(--disabled-color);
	font-weight: 500;
	font-size: 14px;
}

.custom-breadcrumb .breadcrumb-item a:hover {
	color: var(--nav-item-color);
}

.custom-breadcrumb .breadcrumb-item.active {
	font-weight: 500;
	color: var(--nav-item-color);
	font-size: 14px;
	line-height: 26px;
}

/*End Custom Breadcrumb BS5*/

/* Custom Navtab Scroll BS5*/
.custom-navtab {
	position: sticky;
	top: 56px;
	z-index: 999;
}

.custom-navtab::-webkit-scrollbar {
	display: none;
}

.custom-navtab .nav-item .nav-link {
	font-size: 20px;
	color: var(--disabled-color);
	text-align: center;
	padding: 16px 0;
}

.custom-navtab .nav-item {
	min-width: 125px;
}

.custom-navtab .nav-item .nav-link.active {
	font-weight: 500;
	background-color: rgba(0, 0, 0, 0);
	color: var(--nav-item-color);
	border-bottom: solid 4px var(--theme-text-hovercolor);
	border-radius: 0;
}

/*End Custom Navtab Scroll BS5*/
/* từnay */
/* Custom carousel BS5 */
.custom-carousel .carousel-control-prev,
.custom-carousel .carousel-control-next {
	display: none;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
	display: flex;
}

.custom-carousel .carousel-inner .carousel-item img {
	max-height: 500px;
	object-fit: cover;
}

.custom-carousel .custom-carousel-indicators {
	align-items: center;
}

.custom-carousel .custom-carousel-indicators button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin: 0 5px;
	border: 0;
	background-color: #ffffff;
	opacity: 1;
}

.custom-carousel .custom-carousel-indicators button.active {
	background-color: #ed1c24c7;
	border: 4px solid var(--theme-text-);
	margin: 0 1px;
}

.custom-carousel-preview-image {
	padding: 32px 0;
}

.custom-carousel-preview-image .custom-carousel-indicators-preview-image {
	position: static;
	touch-action: auto;
	scroll-behavior: smooth;
	white-space: nowrap;
	overflow-x: auto;
	justify-content: start;
	padding: 16px 0;
	max-width: 624px;
	margin: 32px auto;
}

.custom-carousel-preview-image .custom-carousel-indicators-preview-image::-webkit-scrollbar {
	display: none;
}

.custom-carousel-preview-image .custom-carousel-indicators-preview-image button {
	min-width: 150px;
	height: 82px;
	background-position: center center;
	background-size: cover;
	border: none;
	border-radius: 6px;
}

.custom-carousel-preview-image .custom-carousel-indicators-preview-image button:first-child {
	margin-left: 0;
}

.custom-carousel-preview-image .custom-carousel-indicators-preview-image button:last-child {
	margin-right: 0;
}

.custom-carousel-preview-image .custom-carousel-indicators-preview-image button.active {
	box-sizing: border-box;
	border: 2px solid var(--theme-text-hovercolor);
}

/* đến đây  */
/* End Custom carousel BS5 */
/* Custom css Element */

.product-card {
	cursor: pointer;
}

.text-price {
	color: var(--theme-text-hovercolor);
	font-size: 1.25rem;
	font-weight: 600;
}

.btn-booking {
	background-color: var(--theme-text-hovercolor);
	color: white;
	border-radius: 60px;
	padding: 8px 16px;
	width: 130px;
	font-size: 14px;
}

.btn-booking:hover {
	background-color: var(--theme-text-hovercolor);
}

#PreviewProductModal.show .ctn-booking {
	position: sticky;
	bottom: -0;
}

/*End Custom css Element  */

/* Ẩn nút mặc định */
.custom-carousel .carousel-control-prev,
.custom-carousel .carousel-control-next {
	display: none;
	background-color: transparent !important;
	/* nền trong suốt */
	border: none;
}

/* Khi hover vào carousel thì hiện nút điều hướng */
.custom-carousel:hover .carousel-control-prev,
.custom-carousel:hover .carousel-control-next {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
}

/* Tùy chỉnh mũi tên bên trong (icon) */
.carousel-control-prev-icon,
.carousel-control-next-icon {
	background-size: 100% 100%;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	filter: invert(1);
	/* mũi tên trắng nếu ảnh đen */
}

.carousel-control-prev,
.carousel-control-next {
	background-color: transparent;
	border: none;
	outline: none;
	box-shadow: none;
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-prev:active,
.carousel-control-next:hover,
.carousel-control-next:focus,
.carousel-control-next:active {
	background-color: transparent;
	border: none;
	outline: none;
	box-shadow: none;
}

.carousel-indicators .active {
	/* //opacity: 1 !important; */
	background-color: #ed1c24c7 !important;
}

.carousel-indicators li {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #ed1c24c7 !important;
	opacity: 0.5;
}

.btnCarousel {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin: 0 5px;
	border: 0;
	/* background-color: #ffffff; */
	background-color: hsl(199, 48%, 89%);
	opacity: 1;
}

.contact-section {
	position: relative;
	background: url("../image/banner_img/brand1.jpg") center center/cover no-repeat;
	min-height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: none;
	margin: 48px 0 0 0;
	overflow: hidden;
}

.contact-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 20, 40, 0.7);
	z-index: 1;
}

.contact-content {
	position: relative;
	z-index: 2;
	text-align: center;
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	padding: 48px 16px 56px 16px;
}

.contact-title {
	color: #ff3023;
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 16px;
	line-height: 1.1;
}

.contact-desc {
	color: #fff;
	font-size: 1.25rem;
	margin-bottom: 32px;
}

.contact-btn {
	background: #ed1c24c7;
	color: white;
	font-size: 1.15rem;
	font-weight: 600;
	border: none;
	border-radius: 8px;
	padding: 14px 36px;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: background 0.2s, color 0.2s;
}

.contact-btn:hover {
	background: #c32a20;
	color: #fff;
}

/* .visible-desktop {
	max-width: 100% !important;
	width: 100%;
} */
.main-header-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: white;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Thêm padding-top cho phần nội dung chính để tránh bị che bởi navbar cố định */
.findroom-page {
	padding-top: 80px;
	/* Điều chỉnh giá trị này dựa trên chiều cao thực tế của navbar */
}

.img-banner {
	position: relative;
}

.banner-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	/* màu đen mờ 40% */
	z-index: 1;
}

.img-banner img {
	width: 100%;
	height: auto;
	object-fit: cover;
	position: relative;
	z-index: 0;
}

.content-banner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.location-dropdown {
	width: 100%;
	padding: 3px;
	max-width: 200px;
	margin: 0 auto;
	border-radius: 8px;
	font-size: 14px;
	border: none;
}

.dropdown-container {
	padding: 0;
	margin: 0;
}

/* Adjust SVG icon size */
.filter-header__apply-button svg {
	width: 16px;
	height: 16px;
}

.sc-iRFsWr.bUSPeg {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

input[type="range"] {
	-webkit-appearance: none;
	width: 100%;
	height: 8px;
	background: transparent;
}

input[type="range"]::-webkit-slider-runnable-track {
	height: 8px;
	background: #ed1c24c7;
	border-radius: 4px;
}

input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 16px;
	height: 16px;
	background: #ed1c24;
	border-radius: 50%;
	border: 2px solid white;
	margin-top: -4px;
	cursor: pointer;
}

/* Firefox */
input[type="range"]::-moz-range-track {
	height: 8px;
	background: #ed1c24c7;
	border-radius: 4px;
}

input[type="range"]::-moz-range-thumb {
	width: 16px;
	height: 16px;
	background: #ed1c24;
	border: 2px solid white;
	border-radius: 50%;
	cursor: pointer;
}

.tag {
	padding: 6px 12px;
	background-color: #f4f4f4;
	border-radius: 16px;
	font-size: 14px;
	display: inline-block;
	color: #333;
}

.tag {
	padding: 4px 10px;
	background-color: #f4f4f4;
	border-radius: 12px;
	font-size: 13px;
	display: inline-block;
	color: #333;
	white-space: nowrap;
}

.popular-keywords,
.subscribe-box {
	max-width: 100%;
	width: 280px;
}

.popular-keywords {
	border: 1px solid #e5e6e8;
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 16px;
	margin-top: 16px;
	width: 400px;
}

.popular-keywords h3 {
	font-weight: 600;
	margin-bottom: 12px;
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tag {
	background-color: #f0f0f0;
	padding: 6px 10px;
	border-radius: 4px;
	font-size: 14px;
}

.subscribe-box {
	border: 1px solid #e5e6e8;
	border-radius: 8px;
	padding: 16px;
	background-color: #f3f6fd;
	width: 400px;
}

.subscribe-box h3 {
	color: #ed1c24c7;
	font-weight: 600;
	margin-bottom: 8px;
}

.subscribe-box p {
	margin-bottom: 12px;
	font-size: 14px;
}

.subscribe-box input[type="email"] {
	width: 100%;
	padding: 8px 12px;
	margin-bottom: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.subscribe-box button {
	background-color: #ed1c24c7;
	color: white;
	padding: 10px 16px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	width: 100%;
}

.form-row {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
}

.form-group {
	flex: 1;
	margin-bottom: 0;
}

.form label {
	display: block;
	font-size: 14px;
	color: #444;
	margin-bottom: 5px;
	font-weight: 500;
}

.form input,
.form textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	box-sizing: border-box;
	background: #f9f9f9;
	transition: border-color 0.3s;
}

.form input:focus,
.form textarea:focus {
	border-color: #1a73e8;
	outline: none;
}

.form textarea {
	height: 100px;
	resize: vertical;
}

.form button {
	background: #ed1c24c7;
	color: white;
	padding: 12px;
	border: none;
	border-radius: 4px;
	width: 100%;
	font-size: 16px;
	cursor: pointer;
	transition: opacity 0.3s;
	position: relative;
	margin-top: 10px;
	border-radius: 15px;
}

.form button:hover {
	opacity: 0.9;
}

.map-contact {
	margin-top: 15px;
}

.map-contact h3 {
	margin: 0 0 5px;
	font-size: 18px;
	background: #ed1c24c7;
	color: white;
	padding: 12px 15px;
	text-align: center;
	position: relative;
	font-weight: 600;
	text-transform: uppercase;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.map-contact h3 i {
	font-size: 18px;
}

.map-contact #map-contact {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.map-contact iframe {
	width: 100%;
	height: 300px;
	border: 0;
	display: block;
}

.social {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.social a {
	text-decoration: none;
	padding: 10px 15px;
	color: white;
	border-radius: 5px;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: opacity 0.3s;
}

.social a i {
	margin-right: 8px;
	/* Space between icon and text */
	font-size: 18px;
	/* Adjust icon size */
}

.social .facebook {
	background: #3b5998;
}

.social .youtube {
	background: #ff0000;
}

.social .zalo {
	background: #0084ff;
}

.social a:hover {
	opacity: 0.9;
}

/* modal */
.modal-content {
	background-color: white;
	padding: 5px;
	border-radius: 30px;
	width: 565px;
	max-width: fit-content;
}

.modal-header {
	display: grid;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.modal-content img {
	margin-left: auto;
	margin-right: auto;
	max-width: 50%;
	height: auto;
}

.modal-body {
	position: relative;
	flex: 1 1 auto;
	padding: 1rem;
}

.modal-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	padding: 0.75rem;
	border-top: 1px solid #dee2e6;
	border-bottom-right-radius: calc(0.3rem - 1px);
	border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
}

.input-group {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	width: 100%;
}

.form-row>.col,
.form-row>[class*="col-"] {
	padding-right: 5px;
	padding-left: 5px;
}

.col-3 {
	flex: 0 0 25%;
	max-width: 25%;
}

.input-group>.custom-file,
.input-group>.custom-select,
.input-group>.form-control,
.input-group>.form-control-plaintext {
	position: relative;
	flex: 1 1 auto;
	width: 1%;
	min-width: 0;
	margin-bottom: 0;
}

.form-control {
	margin: 0;
}

label {
	display: inline-block;
	margin-bottom: 0.5rem;
}

.form-group label {
	display: block;
	font-size: 14px;
	color: #333;
	margin-bottom: 5px;
}

.form-row {
	display: flex;
	gap: 10px;
}

.select-wrapper {
	flex: 0 0 25%;
	/* tương đương col-3 */
}

.input-wrapper {
	flex: 1;
	/* tương đương col-9 */
}

.custom-select,
.form-control {
	height: 50px;
	width: 100%;
	padding: 8px 12px;
	font-size: 16px;
}

.modal-button-register {
	background-color: #ed1c24c7;
	color: white;
	width: 100%;
	border-radius: 999px;
	height: 50px;
}

@-webkit-keyframes mui-auto-fill {
	from {
		display: block;
	}
}

@keyframes mui-auto-fill {
	from {
		display: block;
	}
}

@-webkit-keyframes mui-auto-fill-cancel {
	from {
		display: block;
	}
}

@keyframes mui-auto-fill-cancel {
	from {
		display: block;
	}
}

.form-row {
	display: flex;
	gap: 10px;
	/* Tùy chỉnh khoảng cách giữa 2 ô */
	margin-bottom: 15px;
}

.form-row .col-3,
.form-row .col-9 {
	flex: none;
}

.form-row .col-3 {
	width: 25%;
}

.form-row .col-9 {
	width: 75%;
}

.form-row select,
.form-row input {
	width: 100%;
	height: 50px;
	padding: 10px;
	box-sizing: border-box;
}

.modal-dialog {
	position: relative;
	margin: auto;
	top: 50%;
	transform: translateY(-50%);
	max-width: 500px;
}

/* Form Container Styling */
.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-size: 14px;
	color: #333;
	margin-bottom: 8px;
	font-weight: 500;
}

/* Form Row Layout */
.form-row {
	display: ruby;
	gap: 15px;
	align-items: center;
	margin-bottom: 10px;
}

.form-row .col-3,
.form-row .col-9 {
	flex: none;
}

.form-row .col-3 {
	width: 25%;
}

.form-row .col-9 {
	width: 75%;
}

/* Input and Select Styling */
.custom-select,
.form-control {
	height: 50px;
	padding: 10px 12px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 8px;
	box-sizing: border-box;
	width: 100%;
	transition: border-color 0.3s ease;
}

.custom-select:focus,
.form-control:focus {
	border-color: #ed1c24c7;
	/* Matches modal-button-register color */
	outline: none;
	box-shadow: 0 0 5px rgba(237, 28, 36, 0.3);
}

.custom-select {
	appearance: none;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 10px center;
	background-size: 12px;
	padding-right: 30px;
}

/* Input Group Styling */
.input-group {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.input-group-append {
	margin-left: -1px;
}

.input-group-text {
	display: flex;
	align-items: center;
	padding: 0 12px;
	border: 1px solid #ccc;
	border-left: none;
	border-radius: 0 8px 8px 0;
	background-color: #f8f9fa;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.input-group-text:hover {
	background-color: #e9ecef;
}

.input-group-text i {
	font-size: 18px;
	color: #666;
}

/* Checkbox Styling */
.form-check {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.form-check-input {
	width: 18px;
	height: 18px;
	margin-top: 0;
}

.form-check-label {
	font-size: 14px;
	color: #333;
}

/* Forget Password Link */
.forget-password {
	font-size: 14px;
	color: #ed1c24c7;
	/* Matches sign-up link color */
	cursor: pointer;
}

.forget-password:hover {
	text-decoration: none;
	color: #c7161e;
}

/* Invalid Feedback */
.invalid-feedback {
	display: none;
	font-size: 12px;
	color: #dc3545;
	margin-top: 5px;
}

.form-control:invalid+.invalid-feedback,
.form-control:invalid~.invalid-feedback {
	display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.form-row {
		flex-direction: column;
		gap: 10px;
	}

	.form-row .col-3,
	.form-row .col-9 {
		width: 100%;
	}

	.custom-select,
	.form-control {
		font-size: 14px;
	}
}

.input-group-text {
	display: flex;
	align-items: center;
	padding: 1rem 0.75rem;
	margin-bottom: 0;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	text-align: center;
	white-space: nowrap;
	background-color: #e9ecef;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
}

.form-check {
	display: flex;
	flex-direction: row;
	-webkit-box-pack: justify;
	justify-content: space-between;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

button,
input {
	overflow: visible;
}

button,
input,
optgroup,
select,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

.form-row-form {
	display: flex;
	gap: 15px;
	align-items: center;
	margin-bottom: 10px;
}

.body-2-medium,
.body-2-medium-black {
	font-family: Be Vietnam Pro;
	font-size: 11.5px;
	font-weight: 500;
	line-height: 18px;
}

.form-check-input-customer {
	position: absolute;
	margin-top: 0.2rem;
	margin-left: -1.25rem;
}

/* sidebar */
.sidebar {
	height: 100%;
	width: 0;
	position: fixed;
	top: 0;
	right: 0;
	background-color: white;
	overflow-x: hidden;
	transition: 0.3s;
	padding-top: 60px;
	z-index: 9999;
}

.sidebar-open {
	width: 270px;
}

dl,
ol,
ul {
	margin-top: 0;
}



.sidebar a {
	font-size: 19px;
	font-weight: 500;
	line-height: 1.5;
	color: black;
}

/* Sidebar styling */
.custom-list1 li a {
	font-size: 20px;
	/* Sets a smaller font size */
}

.custom-list1 li {
	margin-bottom: 15px;
	margin-left: 50px;
	/* Adds 30px gap between each list item */
}

.custom-list li {
	margin-bottom: 30px;
	margin-right: 44px;
	/* Adds 30px gap between each list item */
}

.custom-list li:last-child {
	margin-bottom: 0;
	/* Removes margin from the last item */
}

.custom-list li a:hover {
	color: #ff0000;
	/* Turns the text orange on hover */
}

.custom-list1 li a:hover {
	color: #ff0000;
	/* Turns the text orange on hover */
}

.close-btn {
	position: absolute;
	top: 15px;
	right: 25px;
	font-size: 36px;
	margin-left: 50px;
}

/* modal bảo trì */
.btn-upload {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background-color: #ed1c24c7;
	color: white;
	font-weight: 500;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	font-size: 15px;
}

/* Label và nút */
.btn-upload .upload-icon {
	color: white;
	font-size: 18px;
	display: inline-block;
}

.upload-label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: white;
}

/* Container preview scroll ngang */
#preview {
	margin-top: 12px;
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
	overflow-x: auto;
	padding-bottom: 10px;
	scrollbar-width: thin;
	scrollbar-color: #999 transparent;
}

#preview::-webkit-scrollbar {
	height: 8px;
}

#preview::-webkit-scrollbar-thumb {
	background-color: #999;
	border-radius: 4px;
}

/* Mỗi khối ảnh */
.preview-image {
	position: relative;
	width: 120px;
	height: 120px;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: 6px;
	display: inline-block;
	/* ✅ Fix chiều rộng bị dư */
}

/* Ảnh */
.preview-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 6px;
	border: 2px solid #eee;
	max-width: fit-content;
}

/* Nút X */
.preview-image .remove-btn {
	position: absolute;
	top: 4px;
	right: 4px;
	background: #ff3333;
	color: white;
	border: none;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	font-size: 14px;
	cursor: pointer;
	line-height: 18px;
	text-align: center;
	padding: 0;
}

/* 4/8/2025 */

.language-dropdown {
	position: relative;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}

.language-dropdown > a {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.language-dropdown > a svg {
	width: 20px;
	height: 20px;
	margin-right: 6px;
	flex-shrink: 0;
}

.language-dropdown > a .lang-text {
	line-height: 1;
}

.language-options {
	display: none;
	position: absolute;
	background-color: #fff;
	min-width: 120px;
	box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	margin-top: 4px;
	border-radius: 4px;
	overflow: hidden;
}

.language-options a {
	display: flex;
	align-items: center;
	padding: 6px 10px;
	text-decoration: none;
	color: #333;
	font-size: 14px;
}

.language-options a:hover {
	background-color: #f0f0f0;
}

.language-options svg {
	width: 20px;
	height: 20px;
	margin-right: 6px;
}

.language-dropdown.active .language-options {
	display: block;
}

/* Hiệu ứng fade + zoom nhẹ */
.animate-change {
	animation: fadeZoom 0.3s ease;
}

@keyframes fadeZoom {
	from {
		opacity: 0;
		transform: scale(0.8);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@media (max-width: 768px) {
	.jlkUCc .navbar-header .header-logo img {
		margin-left: 10px;
	}
}

@media (max-width: 768px) {
	.sidebar-open {
		width: max-content;
	}

	.sidebar {
		display: block;
	}

	.custom-list li  {
		margin-bottom: 30px;
		margin-left: 12px;
		margin-right: 44px;
		/* Adds 30px gap between each list item */
	}

	.custom-list div{ margin-bottom: 30px;
		margin-bottom: 30px;
		margin-left: 7px;
		margin-right: 44px;}
}


.lang-select-wrapper {
	position: relative;
	display: inline-block;
	cursor: pointer;
	z-index: 999;
	margin-left: 54px;
}

/* =============================================
   CLICKABLE ACTIVITY CARD STYLES
   ============================================= */
.activity-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

.activity-card-link:hover {
	text-decoration: none;
	color: inherit;
}

.activity-card-link .activities-card {
	cursor: pointer;
}

.activity-card-link:hover .activities-card {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.activity-card-link:hover .btn-outline-primary {
	background-color: #ed1c24c7;
	color: #fff;
	border-color: #ed1c24c7;
}
/* =============================================
   VIDEO CARD STYLES
   ============================================= */
.activity-card-video {
	width: 100%;
	height: 180px;
	object-fit: cover;
	background: #000;
}

.activity-video-indicator {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 5;
	pointer-events: none;
}

.activity-video-indicator i {
	font-size: 3rem;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
	transition: transform 0.3s ease, color 0.3s ease;
}

.activity-card-link:hover .activity-video-indicator i {
	transform: scale(1.15);
	color: #ed1c24;
}
