/**
 * DO NOT CHANGE THIS FILE!
 * To override any of the settings in this section, add your styling code in the custom directory.
 * Loading first in the style.scss & editor-style.scss
 */
.jimsoft_search_form {
  position: relative;
  font-size: 18px;
  z-index: 1005;
  width: 420px;
  max-width: 100%;
  margin: auto;
}
@media (max-width: 1024px) {
  .jimsoft_search_form {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .jimsoft_search_form {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .jimsoft_search_form {
    width: 280px;
    box-shadow: none !important;
  }
}

.kp-search-form > form {
  background-color: white;
  position: relative;
  z-index: 2000;
  border-bottom: 1px solid var(--ast-global-color-0);
}
.kp-search-form .progress {
  position: relative;
  height: 4px;
  display: block;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  margin: 0.5rem 0 1rem 0;
  overflow: hidden;
}
.kp-search-form .progress .determinate {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: white;
  -webkit-transition: width 0.3s linear;
  transition: width 0.3s linear;
}
.kp-search-form .progress .indeterminate:before {
  content: "";
  position: absolute;
  background-color: var(--ast-global-color-0);
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
  animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}
.kp-search-form .progress .indeterminate:after {
  content: "";
  position: absolute;
  background-color: var(--ast-global-color-0);
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  -webkit-animation-delay: 1.15s;
  animation-delay: 1.15s;
}
@-webkit-keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}
@keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}
.kp-search-form .progress {
  position: absolute;
  transition: 0.3s ease;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  margin: 0;
}
.kp-search-form .progress .intermediate {
  background-color: var(--ast-global-color-0);
}
.kp-search-form .progress .intermediate::before, .kp-search-form .progress .intermediate::after {
  width: 0;
  transition: 0.5s ease-out;
}
body:not(.__kp_search_requesting) .kp-search-form .progress .indeterminate {
  background-color: var(--ast-global-color-0);
}
body:not(.__kp_search_requesting) .kp-search-form .progress .indeterminate::before {
  animation: none;
  width: 100%;
}
body:not(.__kp_search_requesting) .kp-search-form .progress .indeterminate::after {
  display: none !important;
}
.kp-search-form .results-container {
  position: relative;
  z-index: 4;
  transition: 0.3s ease;
  opacity: 1;
  background-color: var(--ast-global-color-5);
  padding: 0 0.5rem;
}
.kp-search-form .modal {
  font-size: 1rem;
  max-height: 100% !important;
  overflow-y: auto;
}
@media (max-width: 992px) {
  .kp-search-form .modal {
    padding: 0 !important;
    max-width: calc(100% - 30px) !important;
    width: 100% !important;
    left: 15px !important;
  }
}
.kp-search-form .meta {
  margin: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.kp-search-form .meta > * {
  margin: 0.25rem;
}
.kp-search-form .jimsoft_search_form_button {
  background-color: transparent !important;
  width: 1.5em;
  height: 1.5em;
  border: none !important;
  box-shadow: none !important;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 1em;
}
.kp-search-form .jimsoft_search_form_button svg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  color: var(--ast-global-color-0);
}
.kp-search-form .jimsoft_search_form_button svg path {
  fill: var(--ast-global-color-0) !important;
  stroke: var(--ast-global-color-0) !important;
}
.kp-search-form .results-container {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  flex-grow: 1;
}
.kp-search-form .results-container .search-products {
  width: 100%;
}
@supports (display: grid) {
  .kp-search-form .results-container .search-products {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    grid-gap: 0.5rem;
  }
  @media (min-width: 992px) {
    .kp-search-form .results-container .search-products {
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
  }
}
.kp-search-form .results-container .search-products > li {
  position: relative;
  border: solid 1px #ccc;
  margin-bottom: 0;
  padding: 0.5rem;
  padding-bottom: 3rem;
  background: white;
}
.kp-search-form .results-container .search-products > li span.onsale {
  font-size: 0.7rem !important;
}
.kp-search-form .results-container .search-products > li .add-to-cart-bag {
  color: var(--ast-global-color-0) !important;
}
.kp-search-form .results-container .search-products > li .add-to-cart-bag svg {
  fill: var(--ast-global-color-0) !important;
}
.kp-search-form .results-container .search-products > li .product-subtitle {
  position: relative;
  padding-bottom: 0.25em;
  color: var(--ast-global-color-0);
}
.kp-search-form .results-container .search-products > li .product-subtitle::after {
  content: "";
  height: 1px;
  background-image: linear-gradient(to right, var(--ast-global-color-0), transparent);
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
}
.kp-search-form .results-container .search-products > li > a.woocommerce-LoopProduct-link {
  display: grid;
  grid-template-columns: 120px 1fr;
  column-gap: 1rem;
  font-size: 0;
}
.kp-search-form .results-container .search-products > li > a.woocommerce-LoopProduct-link > * {
  font-size: 1rem;
}
.kp-search-form .results-container .search-products > li > a.woocommerce-LoopProduct-link .attachment-woocommerce_thumbnail {
  grid-row: span 100;
  max-height: 100px;
}
.kp-search-form .results-container .search-products > li > a.woocommerce-LoopProduct-link .woocommerce-loop-product__title {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 0.25rem;
  color: black;
}
.kp-search-form .results-container .search-products > li .price {
  margin-top: -1rem;
}
.kp-search-form .results-container .search-products > li .add-to-cart-bag {
  position: absolute;
  display: block;
  right: 0;
  bottom: 0;
  padding: 0.5rem 1rem 0rem;
}
.kp-search-form .results-container .search-products > li .custom-lead-time-wrapper {
  position: absolute;
  right: 4rem;
  bottom: 0;
  padding: 0.5rem;
  margin: 0;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
}
.kp-search-form .results-container .search-products > li .custom-lead-time-wrapper .custom-lead-time-signal {
  width: 1em;
  height: 1em;
}
.kp-search-form .results-container .meta, .kp-search-form .results-container .brand-title {
  display: none;
}
.kp-search-form .results-container .search-products {
  grid-template-columns: 1fr;
  margin-top: 0.5rem;
}
.kp-search-form .results-container .brand-title {
  position: sticky;
  top: 0;
  background-color: var(--ast-global-color-0);
  z-index: 101;
  padding: 0.5rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  text-align: center;
}
.kp-search-form .results-container .brand-title h4 {
  color: white;
}
.kp-search-form .results-container .brand-title h4 {
  font-size: 2rem;
  margin: 0;
  font-style: italic;
}
@media (max-width: 1920px) {
  .kp-search-form .results-container .brand-title h4 {
    font-size: 1.5rem;
  }
}
@media (max-width: 1340px) {
  .kp-search-form .results-container .brand-title h4 {
    font-size: 1.5rem;
  }
}
.kp-search-form .results-container .brand-results {
  margin-bottom: 1rem;
}
.kp-search-form .result-list {
  position: relative;
  overflow-y: auto;
  flex-grow: 1;
  overflow-x: hidden;
}
.kp-search-form .results-title {
  text-align: center;
  padding-top: 15px;
}
.kp-search-form .results-title:empty {
  padding-top: 0;
  margin: 0;
}
.kp-search-form .brand-section > .brand-title {
  position: sticky;
  top: 0;
}
.kp-search-form .brand-section > .brand-results {
  padding-left: 200px;
}
.kp-search-form .jimsoft_search_form_input {
  padding: 10px;
  font-size: 1em;
  font-weight: 300;
  font-family: Roboto, sans-serif;
  border: none !important;
  box-shadow: none !important;
  color: #444444;
}
@media (max-width: 768px) {
  .kp-search-form .jimsoft_search_form_input {
    padding: 7px;
  }
}
.kp-search-form .jimsoft_search_form_input::placeholder {
  font-style: italic;
}
.kp-search-form svg {
  fill: var(--ast-global-color-0);
}
.kp-search-form:focus-within input {
  color: var(--ast-global-color-0);
}

.kp-search-form .modal.bottom-sheet {
  top: auto;
  bottom: -100%;
  margin: 0;
  width: 100%;
  max-height: 45%;
  border-radius: 0;
  will-change: bottom, opacity;
}
.kp-search-form .modal {
  font-size: 1rem;
  max-height: 100% !important;
  overflow-y: auto;
}
.kp-search-form .modal {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  background-color: #fafafa;
  padding: 0;
  max-height: 70%;
  width: 55%;
  margin: auto;
  overflow-y: auto;
  border-radius: 2px;
  will-change: top, opacity;
}
.kp-search-form .modal {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  background-color: #fafafa;
  padding: 0;
  max-height: 70%;
  width: 55%;
  margin: auto;
  overflow-y: auto;
  border-radius: 2px;
  will-change: top, opacity;
  box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
}

/*# sourceMappingURL=jimsoft-search.css.map */
