  /*****signature style ***/
  .canvasframe {
    position: relative;
    max-width: 300px;
  }
 
  .canvasframe h3 {
    position: absolute;
    line-height: 75px;
    text-align: center;
    width: 100%; 
    background-color: rgba(0, 0, 0, 0.1);
    height: 70px;
    top: 24px;
  }

  .fa-trash
  {
    position: absolute;
    cursor: pointer;
    top: 5px;
    left: 5px;
    font-size: 20px !important;
    color: red; 
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.1);
    transition: all .2s ease-in-out;
  }

  #canvasframe h3:hover
  {
      display: none;
  }
  .fa-trash:hover
  {
    transform: scale(1.1); 
  }
  /*****end signature style ***/ 