.hd-tablet{
	display: none;
}
.header-tablet{
	width: 100%;
	padding: 10px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.header-tablet .bars-tablet i.fa{
	font-size: 20px;
	cursor: pointer;
}
.header-tablet .search-tablet{
	width: 100%;
	margin-top: 10px;
}
.header-tablet .search-tablet form{
	width: 100%;
	display: flex;
}
.header-tablet .search-tablet input{
	flex: 1;
	padding: 0 10px;
	outline: none;
	border: 1px solid #ccc;
	border-right: none;
	border-radius: 7px 0 0 7px;
}
.header-tablet .search-tablet button{
	padding: 10px;
	font-size: 16px;
	cursor: pointer;
	outline: none;
	border: 1px solid #ccc;
	background: #fff;
	border-left: none;
	border-radius: 0 7px 7px 0;
}
.overlay-nav-menu{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	z-index: 998;
	background: rgba(0, 0, 0, .6);
	cursor: pointer;
	display: none;
}
.overlay-nav-menu.show{
	display: block;
}
.nav-menu-tablet{
	width: 100%;
	max-width: 480px;
	height: 100vh;
	position: fixed;
	top: 0;
	left: -480px;
	transition: left .5s ease;
	z-index: 999;
	background: #fff;
}
.nav-menu-tablet.show{
	left: 0;
}
.nav-menu-tablet .menu-container{
	width: 100%;
	height: 100%;
	overflow: auto;
	position: relative;
}
.nav-menu-tablet .menu-container .close-menu{
	position: absolute;
	right: 10px;
	top: 10px;
	font-size: 22px;
	cursor: pointer;
	color: #fff;
}
.nav-menu-tablet .menu-container .user-info{
	width: 100%;
	display: flex;
	align-items: center;
	background: #6f3626;
	padding: 10px;
}
.nav-menu-tablet .menu-container .user-info .user-avatar{
	width: 65px;
	height: 65px;
	border-radius: 10px;
	overflow: hidden;
}
.nav-menu-tablet .menu-container .user-info .user-avatar img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.nav-menu-tablet .menu-container .user-info .user-name{
	flex: 1;
	padding-left: 20px;
}
.nav-menu-tablet .menu-container .user-info .user-name ul{
	width: 100%;
	list-style: none;
}
.nav-menu-tablet .menu-container .user-info .user-name ul li{
	padding: 3px 0;
}
.nav-menu-tablet .menu-container .user-info .user-name ul li a{
	text-decoration: none;
	color: #fff;
	transform: color .3s ease;
}
.nav-menu-tablet .menu-container .user-info .user-name ul li a:hover{
	color: #ccc;
}
.nav-menu-tablet .menu-container > ul{
	width: 100%;
	list-style: none;
}
.nav-menu-tablet .menu-container > ul li{
	width: 100%;
}
.nav-menu-tablet .menu-container > ul li:hover{
	background: #ccc;
}
.nav-menu-tablet .menu-container > ul li.active{
	background: #ccc;
}
.nav-menu-tablet .menu-container > ul li.border{
	border-bottom: 1px solid #6f3626;
}
.nav-menu-tablet .menu-container > ul li a{
	display: inline-block;
	text-decoration: none;
	color: #333;
	width: 100%;
	padding: 10px;
}