.guest-hotel-picker {
  display: flex;
  align-items: end;
  gap: 10px;
}

.guest-hotel-picker label {
  flex: 1;
}

.guest-hotel-picker button {
  height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  background: #183f2f;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

@media (max-width: 560px) {
  .guest-hotel-picker {
    align-items: stretch;
    flex-direction: column;
  }

  .guest-hotel-picker button {
    width: 100%;
  }
}
