body .woocommerce-input-wrapper {
  position: relative;
}

body .fc-address-suggestions {
  z-index: 200;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  width: 100%;
  background-color: var(--fluidcheckout--color--white, #fff);
  box-shadow: 0 3px 8px var(--fluidcheckout--shadow-color--darker, var(--fluidcheckout--color--light-grey, #d8d8d8));
  border-radius: 5px;
  overflow: hidden;
}

body .fc-address-suggestion__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 5px;
  background-color: var(--fluidcheckout--color--white, #fff);
  border-bottom: 1px solid var(--fluidcheckout--border-color--light, var(--fluidcheckout--color--lighter-grey, #f3f3f3));
  font-size: 13px;
  cursor: pointer;
}

body .fc-address-suggestion__item::before {
  content: "";
  display: block;
  clear: both;
  flex-shrink: 0;
  flex-grow: 0;
  width: 12px;
  height: 17px;
  background: url(../images/maps-pin.svg) center/contain no-repeat;
  margin-right: 5px;
}

body .fc-address-suggestion__item:hover {
  background-color: var(--fluidcheckout--color--lighter-grey, #f3f3f3);
}

body .fc-address-suggestion__item:has(input[type=radio]:checked)::before {
  background-image: url(../images/maps-pin--selected.svg);
}

body .fc-address-suggestion__item input {
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

body .fc-address-suggestion__item span {
  color: var(--fluidcheckout--color--dark-grey, #535156);
}

body .fc-address-suggestion__item strong {
  color: var(--fluidcheckout--color--black, #000);
}

body .wc-block-components-form .wc-block-components-text-input input[type=text].fc-address-autocomplete-active {
  padding: 1.5em 0.5em 0.5em;
}

body .wc-block-components-form .wc-block-components-text-input input[type=text].fc-address-autocomplete-active + label {
  top: 0;
  transform: translateY(4px) scale(0.75);
}

body .fc-inline-error.invalid-country-not-allowed {
  z-index: 2;
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding-inline: 0;
  padding: 5px;
  min-height: auto;
  border: 0;
  background-color: transparent;
  color: var(--fluidcheckout--color--error, #cc1818);
  font-size: 13px;
  text-align: left;
  line-height: 1.6;
  animation: none;
  transform: none;
}