[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%; /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%; /* Not required for horizontal scroll to trigger */
  max-height: 100%; /* Needed for vertical scroll to trigger */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.search__results .simplebar-content-wrapper {
  overflow: hidden scroll !important;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: ' ';
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: '';
  background: black;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  /* When hovered, remove all transitions from drag handle */
  opacity: 0.5;
  transition: opacity 0s linear;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */
[data-simplebar-direction='rtl'] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.hs-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.search {
  position: relative;
  background: #FFFFFF;
  box-shadow: 0px 0px 44px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  display: flex;
  align-items: center;
  flex: 1;
  transition: border-radius 0.2s;
  width: 100%;
  max-width: 850px;
}
@media (max-width:960px) {
  .search {
    width: 90%;
  }
  .product_category .search {
    width: 100%;
  }
}
.search.is-results-view {
  border-radius: 6px 6px 0px 0px;
}
.search .icon {
  width: 1.875em;
  height: 1.875em;
  position: absolute;
  top: 50%;
  left: 1em;
  transform: translate3d(0, -50%, 0);
  fill: #C4C4C4;
}
.search form {
  width: 100%;
  margin-bottom: 0;
  background-color: #FDCF08;
  padding-right: 100px;
  border-radius: 12px;
}
.search__input {
  border: none;
  padding:17px 26px;
  outline: none;
  width: 100%;
  background: none;
  border: 1px solid #FDCF08;
  border-radius: 12px;
  background-color: #fff;
}
.search__btn {
  position: absolute;right: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
}

.search__results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 20em;
  border-radius: 0px 0px 6px 6px;
  background-color: #FAFAFA;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 1;
}
.is-results-view .search__results {
  opacity: 1;
  pointer-events: all;
  z-index: 6;
}
.search .not_found {
  display: flex;
  padding: 1em;
}
.search .not_found img {
  width: 24px;
  height: 24px;
  margin: 0 auto;
  justify-self: center;
}

.search_result_item {
  display: flex;
  align-items: center;
  padding: 1em;
}
.search_result_item__img {
  width: 6.5625em;
  height: 3.75em;
  background: #FFFFFF;
  border-radius: 4px;
  overflow: hidden;
  padding: 0.2em;
  border: 1px solid #ECECEC;
  display: flex;
  justify-content: center;
}
.search_result_item__info {
  margin-left: 1em;
}
.search_result_item__title {
  font-size: 0.9375em;
  font-weight: 600;
  line-height: 1.33em;
  color: #242424;
}
.search_result_item__text {
  font-size: 0.75em;
  line-height: 1.33em;
  margin-top: 0.375em;
  color: #242424;
}
.search_result_item__text .grey {
  color: #6A6A6A;
}

.product_category .search {
  max-width: 100%;
  margin-bottom: 40px;
}