/* SECTION
================================================== */
#sp_nav {
  margin: 0 0 2.5em;
  width: 100%;
  position: fixed;
  top: 58px;
  left: 0;
  background: #eee;
  z-index: 99;
}
#sp_nav {
  display: none;
}
#sp_nav .nav li {
    border-bottom: 1px solid #ccc;
}
#sp_nav .nav li a {
    display: block;
    padding: 15px;
}

.target {
  background-color: #ddd;
  display: none;
}
.target .active a {
  background-color: #161b1d;
}
.target .active a:hover {
  background-color: #2c363a !important;
}
.target .active a:before {
  background-color: #f50057 !important;
}
.active a {
  background-color: #ddd;
}
.active a:hover {
  background-color: #ffa5a5 !important;
}
#sp_nav .nav li .sub li:last-child {
    border-bottom: none;
}
#sp_nav .nav li .sub li a {
    padding-left: 2em;
}



/* BUTTON
================================================== */
.btn_hamburger {
    /*margin: 0 auto 2em !important;*/
    width: 55px;
    position: fixed;
    right: 0;
    top: 8px;
    z-index: 99;
    background: #d60016;
    padding: 14px 10px;
}
.btn_hamburger a {
    position: relative;
    display: block;
    height: 22px;
    -webkit-transition: all .4s;
    transition: all .4s;
    box-sizing: border-box;
}
.btn_hamburger span {
    position: absolute;
    display: inline-block;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    -webkit-transition: all .4s;
    transition: all .4s;
    box-sizing: border-box;
}
.btn_hamburger span:nth-of-type(1) {
    top: 0;
}
.btn_hamburger span:nth-of-type(2) {
    top: 10px;
}
.btn_hamburger span:nth-of-type(3) {
    bottom: 0;
}
.btn_hamburger span:nth-of-type(2)::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    -webkit-transition: all .4s;
    transition: all .4s;
}
.btn_hamburger .active span:nth-of-type(2) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.btn_hamburger .active span:nth-of-type(2)::after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.btn_hamburger .active span:nth-of-type(1) {
    -webkit-transform: translateY(20px) scale(0);
    -ms-transform: translateY(20px) scale(0);
    transform: translateY(20px) scale(0);
}
.btn_hamburger .active span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) scale(0);
    -ms-transform: translateY(-20px) scale(0);
    transform: translateY(-20px) scale(0);
}