#reservation-form, #reservation-page {
  background: #FFF;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 10px;
}

#reservation-form .form-group:last-child {
  margin-bottom: 0;
}

#reservation-messages .alert {
  margin-bottom: 8px;
}

#more-persons-order-notification {
  font-size: 14px;
  background: #E0F7F0;
  border: solid 1px #CAF0E3;
  padding: 10px;
  box-sizing: border-box;
  margin-top: 10px;
}

#more-persons-order-notification a {
  color: #5393C5;
  font-weight: 600;
}

#more-persons-order-notification a:hover {
  text-decoration: none;
}

#reservation-duration-block {
  margin-top: 10px;
}

.selectors-container {
  margin-top: 10px;
}

.selector {
  float: left;
  background: #F9F9F9;
  border: solid 1px #C5C5C5;
  display: inline-block;
  padding: 5px;
  margin: 0 5px 5px 0;
  min-width: 36px;
  color: #111;
  text-align: center;
}

.selector:hover {
  color: #111;
  text-decoration: none;
  background: #EEEEEE;
}

.selector.active {
  opacity: 1;
}

#reservation-calendar {
  margin-top: 10px;
}

#time-select-container .alert {
  margin: 0 0 10px 0;
}

#used-time-notification {
  display: none;
  margin: 10px 0;
}

#time-select-container .alert, #used-time-notification {
  font-size: 14px;
  padding: 10px;
  clear: both;
}

#time-occupation-notice {
  float: right;
}

#time-occupation-notice span {
  color: #CD222B;
}

.time-selector {
  position: relative;
}

.time-asterisk {
  position: absolute;
  top: 5px;
  right: 2px;
  height: 6px;
  line-height: 6px;
  font-size: 15px;
  color: #CD222B;
  font-weight: 600;
}

.time-selector, .duration-selector {
  padding: 5px 10px;
}

#reservation-steps {
  /*background: #FAFAFA;
  padding: 10px;*/
}

.reservation-step {
  width: 33.33%;
  float: left;
  font-size: 14px;
  line-height: 18px;
}

.reservation-step .circle {
  float: left;
  margin: 0 8px 5px 0;
  width: 40px;
  height: 40px;
  font-size: 24px;
  line-height: 38px;
  border-radius: 50%;
  background: #E9E9E9;
  text-align: center;
}

.reservation-step.active {
  font-weight: 600;
}

.reservation-step .name {
  position: relative;
  top: 1px;
}

sup {
  color: red;
}

.text-semibold {
  font-weight: 600;
}

#reservation-form p {
  margin-bottom: 10px;
}

#reservation-company-form {
  display: none;
}

.inline {
  display: inline;
}

@media (max-width: 475px) {
  .reservation-step .circle {
    width: 20px;
    height: 20px;
    font-size: 16px;
    line-height: 20px;
    margin-right: 5px;
    position: relative;
    top: 5px;
  }

  .reservation-step .name {
    display: block;
    top: 2px;
    font-size: 11px;
    line-height: 13px;
  }
}