




.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: 30px;
  height: 30px;
  display: inline-block;
  position: fixed;
  z-index: 10;
  top: 45px;
  right: 32px;
  cursor: pointer;
}
.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: 100%;
  left: 0;
  right: 0;
  position: absolute;
  text-decoration: none;
  list-style: none;
  height: 0;
  overflow-y: scroll;
  -ms-overflow-style: none;
  background: #16161D;
  width: 100%;
  /* border-bottom: 4px solid white; */
  text-align: center;
  opacity: 0;
}
.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: white;
}
.HeaderMobileMenu .toggle {
  height: 450px;
  opacity: 1;
}
.cotton {
  position: fixed;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  z-index: 1000;
}
.cotton-toggle {
  height: 100%;
}

.mobile-li a.selected{
	color: #FC0989;
}

@media all and (max-width: 1200px) {
  .HeaderMobileMenu {
    display: block;
  }
  .HeaderMobileMenu .menu-trigger {
    top: 30px;
  }
}
@media all and (max-width: 500px) {
  .HeaderMobileMenu .links ul li {
    margin: 0;
    font-size: 1.1rem;
  }
}
