.reservations-buttons {
    display: none;
    position: fixed;
    padding: 15px;
    background: black;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 2000;
}


  .time {
    background: rgba(240, 118, 0, .6);
    cursor: pointer;
    width: 90%;
    border-radius: 0.25rem;
    transition: background .5s, transform .2s, color .5s;
  }
  .time > span {
    font-weight: bold;
    color: white;
  }
  .time > input {
     display:none; 
  }
  
  .active-time {
    background: #F07600;
    transform: scale(1.1);
  }
  
  .active-time > span {
    color: white;
  }