.btn-container {
  display: flex;
  gap: 8px;
}

button.primary {
  background-color: #246FF4;
  color: #F7F9FB;
  border: none;
}
button.primary:hover {
  background-color: #0054E6;
  color: #F7F9FB;
  cursor: pointer;
}
button.primary:disabled {
  background-color: #9EBFFA;
  color: #F7F9FB;
  cursor: not-allowed;
}
button.secondary {
  background-color: #3E3E3E;
  color: #F8F8F8;
  border: none;
}
button.secondary:hover {
  background-color: #333333;
  color: #F8F8F8;
  cursor: pointer;
}
button.secondary:disabled {
  background-color: #BBBBBB;
  color: #F8F8F8;
  cursor: not-allowed;
}
button.neutral {
  background-color: #F3F4F4;
  color: #777777;
  border: none;
}
button.neutral:hover {
  background-color: #E4E6E8;
  color: #777777;
  cursor: pointer;
}
button.neutral:focus {
  background-color: #F3F4F4;
  color: #777777;
  border: 1px solid #BBBBBB;
  cursor: pointer;
}
button.white {
  background-color: rgb(255, 255, 255);
  color: #969696;
  border: 1px solid #DDDDDD;
}
button.white:hover {
  background-color: #F8F8F8;
  color: #969696;
  cursor: pointer;
}
button.white:focus {
  background-color: #F8F8F8;
  color: #969696;
  cursor: pointer;
}
button.white:disabled {
  background-color: rgb(255, 255, 255);
  color: #DDDDDD;
  cursor: not-allowed;
  border: 1px solid #EBECEE;
}
button.fixed-L {
  width: 8.75rem;
  height: 3rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}
button.fixed-M {
  width: 6.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5rem;
}
button.hug-M {
  display: inline-flex;
  align-items: center;
  height: 2.5rem;
  padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  border-radius: 0.5rem;
  white-space: nowrap;
}
button.hug-M img {
  margin-right: 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
}
button.hug-M {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}
button.hug-S {
  display: inline-flex;
  align-items: center;
  height: 2rem;
  padding: 0rem 0.5rem;
  border-radius: 0.375rem;
  white-space: nowrap;
}
button.hug-S img {
  margin-right: 0.375rem;
  width: 1.25rem;
  height: 1.25rem;
}
button.hug-S {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
}
button.hug-XS {
  display: inline-flex;
  align-items: center;
  height: 1.625rem;
  padding: 0 0.5rem;
  border-radius: 0.375rem;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.125rem;
}
button.hug-L {
  display: inline-flex;
  align-items: center;
  height: 3rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}
button.fill-S {
  flex: 1;
  justify-content: center;
  align-items: center;
  height: 2.25rem;
  width: 100%;
  padding: 0.375rem 1.25rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.input-group label.input {
  display: block;
  color: rgb(0, 0, 0);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin-bottom: 0.25rem;
}

input {
  padding: 8px 12px;
  border: 1px solid #DDDDDD;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
  color: rgb(0, 0, 0);
  outline: none;
}
input:placeholder {
  color: #AAAAAA;
}
input:focus {
  border-color: #246FF4;
}
input:disabled {
  background-color: #F8F8F8;
  color: #AAAAAA;
  cursor: not-allowed;
}
input.error {
  border-color: #EB4D3D;
}
input.success {
  border-color: #2ABB7F;
}
input[readonly] {
  background-color: #F8F8F8;
  color: #666666;
  cursor: not-allowed;
}

select:disabled {
  background-color: #F8F8F8;
  color: #AAAAAA;
  cursor: not-allowed;
}

.headline-h1 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 2.25rem;
}

.headline-h2 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
}

.headline-h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.75rem;
}

.headline-h4 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.headline-h5 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25rem;
}

.label-h1 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.label-h2 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.label-h3 {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.label-h4 {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.label-h5 {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.label-h6 {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.125rem;
}

.body-h1 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.body-h3 {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.body-h4 {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.body-h5 {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.125rem;
}

.body-h6 {
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1rem;
}

.chip-blue {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.125rem;
  padding: var(--Space-050, 2px) 8px;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  background: #EBF5FF;
  color: #246FF4;
}

.reservations-room-list__header-container {
  display: flex;
  width: 100%;
  height: 64px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  border-bottom: 1px solid #EBECEE;
  background: #FFF;
}

.reservations-room-list__header-container-box {
  display: flex;
  flex-direction: column;
  width: 298px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #EBECEE;
  padding: 0 20px;
}
.reservations-room-list__header-container-box:first-child {
  border-left: 1px solid #EBECEE;
}

.reservations-room-list__header-container-box-step {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.125rem;
  color: #969696;
}

.reservations-room-list__header-container-box-title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
}

@media (max-width: 850px) {
  .reservations-room-list__header-container-box-title {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.125rem;
  }
}/*# sourceMappingURL=reservation_step_header.css.map */