.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;
}

.footer__property-info-container {
  width: 100%;
  height: auto;
  background-color: #333333;
}

.footer__booking-engine-info-container {
  width: 100%;
  height: 50px;
  background-color: #222;
  color: #777777;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
}

.main-content-footer {
  width: 100%;
  height: auto;
}

.footer__property-info-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  align-self: stretch;
  padding: 32px 32px 40px 32px;
}

.footer__property-info-container-payment-agency,
.footer__property-info-container-property-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  max-width: 100%;
  width: -moz-fit-content;
  width: fit-content;
}

.footer__property-info-container-payment-agency-description,
.footer__property-info-container-property-info-description {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  align-self: stretch;
}

.footer__property-info-container-payment-agency-description-left,
.footer__property-info-container-property-info-description-left,
.footer__property-info-container-payment-agency-description-right,
.footer__property-info-container-property-info-description-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
  align-self: stretch;
}

.footer__property-info-container-payment-agency-description-box,
.footer__property-info-container-property-info-description-box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
  align-self: stretch;
}

.footer__property-info-container-payment-agency-description-title,
.footer__property-info-container-property-info-description-title,
.footer__property-info-container-payment-agency-description-content,
.footer__property-info-container-property-info-description-content,
.footer__property-info-container-copyright-text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: #777777;
}

.footer__property-info-container-payment-agency-title,
.footer__property-info-container-property-info-title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  color: #FFF;
  width: 100%;
}

.footer__property-info-container-payment-agency-description-title,
.footer__property-info-container-property-info-description-title {
  width: 113px;
}

.footer__property-info-container-payment-agency-description-content,
.footer__property-info-container-property-info-description-content {
  width: 311px;
}

.footer__property-info-container-divider-line {
  width: 40px;
  height: 1px;
  background-color: #DDDDDD;
}

.footer__property-info-container-divider,
.footer__property-info-container-copyright {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  align-self: stretch;
  width: 100%;
  margin: 14px 0px;
}

@media (max-width: 768px) {
  .footer__property-info-container-payment-agency-description,
  .footer__property-info-container-property-info-description {
    flex-direction: column !important;
  }
}/*# sourceMappingURL=footer.css.map */