/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
a {
  cursor: pointer;
}

 .start-hidden {
  display: none;
}

#contactList {
  display: block;
  padding: 8px 40px;
  position: relative;
  top: 8px;
}

#contactList .list-group-item {
  border:0;
  background-color:transparent;
  border-radius: 10px 10px 0 0;
}

#contactList .list-group-item:hover {
    z-index: 0;
    text-decoration: none;
    background-color: #eee;
}

#contactList .list-group-item.active,
#contactList .list-group-item.active:hover {
    z-index: 2;
    color: #555;
    cursor: default;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
}

