#nav-container {
	height: 100%;
	width: 100%;
	pointer-events: none;
	z-index: 99999;
}
#nav-container .bg {
	position: absolute;
	top: 42px;
	left: 0;
	width: 100%;
	height: 100vh;
	visibility: hidden;
	opacity: 0;
	transition: opacity .3s, visibility 0s;
	background: #000;
	z-index:999;
}
#nav-container:focus-within .bg {
 visibility: visible;
 opacity: .6;
}
#nav-container * {
	visibility: visible;
}
.buttonopen {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
	-webkit-appearance: none;
	border: 0;
	background: transparent;
	border-radius: 0;
	width: 30px;
	cursor: pointer;
	pointer-events: auto;
	margin-left: 0px;
	touch-action: manipulation;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.buttonopen:focus {
	outline:0;
}
 #nav-container:focus-within .buttonopen {
 pointer-events: none;
}
.button {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
	-webkit-appearance: none;
	border: 0;
	background: transparent;
	border-radius: 0;
	width: 30px;
	cursor: pointer;
	pointer-events: auto;
	margin-left: 0px;
	touch-action: manipulation;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.button:focus {
	outline:0;
}
.icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	background: #FFF;
 transition: .3s;
}
.icon-bar + .icon-bar {
	margin-top: 5px;
}
 #nav-container:focus-within .button {
 pointer-events: none;
}
#nav-container:focus-within .icon-bar:nth-of-type(1) {
 transform: translate3d(0, 8px, 0) rotate(45deg);
}
#nav-container:focus-within .icon-bar:nth-of-type(2) {
 opacity: 0;
}
#nav-container:focus-within .icon-bar:nth-of-type(3) {
 transform: translate3d(0, -8px, 0) rotate(-45deg);
}
#nav-content {
	margin-top: 42px;
	padding: 0px;
	width: 70%;
	max-width: 300px;
	position: absolute;
	top: 0;
	left: 0;
	height: 100vh;
	background: #FFF;
	pointer-events: auto;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	transform: translateX(-100%);
 transition: transform .3s;
	will-change: transform;
	contain: paint;
	z-index:999;
}
#nav-content ul {
	height: 100%;
	display: flex;
	flex-direction: column;
	list-style: none;
	float: left;
	margin: 0% 2%;
	padding: 0% 0% 0% 8%;
	width: 80%;
}
#nav-content li {
	border-bottom:1px solid #f6f6f6;
}
#nav-content li a {
	padding: 6px 5px;
    display: block;
    text-transform: uppercase;
    transition: color .1s;
    font-size: 13px;
    color: #747474;
    margin: 0px;
    text-decoration: none;
    line-height: 22px;
    font-family: 'Open Sans', sans-serif;
}
#nav-content li a:hover {
	color: #BF7497;
}
#nav-content li:last-child {
	border: none;
}
.activelink {
	color:#0077b5 !important;
}
 #nav-content li:not(.small) + .small {
}
.small {
	display: flex;
	align-self: left;
}
.small a img {
	width:24px;
	height:24px;
	border:0px;
	margin:0px 10px 0px 0px;
	padding:0;
}
 #nav-container:focus-within #nav-content {
 transform: none;
}
