/** Shopify CDN: Minification failed

Line 13:0 Unexpected "<"
Line 15:21 Expected identifier but found whitespace
Line 15:23 Unexpected "{"
Line 15:32 Expected ":"
Line 73:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .search-nf-section .search-nf-wrapper {
    background-color: {{ section.settings.background_color }};
    width: 100%;
    padding: 100px 20px;
    box-sizing: border-box;
  }

  .search-nf-section .search-nf-form-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .search-nf-section .search-nf-form {
    width: 100%;
    position: relative;
  }

  .search-nf-section .search-nf-form input[type="search"] {
    width: 100%;
    padding: 16px 50px 16px 20px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
  }

  .search-nf-section .search-nf-form button {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .search-nf-section .search-nf-form button svg {
    width: 20px;
    height: 20px;
    color: #333;
  }

  .search-nf-section .search-nf-form button:hover svg {
    color: #000;
  }

  @media screen and (max-width: 768px) {
    .search-nf-section .search-nf-wrapper {
      padding: 80px 15px;
    }

    .search-nf-section .search-nf-form-container {
      padding: 0 10px;
    }
  }
</style>