@charset "UTF-8";

@font-face {
	font-family: iciel;
	src: url(../fonts/Nabila.ttf);
}

@font-face {
	font-family: hel;
	src: url(../fonts/helvetica-neue-regular.ttf);
}

@font-face {
	font-family: yipe;
	src: url(../fonts/SVN-Yipes.otf);
}

@font-face {
	font-family: helb;
	src: url(../fonts/helvetica-neue-bold.ttf);
}

@font-face {
	font-family: hk;
	src: url(../fonts/HIEN\ KHANH\ 3.ttf);
}

@font-face {
	font-family: vni;
	src: url(../fonts/vni.ttf);
}

@font-face {
	font-family: akashi;
	src: url(../fonts/UTM\ Akashi.ttf);
}

@font-face {
	font-family: cooper;
	src: url(../fonts/UTM\ Cooper\ Black.ttf);
}
/* Main */
:root {
	--main-color: #ca0000;
	--second-color: #ca0000;
	--hover-color: #f49037;
	--color-red: #ec2d3f;
	--color-medium-red: #cc2c32;
	--color-dark-red: #c31829;
	--color-green: #cc2c32;
	--color-dark-green: #cc2c32;
	--color-black: #212529;
	--color-gray: #6c757d;
}

body {
	font-size: 14px;
	font-family: "Roboto", sans-serif;
	/* background: url('../images/bg_body.png'); */
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

a,
input,
textarea {
	outline: none;
	padding: 0px;
}

a:hover {
	text-decoration: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.w-clear:after {
	display: block;
	content: "";
	clear: both;
}

.hidden {
	display: none;
}

.clear {
	clear: both;
}

.none {
	display: none;
}

.hidden-seoh {
	visibility: hidden;
	height: 0px;
	margin: 0px;
	overflow: hidden;
}

.wrap-main,
.wrap-content {
	width: 1200px;
	margin: 30px auto;
}

.wrap-home {
	width: 100%;
	padding: 0px;
	margin: 0 auto;
}

.wrap-main {
	width: 1300px;
	/* background: url('../images/bg_main.png'); */
	padding: 30px 0;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}

.wrap-content {
	margin: auto;
}

.content-ck img {
	height: auto !important;
}

/* effect */
.effect {
	display: block;
	overflow: hidden;
}

.effect img {
	transition: 0.7s;
	width: 100%;
}

.effect:hover img {
	-webkit-transform: scale(1.2, 1.2);
	-moz-transform: scale(1.2, 1.2);
	-o-transform: scale(1.2, 1.2);
	-ms-transform: scale(1.2, 1.2);
	transform: scale(1.2, 1.2);
}

.effect-1 {
	position: relative;
	overflow: hidden;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	display: block;
}

.effect-1:after {
	position: absolute;
	top: 0;
	left: -66%;
	z-index: 2;
	display: block;
	content: "";
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
	-webkit-transform: skewX(-10deg);
	transform: skewX(-10deg);
}

.effect-1:hover:after {
	-webkit-animation: shine 0.75s;
	animation: shine 0.75s;
}

@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}

@keyframes shine {
	100% {
		left: 125%;
	}
}

.effect-2 {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	/* width: 100%; */
	/* height: 100%; */
	/* left: 0; */
	/* top: 0; */
	/* right: 0; */
	/* bottom: 0; */
	text-align: center;
}

.effect-2:before,
.effect-2:after {
	box-sizing: inherit;
	content: "";
	position: absolute;
	z-index: 9;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	left: 10px;
	top: 10px;
	transform-origin: center;
}

.effect-2:before {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transform: scale3d(0, 1, 1);
}

.effect-2:after {
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: scale3d(1, 0, 1);
}

.effect-2:hover {
	background: rgba(0, 0, 0, 0.45);
}

.effect-2:hover:before,
.effect-2:hover:after {
	transform: scale3d(1, 1, 1);
	transition: transform 0.5s;
}

.effect-2 > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s;
}

.effect-2:hover > img {
	opacity: 0.8;
}

.effect-3 > img {
	transform: translateY(0px);
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0% {
		box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
		transform: translatey(0px);
	}

	50% {
		box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
		transform: translatey(-20px);
	}

	100% {
		box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
		transform: translatey(0px);
	}
}

/* Toc */
.box-readmore {
	padding: 8px 15px;
	border: 1px solid #dedede;
	margin-bottom: 2rem;
	border-radius: 5px;
	background-color: #eeeeee;
}

.box-readmore li ul > li {
	margin: 0;
	margin-bottom: 8px;
}

.box-readmore li ul > li:before {
	content: counters(item, ".") " ";
}

.box-readmore ul {
	list-style-type: none;
	counter-reset: item;
	margin-bottom: 0px;
	padding-left: 0px !important;
	margin-top: 8px;
}

.box-readmore ul li {
	display: table;
	counter-increment: item;
	margin-bottom: 5px;
}

.box-readmore ul li:before {
	content: counters(item, ".") ". ";
	display: table-cell;
	padding-right: 5px;
}

.box-readmore ul li a {
	color: #333333;
	cursor: pointer;
	font-weight: 600;
}

.box-readmore ul li a:hover {
	color: #767676;
}

/* General */
.title-main {
	margin-bottom: 10px;
	text-align: center;
	position: relative;
}

.title-main span {
	text-transform: uppercase;
	color: var(--main-color);
	font-family: "SVNPoppinsBold";
	font-size: 22px;
}

.title-main1 {
	/* margin-bottom: 10px; */
	text-align: center;
	position: relative;
}

.title-main1 span {
	text-transform: uppercase;
	color: var(--main-color);
	font-size: 30px;
	font-weight: 500;
}

.title-main-box-2 .title-main-2 {
	text-align: center;
	font-family: Unbounded;
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	background: var(--CH-O, linear-gradient(90deg, #005527 0%, #00a652 100%));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 15px;
	padding: 6px 0 0 0;
}

.title-main-box-2 .slogan-main-2 {
	color: white;
	color: var(--TIU, #333);
	text-align: center;
	font-family: Roboto;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.title-main-box-2 .title-line {
	background: #e7a017;
}

.time-main {
	margin-bottom: 0.75rem;
	color: #999999;
}

.time-main i {
	vertical-align: top;
	margin: 3px 7px 0px 0px;
}

.time-main span {
	vertical-align: top;
	display: inline-block;
}

.share {
	padding: 17px 15px 10px 15px;
	line-height: normal;
	background: rgba(128, 128, 128, 0.15);
	margin-top: 15px;
	border-radius: 5px;
}

.share b {
	display: block;
	margin-bottom: 5px;
}

.control-owl {
	position: absolute;
	width: 100%;
	z-index: 2;
	left: 0px;
	top: calc(50% - 45px / 2);
}

.control-owl button {
	opacity: 0.5;
	top: 0px;
	position: absolute;
	outline: none;
	border: 0px;
	padding: 0px;
	margin: 0px;
	display: block;
	cursor: pointer;
	color: #ffffff;
	width: 45px;
	height: 45px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 25px;
	margin: 0px;
	background-color: #000000;
	border-radius: 3px;
	-webkit-transition: 0.3s ease-out;
	-moz-transition: 0.3s ease-out;
	-o-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}

.control-owl button:hover {
	opacity: 1;
}

.control-owl button.owl-prev {
	left: 20px;
}

.control-owl button.owl-next {
	right: 20px;
}

.form-control,
.form-control-plaintext:not(textarea),
.custom-select {
	height: calc(1em + 1.25rem + 8px);
}

.text-sm {
	font-size: 0.875rem !important;
}

/* Lazyload */
img.lazy {
	opacity: 0;
}

img:not(.initial) {
	/* transition:opacity 1s; */
}

img.initial,
img.loaded,
img.error {
	opacity: 1;
}

img:not([src]) {
	visibility: hidden;
}

/* Header */

.header {
	position: relative;
	width: 100%;
	z-index: 10;
	background: url(../images/TempImages/bg-header_01.png) no-repeat center/cover;
}

.header_bottom {
	position: relative;
	z-index: 10;
	padding: 0 0 15px 0;
	background: #ca0000;
}

.header_bottom::before {
	position: absolute;
	content: "";
	width: 244px;
	height: 49px;
	background: url("../images/af_header.png") no-repeat center;
	left: 0;
	bottom: -14px;
}

.header_bottom::after {
	position: absolute;
	content: "";
	width: 378px;
	height: 107px;
	background: url("../images/af_header2.png") no-repeat center;
	right: 0;
	bottom: -14px;
}

.box-header-login {
	background: url(../images/TempImages/bg-login.png) no-repeat center/100% 100%;
	margin: 0 0 0 auto;
	padding: 11px 13px 8px 30px;
	margin-bottom: 6px;
	justify-content: center;
	width: fit-content;
}

.hotline {
	position: relative;
	z-index: 99;
	padding: 38px 42px 17px 148px;
	background: url(../images/TempImages/bg-hotline_03.png) no-repeat center/100% 100%;
	margin-top: -20px;
}

.hotline span {
	display: block;
	color: #ffcc00;
	font-size: 22px;
	font-style: normal;
	font-weight: 500;
	line-height: 26px;
	letter-spacing: -0.3px;
}

/* Menu */
.menu.fix {
	-webkit-animation: fadeInDown 0s ease-in backwards;
	-moz-animation: fadeInDown 0s ease-in backwards;
	-o-animation: fadeInDown 0s ease-in backwards;
	-ms-animation: fadeInDown 0s ease-in backwards;
	-moz-animation-delay: 0s;
	-webkit-animation-delay: 0s;
	-o-animation-delay: 0s;
	animation-delay: 0s;
	z-index: 99;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}

.menu {
	width: 100%;
	z-index: 9;
	border-bottom: 2px solid #d6920b;
	position: relative;
	background: var(--main-2, linear-gradient(180deg, #e9a51f 0%, #f9cb53 55.73%, #ecb831 100%));
}

.menu ul {
	padding: 0px;
	list-style: none;
	width: 100%;
	margin: 0;
}

.menu ul li {
	position: relative;
	z-index: 99;
	display: inline-block;
	padding: 10px 0;
}

.menu ul li a {
	position: relative;
	z-index: 1;
	text-align: center;
	font-size: 15px;
	text-decoration: none !important;
	padding: 0 7px;
	display: flex;
	text-transform: uppercase;
	color: #3a0909;

	/* text menu */
	/* font-family: Inter; */
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 27px; /* 168.75% */
	text-transform: uppercase;
}

.menu ul li a img {
	margin-right: 5px;
}

.menu ul li a.active,
.menu ul li:hover > a {
	/* color: yellow; */
}

.menu ul li ul {
	position: absolute;
	min-width: 250px;
	background: var(--main-color);
	box-shadow: 0 3px 11px 0rgba (0, 0, 0, 0.1);
	-webkit-transform: perspective(600px) rotateX(-90deg);
	transform: perspective(600px) rotateX(-90deg);
	-webkit-transform-origin: 0 0 0;
	transform-origin: 0 0 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
	top: 100%;
	left: 0;
	display: block;
	z-index: 99;
	margin: 0;
	padding: 0;
}

.menu ul li:hover > ul {
	-webkit-transform: perspective(600px) rotateX(0);
	transform: perspective(600px) rotateX(0);
	-webkit-transform-origin: 0 0 0;
	opacity: 1;
	visibility: visible;
	transition: all 0.7s;
}

.menu ul li ul li {
	width: 100%;
	line-height: unset;
	height: unset;
	background: none;
	display: block;
}

.menu ul li ul li a {
	text-align: left;
	border-bottom: 1px solid rgb(211 51 28);
	border-radius: 0 !important;
	margin-top: 0;
	font-size: 14px;
	line-height: 40px;
	color: #fff;
	padding: 0 20px;
}

.menu ul li ul li:last-child > a {
	border-bottom: 0px;
}

.menu ul li ul li a h2 {
	font-size: 14px;
	padding: 12px 15px;
}

.menu ul li ul li ul {
	top: 0px;
	left: 100%;
	width: 360px;
	display: flex;
	flex-wrap: wrap;
}

.menu ul li ul li ul li {
	width: 50%;
}

/* Search */
.search {
	width: 200px;
	background-color: #8857a2;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 500px;
}

.search p {
	width: 35px;
	line-height: 35px;
	cursor: pointer;
	text-align: center;
	margin: 0px;
	color: #fff;
	font-size: 17px;
}

.search input {
	width: calc(100% - 35px);
	height: 35px;
	outline: none;
	border: 0px;
	background: transparent;
	padding-left: 15px;
	font-size: 13px;
	color: #fff;
}

.search input::-webkit-input-placeholder {
	color: #fff;
}

.search input:-moz-placeholder {
	color: #fff;
}

.search input::-moz-placeholder {
	color: #fff;
}

.search input:-ms-input-placeholder {
	color: #fff;
}

#main_left,
#main_right {
	width: 270px;
	position: sticky;
	top: 60px;
	height: fit-content;
}

#main_mid {
	width: calc(100% - 560px);
}

/* Slideshow */
.slideshow {
	position: relative;
	overflow: hidden;
}

.slideshow-item {
	display: block;
	cursor: pointer;
}

.slideshow:hover .control-slideshow {
	opacity: 1;
}

.control-slideshow {
	opacity: 0;
}

.slider_video iframe {
	width: 100%;
	height: 700px;
	display: block;
}

/* Breadcrumb */
.breadCrumbs {
	background-color: #eee;
}

.breadCrumbs .wrap-content {
	padding: 0.75rem 15px;
}

.breadCrumbs .wrap-content .breadcrumb {
	padding: 0;
	margin-bottom: 0;
	background-color: transparent;
	border-radius: 0;
}

.breadCrumbs .wrap-content .breadcrumb-item a {
	color: var(--color-black);
}

.breadCrumbs .wrap-content .breadcrumb-item.active a {
	color: var(--color-gray);
}

/* Product */
.row10 {
	margin-left: -10px;
	margin-right: -10px;
}

.row7 {
	margin-left: -7px;
	margin-right: -7px;
}

.col_product {
	margin-bottom: 20px;
	padding-left: 10px;
	padding-right: 10px;
}

.owl_product .col_product {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

.item_product {
	position: relative;
	overflow: hidden;
	background: #fff;
}

.img_product {
	position: relative;
	z-index: 0;
}

.img_product img {
	/* border-radius: 5px; */
}

.info_product {
	padding: 10px 0 0;
	text-align: center;
}

.info_product h3 {
	font-size: 16px;
	margin: 0;
	text-transform: capitalize;
	font-weight: 700;
}

.info_product h3 a {
	color: #393939;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-height: 25px;
	height: 25px;
}

.item_product:hover .info_product h3 a {
	color: #d60c0c;
}

.price-product {
	color: #2f2f2f;
	font-size: 14px;
}

.price-product span {
	display: inline-block;
	color: #d60b0b;
	font-size: 16px;
	font-weight: 700;
}

/* Product Detail */
.grid-pro-detail {
	margin-bottom: 2rem;
}

.left-pro-detail {
	position: relative;
	text-align: center;
}

.left-pro-detail .MagicZoom {
	border: 1px solid #eee;
	padding: 7px;
	border-radius: 5px;
	background-color: #ffffff;
}

.gallery-thumb-pro {
	position: relative;
	margin-top: 10px;
}

.owl-pro-detail {
	padding: 0px 30px;
}

.control-pro-detail button {
	background-color: transparent;
	color: #222222;
	opacity: 1;
	width: 25px;
	font-size: 23px;
}

.control-pro-detail button:hover {
	opacity: 0.7;
}

.control-pro-detail button.owl-prev {
	left: 0px;
}

.control-pro-detail button.owl-next {
	right: 0px;
}

.thumb-pro-detail {
	display: block !important;
	border: 1px solid #eee;
	padding: 5px;
	border-radius: 3px;
	cursor: pointer;
	background-color: #ffffff;
}

.thumb-pro-detail.mz-thumb.mz-thumb-selected {
	border-color: #cecfd2;
}

.thumb-pro-detail img {
	box-shadow: none !important;
	filter: brightness(100%) !important;
	border-bottom: 0px !important;
	padding-bottom: 0px !important;
}

.title-pro-detail {
	text-transform: capitalize;
	font-size: 20px;
	display: block;
	font-weight: 700;
}

.comment-pro-detail {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.social-plugin-pro-detail {
	margin-bottom: 1rem;
	margin-top: 0px !important;
}

.desc-pro-detail {
	margin-bottom: 1rem;
	font-size: 15px;
}

.attr-pro-detail {
	list-style: none;
	padding: 0px;
}

.attr-pro-detail li {
	margin-bottom: 0.5rem;
	font-size: 16px;
}

.attr-label-pro-detail {
	margin: 0px 5px 0px 0px;
	font-weight: 700;
}

.attr-label-pro-detail.d-block {
	display: block;
	margin: 0px 0px 5px 0px;
}

.attr-content-pro-detail {
	display: inline-block;
	margin-bottom: 0px;
}

.price-new-pro-detail {
	font-weight: 700;
	font-size: 20px;
	color: var(--color-red);
}

.price-old-pro-detail {
	color: var(--color-gray);
	text-decoration: line-through;
	padding-left: 10px;
}

.tags-pro-detail a {
	float: left;
	font-size: 13px;
	padding-bottom: 0.375rem;
	margin: 0px 5px 5px 0px;
}

.tags-pro-detail a i {
	font-size: 11px;
	margin: 5px 5px 0px 0px;
}

.tabs-pro-detail {
	margin-top: 1rem;
}

.tabs-pro-detail .nav-tabs .nav-link {
	font-size: 15px;
	color: #000;
	font-weight: 700;
	text-transform: capitalize;
	border: none;
}

.tabs-pro-detail .nav-tabs .nav-link:hover,
.tabs-pro-detail .nav-tabs .nav-link.active,
.tabs-pro-detail .nav-tabs .nav-item.show .nav-link {
	background: var(--main-color);
	color: #fff;
	border: none;
}

#tabsProDetail {
	border: none;
}

#tabsProDetailContent {
	border: 1px solid #dee2e6;
	padding: 15px;
}

/* News */
.left-content {
	width: calc(100% - 320px);
	margin-right: 40px;
}

.right-content {
	width: 280px;
}

.blog-item {
	text-align: center;
	/* display: flex; */
	position: relative;
	margin-bottom: 20px;
	width: 100%;
	align-items: start;
	justify-content: space-between;
}

.blog-item .blog-item-thumbnail {
	/* width: 120px; */
	overflow: hidden;
	border: 1px solid #ccc;
}

.blog-item .blog-item-thumbnail img {
	width: 100%;
}

.blog-item .blog-item-mains {
	/* width: calc(100% - 130px); */
}

.blog-item .blog-item-mains .blog-item-name {
	line-height: 24px;
	margin-bottom: 0;
}

.blog-item .blog-item-mains .blog-item-name a {
	color: #000;
	font-size: 14px;
	display: -webkit-box;
	width: 100%;
	font-weight: 600;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 25px;
	height: 25px;
}

.blog-item .blog-item-mains .blog-item-name a:hover {
	color: #ff0000;
}

.blog-item .blog-item-mains .post-time {
	font-size: 13px;
	color: #999;
	margin-bottom: 5px;
	font-family: var(--font-main);
}

.blog-item .blog-item-mains .blog-item-summary {
	color: #000;
	font-weight: 400;
	font-family: var(--font-main);
	display: -webkit-box;
	width: 100%;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 20px;
	font-size: 13px;
	height: 60px;
}

.blog-item::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #eee;
	position: absolute;
	left: 0;
	bottom: -10px;
}

.othernews b {
	margin-bottom: 10px;
}

.list-news-other {
	padding-left: 17px;
	list-style: square;
}

.list-news-other li {
	margin-bottom: 2px;
}

.list-news-other li a {
	text-transform: none;
	color: #333333;
}

.list-news-other li a:hover {
	color: var(--color-red);
}

.news-time {
	color: #84878a;
	margin-bottom: 0.25rem;
}

/* Contact */
.contact-article {
	margin-bottom: 3rem;
}

.contact-input {
	position: relative;
	margin-bottom: 15px;
}

.contact-input textarea {
	resize: none;
	height: 150px;
}

.contact-input .custom-file-label::after {
	content: attr(title);
}

.contact-map {
	position: relative;
	height: 500px;
}

.contact-map iframe {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100% !important;
	height: 100% !important;
}

/* Footer */
.footer {
	position: relative;
	background: url(../images/TempImages/bg-footer-2.png) no-repeat center/cover;
}

.box-one-footer {
	background: transparent !important;
}

.title_ft {
	margin-bottom: 10px;
	color: var(--TRNG, #fff);
	font-family: hk;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	background: var(--main-2, linear-gradient(180deg, #e9a51f 0%, #f9cb53 55.73%, #ecb831 100%));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-top: -26px;
}

.footer-article .wrap-content {
	padding: 40px 0 20px;
}

.footer-title {
	text-transform: uppercase;
	font-size: 17px;
	margin: 5px 0 25px;
	color: #fff;
	position: relative;
	padding-bottom: 10px;
	font-weight: 500;
}

.footer-title::before {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 35px;

	height: 1px;
	background: #fff;
}

.footer-title1 {
	text-transform: uppercase;
	font-size: 15px;
	margin: 0px 0 24px;
	color: #fff;
	position: relative;
	font-weight: 500;
}

.footer-info {
	color: #fff;
	font-size: 15px;
}

.footer-ul {
	/* list-style: none; */
	padding: 0px;
	margin: 0px;
	list-style-position: inside;
}

.footer-ul li {
	margin-bottom: 10px;
	line-height: 25px;
	color: #fff;
	font-size: 15px;
}

.footer-ul li:last-child {
	margin-bottom: 0px;
}

.footer-ul li a {
	color: #fff;
}

.footer-ul li a:hover {
	text-decoration: none;
	color: yellow;
}

.purchase-info {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 80%;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 auto;
}

.maps_ft {
	border: 1px solid #e22d37;
	padding: 4px;
}

.maps_ft iframe {
	width: 100%;
	height: 235px;
	display: block;
}

.footer-powered {
	color: white;
	font-size: 16px;
	padding: 20px 0;
	line-height: 20px;
	font-weight: 500;
	border-top: 1px solid white;
	
rgb(255,255,255);
	border-image: linear-gradient(281deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.2) 100%);
	border-image-slice: 1;
}

.footer-statistic {
	text-align: right;
}

.footer-statistic span {
	padding-right: 15px;
}

.footer-statistic span:last-child {
	padding-right: 0px;
}

/* Like Share */
.social-plugin {
	display: flex;
	justify-content: flex-start;
	margin-top: 10px;
}

.social-plugin .at-share-btn {
	margin-bottom: 0px !important;
}

.social-plugin .zalo-share-button {
	margin-left: 3px;
}

/* Paging */
.pagination-home .pagination .page-item .page-link {
	color: #555555;
	font-size: 0.875rem;
}

.pagination-home .pagination .page-item.active .page-link {
	color: #ffffff;
	background-color: #555555;
	border-color: #555555;
}

/* Paging Ajax */
.pagination-ajax {
	text-align: center;
}

.pagination-ajax a {
	display: inline-block;
	vertical-align: top;
	margin: 0px 3px 3px 3px;
	width: 35px;
	height: 35px;
	line-height: 33px;
	color: #666 !important;
	border: 1px solid #e6e6e6;
	font-size: 13px;
	cursor: pointer;
	text-decoration: none !important;
	background-color: #ffffff;
}

.pagination-ajax a.current,
.pagination-ajax a:hover {
	color: #ffffff !important;
	border-color: var(--color-red);
	background-color: var(--color-red);
}

.pagination-ajax a.first,
.pagination-ajax a.last,
.pagination-ajax a.prev,
.pagination-ajax a.next {
	text-indent: -9999px;
	position: relative;
	background-color: #ffffff !important;
}

.pagination-ajax a.first:before,
.pagination-ajax a.last:before,
.pagination-ajax a.prev:before,
.pagination-ajax a.next:before {
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
}

.pagination-ajax a.first:before {
	background-image: url(../images/page-first.png);
}

.pagination-ajax a.last:before {
	background-image: url(../images/page-last.png);
}

.pagination-ajax a.prev:before {
	background-image: url(../images/page-prev.png);
}

.pagination-ajax a.next:before {
	background-image: url(../images/page-next.png);
}

/* Popup */
#popup .modal-body {
	padding: 20px;
}

/* Hidden Google Captcha */
.grecaptcha-badge {
	display: none !important;
	width: 0px !important;
	height: 0px !important;
	visibility: hidden !important;
	overflow: hidden;
}

/* Hidden Check Grammar Coccoc */
coccocgrammar {
	display: none;
}

/* Scroll Top */
.scrollToTop {
	width: 41px;
	height: 41px;
	text-align: center;
	font-weight: bold;
	color: #444;
	text-decoration: none;
	position: fixed;
	bottom: 65px;
	right: 25px;
	display: none;
	z-index: 10;
	cursor: pointer;
}

/* Text Hide */
.text-split {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 3;
}

.text-split-2 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 2;
}

.text-split-5 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 5;
}

.text-split-3 {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	-webkit-line-clamp: 3;
}

/* Transition All */
.transition {
	-webkit-transition: 0.3s ease-out;
	-moz-transition: 0.3s ease-out;
	-o-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
}

/* Scale IMG */
.scale-img {
	overflow: hidden;
	display: block;
}

.scale-img img {
	-webkit-transition: 0.3s ease-out;
	-moz-transition: 0.3s ease-out;
	-o-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
	-moz-transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
}

.scale-img:hover > img {
	-webkit-transition: 0.3s ease-out;
	-moz-transition: 0.3s ease-out;
	-o-transition: 0.3s ease-out;
	transition: 0.3s ease-out;
	-moz-transform: scale(1.1, 1.1);
	-webkit-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}

/* Blink */
.blink {
	-webkit-animation-name: blink;
	-webkit-animation-duration: 1s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-name: blink;
	-moz-animation-duration: 1s;
	-moz-animation-timing-function: linear;
	-moz-animation-iteration-count: infinite;
	animation-name: blink;
	animation-duration: 1s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@-moz-keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* Button Frame */
.btn-frame {
	display: block;
	width: 50px;
	height: 50px;
	position: fixed;
	right: 20px;
	z-index: 10;
	cursor: pointer;
}

.btn-frame i {
	display: flex;
	display: -ms-flex;
	justify-content: center;
	align-items: center;
	-ms-flex-align: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--main-color);
	position: relative;
	z-index: 1;
}

.btn-frame i img {
	vertical-align: middle;
	width: 70%;
}

.btn-frame .animated.infinite {
	animation-iteration-count: infinite;
}

.btn-frame .kenit-alo-circle {
	width: 60px;
	height: 60px;
	top: -5px;
	right: -5px;
	position: absolute;
	background-color: transparent;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 2px solid rgba(7, 41, 103, 0.8);
	opacity: 0.1;
	border-color: var(--main-color);
	opacity: 0.5;
}

.btn-frame .zoomIn {
	animation-name: zoomIn;
}

.btn-frame .animated {
	animation-duration: 1s;
	animation-fill-mode: both;
}

.btn-frame .kenit-alo-circle-fill {
	width: 70px;
	height: 70px;
	top: -10px;
	right: -10px;
	position: absolute;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 2px solid transparent;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	background-color: rgba(7, 41, 103, 0.35);
	opacity: 0.4;
}

.btn-frame .pulse {
	animation-name: pulse;
}

/* Zalo */
.btn-zalo {
	bottom: 315px;
}

/* Phone */
.btn-phone {
	bottom: 230px;
}

/* Messenger */
.js-facebook-messenger-container.closed,
.js-facebook-messenger-tooltip.closed {
	display: none !important;
}

.js-facebook-messenger-tooltip {
	bottom: 97px;
	right: 97px;
}

.js-facebook-messenger-tooltip {
	color: #404040;
	background: #fff;
}

.js-facebook-messenger-box,
.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
	z-index: 999;
}

.js-facebook-messenger-tooltip {
	display: none;
	position: fixed;
	text-align: center;
	border-radius: 10px;
	overflow: hidden;
	font-size: 12px;
	line-height: 1;
	padding: 10px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: rgba(0, 0, 0, 0.15) 0 2pt 10pt;
	z-index: 1e30;
}

.js-facebook-messenger-close-tooltip {
	width: 10px;
	height: 10px;
	display: inline-block;
	cursor: pointer;
	margin-left: 10px;
}

.js-facebook-messenger-box.rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand;
}

.js-facebook-messenger-box.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.js-facebook-messenger-box,
.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
	z-index: 999;
}

.js-facebook-messenger-box {
	display: block;
	position: fixed;
	cursor: pointer;
	bottom: 150px;
	right: 17px;
	width: 56px;
	height: 56px;
	text-align: center;
	background: var(--main-color);
	border-radius: 100%;
	overflow: hidden;
	z-index: 99;
	-webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
	box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
}

.js-facebook-messenger-box.rotate svg#fb-msng-icon {
	transform: rotate(0deg);
}

.js-facebook-messenger-box svg#fb-msng-icon {
	width: 32px;
	height: 33px;
	position: absolute;
	top: 13px;
	left: 12px;
	opacity: 1;
	overflow: hidden;
	-webkit-transition:
		opacity 160ms ease-in-out,
		transform 160ms ease-in-out;
	-moz-transition:
		opacity 160ms ease-in-out,
		transform 160ms ease-in-out;
	-o-transition:
		opacity 160ms ease-in-out,
		transform 160ms ease-in-out;
	transition:
		opacity 160ms ease-in-out,
		transform 160ms ease-in-out;
}

.js-facebook-messenger-box.rotate svg#close-icon {
	transform: rotate(-45deg);
}

.js-facebook-messenger-box svg#close-icon {
	opacity: 0;
	width: 19px;
	height: 20px;
	position: absolute;
	top: 19px;
	left: 19px;
	-webkit-transition:
		opacity 160ms ease-in-out,
		transform 160ms ease-in-out;
	-moz-transition:
		opacity 160ms ease-in-out,
		transform 160ms ease-in-out;
	-o-transition:
		opacity 160ms ease-in-out,
		transform 160ms ease-in-out;
	transition:
		opacity 160ms ease-in-out,
		transform 160ms ease-in-out;
}

.js-facebook-messenger-container,
.js-facebook-messenger-container-button {
	z-index: 1000;
}

.js-facebook-messenger-container {
	position: fixed;
	opacity: 0;
	transform: translateY(50px);
	bottom: 110px;
	right: 90px;
	border-radius: 10px;
	pointer-events: none;
	box-shadow:
		0 1px 6px rgba(0, 0, 0, 0.06),
		0 2px 32px rgba(0, 0, 0, 0.16);
	-webkit-transition:
		transform 160ms ease-in-out,
		opacity 160ms ease-in-out;
	-moz-transition:
		transform 160ms ease-in-out,
		opacity 160ms ease-in-out;
	-o-transition:
		transform 160ms ease-in-out,
		opacity 160ms ease-in-out;
	transition:
		transform 160ms ease-in-out,
		opacity 160ms ease-in-out;
}

.js-facebook-messenger-top-header {
	width: 220px;
}

.js-facebook-messenger-top-header {
	color: #ffffff;
	background: var(--main-color);
}

.js-facebook-messenger-top-header {
	display: block;
	position: relative;
	width: 220px;
	background: var(--main-color);
	color: #ffffff;
	text-align: center;
	line-height: 1;
	padding: 10px;
	font-size: 14px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.js-facebook-messenger-container iframe,
.js-facebook-messenger-container-button iframe {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.js-facebook-messenger-box,
.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
	z-index: 999;
}

.js-facebook-messenger-container,
.js-facebook-messenger-container-button {
	z-index: 1000;
}

.js-facebook-messenger-top-header {
	color: #ffffff;
	background: var(--main-color);
}

.js-facebook-messenger-top-header {
	width: 220px;
}

.js-facebook-messenger-tooltip {
	color: #404040;
	background: #fff;
}

.js-facebook-messenger-container.open {
	transform: translateY(0px);
	opacity: 1;
	pointer-events: all;
}

.js-facebook-messenger-tooltip {
	bottom: 97px;
	right: 97px;
}

.js-facebook-messenger-box.open svg#fb-msng-icon {
	opacity: 0;
}

.js-facebook-messenger-box.rotate.open svg#close-icon {
	transform: rotate(0deg);
}

.js-facebook-messenger-box.open svg#close-icon {
	opacity: 1;
}

/* Toolbar */
.toolbar {
	background: var(--color-red);
	width: 100%;
	padding: 3vw;
	bottom: 0px;
	position: fixed;
	z-index: 500;
	height: auto;
	left: 0px;
}

.toolbar ul {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0px;
	margin: 0px;
}

.toolbar ul li {
	text-align: center;
	width: 25%;
}

.toolbar ul li a {
	display: block;
	width: 100%;
	cursor: pointer;
}

.toolbar ul li a img {
	height: 6vw;
	width: auto;
}

.toolbar ul li a span {
	font-weight: 400;
	color: #ffffff;
	font-size: 3.5vw;
	display: none;
}
.toolbar {
	background: #ec2d3f;
	width: 100%;
	padding: 3vw;
	bottom: 0px;
	position: fixed;
	z-index: 500;
	height: auto;
	left: 0px;
}

.toolbar ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.toolbar ul li {
	text-align: center;
	width: 25%;
}

.toolbar ul li a {
	display: block;
	width: 100%;
	cursor: pointer;
}

.toolbar ul li a img {
	height: 6vw;
	width: auto;
}

.toolbar ul li a span {
	font-weight: 400;
	color: #ffffff;
	font-size: 3.5vw;
	display: none;
}

/* Fixbar */
.fixbar {
	bottom: 0;
	display: block;
	background: #f0eff4;
	border-top: 1px solid #ddd;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: fixed;
	margin: 0;
	z-index: 500;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	height: 50px;
}

.fixbar ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

.fixbar ul li {
	display: inline-block;
	margin: 0 auto 10px;
	text-align: center;
	width: 25%;
	float: left;
}

.fixbar .icon-cart-mobile,
.fixbar .icon-cart-new,
.fixbar .icon-home-new,
.fixbar .icon-hotdeal-new {
	width: 20px;
	height: 20px;
	display: block;
	margin: 8px auto 0;
}

.fixbar .icon-cart-mobile {
	background: url(../images/cart-mobile.png) no-repeat;
}

.cart-total-header-mobile {
	font-size: 10px;
	position: absolute;
	background: red;
	color: #fff !important;
	border-radius: 50%;
	height: 15px;
	width: 15px;
	line-height: 15px;
	top: 5px;
	margin-left: 5px;
}

.fixbar ul li a {
	font-size: 11px;
	text-decoration: none;
	color: #333;
}

.fixbar ul li a i {
	font-size: 20px;
}

/* Plugbar */
.plugbar {
	position: fixed;
	bottom: 0;
	left: 0;
	border-top: 1px solid #eae6e6;
	width: 100%;
	right: 0;
	max-width: 767px;
	margin: 0 auto;
	background: #ffffff;
	padding: 9px 10px 10px 7px;
	z-index: 10;
}

.plugbar ul {
	list-style: none;
	padding: 0;
	margin: 0px;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.plugbar ul li {
	width: 20%;
	float: left;
}

.plugbar ul li a {
	display: block;
	color: #696969;
	font-size: 12px;
	text-align: center;
	position: relative;
}

.plugbar ul li a i {
	font-size: 20px;
	color: #696969;
}

.plugbar ul li a span {
	position: absolute;
	width: 50px;
	height: 50px;
	top: -40px;
	left: calc(50% - 50px / 2);
	font-size: 14px;
	display: block;
	border: 1px solid rgba(234, 230, 230, 0.5);
	border-radius: 100%;
}

/* Combo Phone */
.support-online {
	position: fixed;
	z-index: 999;
	left: 10px;
	bottom: 0px;
}

.support-online a {
	position: relative;
	margin: 20px 10px;
	text-align: left;
	width: 40px;
	height: 40px;
}

.support-online i {
	width: 40px;
	height: 40px;
	background: #43a1f3;
	color: #ffffff;
	border-radius: 100%;
	font-size: 20px;
	text-align: center;
	line-height: 1.9;
	position: relative;
	z-index: 999;
}

.support-online a span {
	border-radius: 2px;
	text-align: center;
	background: rgb(103, 182, 52);
	padding: 9px;
	display: none;
	width: 180px;
	margin-left: 10px;
	position: absolute;
	color: #ffffff;
	z-index: 999;
	top: 0px;
	left: 40px;
	transition: all 0.2s ease-in-out 0s;
	-moz-animation: headerAnimation 0.7s 1;
	-webkit-animation: headerAnimation 0.7s 1;
	-o-animation: headerAnimation 0.7s 1;
	animation: headerAnimation 0.7s 1;
}

.support-online a:hover span {
	display: block;
}

.support-online a {
	display: block;
}

.support-online a span:before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 10px 0;
	border-color: transparent rgb(103, 182, 52) transparent transparent;
	position: absolute;
	left: -10px;
	top: 10px;
}

.support-online .kenit-alo-circle-fill {
	width: 60px;
	height: 60px;
	top: -10px;
	position: absolute;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 2px solid transparent;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	background-color: rgba(0, 175, 242, 0.5);
	opacity: 0.75;
	right: -10px;
}

.support-online .kenit-alo-circle {
	width: 50px;
	height: 50px;
	top: -5px;
	right: -5px;
	position: absolute;
	background-color: transparent;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 2px solid rgba(30, 30, 30, 0.4);
	opacity: 0.1;
	border-color: #0089b9;
	opacity: 0.5;
}

.support-online .support-online .btn-support {
	cursor: pointer;
}

.support-online .mes i {
	background: orange;
}

.support-online .sms i {
	background: red;
}

.support-online .call-now i {
	background: green;
}

/* Phone Switch */
.widget-mobile {
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	bottom: 10px;
	z-index: 9999999;
}

#my-phone-circle {
	position: relative;
	width: 50px !important;
	height: 50px !important;
}

.wcircle-open .wcircle-icon i:before {
	content: "\f00d";
}

.wcircle-icon {
	background: #1282fc;
	border-radius: 50%;
	display: flex !important;
	display: -ms-flex !important;
	align-items: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative !important;
}

.wcircle-icon:before {
	position: absolute;
	content: "";
	width: 60px;
	height: 60px;
	background: rgba(18, 130, 252, 0.5);
	border: 1px solid #ffffff;
	border-radius: 50%;
	left: -5px;
	top: -5px;
	-webkit-animation: pulse 1s infinite ease-in-out;
	-moz-animation: pulse 1s infinite ease-in-out;
	-ms-animation: pulse 1s infinite ease-in-out;
	-o-animation: pulse 1s infinite ease-in-out;
	animation: pulse 1s infinite ease-in-out;
}

.wcircle-icon:after {
	position: absolute;
	content: "";
	width: 80px;
	height: 80px;
	background: rgba(18, 130, 252, 0.5);
	border-radius: 50%;
	left: -15px;
	top: -15px;
	-webkit-animation: zoomIn 2s infinite ease-in-out;
	-moz-animation: zoomIn 2s infinite ease-in-out;
	-ms-animation: zoomIn 2s infinite ease-in-out;
	-o-animation: zoomIn 2s infinite ease-in-out;
	animation: zoomIn 2s infinite ease-in-out;
}

.wcircle-menu {
	position: absolute !important;
	left: 0;
	top: 0;
	display: none;
}

.wcircle-menu-item {
	width: 50px;
	height: 50px;
	background: #1282fc;
	border-radius: 50%;
	display: flex;
	display: -ms-flex;
	align-items: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.wcircle-menu-item img {
	width: 50px;
	height: 50px;
	display: block;
	border-radius: 50%;
}

.wcircle-menu-item i,
.wcircle-icon i {
	font-size: 25px;
	color: #ffffff;
	position: relative;
	z-index: 9999;
}

.shake-anim {
	-webkit-animation: shake-anim 1s infinite ease-in-out;
	-moz-animation: shake-anim 1s infinite ease-in-out;
	-ms-animation: shake-anim 1s infinite ease-in-out;
	-o-animation: shake-anim 1s infinite ease-in-out;
	animation: shake-anim 1s infinite ease-in-out;
	-webkit-transform-origin: 50% 50%;
	-moz-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	-o-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

@-moz-keyframes shake-anim {
	0% {
		transform: rotate(0) scale(1) skew(1deg);
	}

	10%,
	30% {
		-moz-transform: rotate(-25deg) scale(1) skew(1deg);
	}

	20%,
	40% {
		-moz-transform: rotate(25deg) scale(1) skew(1deg);
	}

	100%,
	50% {
		-moz-transform: rotate(0) scale(1) skew(1deg);
	}
}

@-webkit-keyframes shake-anim {
	0%,
	100%,
	50% {
		-webkit-transform: rotate(0) scale(1) skew(1deg);
	}

	10%,
	30% {
		-webkit-transform: rotate(-25deg) scale(1) skew(1deg);
	}

	20%,
	40% {
		-webkit-transform: rotate(25deg) scale(1) skew(1deg);
	}
}

@-o-keyframes shake-anim {
	0%,
	100%,
	50% {
		-o-transform: rotate(0) scale(1) skew(1deg);
	}

	10%,
	30% {
		-o-transform: rotate(-25deg) scale(1) skew(1deg);
	}

	20%,
	40% {
		-o-transform: rotate(25deg) scale(1) skew(1deg);
	}
}

/* Header cus */
.header_bottom::before {
	width: 0;
}

.header::before {
	width: 0;
}

.header::after {
	width: 0;
}

.header_bottom::after {
	position: absolute;
	content: "";
	width: 0;
	height: 0;
	/* background: url(../images/af_header.png) no-repeat center; */
	left: 0;
	bottom: -14px;
}

.header-under-banner {
	font-size: 23px;
	text-align: center;
	margin: 10px 0;
	font-family: iciel;
	color: #d10000;
}

.header-under-banner span {
	padding: 4px 91px;
	border-radius: 10px;
	background: rgb(231, 148, 23);
	background: linear-gradient(
		357deg,
		rgba(231, 148, 23, 1) 0%,
		rgba(248, 201, 81, 1) 54%,
		rgba(231, 148, 23, 1) 100%
	);
}

.header_top i {
	margin-right: 9px;
}

.box-hotline {
	margin-bottom: 0px;
}

.box-email {
	margin-top: 20px;
	margin-bottom: 9px;
	text-align: center;
	background: linear-gradient(90deg, #900000, #d60001, #b10000);
	margin: 0 10%;
	padding: 4px !important;
}

.blink {
	-webkit-animation-name: blink;
	-webkit-animation-duration: 1s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-name: blink;
	-moz-animation-duration: 1s;
	-moz-animation-timing-function: linear;
	-moz-animation-iteration-count: infinite;
	animation-name: blink;
	animation-duration: 1s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* Content so xo */
td.tb-td {
	display: flex;
}

.div-td {
	padding: 0 10px !important;
}

td.tb-td {
	background: transparent !important;
}

.config_Item.f-shrink {
	flex-shrink: 0;
}

.box-dove input {
	width: inherit;
}

.box-dove {
	padding: 15px 15px 5px 15px;
	background: #f9f9f9;
	border: 1px solid #e0e0e0;
}

.title-dove {
	font-size: 16px;
	font-weight: 700;
}

.box-dove input,
.box-dove select {
	border-radius: 5px;
	border: 1px solid #d0d0d0;
	min-height: 35px;
	background: transparent;
	margin-bottom: 10px;
}

.slogan-main {
	text-align: center;
	font-size: 18px;
	font-weight: 800;
	color: #ff0000;
}

.veso-info {
	padding: 20px 0;
	background: #cccccc80;
}

div#kq_dove {
	text-align: center;
}

span.sodo-info {
	font-weight: 700;
	color: #ad0606;
	font-size: 16px;
}

.slogan-dove {
	font-size: 20px;
	font-weight: 500;
}

.box-title-dove {
	text-align: left;
	padding: 16px 0;
}

.zoom-number span {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #f9cb53;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #cfae55;
}

td.tienich_kq .row_loto1:last-child {
	background: #f0e2d1;
	border: 1px solid #c9bcbc;
}

.dove-sm button {
	background: #d10000;
	border: 0;
	width: 100%;
	color: white;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 14px;
	padding: 10px 0 8px;
	border-radius: 5px;
}

.tab_phongthuy ul {
	list-style: none;
	/* margin: 0 15%; */
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wrap-danhmuc {
	padding: 50px 0;
	background: url(../images/bg_main.png);
}

.slogan-main-2 {
	font-size: 17px;
	margin-bottom: 20px;
	color: #ff0000;
	text-align: center;
	font-family: Roboto;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.title-main-2 {
	text-transform: uppercase;
	text-align: center;
	font-size: 35px;
	font-style: normal;
	font-weight: 700;
	color: #d10000;
	margin-bottom: 10px;
}

.title-line {
	width: 5%;
	height: 1px;
	background: var(--main-color);
	text-align: center;
	margin: 10px auto 30px auto;
}

/* Chi nhánh  */
.wrap-chinhanh {
	background-size: cover;
}

.chinhanh-desc svg {
	flex-shrink: 0;
}

.chinhanh-box {
	padding: 10px;
	border: 1px solid #cdcdcd;
	background: #f9f9f9;
	border-radius: 0 0 10px 10px;
	border-width: 0 1px 1px 1px;
}

.chinhanh-info.hover-info {
	margin: 15px 0 0 0;
	text-align: left;
}

.chinhanh-desc {
	font-size: 16px;
	align-items: unset !important;
	color: white;
	color: var(--TIU, #333);
	font-size: 15px;
	font-style: normal;
	font-weight: 700;
	line-height: 20px;
}

.chinhanh-image.hover-img a {
	border-radius: 10px;
}

/* Gallery */
.col-gap-20 {
	padding: 0 10px !important;
}

.row-gap-20 {
	margin: 0 -10px !important;
}

.gallery-image {
	margin-bottom: 20px;
}

.gallery-image a {
	border-radius: 13px;
}

.wrap-gallery {
	padding: 30px 0 30px 0;
}

.gallery-wm a {
	width: fit-content;
	font-size: 17px;
	display: block;
	padding: 10px 0px;
	color: #fff;
	text-transform: uppercase;
	background-color: #a00000;
	border: 1px solid #a00000;
	font-weight: 600;
	border-radius: 5px;
	padding: 10px 30px;
	margin: 10px auto;
}

.feedback-info {
	background: url(../images/TempImages/decor-feedback.png) no-repeat;
}

.wrap-feedback {
	/* background: url(../images/TempImages/bg-feedback.png) no-repeat; */
	background-size: cover;
	/* background-color: #F7F7F7; */
	margin-bottom: -38px;
	z-index: 2;
	position: relative;
}

.feedback-image a img {
	border-radius: 50%;
}

.feedback-image img:last-child {
	border-radius: 0 !important;
	margin-left: -35px;
}

.feedback-image {
	background: white;
	padding: 10px 10px 50px 10px;
	border-radius: 15px;
	box-shadow: 0px 6px 9px #ccc;
}

.feedback-name {
	margin-top: -33px;
	font-size: 20px;
	color: white;
	padding: 20px;
}

.feedback-desc {
	padding-top: 15px;
}

.news-nb-date {
	position: absolute;
	bottom: 0;
	padding: 5px 10px;
	color: white;
	font-size: 18px;
	background: #d10000;
	font-family: hel;
	border-radius: 0 14px 0 0px;
}

.newsnb-image {
	position: relative;

	overflow: hidden;
	flex-shrink: 0;
}

.wrap-newsnb {
	padding: 30px 0;
}

.newsnb-name {
	/* 200% */

	text-transform: uppercase;

	color: var(--3, #393939);

	font-size: 15px;

	font-style: normal;

	font-weight: 600;

	line-height: normal;

	letter-spacing: -0.32px;

	margin-bottom: 10px;
}

.box-nhabao {
	width: 35%;
	margin: 10px auto;
}

.newsnb-desc {
	font-size: 14px;
	color: black;
	color: var(--tiu, #393939);
	/* text-align: justify; */
	font-family: Roboto;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 25px;
	/* 166.667% */
}

/* Fake order */
.show_order {
	position: fixed;
	bottom: -300px;
	left: 20px;
	background: #fff;
	width: 450px;
	z-index: 999;
	box-shadow: 0px 0px 5px #999;
	transition: all 1s;
}

.ds_order h3 {
	font-size: 13px;
	word-break: break-all;
	word-spacing: normal;
}

.box_order {
	display: flex;
	align-items: center;

	position: relative;
}

.box_order img {
	margin-right: 10px;
	width: 80px;
}

.box_order .fake_order_time {
	padding: 5px;
	/* position: absolute;
	right: 10px;
	bottom: 10px; */
	text-align: right;
	width: 100%;
	font-size: 12px;
	font-style: italic;
}

.ds_order {
	padding-top: 10px;
}

/* HHeader-form */
.checkbox-hheader {
	padding-left: 25px;
}

.dk-header a {
	color: #fff;
	font-size: 15px;
	margin: 0 10px;
}

/*  */

.btnphongto {
	border-radius: 5px;
	background: var(--CH-O, linear-gradient(90deg, #005527 0%, #00a652 100%));
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.about-us-sub-name {
	color: var(--NHN, #c90000);
	font-family: Unbounded;
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.about-name-2 {
	color: var(--TIU, #333);
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.about-us-name {
	position: relative;
	margin-bottom: 15px;
	padding-left: 25px;
}

.about-us-wm a {
	display: inline-flex;
	padding: 11px 20px;
	justify-content: center;
	align-items: center;
	/* gap: 10px; */
	border-radius: 5px;
	background: var(--NHN, #c90000);
	color: white;
	text-transform: uppercase;
}

.about-us-wm {
	margin-top: 20px;
}

.about-us-name:before {
	content: "";
	position: absolute;
	width: 4px;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 100px;
	background: var(--CH-O, linear-gradient(90deg, #005527 0%, #00a652 100%));
}

.about-us-desc {
	text-align: justify;
}

.about-us-image a {
	border-radius: 50px 0px;
	position: relative;
}

.about-us-image {
	position: relative;
}

.padding-main {
	padding: 50px 0;
}

.box-title-chung-nhan-content p {
	color: var(--NHN, #c90000);
	font-family: Unbounded;
	font-size: 38px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin: auto;
	background: var(--gradient, linear-gradient(180deg, #ddad55 0%, #f4dd98 55.73%, #e4b04b 100%));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.box-title-chung-nhan-content span {
	color: white;
	font-family: iciel;
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.box-title-chung-nhan {
	align-items: end;
	/* width: 70%; */
	margin-bottom: 20px;
}

.box-right-chungnhan {
	transform: rotate(-90deg);

	color: var(--NHN, #c90000);

	text-align: center;

	font-family: "hk";

	style: normal;

	font-size: 70px;

	position: absolute;

	top: 35%;

	right: -15%;

	text-transform: uppercase;
}

.wrap-chungnhan {
	padding: 60px 0;
	background: url(../images/TempImages/bg-chungnhan.png) no-repeat center/cover;
}

.cn-image {
	padding: 10px;
	background: white;
	border-radius: 5px;
}

.logo-chung-nhan {
	border-radius: 10px;
	overflow: hidden;
	/* box-shadow: 0px 0px 6px #727272; */
}

/* Newsnb */
.box-newsnb-date p {
	text-align: center;
	font-family: Unbounded;
	font-size: 29px;
	font-style: normal;
	font-weight: 700;
	line-height: 25px;
	/* 86.207% */
	background: var(--CH-O, linear-gradient(90deg, #005527 0%, #00a652 100%));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 5px;
}

.box-newsnb-date {
	text-align: center;
	margin: 0 15px;
}

.box-newsnb-date svg {
	margin-bottom: 11px;
}

.box-newsnb-date span {
	text-align: center;
	font-family: Roboto;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	background: var(--CH-O, linear-gradient(90deg, #005527 0%, #00a652 100%));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 25px;
	/* 178.571% */
}

.newsnb-wm {
	text-align: justify;
	font-family: Roboto;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 25px;
	/* 166.667% */
	background: var(--CH-O, linear-gradient(90deg, #005527 0%, #00a652 100%));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.newsnb-box {
	/* margin: 10px; */
	/* box-shadow: 0px 0px 6px gray; */
}

.newsnb-info {
	padding: 10px 0;
}

.video {
	max-height: 395px;
	/* border-radius: 10px; */
	overflow: hidden;
	margin-top: 10px;
}

.footer {
	background-size: cover;
	padding: 50px 0 0 0;
}

.footer-line {
	width: 31px;
	height: 2px;
	flex-shrink: 0;
	margin-bottom: 20px;
	background: linear-gradient(180deg, #e7a017 0%, #facc54 35.94%, #eab839 67.19%, #eeb523 95.31%);
}

p.newsletter-slogan {
	color: #fff;
	font-family: Roboto;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	/* 133.333% */
}

.newsletter-input input {
	background: white;
	border-color: white !important;
}

.newsletter-button input {
	margin-top: 10px;
	padding: 7px 25px;
}

a.btnphongto {
	border: 1px solid #005527;
	background: var(--CH-O, linear-gradient(90deg, #005527 0%, #00a652 100%));
}

/* Slog */

.logo-header {
	flex-shrink: 0;
}

.hotline.header-email {
	padding: 10px 0;
}

/* Thống ke trang chu */
.list_khongxuathienlaunhat.list_khongxuathienlaunhat2 {
	width: calc(100% / 3) !important;
	display: flex;
	font-size: 11px;
	flex-direction: column;
}

.box_thongkexosoext.box-thongke-2 {
	margin: 0;
	float: unset;
}

h4.box_tkdefault_title.box-tiel-right {
	margin: 0;
	text-align: center;
	font-family: Roboto;
	background: #efc8c8;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	color: #990202;
	line-height: normal;
	padding: 13px 0;
}

.list_khongxuathienlaunhat.list_khongxuathienlaunhat2 {
	font-size: 14px;
}

/* Albuum */
h3.album-name a {
	font-size: 16px;
	color: black;
}

h3.album-name {
	text-align: center;
}

.header-banenr {
	text-align: center;
}

.box-hotline.box-email {
	padding-left: 0;
}

.box-hotline.box-email span:first-child {
	color: #fff;
	/* font-family: Inter; */
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 27px; /* 192.857% */
	letter-spacing: -0.28px;
	text-transform: uppercase;
}

.box-header-info {
	width: fit-content;
	text-align: center;
}

a.cn-image img {
	border-radius: 5px;
}

.wrap-news-nb {
	margin-bottom: 50px;
}

.newsletter-button input {
	color: black;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 5px;
	background: var(--main-2, linear-gradient(180deg, #e9a51f 0%, #f9cb53 55.73%, #ecb831 100%));
	border: 0;
	padding: 10px 40px;
	font-size: 17px;
}
.box-right-header a {
	color: black;
	min-width: 41%;
	font-weight: 700;
}

.user-header {
	text-align: center;
}

/* Box one home */
.box-one-home {
	margin-bottom: 15px;
	border-radius: 10px;
	background: url(../images/TempImages/bg-header_01.png) no-repeat center/cover;
	padding: 10px 7px;
	gap: 10px;
}
.box-one-home {
	background: url(../images/TempImages/bg-header_01.png) no-repeat center/cover;
	padding: 10px 7px;
	gap: 10px;
}
.box-one-home .logo-home {
	flex-shrink: 0;
}
.box-one-home .info {
	text-align: center;
}
.box-one-home .info .slogan span:first-child {
	font-size: 24px;
	color: white;
}
.box-one-home .info .slogan span:last-child {
	font-size: 24px;
	font-weight: 700;
	color: #ffcc00;
}
.box-one-home .info .title span:first-child {
	font-size: 33px;
	font-family: akashi;
	color: white;
	text-shadow:
		2px 0 #d40707,
		-2px 0 #d40707,
		0 2px #d40707,
		0 -2px #d40707,
		1px 1px #d40707,
		-1px -1px #d40707,
		1px -1px #d40707,
		-1px 1px #d40707,
		-1px 1px rgba(0, 0, 0, 0.315);
}
.box-one-home .info .title span:last-child {
	font-size: 33px;
	font-family: cooper;
	color: #ffcc00;
	text-shadow:
		2px 0 black,
		-2px 0 black,
		0 2px black,
		0 -2px black,
		1px 1px black,
		-1px -1px black,
		1px -1px black,
		-1px 1px black,
		-1px 1px rgba(0, 0, 0, 0.315);
}


/* Điện toán */

.balls {
    background: url("../images/balls-40px.png") no-repeat;
    font-size: 20px;
    height: 42px;
    width: 40px;
    display: inline-block;
    color: #fff;
    font-weight: bold;
    border: 0px;
    vertical-align: middle;
    position: static;
    margin: 3px;
    padding-left: 0px;
    text-shadow: 0px 0px 3px #333;
    padding-top: 7px;
    text-align: center;
    float: left;
}

.ball0 {
    background-position: 0px 0px;
}

.ball1 {
    background-position: 0px -43px;
}

.ball2 {
    background-position: 0px -86px;
}

.ball3 {
    background-position: 0px -130px;
}

.ball4 {
    background-position: 0px -175px;
}

.ball5 {
    background-position: 0px -219px;
}

.ball6 {
    background-position: 0px -263px;
}

#bangtkxoso .box_tkdefault_title {
    width: 100%;
    text-align: left;
    padding: 10px;
    text-transform: uppercase;
    background: #1b3d65;
    color: #fff;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    line-height: 25px;
}

#bangtkxoso .list_tkxhnDT {
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

#bangtkxoso .list_tkxhnDT li {
    width: 20%;
    padding: 5px 0px;
    list-style: none;
    font-family: 'Roboto', sans-serif;
}

.bol30 {
    width: 30px;
    height: 32px;
    background: url("../images/balls-30px.png") no-repeat;
    border: 0;
    vertical-align: middle;
    position: static;
    text-align: center;
    color: #000;
    font-size: 16px;
    text-shadow: 1px 1px #fff;
    display: inline-block;
    line-height: 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.bol30_0 {
    background-position: 0px 0px;
}

.bol30_1 {
    background-position: 0px -32px;
}

.bol30_2 {
    background-position: 0px -64px;
}

.bol30_3 {
    background-position: 0px -97px;
}

.bol30_4 {
    background-position: 0px -131px;
}

.bol30_5 {
    background-position: 0px -164px;
}

.bol30_6 {
    background-position: 0px -197px;
}

.bol30_7 {
    background-position: 0px -231px;
}

.bol30_8 {
    background-position: 0px -264px;
}

.bol30_9 {
    background-position: 0px -297px;
}
/* Vietlot */
.box_tructiep_vietlott_1 {
	width: 100%;
	background-color: #050830;
	margin-bottom: 10px;
	border-top: 10px solid#050830;
}
.box_tructiep_vietlott_1 .title {
	width: 100%;
	background: #c51116;
	padding: 10px 5px;
	color: #fff;
	position: relative;
	margin: 0;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.box_tructiep_vietlott_1 .title:before {
	content: "";
	position: absolute;
	left: 0px;
	top: 5px;
	width: 100%;
	border-top: 1px dotted #fff;
}
.box_tructiep_vietlott_1 .title:after {
	content: "";
	position: absolute;
	left: 0px;
	bottom: 5px;
	width: 100%;
	border-top: 1px dotted #fff;
}
.box_tructiep_vietlott_1 .title .gt_saptoi {
	width: 51%;
}
.box_tructiep_vietlott_1 .title .gt_saptoi h3 {
	text-transform: uppercase;
	font-size: 13px;
	margin: 0 0 0 0;
	font-weight: 700;
}
.box_tructiep_vietlott_1 .title .gt_saptoi p {
	text-transform: uppercase;
	font-size: 30px;
	margin-bottom: 0px;
	font-weight: 900;
	line-height: normal;
}
.box_tructiep_vietlott_1 .title .img_logo {
	width: 17%;
}
.box_tructiep_vietlott_1 .title .mothuong_tiep {
	width: 30%;
}
.box_tructiep_vietlott_1 .title .mothuong_tiep p {
	margin-bottom: 4px;
	font-size: 13px;
	font-weight: 700;
}
.box_tructiep_vietlott_1 .content_vl .ngay {
	color: #f00;
	font-size: 16px;
	width: 100%;
	padding-top: 20px;
}
.box_tructiep_vietlott_1 .content_vl .ngay h2 {
	font-size: 36px;
	text-transform: uppercase;
	color: #fff;
	font-weight: 700;
}
.box_tructiep_vietlott_1 .content_vl .ngay p {
	margin-bottom: 0px;
	font-size: 16px;
	color: #ffca02;
}
.box_tructiep_vietlott_1 .table_thongke {
	width: 100%;
	background: #d0e3f4;
	margin: 20px 0px 0px 0px;
}
.box_tructiep_vietlott_1 .box_ketqua span {
	width: 60px;
	height: 60px;
	display: inline-block;
	background: #cc0000;
	line-height: 55px;
	text-align: center;
	border-radius: 50%;
	color: #fff;
	margin: 0px 5px;
	text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
	border: 3px solid #fff;
}
.box_tructiep_vietlott_1 .giatri_jackpot {
	color: #002566;
	width: 100%;
	padding: 10px 0px;
	font-size: 17px;
	text-transform: uppercase;
	font-weight: 700;
	font-family: "Roboto Condensed", sans-serif;
	margin: 0;
}
.box_tructiep_vietlott_1 .giatri_jackpot .gtblive {
	padding: 2px 30px;
	color: #cc0000;
	display: inline-block;
	font-size: 28px;
	margin: 0px 0px 5px 0px;
	text-shadow: 0 2px 2px #fff;
}
.box_tructiep_vietlott_1 .table_vietlott {
	padding: 0px 10px;
	width: 100%;
	background: #d0e3f4;
	padding-bottom: 10px;
}
.box_tructiep_vietlott_1 .table_vietlott table {
	background: #d0e3f4;
	border: 0px !important;
}
.box_tructiep_vietlott_1 .table_vietlott table th {
	color: #fff;
	text-transform: uppercase;
	font-size: 15px;
	padding: 10px 10px;
	background: #008abe;
	border: 0;
	font-weight: 700;
	line-height: 19px;
}
.box_tructiep_vietlott_1 .table_vietlott table td {
	background: none !important;
	font-size: 16px;
	color: #000;
	border-right: 0px;
	padding: 10px 2px;
	font-weight: bold;
	border-color: #fff;
	border-right: 0;
	font-family: "Roboto Condensed", sans-serif;
}
.box_tructiep_vietlott_1 .circle-num {
	text-align: left;
}
.box_tructiep_vietlott_1 .circle-num .khop {
	width: 25px;
	height: 25px;
	margin-right: 2px;
	background: #fff;
	border-radius: 50%;
	border: 3px solid #7acdf2;
	display: inline-block;
	float: left;
	margin-bottom: 5px;
}
.box_tructiep_vietlott_3 {
	width: 100%;
	background: url("../images/bgPowerHome.jpg") no-repeat;
	background-size: cover;
	border-top: 10px solid #ffdeb8;
}
.box_tructiep_vietlott_3 .title {
	width: 100%;
	background: #c44822;
	padding: 10px 5px;
	color: #fff;
	position: relative;
	margin: 0;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.box_tructiep_vietlott_3 .title:before {
	content: "";
	position: absolute;
	left: 0px;
	top: 5px;
	width: 100%;
	border-top: 1px dotted #fff;
}
.box_tructiep_vietlott_3 .title:after {
	content: "";
	position: absolute;
	left: 0px;
	bottom: 5px;
	width: 100%;
	border-top: 1px dotted #fff;
}
.box_tructiep_vietlott_3 .title .gt_saptoi {
	width: 50%;
}
.box_tructiep_vietlott_3 .title .gt_saptoi h3 {
	text-transform: uppercase;
	font-size: 13px;
	margin: 0 0 0 0;
	font-weight: 700;
}
.box_tructiep_vietlott_3 .title .gt_saptoi p {
	text-transform: uppercase;
	font-size: 30px;
	margin-bottom: 0px;
	font-weight: 900;
	line-height: normal;
}
.box_tructiep_vietlott_3 .title .img_logo {
	width: 17%;
}
.box_tructiep_vietlott_3 .title .mothuong_tiep {
	width: 30%;
}
.box_tructiep_vietlott_3 .title .mothuong_tiep p {
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 3px;
}
.box_tructiep_vietlott_3 .tk {
	padding: 10px 0px;
	text-transform: uppercase;
	color: #845029;
	font-size: 17px;
	width: 100%;
	font-family: "Roboto Condensed", sans-serif;
	margin: 0;
}
.box_tructiep_vietlott_3 .content_vl .ngay {
	color: #845029;
	font-size: 16px;
	padding: 20px 0 0 0;
	width: 100%;
	margin: 0;
}
.box_tructiep_vietlott_3 .content_vl .ngay h2 {
	font-size: 36px;
	text-transform: uppercase;
	color: #845029;
	font-weight: 700;
}
.box_tructiep_vietlott_3 .table_thongke {
	width: 100%;
	background: #ffdeb8;
	margin: 0;
	color: #804a2e;
	padding: 10px 0;
}
.box_tructiep_vietlott_3 .box_ketqua span {
	width: 60px;
	height: 60px;
	display: inline-block;
	line-height: 57px;
	text-align: center;
	border-radius: 50%;
	font-size: 34px;
	color: #000;
	margin: 0px 2px;
	text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
	border: 2px solid #990000;
	background: #f4c282;
}
.ball_power2 .capmg {
	color: #fff;
}
.box_tructiep_vietlott_3 .giatri_jackpot {
	background: #f4c282;
	width: 100%;
	padding: 0px 0px;
	font-size: 24px;
	text-transform: uppercase;
	margin: 9px 0;
	font-family: "Roboto Condensed", sans-serif;
}
.box_tructiep_vietlott_3 .giatri_jackpot .gtblive {
	padding: 0;
	color: #cc0000;
	display: inline-block;
	font-size: 30px;
	margin: 0;
	tex-tr: cap;
}
.box_tructiep_vietlott_3 .table_vietlott {
	padding: 0px 11px;
	width: 100%;
}
.box_tructiep_vietlott_3 .table_vietlott table {
	border: 0px !important;
}
.box_tructiep_vietlott_3 .table_vietlott table th {
	color: #fff;
	text-transform: uppercase;
	font-size: 15px;
	padding: 10px 10px;
	background: #c44822;
	font-weight: 700;
}
.box_tructiep_vietlott_3 .table_vietlott table td {
	background: none !important;
	font-weight: bold;
	border-bottom: 1px solid #fff;
	font-size: 16px;
	color: #804a2e;
	border-right: 0px;
	padding: 8px 3px;
	font-family: "Roboto Condensed", sans-serif;
}
.box_tructiep_vietlott_3 .circle-num {
	text-align: left;
}
.box_tructiep_vietlott_3 .circle-num .khop {
	width: 25px;
	height: 25px;
	margin-right: 3px;
	border-radius: 50%;
	display: inline-block;
}
.ball_power {
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border: solid 2px #900;
	background: #ffe1af;
	background: -moz-linear-gradient(
		-117deg,
		rgba(255, 235, 172, 1) 0%,
		rgba(255, 235, 172, 1) 10%,
		rgba(235, 157, 93, 1) 50%,
		rgba(255, 235, 172, 1) 95%,
		rgba(255, 235, 172, 1) 100%
	);
	background: -webkit-gradient(
		left top,
		right bottom,
		color-stop(0%, rgba(255, 235, 172, 1)),
		color-stop(10%, rgba(255, 235, 172, 1)),
		color-stop(50%, rgba(235, 157, 93, 1)),
		color-stop(95%, rgba(255, 235, 172, 1)),
		color-stop(100%, rgba(255, 235, 172, 1))
	);
	background: -webkit-linear-gradient(
		-117deg,
		rgba(255, 235, 172, 1) 0%,
		rgba(255, 235, 172, 1) 10%,
		rgba(235, 157, 93, 1) 50%,
		rgba(255, 235, 172, 1) 95%,
		rgba(255, 235, 172, 1) 100%
	);
	background: -o-linear-gradient(
		-117deg,
		rgba(255, 235, 172, 1) 0%,
		rgba(255, 235, 172, 1) 10%,
		rgba(235, 157, 93, 1) 50%,
		rgba(255, 235, 172, 1) 95%,
		rgba(255, 235, 172, 1) 100%
	);
	background: -ms-linear-gradient(
		-117deg,
		rgba(255, 235, 172, 1) 0%,
		rgba(255, 235, 172, 1) 10%,
		rgba(235, 157, 93, 1) 50%,
		rgba(255, 235, 172, 1) 95%,
		rgba(255, 235, 172, 1) 100%
	);
	background: linear-gradient(
		50deg,
		rgba(255, 235, 172, 1) 0%,
		rgba(255, 235, 172, 1) 10%,
		rgba(235, 157, 93, 1) 50%,
		rgba(255, 235, 172, 1) 95%,
		rgba(255, 235, 172, 1) 100%
	);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebac', endColorstr='#ffebac', GradientType=1);
}
.ball_power2 {
	background: #c44822 !important;
	background: -webkit-radial-gradient(50% 50%, closest-side, #faa433, #5e1c00) !important;
	background: -o-radial-gradient(50% 50%, closest-side, blue, #faa433, #5e1c00) !important;
	background: -moz-radial-gradient(50% 50%, closest-side, #faa433, #5e1c00) !important;
	background: radial-gradient(closest-side at 50% 50%, #faa433, #5e1c00) !important;
}
.box_tructiep_vietlott_2 {
	width: 100%;
	float: left;
	background: url("../images/nen_max4d.png");
	background-color: #d01777;
	margin-bottom: 10px;
}
.box_tructiep_vietlott_2 .title {
	width: 100%;
	float: left;
	background: #b50e7d;
	padding: 10px 0px;
	color: #fff;
	position: relative;
	margin: 10px 0px 0px 0px;
	text-align: left;
}
.box_tructiep_vietlott_2 .title:before {
	content: "";
	position: absolute;
	left: 0px;
	top: 5px;
	width: 100%;
	border-top: 1px dotted #fff;
}
.box_tructiep_vietlott_2 .title:after {
	content: "";
	position: absolute;
	left: 0px;
	bottom: 5px;
	width: 100%;
	border-top: 1px dotted #fff;
}
.box_tructiep_vietlott_2 .title .gt_saptoi {
	width: 52%;
	float: left;
}
.box_tructiep_vietlott_2 .title .gt_saptoi h2 {
	text-transform: uppercase;
	font-size: 25px;
	margin-top: 10px;
}
.box_tructiep_vietlott_2 .title .gt_saptoi p {
	text-transform: uppercase;
	font-size: 36px;
}
.box_tructiep_vietlott_2 .title .img_logo {
	width: 20%;
	float: left;
	margin: 10px 0px 0px 0px;
	padding-left: 10px;
}
.box_tructiep_vietlott_2 .title .mothuong_tiep {
	width: 28%;
	float: right;
	padding-top: 5px;
}
.box_tructiep_vietlott_2 .title .mothuong_tiep p {
	margin-bottom: 0px;
}
.box_tructiep_vietlott_2 .tk {
	padding: 10px 0px;
	text-transform: uppercase;
	color: #4e0034;
	font-size: 17px;
	width: 100%;
	float: left;
}
.box_tructiep_vietlott_2 .content_vl .ngay {
	color: #4e0034;
	font-size: 16px;
	padding: 20px 0px;
	width: 100%;
	float: left;
}
.box_tructiep_vietlott_2 .content_vl .ngay h2 {
	font-size: 40px;
	text-transform: uppercase;
	color: #4e0034;
}
.box_tructiep_vietlott_2 .table_thongke {
	width: 100%;
	float: left;
	background: #ffb8f6;
	margin: 20px 0px 0px 0px;
	color: #4e0034;
}
.box_tructiep_vietlott_2 .box_ketqua span {
	width: 60px;
	height: 60px;
	display: inline-block;
	background: #c44822;
	line-height: 60px;
	text-align: center;
	border-radius: 50%;
	font-size: 34px;
	color: #000;
	margin: 0px 5px;
	text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
	border: 2px solid #990000;
}
.box_tructiep_vietlott_2 .giatri_jackpot {
	color: #845029;
	background: #f4c282;
	width: 100%;
	float: left;
	padding: 10px 0px;
	font-size: 28px;
	text-transform: uppercase;
}
.box_tructiep_vietlott_2 .giatri_jackpot .gtblive {
	padding: 2px 10px;
	color: #cc0000;
	display: inline-block;
	font-size: 30px;
	margin: 0px 0px 5px 0px;
}
.box_tructiep_vietlott_2 .table_vietlott {
	padding: 0px 11px;
	width: 100%;
	float: left;
}
.box_tructiep_vietlott_2 .table_vietlott table {
	border: 0px;
}
.box_tructiep_vietlott_2 .table_vietlott table th {
	color: #fff;
	text-transform: uppercase;
	font-size: 16px;
	padding: 10px 10px;
	background: #610e61;
}
.box_tructiep_vietlott_2 .table_vietlott table td {
	background: none !important;
	border-bottom: 1px solid #fff;
	font-size: 17px;
	color: #4e0034;
	border-right: 0px;
	padding: 10px 0px;
}
.box_tructiep_vietlott_2 .ball {
	text-align: center;
	letter-spacing: 10px;
	font-size: 18px;
}
.box_tructiep_vietlott_3dpro {
	width: 100%;
	float: left;
	background: url("../images/banner_head.png") center no-repeat;
	background-size: cover;
	margin-bottom: 10px;
}
.box_tructiep_vietlott_3dpro .title {
	width: 100%;
	float: left;
	padding: 24px 0px;
	color: #fff;
	position: relative;
	text-align: left;
}
.box_tructiep_vietlott_3dpro .title .gt_saptoi {
	width: 52%;
	float: left;
}
.box_tructiep_vietlott_3dpro .title .gt_saptoi h2 {
	text-transform: uppercase;
	font-size: 24px;
	margin-top: 10px;
	color: #f3ad40;
}
.box_tructiep_vietlott_3dpro .title .gt_saptoi p {
	text-transform: uppercase;
	font-size: 36px;
}
.box_tructiep_vietlott_3dpro .title .img_logo {
	width: 20%;
	float: left;
	padding-left: 10px;
}
.box_tructiep_vietlott_3dpro .title .mothuong_tiep {
	width: 28%;
	float: right;
	padding-top: 5px;
}
.box_tructiep_vietlott_3dpro .title .mothuong_tiep p {
	font-size: 14px;
	margin-bottom: 0px;
}
.box_tructiep_vietlott_3dpro .tk {
	padding: 10px 0px;
	text-transform: uppercase;
	color: #4e0034;
	font-size: 17px;
	width: 100%;
	float: left;
}
.box_tructiep_vietlott_3dpro .content_vl .ngay {
	color: #4e0034;
	font-size: 16px;
	padding: 20px 0px;
	width: 100%;
	float: left;
}
.box_tructiep_vietlott_3dpro .content_vl .ngay h2 {
	font-size: 40px;
	text-transform: uppercase;
	color: #4e0034;
}
.box_tructiep_vietlott_3dpro .table_thongke {
	width: 100%;
	float: left;
	background: #ffb8f6;
	margin: 20px 0px 0px 0px;
	color: #4e0034;
}
.box_tructiep_vietlott_3dpro .box_ketqua span {
	width: 60px;
	height: 60px;
	display: inline-block;
	background: #c44822;
	line-height: 60px;
	text-align: center;
	border-radius: 50%;
	font-size: 34px;
	color: #000;
	margin: 0px 5px;
	text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
	border: 2px solid #990000;
}
.box_tructiep_vietlott_3dpro .giatri_jackpot {
	color: #845029;
	background: #f4c282;
	width: 100%;
	float: left;
	padding: 10px 0px;
	font-size: 28px;
	text-transform: uppercase;
}
.box_tructiep_vietlott_3dpro .giatri_jackpot .gtblive {
	padding: 2px 10px;
	color: #cc0000;
	display: inline-block;
	font-size: 30px;
	margin: 0px 0px 5px 0px;
}
.box_tructiep_vietlott_3dpro .table_vietlott {
	padding: 0px 11px;
	width: 100%;
	float: left;
}
.box_tructiep_vietlott_3dpro .table_vietlott table {
	border: 0px;
}
.box_tructiep_vietlott_3dpro .table_vietlott table th {
	color: #fff;
	text-transform: uppercase;
	font-size: 16px;
	padding: 10px 10px;
	background: #610e61;
}
.box_tructiep_vietlott_3dpro .table_vietlott table td {
	background: none !important;
	border-bottom: 1px solid #fff;
	font-size: 17px;
	color: #4e0034;
	border-right: 0px;
	padding: 10px 0px;
}
.box_tructiep_vietlott_3dpro .ball {
	text-align: center;
	letter-spacing: 10px;
	font-size: 18px;
}

/* wrap-partner */
.box_partner {
	padding: 35px 10px;
	background: white;
	border-radius: 15px;
	box-shadow: 0px 0px 14px #ccc;
}

.partner {
	background: #fff;
	display: block;
	text-align: center;
}

.tags_ft {
	margin-bottom: 20px;
}

.title_tags {
	display: inline-block;
	color: #cc0000;
	font-weight: 700;
	text-transform: uppercase;
}

.tags_ft a {
	display: inline-block;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 15px;
	color: #292929;
}

.tags_ft a:hover {
	color: var(--main-color);
}

/* right */
.advertise a {
	display: block;
	margin-bottom: 20px;
	border-radius: 5px;
	overflow: hidden;
}

.sub_left {
	margin: 0 0 30px;
}

.title_left {
	border-radius: 5px 5px 0 0;
	overflow: hidden;
	/* border-bottom: 1px solid var(--main-color); */
}

.title_left span {
	line-height: 45px;
	display: block;
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 10px 10px 0px 0px;
	background-color: #cb0505;
}

.menu_left {
	width: 100%;
	position: relative;
	border: 1px solid #ebebeb;
	background: #f7f7f7;
	border-top: none;
	padding: 0;
	margin: 0;
}

.menu_left li {
	list-style: none;
	padding: 0 15px;
	position: relative;
}

.menu_left li a {
	color: #000000;
	font-size: 14px;
	line-height: 20px;
	padding: 10px 0;
	background: url("../images/icon_li.png") no-repeat left top 15px;
	padding-left: 20px;
	display: block;
	font-weight: 500;
	border-bottom: 1px dashed #cfcfcf;
}

.menu_left li a:hover {
	color: var(--main-color);
}

#main_right .menu_left {
	max-height: 530px;
	overflow-y: overlay;
}

#main_right .menu_left::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: #f5f5f5;
}

#main_right .menu_left::-webkit-scrollbar {
	width: 4px;
	background-color: #f5f5f5;
}

#main_right .menu_left::-webkit-scrollbar-thumb {
	background-color: var(--main-color);
}

.menu_left1 li a {
	font-weight: 700;
	font-size: 13px;
}

.menu_left1 li ul {
	padding-left: 0;
}

.menu_left1 li ul li {
	padding: 0;
}

.menu_left1 li ul li a {
	padding-left: 35px;
	font-weight: normal;
	background: url("../images/icon_li1.png") no-repeat center left 20px;
}

.menu_left li.dangxo::after {
	content: "";
	position: absolute;
	z-index: 1;
	width: 20px;
	height: 20px;
	right: 10px;
	top: 10px;
	background: url(../images/loto0.gif) no-repeat;
	background-size: 100% 100%;
}

.menu_left li.daxo::after {
	content: "";
	position: absolute;
	z-index: 1;
	width: 24px;
	height: 24px;
	right: 8px;
	top: 10px;
	background: url(../images/hople.png) no-repeat;
	background-size: 100% 100%;
}

/* fengshui */
.fengshui {
	padding: 8px;
	background: var(--main-color);
	margin: 30px 0;
}

.box_cat {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.box_cat li {
	display: inline-block;
	color: #fff;
	font-size: 12px;
	line-height: 35px;
	cursor: pointer;
	text-transform: uppercase;
	background: #a00000;
	position: relative;
	font-weight: 700;
	overflow: hidden;
	width: calc((100% - 8px) / 3);
	text-align: center;
}

.box_cat li span {
	display: block;
	transform: skewX(25deg);
}

.box_cat li:hover,
.box_cat li.active {
	background: #ffffff;
	color: var(--main-color);
}

.content-tabs {
	display: none;
}

.content-tabs.active {
	display: block;
}

.box_fengshui {
	background: #fff;
	padding: 5px 0;
	max-height: 740px;
	overflow-y: overlay;
}

.item_fengshui {
	display: flex;
	margin: 5px 0;
	align-items: center;
	justify-content: space-between;
	padding: 0 8px;
}

.img_fengshui {
	display: flex;
	width: 110px;
	align-items: center;
	justify-content: space-between;
}

.img_fengshui span {
	display: block;
	width: 30px;
}

.img_fengshui h3 {
	width: calc(100% - 40px);
	font-size: 13px;
	margin: 0;
	font-weight: normal;
}

.item_fengshui > span {
	width: calc((100% - 110px) / 3);
	text-align: center;
}

.box_fengshui::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: #f5f5f5;
}

.box_fengshui::-webkit-scrollbar {
	width: 4px;
	background-color: #f5f5f5;
}

.box_fengshui::-webkit-scrollbar-thumb {
	background-color: #f9ab25;
}

/*  */
.DynarchCalendar-title,
.DynarchCalendar-title div {
	-moz-border-radius: 0 0 4px 4px;
	-webkit-border-radius: 0 0 4px 4px;
	border-radius: 0 0 4px 4px;
}

.DynarchCalendar-topBar {
	-moz-border-radius: 4px 4px 0 0;
}

.DynarchCalendar-bottomBar {
	-moz-border-radius: 0 0 4px 4px;
	-webkit-border-radius: 0 0 4px 4px;
	border-radius: 0 0 4px 4px;
}

.DynarchCalendar-bottomBar-today {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 14px;
}

.DynarchCalendar-navBtn,
.DynarchCalendar-navBtn div {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

.DynarchCalendar-menu {
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.DynarchCalendar-menu table td div {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

.DynarchCalendar-weekNumber {
	-moz-border-radius: 4px 0 0 4px;
	-webkit-border-radius: 4px 0 0 4px;
	border-radius: 4px 0 0 4px;
}

.DynarchCalendar-day-disabled {
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}

.DynarchCalendar-tooltipCont {
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 5px;
}

.DynarchCalendar-time-hour,
.DynarchCalendar-time-minute {
	-moz-border-radius: 3px 0 0 3px;
	-webkit-border-radius: 3px;
}

.DynarchCalendar-time-am {
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

.DynarchCalendar-focused {
	background-color: #fff;
}

.DynarchCalendar-topBar {
	border-radius: 10px 10px 0px 0px;
	background-color: #cb0505;
}

.DynarchCalendar-bottomBar {
	border-radius: 0px 0px 10px 10px;
	background-color: #cb0505;
}

.DynarchCalendar-hover-title div,
.DynarchCalendar-hover-navBtn div {
	background-color: transparent;
}

.DynarchCalendar-pressed-title div,
.DynarchCalendar-pressed-navBtn div {
	background-color: transparent;
}

.datetimepicker_right {
	display: none;
}

.DynarchCalendar-bodyTable tr .DynarchCalendar-td-selected {
	background: var(--main-color);
}

.DynarchCalendar-bodyTable tr .DynarchCalendar-td-selected div {
	color: #fff;
}

/* search_home */
.search_home {
	margin: 10px 0;
}

.title_search {
	border-radius: 5px 5px 0 0;
	background: #dc3546;
	color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: 20px;
	line-height: 45px;
	text-transform: uppercase;
}

.box_search_home {
	background: #122c47;
	border: 1px solid #ebebeb;
	padding: 15px 20px;
}

.btn-search {
	border: none;
	outline: none;
	border-radius: 5px;
	background: #f89a04;
	line-height: 34px;
	width: 110px;
	color: #fff;
	font-size: 13px;
	text-transform: capitalize;
	margin-top: 4px;
}

.box_search_home label {
	display: flex;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	margin: 0 10px 15px;
}

.box_search_home label input {
	position: absolute;
	left: -9999px;
}

.box_search_home label input:checked + span::before {
	box-shadow: inset 0 0 0 5px var(--main-color);
}

.box_search_home label span {
	display: flex;
	align-items: center;
	border-radius: 99em;
	transition: 0.25s ease;
	color: #fff;
}

.box_search_home label span::before {
	display: flex;
	flex-shrink: 0;
	content: "";
	background-color: #fff;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	margin-right: 0.375em;
	transition: 0.25s ease;
	box-shadow: inset 0 0 0 0.125em var(--main-color);
}

.box_input_search {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.box_input_search select {
	border: 1px solid #767610;
	border-radius: 7px;
	line-height: 42px;
	outline: none;
	width: calc((100% - 14px) / 3);
	background: #ffffff;
	height: 44px;
	margin-bottom: 6px;
	padding: 0 10px;
	color: #fff;
	font-style: italic;
	font-size: 13px;
	background: #dc3546;
}

#regions_s,
#vietlot_s {
	width: 100%;
}

#province_s {
	width: 100%;
	display: none;
}

/* result_home */
.result_home {
	padding: 5px 0 15px 0;
}

.radio_result label {
	/* display: flex; */
	cursor: pointer;
	position: relative;
	overflow: hidden;
	margin: 0;
	width: calc(100% / 3);
	text-align: center;
	background: #cb0505;
	color: white;
	padding: 10px 0;
}

.radio_result label input {
	position: absolute;
	left: -9999px;
}

.radio_result label input:checked + span::before {
	box-shadow: inset 0 0 0 5px var(--main-color);
}

.radio_result label span {
	display: flex;
	align-items: center;
	border-radius: 99em;
	transition: 0.25s ease;
	justify-content: center;
	text-transform: uppercase;
}

.radio_result label span::before {
	display: flex;
	flex-shrink: 0;
	content: "";
	background-color: #fff;
	width: 0;
	height: 15px;
	border-radius: 50%;
	margin-right: 0.375em;
	transition: 0.25s ease;
	box-shadow: inset 0 0 0 0.125em var(--main-color);
}

/* Index */
.chosedate {
	position: relative;
}

.chosedate input {
	opacity: 0;
	width: 1px;
	height: 1px;
	position: absolute;
}

.pagenav_1 {
	width: 100%;
	text-align: center;
	margin: 10px 0px 5px 0;
}

.pagenav_1 ul {
	display: flex;
	padding: 0px;
	margin: 0px;
	flex-wrap: wrap;
}

.pagenav_1 li {
	position: relative;
	flex-grow: 2;
	padding: 0px 2px;
	list-style: none;
}

.pagenav_1 li a {
	border: 1px solid #e9e9e9;
	border-radius: 5px;
	display: block;
	color: #fff;
	padding: 10px 0px;
	font-size: 15px;
	font-weight: 700;
	line-height: 20px;
	border-radius: 5px;
	background-color: #cb0505;
}

.pagenav_1 li a span {
	display: block;
}

.pagenav_1 li.chosedate a {
	padding: 10px 20px 10px 0px;
	color: #fff;
	border-radius: 5px;
	background: linear-gradient(#ff9c00, #ee2322);
	box-shadow: 7px 8px 8px -1px rgba(0, 0, 0, 0.25) inset;
}

.pagenav_1 li.chosedate a:after {
	content: "";
	height: 22px;
	width: 22px;
	background: url(../images/icon_lich.png) no-repeat;
	position: absolute;
	right: 10px;
	top: 15px;
	z-index: 10;
}

.pagenav_1 li a:hover {
	color: #fff;
	background: linear-gradient(90deg, #00cd5e 0%, #12d271 100%);
	box-shadow: 7px 8px 8px -1px rgba(0, 0, 0, 0.25) inset;
	background: var(--main-2, linear-gradient(180deg, #e9a51f 0%, #f9cb53 55.73%, #ecb831 100%));
	box-shadow: 3px 3px 0px 0px #570000;
	border-radius: 5px;
	box-shadow: 7px 8px 8px -1px rgba(0, 0, 0, 0.25) inset;
}

#ttkqxs {
	width: 100%;
	border-radius: 5px;
}

#ttkqxs .tenbkqxs {
	width: 100%;
	float: left;
	background: #ea1912;
	color: #fff;
	text-transform: capitalize;
	font-weight: bold;
	border-radius: 5px 5px 0px 0px;
	border: 1px solid #c5120d;
	position: relative;
}

#ttkqxs .tenbkqxs .title {
	float: left;
	padding: 10px 0px 5px 10px;
	font-weight: bold;
}

.miennam4cot .title_tinh {
	width: 29%;
}

.miennam5cot .title_tinh {
	width: 23%;
}

.kqxs_content .title_tinh {
	color: #000000;
	font-weight: 700;
	font-size: 13px !important;
	line-height: 33px;
	text-transform: uppercase;
}

.kqxs_content .matinh td {
	font-size: 18px !important;
}

.title_xoso {
	position: relative;
	width: 100%;
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
	margin-bottom: 1px;
	border-radius: 5px 5px 0 0;
	text-align: center;
	background: linear-gradient(#ff9c00, #ee2322);
}

.title_xoso h1,
.title_xoso h2 {
	padding: 10px;
	font-size: 16px;
	text-align: center;
	margin: 0px;
	font-weight: 500;
	display: inline-block;
}

.doivetrung li {
	list-style: none;
	position: absolute;
	width: 100%;
	height: 35px;
	z-index: 10;
	font-size: 20px;
	line-height: 35px;
	color: #fe1a00;
	text-transform: uppercase;
	font-style: italic;
	text-shadow:
		-1px 1px #fed204,
		1px -1px #fed204,
		-1px -1px #fed204,
		1px 1px #fed204;
	opacity: 0;
	transition: 0.5s;
}

.doivetrung li.active {
	opacity: 1;
}

.doivetrung li.web {
	color: #000cff;
	text-shadow:
		-1px 1px #fff,
		1px -1px #fff,
		-1px -1px #fff,
		1px 1px #fff;
}

.doivetrung li.slog {
	color: #1cdd03;
	text-shadow:
		-1px 1px #fff,
		1px -1px #fff,
		-1px -1px #fff,
		1px 1px #fff;
}

.doivetrung li.hoahong {
	color: #ef6000;
	text-shadow:
		-1px 1px #fff,
		1px -1px #fff,
		-1px -1px #fff,
		1px 1px #fff;
}

.daysoThongke {
	background: radial-gradient(circle at 5px 5px, #f7f5f5, #31313a);
	float: left;
	width: 25px;
	height: 25px;
	border-radius: 100%;
	line-height: 25px;
	text-align: center;
	font-size: 15px;
	margin: 10px 0px 0px 10px;
	cursor: pointer;
}

.daysoThongke:hover {
	background: radial-gradient(circle at 5px 5px, #f1d3d1, #ab0500);
	color: #fff;
}

.dayso .banh0 {
	display: inline-block;
	background: radial-gradient(circle at 5px 5px, #fff, #d8131d);
	border-radius: 100%;
	padding: 0px;
	color: #fff;
}

.dayso .banh1 {
	display: inline-block;
	background: radial-gradient(circle at 5px 5px, #9cf37f, #279a00);
	border-radius: 50%;
	padding: 0px;
	color: #fff;
}

.dayso .banh2 {
	display: inline-block;
	background: radial-gradient(circle at 5px 5px, #f5ecec, #b71201);
	border-radius: 100%;
	padding: 0px;
	color: #fff;
}

.dayso .banh3 {
	display: inline-block;
	background: radial-gradient(circle at 5px 5px, #bbeaf7, #008ec6);
	border-radius: 100%;
	padding: 0px;
	color: #fff;
}

.dayso .banh4 {
	display: inline-block;
	background: radial-gradient(circle at 5px 5px, #fff, #32323a);
	border-radius: 100%;
	padding: 0px;
	color: #fff;
}

.doivetrung {
	width: 100%;
	height: 35px;
	background: #fff297;
	border-left: 1px solid #eee;
	border-right: 1px solid #eee;
	position: relative;
	padding: 0px;
}

.kqxs_content .ngaykqxs {
	position: absolute;
	z-index: 100;
	right: 10px;
	top: 0px;
	border: 1px solid #efe582;
	border-radius: 0px 0px 5px 5px;
	background: linear-gradient(#2e2e2e, #020202);
	padding: 0px 5px 0px 5px;
	color: #fff;
}

.kqxs_content .ngaykqxs span.date {
	border-bottom: 1px solid #fff;
	font-size: 18px;
}

.kqxs_content .ngaykqxs span.year {
	font-size: 16px;
}

.kqxs_content .ngaykqxs span {
	display: block;
	padding: 0px 10px 0px 10px;
}

.tag_kp {
	width: 100%;
	float: left;
}

.tag_kp ul li {
	width: 33%;
	float: left;
	border-right: 1px solid #cc0000;
	border-left: 1px solid #e10a0f;
}

.tag_kp ul li:last-child {
	width: 34%;
	border-right: 0px;
	float: right;
}

.tag_kp ul li a {
	display: block;
	color: #fff;
	padding: 10px 0px;
	background: url("../images/do.png");
	background-color: #ae0000;
}

.tag_kp ul li a.active {
	background: url("../images/cam.png");
}

.tag_kp ul li a .mobile {
	display: none;
}

.rowkq_mien {
	width: 100%;
	/* display:none; */
	margin-bottom: 30px;
}

.rowkq_mien.active {
	display: block;
}

#tkdefault_loto_songay {
	color: #333;
}

.kqxs_content {
	width: 100%;
	position: relative;
	text-align: center;
}

.kqxs_content table {
	border-top: 1px solid #1717178a;
	border-left: 1px solid #1717178a;
	margin: 0px 0px 0px 0px;
	text-align: center;
	width: 100%;
}

.kqxs_content table p {
	margin: 0px;
}

.kqxs_content table .matinh td {
	font-weight: 700;
	color: #3a3a3a;
	font-size: 13px !important;
	line-height: 25px;
}

.kqxs_content table tr:nth-child(even) td {
	background: #e4e4e4;
}

.kqxs_content table tr:nth-child(odd) td {
	background: #fff;
}

.kqxs_content table td {
	border-bottom: 1px solid #1717178a;
	border-right: 1px solid #1717178a;
	font-size: 13px;
	color: #3a3a3a;
	padding: 4px 0;
}

.kqxs_content table td .dayso {
	font-weight: 700;
	font-size: 20px;
	color: #292929;
	line-height: 24px;
}

.kqxs_content .giai_bay .dayso {
	color: black;
}

.kqxs_content table tr .giai_datbiet .dayso {
	color: #cc0000;
	font-size: 28px;
	line-height: normal;
}

.kqxs_content table tr .ten_giai_dac_biet {
	font-weight: 700;
}

.kqxs_content td.thu {
	width: 80px;
	font-size: 14px;
	color: #3a3a3a;
	text-transform: uppercase;
	font-weight: 700;
}

.kqxs_content .tienich_kq {
	padding: 0px;
	background: #fafafa !important;
}

.kqxs_content .tienich_kq table {
	border: 0px;
	margin-bottom: 0px;
}

.kqxs_content .tienich_kq table td {
	padding: 5px;
	border-bottom: 0px;
}

.kqxs_content .tienich_kq table td div {
	width: 100%;
	float: left;
	height: 24px;
	line-height: 31px;
	cursor: pointer;
	transition: 0.2s;
}

.kqxs_content .tienich_kq table td div.loto_hangchuc {
	text-align: left;
	background: url("../images/btnswitch.png") no-repeat top 0px right 4px;
	padding: 0px 5px;
	transition: 0s;
	display: flex;
	align-items: center;
}

.config_Item.loto_hangchuc.open {
	background-position: top -24px right 4px !important;
}

.kqxs_content .tienich_kq table td:last-child {
	border-right: 0px;
}

.kqxs_content .tienich_kq table td.active {
	background: #ff9c00;
	color: #fff;
}

.kqxs_content .khtemp {
	display: inline-block;
	border: solid 2px #ff8b00;
	color: #d60000;
	font-size: 18px;
	padding: 2px 5px;
	margin: 5px 2px 0 2px;
	height: 33px;
	line-height: 29px;
	background: #fcf0d8;
	min-width: 20px;
	border-radius: 4px;
}

.kqxs_content .giai_tam .dayso {
	font-size: 38px;
	color: #cc0000;
	font-weight: 700;
	line-height: normal;
}

.kqxs_content .giai_bay {
	font-size: 20px;
	font-weight: 700;
}

.kqxs_content .giai_bay_mb,
.kqxs_content .giai_sau_mb {
	display: flex;
	justify-content: space-between;
}

.kqxs_content .giai_bay_mb .dayso {
	color: #cc0000;
	font-size: 30px;
	width: 25%;
	line-height: normal;
}

.kqxs_content .giai_sau_mb .dayso {
	font-size: 20px;
	color: #671901;
	width: 33.3%;
}

.kqxs_content .giai_nam_mb .dayso {
	float: left;
	width: 33.3%;
	text-align: center;
}

.kqxs_content .giai_tu_mb .dayso {
	float: left;
	width: 50%;
	text-align: center;
}

.kqxs_content .giai_ba_mb .dayso {
	float: left;
	width: 33.3%;
	text-align: center;
}

.bangkqxs_link {
	margin-top: 10px;
	text-align: center;
}

.bangkqxs_link a {
	display: inline-block;
	padding: 2px 16px 0px 0px;
	margin: 0px 0px 0px 0px;
	border-radius: 5px;
	color: #fff;
	position: relative;
	height: 36px;
	line-height: 35px;
	font-size: 13px;
}

.bangkqxs_link a i {
	float: left;
	height: 34px;
	width: 34px;
	text-align: center;
	line-height: 34px;
	color: #fff;
	margin-right: 10px;
}

.bangkqxs_link a::before {
	content: "";
	position: absolute;
	left: 30px;
	height: 34px;
	top: 0px;
	border: 1px solid #ffffff75;
}

.bangkqxs_link .btndoisotrung::before {
	content: "";
	position: absolute;
	left: 30px;
	height: 34px;
	top: 0px;
	border-right: 1px solid #ffffff75;
}

.bangkqxs_link .btndoisotrung {
	/* background: #FF8F00; */
	border-radius: 5px;
	background: var(--NHN, #c90000);
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.btnchiase,
.btnprint,
.btnphongto,
.btnphongto3mien {
	background: #cc0000;
	border-radius: 5px;

	background: #41a8d7;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.btnexample {
	background: var(--NHN-2, #fdaf3f);
	border-radius: 5px;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.boxsharekqxs {
	width: 100%;
	float: left;
	border: 1px solid #eee;
	margin: 10px 0px 10px 0px;
	display: none;
}

.boxsharekqxs label {
	float: left;
	padding: 12px 10px 0px 10px;
	color: #666;
}

.boxsharekqxs .save_images {
	float: right;
	height: 42px;
	line-height: 42px;
	color: #333;
	text-transform: uppercase;
	font-weight: 700;
	margin-right: 10px;
	cursor: pointer;
}

.boxLoto {
	margin-top: 20px;
	display: none;
}

.loto-t {
	width: 140px;
}

.loto-t .boxLoto {
	width: 100%;
	display: block;
}

.boxLoto .boxloto_title {
	background: #6f6f6f;
	width: 100%;
	float: left;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 15px;
	padding: 5px 0px;
}

.boxLoto table {
	border: 0px;
}

.boxLoto table td {
	padding: 0px;
	border: 0px;
}

.boxLoto table td:first-child table {
	border-left: 1px solid #ebebeb;
}

.loto-t .boxLoto table td:first-child table,
.loto-t .border {
	border: none !important;
}

.boxLoto table td table {
	border-top: 1px solid #ebebeb;
	text-align: center;
}

.boxLoto .somien {
	background: #efefef !important;
	font-weight: 700;
	cursor: pointer;
}

.boxLoto .somien span {
	display: inline-block;
	line-height: 20px;
	width: 20px;
}

.boxLoto table td table td {
	border-right: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
}

.loto-t .boxLoto table td table td {
	padding: 0px;
}

.kq-t {
	width: 43%;
}

.loto-t .boxloto_title,
.loto-t .title_ti {
	display: none;
}

.kq-dv,
.kq-c {
	padding: 0px 3px;
	cursor: pointer;
}

.box_dauduoi_header {
	background: #cc0000;
	padding: 7px 0px 5px 0px;
	text-transform: uppercase;
	font-weight: 700;
	color: #fff;
	width: 100%;
	float: left;
}

.hangdonvi .header td {
	background: #f9f9f9 !important;
	padding: 5px 0px;
}

.hangdonvi table td {
	border-right: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
	background: #fff !important;
	vertical-align: top;
	font-weight: 700;
	padding: 10px 0px;
}

.hangdonvi table {
	border-left: 1px solid #ebebeb;
	text-align: center;
}

.giai7lohome {
	width: 100%;
	float: left;
	background: #f9f9f9;
	border: 1px solid #ebebeb;
}

.giai7lohome span {
	float: left;
	padding: 5px 20px;
	border-right: 1px solid #ebebeb;
	cursor: pointer;
}

.config_giai7lo.active {
	background: #ff9800;
	color: #fff;
}

.boxLoto .duoi {
	display: inline-block;
	padding: 0px 3px;
	font-family: Arial;
	font-size: 12px;
}

.title_ti {
	font-weight: 700;
	background: #ddd;
}

.boxLoto .cap_8,
.boxLoto .cap_0 {
	color: red;
}

.boxLoto .cap_7 {
	color: blue;
}

.hangdonvi .banh2 {
	display: inline-block;
	border-radius: 50%;
	padding: 1px 3px;
	color: #fff;
	background: linear-gradient(#61cc63, #2fa334);
}

.hangdonvi .banh3 {
	display: inline-block;
	border-radius: 50%;
	padding: 5px 3px;
	color: #fff;
	background: linear-gradient(#46cdc9, #1c5452);
}

.quangcao_mien img {
	width: 100%;
}

.row_loto1 {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.row_loto1 div.active,
.row_loto1 div:hover {
	color: #cc0000;
}

.row_loto1 div {
	line-height: 33px;
	text-align: center;
	position: relative;
	padding: 0px 14px;
	font-size: 13px;
	font-weight: 500;
}

.config_Item {
	cursor: pointer;
}

.config_Item::after {
	content: "";
	position: absolute;
	height: 100%;
	border-right: 1px solid #ebebeb;
	right: 0px;
	top: 0;
}

.config_Item:first-child::before {
	content: "";
	position: absolute;
	height: 100%;
	border-left: 1px solid #ebebeb;
	left: 0px;
	top: 0;
}

.row_loto2 {
	/* width: 50px; */
	/* float: right; */
	color: #333;
}

.row_loto2 span {
	font-size: 14px;
}

.row_loto2 div {
	height: 24px;
	text-align: center;
	line-height: 24px;
	margin-top: 9px;
	font-weight: 700;
	text-transform: uppercase;
}

.row_loto2 div .mobile,
.row_loto1 div .mobile {
	display: none;
}

.zoom-number {
	/* float: left; */
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.zoom-number span:last-child:after {
	content: "";
	border-right: none;
}

.zoom-number span:hover,
.zoom-number span.onick {
	transform: scale(1.3);
	background: radial-gradient(circle at 5% 5%, #f00, #880606) !important;
	color: white;
}

.title_kd {
	width: 100%;
	float: left;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 0px;
	color: #cc0000;
	margin: 5px 0px;
	font-weight: 700;
	font-size: 24px;
}

.thongbao_sx {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 13px;
	text-align: center;
	color: #157fc2;
	padding: 10px 0px;
}

.tbkq {
	width: 100%;
	margin: 0px 0px 5px;
	color: #3d3d3d;
	text-align: center;
}

.count3m.countdownHolder {
	margin: 0 auto;
	text-align: center;
	font-weight: 700;
	position: relative;
	display: inline-block;
	margin-right: 5px;
	color: #cc0000;
	top: 0px;
}

.count3m .countDays {
	display: none;
}

.count3m .countHours,
.count3m .countMinutes,
.count3m .countSeconds {
	text-align: center;
	padding: 0px 5px 0px 5px;
	display: inline-block;
	margin: 0px 0px 0px 0px;
}

.count3m .position {
	overflow: hidden;
	position: relative;
	float: left;
	height: 12px;
	width: 10px;
	line-height: 15px;
}

.count3m .digit {
	display: block;
	position: absolute;
	z-index: 1;
	text-align: center;
}

.imgloto {
	background: url(../images/loto0.gif) center no-repeat;
	background-size: 100% 100%;
	display: inline-block !important;
	height: 20px;
	width: 20px;
	position: relative;
	vertical-align: middle;
	top: -3px;
}

#thongkemax4d {
	width: 100%;
	float: left;
	margin: 20px 0px 0px 0px;
	border-right: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

#thongkemax4d .title {
	background: #610e61;
	text-align: center;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	padding: 10px 0px;
	font-size: 18px;
}

#thongkemax4d th:not(.title) {
	background: #98036d;
	text-align: center;
	padding: 5px 0px;
	color: #fff;
	text-transform: uppercase;
}

#thongkemax4d td {
	text-align: center;
	padding: 5px;
	border-left: 1px solid #eee;
	border-top: 1px solid #eee;
	font-weight: 700;
}

#thongkemax4d tr:nth-child(odd) td {
	background: #f2f2f2;
}

.box_thongkexosoext {
	width: 100%;
	float: left;
	margin: 20px 0px;
}

.box_thongkexosoext .title_kqtkext {
	width: 100%;
	float: left;
	background: url("../images/bg_menu.png") no-repeat center;
	color: #fff;
	text-transform: uppercase;
	padding: 10px;
	font-weight: 700;
}

.box_thongkexosoext .luuy {
	padding: 5px 0px;
	clear: both;
}

.box_thongkexosoext .box_tkdefault_title {
	font-weight: 700;
	font-size: 15px;
	text-align: left;
	color: #333;
	clear: both;
	padding: 15px 0px 5px 0px;
}

#bangthongkexoso table {
	border: 1px solid #eee;
}

.box_thongkexosoext .list_khongxuathienlaunhat {
	width: 25%;
	float: left;
	text-align: center;
	padding: 10px 0px;
}

.box_thongkexosoext .list_ralientiep {
	width: 33.333333%;
	float: left;
	text-align: center;
	padding: 10px 0px;
}

.box_tkdefault_loto .box_tkdefault_title {
	border: 0px;
	background: #ae0000;
	padding: 5px;
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	text-align: center;
}

.box_tkdefault_loto .box_tkdefault_title input {
	border: 0px;
	height: 30px;
	width: 30px;
	margin: 0px 5px;
}

.box_tkdefault_loto .box_tkdefault_title input[type="button"] {
	border-radius: 5px;
	cursor: pointer;
}

.box_tkdefault_loto .box_tkdefault_title input[type="button"]:hover {
	background: #39975d;
	color: #fff;
}

#thongkexxdau td {
	padding: 10px;
	border-top: 1px solid #eee;
	border-left: 1px solid #eee;
	text-align: center;
}

#thongkexxdau .so {
	width: 40px;
}

#thongkexxdau .chiso {
	background: linear-gradient(#ed1f23, #ff9a00);
	float: left;
	height: 10px;
	border-radius: 5px;
}

.tkxxsl {
	width: 75px !important;
}

.tkxxtg {
	width: 55px !important;
}

.tkxxtg img {
	margin-right: 5px;
}

.body-l .bkq123,
.body-l .bkqtt4,
.body-l .bkqpower655,
.body-l .bkqmega645,
.body-l .bkqmax4d {
	width: 100%;
	float: left;
	padding: 10px;
	border: 1px solid #f3ba4b;
	margin: 5px 0px;
	border-radius: 5px;
	background: #fff297;
}

.body-l .title {
	border-bottom: 1px solid #d2a56a;
	width: 100%;
	float: left;
	margin: 0px 0px 10px 0px;
	text-align: left;
	padding: 5px 0px;
}

.body-l .title a {
	font-weight: 700;
	color: #000;
}

.body-l .title span {
	float: right;
	font-weight: 700;
}

.body-l .buttonBlue {
	color: #bc6a21;
	text-transform: uppercase;
	font-size: 16px;
}

.body-l .buttonBlue:hover {
}

.capmg {
	width: 100%;
	/* float:left; */
}

.bool {
	background: url("../images/ball48.png") no-repeat;
	font-size: 28px;
	height: 48px;
	line-height: 48px;
	width: 48px;
	display: inline-block;
	font-weight: bold;
	border: 0px;
	vertical-align: middle;
	position: static;
	margin: 3px;
	padding-left: 0px;
	text-align: center;
	float: left;
	color: #fff;
}

.bol30 {
	width: 30px;
	height: 32px;
	background: url("../images/balls-30px.png") no-repeat;
	border: 0;
	vertical-align: middle;
	position: static;
	text-align: center;
	color: #000;
	font-size: 16px;
	text-shadow: 1px 1px #fff;
	display: inline-block;
	line-height: 30px;
}

.bol30_0 {
	background-position: 0px 0px;
}

.bol30_1 {
	background-position: 0px -32px;
}

.bol30_2 {
	background-position: 0px -64px;
}

.bol30_3 {
	background-position: 0px -97px;
}

.bol30_4 {
	background-position: 0px -131px;
}

.bol30_5 {
	background-position: 0px -164px;
}

.bol30_6 {
	background-position: 0px -197px;
}

.bol30_7 {
	background-position: 0px -231px;
}

.bol30_8 {
	background-position: 0px -264px;
}

.bol30_9 {
	background-position: 0px -297px;
}

#thongkexxdau td {
	padding: 10px;
	border-top: 1px solid #eee;
	border-left: 1px solid #eee;
	text-align: center;
}

#thongkexxdau .so {
	width: 40px;
}

#thongkexxdau .chiso {
	background: linear-gradient(#ed1f23, #ff9a00);
	float: left;
	height: 10px;
	border-radius: 5px;
}

.radio_result {
	margin-bottom: 10px;
}

.title_mega645 {
	background: #d6322d;
	height: 50px;
	border-radius: 5px 5px 0 0;
	text-align: center;
}

.title_mega645 h3 {
	background: url("../images/icon_mega645.png") no-repeat left center;
	padding-left: 90px;
	color: #fff;
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	display: inline-block;
	line-height: 50px;
}

.content_vl {
	background: url("../images/bg_mega.png") repeat center;
	color: #fff;
	background-size: cover;
	padding: 25px;
}

.content_vl .ngay {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 25px;
}

.box_ketqua {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.box_ketqua .capmg {
	margin: -3px -3px;
	line-height: 60px;
	width: 60px;
	border-radius: 50%;
	background: #e91c1c;
	font-size: 30px;
	font-weight: 900;
}

.giatri_jackpot {
	margin-bottom: 30px;
}

.giatri_jackpot .gtblive {
	font-weight: 700;
	font-size: 16px;
}

.giatri_jackpot .gtblive > span {
	display: block;
	margin-bottom: 15px;
}

.giatri_jackpot .gtblive > span.fprice {
	display: inline-block;
	margin-bottom: 0;
}

.giatri_jackpot .gtblive p {
	line-height: 42px;
	padding: 0 40px;
	border-radius: 500px;
	color: #ffda00;
	margin-bottom: 0;
	background: #ff0000;
	display: inline-block;
	font-size: 25px;
	font-weight: 700;
	text-transform: uppercase;
}

.tab-xoso {
	width: 100%;
	vertical-align: text-bottom;
	text-align: center;
}

.tab-xoso a {
	display: inline-block;
	padding: 10px 15px;
	background: #ddd;
	border: 1px solid #ccc;
	border-bottom: none;
	border-radius: 5px 5px 0px 0px;
	color: #333;
	font-weight: 700;
}

.tab-xoso .active,
.tab-xoso a:hover {
	background: #bf0000;
	color: #fff;
}

.table-mega {
	border-top: 1px solid #ffffff !important;
	border-left: 1px solid #ffffff !important;
}

.table-mega thead th {
	line-height: 38px;
	font-size: 16px;
	font-weight: 500;
	border-bottom: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
}

.table-mega tbody td {
	background: none !important;
	color: #fff;
	font-size: 16px;
	line-height: 38px;
	padding: 0 15px;
}

.table-mega tbody td.meg645_jp {
	font-weight: 700;
}

.table_thongke .tk {
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 15px;
}

.title_power {
	background: #d6322d;
	height: 50px;
	border-radius: 5px 5px 0 0;
	text-align: center;
}

.title_power h2 {
	color: #fff;
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.title_power h2 img {
	max-height: 43px;
	margin-right: 10px;
}

.title_max3d {
	background: #b50e7d;
	height: 50px;
	border-radius: 5px 5px 0 0;
	text-align: center;
}

.title_max3d h2 {
	color: #fff;
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.title_max3d h2 img {
	max-height: 43px;
	margin-right: 10px;
}

.content_vl1 {
	padding: 10px;
}

.table_3d {
	background: #fdfed8;
	text-align: center;
}

.table_3d > tr:nth-child(2n + 1) {
	background: #fdfed8;
}

.table_3d td {
	font-weight: 700;
	width: 15%;
	text-align: center;
}

.title_3d {
	font-weight: 700;
	font-size: 16px;
	background: #ab1487;
	color: #fff;
	text-transform: uppercase;
}

.title_3d th {
	padding: 8px;
}

.title_3d1 {
	background: #fff6ba;
}

.title_3d1 th {
	/* padding: 5px; */
	color: #a65a01;
	text-transform: uppercase;
	border: 1px solid #ded2ab;
	font-size: 13px;
	border-bottom: none;
}

.title_3d1 th strong {
	font-family: "Roboto Condensed", sans-serif;
	color: #a65a01;
	font-size: 19px;
}

.rowLine td {
	font-size: 21px;
	font-weight: 700;
	text-transform: uppercase;
	border: 1px solid #ded2ad;
	border-bottom: none;
	color: #ab1487 !important;
}

.rowLine td font {
	font-size: 15px;
	font-weight: normal;
	display: block;
	margin: 0;
}

.rowLine td strong {
	color: #000;
}

.linebottom td:nth-child(1) {
	width: 45%;
	font-size: 14px;
	color: #ccc;
}

.linebottom strong {
	color: #974e0f !important;
}

.linebottom strong span {
	display: block;
	text-align: center;
	padding-right: 10px;
	font-size: 12px;
}

.blockLinecounter {
	background: #74107a;
	color: #fff;
	padding: 9px;
	text-transform: uppercase;
	text-align: center;
}

.listtabcounter {
	text-align: center;
	color: #fff;
	float: left;
	width: 100%;
	border-bottom: 1px solid #e491bd;
}

.listtabcounter ul {
	display: flex;
	justify-content: space-between;
	padding: 0;
	margin: 0;
}

.listtabcounter li {
	display: inline-block;
	cursor: pointer;
	width: 50%;
	padding: 5px;
	font-size: 20px;
	font-weight: 700;
	background: var(--main-color);
}

.listtabcounter li:hover {
	background: #f43c9d;
}

.activetab {
	background: #f43c9d !important;
}

.contenttab {
	background: #faf1e4;
	font-weight: 700;
	margin-bottom: 10px;
	display: none;
}

.activeContenttab {
	display: block;
}

.listtableresult th {
	background: #f43c9d;
	padding: 12px;
	color: #fff;
	text-transform: uppercase;
}

.listReustl {
	padding: 0;
	margin: 0;
}

.listReustl li {
	padding: 3px 0px;
	list-style: none;
}

.listReustl li table {
	background: #ffd5a3;
	border-radius: 3px;
	width: 100%;
}

.listReustl li table td {
	width: 25%;
}

.listtableresult th {
	width: 25%;
}

.lineText {
	text-align: center;
	padding: 10px;
	color: #f43c9d;
	text-transform: uppercase;
}

.lineResult {
	text-align: center;
}

.lineResult td {
	padding: 10px;
	font-size: 17px;
	color: #974e0f;
	text-transform: capitalize;
}

/* CSS - NEW */
.div_tab_thu {
	margin: 10px 0px 20px;
	border-bottom: 2px solid #ddd;
}

.div.div_tab_thu {
	display: block;
	clear: both;
	height: 19px;
	border-bottom: 2px solid #ccc;
	padding-top: 5px;
}

ul.tab_thu {
	margin: 0;
	padding: 0;
	display: flex;
}

ul.tab_thu li {
	float: left;
	margin: 0 1px 0 0;
	list-style: none;
}

ul.tab_thu li a span {
	border: 1px solid #ccc;
	border-radius: 5px 5px 0 0;
	border-bottom: 0;
	background: #f1f1f1;
	color: #333;
	padding: 3px 13px;
	white-space: nowrap;
	display: block;
}

ul.tab_thu li a span:hover,
ul.tab_thu li a.active span {
	color: #cc0000;
	background: #fff;
}

ul.pagenav_pa {
	text-align: center;
	margin: 0 auto 20px;
	padding: 0;
}

ul.pagenav_pa li {
	position: relative;
	display: inline-block;
	list-style: none;
	border: 1px solid #ccc;
	border-radius: 2px;
}

ul.pagenav_pa li a {
	display: block;
	text-align: center;
	padding: 0px 5px;
	color: #333;
}

ul.pagenav_pa li a:hover {
	color: #cc0000;
}

ul.pagenav_pa li input {
	border: none;
	width: 120px;
	font-size: 13px;
	text-indent: 15px;
	height: 21px;
}

ul.pagenav_pa li span {
	height: 24px;
	width: 22px;
	background: url(../images/icon_lich.png) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	right: -1px;
	top: -2px;
	z-index: 10;
}

ul.pagenav_pa li .page-hiden {
	color: #999;
	cursor: not-allowed;
}

ul.pagenav_pa li .page-hiden:hover {
	color: #999;
}

.show-xsmn {
	margin-bottom: 30px;
}

.show_ketqua .pagination-home {
	margin-bottom: 15px;
}

/*  */
#sodauduoi {
	width: 100%;
}

/* #sodauduoi .div_tab_thu{margin-bottom: 0;margin-bottom: -1px} */
.component {
	width: 100%;
	padding: 10px;
	margin: 10px 0;
	position: relative;
	text-transform: uppercase;
}

.component table {
	border: 1px #999 double;
	margin-bottom: 10px;
}

.component table:last-child {
}

.component td {
	text-align: center;
	padding: 5px;
	width: 25%;
	color: #999;
}

.component td.kq {
	font-weight: 500;
	text-transform: uppercase;
	color: #000;
}

.component td.kq .xanh {
	color: #08c;
	font-weight: 700;
	font-size: 22px;
}

.component td.kq .do {
	color: #c4161c;
	font-weight: 700;
	font-size: 22px;
}

.tabthongkexoso {
	width: 100%;
	float: left;
	text-align: center;
}

.tabthongkexoso li {
	display: inline-block;
	font-weight: 700;
	text-transform: uppercase;
}

.tabthongkexoso li a {
	padding: 5px 30px;
	background: #e53636;
	display: inline-block;
	color: #fff;
	border-radius: 5px 5px 0px 0px;
}

.tabthongkexoso li.active a {
	background: #cc0000;
	color: #f99c1b;
}

.box_formthongkexoso {
	width: 100%;
	float: left;
	border: 1px solid #ccc;
	border-radius: 5px 5px 0px 0px;
	background: #f2f2f2;
}

.slecttk {
	width: 100%;
	float: left;
	background: linear-gradient(#ef2821, #ff9a01);
	color: #fff;
	padding: 5px 0px 2px 10px;
	border-radius: 5px 5px 0px 0px;
}

#frm_thongkekqxsmn {
	padding: 10px;
	width: 100%;
	float: left;
}

#frm_thongkekqxsmn td {
	padding: 5px;
}

#frm_thongkekqxsmn input[type="text"],
#frm_thongkekqxsmn select {
	width: 100%;
	float: left;
	border: 0px;
	padding: 8px;
	max-width: 200px;
	border: 1px solid #eee;
}

#list_select_dai label,
.slecttk label {
	float: left;
	margin-right: 10px;
}

#list_select_dai label input[type="checkbox"],
.slecttk label input {
	float: left;
	margin-right: 5px;
}

.btnxemthongke {
	background: #d11a1a;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	padding: 5px 20px;
	border: 0px;
	border-radius: 5px;
}

.btnxemthongke:hover {
	background: #ff9a01;
}

.chamhoi a {
	font-size: 20px;
	color: #fff;
	margin-right: 10px;
	float: right;
}

.note_bottom {
	margin: 15px 0 10px;
	color: #292929;
	text-align: center;
	font-size: 15px;
}

.text_red {
	font-size: 37px;
	color: #d20707 !important;
}

label.area_priority-2.active {
	background: linear-gradient(#ff9c00, #ee2322);
}

.advertise1 {
	/* background: url('../images/bg_main.png'); */
	padding: 0px 0;
}

.advertise1 a {
	padding: 5px 0;
	display: block;
}

.slick_advertise {
	display: none;
}

.phongthuy {
	width: 100%;
	/* float: left; */
	/* background: #cc0000; */
	/* padding: 10px; */
}

.content_phongthuy {
	width: 100%;
	/* float: left; */
	background: #fff;
	padding: 30px 5px 5px 5px;
	display: none;
	/* overflow-y: scroll; */
	/* height: 775px; */
	border: 2px solid var(--main-color);
	border-radius: 16px;
	box-shadow: 0px 2px 12px #848484;
	overflow: hidden;
}

.content_phongthuy.active {
	display: block;
}

.content_phongthuy ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0;
}

.content_phongthuy ul li {
	min-height: 115px;
	width: calc(100% / 12);
	/* float: left; */
	display: flex;
	flex-direction: column;
	display: flex;
	flex-direction: column;
	/* float: left; */
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 30px;
}

.content_phongthuy ul li img {
	/* float: left; */
	/* margin-right: 10px; */
}

.content_phongthuy ul li span {
	width: 15%;
	float: left;
	display: flex;
	flex-direction: column;
	/* float: left; */
	align-items: center;
	justify-content: center;
}

.content_phongthuy ul li span:nth-child(1) {
	font-weight: 700;
	width: 100%;
	display: flex;
	flex-direction: column;
	/* float: left; */
	align-items: center;
	justify-content: center;
}

.tab_phongthuy ul {
	width: 100%;
	margin-bottom: 20px;
	/* float: left; */
}

.tab_phongthuy li {
	/* width: 16%; */
	/* float: left; */
	/* margin-right: 2%; */
	text-align: center;
	font-size: 12px;
	/* font-family: 'RobotoBold'; */
	margin: 0 2px;
}

.tab_phongthuy li a,
.wm-cn a {
	font-size: 17px;
	display: block;
	padding: 7px 15px;
	color: white;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 5px;
	background-color: #cb0505;
}

a.active {
}

.tab_phongthuy li:nth-child(3) {
	/* float: right; */
	/* margin-right: 0%; */
}

.tab_phongthuy li a.active {
	color: white;
	border-radius: 4px;
	background-color: #cb0505;
	background: linear-gradient(#ff9c00, #ee2322);
}

div#container_product {
	margin-top: 10px;
	width: 100%;
	float: left;
}

.box-sx-menu {
	text-align: center;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

.box-sx-menu span a {
	padding: 0 10px;
	color: white;
}

.box-sx-menu span:nth-child(2) {
	/* border: 1px solid white; */
	border-width: 0 1px;
}

.under-logo {
	margin-top: 5px;
	text-transform: uppercase;
	color: var(--main-color);
	font-family: "SVNPoppinsBold";
	font-size: 15px;
}

.input-header {
	/* max-height: 25px; */
	border-radius: 3px;
	border: 1px solid #b1b1b1;
	background: #f5f5f5;
	text-indent: 14px;
	margin-right: 10px;
	height: 100%;
}

input.btn-form-header {
	border-radius: 3px;
	border: 1px solid #02582a;
	background: var(--CH-O, linear-gradient(90deg, #005527 0%, #00a652 100%));
	color: white;
	padding: 0px 10px;
	margin-left: 10px;
}

.box-ads-1 a {
	display: block;
	border-radius: 10px;
	overflow: hidden;
}

/* About us */

.about-us-titleeeee {
	color: var(--3, #1f1f1f);
	font-family: Inter;
	font-size: 17px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: -0.34px;
}

.title-about-us span {
	color: #db161d;
	font-family: Oswald;
	font-size: 55px;
	font-style: normal;
	font-weight: 700;
	/* 54.545% */
	letter-spacing: 1.65px;
	text-transform: uppercase;
}

.about-us-sub-name-2 {
	color: #161616;

	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 3.75px;
	text-transform: capitalize;
}

.tieuchi-desc {
	color: var(--Ni-dung, #333);

	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px;
	/* 146.667% */
}

.box-about-more-info {
	background: #db161d;
	position: absolute;
	min-width: 200px;
	min-height: 200px;
	padding: 25px;
	bottom: 80px;
	color: white;
	left: -20px;
}

span.about-more-name-left {
	font-size: 50px;
	font-style: normal;
	font-weight: 700;
	line-height: 30px;
	/* 60% */
}

span.about-more-name-right {
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 30px;
	/* 150% */
	letter-spacing: 4px;
	text-transform: uppercase;
}

.about-more-info-content {
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: 2px;
	text-transform: capitalize;
}

.about-more-name {
	margin-top: 12px;
}

.about-us-image:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 10px;
	left: -10px;
	border: 1px solid #005527;
	border-radius: 50px 0px;
}

.box-slide-chungnhan {
	width: 80%;
}

.box-left-chungnhan {
	position: relative;
}

.newsnb-info.info-news-2 {
	text-align: end;
	padding-right: 0;
	padding-left: 20px;
}

.header-time-open {
	font-family: Roboto;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	background: var(--CH-O, linear-gradient(90deg, #005527 0%, #00a652 100%));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#menu {
	display: none;
}

@keyframes calllink {
	0% {
		background-color: #cb0505;
		background-clip: text;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}

	50% {
		background-color: #cb0505;
		background-clip: text;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}

	100% {
		background: var(--CH-O, linear-gradient(90deg, #570000 0%, #570000 100%));
		background-clip: text;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
}

.doisotrung-left {
	padding: 0px 10px;
	text-align: center;
	background: var(--main-2, linear-gradient(180deg, #e9a51f 0%, #f9cb53 55.73%, #ecb831 100%));
	border-radius: 200px;
	margin-bottom: 26px;
	font-family: hk;
	font-size: 38px;
	line-height: 50px;
	color: #570000;
	text-transform: uppercase;
}

.doisotrung-left a {
	color: #b10000;
	text-shadow:
		2px 0 #fff,
		-2px 0 #fff,
		0 2px #fff,
		0 -2px #fff,
		1px 1px #fff,
		-1px -1px #fff,
		1px -1px #fff,
		-1px 1px #fff,
		4px -1px #570000;
}

.fix {
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
}
    