body.menu_open {
	overflow: hidden;
}

.show-menu {
	display: none;
}

.show-menu {
	z-index: 200;
	display: none !important;
	padding: 10px 0;
	color: #fff;
	cursor: pointer;
	font-size: 1.5em;
	font-weight: 400;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	background: #3a1f30;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.show-menu span {
	padding: 0 0 0 5px;
}

.navigationbar1 {
	padding: 0;
}

ul.menuup {
	height: calc(100% - 5px);
	float: none;
	margin: 0;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 767px) {
	.navbar {
		top: 0;
	}

	.navigationbar1 {
		height: 40px;
	}

	.show-menu {
		z-index: 200;
		display: flex !important;
		flex-flow: row nowrap;
		justify-content: center;
		align-items: center;
	}

	ul.menuup {
		z-index: 100;
		height: calc(100vh - 44px);
		position: static;
		display: block;
		transition: all 0.3s ease;
		transform: translate(0, calc(-100% - 44px));
		background-color: #202020;
		overflow-y: scroll;
	}

	ul.menuup.open_mod {
		transition: all 0.3s ease;
		transform: translate(0, 44px);
	}

	ul.menuup {
		width: 100%;
	}

	ul.menuup li.top-menu-item:last-of-type {
		margin-bottom: 50px;
	}

	.top-menu-item {
		display: block;
		float: none !important;
	}

	.top-menu-item:hover .sub-menu {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: all 0.3s ease;
	}
}

@media screen and (min-width: 768px) {
	.top-menu-item {
		border-bottom: 0 !important;
	}

	.sub-menu {
		padding: 0 !important;
		border-top: 4px solid #transparent;
		border-style: solid !important;
		position: absolute !important;
		display: block !important;
		background: #3a2933;
		color: #fff;
		z-index: 100;
		top: 27px;
		left: 0;
		border: none !important;
		padding: 0;
		opacity: 0;
		transition: all 0.3s ease;
		visibility: hidden;
		pointer-events: none;
		transform: translate(0, -30px);
	}

	.top-menu-item:hover .sub-menu {
		opacity: 1;
		transition: all 0.3s ease;
		visibility: visible;
		pointer-events: auto;
		transform: translate(0, 0);
	}
}