img[data-zs-logo] {
  position: absolute !important;

  width: 120px !important;
  height: 120px !important;

  object-fit: contain;

  top: 50%;
  transform: translateY(-50%);
}



/* ==========================================
   FAUNA DELIVERY AREA SEARCH
   ========================================== */

.fauna-delivery-search-wrapper {
  position: relative;
  width: 100%;
}


/* ==========================================
   SEARCH INPUT
   ========================================== */

#fauna-delivery-search {
  width: 100%;
  min-height: 40px;

  box-sizing: border-box;

  padding: 0 42px 0 14px;

  border: 1px solid #d9dfe8;
  border-radius: 4px;

  background: #ffffff;

  color: #222222;

  font-family: inherit;
  font-size: 14px;

  outline: none;

  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}


#fauna-delivery-search::placeholder {
  color: #777777;
}


#fauna-delivery-search:focus {
  border-color: #999999;

  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.04);
}


/* ==========================================
   SEARCH RESULTS
   ========================================== */

.fauna-delivery-results {
  display: none;

  position: absolute;

  top: calc(100% + 4px);
  left: 0;
  right: 0;

  z-index: 99999;

  max-height: 220px;

  overflow-y: auto;

  background: #ffffff;

  border: 1px solid #d9dfe8;

  border-radius: 4px;

  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.10);
}


.fauna-delivery-results.fauna-results-visible {
  display: block;
}


/* ==========================================
   DELIVERY OPTIONS
   ========================================== */

.fauna-delivery-option {
  padding: 13px 14px;

  font-family: inherit;
  font-size: 14px;

  color: #222222;

  background: #ffffff;

  cursor: pointer;

  transition:
    background-color 0.12s ease;
}


.fauna-delivery-option:hover,
.fauna-delivery-option.fauna-option-highlighted {
  background-color: #f5f5f5;
}


/* ==========================================
   ORIGINAL ZOHO CITY FIELD
   ========================================== */

#shipping-address-city.fauna-hidden-field {
  display: none !important;
}


/* ==========================================
   ZIP CODE
   ========================================== */

/*
   KEEP ZIP VISIBLE FOR TESTING.

   Once automatic shipping calculation has
   been confirmed, we will hide this field.
*/

#shipping-postal-code {
  display: none !important;
}
/* Hide the ZIP Code label */
label[for="shipping-postal-code"] {
  display: none !important;
}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 600px) {

  #fauna-delivery-search {
    min-height: 46px;

    font-size: 14px;
  }

  .fauna-delivery-option {
    padding: 14px;
  }

}