.for-buttons-input {
    position: absolute !important;
    bottom: 0;
}

.input-margin {
    margin-bottom: 10px;
}

.reservation-map-wrapper {
    padding: 0;
}

#reservation-map {
    min-height: 550px;
    background: #f7f7f7;
    border-radius: 5px;
}

.reservation-product-item {
    background: #e3e8ec;
    height: 150px;
    /* width: 32.3333333333%; */
    /* margin: 1% 0 0 1%; */
    position: relative;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}
.reservation-product-item:hover {
    background: #fff;
    cursor: pointer;
}

.flex-space {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.reservation-thumbnail {
    height: 140px;
    margin: -20px auto 0;
    display: block;
}

.reservation-desc {
    text-align: center;
    margin-top: -25px;
    font-size: 15px;
    line-height: 1;
}

.reservation-capacity {
    text-align: center;
    font-size: 11px;
}

.reservation-info{
    padding-top: 15px;
}

#reservation-time{
    padding-bottom: 20px;
}

.reservation-label {
    width: 32.3333333333%;
    margin: 1% 0 0 1%;
}

.input-hidden {
    position: absolute;
    left: -9999px;
  }

  input[type=radio]:checked + label>div {
    border: 1px solid #fff;
    box-shadow: 0 0 3px 3px #ccc;
  }

  /* Stuff after this is only to make things more pretty */
  input[type=radio] + label>div {
    border: 1px dashed #444;
    width: 150px;
    height: 150px;
    transition: 500ms all;
  }

  .book-button{
    background: green;
    color: white;
    width: 100%;
  }

  .removebook-button{
      margin-top: 15px;
    background: red;
    color: white;
    width: 100%;
  }