button[type="submit"]:disabled:hover{
    cursor: not-allowed;
}

#reservation-response{
    display: none;
}

.alert{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    font-size: 0.9rem;
}

.alert-danger{
    background: #ffcdd2;
}

.alert-success{
    background: #1abc9c;
    color: #fff;
}


.form-control{
    margin-bottom: 5px;
}


.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    position: relative;
    margin: -15px 20px;
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #333;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;

    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}


.single-receipt{
    margin-bottom: 15px;
    border: 1px solid #ff3067;
    border-radius: 3px;
    border-bottom-width: 5px;
}

.single-receipt .receipt-title{
    display: block;
    margin-bottom: 5px;
    padding: 5px 10px 5px;
}

.single-receipt .receipt-footer{
    padding: 5px 10px 5px;
    background-color: rgba(255, 48, 103, .5);
    font-size: .8em;
}

.receipt-title:hover{
    background-color: #ff3067;
    color: white;
}

.receipt-excerpt{
    padding: 0 10px 10px;
}


@-webkit-keyframes sk-bounce {
    0%, 100% { -webkit-transform: scale(0.0) }
    50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    } 50% {
          transform: scale(1.0);
          -webkit-transform: scale(1.0);
      }
}