* {
  font-family: Poppins, sans-serif;
}
body, html {
  margin: 0;
  padding: 0;
}
.select-wrapper {
    margin: 20px 0;
    width: calc(100% - 40px);
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.select-pure__select {
  align-items: center;
  background: #f9f9f8;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  color: #363b3e;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  justify-content: left;
  min-height: 44px;
  padding: 5px 10px;
  position: relative;
  transition: 0.2s;
  min-width: 200px;
}
.select-pure__options {
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  color: #363b3e;
  display: none;
  left: 0;
  max-height: 221px;
  overflow-y: scroll;
  position: absolute;
  top: 50px;
  width: 100%;
  z-index: 5;
}
.select-pure__select--opened .select-pure__options {
  display: block;
}
.select-pure__option {
  background: #fff;
  border-bottom: 1px solid #e4e4e4;
  box-sizing: border-box;
  height: 44px;
  line-height: 25px;
  padding: 10px;
}
#engineFilter .select-pure__option,
#modelFilter .select-pure__option {
  font-size: 13px;
  line-height: 14px;
  height: 52px;
}
.select-pure__option--selected {
  color: #e4e4e4;
  cursor: initial;
  pointer-events: none;
}
.select-pure__option--hidden {
  display: none;
}
.select-pure__selected-label {
  background: #5e6264;
  border-radius: 4px;
  color: #fff;
  cursor: initial;
  display: inline-block;
  margin: 5px 10px 5px 0;
  padding: 3px 7px;
}
.select-pure__selected-label:last-of-type {
  margin-right: 0;
}
.select-pure__selected-label i {
  cursor: pointer;
  display: inline-block;
  margin-left: 7px;
}
.select-pure__selected-label i:hover {
  color: #e4e4e4;
}
.select-pure__autocomplete {
  background: #f9f9f8;
  border-bottom: 1px solid #e4e4e4;
  border-left: none;
  border-right: none;
  border-top: none;
  box-sizing: border-box;
  font-size: 16px;
  outline: none;
  padding: 10px;
  width: 100%;
}
.search-button {
  margin-left: 0px;
  border: none;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2px;
  padding: 11px 35px;
  border-radius: 5px;
  height: 40px;
  line-height: 18px;
  background: #434343;
  color: #fff;
}
.search-button.active {
  background: #ea1b25;
  cursor: pointer;
}

@media (max-width: 700px) {
  .select-pure__select {
    min-width: 300px;
  }
  #brandFilter {
    z-index: 40;
  }
  #modelFilter {
    z-index: 30;
  }
  #yearFilter {
    z-index: 20;
  }
  #engineFilter {
    z-index: 10;
  }
}
