/* Меню каталога в шапке — вариант 3 */

.nav {
	overflow: visible;
}

.nav__categ {
	position: relative;
	z-index: 50;
}

.nav-categ-dropdown {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	width: 720px;
	max-width: calc(100vw - 30px);
	z-index: 100;
	background: #fff;
	border-radius: 0;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
	overflow: hidden;
}

.nav__categ.is-open .nav-categ-dropdown {
	display: block;
}

.nav-categ-menu__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px 10px;
	border-bottom: 1px solid #ebebeb;
	background: #f8f9fb;
}

.nav-categ-menu__head-title {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	color: #2d2d2d;
}

.nav-categ-menu__head-link {
	font-size: 14px;
	color: #565656;
	text-decoration: none;
	white-space: nowrap;
}

.nav-categ-menu__head-link:hover {
	color: #4b87eb;
	text-decoration: none;
}

.nav__categ.is-open .nav__btn .nav__img {
	display: none;
}

.nav__categ.is-open .nav__btn .nav__imgc {
	display: block;
}
