.bon {
    border-radius: 4px;
    /* background-color: #5ca1e1; */
    border: none;
    color: #33333;
    text-align: center;
    font-size: 16px;
    padding: 16px;
    width: 220px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 36px;
    box-shadow: 0 10px 20px -8px rgba(0, 0, 0,.7);
  }
  
  .bon{
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
  .bon:after {
    content: '»';
    position: absolute;
    opacity: 0;  
    top: 14px;
    right: -20px;
    transition: 0.5s;
  }
  
  .bon:hover{
    padding-right: 24px;
    padding-left:8px;
  }
  
  .bon:hover:after {
    opacity: 1;
    right: 10px;
  }