<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
  Styles for integrating the default autocomplete styles into your storefront.
  The provided implementation below targets the standard RefArch storefront.

  --&gt; PLEASE overlay this file with your own css implementation, fitting your site's structure.
*/

.cio-autocomplete {
  padding: 0px;
  height: auto;
}

#cio-autocomplete-0-label {
  margin: 0px
}

.cio-results {
  padding: 20px !important;
  border: rgb(224, 224, 224) solid 1px;
  border-top: none;
}


/* Only desktop rules */
@media screen and (min-width: 601px) {
  .cio-autocomplete &gt; ul {
    position: absolute;
    background-color: white;
    z-index: 9999;
    list-style: none;
    display: flex;
    min-width: 750px;
    right: 0;
  }
}

/* Mobile Rules */
@media screen and (max-width: 600px) {
	.search {
    display: block !important;
  }

  .pull-right {
    display: flex;
    flex-direction: column-reverse;
    align-items: end;
  }
  
  .pull-right .site-search {
    position: absolute;
    z-index: 9999;
    width: 100%;
    left: 0;
    padding: 0 10px;
  }

	.search-mobile .site-search {
    display: none !important;
  }

  .header.container {
    padding-bottom: 50px !important;
  }

  #cio-autocomplete-0-label {
    display: block;
    height: 100%;
  }

  .cio-autocomplete {
    height: 40px;
  }

  .cio-results {
    padding: 10px !important;
  }
}</pre></body></html>