.xl-menu {
    max-width: 500px;
}

#vertical-menu li a {
    padding-top: 12px;
    padding-bottom: 10px;
    cursor: pointer;
    display: inline-block;
}

#vertical-menu li a:focus {
    outline: none;
}

#vertical-menu li a:hover {
    color: #FFFFFF9E;
}

/*heading styles*/
#vertical-menu li > a {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

#vertical-menu li > a i {
    color: #daa257;
    padding-right: 15px;
}

/*heading hover effect*/
#vertical-menu h3:hover {}

/*iconfont styles*/
#vertical-menu h3 span {}

/*list items*/
#vertical-menu li {
    list-style-type: none;
    border-bottom: 1px solid #262626;
}

/*Sub menu*/
#vertical-menu ul ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding-left: 35px;
    transition: all 0.15s;
    padding-top: 10px;
    padding-bottom: 8px;
}

/*hover effect on links*/
#vertical-menu ul ul li a:hover {}

/*Lets hide the non active LIs by default*/
#vertical-menu ul ul {
    display: none;
}
#vertical-menu li.active ul {
    display: block;
}



.menu-item-has-children > a:after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    font-size: 12px;
    position: absolute;
    margin-top: 7px;
    margin-left: 20px;
}


@media only screen and (max-width : 480px) {
    .menu-item-has-children > a:after {
        margin-top: 3px;
    }
}