.products-search-header {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 10px;
}
.products-search-header .text {
  color: var(--primary-Color);
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.products-search-header .clear {
  display: flex;
  align-items: center;
  color: var(--secondary-Color);
}
.products-search-header .clear:hover {
  cursor: pointer;
  color: var(--primary-Color);
}

.no-content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.no-content-wrapper h4 {
  margin-top: 20px;
  color: var(--primary-Color) !important;
}