.fcat-search-results-wrapper {
  width: 100%;
}

.fcat-search-menu {
  width: 100%;
  border-bottom: 1.3px solid #dbdbdb;
}

.fcat-search-menu-list {
  display: flex;
  align-items: center;
}

.fcat-search-menu-item {
  margin-right: 10px;
  width: 16.6666666667%;
}

.fcat-search-menu-item img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

.fcat-search-menu-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  color: #5675ff;
  border-bottom: 2.5px solid transparent;
  filter: gray;
  -webkit-filter: grayscale(100%);
  -webkit-transition: all 0.2s ease;
  -webkit-backface-visibility: hidden;
}

.fcat-search-menu-item a.active {
  border-bottom: 2.5px solid #5675ff;
  filter: none;
  -webkit-filter: grayscale(0%);
}

.search-result-header {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
}

.search-result-number {
  color: #666666;
  letter-spacing: 0.5px;
  width: 55%;
}

.search-result-number span {
  color: #000;
  font-weight: 600;
}

.fcat-search-result {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.search-filter-part {
  display: flex;
  flex-direction: column;
  width: 20%;
  gap: 10px;
}

.fcat-search-result-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 80%;
  height: min-content;
}

.search-product-item a {
  color: #000;
  position: relative;
}

.search-product-item .image img {
  width: 100%;
}

/*.search-product-item .details
{
  padding: 20px 0;
}*/
.search-product-item .search-product-title {
  font-size: 14px;
  height: 33px;
  font-weight: 400;
  margin: 5px 0;
  color: #393b42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
  min-height: 28px;
}

.search-product-item .search-product-brand {
  color: #000;
  font-weight: 600;
  margin-right: 3px;
  float: left;
}

.fcat-search-product-list .search-product-item .search-product-title {
  min-height: 45px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-product-item .search-product-price {
  font-weight: 600;
  color: #000;
  font-size: 16px;
}

.filter-wrapper {
  display: flex;
  font-size: 14px;
  padding: 8px;
  border: 1px solid #eee;
}

.filter-stock {
  display: flex;
  font-size: 14px;
  padding-right: 5px;
  margin-right: 5px;
  color: #666666;
  border-right: 1px solid #a0a0a0;
  width: 15%;
}

.filter-checkbox {
  --primary-color: #1677ff;
  --secondary-color: #fff;
  --primary-hover-color: #4096ff;
  --checkbox-diameter: 15px;
  --checkbox-border-radius: 5px;
  --checkbox-border-color: #d9d9d9;
  --checkbox-border-width: 1px;
  --checkbox-border-style: solid;
  --checkmark-size: 1;
}

.filter-checkbox,
.filter-checkbox *,
.filter-checkbox *::before,
.filter-checkbox *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.filter-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--checkbox-diameter);
  height: var(--checkbox-diameter);
  border-radius: var(--checkbox-border-radius);
  background: var(--secondary-color);
  border: var(--checkbox-border-width) var(--checkbox-border-style) var(--checkbox-border-color);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  margin-right: 5px;
}

.filter-checkbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  border-radius: inherit;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  -o-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}

.filter-checkbox::before {
  top: 40%;
  left: 50%;
  content: "";
  position: absolute;
  width: 4px;
  height: 7px;
  border-right: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
  opacity: 0;
  -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  -o-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6), opacity 0.1s;
}

.filter-checkbox:hover {
  border-color: var(--primary-color);
}

.filter-checkbox:checked {
  background: var(--primary-color);
  border-color: transparent;
}

.filter-checkbox:checked::before {
  opacity: 1;
  -webkit-transform: translate(-60%, -50%) rotate(45deg) scale(var(--checkmark-size));
  -ms-transform: translate(-60%, -50%) rotate(45deg) scale(var(--checkmark-size));
  transform: translate(-60%, -50%) rotate(45deg) scale(var(--checkmark-size));
  -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  -o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
}

.filter-checkbox:active:not(:checked)::after {
  -webkit-transition: none;
  -o-transition: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  transition: none;
  opacity: 1;
}

.showcase-filter {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 30%;
}

/* @media screen and (max-width: 991px){
    .showcase-filter
    {
        justify-content: space-between;
    }
} */
.showcase-filter .view-options {
  margin-right: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}

.showcase-filter .view-options span,
.yakin-ilanlar a {
  font-size: 14px;
  color: #666666;
}

.yakin-ilanlar a {
  background-color: #333;
  color: #fff;
  height: 25px;
  padding: 3px 8px;
  margin-right: 10px;
}

.showcase-filter .view-options a {
  background-color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  padding: 3px;
  border: 1px solid #666;
}

.showcase-filter .view-options a:hover,
.showcase-filter .view-options a.active {
  background-color: #bed4ec;
}

.showcase-filter .view-options a img {
  width: 15px;
  height: 15px;
}

.showcase-filter select {
  border: 1px solid #666;
  color: #555;
  width: 200px;
  height: 25px;
}

.select-options {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.fcat-search-result-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  gap: 20px;
  transition: all 0.2s ease-in-out;
}

.search-content-item {
  width: 100%;
}

.search-content-item a {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 8px;
  border-bottom: 1px solid #eee;
  width: 100%;
  border-radius: 4px;
  color: #000;
  height: 120px;
}

.search-content-item:hover {
  box-shadow: 0 0 10px -5px #999;
}

.search-content-item .image {
  flex: 1;
}

.search-content-item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.search-content-item .details {
  margin-left: 1rem;
  flex: 7;
  position: relative;
}

.search-content-item .content-title {
  font-size: 22px;
  font-weight: 600;
  color: #252b46;
  text-transform: capitalize;
  margin: 0 0 10px;
  /*  -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;*/
  position: relative;
  padding-right: 80px;
  width: fit-content;
}

.search-content-item .content-title::before {
  content: attr(data-content-type);
  font-size: 15px;
  font-weight: 400;
  background-color: #80a0c4;
  color: #fff;
  padding: 2px 5px;
  border-radius: 4px;
  position: absolute;
  right: 0;
  top: 0;
  min-width: 70px;
  display: flex;
  transform: translate(0, 0);
  justify-content: center;
  align-items: center;
}

.search-content-item .content-desc {
  font-size: 1rem;
  font-weight: normal;
  margin-top: 0.5rem;
  color: #9194a1;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-content-item .content-type {
  display: none;
}

/*.search-content-item .content-type
{
  font-size: 17px;
  color: #80a0c4;
  position: absolute;
  right: 1%;
  top: 0;
}
.search-content-item .content-type::before,
.search-content-item .content-type::after,
.fcat-search-result .blog-date:before,
.fcat-search-result .blog-date::after
{
  content: "'";
}*/
.showcase-filter .search-sort-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 180px;
  height: 30px;
  padding: 0;
  background: #fff;
  border: 1px solid #666;
  border-radius: 2px;
  min-height: 25px;
  text-align: left;
  color: #333;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 14px;
}

.showcase-filter .scrollable-menu {
  height: auto;
  max-height: 200px;
  overflow-x: hidden;
}

.showcase-filter .arrow {
  margin-left: 10px;
  margin-right: 10px;
  float: right;
  rotate: 180deg;
}

.showcase-filter svg {
  transition: all 0.3s;
}

.showcase-filter .search-sort-dropdown::before {
  position: absolute;
  top: 50%;
  right: 16px;
  margin-top: -2px;
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: #fff transparent;
}

.showcase-filter .rotated {
  transform: rotate(-180deg);
}

.showcase-filter .search-sort-dropdown .dropdown {
  transition: 0.3s;
  background-color: #FFFFFF;
  border: 1px solid #E6E6E6;
  box-shadow: 0 8px 16px 0 rgba(51, 51, 51, 0.1);
  border-radius: 2px;
  position: absolute;
  top: 120%;
  right: 0;
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 99;
  box-shadow: inherit;
  background: inherit;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0;
  visibility: hidden;
}

.showcase-filter .search-sort-dropdown .dropdown li,
.showcase-filter .selected-display {
  padding: 0 5px;
  line-height: 30px;
  overflow: hidden;
  font-size: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.showcase-filter .search-sort-dropdown img {
  width: 10px;
  height: 10px;
  margin-right: 3px;
}

.showcase-filter .search-sort-dropdown .dropdown li:last-child {
  border-bottom: none;
}

.showcase-filter .dropdown {
  padding: 10px 5px !important;
}

.showcase-filter .search-sort-dropdown .dropdown li:hover {
  background-color: #f5f5f5;
  color: #1677ff;
  border-radius: 4px;
}

.showcase-filter .search-sort-dropdown.active .dropdown {
  opacity: 1;
  visibility: visible;
  background-color: #FFFFFF;
  border: 1px solid #E6E6E6;
  box-shadow: 0 8px 16px 0 rgba(51, 51, 51, 0.1);
  border-radius: 2px;
}

.fcat-search-product-list {
  display: flex;
  flex-direction: column;
}

.fcat-search-product-list a {
  display: flex;
  min-height: 120px;
}

.fcat-search-product-list a .image {
  max-width: 100px;
}

.fcat-search-product-list .search-product-item {
  padding: 5px 8px;
}

.fcat-search-product-list .search-product-item .search-product-title {
  min-height: 25px;
  text-transform: capitalize;
}

.fcat-search-product-list .search-product-item .details {
  padding: 0 20px;
  width: 100%;
}

.search-product-item .product-old-price {
  font-size: 16px;
  text-decoration: line-through;
  color: #666;
}

.fcat-search-product-list .product-old-price {
  margin-top: 10px;
}

.fcat-search-result .blog-date {
  margin-bottom: 5px;
  font-style: italic;
  color: #666666;
  position: relative;
}

.search-result-filter {
  gap: 20px;
}

.search-result-filter,
.search-result-filter-el {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.search-result-filter-el {
  padding: 15px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.search-result-filter-el input,
.search-select-filter select {
  border: 1px solid #ccc;
  padding: 5px;
  border-radius: 4px;
  color: #585858;
}

.search-result-filter-el-head {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
  width: 100%;
}

.search-result-filter-el-head p {
  margin: 0;
  line-height: 26px;
  font-size: 16px;
}

.search-filter-clear-button {
  background-color: transparent;
  color: #5675ff;
  font-size: 13px;
  border: none;
  cursor: pointer;
}

.search-result-filter-el-body {
  width: 100%;
}

.search-price-filter,
.search-checkbox-filter {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  gap: 10px;
}

.search-checkbox-filter {
  gap: 5px;
  align-items: center;
}

.search-checkbox-filter span {
  font-size: 15px;
  color: #585858;
}

.search-select-filter {
  width: 100%;
  font-size: 15px;
}

.search-rating-filter,
.search-rating-filter label {
  width: 100%;
  display: flex;
  flex-direction: row;
  cursor: pointer;
}

.search-rating-filter input {
  cursor: pointer;
}

.search-rating-filter img,
.search-rating-filter span {
  width: 100%;
}

.search-rating-filter img {
  height: 15px;
}

.search-rating-filter span {
  color: #585858;
  font-size: 15px;
}

#search-filter-btn {
  border: 1px solid #585858;
  background-color: #585858;
  color: #fff;
  padding: 8px;
  cursor: pointer;
  border-radius: 4px;
}

.search-product-item {
  background-color: #ffffff;
  box-sizing: content-box;
  display: inline-grid;
  border-radius: 8px;
  transition: all 0.2s;
}

.search-product-item:hover {
  box-shadow: 2px 2px 10px #dddddd;
  transition: all 0.2s;
}

.fcat-p-i {
  margin-bottom: 10px;
  background-color: #ffffff;
  box-sizing: border-box;
  padding: 10px;
  max-width: 100% !important;
  text-align: center;
}

.fcat-p-t {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: rgb(72, 72, 72);
  display: -webkit-box;
  font-stretch: normal;
  margin-bottom: 6px;
  margin-top: 8px;
  min-height: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 10px;
  width: 100%;
  font-size: 14px;
  height: 34px;
  font-weight: 400;
}
.fcat-p-t span {
  /*width: 100%;
  display: block;*/
  text-align: start;
}

.fcat-p-d {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  /*height: 100px;*/
}
.fcat-p-d > * {
  width: 100%;
}
.fcat-p-d .fcat-p-s-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 36px;
}

.fcat-current-price {
  font-weight: 600;
  color: var(--product-price-color);
  font-size: 16px;
  padding: 0 8px;
  /*margin: 5px 0;*/
}

.fcat-prev-price {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0 8px;
  /*margin: 5px 0;*/
  font-size: 14px;
}

.fcat-prev-price-value {
  color: #bababa;
  text-decoration: line-through;
}

.fcat-p-discount {
  color: #f00;
  font-weight: 600;
  font-size: 14px;
  margin-left: 8px;
}

.fcat-brand {
  color: #000;
  font-weight: 600;
  margin-right: 3px;
}

.fcat-p-d-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0;
}

.fcat-p-btns {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
  padding: 0 8px;
}
.fcat-p-btns a,
.fcat-p-btns button {
  text-align: center;
  border: none;
  padding: 6px 10px;
  width: 100%;
  cursor: pointer;
  font-size: 14px;
  border-radius: 8px;
  height: 29px;
  align-items: center !important;
  color: var(--btn-text-color);
}
.fcat-p-btns .fcat-p-add-to-cart {
  background-color: var(--btn-bg-color);
}
.fcat-p-btns .fcat-p-review-now {
  background-color: var(--btn-bg2-color);
}

.fcat-p-sku {
  padding: 0 10px;
  margin: 5px 0;
  height: 15px;
  font-size: 12px;
  color: #666;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fcat-p-sku span {
  font-weight: 600;
}

.fcat-p-condition {
  color: #000;
  padding: 0 10px;
  height: 15px;
  font-size: 12px;
  margin: 5px 0;
}

.fcat-p-note {
  font-size: 11px;
  color: #666;
  font-weight: 900;
  padding: 0 8px;
  /*margin: 5px 0;*/
  height: 15px;
}

.fcat-category-showcase-p-item a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /*position: relative;*/
}
.fcat-category-showcase-p-item a:hover .fcat-p-fav {
  opacity: 1;
}
.fcat-category-showcase-p-item .fcat-p-t {
  font-size: 14px;
  height: 34px;
  font-weight: 400;
}
.fcat-category-showcase-p-item .fcat-p-i {
  position: relative;
}

/*.fcat-p-d-top
{
  margin-bottom: 45px;
}
.fcat-p-d-bottom
{
  position: absolute;
  bottom: 5px;
  left: 0;
}*/
.fcat-p-fav {
  position: absolute;
  top: 0;
  right: 0;
  margin: 15px;
  opacity: 0.8;
  z-index: 2;
  transition: all 0.2s ease-in-out;
}
.fcat-p-fav .add-favs {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: block;
  position: relative;
  user-select: none;
}
.fcat-p-fav .add-favs input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.fcat-p-fav .add-favs input:checked ~ svg {
  fill: #E3474F;
}
.fcat-p-fav .add-favs svg {
  position: relative;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  transition: all 0.3s;
  fill: #999;
  background-color: #fff;
  border-radius: 100%;
  padding: 5px;
  box-shadow: 0 0 3px #ccc;
}
.fcat-p-fav .add-favs svg:hover {
  transform: scale(1.1);
}

.fcat-p-campaigns {
  position: absolute;
  top: 0;
  left: 0;
  margin: 5px;
  gap: 5px;
  display: flex;
  text-align: center;
  flex-direction: column;
}
.fcat-p-campaigns > * {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 3px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  padding: 3px;
}
.fcat-p-campaigns .cargo {
  background-color: #666;
}
.fcat-p-campaigns .delivery {
  background-color: #55b31c;
}

@media screen and (max-width: 1200px) {
  .fcat-search-result-products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 991px) {
  .fcat-search-menu-item {
    width: 33.3333333333%;
    margin: 0;
    height: 100%;
  }
  .fcat-search-menu-item a {
    padding: 15px 5px;
    height: 68px;
  }
  .search-result-header {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .fcat-search-result {
    flex-direction: column;
  }
  .search-filter-part,
  .fcat-search-result-products {
    width: 100%;
  }
  .fcat-p-btns a, .fcat-p-btns button {
    font-size: 12px;
    padding: 3px;
    height: 20px;
  }
  .fcat-p-d .fcat-p-s-price {
    height: 32px;
  }
  .fcat-current-price {
    font-size: 13px;
  }
  .search-content-item a {
    min-height: 145px;
  }
  .search-content-item {
    box-shadow: 0 0 10px -5px #999;
  }
  .search-product-item .search-product-title,
  .fcat-search-product-list .search-product-item .search-product-title {
    height: 32px;
  }
  .search-content-item .content-title {
    font-size: 1.5rem;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .search-content-item .content-title::before {
    display: none;
  }
  .search-content-item .content-type {
    font-size: 15px;
    position: absolute;
    left: 0;
    right: unset;
    background: #80a0c4;
    padding: 2px 10px;
    border-radius: 4px;
    color: #fff;
    display: block;
    margin-top: 5px;
  }
  .fcat-search-result .blog-title {
    margin: 0;
  }
  .search-result-header .search-result-number,
  .search-result-header .showcase-filter {
    width: 100%;
  }
  .search-result-header filter-stock {
    border: none;
    width: 25%;
    padding: 0;
    margin: 0;
  }
  .search-result-header .select-options {
    justify-content: flex-end;
  }
  .showcase-filter .wrapper-dropdown {
    width: 100%;
    height: 25px;
  }
  .showcase-filter .view-options a {
    width: 25px;
    height: 25px;
  }
  .search-result-header .showcase-filter .view-options {
    margin-right: 5px;
  }
  .search-result-header .showcase-filter .wrapper-dropdown .dropdown li {
    font-size: 12px;
  }
  .search-result-header .filter-checkbox {
    width: 17px;
    height: 17px;
  }
  .search-filter-part {
    position: fixed;
    background: #fff;
    gap: 10px;
    top: 0;
    left: -100%;
    z-index: 100000;
    height: 100vh;
    overflow-y: scroll !important;
    padding: 10px 8px;
    width: 100%;
    transition: left 0.3s ease-in-out;
  }
  .search-filter-part.filter-opened {
    left: 0;
  }
  .search-filter-btn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 5px;
  }
  .search-filter-btn button {
    border: 1px solid #666;
    background-color: #fff;
    color: #666;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 10px;
  }
  #closeFilterBtn {
    padding: 20px;
    border: none;
    cursor: pointer;
    position: relative;
  }
  #closeFilterBtn::before,
  #closeFilterBtn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(-50%, 10px);
    width: 2px;
    height: 20px;
    background-color: #333;
  }
  #closeFilterBtn::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  #closeFilterBtn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .overflowyhidden {
    overflow-y: hidden !important;
  }
  #search-filter-btn {
    width: 100%;
  }
  .search-rating-filter, .search-rating-filter label {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .search-result-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .fcat-search-result-products {
    grid-template-columns: repeat(2, 1fr);
  }
  .search-content-item .details {
    margin-left: 5px;
    flex: 2;
  }
  .search-content-item .content-desc {
    display: none;
  }
  .search-content-item .content-type {
    font-size: 15px;
    left: 1%;
    right: unset;
    background: #80a0c4;
    padding: 2px 10px;
    border-radius: 4px;
    color: #fff;
  }
  .search-result-header .search-result-number {
    width: 100%;
  }
  .search-result-header .filter-stock {
    border: none;
    width: 100%;
  }
  .search-result-header .showcase-filter {
    width: 100%;
  }
}
