/* Smartbar */
.smartBar {
  position: relative;
  cursor: text;
  text-align: left;
  width: 100%;
}
.smartBar .confirmed:empty {
  display: none;
}
.smartBar .confirmed {
  display: inline-block;
  position: absolute;
  top: -4.3rem;
}
.smartBar .confirmed .id {
  display: none;
}
.smartBar .confirmed .item {
  display: inline-block;
  height: auto;
  line-height: 2.8rem;
  background-color: var(--color-black);
  padding: 0 0.8rem;
  margin: 1px;
  color: #fff;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
}
.smartBar .confirmed .item .name {
  display: inline-block;
  vertical-align: middle;
}
.smartBar .confirmed .item .remove {
  position: relative;
  width: 1.4rem;
  height: 1.4rem;
  font-size: 0;
  margin-left: 6px;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
}
.smartBar .confirmed .item .remove::before,
.smartBar .confirmed .item .remove::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  transition: all 0.3s linear;
}
.smartBar .confirmed .item .remove:hover::before,
.smartBar .confirmed .item .remove:hover::after {
  background: #f60;
  transition: all 0.3s linear;
}
.smartBar .confirmed .item .remove::before {
  transform: rotate(45deg);
}
.smartBar .confirmed .item .remove::after {
  transform: rotate(-45deg);
}
.smartBar input.smartAreaSearch {
  border: none;
  outline: none;
  height: 4.6rem;
  line-height: 4.6rem;
  width: 100% !important;
  margin: 0;
  border: 0;
  box-shadow: none;
  background-color: transparent;
  color: #686668;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
}
.smartBar .popup {
  display: none;
  position: absolute;
  z-index: 101;
  width: 100%;
  max-height: 32rem;
  top: 5.8rem;
  left: 0;
  right: auto;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  list-style: none;
  border-width: 6px 0;
  border-radius: 0px 0px 3px 3px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.smartBar .popup > li {
  display: none;
  cursor: pointer;
  padding: 0.7rem 3rem 0.7rem 1rem;
  transition: all 0.3s ease-in;
  color: #686668;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.smartBar .popup.visible,
.smartBar .popup > li.visible {
  display: block;
}
.smartBar .popup > li:hover,
.smartBar .popup > li.active {
  color: var(--color-black);
  background: var(--color-beige);
}
.smartBar .popup > li:before,
.smartBar .popup > li i {
  display: none;
}

.smartBar .popup > div.active:hover {
  background: rgba(158, 125, 102, 0.88);
  color: #fff;
}

.smartBar .popup i {
  color: #a2a2a2;
  font-size: 0.9em;
}
@media only screen and (max-width: 1000px) {
  .smartBar input.smartAreaSearch {
    background-color: #fff;
    width: 100% !important;
  }
  .ic-QSitem.bedroom {
    width: 100%;
  }
}
