/* stackable required styles */
ul.nav>li {
    float: left;
    position: relative;
}
ul.nav>li>a {
    display: block;
    position: relative;
}
ul.nav>li>ul {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 99;
}
ul.nav>li>ul>li>a {
    white-space: nowrap;
}
ul.nav>li.sa-stacker>ul>li.submenu>span.sa-anchor-replacement {
    display: block;
    white-space: nowrap
}
ul.nav > li.sa-stacker > a {
    background-color: #f57c00;
    color: #fff;
    position: absolute;
    left: 0;
    padding: 22px 15px;
    border: 0;
    outline: none;
    cursor: pointer;
    z-index: 999999;
}
ul.nav > li.sa-stacker > a::after {
    content: attr(count);
    position: absolute;
    width: 30px;
    height: 30px;
    left: 5px;
    top: 18%;
    text-align: center;
    background-color: #ef6c00;
    color: #fff;
    font-size: 14px;
    line-height: 28px;
    border-radius: 50%;
    border: 3px solid #fff;
    font-weight: bold;
    transition: all 0.5s linear;
}
ul.nav > li.sa-stacker > a:hover::after {
    background-color: darkgreen;
    transform: scale(1.15);
}
ul.nav > li.sa-open > ul {
    display: block;
    position: absolute;
    top: 50px;
    right: -62px;
}
ul.nav > li.sa-stacker.sa-open{
    position: relative;
}

ul.nav > li.sa-stacker > a .hamburger {
    position: relative;
    width: 32px;
    height: 4px;
    background: #fff;
    margin: auto;
    display: block;
}
ul.nav > li.sa-stacker > a .hamburger:before,
ul.nav > li.sa-stacker > a .hamburger:after {
    content: '';
    position: absolute;
    left: 0;
    width: 32px;
    height: 4px;
    background: #fff;
}
ul.nav > li.sa-stacker > a .hamburger:before {
    top: -8px;
}
ul.nav > li.sa-stacker > a .hamburger:after {
    bottom: -8px;
}
ul.nav>li.sa-stacker>a:hover {
    background-color: #ef6c00;
}
ul.nav > li.sa-stacker.sa-open>a {
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
ul.nav>li.sa-stacker>ul>li.submenu>span.sa-anchor-replacement {
    color: #FFF;
    padding: 10px 20px;
}
ul.nav>li>ul {
    background-color: #ef6c00;
    list-style: none;
    margin: 0;
    min-width: 160px;
    padding: 0;
}
ul.nav > li > ul > li > a {
    color: #FFF;
    display: block;
    padding: 10px 20px;
    text-decoration: none;
}
ul.nav > li > ul > li:not(:last-child) > a {
    border-bottom: 1px solid #fff;
}
ul.nav>li>ul>li>a:hover {
    background-color: #ef6c00;
}
ul.nav>li.sa-open>ul>li>ul {
    background-color: #F9F9F9;
    list-style: none;
    margin: 0;
    padding: 0 0 5px 0;
}
ul.nav>li.sa-open>ul>li>ul>li>a {
    color: #555;
    display: block;
    font-size: 14px;
    padding: 8px 20px 8px 25px;
    text-decoration: none;
    white-space: nowrap;
}
ul.nav>li.sa-open>ul>li>ul>li>a:hover {
    background-color: #EEE;
}