.filter-container-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 32px auto 16px auto;
  padding-left: 10%;
  padding-right: 10%;
  box-sizing: border-box;

  -ms-overflow-style: none;
  scrollbar-width: none;

  -webkit-overflow-scrolling: touch;
}

.filter-container-wrapper::-webkit-scrollbar {
  display: none;
}

.filter-container {
  display: flex;
  gap: 16px;
  min-width: max-content;
}

.dropdown-filter {
  display: flex;
  width: 264px;
  padding: 10px 16px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;

  border-radius: 24px;
  border: 2px solid #1b6585;

  color: #49454f;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url('data:image/svg+xml;utf8,<svg fill="%231b6585" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.no-results {
  display: none;
  flex-direction: column;
  align-items: center;
  margin: 60px auto;
  align-items: center;
  justify-content: center;
}

.no-results-image {
  width: 174px;
  height: 174px;
}

.no-results-message-box {
  border-radius: 12px;
  background: #ffdad6;
  display: flex;
  padding: 9px 110px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 60px;
}

.no-results-message-text {
  color: #3b0907;
  text-align: center;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (max-width: 991px) {
  .no-results-message-text {
    font-size: 16px;
  }

  .no-results-message-box {
    padding: 9px 110px;
  }
}
