.nav {
	background: #22a0ef;
	position: relative;
	z-index: 1;
}
.index .nav {
	margin: 0 0 10px;
}
.nav .container {
	position: relative;
}
.nav__list {
	display: table;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav__item {
	display: table-cell;
	border-right: 1px solid #197fbf;
}
.nav__item:first-child {
	border-left: 1px solid #197fbf;
}
.nav__link {
	font-size: 1.4rem;
	line-height: 30px;
	display: block;
	padding: 0 5px;
	transition: background 100ms linear;
	text-align: center;
	text-decoration: none;
	color: #fff;
	background: transparent;
}
.nav__link:hover,
.nav__link.active {
	color: #fff;
	background: rgba(0,0,0,.3);
}

/* resp
===================================*/
@media (max-width: 991px) {
	.nav__link {
		font-size: 1.1rem;
	}
	/*.nav__link {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 70px;
	}*/
}
@media (min-width: 768px) and (max-width: 1199px){
	.nav__link {
		font-size: 1.2rem;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.nav__list {
		display: flex;
		flex-wrap: nowrap;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	.nav__item {
		flex-shrink: 0;
	}
	.nav__item:first-child .nav__link {
		font-size: 1rem;
	}
	.nav__item:nth-last-child(n+13) ~ * .nav__link {
		font-size: 1rem;
		padding: 0 3px;
	}
}
@media (max-width: 767px) {
	.nav {
		/*margin: 51px 0 0;*/
		box-shadow: none;
		background: #e5e5e5;
		/*background: transparent;*/
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		width: 270px;
		overflow-y: hidden;
		z-index: 130;
		transform: translateX(-100%);
		-webkit-transform: translateX(-100%);
	}
	.nav .container {
		padding: 0;
		position: static;
	}
	.nav__list {
		display: block;
		position: absolute;
		top: 52px;
		bottom: 0;
		left: 0;
		right: 0;
		overflow-y: auto;
	}
	.nav__item {
		display: block;
		border: 0 !important;
		border-bottom: 1px solid #d1d1d1 !important;
	}
	.nav__link {
		font-size: 1.7rem;
		line-height: 30px;
		padding: 10px 15px;
		text-align: left;
		position: relative;
		color: #2c2c2c;
	}
	.nav__link:hover,
	.nav__link.active {
		color: #2c2c2c;
		background-color: #d1d1d1;
	}
	.nav__close {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		border-bottom: 1px solid #d1d1d1;
		z-index: 1;
		background: #e5e5e5;
	}
	.nav__close .fa {
		vertical-align: top;
		margin-top: 1px;
		color: #7e7e7e !important;
		font-size: 2.6rem;
		text-decoration: none;
	}
	body.open_left .nav {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	/*.nav__item:nth-child(odd){
		background: #22a0ef;
	}
	.nav__item:nth-child(even){
		background: #e8e8e8;
	}
	.nav__item:nth-child(odd) .nav__link {
		color: #fff;
	}
	.nav__item:nth-child(even) .nav__link {
		color: #2c2c2c;
	}*/
	/*.nav__link:after {
		font-family: 'FontAwesome';
		content: '\f105';
		display: inline-block;
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
		font-size: 2.4rem;
	}
	.nav__item:nth-child(odd) .nav__link:after {
		color: #fff;
	}
	.nav__item:nth-child(even) .nav__link:after {
		color: #9e9e9e;
	}*/
	/*.nav__link:hover {
		background: transparent;
	}*/

	.nav .sub_nav__item {
		border-width: 0 0 1px;
		border-style: solid;
		border-color: #d1d1d1;
		display: block;
	}
	.nav .sub_nav__link {
		display: block;
		text-decoration: none;
		background: transparent;
		font-size: 1.7rem;
		line-height: 30px;
		padding: 10px 15px;
		text-align: left;
		position: relative;
		color: #2c2c2c;
	}
	.nav .sub_nav__link:after {
		display: none;
	}
	.nav .sub_nav__name {
		text-decoration: none;
		display: block;
	}
}
