.custom-menu > ul > li > ul li a {
	text-decoration: none;
	color: var(--color-white);
	font-size: 16px;
}

.custom-menu ul li.has-child .custom-menu-arrow {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	z-index: 1;
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
}

.custom-menu ul li ul {
	margin: 0;
}

.custom-menu ul li.has-child {
	position: relative;
}

.custom-menu > ul {
	border-top: 1px solid rgba(255, 255, 255, .2);
}

.custom-menu > ul > li > a {
	text-decoration: none;
	font-weight: 700;
	display: block;
	padding: 10px 20px;
	color: var(--color-white);
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.custom-menu > ul > li > .sub-menu li a {
	display: block;
	padding: 10px 20px;
	color: var(--color-white);
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.custom-menu .current-parent a i {
	transform: rotate(180deg);
	margin-right: 5px;
	display: inline-block;
}

.custom-menu .current-parent {
	color: var(--color-white);
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.custom-menu .current-parent a {
	display: flex !important;
	align-items: center;
	border-bottom: 0 !important;
	padding: 10px 20px !important;
	font-size: 16px;
	text-decoration: none;
	color: var(--color-white);
	background: rgba(0, 0, 0, .1);
}

.custom-menu > ul li .sub-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: auto;
	padding: 60px 0 20px;
	transition: all 0.5s;
	background: linear-gradient(to right, rgba(31, 181, 218, 1) 0%, rgba(71, 30, 152, 1) 100%);
	transform: translate3d(-100%, 0, 0);
	opacity: 0;
}

.custom-menu > ul li .sub-menu.is-open {
	z-index: 8;
	transform: translateX(0);
	opacity: 1;
}

.submenu-parent-title {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	padding: 0 80px 0 20px;
	font-weight: 700;
	display: flex;
	font-size: 22px;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, .2);
	color: var(--color-white);
}

.custom-menu .menu-close {
	position: absolute;
	top: 10px;
	right: 15px;
	z-index: 90;
	text-decoration: none;
	width: 40px;
	height: 40px;
	font-size: 18px;
	display: flex;
	border: 0;
	border-radius: 4px;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	background: var(--color-black);
}

.custom-menu {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: auto;
	overscroll-behavior: auto;
	z-index: 992;
	width: 100%;
	height: 100%;
	overflow: auto;
	box-shadow: 0 0 10px rgba(0, 0, 0, .2);
	background: linear-gradient(to right, rgba(31, 181, 218, 1) 0%, rgba(71, 30, 152, 1) 100%);
	padding: 60px 0 20px;
	transform: translate3d(-100%, 0, 0);
	transition: all 0.5s;
}

.is-open-menu .custom-menu {
	opacity: 1;
	transform: translate3d(0, 0px, 0px);
}

.menu-overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 991;
	visibility: hidden;
	transition: all 0.5s;
	background: rgba(0, 0, 0, .4);
}

.wrapper {
	transition: all 0.5s;
}

body.is-open-menu {
	overflow: hidden;
}

body.is-open-menu .wrapper {
	/*transform: translate3d(300px, 0px, 0px);*/
}

.is-open-menu .menu-overlay {
	opacity: 1;
	visibility: visible;
}

@media only screen and (min-width: 1025px) {
	.custom-menu {
		display: none;
	}
}
