#btn-reserva {
  background-color: #ff713a;
  ;
  transition: .3s;
}

#btn-reserva:hover {
  opacity: .7;
}

.registro-campo-error {
  background-color: #ff713a;
}

#message {
  position: fixed;
  background-color: #ff713a;
  width: 90%;
  max-width: 800px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 30px;
  box-shadow: 0px 0px 2px 2px #948484;
  color: #ffffff;
  font-size: 20px;
  border: solid 2px #35bdef;
  transition: .5s;
  pointer-events: none;
  opacity: 0;
  text-align: center;
}

#message.active {
  opacity: 1;
}

/* FORM*/

input, select, textarea {
  padding: 0.8em;
  font-size: 1em;
  line-height: 1.5em;
  border: 0;
  -webkit-appearance: none;
  color: #fff;
  background-color: #cccccc;
  border-radius: 2px;
  margin: 0px;
  width: 90%;
}

textarea {
  font-family: 'Montserrat', sans-serif;
}

.styled-select select {
  background: rgba(0, 0, 0, 0.94);
  width: 50px;
  padding: 5px;
  font-size: 13px;
  line-height: 1;
  border: 0;
  border-radius: 0;
  /* height: 34px; */
  -webkit-appearance: none;
  COLOR: #fff;
}

.form-style-10 input[type="submit"] {
  background: #2A88AD;
  padding: 8px 20px 8px 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
  -webkit-box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
  box-shadow: inset 0px 2px 2px 0px rgba(255, 255, 255, 0.17);
  border: 1px solid #257C9E;
  font-size: 15px;
}

.custom-select select {
  display: none;
  /*hide original SELECT element:*/
}

.select-selected {
  background-color: DodgerBlue;
}

/*style the arrow inside the select element:*/

.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/

.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/

.select-items div, .select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/

.select-items {
  position: absolute;
  background-color: DodgerBlue;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/

.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 980px) {
  input, select, textarea {
    width: 80%;
  }
}

@media screen and (max-width: 760px) {
  input, select, textarea {
    width: 90%;
  }
}