.header {
	font-family: "Shopee Display";
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-bottom: 0.8px solid #c2c2c2;
	background: #fff;
	z-index: 50;
	transition: all 0.4s ease-out;
}
.header-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}
.header-logo {
	flex-shrink: 0;
	height: 3.25rem;
	display: inline-block;
}
.header-logo img {
	width: auto;
	height: 100%;
}
.header-nav {
	display: flex;
	align-items: center;
}
.header-cart {
	position: relative;
	display: flex;
	padding: 0.75rem 1rem;
	margin-right: 0.5rem;
	cursor: pointer;
}
.header-cart-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	background: #fee;
	border-radius: 50%;
}
.header-cart-icon img {
	width: 1.5rem;
	height: auto;
}
.header-cart-qty {
	display: none;
	position: absolute;
	top: 0.625rem;
	left: 2.75rem;
	min-width: 1rem;
	height: 1rem;
	border-radius: 50%;
	background: #D32F2F;
	color: #fff;
	font-size: 0.8125rem;
}
.header-cart[data-quantity]:not([data-quantity="0"]) .header-cart-qty {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.header-account {
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
}
.header-account__avatar {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	margin-right: 0.75rem;
	border: 2.769px solid #dd9904;
	overflow:hidden;
}
.header-account__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}
.header-account__name {
	display: flex;
	align-items: center;
	margin-bottom: 0.1875rem;
}
.header-account__name-text {
	color: #1a1a1a;
	margin-right: 0.25rem;
	font-size: 1rem;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
}
.header-account__name-arrow {
	width: 0.5rem;
	height: auto;
	flex-shrink: 0;
}
.header-account__id {
	color: rgba(26, 26, 26, 0.6);
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
}
.header-account__dropdown {
	position: absolute;
	width: 14.375rem;
	box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.1);
	left: 0;
	top: calc(100% + 1.25rem);
	border-radius: 0.5rem;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease-out;
}
.header-account__dropdown.active {
	opacity: 100;
	visibility: visible;
}
.header-account__dropdown-list {
	list-style: none;
}
.header-account__dropdown-item {
	background: #fff;
}
.header-account__dropdown-item:not(:last-child) {
	border-bottom: 0.6px solid #efefef;
}
.header-account__dropdown-item__link {
	color: #1a1a1a;
}
.header-account__logout-btn {
	color: #d32131;
}
.header-account__dropdown-item__link,
.header-account__logout-btn {
	display: flex;
	align-items: center;
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
}
.header-account__dropdown-item__link img,
.header-account__logout-btn img {
	width: 1.25rem;
	height: auto;
	flex-shrink: 0;
	margin-right: 0.5rem;
}

@media (max-width: 639.98px) {
	
	.header-wrapper.container {
		width: 100%;
		padding: 0 1rem;
		height: 3.875rem;
	}
	.header-logo {
		height: 2.375rem;
	}
	.header-cart {
		margin-right: 0;
		padding: 0.79169rem 0.70831rem 0.83331rem 0.91669rem;
	}
	.header-cart-icon {
		width: 2.25rem;
		height: 2.25rem;
	}
	.header-cart-icon img {
		width: 1.35rem;
	}
	.header-account__avatar {
		width: 2.25rem;
		height: 2.25rem;
		margin-right: 0;
	}
	.header-account__info,
	.header-account__dropdown {
		display: none;
	}
	.header-login-btn .component-button__icon {
		width: 1.75rem;
		height: 1.75rem;
	}
}
