@font-face {
  font-family: "Hind Madurai";
  font-style: normal;
  font-weight: 400;
  src: url("https://cdn5.onboard.org/assets/hotel-quelle/fonts/hind-madurai-400.woff2");
}

body {
  margin: 0;
  padding: 0;
  font-family: "Hind Madurai", Arial, sans-serif;
}

.wrapper {
  width: 100%;
}

.filter-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  font-size: 14px;
  color: rgb(96, 104, 111);
}

.filter-label {
  flex: 0 0 auto;
}

.filter-box {
  position: relative;
}

.filter-toggle {
  min-width: 190px;
  padding: 10px 40px 10px 16px;
  border-radius: 3px;
  border: 1px solid #d0d4d7;
  background-color: transparent;
  color: rgb(96, 104, 111);
  font: inherit;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.filter-toggle::after {
  content: "i";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #d0d4d7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #d0d4d7;
}

.filter-box.open .filter-toggle {
  background-color: #f8f8f8;
  border: 1px solid #d0d4d7;
  color: #373f47;
}

.filter-menu {
  list-style: none;
  margin: 4px 0 0;
  padding: 4px 0;
  position: absolute;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-radius: 3px;
  border: 1px solid #d0d4d7;
  max-height: 260px;
  overflow-y: auto;
  display: none;
  z-index: 20;
}

.filter-box.open .filter-menu {
  display: block;
}

.filter-menu li {
  padding: 8px 16px;
  cursor: pointer;
  color: #60686f;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.filter-menu li:hover {
  background-color: #f4f4f4;
  color: #373f47;
}

.filter-menu li.active {
  background-color: #f4f4f4;
  color: #373f47;
}

@media (width <= 576px) {
  .filter-label {
    display: none;
  }

  .filter-container {
    justify-content: center;
    flex-direction: column;
    gap: 8px;
  }
}