
/* old */

/*.link-hover-bg a:hover {*/
/*  background-color: #010080; */
/*  color: #fff; */
/*  border-radius: 3px; */
/*}*/

/* old */



/* new */

.link-hover-bg a {
  text-decoration: underline !important;
  color: inherit !important;
  font-weight: bold !important;
  transition: all 0.3s ease !important;
}

.link-hover-bg a:hover {
  background-color: #010080 !important;
  color: #fff !important;
  border-radius: 3px !important;
}


/* new */


