.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 6rem;
    padding: .5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
}
.navbar-nav .dropdown-menu {
    position: static;
}
.dropdown-item {
    color: #212529 !important;
    font: bold 13px / 18px "Trebuchet MS", Arial, sans-serif !important;
    padding: 0.25rem 1rem !important;
    display: block !important;
    margin: 0px !important;
    padding: 0.25rem 1rem !important;
    clear: both !important;
    font-weight: 500 !important;
    text-align: inherit !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    background-color: transparent !important;
    border: 0 !important;
    font-size: 0.8rem !important;
}
.dropdown-item:hover {
    color:#0C8BE5 !important;
    background:transparent !important;
}
.dropdown-item{
  position: relative;
}
.dropdown-item::before{
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #0074D9;
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (hover: hover) and (pointer: fine) {
.dropdown-item:hover::before{
    left: 0;
    right: auto;
    width: 100%;
  }
}




