.cont-form-reservations{
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cont-form-reservations h2{
  color: #e7e7e7;
  font-size: 24px;
}
.cont-form-reservations h3{
  color: #e7e7e7;
  font-size: 18px;
  margin: 20px 0 10px;
}
#rtr-form {
  max-width: 100%;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.cont-datos-mesa{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.cont-datos-contacto{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}

#rtr-form input,
#rtr-form select{
  padding: 8px;
  font-size: 14px;
  border-radius: 10px;
  width: 250px;
  border:none;
  flex:1;
  height: 45px;

}

#rtr-form textarea{
  padding: 8px;
  font-size: 14px;
  border-radius: 10px;
  width: 250px;
  border:none;
  flex:1;
  height: auto;
}

#rtr-form button {
    padding: 8px;
    font-size: 14px;
    border-radius: 10px;
    width: 100%;
    color: #fff;
    background-color: #dd0808;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    height: 45px;
    text-transform: uppercase;
    margin-bottom: 40px;
}


#rtr-result {
  margin-top: 10px;
  font-weight: bold;
}

.ui-datepicker {
  font-size: 14px;
}

.ui-datepicker-unselectable .ui-state-disabled {
  opacity: 0.4;
}
#reserva-exitosa{
  display: none;
  flex-direction: column;
  color: #fff;
  text-align: center;
  align-items: center;
  width: 100%;
}

#reserva-erronea{
  display: none;
  flex-direction: column;
  color: #fff;
  text-align: center;
  align-items: center;
  width: 100%;
}

#reserva-exitosa button,
#reserva-erronea button
{
  width:200px;
  margin-bottom: 20px;
}

.resultado-activo{
  display: flex !important;
}
.resultado-inactivo{
  display: none !important;
}
