#menu,
#menu ul,
#menu ul li,
#menu ul li a,
#menu #menu-button {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

#menu:after,
#menu>ul:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

#menu #menu-button {
    display: none
}

#menu>ul>li {
    float: left
}

#menu.align-center>ul {
    font-size: 0;
    text-align: center
}

#menu.align-center>ul>li {
    display: inline-block;
    float: none
}

#menu.align-center ul ul {
    text-align: left
}

#menu.align-right>ul>li {
    float: right
}

#menu>ul>li>a {
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block
}

#menu>ul>li:hover>a {
    color: #fff
}

#menu>ul>li.has-sub>a {
    padding-right: 30px
}

#menu>ul>li.has-sub>a:after {
    content: "\f107";
    position: absolute;
    right: 14px;
    top: 10px;
    font: normal normal normal 14px/1 FontAwesome;
    width: 8px;
    height: 5px
}

#menu ul ul {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    padding-left: 10px;
    background: #fff
}

#menu.align-right ul ul {
    text-align: right
}

#menu ul ul li {
    height: 0;
    -webkit-transition: all .25s ease;
    transition: all .25s ease
}

#menu li:hover>ul {
    left: auto
}

#menu.align-right li:hover>ul {
    left: auto;
    right: 0
}

#menu li:hover>ul>li {
    height: auto;
}

#menu ul ul ul {
    margin-left: 100%;
    top: 0
}

#menu.align-right ul ul ul {
    margin-left: 0;
    margin-right: 100%
}

#menu ul ul li a {
    border-bottom: 1px solid #e6e6e6;
    width: 170px;
    font-size: 12px;
    text-decoration: none;
    color: #ddd;
    font-weight: 400
}

#menu ul ul li:last-child>a,
#menu ul ul li.last-item>a {
    border-bottom: 0
}

#menu ul ul li:hover>a,
#menu ul ul li a:hover {
    color: #fff
}

#menu ul ul li.has-sub>a:after {
    position: absolute;
    top: 16px;
    right: 11px;
    width: 8px;
    height: 2px;
    display: block;
    background: #ddd;
    content: ''
}

#menu.align-right ul ul li.has-sub>a:after {
    right: auto;
    left: 11px
}

#menu ul ul li.has-sub>a:before {
    position: absolute;
    top: 13px;
    right: 14px;
    display: block;
    width: 2px;
    height: 8px;
    background: #ddd;
    content: '';
    -webkit-transition: all .25s ease;
    transition: all .25s ease
}

#menu.align-right ul ul li.has-sub>a:before {
    right: auto;
    left: 14px
}

#menu ul ul>li.has-sub:hover>a:before {
    top: 17px;
    height: 0
}