html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
::-webkit-scrollbar {
  display: none;
}
body {
  background-image: url('wood-tile.jpg');
  display: flex;
  flex-direction: column;
  margin: 0px auto;
  max-width: 1440px;
}
div.header-container {
  display: flex;
  justify-content: center;
}
.header-title {
  flex-basis: 50%;
  text-align: center;
  text-decoration: inherit;
  color: inherit;
  font-size: 40px;
  font-family: 'Pacifico', Arial;
  padding: 30px 0;
}
div.splash-container {
  margin: 0px 0px;
  height: 480px;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}

h2#itemTitle {
  margin-bottom: 10px;
}

@media (max-width: 500px) {
  div.splash-container {
    height: 320px;
  }
}

.form-container {
  text-align: center;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  margin: -90px auto 30px;
  padding: 0 25px 20px;
  width: 90%;
  z-index: 1;
  opacity: 0.9;
  background-color: white;
  border: 1px solid #efefef;
  box-shadow: 3px 4px 5px rgba(0, 0, 0, 0.2);
}
.form-container {
  font-family: 'Avenir';
  line-height: 25px;
}
.form-container .description {
  text-align: center;
  margin-bottom: 20px;
}

#reserve-form,
#confirmation {
  margin: 20px 0;
}
#reserve-form {
  flex-direction: column;
  max-width: 200px;
  margin: 0 auto;
  display: none;
}
#reserve-form input,
button {
  text-align: center;
  font-family: 'BentonSans', Helvetica, Arial, sans-serif;
  font-size: 16px;
  border-radius: 3px;
  border: 1px solid #d9d9d9;
  flex-basis: 100%;
}
#reserve-form input {
  flex-basis: 100%;
  transition-property: background-color;
  transition-duration: 0.4s;
  margin-bottom: 10px;
  height: 30px;
}
#reserve-form button {
  flex-basis: 100%;
  cursor: pointer;
  color: white;
  background-color: #f27242;
  height: 40px;
}
#spinner {
  display: none;
  width: 100%;
  text-align: center;
}
#storeClosed {
  display: none;
}
