.HeaderMobileMenu {
	float: right;
	top: 0;
	display: none;
	/* These are the icon lines */
	/* Line 2 and three are sitting on each other so we can animate an X from the center */
	/* This is the X Icon */
	/* Second line rotating 45 Deg */
	/* Third line rotating -45 Deg */
}

.HeaderMobileMenu .menu-trigger {
	width: 40px;
	height: 30px;
	display: inline-block;
	position: fixed;
	z-index: 10;
	top: 45px;
	right: 32px;
	cursor: pointer;
	z-index: 9999;
}

.HeaderMobileMenu .menu-trigger span {
	position: absolute;
	display: inline-block;
	height: 2px;
	width: 100%;
	background: #ffffff;
	transition: all 0.3s linear;
}

.HeaderMobileMenu .menu-trigger span:nth-child(1) {
	top: 0px;
}

.HeaderMobileMenu .menu-trigger span:nth-child(2), .HeaderMobileMenu .menu-trigger span:nth-child(3)
	{
	top: 8px;
}

.HeaderMobileMenu .menu-trigger span:nth-child(4) {
	top: 16px;
}

.HeaderMobileMenu .icon-active span:nth-child(1), .HeaderMobileMenu .icon-active span:nth-child(4)
	{
	opacity: 0;
}

.HeaderMobileMenu .icon-active span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.HeaderMobileMenu .icon-active span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.HeaderMobileMenu .links {
	color: white;
	top: 160px;
	left: 0;
	right: 0;
	position: absolute;
	text-decoration: none;
	list-style: none;
	height: 0;
	overflow-y: scroll;
	-ms-overflow-style: none;
	background: white;
	width: 100%;
	/* border-bottom: 4px solid white; */
	text-align: center;
	opacity: 0;
	z-index: 9999;
	border-radius: 30px;
}

.HeaderMobileMenu .links::-webkit-scrollbar {
	display: none;
}

.HeaderMobileMenu .links ul li {
	list-style: none;
	margin: 0.6rem;
	font-size: 1.3rem;
	/* line-height: 75px; */
}

.HeaderMobileMenu .links li:nth-child(1) {
	padding-top: 0;
}

.HeaderMobileMenu .links a {
	text-decoration: none;
	color: black;
}

.HeaderMobileMenu .toggle {
	height: 250px;
	opacity: 1;
}

.cotton {
	position: fixed;
	height: 0;
	background-color: rgba(0, 0, 0, 0.5);
	width: 100%;
	z-index: 1000;
}

.cotton-toggle {
	height: 100%;
	bottom: 0;
}

@media all and (max-width: 767px) {
	.HeaderMobileMenu {
		display: block;
	}
	.HeaderMobileMenu .menu-trigger {
		top: 80px;
		position: absolute;
	}
}

@media all and (max-width: 500px) {
	.HeaderMobileMenu .links ul li {
		margin: 0;
		font-size: 1.1rem;
	}
}

@media all and (max-width:360px) {
	.HeaderMobileMenu .menu-trigger {
		width: 20px;
		position: absolute;
	}
}