.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  opacity: 0;
	transition: opacity 0.5s ease-in-out;
}
.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.menu-trigger {
  display: inline-block;
  width: 30px;
  height: 24px;
  vertical-align: middle;
  cursor: pointer;
  position: fixed;
  top: 24px;
  right: 18px;
  z-index:302;
  transform: translateX(0);
  transition: transform 0.5s ease-in-out;
 }
 .menu-trigger.active {
  /*transform: translateX(-250px);*/
}
 .menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #b97db3;

}
.menu-trigger.active span {
  background-color: #FFF;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
  transition: all 0.5s ease-in-out;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(11px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
  top: 11px;
  transition: all 0.5s ease-in-out;
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
  transition: all 0.5s ease-in-out;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-11px) rotate(45deg);
}

nav {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 301;
  width: 320px;
  max-width: 100%;
  height: 100%;
  background: #b97db3;
  padding: 40px 18px 30px 30px;
  font-size: 1rem;
  line-height: 1.5;
  transition: all 0.5s ease-in-out 0s;
  /*transform: translateX(-100%);left*/
  transform: translateX(100vw);
}
nav.open {
  /*transform: translateX(0);left*/
  transform: translateZ(0);
text-align:left;
}

nav span{
  font-size: 0.7rem;
  display: block;
}
nav a.navlink {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #FFF;
  transition: all 0.3s ease 0s;
  margin-bottom: 20px;
text-align:left;
}
/*nav a.navlink::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.2rem;
  margin-top: -2.2rem;
  background: rgba(255,255,255,0.3);
  transition: all 0.3s ease 0s;
}*/
nav a.navlink:hover {
  cursor: pointer;
  color: #ffc8c2;
}
/*nav a.navlink:hover::after {
  width: 100%;
}*/
nav i.txIcon {
	font-size: 70%;
}
/*a.navBtn {
  color: #FFF;
  background-color: #4382b5;
	padding: 1.2rem 1.2rem 1.2rem 1.6rem;
	border-radius: 0.4rem;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
  font-size: 1.6rem;
  text-decoration: none;
}
a.navBtn i {
	margin-left: 0.8rem;
}
a.navBtn:hover {
	color: #000;
	background-color: #eee;
}*/
