<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * @file
 * The visual styles for Bartik's search form(s).
 */

.search-form {
  font-size: 0.875rem;
}
.search-form .form-search {
  float: left; /* LTR */
  margin-right: 5px; /* LTR */
  padding: 4px;
}
[dir="rtl"] .search-form .form-search {
  float: right;
  margin-left: 5px;
  margin-right: 0;
}
.button.search-form__submit,
.search-form__submit {
  cursor: pointer;
  height: 26px;
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
  padding: 0;
  text-indent: -9999px;
  direction: ltr;
  width: 34px;
  display: none;
}
h3.no-result-found{
  font-family: "Open Sans";
  font-weight: 100;
  margin-left: 30px;
  margin-top: 20px;
}
.button.search-form__submit:hover,
.search-form__submit:hover,
.button.search-form__submit:focus,
.search-form__submit:focus {
  background: #dedede url(../../../../misc/icons/424242/loupe.svg) no-repeat center;
}
.js-form-type-search label {
    display: block;
    /* background: url(../../images/cancel.svg) no-repeat; */
    width: 16px;
    height: 16px;
    font-size: 0;
    position: absolute;
    right: 22px;
    top: 27px;
    z-index: 11;
    clip: auto;
}
</pre></body></html>