/*============
nav
=============*/
nav {
	display: none;
	position: absolute;
	left: 15px;
	top: -5px;
	bottom: 0;
	width: 400px;
	height: fit-content;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	z-index: 5000;
}

.open nav {
	/* left: 0;
	opacity: 1; */
	display: block;
}

nav .inner {
	padding: 15px;
	background-color: #2a2f33;
}

nav .inner .menu:first-child {
	border-top: none;
}

nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav .inner ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #333;
}

nav .inner ul li a {
    display: block;
    color: #333;
    font-size: 14px;
    padding: 1em;
    text-decoration: none;
    transition-duration: 0.2s;
}

nav .inner ul li a:hover {
    background: #e4e4e4;
}

@media screen and (max-width: 767px) {
    nav {
			left: 0px;
			width: 220px;
			background: #2a2f33;
    }

		nav .inner {
			padding: 15px 15px 15px 30px;
		}
}

/*============
.toggle_btn
=============*/
.toggle_btn {
    display: block;
    position: relative;
    top: 12px;
    left: 30px;
    width: 30px;
    height: 30px;
    transition: all .5s;
    cursor: pointer;
    z-index: 3;
}

.menu .toggle_btn {
	top: -3px;
	left: 0;
}

.open .toggle_btn {
  top: -3px;
}


.toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    /* transition: all .5s; */
}

.toggle_btn span:nth-child(1) {
    top: 0px;
}

.toggle_btn span:nth-child(2) {
    top: 10px;
}

.toggle_btn span:nth-child(3) {
    top: 20px;
}

/*
.open .toggle_btn span {
    background-color: #fff;
}

.open .toggle_btn {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    color: #2a2f33;
}

.open .toggle_btn span:nth-child(1), .open .toggle_btn span:nth-child(3) {
    width: 16px;
}

.open .toggle_btn span:nth-child(1) {
    -webkit-transform: translate(-1px, 4px) rotate(-45deg);
    transform: translate(-1px, 4px) rotate(-45deg);
}

.open .toggle_btn span:nth-child(3) {
    -webkit-transform: translate(-1px, -4px) rotate(45deg);
    transform: translate(-1px, -4px) rotate(45deg);
}
*/


/*============
#mask
=============*/
/*
#mask {
    display: none;
    transition: all .5s;
}

.open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .8;
    z-index: 2;
    cursor: pointer;
}

*/

.menu {
    border-top: 1px solid #a7a9ac;
    padding-top: 4px;
    padding-bottom: 4px;
    color: #fff;
    list-style-type: none;
}

#navArea .menu:hover {
  background-color: #b0bac0;
}

#navArea .menu:first-of-type:hover {
  background-color: inherit;
}

.menu_list {
    /* color: #212529; */
    text-transform: none;
  margin-left: 5px;
}

li:hover .menu_list {
	color: #2a2f33 !important;
}

