@charset "UTF-8";
.checkout__delivery-local-details {
  overflow: hidden;
  transition: height 0.3s ease, opacity 0.3s ease;
  height: 0;
  opacity: 0;
  display: none;
  padding-top: 0 !important;
  text-wrap: wrap;
}
.checkout__delivery-local-details .wc-block-components-checkout-step__heading {
  display: none;
}
.checkout__delivery-local-details.visible {
  opacity: 1;
}
.checkout__delivery-local-details #additional-information-custom-delivery-options-delivery_date {
  min-height: 30px;
}
.checkout__delivery-local-details .wc-block-components-address-form__custom-delivery-options-delivery_date {
  display: flex;
  flex-direction: column;
  margin-top: 0;
}
.checkout__delivery-local-details .wc-block-components-address-form__custom-delivery-options-delivery_date label {
  display: none;
}
.checkout__delivery-local-details .wc-block-components-address-form__custom-delivery-options-delivery_date input[type=date] {
  cursor: pointer;
  background-color: transparent;
}
.checkout__delivery-local-details .wc-block-components-address-form__custom-delivery-options-delivery_date:before {
  content: "Kiedy mamy dostarczyć Twoje zamówienie? Wskaż datę";
  display: block;
  font-weight: 600;
  margin-bottom: 0.5em;
  text-wrap: wrap;
}
.checkout__delivery-local-details .wc-block-components-select-input-custom-delivery-options-delivery_hour .wc-blocks-components-select__container {
  margin-top: 0;
}
.checkout__delivery-local-details .wc-block-components-select-input-custom-delivery-options-delivery_hour .wc-blocks-components-select .wc-blocks-components-select__select {
  padding: 0 12px;
}
.checkout__delivery-local-details .wc-block-components-select-input-custom-delivery-options-delivery_hour label {
  display: none;
}
.checkout__delivery-local-details .wc-block-components-select-input-custom-delivery-options-delivery_hour:before {
  content: "Wybierz orientacyjną godzinę dostarczenia zamówienia";
  display: block;
  font-weight: 600;
  margin: 1em 0 0.5em;
}
.checkout__delivery-local-details .wc-block-components-select-input-custom-delivery-options-delivery_hour:after {
  content: "Przed dostarczeniem zamówienia skontaktujemy się z Tobą telefonicznie.";
  display: block;
  font-size: 1.2rem;
  color: #666;
  margin-top: 0.5em;
}

.custom-postcode-message,
.custom-delivery-message {
  display: none;
  background-color: #e7f3fe;
  padding: var(--gap-s) var(--gap-m);
  color: #31708f;
  border: 0.1rem solid #b3d8fd;
  margin-bottom: 20px;
  font-weight: 400;
}

.custom-delivery-message {
  min-height: 65px;
}

.checkout__data-shipping .kupuje-na-firme-toggle,
.checkout__data-billing .kupuje-na-firme-toggle {
  background: none;
  cursor: pointer;
  color: inherit;
  font-weight: 300;
  display: inline-block;
  margin-top: 16px;
  text-align: left;
  width: 100%;
}
.checkout__data-shipping .kupuje-na-firme-toggle:hover,
.checkout__data-billing .kupuje-na-firme-toggle:hover {
  text-decoration: underline;
}
.checkout__data-shipping[data-company-open=false] .wc-block-components-text-input.wc-block-components-address-form__company,
.checkout__data-billing[data-company-open=false] .wc-block-components-text-input.wc-block-components-address-form__company {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.checkout__data-shipping[data-company-open=true] .wc-block-components-text-input.wc-block-components-address-form__company,
.checkout__data-billing[data-company-open=true] .wc-block-components-text-input.wc-block-components-address-form__company {
  max-height: 200px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.spinner-checkout {
  width: 20px;
  height: 20px;
  margin: 0 auto;
  background-color: #333;
  border-radius: 100%;
  animation: sk-scaleout 1s infinite ease-in-out;
}
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}/*# sourceMappingURL=custom-delivery-options.css.map */