#caller-id {
    padding: 1rem;
    font-family: sans-serif;
    background:rgba(0,0,0,.5);
    color:#fff;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, .25) 3px 3px 3px !important;
    position:fixed; bottom:30px; left:50px;
    z-index:5000;
  }
  #caller-id ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  #caller-id ul li {
    width:400px;
  }

  /* Buzz animation for incoming call icon */
  @keyframes buzz {
    0%, 100%   { transform: rotate(0deg); }
    25%        { transform: rotate(15deg); }
    75%        { transform: rotate(-15deg); }
  }
.buzz {
  display: inline-block;
  animation: buzz 0.5s ease-in-out infinite;
}

#caller-id ul.summary
{
  margin-top:5px;
  padding-left:40px !important;
}

#caller-id ul.summary li
{
  list-style: circle;
}

#caller-id i.fa-times {
  position: absolute;
    right: 7px;
    top: 6px;
    cursor: pointer;
    font-size: 13pt;
    border: 1px solid #ddd;
    background: white;
    color: #bbb;
}
