/* WooCommerce SKU Search — styles for the search bar */
.wc-sku-search-wrap { margin: 8px 0 18px; }
.wc-sku-search { display:flex; width:100%; border-radius:6px; overflow:hidden; }
.wc-sku-input {
  flex:1 1 auto;
  background:#1f4d8f;
  color:#ffffff;
  padding:14px 16px;
  border:0;
  outline:none;
  font-size:16px;
}
.wc-sku-input::placeholder { color: rgba(255,255,255,0.75); }
.wc-sku-input:focus { box-shadow: inset 0 0 0 2px rgba(255,255,255,0.15); }
.wc-sku-submit {
  width:60px;
  border:0;
  background:#7ac142;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.wc-sku-submit:hover { filter: brightness(0.95); }
.wc-sku-submit:active { transform: translateY(1px); }
.wc-sku-search-error { color:#b00020; font-weight:600; }