.stickmenu {
    left: 0;
}

#topmenu,
#topmenu ul,
#topmenu li,
#topmenu a {
    border: none;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.sticky {
    position: sticky;
    top: 0;
}

#topmenu {
    height: 37px;
    display: none;
    border: 1px solid;
    border-radius: 5px;
    width: auto;
    border-color: #FFFFFF;
    z-index: 1;
}

#topmenu>ul {
    list-style: inside none;
}

#topmenu>ul>li {
    list-style: inside none;
    float: left;
    position: relative;
}

#topmenu.align-center>ul {
    text-align: center;
}

#topmenu.align-center>ul>li {
    float: none;
    margin-left: 0px;
}

#topmenu.align-center ul ul {
    text-align: left;
}

#topmenu.align-center>ul>li:first-child>a {
    border-radius: 0;
}

#topmenu>ul>li>a {
    outline: none;
    display: block;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
    font-weight: 700;
    font-size: 13px;
    font-family: Arial, Helvetica, sans-serif;
    border-right: 1px solid #080808;
    color: #ffffff;
    padding: 12px 20px;
}

#topmenu>ul>li:first-child>a {
    border-radius: 5px 0 0 5px;
}

#topmenu>ul>li>a:after {
    content: "";
    position: absolute;
    border-right: 1px solid;
    top: -1px;
    bottom: -1px;
    right: -2px;
    z-index: 99;
    border-color: #3c3c3c;
}

#topmenu ul li.has-sub:hover>a:after {
    top: 0;
    bottom: 0;
}

#topmenu>ul>li.has-sub>a:before {
    content: "";
    position: absolute;
    top: 18px;
    right: 6px;
    border: 5px solid transparent;
    border-top: 5px solid #ffffff;
}

#topmenu>ul>li.has-sub:hover>a:before {
    top: 19px;
}

#topmenu>ul>li.has-sub:hover>a {
    padding-bottom: 14px;
    z-index: 999;
    border-color: #3f3f3f;
}

#topmenu ul li.has-sub:hover>ul,
#topmenu ul li.has-sub:hover>div {
    display: block;
}

#topmenu>ul>li.has-sub>a:hover,
#topmenu>ul>li.has-sub:hover>a {
    background: #3f3f3f;
    border-color: #3f3f3f;
}

#topmenu ul li>ul,
#topmenu ul li>div {
    display: none;
    width: auto;
    position: absolute;
    top: 38px;
    background: #3f3f3f;
    border-radius: 0 0 5px 5px;
    z-index: 999;
    padding: 10px 0;
}

#topmenu ul li>ul {
    width: 200px;
}

#topmenu ul ul ul {
    position: absolute;
}

#topmenu ul ul li:hover>ul {
    left: 100%;
    top: -10px;
    border-radius: 5px;
}

#topmenu ul li>ul li {
    display: block;
    list-style: inside none;
    position: relative;
    margin: 0;
    padding: 0;
}

#topmenu ul li>ul li a {
    outline: none;
    display: block;
    position: relative;
    font: 10pt Arial, Helvetica, sans-serif;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
    margin: 0;
    padding: 8px 20px;
}

#topmenu,
#topmenu ul ul>li:hover>a,
#topmenu ul ul li a:hover {
    background: #3c3c3c;
    background: -moz-linear-gradient(top, #3c3c3c 0%, #222222 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3c3c3c), color-stop(100%, #222222));
    background: -webkit-linear-gradient(top, #3c3c3c 0%, #222222 100%);
    background: -o-linear-gradient(top, #3c3c3c 0%, #222222 100%);
    background: -ms-linear-gradient(top, #3c3c3c 0%, #222222 100%);
    background: linear-gradient(top, #3c3c3c 0%, #222222 100%);
}

#topmenu>ul>li>a:hover {
    background: #080808;
    color: #ffffff;
}

#topmenu ul ul a:hover {
    color: #ffffff;
}

#topmenu>ul>li.has-sub>a:hover:before {
    border-top: 5px solid #ffffff;
}

@media only screen and (min-width: 768px) {
    #topmenu {
        display: block;
    }
}