.navigation-wrapper{
	width: 100%;
    margin: 0 auto;
    max-width: 1024px;
    padding: 0 22px;
}
.navigation-wrapper.fixed{
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
    max-width: 1920px;
    padding: 0;
	background-color: #fff;
	box-shadow: 0 6px 20px #00000014;
}
.navigation-wrapper.fixed .navigation{
	box-shadow: 0 6px 20px #00000014;
}
.navigation-wrapper.fixed .navigation{
	max-width: 1024px;
	margin: 0 auto;
	padding: 12px 22px;
	border-radius: 0;
	box-shadow: none;
}
.navigation{
	background: #fff;
	display: flex;
	padding: 12px 18px;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    justify-content: space-between;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px;
}
.navigation-action-box ul{
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 10px;
}
.navigation-btn a{
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 6px 10px;
    border: 1px solid rgba(0,0,0,.22);
    border-radius: 4px;
    color: #3a3c3f;
    font-size: 14px;
    position: relative;
}
.navigation-btn a:hover{
	background-color: #efefef;
}
.navigation-btn.current a{
	background-color: #0f5ada;
	color: #fff;
	border-color: #0f5ada;
	font-weight: 600;
}
.navigation-btn a svg path{
	fill: #3a3c3f;
}
.navigation-btn.current a svg path{
	fill: #fff;
}
.navigation-btn .icon{
	display: flex;
	justify-content: center;
	align-items: center;
}
.navigation-btn .unread-count{
    padding: 0 4px;
    min-width: 15px;
    border-radius: 10px;
    background-color: #fa5a57;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    line-height: 15px;
    position: absolute;
    top: -6px;
    left: auto;
    right: -8px;
}
.navigation-search-box .search-form{
	display: flex;
	align-items: center;
}
.navigation-search-box .search-form input{
	border: none;
	height: 34px;
	padding: 0 10px;
	border: 1px solid rgba(0,0,0,.22);
	border-right: none;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	font-size: 14px;
	max-width: 200px;
}
.navigation-search-box .search-form button{
	all: unset;
	box-sizing: border-box;
	cursor: pointer;
	background-color: #2468de;
	color: #fff;
	height: 34px;
	line-height: 34px;
	padding: 0 14px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	font-size: 14px;
}
.navigation-search-box .search-form button:disabled{
	opacity: .5;
	cursor: not-allowed;
}
.navigation-search-box .search-form button:not(:diabled):hover{
	background-color: #0f5fda;
}
@media(max-width: 1068px){
	.navigation-wrapper{
		max-width: 724px;
	}
	.navigation-wrapper.fixed .navigation{
		max-width: 724px;
	}
}
@media(max-width: 833px){
	.navigation-wrapper{
		max-width: 700px;
		padding: 0 10px;
	}
	.navigation{
		padding: 10px;
	}
	.navigation-wrapper.fixed .navigation{
		max-width: 700px;
		padding: 10px;
	}
}
@media(max-width: 734px){
	.navigation-wrapper{
		max-width: 450px;
	}
	.navigation{
		padding: 0 10px;
	}
	.navigation-wrapper.fixed .navigation{
		padding: 0 10px;
	}
	.navigation-search-box{
		display: none;
	}
	.navigation-wrapper.fixed .navigation{
		max-width: 450px;
	}
	.navigation-action-box{
		width: 100%;
	}
	.navigation-action-box ul{
		width: 100%;
		justify-content: space-between;
	}
	.navigation-btn a{
		background-color: inherit;
		border: none;
		padding: 8px 12px;
		gap: 2px;
		font-size: 12px;
		flex-direction: column;
	}
	.navigation-btn a:hover {
	    background-color: inherit;
	}
	.navigation-btn.current a{
		background-color: inherit;
		color: #0f5ada;
		font-weight: 400;
	}
	.navigation-btn.current a svg path{
		fill: #0f5ada;
	}
}