/* Some default styling in case drop down consists of ul */

sb-hover-menu div.container {
    position: relative
}

sb-hover-menu .hover-menu-content {
    position: absolute;
    display: flex;  /* this is required to render correctly in firefox */
    right: 0px;
    top: 35px;
}

sb-hover-menu .hover-menu-content ul{
    width: 160px;
    text-align: left;

    background: #F5F5F5;
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,.17);
    box-shadow:0 0 5px rgba(0,0,0,.1);
}

sb-hover-menu .hover-menu-content li {
    display: block;
    padding: 10px 10px;
    cursor: pointer;
}
sb-hover-menu .hover-menu-content li a{
    display: block;
}
sb-hover-menu .hover-menu-content li:not(:first-of-type) {
    box-shadow:inset 0 1px 0 rgba(255,255,255,1);
}
sb-hover-menu .hover-menu-content li:not(:last-of-type) {
    border-bottom:1px solid #e6e8ea;
}
sb-hover-menu .hover-menu-content li:hover {
    background: #CCCCCC;
}