:root {
	--background-color: white;
	--text-color: #555555;
	--header-color: #f5f5f5;
	--footer-color: #ccc;
	--dialog-color: #fff;
	--header-bg-color: #f4f4f4;
	--in-bg-color: #f4f4f4;
	--background-sidebar: #ffffff;
	--background-li-ui-sidebar: #fbfbfb;
	--background-info-sidebar: #f8f7f7;
	--color-button-info: #ebe2e2;
	--color-menu-toggle: rgba(221, 202, 202, .64);
	--background-theme: #f3f1f1;
	--background-mode: #f5f2f2;
    --background-page: #e1e8e6;
	--background-table-thead: #faf2f2;
	--background-table-tbody: #fffafa;
	--background-table-th: #f0e4e4;
	--background-table-tr: #f5e5e5;
	--box-show: #23212126;
	--background-card-shoppe: #23212126;
	--background-form-control: #eeebeb;
	--color-border: rgb(207 211 216);
	--background-card-framework: #ffffff;
    --background-card-shop: #f5efef;
}

.dark-mode {
	--background-color: black;
	--text-color: white;
	--header-color: #333;
	--footer-color: #444;
	--dialog-color: #252525;
	--header-bg-color: #272525;
	--in-bg-color: #1d1a1a;
	--background-sidebar: #333131;
    --background-li-ui-sidebar: #2a2828;
	--background-info-sidebar: #2a2828;
	--color-button-info: #413e3e;
	--color-menu-toggle: rgba(92, 86, 86, .64);
	--background-theme: #211f1f;
	--background-mode: #2e2d2d;
    --background-page: #171616;
	--background-table-thead: #333;
	--background-table-tbody: #222;
	--background-table-th: #444;
	--background-table-tr: #2a2a2a;
	--box-show: #665f5f26;
	--background-card-shoppe: #23212126;
	--background-form-control: #232222;
	--color-border: rgb(62 64 66);
	--background-card-framework: #1e1c1c;
    --background-card-shop: #212020;
}

.no-copy {
    user-select: none;  
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

* {
	-webkit-tap-highlight-color: transparent;
	font-family: "Montserrat", sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}
#main-content {
	background: var(--background-theme);
	flex-direction: column;
	align-items: center;
    max-width: 100%;
}

.fontmod p {
    font-family: var(--font-mod);
    text-decoration: none;
    user-select: text;
}

html {
	scrollbar-width: none;
}

.container-home-page {
    padding: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    background: var(--background-page);
    gap: 5px;
    font-size: 14px;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
	scrollbar-width: none;
}

#notification {
	width: 20px;
	height: 20px;
	margin: 0 2px;
	cursor: pointer;
}

.header-left {
	display: flex;
	margin-left: auto;
	align-items: center;
	gap: 5px;
}

#avatar_user {
	margin-left: 9px;
	width: 45px;
	height: 45px;
	border-radius: 100%;
	cursor: pointer;
}

#menu-toggle {
	cursor: pointer;
	padding: 10px;
	background: var(--color-menu-toggle);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 360px;
	box-shadow: 0 0 2px rgba(0, 0, 0, .35);
}

#menu-toggle:hover {
	background: var(--color-theme);
	color: #fff;
	transition: all .3s ease-in-out;
}

body {
	font-family: Arial, sans-serif;
	background-color: var(--background-color);
	color: var(--text-color);
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	transition: padding .3s, background-color .3s, color .3s;
    cursor: var(--cursor-svg), auto;
}

.header {
	position: relative;
	position: sticky;
	background-color: var(--background-color);
	color: var(--text-color);
	padding: 10px 20px;
	text-align: center;
	justify-content: center;
	display: flex;
	align-items: center;
	transition: all linear .3s;
	transition: transform .3s ease, opacity .3s ease;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}

.header.hidden {
	transform: translateY(-10%);
	box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .15);
	padding: 12px 20px;
	transition: padding .3s, transform .3s ease, opacity .3s ease;
}

.header.active {
	transform: translateY(0);
	box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .15);
	padding: 12px 20px;
	transition: padding .3s, transform .3s ease, opacity .3s ease;
}

.header-top {
	background-color: var(--color-theme);
	display: flex;
	align-items: center;
    padding: 8px 15px;
    justify-content: center;
}

.header-top-select {
    display: flex;
    align-items: center;
    gap: 5px;
}

.select-header {
    display: flex;
    align-items: center;
    align-content: center;
    text-align: center;
    color: #fff
}

.scroll-to-top-btn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: var(--color-theme);
	color: #fff;
	border: none;
	border: 1px dashed var(--text-color);
	border-radius: 360px;
	cursor: pointer;
	display: none;
	z-index: 1000;
	width: 45px;
	height: 45px;
	animation: bounce 1s infinite;
}

@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}
	
	50% {
		transform: translateY(-10px);
	}
}

.menu-toggle {
	background-color: rgba(68, 68, 68, 0);
	color: var(--text-color);
	border: none;
	padding: 10px;
	cursor: pointer;
	font-size: 16px;
}

.menu-toggle:hover {
	background-color: #555;
}

.theme-toggle {
	cursor: pointer;
	margin-left: auto;
}

.theme-toggle {  
    background: var(--background-color);
    padding: 5px;
    border-radius: 100%;
    box-shadow: 0px 5px 5px var(--box-show);
    width: 30px;
    height: 30px;
}

.container {
	display: flex;
	flex: 1;
	position: relative;
}

.sidebar {
    user-select: none;
	width: 250px;
	background-color: var(--background-sidebar);
	color: var(--text-color);
	position: fixed;
	top: 0;
	left: -250px;
	height: 100vh;
	transition: left .3s ease-in-out;
	z-index: 1001;
	/*overflow-y: auto;
	scrollbar-width: none;*/
}

.sidebar.open {
	left: 0;
}

.sidebar-home {
    overflow-y: scroll;
    /* max-height: calc(100vh - 120px); */
    /* scrollbar-width: none; */
    /*max-height: calc(100vh - 100px);*/
    max-height: 85%;
}


.sidebar-container {
    margin-right: 20px;
    padding: 0 0 10px 0;
}


.sidebar ul {
	list-style: none;
}

.sidebar ul li {
	margin: 15px 0;
}

.sidebar ul li a {
	text-decoration: none;
	display: flex;
	align-items: center;
	font-family: var(--font-mod);
}

.sidebar ul li a:hover {
	background-color: var(--color-theme);
	color: #fff;
}

.main-content {
	display: flex;
	flex: 1;
	transition: margin-left .3s ease-in-out;
	min-height: 500px;
	justify-content: center;
}

.container-home {
	height: 100%;
	padding: 20px 12px 50px 12px;
	width: 100%;
	display: flex;
	flex-direction: column;
}

footer {
	display: flex;
	background-color: var(--background-color);
	color: #fff;
	padding: 10px 20px 0 20px;
	flex-shrink: 0;
	flex-direction: column;
	align-items: center;
}

.footer-body {
	width: 100%;
}

footer .footer-header {
	margin-top: 15px;
	display: flex;
	width: 100%;
}

footer .description_footer {
    font-family: var(--font-mod);
    font-size: 16px;
    color: var(--text-color);
}

footer .text.footer.h1 {
    font-family: var(--font-mod);
    font-size: 20px;
    color: var(--text-color);
}

footer .footer-home {
	display: flex;
	width: 100%;
    gap: 25px;
    flex-wrap: wrap;
}

footer .footer-home-header {
    padding: 10px;
    max-width: 500px;
}

footer .footer-home-body {
    display: flex;
    gap: 10px;
    flex-direction: column;
    padding: 10px;
}

footer .text.footer.p {
    font-family: var(--font-mod);
    font-size: 14px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

footer .text.footer.a {
    font-family: var(--font-mod);
    font-size: 15px;
    color: var(--text-color);
}

footer .text.footer.p i {
    font-size: 25px;
    color: var(--color-theme);
}

footer .footer-home-footer {
    padding: 10px;
}

footer .footer-footer {
	display: flex;
	width: 100%;
	margin: 30px 0 0 0;
	background: linear-gradient(to right, var(--color-theme-phu), var(--color-theme));
	border-radius: 15px 15px 0 0;
	color: #fff;
	text-align: center;
	flex-direction: column;
}

footer .footer-footer .copyright_website {
	font-family: var(--font-mod);
}

footer .footer-footer .copyright {
	font-family: var(--font-mod);
}

.sidebar.open {
	left: 0;
}

#logo-website-footer {
	width: 150px;
	height: 50px;
    border-radius: 5px;
}

body.dark-mode {
	background-color: #121212;
	color: #e0e0e0;
}

.header.dark-mode {
	background-color: #222;
}

.theme-username-headers {
    display: none;
    text-align: start;
}

.sidebar.dark-mode {
	background-color: #333;
}

footer.dark-mode {
	background-color: #222;
}

.submenu {
	list-style: none;
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease;
	font-family: var(--font-mod);
}

.submenu li a {
	text-decoration: none;
}

.submenu li a:hover {
	background-color: var(--color-theme);
	color: #fff;
}

.submenu-toggle {
	background: none;
	border: none;
	color: var(--text-color);
	cursor: pointer;
	font-size: 16px;
	display: flex;
	width: 100%;
	text-align: left;
	padding: 5px 0;
	align-items: center;
    transition: all linear .2s;
}

.submenu-toggle:hover {
	background: var(--color-theme);
    color: #fff;
}

.sidebar ul li a i {
	margin-right: 7px;
}

.sidebar ul li .submenu-toggle i {
	margin-right: 7px;
}

.sidebar-info {
	display: flex;
	padding: 5px;
	border-radius: 5px;
	box-shadow: 0 0 2px rgba(0, 0, 0, .38);
	background: var(--background-info-sidebar);
	align-items: center;
}

#avatar_user-sidebar {
	width: 45px;
	height: 45px;
	border-radius: 8px;
	box-shadow: 0 0 2px rgba(2, 2, 2, .66);
	cursor: pointer;
}

.sidebar-info-user-mod {
	display: flex;
	margin-left: 9px;
}

.anh-sanpham-sidebar {
	width: 25px;
    height: 25px;
    border-radius: 5px;
	margin-right: 5px;
}

.stick-tick-admin {
	width: 15px;
	height: 15px;
	margin-left: 3px;
}

.user-fff {
	display: flex;
	align-items: center;
}

.submenu-toggle .icon {
	font-size: 14px;
	margin-left: auto;
	display: inline-block;
	transition: transform .3s ease;
}

.submenu-toggle.open .icon {
	transform: rotate(90deg);
}

.sidebar-head {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0 10px 0;
    position: sticky;
    z-index: 10000;
    top: 0;
    background: var(--background-sidebar);
    flex-direction: column;
    border-bottom: 1px solid var(--color-border);
}

.sidebar-head-onclick {
    position: absolute;
    top: 0;
    margin-right: -17px;
    margin-top: 18px;
    right: 0;
    z-index: 10001;
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    cursor: pointer;
    transition: all linear .2s;
}

.sidebar-head-onclick.off {
    position: absolute;
    top: 0;
    margin-right: 0;
    margin-top: 0;
    right: 0;
}

.sidebar-head-onclick .close-toggle {
    border: none;
    background: none;
    width: 37px;
    height: 37px;
    border-radius: 100%;
    cursor: pointer;
    background: var(--background-sidebar);
    border: 1px solid var(--color-border);
    transition: all linear .2s;
    color: var(--text-color)
}

.sidebar-user {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--color-border);
}

.sidebar-user-info-money {
    display: flex ;
    justify-content: center;
    gap: 4px;
}

.sidebar-user-info-money strong {
    font-size: 15px;
    font-family: var(--font-mod);
    color: #beffc8;
    font-weight: bold;
    text-shadow: 1px 1px 0 #268308, 1px 2px 0 #000, 1px 1px 6px #05c225, 1px 1px 9px #06a635;
}

.sidebar-user-info {
    gap: 5px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.sidebar-user-info-name {
    display: flex;
    padding: 7px 10px;
    background: var(--background-info-sidebar);
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    width: 100%;
    border: 1px solid var(--color-border);
}

.sidebar-user-info-item {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    background: var(--color-theme);
    border-radius: 6px;
    gap: 5px;
    color: #fff;
    cursor: pointer;
    transition: all linear .2s;
    transform: translateY(0);
    text-decoration: none;
}

.sidebar-user-info-item:hover {
    transform: translateY(-2px);
}


.sidebar-user-info-item p {
    font-family: var(--font-mod);
    font-size: 14px;
    color: #fff;
}

.sidebar-head-onclick .close-toggle:hover {
    background: var(--color-theme);
    color: #fff;
    transform: rotate(180deg);
}

#logo-website-sidebar {
	width: 100%;
	max-width: 220px;
	margin: auto;
	border-radius: 8px;
	max-height: 75px;
}

.li_a_website {
	color: var(--text-color);
	padding: 8px 10px;
	background: var(--background-li-ui-sidebar);
	border-radius: 0 8px 8px 0;
	transition: all linear .2s;
	border: 1px solid var(--color-border);
}

.submenu-toggle {
	padding: 8px 10px;
	background: var(--background-li-ui-sidebar);
	border-radius: 0 8px 8px 0;
	display: flex;
    transition: all linear .2s;
	font-family: var(--font-mod);
    border: 1px solid var(--color-border);
}

.header-sidebar {
	display: none;
}

.header-image {
	display: flex;
	align-items: center;
	margin-left: 5px;
}

.sidebar-header {
	display: flex;
	align-items: center;
	gap: 20px;
}

#logo-website-header {
	/*width: 100%;*/
	height: 60px;
    border-radius: 5px;
}

.header-sidebar ul li {
	list-style: none;
	cursor: pointer;
}

.header-sidebar ul li span {
	margin-left: 6px;
}

.li_a_website_header, .submenu-header-click {
	text-decoration: none;
	color: var(--text-color);
	padding: 6px;
	border-radius: 5px;
	font-family: var(--font-mod);
}

.header-sidebar {
	position: relative;
}

.sidebar-header {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-header li {
	position: relative;
	z-index: 9000;
}

a.submenu-header-click {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .3s, transform .3s;
	margin: 0 5px;
}

.icon-header {
	display: inline-block;
	transition: transform .3s ease;
	transform-origin: center;
}

.submenu-header-click:hover .icon-header {
	transform: rotate(90deg);
}

li:hover .submenu-header {
	display: block;
	opacity: 1;
	max-height: 300px;
	visibility: visible;
	transform: translateY(0);
	transition: max-height .3s ease, transform .3s ease;
}

.submenu-header {
	display: flex;
	position: absolute;
	top: 100%;
	visibility: hidden;
	left: 0;
	border-radius: 5px;
	background-color: var(--background-sidebar);
	padding: 0;
	z-index: 1000;
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity .3s ease, max-height .3s ease, transform .3s ease;
	width: auto;
	min-width: 100%;
	flex-direction: column;
	box-shadow: 0 0 5px #00000029;
}

.a_website_header {
    display: flex;
    padding: 0 7px;
    align-items: center;
}

.submenu-header li {
	padding: 3px 3px;
	font-size: 14px;
}

.submenu-header li a {
	text-decoration: none;
	display: block;
	white-space: nowrap;
}

.submenu-header li {
	cursor: pointer;
}

.header-sidebar ul li a:hover {
	color: var(--color-theme);
	background: rgba(0, 0, 0, 0);
}

li.open .submenu-header {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

li.open .icon-header {
	transform: rotate(90deg);
}

@media (min-width:800px) {
	#menu-toggle, #sidebar {
		display: none;
	}
	
	.header-sidebar {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
	}
	
	.header-image {
		margin-left: 0;
	}
}

.noidung-ghichu-sidebar {
	margin-left: 10px;
	margin-top: 15px;
	font-size: 13px;
	color: var(--text-color);
}

.active-menu-sidebar {
	color: #fff;
	background: var(--color-theme);
	border-radius: 0 8px 8px 0;
	transition: background-color .3s ease, transform .2s ease;
    border: 1px solid var(--color-border);
}

.active-menu-sidebar-header {
	color: var(--color-theme);
}

.display-dulieurong-theme-tvn {
	display: flex;
	align-items: center;
	flex-direction: column;
	width: 100%;
}

.display-dulieurong-theme-tvn p {
	font-size: 14px;
}

.display-dulieurong-theme-tvn span {
	font-size: 16px;
	font-family: var(--font-mod);
}

.icon-dulieurong-theme-tvn {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 50px;
	margin-bottom: 10px;
}

#_404_icon {
	width: 200px;
}

.container-header {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.menu-mobile {
	position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    display: flex;
    background-color: var(--background-color);
    justify-content: center;
    gap: 5px;
}

.menu-mobile a, .menu-mobile button {
	cursor: pointer;
	width: 100%;
	display: flex;
	text-decoration: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 13px;
	text-align: center;
	gap: 3px;
	padding: 5px;
	border: none;
	background-color: var(--background-color);
	color: var(--text-color);
}

.theme-username-header {
	display: none;
    text-align: start;
}

#username-header, #balance-header {
	width: 0;
	font-family: var(--font-mod);
}

#balance-header {
	color: #beffc8;
	font-weight: bold;
	font-size: 14px;
	text-shadow: 1px 1px 0 #268308, 1px 2px 0 #000, 1px 1px 6px #05c225, 1px 1px 9px #06a635;
}

.balance-user {
	color: #beffc8;
	font-weight: bold;
	font-size: 17px;
	text-shadow: 1px 1px 0 #268308, 1px 2px 0 #000, 1px 1px 6px #05c225, 1px 1px 9px #06a635;
}

.menu-mobile a:hover, .menu-mobile button:hover {
	background-color: rgba(154, 154, 154, .07);
}

.menu-mobile-click.active {
	border-top: 2px dashed var(--color-theme);
	background-color: rgba(154, 154, 154, .07);
}

#title_menu_mobile {
	font-family: var(--font-mod);
    font-size: 12px;
}

.gear-icon {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: var(--background-color);
	border-radius: 10px 0 0 10px;
	display: none;
	justify-content: center;
	align-items: center;
	padding: 10px;
	cursor: pointer;
	color: var(--text-color);
	font-size: 13px;
}

.gear-icon i {
	animation: rotate 2s linear infinite;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	
	to {
		transform: rotate(360deg);
	}
}

.footer-menu {
	position: fixed;
	bottom: -80vh;
	height: 80vh;
	left: 0;
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	transition: bottom .3s ease-in-out, right .3s ease-in-out;
	z-index: 1001;
}

.footer-menu.show {
	bottom: 0;
}

.close-btn {
	color: var(--text-color);
	border: none;
	padding: 10px;
	background: var(--background-color);
	box-shadow: 0 0 2px rgba(0, 0, 0, .33);
	display: flex;
	align-items: center;
	font-size: 18px;
	justify-content: center;
	width: 35px;
	height: 35px;
	border-radius: 100%;
	line-height: 35px;
	cursor: pointer;
	transition: transform .3s ease;
}

.close-btn:hover {
	background: var(--color-theme);
	color: #fff;
	transform: rotate(180deg);
}

.footer-menu-header {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.footer-menu-home {
	background: var(--background-color);
	color: var(--text-color);
	text-align: center;
	padding: 15px;
	display: flex;
	flex-direction: column;
	transition: bottom .3s ease-in-out, right .3s ease-in-out;
	border-radius: 30px 30px 0px 0px;
	height: 100%;
}

.backdrop {
	display: none;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 75%);
	z-index: 1001;
	position: fixed;
	top: 0;
}

.backdrop.open {
	display: flex;
}

.swiper-container {
	display: flex;
	width: 100%;
	max-height: 200px;
	background: rgba(0, 0, 0, 0);
	flex-direction: column;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 0 5px rgba(0, 0, 0, .31);
}

.swiper-image {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 1s ease-in-out;
}

.swiper-image-chay {
	width: 100%;
	height: 100%;
	flex-shrink: 0;
}

.image-swiper {
	width: 100%;
	height: 100%;
	cursor: grab;
	object-fit: fill;
    border-radius: 10px;
}

.page-trangchu {
    cursor: pointer;
    text-decoration: none;
    color: var(--text-color);
    font-family: var(--font-mod);
}

.page-phu {
    cursor: pointer;
    text-decoration: none;
    color: var(--text-color);
    font-family: var(--font-mod);
}

.page-hientai {
    cursor: pointer;
    text-decoration: none;
    color: var(--color-theme);
    font-family: var(--font-mod);
}

.container-Notification-home {
	font-family: var(--font-mod);
	display: flex;
	background: var(--background-color);
	box-shadow: 1px 8px 5px var(--box-show);
	padding: 20px;
	border-radius: 10px;
}
.container-Notification-home p, h1, span, h2, h3, h4, h5, a, strong {
	font-family: var(--font-mod);
	text-decoration: none;
	user-select: text;
}
.container-Notification-home.noti {
	font-family: var(--font-mod);
	display: block;
	background: var(--background-color);
	box-shadow: 1px 8px 5px var(--box-show);
	padding: 20px;
	border-radius: 10px;
}
.container-Notification-home.Notification-lichsu {
	font-family: var(--font-mod);
	display: flex;
	background: var(--background-color);
	box-shadow: 2px 7px 5px var(--box-show);
	padding: 10px;
	border-radius: 5px;
	align-items: center;
}
.container-Notification-home .Notification-lichsu {
	width: 100%;
	display: flex;
	overflow: hidden;
	white-space: nowrap;
	position: relative;
	align-items: center;
	margin-left: 5px;
}
.scroll-content.Notification-lichsu {
    display: inline-block;
    white-space: nowrap;
    animation: scrollTextJS 10s linear infinite;
	font-family: var(--font-mod);
}
.khung-chu-chay {
	gap: 4px;
}
.username.lichsu {
	color: #013cd2;
	margin-right: 4px;
}
#icon_lichsu {
	margin-right: 4px;
	color: #15b348;
}
.p.lichsu {
	margin-right: 4px;
}
.order_name.lichsu {
	color: #ff0000;
	margin-right: 4px;
}
.tienmua.lichsu {
	color: #00b10c;
	margin-right: 4px;
}
.time.lichsu {
	color: #9700ab;
	margin-right: 4px;
}
.scroll-content.Notification-lichsu span {
	display: flex;
	gap: 5px;
}

.glow-effect {
	position: absolute;
	width: 100px;
	height: 100px;
	background: radial-gradient(circle, rgba(255, 255, 0, 0.7), rgba(255, 255, 0, 0));
	border-radius: 50%;
	pointer-events: none;
	transform: scale(0);
	animation: glow 0.5s ease-out forwards;
}

@keyframes glow {
	0% { transform: scale(0); opacity: 1; }
	100% { transform: scale(2); opacity: 0; }
}

@keyframes scrollTextJS {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Dialog Info */

.info_info {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scaleY(0); 
    background-color: var(--dialog-color, #ffffff);
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 90%;
    max-width: 400px;
    overflow: hidden;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    overflow-y: auto;
    max-height: 80vh;
    scrollbar-width: none;
}
#toggleIcon1, #toggleIcon2 {
    cursor: pointer;
}
.info_info.closed {
    height: 60px;
    opacity: 0.8;
}

.info_info.open {
    transform: translate(-50%, -50%) scaleY(1);
    height: auto;
    opacity: 1;
}

.info-theme-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: var(--header-bg-color);
    border-bottom: 1px solid #ddd;
    position: sticky;
    z-index: 1;
}

.info-theme-header-a1 {
    display: flex;
    align-items: center;
}

.info-theme-header-a1 #the-a1 {
    padding: 0;
    margin: 0;
    margin-left: 3px;
    font-size: 15px;
    color:  var(--color-theme);
    cursor: pointer;
}

.info-theme-header-a1 #the-a2 {
    padding: 0;
    margin: 0;
    margin-left: 3px;
    font-size: 13px;
    color: var(--text-color, #333);
    cursor: pointer;
}

.info-theme-header-a1 #the-a0 {
    font-size: 13px;
    margin: 0 0 0 3px;
}

.info_info .close_mods {
    width: 30px;
    height: 30px;
    background-color: #ff4d4d;
    color: #fff;
    border: none;
    border-radius: 100%;
    cursor: pointer;
    font-size: 14px;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.info_info .close_mods:hover {
    background-color: #e63939;
    transform: rotate(180deg);
}

.info-theme-body {
    padding: 15px;
    gap: 6px;
}
.info-theme-footer {
    padding: 10px 15px;
    display: flex;
    gap: 8px;
    flex-direction: column;
}
.checkbox-label {
    display: flex;
    align-items: center;
    margin-left: 5px;
}
.checkbox-label #checkboxtext {
    font-size: 13px;
    margin-left: 4px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -55%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}
.info-theme-body {
    padding: 15px;
}
.info-theme-body {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: scale(1);
    opacity: 1;
}

.info-theme-body.closing {
    transform: scale(0.8);
    opacity: 0;
}

.info-theme-body.opening {
    transform: scale(1.1);
    opacity: 1;
}

#theme-info-as2 {
    display: none;
}
.info-theme-input {
    display: flex;
    align-items: center;
    background-color: var(--in-bg-color);
    border-radius: 7px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.48);
    margin: 9px 0px;
}
.info-theme-icon i {
    font-size: 15px;
}
.info-theme-icon {
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: center;
    background:  var(--color-theme);
    color: #ffff;
    border-radius: 7px 0 0 7px;
    width: 45px;
}
.info-theme-input-a {
    display: flex;
    flex-grow: 1;
}
.info-theme-button {
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: center;
    background:  var(--color-theme);
    color: #ffff;
    border-radius: 0 7px 7px 0;
    width: 45px;
}
#info-avatar-user {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    border: 1px dashed var(--text-color);
    padding: 3px;
}
.info-theme-user {
    display: flex;
    gap: 5px;
}
.username-info-a-tvn {
    font-size: 22px;
    color: var(--text-color);
    font-weight: bold;
    font-family: var(--font-mod);
}
.balance-info-a-tvn {
    color:rgb(156, 238, 168);
    font-weight: bold;
    font-size: 17px;
    text-shadow: 1px 1px 0 #268308, 1px 2px 0 #000000, 1px 1px 6px #05c225, 1px 1px 9px #06a635;
    font-family: var(--font-mod);
}
.vaitro-theme-tvn {
    padding-top: 4px;
    display: flex;
    GAP: 5PX;
}
.icon.icon-sidebar {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.admin-info-a-tvn, .ctv-info-a-tvn, .thanhvien-info-a-tvn {
    font-size: 10px;
    position: relative;
    padding: 2px 9px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    cursor: pointer;
    background: linear-gradient(45deg, #ff5722, #ff9800);
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(255, 87, 34, 0.7), 0 0 40px rgba(255, 152, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    animation: hotColorChange 3s linear infinite;
}
.ctv-info-a-tvn {
    background: linear-gradient(45deg, #7222ff, #1f3050);
    box-shadow: 0 0 5px rgb(15 40 165 / 70%), 0 0 40px rgb(10 106 154 / 50%);
}
.thanhvien-info-a-tvn {
    background: linear-gradient(45deg, #48ff22, #0ac350);
    box-shadow: 0 0 5px rgb(15 165 109 / 70%), 0 0 40px rgb(23 177 49 / 50%);
}

.swiper {
    width: 100%;
    height: 100%;
    max-height: 300px;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 15px;
    /* text-transform: none !important; */
    /* letter-spacing: 0; */
    /* font-variant: initial; */
    /* line-height: 1; */
    color: #000000;
}

.swiper-button-next, .swiper-rtl .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, 0px);
    left: auto;
    background: #ffffff85;
    border-radius: 10px 0 0 10px;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 0px);
    right: auto;
    background: #ffffff85;
    border-radius: 0 10px 10px 0;
}


.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--color-theme);
}

.swiper {
margin-left: auto;
margin-right: auto;
border-radius: 10px;
}
.info-theme-input {
    display: flex;
    align-items: center;
    background-color: var(--in-bg-color);
    border-radius: 7px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.48);
    margin: 9px 0px;
}
input[type="text"], input[type="email"], input[type="password"] {
    border: none;
    width: 100%;
    padding: 14px 7px;
    background: #0000;
    color: var(--text-color);
}
input[type="text"], input[type="email"], input[type="password"]:focus {
    outline: none;
}
.info-theme-icon i {
    font-size: 15px;
}
.info-theme-icon {
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: center;
    background:  var(--color-theme);
    color: #ffff;
    border-radius: 7px 0 0 7px;
    width: 45px;
}
.info-theme-input-a {
    display: flex;
    flex-grow: 1;
}
.info-theme-button {
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: center;
    background:  var(--color-theme);
    color: #ffff;
    border-radius: 0 7px 7px 0;
    width: 45px;
}

.checkbox-input {
    display: none;
}
.button-label-theme-tvn #button-theme-change-password-website {
    font: inherit;
    padding: 10px 15px;
    background-color: #1e1d1d;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 9px;
    box-shadow: 0 0 2px #000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background-color 0.4s ease-in-out;
}
.button-label-theme-tvn #button-theme-change-password-website:hover {
    background-color: var(--color-theme);
}
.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#button-quantrivien , #button-congtacvien, #button-notification {
    display: flex;
    background-color: var(--color-button-info);
    box-shadow: 0 0px 5px #201d1d38;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 0px;
    gap: 5px;
    align-items: center;
}
.a-button-quantrivien, .a-button-congtacvien, .a-button-notification {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--text-color);
    width: 100%;
    border-radius: 5px;
    padding: 8px 15px;
}
.a-button-quantrivien:hover, .a-button-congtacvien, .a-button-notification:hover, #button-quantrivien:hover , #button-congtacvien:hover, #button-notification:hover {
    background-color: var(--color-theme);
    color: #fff;
}
#button-dangxuat {
    display: flex;
    padding: 8px 15px;
    background-color: #ff4d4d;
    box-shadow: 0 0px 5px #201d1d38;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 0px;
    gap: 5px;
    align-items: center;
}
#button-dangxuat:hover {
    background-color: #ff4d4d;
    color: #fff;
}
.a-button-dangxuat {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #fff;
    width: 100%;
}
.liner-theme-info-tvn {
    display: flex;
    align-items: center;
}
.vip-text {
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 15px #ff0000, 0 0 20px #ff0000, 0 0 25px #ff0000;
    animation: glow 1.5s infinite alternate;
    margin-left: 10px;
    }

    @keyframes glow {
    0% {
        text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 15px #ff0000, 0 0 20px #ff0000, 0 0 25px #ff0000;
    }
    50% {
        text-shadow: 0 0 20px #ff0000, 0 0 30px #ff0000, 0 0 40px #ff0000, 0 0 50px #ff0000, 0 0 60px #ff0000;
    }
    100% {
        text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000, 0 0 40px #ff0000, 0 0 50px #ff0000;
    }
}
.info-ghichu-noidung-thongtin {
    display: flex;
    gap: 5px;
    align-items: center;
    color: var(--text-color);
    margin-left: 5px;
    padding: 5px 0;
}
.info-ghichu-noidung-thongtin .info-ghichu {
    font-family: 'Saira Semi Condensed', sans-serif;
}

/* */

.container-header-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.header-top-left li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.header-top-right li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* */


.trang {
    color: #fff;
}

.font14 {
    font-size: 14px;
}

.header-top-center {
    display: flex;
    margin: auto;
}

.container-lichsu-home {
	display: flex;
	align-items: center;
    flex-direction: column;
	gap: 10px;
}

.container-lichsu-home .lichsu-home.muahang,
.container-lichsu-home .lichsu-home.naptien {
	display: flex;
    padding: 12px;
    background: linear-gradient(to right, var(--color-theme-phu), var(--color-theme));
    width: 100%;
    border-radius: 10px;
    box-shadow: -2px 5px 2px #00000012;
    align-items: center;
    gap: 5px;
    font-size: 18px;
	color: #fff;
}

.container-lichsu-home .lichsu-home.muahang i,
.container-lichsu-home .lichsu-home.naptien i {
    font-size: 20px;
}

.container-lichsu-home .lichsu-home.muahang strong,
.container-lichsu-home .lichsu-home.naptien strong {
	font-family: 'Saira Semi Condensed', sans-serif;
}

.container-lichsu-home .body-lichsu-home {
	display: flex;
	width: 100%;
	flex-direction: column;
}

.home-lichsu-home {
	min-height: 400px;
	max-height: 400px;
	width: 100%;
	display: flex;
	flex-direction: column;
	overflow-x: auto;
	scrollbar-width: none;
	/* background: var(--background-color); */
	border-radius: 10px;
	margin-top: 10px;
	/* box-shadow: -2px 3px 2px #0000002b; */
}

.home-lichsu-home span {
    display: flex;
    /* align-items: center; */
    gap: 3px;
    /* overflow-x: auto; */
    /* white-space: nowrap; */
    scrollbar-width: none;
    max-width: 100%;
    margin: 0 10px;
    padding: 10px;
    margin-top: 8px;
    background: var(--background-color);
    border: 1px dashed #0000003d;
    border-radius: 9px;
    flex-direction: row;
    flex-wrap: wrap;
}
.home-lichsu-home span a {
	margin-right: 5px;
}

.home-lichsu-home i {
	font-size: 23px;
    color: var(--color-theme);
	margin-right: 5px;
}

.home-lichsu-home .lichsu-home.username {
	color: #ff0000;
	margin-right: 5px;
}
.home-lichsu-home .lichsu-home.donhang {
	color: #0004ff;
	margin-right: 5px;
}
.home-lichsu-home .lichsu-home.giatien {
	color: #009f5a;
	margin-right: 5px;
}
.home-lichsu-home .lichsu-home.time {
	color: #a300c0;
	margin-right: 5px;
}

/* */

.container-Notification-home .table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--background-table-tbody);
    color: var(---text-color);
    font-family: Arial, sans-serif;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
}

.container-Notification-home .table thead {
    background-color: var(--background-table-thead);
}

.container-Notification-home .table th,
.container-Notification-home .table td {
    padding: 5px;
    border: 1px solid var(--background-table-th);
    font-family: var(--font-mod);
    font-size: 14px;
}

.container-Notification-home .table th {
    font-family: var(--font-mod);
    text-align: left;
    font-size: 13px;
}

.container-Notification-home .table tbody tr:nth-child(even) {
    background-color: var(--background-table-tr);
}

.text-center {
    text-align: center;
}

.container-Notification-home .table-body {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}

.checkbox-input {
    display: none;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid  var(--color-theme);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.custom-checkbox:hover {
    background-color: #e6f0ff;
}

.checkbox-input:checked + .custom-checkbox {
    background-color:  var(--color-theme);
    border-color: var(--color-theme);
}

.checkbox-input:checked + .custom-checkbox::after {
    content: "✔";
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.container-control-search-table {
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
#limit {
    display: block;
    width: 100%;
	min-width: 100px;
    max-width: 300px;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-color);
    background-color: #fff;
    background-clip: padding-box;
    border: 0px solid var(--color-border);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .30rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    font-family: var(--font-mod);
}
#limit {
    background: var(--background-form-control);
    padding: 5px 15px;
    transition: all linear .3s;
    border: 2px solid var(--color-border);
    border-radius: 10px;
}
#limit:focus {
    border: 2px solid var(--color-theme);
	outline: none;
}
.pagination {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: end;
	gap: 5px;
}
.pagination .pagination-a {
	transition: all linear .3s;
	padding: 10px;
	background: var(--background-form-control);
	border-radius: 100%;
	font-size: 15px;
	color: var(--text-color);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.lichsu-donhang-tbody {
	user-select: text;
}
.pagination .pagination-a a {
	color: var(--text-color);
}
.pagination .pagination-a:hover a {
	padding: 10px 18px;
    background: var(--color-theme);
    border-radius: 100%;
    font-size: 15px;
    color: #fff;
}
.form-control-search {
    display: block;
    width: 100%;
    max-width: 300px;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-color);
    background-color: #fff;
    background-clip: padding-box;
    border: 0px solid var(--color-border);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .30rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    font-family: var(--font-mod);
}
.form-control-search.mb-2 {
    background: var(--background-form-control);
    padding: 8px 15px;
    transition: all linear .3s;
    border: 2px solid var(--color-border);
    border-radius: 10px;
}
.form-control-search.mb-2:focus {
    border: 2px solid var(--color-theme);
}

.form-control-search.mb-3 {
    max-width: 200px;
    background: var(--background-form-control);
    padding: 8px 15px;
    border-radius: 10px;
    transition: all linear .2s;
    cursor: pointer;
}
.form-control-search.mb-3 i {
    margin-right: 5px;
}
.form-control-search.mb-3:hover {
    color: #fff;
    background: var(--color-theme);
}
.form-control-search.mb-3:focus {
    color: #fff;
    background: var(--color-theme);
}
.table-td-home {
	display: flex;
    gap: 8px;
    align-items: center;
}
.s-table-td-home.b-t-1 {
	padding: 6px 15px;
    display: flex;
    gap: 5px;
    align-items: center;
    border-radius: 5px;
    border: none;
    cursor: pointer;
	transition: all linear .2s;
	font-family: var(--font-mod);
	font-size: 12px;
}
.s-table-td-home.b-t-1.view {
	background-color: #4279d5;
	color: #fff;
}
.s-table-td-home.b-t-1.down {
	background-color: #0b8634;
	color: #fff;
}
.s-table-td-home.b-t-1.delet {
	background-color: #d41010;
	color: #fff;
}
.s-table-td-home.b-t-1.view:hover {
	background-color: #0e5ee6;
	color: #fff;
}
.s-table-td-home.b-t-1.down:hover {
	background-color: #075521;
	color: #fff;
}
.s-table-td-home.b-t-1.delet:hover {
	background-color: #ff0000;
	color: #fff;
}
.attention.p-1 {
	display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 3px 5px;
    font-size: 12px;
}
.attention.p-1.s-3333FF {
	background: #3333FF;
	color: #fff;
}
.attention.p-1.s-FF0000 {
	background: #FF0000;
	color: #fff;
}
.lichsu-donhang-tbody .attention.p-0 {
	text-transform: uppercase;
}
.quaylai.btn {
	padding: 8px 10px;
    border: none;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 5px;
    background: #e42121;
    color: #fff;
    box-shadow: 0 0 4px #f60b0b;
    cursor: pointer;
    transition: all linear .2s;
    max-width: 90px;
    justify-content: center;
}
.quaylai.btn:hover {
	background: #c41a1a;
	box-shadow: 0 0 4px #f60b0b;
}
.container-don-hang.af1 {
	display: flex;
    gap: 4px;
    align-items: center;
    margin-top: 5px;
    padding: 0 5px;
	flex-wrap: wrap;
	max-width: 100%;
    overflow-x: auto;
}
.noidung.af0 {
	text-transform: uppercase;
	color: var(--color-theme);
}

/* */

.lichsu-balance-fluctuation-tbody .attention.p-1 {
    display: block;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 3px 0px;
}

.lichsu-balance-fluctuation-tbody .attention.p-1.s-3333FF {
    background: #0000;
    color: #3333FF;
    font-size: 14px;
}

.lichsu-balance-fluctuation-tbody .attention.p-1.s-FF0000 {
    background: #0000;
    color: #FF0000;
    font-size: 14px;
}

.lichsu-balance-fluctuation-tbody .attention.p-1.s-37F9D27 {
    background: #0000;
    color: #3f9d27;
    font-size: 14px;
}

.lichsu-balance-fluctuation-tbody .attention.p-1.s-97279d {
    background: #0000;
    color: #97279d;
    font-size: 14px;
}

/* */

.dialog_notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scaleY(0); 
    background-color: var(--dialog-color, #ffffff);
    padding: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 100%;
    overflow: hidden;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    overflow-y: auto;
}
#toggleIcon1, #toggleIcon2 {
    cursor: pointer;
}
.dialog_notification.closed {
    height: 60px;
    opacity: 0.8;
}

.dialog_notification.open {
    transform: translate(-50%, -50%) scaleY(1);
    height: 100%;
    opacity: 1;
}

.notification-theme-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: var(--header-bg-color);
    border-bottom: 1px solid #ddd;
    position: sticky;
    z-index: 1;
}

.notification-theme-header-a1 {
    display: flex;
    align-items: center;
}

.notification-theme-header-a1 #the-a1-notification {
    padding: 0;
    margin: 0;
    margin-left: 3px;
    font-size: 15px;
    color:  var(--color-theme);
    cursor: pointer;
}

.notification-theme-header-a1 #the-a2-notification {
    padding: 0;
    margin: 0;
    margin-left: 3px;
    font-size: 13px;
    color: var(--text-color, #333);
    cursor: pointer;
}

.notification-theme-header-a1 #the-a0-notification {
    font-size: 13px;
    margin: 0 0 0 3px;
}

.dialog_notification .close_mods {
    width: 30px;
    height: 30px;
    background-color: #ff4d4d;
    color: #fff;
    border: none;
    border-radius: 100%;
    cursor: pointer;
    font-size: 14px;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.dialog_notification .close_mods:hover {
    background-color: #e63939;
    transform: rotate(180deg);
}

.notification-theme-body,
.notification-theme-footer {
    padding: 15px;
    gap: 6px;
}
.checkbox-label {
    display: flex;
    align-items: center;
    margin-left: 5px;
}
.checkbox-label #checkboxtext {
    font-size: 13px;
    margin-left: 4px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -55%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}
.notification-theme-body {
    padding: 15px;
}
.notification-theme-body {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: scale(1);
    opacity: 1;
}

.notification-theme-body.closing {
    transform: scale(0.8);
    opacity: 0;
}

.notification-theme-body.opening {
    transform: scale(1.1);
    opacity: 1;
}

#theme-notification-as2 {
    display: none;
}
.notification-theme-input {
    display: flex;
    align-items: center;
    background-color: var(--in-bg-color);
    border-radius: 7px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.48);
    margin: 9px 0px;
}
.notification-theme-icon i {
    font-size: 15px;
}
.notification-theme-icon {
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: center;
    background:  var(--color-theme);
    color: #ffff;
    border-radius: 7px 0 0 7px;
    width: 45px;
}
.notification-theme-input-a {
    display: flex;
    flex-grow: 1;
}
.notification-theme-button {
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: center;
    background:  var(--color-theme);
    color: #ffff;
    border-radius: 0 7px 7px 0;
    width: 45px;
}

/* */

.settings_settings {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scaleY(0); 
    background-color: var(--dialog-color, #ffffff);
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 90%;
    max-width: 400px;
    overflow: hidden;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    overflow-y: auto;
    max-height: 80vh;
}
#toggleIcon1, #toggleIcon2 {
    cursor: pointer;
}
.settings_settings.closed {
    height: 60px;
    opacity: 0.8;
}

.settings_settings.open {
    transform: translate(-50%, -50%) scaleY(1);
    height: auto;
    opacity: 1;
}

.settings-theme-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: var(--header-bg-color);
    border-bottom: 1px solid #ddd;
    position: sticky;
    z-index: 1;
}

.settings-theme-header-a1 {
    display: flex;
    align-items: center;
}

.settings-theme-header-a1 #the-a1 {
    padding: 0;
    margin: 0;
    margin-left: 3px;
    font-size: 15px;
    color:  var(--color-theme);
    cursor: pointer;
}

.settings-theme-header-a1 #the-a2 {
    padding: 0;
    margin: 0;
    margin-left: 3px;
    font-size: 13px;
    color: var(--text-color, #333);
    cursor: pointer;
}

.settings-theme-header-a1 #the-a0 {
    font-size: 13px;
    margin: 0 0 0 3px;
}

.settings_settings .close_mods {
    width: 30px;
    height: 30px;
    background-color: #ff4d4d;
    color: #fff;
    border: none;
    border-radius: 100%;
    cursor: pointer;
    font-size: 14px;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.settings_settings .close_mods:hover {
    background-color: #e63939;
    transform: rotate(180deg);
}

.settings-theme-body {
    padding: 15px;
    gap: 6px;
}
.settings-theme-footer {
    padding: 10px 15px;
    display: flex;
    gap: 8px;
    flex-direction: column;
}
.checkbox-label {
    display: flex;
    align-items: center;
    margin-left: 5px;
}
.checkbox-label #checkboxtext {
    font-size: 13px;
    margin-left: 4px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -55%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}
.settings-theme-body {
    padding: 15px;
}
.settings-theme-body {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: scale(1);
    opacity: 1;
}

.settings-theme-body.closing {
    transform: scale(0.8);
    opacity: 0;
}

.settings-theme-body.opening {
    transform: scale(1.1);
    opacity: 1;
}

#theme-settings-as2 {
    display: none;
}
.settings-theme-input {
    display: flex;
    align-items: center;
    background-color: var(--in-bg-color);
    border-radius: 7px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.48);
    margin: 9px 0px;
}
.settings-theme-icon i {
    font-size: 15px;
}
.settings-theme-icon {
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: center;
    background:  var(--color-theme);
    color: #ffff;
    border-radius: 7px 0 0 7px;
    width: 45px;
}
.settings-theme-input-a {
    display: flex;
    flex-grow: 1;
}
.settings-theme-button {
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: center;
    background:  var(--color-theme);
    color: #ffff;
    border-radius: 0 7px 7px 0;
    width: 45px;
}
#settings-avatar-user {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    border: 1px dashed var(--text-color);
    padding: 3px;
}
.settings-theme-user {
    display: flex;
    gap: 5px;
}
.username-settings-a-tvn {
    font-size: 22px;
    color: var(--text-color);
    font-weight: bold;
}
.balance-settings-a-tvn {
    color: #beffc8;
    font-weight: bold;
    font-size: 17px;
    text-shadow: 1px 1px 0 #268308, 1px 2px 0 #000000, 1px 1px 6px #05c225, 1px 1px 9px #06a635;
}
.vaitro-theme-tvn {
    padding-top: 4px;
    display: flex;
    GAP: 5PX;
}
.admin-settings-a-tvn, .ctv-settings-a-tvn, .thanhvien-settings-a-tvn {
    font-size: 10px;
    position: relative;
    padding: 2px 9px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    cursor: pointer;
    background: linear-gradient(45deg, #ff5722, #ff9800);
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(255, 87, 34, 0.7), 0 0 40px rgba(255, 152, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    animation: hotColorChange 3s linear infinite;
}
.ctv-settings-a-tvn {
    background: linear-gradient(45deg, #7222ff, #1f3050);
    box-shadow: 0 0 5px rgb(15 40 165 / 70%), 0 0 40px rgb(10 106 154 / 50%);
}
.thanhvien-settings-a-tvn {
    background: linear-gradient(45deg, #48ff22, #0ac350);
    box-shadow: 0 0 5px rgb(15 165 109 / 70%), 0 0 40px rgb(23 177 49 / 50%);
}
.settings-theme-input {
    display: flex;
    align-items: center;
    background-color: var(--in-bg-color);
    border-radius: 7px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.48);
    margin: 9px 0px;
}
input[type="text"], input[type="email"], input[type="password"] {
    border: none;
    width: 100%;
    padding: 14px 7px;
    background: #0000;
    color: var(--text-color);
}
input[type="text"], input[type="email"], input[type="password"]:focus {
    outline: none;
}
.settings-theme-icon i {
    font-size: 15px;
}
.settings-theme-icon {
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: center;
    background:  var(--color-theme);
    color: #ffff;
    border-radius: 7px 0 0 7px;
    width: 45px;
}
.settings-theme-input-a {
    display: flex;
    flex-grow: 1;
}
.settings-theme-button {
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: center;
    background:  var(--color-theme);
    color: #ffff;
    border-radius: 0 7px 7px 0;
    width: 45px;
}

.liner-theme-settings-tvn {
    display: flex;
    align-items: center;
}
.settings-ghichu-noidung-thongtin {
    display: flex;
    gap: 5px;
    align-items: center;
    color: var(--text-color);
    margin-left: 5px;
    padding: 5px 0;
}
.settings-ghichu-noidung-thongtin .settings-ghichu {
    font-family: 'Saira Semi Condensed', sans-serif;
}
#mode_selector {
    border: none;
    width: 100%;
    padding: 10px;
    font-size: 15px;
    background: var(--background-mode);
    border-radius: 5px;
    color: var(--text-color);
}
#mode_selector:focus {
    outline: none;
}
#mode_selector option {
    border: none;
    outline: none;
}

/* */

.container-napthe-control {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-wrap: wrap;
}

.container-napthe-home {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 5px 10px;
    max-width: 100%;
}

.card-napthe-title-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 17px;
    padding: 10px 15px;
    background: var(--color-theme);
    border-radius: 10px;
    color: #fff;
    box-shadow: 0px 7px 9px #00000052;
}

.card-napthe-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-napthe-home-item {
    padding: 10px 15px;
    box-shadow: 1px 9px 13px 0px #0000004d;
    border-radius: 10px;
    background: var(--background-card-framework);
    display: flex;
    flex-direction: column;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-content-center {
    display: flex;
    justify-content: center;
}

.gap-2 {
    gap: 2px;
}

.gap-3 {
    gap: 3px;
}

.gap-4 {
    gap: 4px;
}

.gap-5 {
    gap: 5px;
}

.gap-6 {
    gap: 6px;
}

.gap-7 {
    gap: 7px;
}

.gap-8 {
    gap: 8px;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

.form-control-value {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-color);
    background-color: #fff;
    background-clip: padding-box;
    border: 0px solid var(--color-border);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .30rem;
    font-family: var(--font-mod);
}
.form-control-value.ma-2 {
    background: var(--background-form-control);
    padding: 8px 15px;
    transition: all linear .2s;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    outline: none;
}
.form-control-value.ma-2:focus {
    border: 2px solid var(--color-theme);
}

.form-control-value.ma-1 {
    background: var(--background-form-control);
    padding: 8px 15px;
    transition: all linear .2s;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    outline: none;
}
.form-control-value.ma-1:focus {
    border: 2px solid var(--color-theme);
}

ul li {
    list-style: none;
}

.form-control {
    background: #e7e7e740;
    border-radius: 5px;
    border: 2px solid #00000014;
    padding: 10px;
    font-family: var(--font-mod);
    width: 100%;
    max-width: 100%;
    transition: alllinear .2s;
}

.form-control.mb-4:focus {
    outline: none;
    border: 2px solid var(--color-theme);
}
.form-control.mb-4 {
    resize: vertical;
    overflow-x: hidden;
    overflow-y: auto; 
    min-height: 100px;
    max-height: 500px;
    padding: 10px;
    transition: none;
}

.alert-info {
    text-align: center;
    margin-bottom: 10px;
    padding: 20px 20px;
    border-radius: 3px;
    border-top: 3px solid var(--color-theme);
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    background: var(--background-form-control);
}

.alert-info strong {
    font-size: 15px;
    font-family: var(--font-mod);
    color: #beffc8;
    font-weight: bold;
    text-shadow: 1px 1px 0 #268308, 1px 2px 0 #000, 1px 1px 6px #05c225, 1px 1px 9px #06a635;
}

.btn.btn-primary {
    border: none;
    padding: 8px 30px;
    font-family: var(--font-mod);
    border-radius: 8px;
    margin-bottom: 20px;
    background: var(--color-theme);
    color: #fff;
    transition: all linear .2s;
    cursor: pointer;
    transform: translateY(0);
}

.btn.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--color-theme);
}

.margin-top-8 {
    margin-top: 8px;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-20 {
    margin-top: 20px;
}
.text-status {
    padding: 2px 4px;
    background: rgb(15, 14, 14);
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
}
.text-status.error {
    background: rgb(255, 0, 0);
    color: #fff;
}
.text-status.success {
    background: rgb(0, 187, 109);
    color: #fff;
}
.text-status.processing {
    background: rgb(45 45 98);
    color: #fff;
}
.text-status-color {
    color: #000000;
}
.text-status-color.error {
    color: rgb(255, 0, 0);
}
.text-status-color.success {
    color: rgb(0, 187, 109);
}

.vietqrCode {
    max-width: 300px;
    max-height: 300px;
    width: 100%;
    height: 100%;
}

.item-info-bank.a1 {
    border: 1px solid #a2939369;
    border-bottom: none;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 3px;
    border-radius: 7px 7px 0 0;
    flex-wrap: wrap;
}

.item-info-bank.a2 {
    border: 1px solid #a2939369;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 3px;
    flex-wrap: wrap;
}

.item-info-bank.a3 {
    border: 1px solid #a2939369;
    border-top: none;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 3px;
    flex-wrap: wrap;
}

.item-info-bank.a4 {
    border: 1px solid #a2939369;
    border-top: none;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 10px;
    border-radius: 0 0 7px 7px;
    flex-wrap: wrap;
}


/* */

.dialog_noti {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scaleY(0); 
    background-color: var(--dialog-color, #ffffff);
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    width: 90%;
    max-width: 550px;
    overflow: hidden;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    overflow-y: auto;
    max-height: 80vh;
}
#toggleIcon1, #toggleIcon2 {
    cursor: pointer;
}
.dialog_noti.closed {
    height: 60px;
    opacity: 0.8;
}

.dialog_noti.open {
    transform: translate(-50%, -50%) scaleY(1);
    height: auto;
    opacity: 1;
}

.dialog_noti-theme-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: var(--header-bg-color);
    border-bottom: 1px solid #ddd;
    position: sticky;
    z-index: 1;
}

.dialog_noti-theme-header-a1 {
    display: flex;
    align-items: center;
}

.dialog_noti-theme-header-a1 #the-a1 {
    padding: 0;
    margin: 0;
    margin-left: 3px;
    font-size: 15px;
    color:  var(--color-theme);
    cursor: pointer;
}

.dialog_noti-theme-header-a1 #the-a2 {
    padding: 0;
    margin: 0;
    margin-left: 3px;
    font-size: 13px;
    color: var(--text-color, #333);
    cursor: pointer;
}

.dialog_noti-theme-header-a1 #the-a0 {
    font-size: 13px;
    margin: 0 0 0 3px;
}

.dialog_noti .close_mods {
    width: 30px;
    height: 30px;
    background-color: #ff4d4d;
    color: #fff;
    border: none;
    border-radius: 100%;
    cursor: pointer;
    font-size: 14px;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.dialog_noti .close_mods:hover {
    background-color: #e63939;
    transform: rotate(180deg);
}

.dialog_noti-theme-body {
    padding: 15px;
    gap: 6px;
}
.dialog_noti-theme-footer {
    padding: 10px 15px;
    display: flex;
    gap: 8px;
    flex-direction: column;
}
.checkbox-label {
    display: flex;
    align-items: center;
    margin-left: 5px;
}
.checkbox-label #checkboxtext {
    font-size: 13px;
    margin-left: 4px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -55%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}
.dialog_noti-theme-body {
    padding: 15px;
}
.dialog_noti-theme-body {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: scale(1);
    opacity: 1;
}

.dialog_noti-theme-body.closing {
    transform: scale(0.8);
    opacity: 0;
}

.dialog_noti-theme-body.opening {
    transform: scale(1.1);
    opacity: 1;
}

#theme-dialog_noti-as2 {
    display: none;
}
.dialog_noti-theme-input {
    display: flex;
    align-items: center;
    background-color: var(--in-bg-color);
    border-radius: 7px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.48);
    margin: 9px 0px;
}
.dialog_noti-theme-icon i {
    font-size: 15px;
}
.dialog_noti-theme-icon {
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: center;
    background:  var(--color-theme);
    color: #ffff;
    border-radius: 7px 0 0 7px;
    width: 45px;
}
.dialog_noti-theme-input-a {
    display: flex;
    flex-grow: 1;
}
.dialog_noti-theme-button {
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: center;
    background:  var(--color-theme);
    color: #ffff;
    border-radius: 0 7px 7px 0;
    width: 45px;
}

.dialog_noti-theme-icon i {
    font-size: 15px;
}
.dialog_noti-theme-icon {
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: center;
    background:  var(--color-theme);
    color: #ffff;
    border-radius: 7px 0 0 7px;
    width: 45px;
}
.dialog_noti-theme-input-a {
    display: flex;
    flex-grow: 1;
}
.dialog_noti-theme-button {
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: center;
    background:  var(--color-theme);
    color: #ffff;
    border-radius: 0 7px 7px 0;
    width: 45px;
}

.liner-theme-dialog_noti-tvn {
    display: flex;
    align-items: center;
}
.dialog_noti-ghichu-noidung-thongtin {
    display: flex;
    gap: 5px;
    align-items: center;
    color: var(--text-color);
    margin-left: 5px;
    padding: 5px 0;
}
.dialog_noti-ghichu-noidung-thongtin .dialog_noti-ghichu {
    font-family: 'Saira Semi Condensed', sans-serif;
}
#mode_selector {
    border: none;
    width: 100%;
    padding: 10px;
    font-size: 15px;
    background: var(--background-mode);
    border-radius: 5px;
    color: var(--text-color);
}
#mode_selector:focus {
    outline: none;
}
#mode_selector option {
    border: none;
    outline: none;
}

.note .table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--background-table-tbody);
    color: var(---text-color);
    font-family: Arial, sans-serif;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
}

.note .table-body .table thead {
    background-color: var(--background-table-thead);
}

.note .table-body .table th,
.note .table-body .table td {
    padding: 5px;
    border: 1px solid var(--background-table-th);
    font-family: var(--font-mod);
    font-size: 14px;
}

.note .table-body .table th {
    font-family: var(--font-mod);
    text-align: left;
    font-size: 13px;
}

.note .table-body .table tbody tr:nth-child(even) {
    background-color: var(--background-table-tr);
}

.text-center {
    text-align: center;
}

.note .table-body {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}

.dialog_noti_footer_button {
    display: flex;
    gap: 7px;
    justify-content: flex-end;
    align-items: center;
}

.close-bth-dialognoti {
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 8px 15px;
    border: none;
    color: #fff;
    background: #ff0000;
    border-radius: 4px;
    cursor: pointer;
}

.close-bth-dialognoti.close-th {
    color: #fff;
    background: var(--color-theme);
}
.close-bth-dialognoti.close-2h {
    color: #fff;
    background: #ff0000;
}
/* */

.loader {
  width: 120px;
  height: 20px;
  background: 
    linear-gradient(90deg, #0000 ,var(--color-theme)) left -50px top 0/50px 20px no-repeat 
    lightblue;
  animation: l2 1s infinite linear;
}
@keyframes l2 {
  100% {background-position: right -50px top 0}
}

@media (min-width: 576px) {
	.container-header, .footer-body, .container-home {
		max-width: 540px;
	}
	
	.footer-menu {
		right: -265px;
		bottom: 0;
		left: auto;
		width: 250px;
		height: 100vh;
		flex-direction: column;
	}
	
	.footer-menu.show {
		right: 0;
	}
	
	.footer-menu-header {
		margin-bottom: 0;
	}
	
	.footer-menu-home {
		border-radius: 0px 0px 0px 0px;
	}
	
	.close-btn {
		position: absolute;
		margin-right: auto;
		left: -15px;
		top: 30px;
		box-shadow: 0 0 2px var(--text-color);
	}
	
	.swiper-container {
		max-height: 250px;
	}
}

@media (max-width:768px) {
	.footer-footer {
		padding: 20px 20px 65px 20px;
	}
}

@media (max-width:400px) {
	.swiper-container {
		max-height: 150px;
	}
}

@media (min-width:768px) {
	.container-header, .footer-body, .container-home, .container-header-top {
		max-width: 720px;
	}

	.container-lichsu-home {
		flex-direction: row;
	}
	
	.menu-mobile {
		display: none;
	}
	
	.gear-icon {
		display: flex;
	}
	
	.footer-footer {
		padding: 20px;
	}
	
	.swiper-container {
		max-height: 290px;
	}
}

@media (max-width:800px) {
	.header-left {
		display: none;
	}
    .header-top-right {
        display: none;
    }
    .header-top-left {
        display: none;
    }
} /* AAAAA */

@media (max-width:992px) {
	.header-image {
		margin: 0 auto;
	}
	.theme-toggle, .icon_notification {
		display: none;
	}
}

@media (min-width:992px) {
	.container-header, .footer-body, .container-home, .container-header-top {
		max-width: 960px;
	}
	
	.header-image #logo-website-header {
		width: 190px;
		height: 70px;
	}
	
	.swiper-container {
		display: flex;
		max-height: 300px;
	}
    .container-napthe-control { 
        flex-direction: row;
        gap: 10px;
        flex-wrap: nowrap;
    }    
    .container-napthe-home.page1 { 
        width: 50%;
    }  
    .container-napthe-home.page2 { 
        width: 50%;
    }    
}

@media (min-width:1200px) {
	.container-header, .footer-body, .container-home, .container-header-top {
		max-width: 1180px;
	}
	
	.swiper-container {
		max-height: 300px;
	}
}

@media (min-width:1400px) {
	.theme-username-headers {
        display: block;
	}
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}