/* important styling for daypicker */
.DayPicker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  padding: 1em 0;
  user-select: none;
}
.DayPicker-Month {
  display: table;
  border-collapse: collapse;
  border-spacing: 0;
  user-select: none;
  margin: 0 1em;
}
.DayPicker-NavBar {
  position: absolute;
  left: 0;
  right: 0;
  padding: 0 .5rem;
}
.DayPicker-NavButton {
  position: absolute;
  width: 45px;
  height: 45px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}
.DayPicker-Caption {
  display: table-caption;
  text-align: center;
  margin: 1em;
}
.DayPicker-Weekdays {
  display: table-header-group;
  position: absolute;
  top: -36px;
  left: 0;
  right: 0;
}
.DayPicker-Weekdays > div {
  display: table-row;
}
.DayPicker-Weekday {
  display: table-cell;
  padding: 10px;
  text-align: center;
  width: 5%;
}
.DayPicker-Body {
  display: table-row-group;
}
.DayPicker-Week {
  display: table-row;
}
.DayPicker-Day {
  display: table-cell;
  padding: 10px;
  border: 1px solid #ddd;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  width: 5%;
  min-height: 44px;
  min-width: 2.5em;
}
/* now styling of the calendar */
.DayPicker-Day {
  color: #0099db;
}
.DayPicker-Day--between {
  background: #cceaff;
}
.DayPicker-Day--arrivalDate,
.DayPicker-Day--returnDate {
  border: 1px #1b7acc solid;
  background: #1b7acc;
  color: #fff;
  font-weight: bold;
  position: relative;
}
.DayPicker-Day--returnDate:before,
.DayPicker-Day--arrivalDate:after {
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #1b7acc;
  content: " ";
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -6px;
  display: block;
}
.DayPicker-Day--returnDate:before {
  border-left: 6px solid transparent;
  border-right: 6px solid #1b7acc;
  left: -12px;
}
.DayPicker-Day--outside,
.DayPicker-Day--disabled {
  background: #fff;
  color: #fff;
  border: 0;
}
.DayPicker-Day--outside:before,
.DayPicker-Day--disabled:before,
.DayPicker-Day--outside:after,
.DayPicker-Day--disabled:after {
  content: none;
}
/* some overrides here, hope to keep these to a minimum */
.wizard {
  /* shrink the bootstrap panel heading to the size of the wizard grey header */
  /* left padding on the title so it lines up with the list elements */
  /* provide the > in a browser friendly way */
  /* for list of popular airports */
  /* .panel-body ul.popular {
    border: @border;
    border-width: 0 0 5px 0;
  } */
  /* now other styling, for demo purposes, but ultimately needed */
}
.wizard .panel-heading,
.wizard .panel-body {
  padding: 0;
}
.wizard p.title {
  padding-left: 13px;
}
.wizard .panel-title {
  font-size: 13px;
  padding: 0.3em 1em 0.3em 13px;
  min-height: 28px;
  /* if there is no content */
}
.wizard .panel-body ul {
  margin: 0;
}
.wizard a {
  padding: 13px;
  display: block;
  border: 1px solid #ddd;
  border-width: 0 0 1px 0;
}
.wizard a:active {
  color: #fff;
  background: #cceaff;
}
.wizard a:after {
  font-family: Zapf Dingbats;
  content: "\276F";
  float: right;
}
.wizard .calendar-button {
  text-align: center;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: 13px;
  background: #fff;
}
.wizard .calendar-button button {
  width: 100%;
}
.wizard .timesStepper-button {
  text-align: center;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: 13px;
  background: #fff;
}
.wizard .timesStepper-button button {
  width: 100%;
}
.wizard .times-am,
.wizard .times-pm {
  display: inline-block;
  width: 50%;
  border-width: 0 0 1px 1px;
}
.wizard .skip {
  float: right;
  margin-top: -10px;
}
.wizard div.locations {
  margin-bottom: -27px;
}
.wizard ul.products a {
  background: url('https://static1.holidayextras.com/images/hx-bootstrap/hx-icon-bootstrap-sprite25.png') no-repeat -5px -1723px;
  padding-left: 55px;
}
.wizard ul.products a.parking {
  background-position: -5px -1603px;
}
.timesStepper .panel-body {
  padding: 13px;
}
.timesStepper .wrapper-label {
  text-align: center;
  display: block;
  font-weight: normal;
  font-size: 13px;
}
.timesStepper .component-input-label {
  width: 100%;
  height: 44px;
  border-radius: 0;
  margin: 0;
  text-align: center;
  background: #eee;
  border: solid 1px #c8c8c8;
  border-width: 1px 0;
  line-height: 1.61803399em;
  padding: .5em 1em;
}
.timesStepper .component-input-field {
  display: none;
}
.timesStepper .component-stepper .button-container .component-button {
  border: 1px solid #c8c8c8;
  height: 44px;
}
.wizard.more-dates {
  margin-bottom: 5em;
}
