.tab_bar{
	position: -webkit-sticky;
	position: sticky;
	top: 46px;
	margin-top: 3px;
	margin-bottom: 3px;
	background: #f5f5f5;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding:5px;
	z-index:5;
}
@media screen and (max-width: 750px) {
	.tab_bar{
		position: static;
		top: 40px;
	}
}
.tab_bar ul{
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-wrap: wrap;
}
.tab_bar ul li{
	width: 18%;
	height: 42px;
	font-size: 15px;
	border-radius: 20px 20px 20px 20px;
}
.tab_bar div{
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: flex;
	height: 100%;
	text-align: center;
	align-items: center;
	color: #ffffff;
	background-color: #f3981b;
	border: 1px solid #d9d9d9;
	border-radius: 20px 20px 20px 20px;
	justify-content: center;
	padding: 5px 10px 5px 10px;
	margin: 2px;
}
.tab_bar div:hover{
	transition: 0.3sec;
	color:#500;
	background: #ffea80;
	border: 1px solid #ff8800;
	box-shadow: 0 0 4px 1px rgba(255, 130, 00, 0.3);
}
@media screen and (max-width: 750px) {
	.tab_bar ul li{
		width: 19%;
		height: auto;
		font-size: 14px;
	}
	.tab_bar div{
		padding: 5px 3px 5px 3px;
	}
}
.tab_bar div > span{
	white-space: nowrap;
	margin-top:auto;
	margin-bottom:auto;
}
.tab_bar-active div{
	color: #666666;
	background-color: #ffffff;
}
.tab_bar-empty{
	display: none;
	height:0;
	padding-top:0;
	padding-bottom:0;
	margin-top:0;
	margin-bottom:0
}
@media screen and (max-width: 600px) {
	.tab_bar-empty{
		display: block;
	}
}
/*-------------------------------*/
.tab_bar_flex{
	position: -webkit-sticky;
	position: sticky;
	top: 44px;
	font-size: 15px;
	line-height: 24px;
	margin-bottom: 5px;
	background-color:#fff;
	z-index:5;
}
.tab_bar_flex ul{
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-wrap: wrap;
}
.tab_bar_flex ul li{
	width: 150px;
	margin: 3px;
}
.tab_bar_flex div{
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: 12px;
	line-height: 14px;
	text-align: center;
	color: #555;
	background: #f6f6f6;
	border: 1px solid #ccc;
	border-radius: 15px;
	padding: 5px 8px 7px 8px;
}
.tab_bar_flex div:hover{
	border:1px solid #aaccff;
	border-radius: 20px;
	background:rgba(150,230,255,0.1);
	box-shadow: 0 0 6px 1px rgba(210, 230, 255, 0.8);
}

.tab_bar_flex-empty{
	height:0;
	padding-top:0;
	padding-bottom:0;
	margin-top:0;
	margin-bottom:0
}
.genre_nav-open{

}
.genre_nav-open > div {
	width: 230px;
	border: 1px solid #aaa;
	border-radius: 15px;
	text-align: center;
	padding:5px 20px;
	background: #e5ecf0;
	margin: 10px auto;
}