.zc-custom-menu {
	display: flex;
	flex-direction: column;
	gap: 26px;
	width: 100%;
}

.zc-custom-menu__item {
	width: 100%;
}

.zc-custom-menu__row {
	display: grid;
	grid-template-columns: 30px minmax(0, 1fr) 30px;
	align-items: center;
	width: 100%;
}

.zc-custom-menu__side {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

.zc-custom-menu__side--left {
	justify-content: flex-start;
}

.zc-custom-menu__side--right {
	justify-content: flex-end;
}

.zc-custom-menu__center {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 0;
	text-align: center;
}

.zc-custom-menu__link,
.zc-custom-menu__link--nolink {
	display: inline-block;
	text-decoration: none;
	color: #fff;
	text-align: center;
	line-height: 1.1;
	transition: color .2s ease, opacity .2s ease;
}

.zc-custom-menu__link--nolink {
	cursor: default;
}

.zc-custom-menu__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	color: #fff;
	flex: 0 0 auto;
}

.zc-custom-menu__toggle:hover,
.zc-custom-menu__toggle:hover svg,
.zc-custom-menu__toggle:focus {
    background: transparent !important;
    color: #DACAAA;
}

.zc-custom-menu__toggle svg {
	width: 18px;
	height: 18px;
	transition: transform .28s cubic-bezier(.4, 0, .2, 1), color .2s ease;
}

.zc-custom-menu__item.is-open > .zc-custom-menu__row .zc-custom-menu__toggle svg {
	transform: rotate(180deg);
}

.zc-custom-menu__children {
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
	display: none;
	flex-direction: column;
    align-items: center;
	gap: 14px;
}

.zc-custom-menu__item.is-open > .zc-custom-menu__children {
	display: flex;
}

.zc-custom-menu__children li,
.zc-custom-menu__children a,
.zc-custom-menu__children span {
	line-height: 1.2;
	text-decoration: none;
}


.zc-custom-menu__item.is-active > .zc-custom-menu__row > .zc-custom-menu__center > .zc-custom-menu__link,
.zc-custom-menu__children li.is-active > a {
	color: #DACAAA !important;
	opacity: 1;
}
.zc-custom-menu__item.is-open > .zc-custom-menu__children {
	display: flex !important;
}

.zc-custom-menu__children {
	width: 100%;
}

@media (max-width: 767px) {
	.zc-custom-menu__row {
		grid-template-columns: 24px minmax(0, 1fr) 24px;
	}
}