.mobile-menu {
	pointer-events: none;
	opacity: 0;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transition: opacity 0.2s ease-out;
	z-index: 5;
}

.mobile-menu.active {
	pointer-events: initial;
	opacity: 1;
}

.dark-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.7);
}

.mobile-menu .inner {
	z-index: 1;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 260px;
	background-color: #003E4A;
	transform: translateX(100%);
	transition: transform 0.3s ease-out;
}

.mobile-menu.active .inner {
	transform: translateX(0%);
}

.mobile-menu .cross {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 21px;
	cursor: pointer;
}

.mobile-menu .menu {
	padding-top: 10px;
	font-size: 20px;
	overflow: auto;
  height: 100%;
}

.mobile-menu .menu .item {
	padding: 12px 20px;
}

.mobile-menu .menu .item.child {
	font-size: 14px;
	padding: 6px 20px;
}

.mobile-menu .menu .item a {
	color: #fff;
	text-decoration: none;
}

.mobile-menu .menu .item.active a {
	font-weight: 600;
}

/* -------------- Get Help button -------------- */

.mobile-menu .menu .item.get-help a::before {
	display: inline-block;
	content: '';
	height: 24px;
	width: 24px;
	background-image: url('../img/bulb.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin-right: 6px;
	margin-top: -2px;
	vertical-align: middle;
}

.mobile-menu .menu .item.get-help a {
	background-color: #ff812f;
	padding: 8px 10px;
	border-radius: 4px;
	vertical-align: middle;
}

.mobile-menu .menu .item.get-help.active a {
	background-color: #c26224;
}

/* -------------- Button with an orange outline -------------- */

.mobile-menu .menu .item.header-btn-outline {
	margin-bottom: 12px;
}

.mobile-menu .menu .item.header-btn-outline a {
	border: 1px solid #ff812f;
	padding: 8px 10px;
	border-radius: 4px;
}

.mobile-menu .menu .item.header-btn-outline.active a {
	background-color: #ff812f;
}