/* NS Mobile Menu Styles */

@media (max-width: 767px) {
	.ns-menu-item-has-children {
		position: relative;
	}

	.ns-submenu-toggle {
		position: absolute;
		right: 0;
		top: 0;
		width: 40px;
		height: 54px;
		cursor: pointer;
		z-index: 10;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.ns-submenu-toggle:before,
	.ns-submenu-toggle:after {
		content: '';
		position: absolute;
		background-color: #fff;
		transition: transform 0.3s ease;
	}

	.ns-submenu-toggle:before {
		width: 12px;
		height: 1px;
	}

	.ns-submenu-toggle:after {
		width: 1px;
		height: 12px;
	}

	.ns-submenu-toggle.ns-active:after {
		transform: rotate(90deg);
	}

	.menu-item:not(.wpml-ls-item) .sub-menu {
		display: none;
	}

	.sub-menu.ns-active {
		display: block;
		opacity: 1;
		visibility: visible;
	}
}

@media (min-width: 768px) {
	.ns-submenu-toggle {
		display: none;
	}
}
