 /* width */
 ::-webkit-scrollbar {
    height: 5px;
    width: 5px;;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    margin-top: 0px;
    margin-bottom: 0px;
    box-shadow: inset 0 0 5px grey;
    border-radius: 2px;
    background: transparent;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: rgba(12, 185, 222, 1);
    border-radius: 10px;
  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: rgba(12, 185, 222, 1);
  }
  .list-group-item {
    border: 0px transparent;
    position: relative;
    display: block;
    padding-right: 10px;
    padding-left: 10px;
    /* padding: 4.5px; */
    color: #212529;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid rgb(0 0 0 / 0%);
    padding-top: 0px;
    padding-bottom: 0px;
}