.was-search-form {
  display: flex;
  align-items: stretch;
  border: 1px solid #000000;
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
  width: 100%;
}

.was-search-form input {
  border: none !important ;
  outline: none !important ;
  box-shadow: none !important ;
  background: transparent !important;
  height: auto !important ;
  padding: 10px 15px;
  font-size: 15px;
  font-family: 'Inter';
}

.was-search-form button {
  padding: 10px 30px;
  border-radius: 0;
  background: #000;
  color: #fff;
  font-size: 14px;
}

.was-search-container {
  position: relative;
}

.was-search-inner {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 13px;
  border-radius: 8px;
  max-height: 500px;
  overflow-y: scroll;
  display: none;
  z-index: 1000;
}

.was-search-inner::-webkit-scrollbar {
  width: 3px;
}

.was-search-inner::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.was-search-inner::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
}

.was-search-inner::-webkit-scrollbar-thumb:hover {
  background: #d9d9d9;
}

.was-top-categories {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.was-single-cat {
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  padding: 5px 10px 5px 5px;
}

.was_cat_img {
  width: 24px !important;
  height: 24px !important;
  object-fit: cover;
  border-radius: 50% !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.was_fire {
  width: 12px !important;
  height: 12px !important;
  object-fit: contain;
}

.was-single-cat a {
  font-size: 12px !important;
  font-weight: 400;
  color: #000 !important ;
  display: block !important ;
  text-decoration: none !important ;
  white-space: nowrap;
  line-height: 1.5em !important ;
}

.was_result_label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5em;
  margin-bottom: 10px;
  display: block;
  padding-top: 10px !important;
  width: 100%;
}

.was_single_result {
  color: #000 !important;
  font-weight: 400;
  transition: all 0.2s ease;
  border-radius: 5px;
  display: block;
  padding: 5px;
  margin: 5px 0;
  font-size: 14px !important ;
}

.was_label {
  display: block;
  width: 100%;
  font-weight: 500;
  color: #000;
  margin-bottom: 5px;
  font-size: 14px;
}

.was_single_result i {
  font-size: 11px;
}

.was_single_result:hover {
  background: rgba(0, 0, 0, 0.05) !important ;
}

.was-no-result {
  display: block;
  padding: 10px 0 0;
  font-size: 14px;
  color: #7a7a7a;
  font-weight: 500;
}

.wasloader {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
  display: block;
  margin: 20px auto 5px;
}

.wasloader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 2px solid #000;
  animation: prixClipFix 2s linear infinite;
}

.was_close{
	position: absolute ;
	right: 90px ;
	top: 50% ;
	transform: translateY(-50%) ;
	font-size: 15px ;
	cursor: pointer ;
	color: #000 ;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}

@media(max-width: 767px){
	.was-search-inner {
		box-shadow: 0 0 0px rgba(0, 0, 0, 0.1);
		display: block !important;
	}
	
	.was_close{
		display: none !important ;
	}
}
