/*#region general*/
:root, .dark-mode {
  --kiosk-bg-img: radial-gradient(at center center, #00305e 50%, #262626 100%);
  --kiosk-text-color: #ffffff;
  --kiosk-btn-bg-color: #4d6983;
  --kiosk-btn-disabled-bg-color: #4d6983;
  --kiosk-btn-border-color: #ffffff;
  --kiosk-btn-text-color: #ffffff;
  --kiosk-btn-yes-no-bg-color: #ffffff;
  --kiosk-btn-yes-no-border-color: #ffffff;
  --kiosk-btn-yes-no-text-color: #4c6e8e;
  --kiosk-btn-yes-no-selected-bg-color: #4c6e8e;
  --kiosk-input-bg-img: radial-gradient(at center center, white 50%, var(--softtec-light-blue1) 100%);
  --kiosk-label-text-color: #4c6e8e;
  --kiosk-input-text-color: #00305e;
  --kiosk-input-border-color: #ffffff;
  --kiosk-input-disabled-bg-color: #4c6e8e;
  --kiosk-input-disabled-text-color: #f2f5f7;
  --kiosk-qr-img-border-color: #ffffff;
  --kiosk-category-text-color: #00305e;
}

* {
  letter-spacing: .5px;
  line-height: normal;
  font-weight: 400;
}

.m-0 {
  margin: 0px !important;
}

.mb-5 {
  margin-bottom: 5rem !important;
}

.px-5 {
  padding: 0 5rem !important;
}

.align-items-center {
  align-items: center !important;
}

.font-size-big {
  font-size: 5rem !important;
}

.error-message, .error-msg {
  color: red !important;
}

.grid-column-2 {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
}


.small-.small-popup.modal-content {
  min-width: 60rem;
  width: 100% !important;
}

.st-popup-header:empty {
  display: none;
}

.bm-close {
  color: var(--softtec-medium-blue1) !important;
}

  .bm-close > span {
    font-size: 2rem !important;
  }

  .bm-close:hover {
    cursor: pointer;
    color: var(--softtec-dark-blue) !important;
  }

.st-checkbox-label, .st-checkbox-label > a {
  color: var(--softtec-medium-blue1);
}

/*#endregion*/

/*#region layout / page / conatiners */
.page, .page-keyboard, .maintenance {
  background-image: var(--kiosk-bg-img);
  color: var(--kiosk-text-color);
}

  .page-keyboard #content {
    margin-bottom: 46rem !important;
  }

#content .grid-column-2 {
  padding: 0 7rem;
}

#content .address-card .grid-column-2 {
  padding: 0;
}

.maintenance .wrapper * {
  font-size: 3rem;
}

.key-creation, .welcome-content, .payment-content {
  height: 100%;
  display: flex;
  gap: 2.5rem;
  width: 100%;
  align-items: center;
  flex-direction: column;
}

.welcome-content {
  gap: 5rem;
}

.payment-content {
  gap: 10rem;
}

  .payment-content > .px-5 {
    margin: 6rem 0;
    width: 63rem;
  }

  .welcome-content > div, .payment-content > div {
    text-align: center;
  }

.key-creation-footer, .payment-footer {
  margin-top: auto;
  text-align: center;
}

.option-buttons-conatiner {
  overflow: auto;
  width: 100%;
  display: grid;
  gap: 2rem;
  margin: auto;
  height: fit-content;
  align-items: center;
  justify-content: center;
}

/*#endregion*/

/*#region kiosk buttons*/
.btn, .landing-page-button, .option-button, .btn-article {
  border-radius: 3rem;
  background-color: var(--kiosk-btn-bg-color);
  color: var(--kiosk-btn-text-color);
  border: 2px solid var(--kiosk-btn-border-color);
}

  .btn:hover {
    color: var(--kiosk-btn-text-color);
  }

  .btn-check:focus + .btn, .btn:focus {
    box-shadow: unset;
  }

.landing-page-button {
  display: flex;
  align-items: center;
  padding: 2.5rem;
  font-weight: 600;
  height: 8rem;
  gap: 2rem;
  width: 29rem;
  text-align: left;
}

.option-button {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0.5px;
  width: 45rem;
  height: 18rem;
}

.option-icon {
  width: 7.5rem;
}

.option-button .option-button-text {
  font-size: 3.8rem;
}

  .option-button .option-button-text:first-letter {
    text-transform: uppercase;
  }

.option-button > small {
  position: absolute;
  bottom: 1rem;
}

.landing-page-button-wrapper-three-column .landing-page-button {
  width: 18rem;
}

.landing-page-button span {
  letter-spacing: 0.5px;
  font-size: 2rem;
}

.hiddenbuttonright {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100px;
  width: 100px;
  background: transparent;
}

.hiddenbuttonleft {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100px;
  background: transparent;
}

.hiddenbuttontopright {
  position: absolute;
  top: 0;
  right: 0;
  height: 100px;
  width: 100px;
  background: transparent;
  z-index:10;
}

.hiddenbuttontopleft {
  position: absolute;
  top: 0;
  left: 0;
  height: 100px;
  width: 100px;
  background: transparent;
  z-index:10;
}


.landing-page-button > span {
  width: 100%;
}

.language-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
}

.landing-page-buttons-container {
  width: 100%;
  overflow: auto;
  height: 100%;
  display: flex;
}

.option-button {
  min-height: 15rem !important;
}

  .option-button span {
    min-height: 2.5rem;
  }

.navigation-button {
  width: 15rem;
  height: 10rem;
}

  .navigation-button:hover {
    cursor: pointer;
  }

.cancel-container img {
  height: 5rem;
}

.btn-dataentry, .btn-search {
  width: 9rem;
  min-width: 9rem;
  font-size: 2rem;
  height: 9rem;
}

  .btn-dataentry:disabled {
    cursor: not-allowed !important;
    opacity: .5 !important;
  }

.btn-search {
  width: 50%;
  height: 5rem;
  min-height: 5rem;
  min-width: unset;
  width: 45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0;
  padding: 1rem;
}

.data-search-form + .btn-search {
  margin-top: 1rem;
}

.btn-search > span.fa-solid {
  color: var(--kiosk-text-color);
}

.category-packages .package-btn {
  border-radius: .5rem;
  height: 100%;
  width: 150px;
  min-width: 150px;
  /*border-width: 1px ;*/
}

.empty-booking-wizard-btn {
  width: 15rem;
  height: 10rem;
}

.booking-wizard-btn > div > div {
  background-color: var(--kiosk-text-color);
}

.btn-remove-article {
  background-color: transparent;
  border: none;
  width: 2rem;
  padding: 0;
  margin-left: 2.5rem;
  padding-bottom: 0.6rem;
}

  .btn-remove-article img {
    width: 2rem;
    height: 2rem;
  }

.btn-article {
  padding-top: 2rem;
}

  .btn-article > div {
    font-size: 1.4rem;
  }

  .btn-article .article-price {
    font-size: 1.6rem;
  }

.articles + .d-flex {
  max-width: 83rem;
}

.btn-article > img {
  height: 5rem;
  width: 5rem;
  border-radius: 1rem;
}

.btn-invoice-address {
  background-color: var(--kiosk-btn-yes-no-bg-color);
  color: var(--kiosk-btn-yes-no-text-color);
  border: 1px solid var(--kiosk-btn-yes-no-border-color);
  height: 5rem;
  width: 27.5rem;
  border-radius: 3rem;
  font-size: 2rem;
}

  .btn-invoice-address.selected {
    background-color: var(--kiosk-btn-yes-no-selected-bg-color);
    color: var(--kiosk-btn-text-color);
  }

  .btn-invoice-address:hover {
    color: var(--kiosk-btn-yes-no-text-color);
  }

  .btn-invoice-address.selected:hover {
    color: var(--kiosk-btn-text-color);
  }


.key-btn {
  height: 25.5rem;
  width: 25.5rem;
  display: flex;
  padding: 1.5rem 0;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}

  .key-btn img {
    height: 10rem;
    width: 10rem;
  }

  .key-btn span {
    font-family: 'Montserrat-SemiBold', 'Montserrat-Regular', sans-serif;
    font-size: 5rem;
    font-weight: 600;
  }
/*#endregion*/

/*#region landing-page*/
.landing-page-button-wrapper-single-column, .landing-page-button-wrapper-two-column, .landing-page-button-wrapper-three-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: auto;
  height: fit-content;
  align-items: center;
  justify-content: center;
}

.landing-page-button-wrapper-two-column, .landing-page-button-wrapper-three-column {
  width: 60rem;
  justify-content: start;
  flex-wrap: wrap;
  flex-direction: row;
}

.landing-page-button-wrapper-three-column {
  width: 58rem;
}

.landing-page-header {
  font-family: 'Montserrat-Regular', sans-serif !important;
  font-size: 2.8rem !important;
  font-weight: 700;
}

.landing-page-header-wrapper {
  /*height: 5%;*/
  text-align: center;
}

.emergency-number {
  color: var(--kiosk-text-color);
  border: 1px solid var(--kiosk-btn-border-color);
}

  .emergency-number > span {
    font-family: "Montserrat-Light", "Montserrat-Regular", sans-serif;
  }

.hotel-text {
  font-size: 3.8rem;
  letter-spacing: 0.5px;
  /*max-height: 16rem;*/
  height: fit-content;
  width: 95vw;
  display: -webkit-box;
  /*-webkit-line-clamp: 3;*/
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.language-name {
  text-transform: capitalize;
}

/*#endregion*/

/*#region timer*/
.st-timer {
  font-size: 2rem;
  display: flex;
  align-items: center;
  width: inherit;
  color: var(--kiosk-text-color);
  letter-spacing: 0.5px;
  font-size: 1.6rem;
  font-family: "Montserrat-Light", "Montserrat-Regular", sans-serif;
  width: 10rem;
}

  .st-timer > span {
    margin-right: .5rem;
    font-size: 1.6rem;
  }

  .st-timer > span {
    font-size: 1.3rem;
  }
/*#endregion*/

/*#region dataentry children*/
.child-selections {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
}

.child-title {
  margin: 0 auto;
  width: fit-content;
  display: flex;
  gap: 2rem;
  align-items: center;
}

  .child-title > img {
    height: 5rem;
    width: 3.6rem;
  }

  .child-title > span {
    font-family: "Montserrat-Medium","Montserrat-Regular";
    font-weight: 500;
  }
/*#endregion*/

/*#region dataentry*/
.dataentry {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

  .dataentry .data-container {
    display: flex;
    gap: 4rem;
    justify-content: center;
    width: 100%;
  }
/*#endregion*/

/*#region kiosk inputs*/
.form-select:focus {
  border-color: none;
  outline: 0;
  box-shadow: none;
}


.st-date-dropdown {
  flex: 1 1 0px;
  height: 100%;
  border: none;
  border-radius: 3rem;
  color: var(--kiosk-input-text-color);
  background-color: transparent;
  text-align: center;
}

.st-date-dropdown:disabled {
  background-color: var(--softtec-grey);
}

.st-date-dropdown-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 3rem;
  height: 4rem;
  background-color: transparent;
}

.st-collapse-dropdown-button {
  text-decoration: none;
  border-radius: 3rem;
  padding: 0 0 0 2rem;
  height: calc(3.5rem + 2px);
}

  .st-collapse-dropdown-button:hover {
    color: var(--kiosk-input-text-color);
  }

.st-date-dropdown-content {
  padding: 0;
  border-radius: 3rem;
  color: var(--kiosk-input-text-color);
  background-image: var(--kiosk-input-bg-img);
  border: 1px solid var(--kiosk-input-border-color);
  width: 100%;
}

.st-collapse-dropdown-value {
  font-size: 2rem;
  color: var(--kiosk-input-text-color);
  /*padding-top: 0.3rem;*/
}

.st-collapse-dropdown-button + .st-cancel-button {
  top: 0 !important;
  right: 1rem !important;
  height: 100%;
  align-items: center;
  font-size: 1.6rem;
}

.st-date-dropdown option:hover, .st-date-dropdown option:checked {
  background-color: var(--kiosk-input-text-color) !important;
  color: var(--kiosk-btn-text-color) !important;
}

.st-date-dropdown:focus-visible {
  /*outline: var(--kiosk-dark-blue) auto 1px;*/
  outline: unset;
  border: 1px solid var(--kiosk-input-border-color);
  border-top: 0;
  border-bottom: 0;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-control:not(:disabled):focus, .form-control:not(:disabled):hover, .st-dropdown:not(:disabled):focus, .st-dropdown:not(:disabled):hover {
  box-shadow: none;
  outline: 0;
}

.st-checkbox,
.st-checkbox-wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.form-check-input {
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
  margin-top: 0 !important;
  border-color: var(--kiosk-input-border-color) !important;
}

  .form-check-input:checked, .k-checkbox:checked {
    background-color: var(--kiosk-label-text-color) !important;
    box-shadow: none !important;
  }

  .form-check-input:focus, .k-checkbox:focus {
    border-color: var(--kiosk-medium-blue1) !important;
    outline: 0 !important;
    box-shadow: none !important;
  }

.dataentry .position-relative.w-100 {
  width: 45rem !important;
}

.k-signature {
  border: 1px solid var(--kiosk-input-border-color) !important;
  color: var(--kiosk-input-text-color) !important;
  border-radius: 3rem !important;
  background-color: transparent !important;
  background-image: var(--kiosk-input-bg-img);
}

.k-signature-actions .k-button.k-signature-action {
  border-radius: 1rem;
  margin: 0 .5rem .5rem 0;
}

.form-floating {
  background-image: var(--kiosk-input-bg-img);
  border-radius: 3rem;
}

  .form-floating > .form-control:focus ~ .cancel-button,
  .form-floating > .form-control:not(:placeholder-shown) ~ .cancel-button {
    display: block;
  }

.grid-column-2 .st-checkbox-wrapper {
  height: 6rem;
}

.form-floating > .form-control, .form-floating > .form-control:not(:placeholder-shown), .form-floating > .form-select, .st-collapse-dropdown-button {
  height: 6rem;
  border-radius: 3rem;
  color: var(--kiosk-input-text-color);
  font-size: 2rem;
  border: 1px solid var(--kiosk-input-border-color) !important;
  padding: 1.8rem 2rem 0 2rem;
  background-color: transparent;
  min-width: 14rem;
}

  .st-collapse-dropdown-button > div {
    gap: .1rem;
  }

.st-collapse-dropdown-button {
  padding-top: 0;
  padding-left: 2rem;
}

.form-select {
  background-image: url('/KioskIcons/Icons/angle-down_00305e.svg');
  cursor: pointer;
  background-position: right 2.4rem center;
  background-size: 2.6rem 2rem;
}

.form-floating > .form-control ~ label {
  padding: 0 2rem;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 21px;
  color: var(--kiosk-label-text-color);
  transition: height .3s linear;
  /*justify-content: center;*/
  border: none;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label, .st-collapse-dropdown-label {
  color: var(--kiosk-label-text-color);
  transform: unset !important;
  display: unset;
  padding-top: .5rem;
  font-weight: 400;
  background-color: transparent;
  width: 100%;
  font-size: 1.8rem;
  transition: all .3s ease-out;
  opacity: 1;
  height: 3.5rem;
  text-align: unset;
}

.st-collapse-dropdown-label {
  height: unset;
}

.form-floating > .form-control {
  padding-left: 2rem !important;
}

.form-floating > .form-select ~ label {
  padding: 0 2rem;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  /*justify-content: center;*/
  font-size: 2.5rem;
  padding: 0 2rem;
  height: 100%;
  width: 100%;
}

.invoice-services .st-textbox > .form-control ~ label,
.data-search-form .form-floating > .form-control ~ label,
.data-search-form .form-floating > .form-select ~ label,
.child-selections .form-floating > .form-select ~ label {
  justify-content: center;
}

.form-floating .form-select:has(option[value=""]:not(:checked)) ~ label {
  font-size: 1.8rem;
  display: unset;
  padding-top: .5rem;
  transition: all .3s linear;
  height: 3.5rem;
  text-align: unset;
}

.form-select option:hover, .form-select option:checked {
  background-color: var(--kiosk-input-text-color) !important;
  cursor: pointer;
  color: var(--kiosk-btn-text-color) !important;
}

.dataentry .form-floating > .form-control, .dataentry .form-floating > .form-select {
  height: 9rem;
  text-align: center;
  color: var(--kiosk-label-text-color);
  font-size: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

  .dataentry .form-floating > .form-control:focus ~ label,
  .dataentry .form-floating > .form-control:not(:placeholder-shown) ~ label,
  .dataentry .form-floating > .form-select ~ label {
    text-align: center;
    padding-top: 2rem;
    transition: unset;
    color: var(--kiosk-label-text-color);
  }

  .dataentry .form-floating > .form-select ~ label {
    padding-top: 0;
  }

.dataentry .form-floating > .form-select {
  height: 4rem;
  padding: 1.5rem 0 0;
  font-size: 1.4rem;
  font-size: 1.4rem;
  color: var(--kiosk-label-text-color);
}

  .dataentry .form-floating > .form-select:has(option[value=""]:not(:checked)) {
    font-size: 1.4rem;
    padding-top: 1.8rem;
  }

    .dataentry .form-floating > .form-select:has(option[value=""]:not(:checked)) ~ label {
      padding-top: .2rem;
      transition: unset;
      text-align: center;
    }

.st-keyorad-input {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.form-control ~ .cancel-button, .st-collapse-dropdown-button + .st-cancel-button {
  font-size: 1.6rem;
  position: absolute;
  padding: 0 .5rem;
  color: transparent;
  /*color: var(--kiosk-input-text-color);*/
  border: none;
  background-color: transparent;
  /*right: 1rem;*/
  right: 2.7rem !important;
  background-image: url('/KioskIcons/Icons/x-bold.svg');
  background-repeat: no-repeat;
  background-size: 2rem 2rem;
  background-position: center;
  display: none;
  top: 2rem;
}

.search-bar-cancel-button {
  display: none !important;
}

.st-collapse-dropdown-button + .st-cancel-button,
.form-floating > .form-control:focus ~ .search-bar-cancel-button,
.form-floating > .form-control:not(:placeholder-shown) ~ .search-bar-cancel-button {
  display: flex !important;
}

.form-control ~ .cancel-button:focus {
  outline: none;
}

.form-control ~ .cancel-button img, .st-collapse-dropdown-button + div img {
  height: 2rem;
  width: 2rem;
}

.st-collapse-dropdown-label {
  padding: 0;
}

.form-select:disabled, .form-control:disabled, .st-collapse-dropdown-button.disabled {
  background-color: var(--kiosk-input-disabled-bg-color) !important;
  color: var(--kiosk-input-disabled-text-color) !important;
  cursor: not-allowed;
  opacity: .5;
}

  .form-select:disabled ~ label, .form-control:disabled ~ label, .st-collapse-dropdown-button.disabled > div > * {
    color: var(--kiosk-input-disabled-text-color) !important;
  }

  .form-control:disabled ~ .cancel-button, .st-collapse-dropdown-button + .st-cancel-button {
    display: none !important;
  }

.signature-container.invalid .k-signature {
  border: 1px solid var(--softtec-red) !important;
}
/*#endregion*/

/*#region QR*/
.qr-code-text {
  text-align: center;
  padding-bottom: 2rem;
  padding-left: 7rem;
  padding-right: 7rem;
}

.qr-code-picture {
  border: 2px solid var(--kiosk-qr-img-border-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-mobile-picture {
  -webkit-mask-image: url('/KioskIcons/Pictures/mobile-qrcode.svg');
  mask-image: url('/KioskIcons/Pictures/mobile-qrcode.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-repeat: no-repeat;
  background-color: var(--kiosk-text-color);
  height: 13.5rem;
  width: 7.3rem;
}
/*#endregion*/

/*#region category*/
.category > p:first-child, .package-name {
  color: var(--kiosk-category-text-color);
}
/*#endregion*/

/*#region invoice-overview / invoice-services */
.invoice-overview-content {
  padding: 0 6.9rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.invoice-overview-table tr.border-bottom {
  border-color: var(--kiosk-text-color) !important;
}

.invoice-overview-table th,
.invoice-overview-table td {
  border-color: var(--kiosk-text-color) !important;
}

.row-title td {
  padding-top: 1rem;
}

.booking-table .row-title td {
  padding-top: 3rem;
}


.invoice-services {
  padding: 0 7rem;
  height: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

  .invoice-services .invoice-overview-table {
    padding-bottom: 1rem;
  }

  .invoice-services > .d-flex > .d-flex {
    padding: 1.25rem 0;
  }

.invoice-email {
  margin: 2rem auto;
  width: 42rem;
  padding-top: 1px;
}

.signature-container {
  margin-top: 2rem;
  position: relative;
}

  .signature-container .signature {
    position: absolute;
    top: 1rem;
    width: 100%;
    text-align: center;
    z-index: 2;
    font-family: "Montserrat-Light", "Montserrat-Reqular", sans-serif;
    font-size: 3rem;
  }

  .signature-container .k-signature {
    padding-top: 3rem;
    min-width: 100%;
  }

    .signature-container .k-signature .k-signature-canvas {
      padding-top: 5rem;
    }

.articles + .d-flex {
  margin: 0 auto;
}
/*#endregion*/

/*#region address */
.address-card {
  padding: .1rem 7rem;
  font-size: 1.8rem;
  gap: 2rem;
  display: flex;
  flex-direction: column;
}

.guests-data {
  width: 100%;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.guest-title {
  font-family: "Montserrat-Light",'Montserrat-Regular', sans-serif;
  text-align: center;
  font-size: 3rem;
}

/*invocie address*/
.invoice-address-btns {
  margin-bottom: 10rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
}

/*#endregion*/

/*#region keyboard*/
.keyboard {
  z-index: 3;
  margin-bottom: 14rem;
}

.key {
  margin: 2px !important;
  font-size: 2.5rem;
}
/*#endregion*/

/*#region spinner*/
.spinner-border-sm {
  width: 1.6rem;
  height: 1.6rem;
  border-width: 0.2em;
}
/*#endregion*/

/*#region carousel & package-popup*/
.tippy-box[data-theme~='package-popup'] {
  background-color: white;
  border-radius: .8rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  margin-top: .2rem;
  padding: .5rem;
}

  .tippy-box[data-theme~='package-popup'] .tippy-content > div {
    border-radius: .5rem;
    text-align: center;
    /*width: 250px;*/
    color: var(--softtec-medium-blue1);
  }

    .tippy-box[data-theme~='package-popup'] .tippy-content > div > div:not(:last-child) {
      margin-bottom: 10px;
    }

/*carousel*/
.carousel .carousel-item .carousel-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.carousel .carousel-item .carousel-img {
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
}

.carousel .carousel-inner {
  padding-bottom: 0;
}

.carousel .carousel-indicators {
  align-items: center;
  margin: 0 auto 1rem auto;
}

  .carousel .carousel-indicators button {
    width: 1.8rem;
    height: 1.8rem;
    background: var(--softtec-medium-blue2);
    border-radius: 50%;
    opacity: 1;
    border: 1px solid var(--softtec-dark-blue);
  }

    .carousel .carousel-indicators button.active {
      background: white;
      width: 2rem;
      height: 2rem;
    }

.tippy-box[data-theme~='package-popup'] .carousel .carousel-indicators button {
  width: 1.8rem;
  height: 1.8rem;
}

  .tippy-box[data-theme~='package-popup'] .carousel .carousel-indicators button.active {
    width: 2rem;
    height: 2rem;
  }

.tippy-box[data-theme~='package-popup'] .carousel .carousel-inner,
.tippy-box[data-theme~='package-popup'] .default-img {
  height: 15rem !important;
}

.carousel-indicators button:not(.active):hover {
  background: var(--softtec-medium-blue1);
}

.category-image .carousel .slick-list,
.package-image .carousel .slick-list {
  border-radius: .5rem .5rem 0 0;
}
/*#endregion*/

/*#region media*/
@media (min-height: 1500px) {
  .loading {
    font-size: 3.8rem !important;
    padding: 0 1rem;
    min-height: 26rem;
    height: fit-content !important;
    line-height: 4.2rem;
  }

  .landing-page-top-row {
    padding-top: 5rem !important;
  }

  .language-icon {
    width: 7.5rem;
    height: 7.5rem;
  }

  .landing-page-button-wrapper-two-column {
    width: 92rem;
  }

  .landing-page-button-wrapper-three-column {
    width: 88rem;
  }

  .landing-page-button {
    height: 12.7rem;
    width: 45rem;
    gap: 3.7rem;
    padding-left: 3.8rem;
  }

  .landing-page-button-wrapper-three-column .landing-page-button {
    width: 28rem;
  }

  .landing-page-button span {
    font-size: 3.8rem;
  }

  .cancel-container {
    padding-bottom: 3rem;
  }

  .st-timer {
    font-size: 3rem;
    width: 18.2rem;
  }

    .st-timer > span {
      font-size: 2rem;
    }

  .option-button {
    height: 25.2rem;
  }

  .title {
    margin: 10rem auto !important;
    font-size: 6rem !important;
  }

  .invoice-overview-title {
    margin-bottom: 0 !important;
  }

  .title > p {
    font-size: 3rem !important;
    margin-top: 1rem;
    font-family: "Montserrat-Light", "Montserrat-Reqular", sans-serif;
  }

  header.d-flex {
    padding: 5rem 4rem 0 2rem !important;
    gap: 0 !important;
  }
  /*
  .landing-page-wrapper {
    margin-bottom: 5rem;
  }*/

  .option-button {
    height: 25.4rem !important;
    padding-left: 3.8rem;
    gap: 3.7rem !important;
  }

  .emergency-number {
    flex: 1;
    height: 15rem !important;
    margin-right: 3.5rem;
  }

    .emergency-number > span {
      font-size: 3.8rem !important;
    }

  .qr-code-picture {
    margin-bottom: 5rem !important;
  }

  .qr-code-text {
    font-size: 3.8rem;
  }

  .btn-search {
    height: 12.8rem;
    min-height: 12.8rem;
    padding: 2rem 0 2rem 4.5rem;
    gap: 3rem;
    justify-content: start;
    margin-top: 3rem;
  }

  .data-search-form + .btn-search {
    margin-top: 5rem;
  }

  .btn-search > span {
    font-size: 3.5rem;
  }

    .btn-search > span.fa-solid {
      font-size: 7.5rem;
    }

  .error-message {
    font-size: 3.5rem;
  }

  .btn-dataentry {
    height: 12.6rem;
    width: 12.6rem;
    min-width: 12.6rem;
    font-size: 3.8rem;
  }

  .child-title {
    gap: 3rem;
  }

    .child-title > span {
      font-size: 2.5rem;
    }

  #footer > div.d-flex {
    width: 85rem !important;
  }

  .dataentry, .child-selections, .dataentry > .d-grid.gap-1, .data-search-form, .market-code-buttons-wrapper, .articles + .d-flex.gap-1 {
    gap: 2rem !important;
  }

    .dataentry .data-container {
      gap: 7.2rem;
    }

    .dataentry .form-floating > .form-control {
      padding-top: 5rem !important;
      height: 12.6rem;
    }

    .dataentry .form-floating > .form-select {
      height: 6rem;
    }

      .dataentry .form-floating > .form-control,
      .dataentry .form-floating > .form-control:not(:placeholder-shown) ~ label,
      .dataentry .form-floating > .form-select ~ label {
        font-size: 3.8rem;
      }

      .dataentry .form-floating > .form-select:has(option[value=""]:not(:checked)) {
        font-size: 2.5rem;
        padding-top: 2.5rem;
      }

    .dataentry .form-floating .form-select:has(option[value=""]:not(:checked)) ~ label {
      font-size: 2rem;
      padding-top: .5rem;
    }

    .dataentry .form-select option {
      font-size: 2.4rem;
    }

      .dataentry .form-select option:not(:checked) {
        color: var(--softtec-medium-blue1) !important;
      }

  .st-checkbox-wrapper > span, .form-check-input ~ label {
    font-size: 2rem;
    font-family: "Montserrat-Medium", "Montserrat-Regular", sans-serif;
  }

  #footer {
    padding-bottom: 5rem !important;
    padding-top: 5rem !important;
  }

  .market-code-buttons-wrapper {
    padding-bottom: 5rem;
  }

  .market-code-button {
    width: 24.7rem;
  }

  .invoice-overview-table th,
  .invoice-overview-table td {
    font-size: 3rem;
  }

  .articles {
    font-size: 3rem;
    padding-bottom: 5rem;
  }

  .btn-article {
    padding-top: 3.2rem;
    height: 22.5rem;
    width: 22.5rem;
    gap: .6rem !important;
  }

    .btn-article > div {
      font-size: 2rem;
    }

    .btn-article .article-price {
      font-size: 3rem;
    }

  .articles + .d-flex {
    max-width: 96rem;
  }

  .keyboard {
    margin-bottom: 19rem;
  }

  .guests-data {
    gap: 5rem;
  }

  .guest-title {
    margin-bottom: 2rem !important;
  }

  .invoice-email {
    margin: 5rem auto;
  }

  .signature-container {
    margin-top: 10rem
  }

  .welcome-content > div {
    font-size: 3rem;
  }

  .key-creation-footer > p:first-child, .payment-footer > p:first-child {
    font-size: 4.5rem;
  }

  .key-creation-footer > p:last-child, .payment-footer > p:last-child, .payment-content > div {
    font-size: 3rem;
  }
}

.invoice-services .conditions-checkbox {
  border: none;
  border-radius: 0;
  width: fit-content;
  padding: 0;
}

@media (min-height:1500px) and (max-width: 919.5px) {
  .landing-page-button-wrapper-two-column {
    justify-content: center;
  }
}

@media (min-height:1500px) and (max-width: 759.5px) {
  .landing-page-button-wrapper-three-column {
    width: 50rem;
  }
}

@media (max-width: 599.5px) {
  .landing-page-button-wrapper-two-column {
    justify-content: center;
  }
}

@media (max-width: 499.5px) {
  .landing-page-button-wrapper-three-column {
    justify-content: center;
  }
}

@media (max-height:1000px) and (max-width: 579.5px) {
  .landing-page-button-wrapper-three-column {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  header .hotel-logo {
    margin: 0 auto;
  }

  .hotel-name {
    font-size: 2.5rem !important;
  }

  .hotel-text > div {
    font-size: 2rem !important;
    word-break: break-all;
  }

  .date-footer > .date-footer-time {
    font-size: 2rem !important;
  }

  .date-footer > span {
    font-size: 1.8rem !important;
  }

  .st-timer {
    font-size: 1.5rem !important;
  }

    .st-timer > span {
      font-size: 1.5rem !important;
    }

  #footer > div.d-flex {
    gap: 2rem !important;
  }
}
/*#endregion*/

