.btn-nav {
  position: absolute;
top:33px; right:20px;
  background: transparent;
  border: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 99999;
}

.btn-nav:focus {
  outline: 0;
}

.icon-bar {
  display: block;
  margin-top: 3px;
  width: 30px;
  height: 5px;
  background:#24559F;
}

.btn-nav:hover .icon-bar {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-content {
  position: fixed;
  top: -100%;
  bottom: 0;
  left: 0;
  right: 0;
  background:#fff;
  display: block;
  z-index: 9999;
  height: auto;
  overflow-y: scroll;
}

.nav-list {
 padding-top:60px;
}

.nav-list li {
  margin:5px 10%; border-bottom: solid 1px #EBEAE9; padding: 15px 5px;
}
 
.nav-list li.selectli a{ color:#24559F;  }

.animated {
  display: block;
  margin: 0 auto;
}

.animated:hover .icon-bar,
.animated:focus .icon-bar{
  background: #24559F none;
  width: 30px; height: 5px;
}

.animated:focus {
  cursor: pointer;
  z-index: 99999;
}

.middle {

}

.icon-bar {
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 99999;
}

.animated .icon-bar {
  z-index: 99999;
  background: #24559F none;
  width: 30px; height: 5px;
}

.animated .top {
  -webkit-transform: translateY(3px) rotateZ(45deg);
  -moz-transform: translateY(3px) rotateZ(45deg);
  -ms-transform: translateY(3px) rotateZ(45deg);
  -o-transform: translateY(3px) rotateZ(45deg);
  transform: translateY(3px) rotateZ(45deg);
}

.animated .bottom {
  -webkit-transform: translateY(-5px) rotateZ(-45deg);
  -moz-transform: translateY(-5px) rotateZ(-45deg);
  -ms-transform: translateY(-5px) rotateZ(-45deg);
  -o-transform: translateY(-5px) rotateZ(-45deg);
  transform: translateY(-5px) rotateZ(-45deg);
}

.animated .middle {
  width: 0; display: none;
}

keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

@-webkit-keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

@-moz-keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

@-o-keyframes showNav {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

.showNav {
  -webkit-animation: showNav 1s ease forwards;
  -moz-animation: showNav 1s ease forwards;
  -o-animation: showNav 1s ease forwards;
  animation: showNav 1s ease forwards;
}

@keyframes hideNav {
  from {
    top: 0;
  }
  to {
    top: -100%;
  }
}

@-webkit-keyframes hideNav {
  from {
    top: 0;
  }
  to {
    top: -100%;
  }
}

@-moz-keyframes hideNav {
  from {
    top: 0;
  }
  to {
    top: -100%;
  }
}

@-o-keyframes hideNav {
  from {
    top: 0;
  }
  to {
    top: -100%;
  }
}

.hideNav {
  display: none;
}

.hidden {
  display: none;
}