/*!****************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/field-search/style.scss ***!
  \****************************************************************************************************************************************************************************************************************************************************/
.yourstore-field-search * {
  box-sizing: border-box;
  line-height: normal;
}

.yourstore-field-search {
  width: 100%;
  display: flex;
  display: var(--desktop-display);
}

.yourstore-field-search > div {
  flex: 1;
  position: relative;
}

.yourstore-field-search .input {
  width: 100%;
  background: #006BB0;
  border-radius: 10px 0 0 10px;
  background: #006BB0;
  border: 1px solid #006BB0;
  overflow: hidden;
}

.yourstore-field-search .results {
  display: none;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  z-index: 1;
  border: 1px solid #006bb0;
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  font-family: "Unbounded";
  font-weight: 300;
  line-height: normal;
  overflow: hidden;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}

.yourstore-field-search .results .taxonomy-name,
.yourstore-field-search .results .post-type-name {
  padding: 10px 15px 10px 15px;
  background: #d0edff;
  font-weight: 400;
}

.yourstore-field-search .results a {
  font-family: "Unbounded";
  color: #333;
  display: block;
  text-decoration: none;
  padding: 10px 15px 10px 15px;
  transition: 0.2s;
}

.yourstore-field-search .results a span {
  margin-left: 10px;
}

@media (any-hover: hover) {
  .yourstore-field-search .results a:hover {
    background: #efefef;
  }
}
.yourstore-field-search .results > *:first-child:not(.empty) {
  padding: 15px 15px 10px 15px;
}

.yourstore-field-search .results > *:last-child:not(.empty) {
  padding: 10px 15px 15px 15px;
}

.yourstore-field-search.show .results {
  display: block;
  animation: show_results 0.2s ease-out 0s forwards;
}

@keyframes show_results {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.yourstore-field-search .results .empty {
  padding: 10px 15px 10px 15px;
}

.yourstore-field-search .btn-clear {
  color: #333;
  position: absolute;
  right: 5px;
  top: 50%;
  width: 40px;
  height: 40px;
  opacity: 0.4;
  transform: translateY(-50%);
  cursor: pointer;
  transition: 0.2s;
  z-index: 1;
  display: none;
}

.yourstore-field-search .btn-clear.show {
  display: block;
}

.yourstore-field-search .btn-clear:before {
  content: "";
  display: block;
  top: calc(50% - 1px);
  left: calc(50% - 8px);
  width: 16px;
  height: 2px;
  position: absolute;
  background: #000;
  transform-origin: center;
  transform: rotate(45deg);
}

.yourstore-field-search .btn-clear:after {
  content: "";
  display: block;
  top: calc(50% - 1px);
  left: calc(50% - 8px);
  width: 16px;
  height: 2px;
  position: absolute;
  background: #000;
  transform-origin: center;
  transform: rotate(315deg);
}

.yourstore-field-search input[type=text] {
  padding: 10px 45px 10px 15px;
  border: 0;
  border-radius: 0 10px 10px 0;
  width: 100%;
  font-size: 14px;
  font-family: "Unbounded";
  font-weight: 300;
  line-height: normal;
}

.yourstore-field-search input::-moz-placeholder {
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.yourstore-field-search input::placeholder {
  transition: 0.3s;
}

.yourstore-field-search input:focus {
  outline: none;
}

.yourstore-field-search input:focus::-moz-placeholder {
  color: transparent;
}

.yourstore-field-search input:focus::placeholder {
  color: transparent;
}

.yourstore-field-search button {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  border-radius: 0 10px 10px 0;
  width: 130px;
  min-width: 130px;
  background: #006BB0;
  transition: 0.2s;
}

.yourstore-field-search button > span {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.yourstore-field-search button > span.show {
  display: flex;
}

.yourstore-field-search .type-results svg {
  display: none;
}

@media (any-hover: hover) {
  .yourstore-field-search .btn-clear:hover {
    opacity: 0.5;
  }
  .yourstore-field-search button:hover {
    background: #00609E;
  }
}
.yourstore-field-search button svg {
  width: 20px;
  min-width: 20px;
  height: auto;
}

@media (max-width: 1000px) {
  .yourstore-field-search {
    display: var(--tablet-display);
  }
}
@media (max-width: 500px) {
  .yourstore-field-search {
    display: var(--mobile-display);
  }
  .yourstore-field-search button {
    width: 70px;
    min-width: 70px;
  }
  .yourstore-field-search .type-results svg {
    display: block;
  }
  .yourstore-field-search button span span:first-of-type {
    display: none;
  }
  .yourstore-field-search .results {
    width: calc(100% + 70px);
  }
}

/*# sourceMappingURL=style-index.css.map*/