You are confused, so made errors in your code. You use your own class for this menu item. You do not need all these long composite selectors. Just use your class.
At line 37 in custom.css replace your code to this.
.underlinemenuitem {
color: inherit !important;
border-bottom: 5px solid #ddd;
padding-bottom: 5px;
}
.offcanvas-menu .offcanvas-inner ul.menu>li>a,
.offcanvas-menu .offcanvas-inner ul.menu>li>span {
opacity: 1; /* get rid of stupid opacity: 0.7 that comes from template.css, instead you just can add your own color prorerty if need for links hover*/
}
Delete the rest of the code for this item, including the one that I provided above.