.header-top {
	background: #edeef2;
	line-height: 32px;
	padding: 2px 0;
	color: #000;
}

.box-header-top {
	display: flex;
	justify-content: center;
	/* justify-content: space-between; */
}

.box-header-top-left ul {
	display: flex;
	gap: 0px 15px;
}

.box-header-top-right ul {
	display: flex;
	gap: 0px 15px;
}

.search-desktop-header {}

.search-desktop-header form {
	height: 40px;
	border-radius: 5px;
	line-height: 40px;
	display: flex;
	justify-content: space-between;
	color: #000;
	background: white;
	border: 1px solid #ddd;
	align-items: center;
}

.search-desktop-header form .btn-search-desk {
	width: 46px;
	padding: unset;
	height: 90%;
	background: #d5150e;
	color: #fff;
	margin-right: 2px;
	font-size: 14px;
	border-radius: 5px;
}

.search-desktop-header form input {
	background: none;
	padding-left: 15px;
	font-size: 15px;
	width: 80%;
	font-family: Roboto, serif;
}

.box-header-right-center {
	display: flex;
	align-items: center;
	justify-content: right;
}

.hotline-header-center p {
	padding-bottom: 0px;
}

span.icon-cart svg {
	width: 27px;
	height: 27px;
	color: white;
}

span.icon-cart svg path {
	stroke: currentColor;
}

.cart-header-center {
	position: relative;
}

span.number-cart {
	width: 18px;
	height: 18px;
	display: inline-flex;
	background: white;
	color: var(--color-main);
	justify-content: center;
	align-items: center;
	border-radius: 100%;
	position: absolute;
	line-height: 18px;
	right: -7px;
	font-size: 12px;
}

.hotline-header-center p {
	font-size: 12px;
	padding: 0;
	color: #555;
	white-space: nowrap;
	font-weight: normal;
	line-height: 1.2;
}

.hotline-header-center strong {
	color: var(--color-main);
	font-size: 18px;
}

.hotline-header-center span {
	display: block;
	font-size: 15px;
	line-height: 1.5;

}

.logo-header {
	line-height: 0;
}

.logo-header img {
	width: 340px;
	height: auto;
	margin: 0;
}

span.icon-cart img {
	width: 40px;
	height: 40px;
}

.header-contact-item {
	gap: 10px;
}

.icon-right-header img {
	text-align: center;
	padding: 0;
	font-size: 26px;
	width: 20px;
	/* height: 20px; */
	animation: tada 1s infinite;
}

.icon-right-header {
	background: var(--color-main);
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 40px;
	max-height: 40px;
	height: 40px;
	box-sizing: border-box;
	line-height: 0;
	position: relative;
}

.icon-right-header::before {
	content: "";
	width: 50px;
	height: 50px;
	top: -7px;
	left: -7px;
	position: absolute;
	background-color: transparent;
	border-radius: 100%;
	border: 2px solid var(--color-main);
	opacity: 0.5;
	animation: pulse 1s infinite;
}

.icon-right-header::after {
	content: "";
	width: 44px;
	height: 44px;
	top: -4px;
	left: -4px;
	position: absolute;
	border-radius: 100%;
	border: 2px solid transparent;
	transition: all 0.5s;
	background-color: rgba(239, 0, 0, 0.5);
	opacity: 0.75;
	animation: pulse 1s infinite;
}

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

.search-desktop-header form .btn-search-desk svg {
	width: 20px;
	height: 20px;
	margin-left: 0;
}

.search-desktop-header form .btn-search-desk svg path {
	stroke: #fff;
}

@keyframes pulse {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes tada {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	10%,
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
	}

	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}

	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}

	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.box-menu-category {
	position: relative;
	border-top: 0px solid #F5F5F5;
	background: linear-gradient(to right, #2d3a95 0, #545d9f 25%, #7079bf 75%, #2d3a95 100%);
	background: var(--color-main);
}

.categories-menu:hover ul.nav {
	display: block !important;
}

.box-header-top-left ul li svg {
	margin-bottom: -2px;
	margin-right: 5px;
}

.box-header-top-right ul li svg {
	margin-bottom: -2px;
	margin-right: 4px;
	height: 16px;
}

.homecategories {
	position: absolute;
	top: 5px;
}



.categories-menu {
	background: #EE6C26;
	margin-bottom: 25px;
	display: flow-root;
	border-radius: 5px 5px 0 0;
}

.categories-menu .h3-title {
	padding: 8px 15px 7px 15px;
	color: #fff;
	background: #EE6C26;
	border-radius: 5px 5px 0 0;
	font-size: 16px;
	margin: 0;
	font-weight: bold;
	text-transform: uppercase;
}

.categories-menu .h3-title i {
	margin-right: 10px;
}

.categories-menu .h3-title svg {
	width: 25px;
	height: 25px;
	margin-bottom: -7px;
	margin-right: 10px;
}

.categories-menu .h3-title svg path {
	stroke: #fff;
	fill: #fff;
}

.categories-menu ul.nav {
	display: block;
	position: relative;
}

.categories-menu>.nav {
	border: 1px solid #EEE;
	border-top: none;
	border-radius: 0 0 3px 3px;
	display: none;
	z-index: 99;
	background: #fff;
}

.categories-menu ul li.grid {
	list-style: none;
	position: revert;
}

.icon-wifi {}

.categories-menu>ul>li>a {
	cursor: pointer;
	display: block;
	/* border-top: 1px solid #F5F5F5; */
	border-bottom: 1px solid #F5F5F5;
	color: #555;
	font-weight: 500;
	font-size: 15px;
}

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

.categories-menu>ul>li>a:last-child {}

.categories-menu .caret {
	float: right;
	margin-top: 8px;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 4px solid #666;
}

.caret {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 2px;
	vertical-align: middle;
	border-top: 4px dashed;
	border-top: 4px solid\9;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}

.categories-menu ul>li.haschild.grid>ul {}

.categories-menu ul>li>ul {
	position: absolute;
	left: 100%;
	top: 0;
	z-index: 999;
	width: 250px;
	background: #FFF;
	display: none;
	border: 1px solid #F5F5F5;
}

.box-nav-header-mobi {
	max-height: 100vh;
	overflow-y: auto;
}

.categories-menu ul>li.haschild.grid>ul>li {
	width: 100%;
	float: left;
	text-align: left;
	margin-right: 0;
}

.categories-menu ul li {
	list-style: none;
	position: relative;
}

.categories-menu ul>li:hover>ul {
	display: block;
}

.mainnav {
	/* background: #201A17; */
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mainnav .nav li a {
	color: #fff;
	font-size: 15px;
	text-transform: uppercase;
	display: inline-block;
}

.mainnav .nav li a:hover {
	background: none;
	color: #ff0;
}

.pull-right {
	float: right !important;
}

.top-baogia a {
	background: #FF312E;
	padding: 6px 20px;
	border-radius: 22px;
	display: block;
	color: #FFF;
}


.mainnav .nav li.haschild:last-child>ul {
	right: 0;
	width: 220px;
}

.mainnav .nav li.haschild:hover>ul {
	display: block;
	background: #fff;
	box-shadow: 0 8px 32px rgba(3, 44, 71, .24);
	border-radius: 0;
	padding: 0;
}

.mainnav .nav li.haschild:hover>ul.menu-mega {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.mainnav .nav li.haschild ul {
	display: none;
	position: absolute;
	top: 100%;
	z-index: 999;
	width: max-content;
	color: #333;
}

.mainnav .nav li ul {
	margin-left: 0;
	padding: 0;
}

li.menu-item.haschild {
	display: inline-block;
	position: relative;
}

.box-menu-category {
	box-shadow: rgb(0 0 0 / 8%) 4.95px 1.95px 3.6px;
}

.header-top a {
	color: #fff;
	font-size: 14px;
}

.categories-menu ul.nav {
	display: none !important;
	padding: 5px 0;
}

















/* signin  */



button.signup-mobile {
	display: none;
}

.sign-mobile {
	display: none;
}

/* dangky  */
li.menu-mobile-sb a {
	color: #fff !important;
}

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');

.header-mb__cart {
	position: relative;
}

.header-menu-mb {
	margin-right: 10px;
}

.header-mb__cart span.count-cart-mobile {
	position: absolute;
	background: #fff;
	border-radius: 100%;
	font-size: 10px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	top: -10px;
	right: -12px;
	width: 21px;
	height: 21px;
}

section.sigin-header {
	font-family: 'Montserrat', sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 999;
}

.container-singin {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
	position: relative;
	overflow: hidden;
	width: 768px;
	max-width: 100%;
	min-height: 480px;
}

section.sigin-header .overlay:after {
	background: none;
	content: "";
	display: none;
}

section.sigin-header .sign-up-container {
	left: 0;
	width: 50%;
	opacity: 1;
	z-index: 1;
}

section.sigin-header .form-container {
	position: absolute;
	top: 0;
	height: 100%;
	transition: all 0.6s ease-in-out;
}

section.sigin-header .sign-in-container {
	left: 0;
	width: 50%;
	z-index: 2;
}

section.sigin-header form {
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 50px;
	height: 100%;
	text-align: center;
}

section.sigin-header .social-container {
	margin: 20px 0;
}

section.sigin-header .social-container a {
	border: 1px solid #DDDDDD;
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0 5px;
	height: 40px;
	width: 40px;
}

section.sigin-header input {
	background-color: #eee;
	border: none;
	padding: 10px 15px;
	margin: 8px 0;
	width: 100%;
	font-size: 13px;
}

section.sigin-header button {
	border-radius: 20px;
	border: 1px solid #de2c27;
	background-color: #de2c27;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	padding: 10px 45px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: transform 80ms ease-in;
}

section.sigin-header form a {
	font-size: 14px;
	margin: 15px 0;
}

section.sigin-header form span {
	font-size: 12px;
}

section.sigin-header form h1 {
	font-weight: bold;
	margin: 0;
	font-size: 28px;
	color: #000;
}

section.sigin-header .overlay-panel {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 40px;
	text-align: center;
	top: 0;
	height: 100%;
	width: 50%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

section.sigin-header .overlay-right {
	right: 0;
	transform: translateX(0);
}

section.sigin-header .overlay {
	background: #FF416C;
	background: -webkit-linear-gradient(to right, #FF4B2B, #FF416C);
	background: linear-gradient(to right, #f52f29, #de2c27);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 0 0;
	color: #FFFFFF;
	position: relative;
	left: -100%;
	height: 100%;
	width: 200%;
	transform: translateX(0);
	transition: transform 0.6s ease-in-out;
}

section.sigin-header .overlay-container {
	position: absolute;
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	overflow: hidden;
	transition: transform 0.6s ease-in-out;
	z-index: 100;
}

section.sigin-header .overlay-panel h1 {
	font-size: 32px;
	font-weight: 700;
	color: #fff;
}

section.sigin-header .overlay-panel p {
	font-size: 14px;
	font-weight: 100;
	line-height: 20px;
	letter-spacing: 0.5px;
	margin: 20px 0 30px;
}

section.sigin-header .ghost {
	background-color: transparent;
	border-color: #FFFFFF;
}

section.sigin-header:before {
	left: 0;
	right: 0;
	bottom: 0;
}

.signup--header-home {
	position: relative;
	z-index: 9999;
}

.signup--header-home:before {
	content: "";
	position: fixed;
	background: #00000042;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 99;
}

.close-form-dk {
	position: absolute;
	right: 10px;
	z-index: 9999;
	font-size: 18px;
	color: #de2c27;
	top: 8px;
	background: #fff;
	height: 25px;
	width: 25px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 25px;
}

.right-panel-active .overlay {
	transform: translateX(50%) !important;
}

.right-panel-active .form-container.sign-up-container {
	transform: translateX(100%);
	opacity: 1;
	z-index: 5;
	animation: show 0.6s;
}

@keyframes show {

	0%,
	49.99% {
		opacity: 0;
		z-index: 1;
	}

	50%,
	100% {
		opacity: 1;
		z-index: 5;
	}
}

.form-container.sign-in-container {}

.right-panel-active .overlay-container {
	transform: translateX(-100%);
}

.right-panel-active .overlay-left {
	transform: translateX(0) !important;
}

.right-panel-active .overlay-right {
	transform: translateX(20%);
}

.right-panel-active .overlay-right {
	transform: translateX(20%);
}

section.sigin-header button:focus {
	outline: none;
}

.signup--header-home.active .sigin-header {
	top: 50%;
	transition: 1s ease;
}

.signup--header-home {
	opacity: 0;
	visibility: hidden;
}

.signup--header-home.active {
	opacity: 1;
	visibility: visible;
	/* display: none; */
	/* transition: 1s ease; */
}

/* end dangky  */

.toolbar-item.dangnhap i {
	font-size: 24px;
	color: #de2c27;
}

.password-container {
	width: 100%;
}

.password-container {
	position: relative;
	width: 100%
}

.toggle-password {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}

.box-logo-sign img {
	height: 65px;
	width: auto;
	margin-bottom: 15px;
}

.header-center-right.nav-mobiles {
	display: none;
}

.nav-icon-header-mobile svg path {
	stroke: #333;
}

.pull-right.top-baogia {
	display: none;
}

.btn-common-header {
	font-weight: 700;
	gap: 5px;
	text-transform: uppercase;
	background: repeating-linear-gradient(to right, #f30303 0, #f77b13, #f30303);
	background-size: 200% auto;
	color: #fff;
	padding: 6px 15px;
	border-radius: 8px;
	white-space: nowrap;
	animation: identifierLinear-gradient 3s linear forwards infinite;
	box-shadow: 0 0 2px #0000004d;
	display: block;
}

.btn-common-header:hover {
	color: white;
}

@keyframes identifierLinear-gradient {
	0% {
		background-position-x: 0
	}

	25% {
		background-position-x: -30%
	}

	50% {
		background-position-x: -70%
	}

	75% {
		background-position-x: -130%
	}

	to {
		background-position-x: -200%
	}
}
























.header-mobile {
	position: fixed;
	top: 0;
	background: #F5F5F5;
	width: 280px;
	z-index: 9999999;
	bottom: 0;
	left: -100%;
	transition: 0.5s ease;
}

.hedding-title-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 0px;
	padding-left: 15px;
}

.hedding-title-header svg {
	width: 25px;
	height: 25px;
}

.hedding-title-header p {
	padding-bottom: 0px;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 14px;
}


.icon-homes a {
	color: #555;
	height: 40px;
	display: inline-block;
	line-height: 40px;
	padding-left: 15px;
	font-weight: 400;
	font-size: 16px;
}

.icon-homes.icon-bg-header {
	background: #201A17;
}

.icon-homes.icon-bg-header a {
	color: #fff;
}

.box-item-menu-c1 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 45px;
	line-height: 45px;
}

.list-menu-item-mobile>ul>li {
	border: 1px solid #EEE;
	padding-left: 15px;
	padding-right: 15px;
	position: relative;
}

.list-menu-item-mobile>ul>li>.box-item-menu-c1>.caret-icon {
	top: 7px;
}

ul.box-ligowave-mobile {
	padding-left: 25px;
}

.box-ligowave-mobile>li>a {
	font-weight: 700;
}

ul.box-ligowave-mobile li a {
	display: inline-block;
	padding: 3px 0px;
	color: #555;
}

ul.box-ligowave-mobile li {
	list-style: circle;
	border-bottom: none;
	position: relative;
}

li .caret-icon {
	position: absolute;
	right: 0px;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 30px;

}

li.active>.box-item-menu-c1>.caret-icon,
li.active>.caret-icon {
	transform: rotate(90deg);
}

.box-item-menu-c1 a {
	color: #333;
	text-transform: uppercase;
	font-weight: 500;
}

.box-item-menu-c1 .caret {
	border-right: 4px solid #c9c9c900;
	border-left: 4px solid #c9c9c900;
}

.header-mobile.active {
	left: 0;
}

span.caret-icon svg {
	width: 10px;
	height: 10px;
}

span.caret-icon svg path {
	fill: #555 !important;
	stroke: #cdcdcd;
}

span.caret-icon {
	width: 30px;
	text-align: end;
}

.box-ligowave-mobile {
	display: none;
}

li.item-header-mobile-one.active>ul.box-ligowave-mobile {
	display: block;
}

.menu-c3-menu-mobile {
	display: none;
	padding-left: 15px;
}

li.active>.menu-c3-menu-mobile {
	display: block;
}

.signup--header-home.active .sigin-header {
	width: 97%;
}

section.sigin-header form {
	padding: 0px 20px;
}

li.menu-item.haschild .nav>li>a:hover {
	background: #f5f5f5;
	width: 100%;
	font-weight: 400;
	color: #333;
}

li.menu-item-twe a {
	width: 100%;
	padding: 8px 18px !important;
	font-weight: 400 !important;
	text-transform: capitalize !important;
}

.box-header-top-right ul li a:hover {
	color: #ff312e;
}

.search-desktop-header input:focus {
	outline: none;
}

.categories-menu>ul>li>a:hover {
	background: #eee;
}

li.menu-item-2 {
	padding: 9px 5px 6px 5px;
	border: 1px solid #F5F5F5;
}


li.menu-item-2 a {
	display: block;
}

li.menu-item-2 a:hover {
	color: #EE6C26;
}

li.menu-item-2 a img {
	width: 100%;
	height: auto;
}

li.menu-item-2 span {
	color: #555;
}

li.dangnhap a svg {
	width: 18px;
	height: 18px;
	margin-bottom: -3px;
	margin-right: 0px;
}

li.dangnhap a svg path {
	stroke: #555;
}

.dangnhap {
	cursor: pointer;
}






li.haschild.grid .icon-wifi img {
	/* display: none; */
	width: 17px;
	position: relative;
	top: 3px;
	margin-right: 5px;
}



.box-header-top-left img {
	height: 20px;
	margin-bottom: -4px;
}

.box-header-top-right img {
	height: 20px;
	margin-bottom: -5px;
}


header.header-scroll.header-bg {
	background: #fff;
	position: relative;
	z-index: 999;
}



li.dangnhap {
	position: relative;
}

.box-ul-aria {
	position: absolute;
	z-index: 999;
	background: #fff;
	width: 180px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	border-radius: 4px;
	display: none;
}

.box-ul-aria ul {
	display: block;
}

.box-ul-aria ul li a {
	padding: 0px 10px;
	width: 100%;
	display: block;
}

.box-ul-aria ul li a:hover {
	background: #eee;
}

li.dangnhap:hover .box-ul-aria {
	display: block;
}

.box-header-top-right ul li svg path {
	stroke: #fff;
}

li.dangnhaps:hover .box-ul-aria {
	display: block;
}

.name_city {
	padding-top: 10px;
	padding-left: 0;
	text-align: l;
	font-family: "Oswald", sans-serif;
}

.name_city span {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.0;
}

.name_city h2 {
	font-size: 30px;
	line-height: 1.5;
	color: #0e3861;
	font-weight: 800;
}

.header-main-center {
	padding: 5px 0;
}

.list-lengues {
	margin-left: 20px;
}

.list-lengues ul {
	display: flex;
}

.list-lengues ul span {
	color: #fff;
	margin-right: 10px;
}

.list-lengues ul li {
	margin-right: 10px;
	margin-top: 4px;
	line-height: 1.8;
	color: #fff;
}

.list-lengues ul li a img {
	width: 27px;
	height: 27px;
}

.box-header-top-left {
	color: #fff;
	font-size: 15px;
	font-weight: 500;
}




header.header-scroll.header-bg {}

.logo-header__category {
	background: #201A17;
	color: white;
	font-size: 13px;
	text-transform: uppercase;
	padding: 4px 8px 4px 2px;
	border-radius: 6px;
	display: none;
	cursor: pointer;
}

.box-all-center-header .categories-menu {
	position: absolute;
	top: calc(100% + 3px);
	display: none;
}

.box-all-center-header .categories-menu .nav {
	display: block !important;
}

.logo-header__category svg {
	width: 30px;
	height: 20px;
	stroke: white;
}

.logo-header__category svg path {
	fill: white;
}



.header-top__menu {
	color: white;
}

.header-top__menu ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

.header-top__menu ul li {
	display: flex;
}

.header-top__menu ul li svg,
.header-top__menu ul li img {
	width: 20px !important;
	height: 13px;
	margin-top: 8px;
}

.header-top__menu ul li i {
	line-height: 1;
}

.header-top__menu ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	color: black;
	text-decoration: none;
	font-size: 14px;
	gap: 5px;
}

.header-top__socail ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	color: black;
}

.header-top__socail ul a {
	color: white;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 28px;
	height: 28px;
	line-height: 1;
	border-radius: 50%;
	background: white;
	transition: background 0.3s;
}

.header-top__socail ul a svg,
.header-top__socail ul a img {
	width: 18px;
	height: auto;
	fill: white;
}

.header-top__socail ul a:hover {
	background: #f5f5f5;
}

.mainnav .nav li a.menu-item-contact {
	display: flex;
	align-items: center;
	padding: 0 10px;
	gap: 5px;
}

.menu-item-contact .txt {
	display: inline-block;
	line-height: 30px;
	background-color: #c71319;
	color: white;
	padding: 0 20px 0 25px;
	border-radius: 30px 0 0 30px;
}

.menu-item-contact .icon {
	line-height: 0;
}

.menu-item-contact .icon img {
	width: 37px;
	height: 37px;
}

.js-show-search {
	padding: unset;
	/* background: var(--bg-header); */
	color: #fff;
	margin-right: 2px;
	font-size: 14px;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	position: relative;
}

.js-show-search.active .icon-search {
	opacity: 0;
}

.js-show-search:not(.active) .icon-close {
	opacity: 0;
}

.js-show-search svg {
	width: 25px;
	height: 25px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all .3s ease;
}

.js-show-search svg path {

	stroke: currentColor;
}

li.menu-item-twe a {
	color: #333 !important;
}

.header-top__location {
	font-size: 12px;
}

.header-top__location img {
	position: relative;
	top: 5px;
}




.category {
	padding: 8px 0;
	background: var(--color-main);
}

.category-list {

	justify-content: center;
}

.category-list-item {
	width: calc(100% / 6);
}

.category-list-item a {
	color: white;
	font-weight: 700;
	text-align: center;
}

.category-list-img {}

.category-list-img img {
	max-width: 75px;
}

.cart-box {
	font-size: 12px;
	gap: 5px;
}

.cart-box .icon {
	line-height: 1;
}

.cart-box .icon svg {
	width: 17px;
	height: 17px;
}

.mainnav__right {}

.box-menu-category .search-desktop-header {
	position: absolute;
	top: 100%;
	z-index: 2;
	right: 0;
	background: var(--color-main);
	padding: 7px;
	width: 320px;
	border-radius: 8px;
	display: none;
}

.menu-mega-txt {
	text-align: center;
	font-weight: 500;
}

.menu-mega-img {
	text-align: center;
}

.menu-mega-img img {
	max-width: 75px;
}

.header-top__right>.d-flex {
	gap: 15px;
}

.header-main-center span.icon-cart svg {
	color: var(--color-main);
}

.header-main-center span.number-cart {
	color: white;
	background: var(--color-main);
	top: -6px;
}

.nav-icon-header-mobile {
	line-height: 0;
	border: 1px solid #c0c0c0;
	border-radius: 5px;
	padding: 5px;
}

.nav-icon-header-mobile svg path {
	stroke: #c0c0c0;
}

.nav-icon-header-mobile svg {
	width: 20px;
	height: 20px;
}

@media (min-width: 1024px) {
	header.header-scroll.header-bg .box-menu-category {
		position: fixed;
		width: 100%;
		z-index: 99999;

		box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
		top: 0px;
		padding: 3px 0;
	}
}

@media (max-width: 1023px) {
	.box-all-center-header-center {
		display: none;
		position: absolute;
		top: 100%;
		z-index: 1;
		background: white;
		padding: 10px;
		width: 100vw;
		max-width: 100vw;
		left: -10px;
	}

	.box-all-center-header-center.active {
		display: block;
	}

	.box-all-center-header-left {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
}

@media screen and (min-width: 992px) {}

@media(max-width:1100px) {
	.pull-right.top-baogia {
		display: none;
	}

}

@media(max-width:1300px) {
	.top-baogia a {
		font-size: 15px;
	}

	.mainnav .nav li a {
		padding: 11px 8px !important;
		font-size: 13px;
	}

	.header-top__left {
		display: none;
	}

	.header-top__right .d-flex {
		justify-content: space-between;
	}
}

@media (max-width: 786px) {
	button.sign-mobile {
		display: block;
	}
}

@media (max-width: 786px) {
	button.sign-mobile {
		margin-left: 10px;
	}
}

@media (max-width: 786px) {
	.box-sign {
		display: flex;
	}

}

section.sigin-header button {
	padding: 10px 30px;
}

@media (max-width: 786px) {
	.container-singin {
		width: 390px;
	}
}

@media (max-width: 786px) {
	section.sigin-header .sign-in-container {
		width: 100%;
	}
}

@media (max-width: 786px) {
	section.sigin-header .overlay-container {
		display: none;
	}
}

@media (min-width: 980px) {
	.homecategories {
		width: 240px;
		float: left;
	}
}

@media (min-width: 1200px) {
	.homecategories {
		width: 280px;
		float: left;
	}
}

@media (min-width: 768px) {
	.mainnav .nav li a {
		padding: 12px 9px;
		font-size: 12px;
	}
}

@media (min-width: 1200px) {
	.mainnav .nav li a {
		padding: 13px 20px 13px;
		font-size: 15px;
		font-weight: 700;
	}
}

@media (min-width: 980px) {
	.mainnav .nav li a {
		padding: 10px 30px 10px 0;
		font-size: 15px;
		font-weight: 500;
	}
}

@media(max-width: 1360px) {
	.hotline-header-center span {
		font-size: 12px;
	}

	.hotline-header-center strong {
		font-size: 15px;
	}
}

@media(max-width:1100px) {
	.mainnav .nav li a {
		padding: 11px 7px;
		font-size: 15px;
	}


}

@media(max-width:1023px) {
	.js-show-search svg {
		color: var(--color-main);
	}





	.box-menu-category .mainnav {
		display: none;
	}

	.box-menu-category .search-desktop-header {
		right: auto;
		left: 0;
		position: relative;
        display: block;
		width: 100%;
		padding: 5px 0;
	}
}

@media(max-width:990px) {


	.header-top {
		display: none;
	}

	p.login-name {
		margin-top: 10px;
		padding: 0px 20px;
		color: #444;
	}

	.box-menu-c2-desk.box-menu-c2-desk-login {
		background: #fff;
		padding: 0px 20px;
	}

	.box-menu-c2-desk.box-menu-c2-desk-login ul li a {
		padding: 4px 0px;
		display: block;
	}

	.box-all-center-header {
		padding: 0px 0px;
	}

	.box-header-top-left {
		width: 100%;
		font-size: 14px;
		font-weight: 400;
	}

	.box-header-top-left ul {
		justify-content: center;
		text-align: center;
	}

	header.header-scroll.header-bg .header-main-center {
		box-shadow: 0 1px 14px rgba(0, 0, 0, 0.06);
	}

	.box-item-menu-c1 a {
		font-weight: 700;
	}

	.logo-header img {
		width: 194px;
	}

	button.btn-search-desk span {
		display: none;
	}

	.search-desktop-header form .btn-search-desk {
		width: 40px;
	}
	.search-desktop-header form{
		line-height: 32px;
		height: 32px;
	}
	.search-desktop-header form .btn-search-desk svg {
		margin-left: 0px;
	}

	.box-products-action {
		margin-bottom: 10px;
		border-bottom: 1px solid #cdcdcd;
	}

	.content-desc-products {
		margin-bottom: 10px;
	}

	.price-products span {
		font-size: 18px;
	}

	.price-products s {
		font-size: 15px;
	}



	.header-center-right.nav-mobiles {
		display: block;
		padding-right: 10px;
	}

	.box-header-top-right {
		display: none;
	}

	.box-header-top {
		justify-content: center;
	}

	.icon-right-header {
		display: none;
	}

	.hotline-header-center {
		display: none;
	}

	.box-header-right-center {
		display: none;
	}

	.header-center-right.nav-mobiles .box-header-right-center {
		display: flex;
	}


	.menu-header-center-mobile {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	span.icon-cart img {
		width: 30px;
		height: 30px;
	}

	/* .box-menu-category {
		display: none;
	} */

	.header-scroll:not(.header-bg) .menu-header-center-mobile {
		/* padding-bottom: 8px; */
	}

	.logo-header {
		margin: 0 auto;
	}


}

@media(max-width:768px) {
	.header-top__menu {
		display: none;
	}

	.list-lengues ul span {
		display: none;
	}

	.list-lengues {
		margin: 0;
		width: 25%;
	}

	.box-products-action {
		margin: 0;
	}

	header.header-scroll.header-bg .search-desktop-header {
		display: none;
	}

	header.header-scroll.header-bg .box-all-center-header {
		padding: 8px 0 5px;
	}

	.header-top__right .d-flex {
		justify-content: center;
	}
}

@media (min-width: 980px) {
	/* .mainnav {
		margin-left: 260px;
	} */
}

@media (min-width: 1200px) {
	/* .mainnav {
		margin-left: 300px;
	} */
}


@media (min-width: 980px) {
	.categories-menu ul>li.haschild.grid>ul {
		width: 710px;
		height: 351px;
	}
}

@media (min-width: 1200px) {
	.categories-menu ul>li.haschild.grid>ul {
		width: 278px;
		height: 100%;
	}
}


@media (min-width: 1200px) {
	.categories-menu>ul>li>a {
		padding: 13px 15px 13px 45px;
		font-size: 15px;
	}
}


@media (min-width: 980px) {
	.categories-menu>ul>li>a {
		padding: 6px 15px 6px 45px;
		font-size: 15px;
	}
}

@media (min-width: 768px) {
	.categories-menu>ul>li>a {
		padding: 7px 8px 7px 10px;

	}
}
