/* Smartbar */
.smartBar {
  position: relative;
  border-radius: 5px;
  border: 1px solid var(--color-green);
  cursor: text;
  text-align: left;
}
#ic-searchform.qsViewBlue .smartBar {
  border: 1px solid var(--color-beige);
}
.smartBar .confirmed:empty {
  display: none;
}
.smartBar .confirmed {
  display: inline-block;
  position: absolute;
  top: 5rem;
  margin: 3px 3px 0;
  width: 50rem;
}
.smartBar .confirmed .id {
  display: none;
}
.smartBar .confirmed .item {
  display: inline-block;
  height: auto;
  line-height: 28px;
  background: var(--color-green);
  padding: 0px 8px;
  margin: 1px;
  color: var(--color-beige);
  font-size: 1.5rem;
  font-weight: 600;
  width: max-content;
}
.smartBar .confirmed .item .name {
  display: inline-block;
  vertical-align: middle;
}
.smartBar .confirmed .item .remove {
  position: relative;
  width: 14px;
  height: 14px;
  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: var(--color-marineblue);
  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;
  width: 100% !important;
  height: 46px;
  line-height: 46px;
  font-family: "Lato", sans-serif;
  margin: 0;
  border: 0;
  padding: 0 23px 0 10px;
  box-shadow: none;
  background-color: transparent;
  color: var(--color-green);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-align: left;
}

#ic-searchform.qsViewBlue .smartBar input.smartAreaSearch {
  color: var(--color-beige);
}
.smartBar .popup {
  display: none;
  position: absolute;
  z-index: 101;
  width: 100%;
  max-height: 240px;
  top: 42px;
  left: 0;
  right: auto;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  list-style: none;
  border: 1px solid #fbfbfb;
  border-width: 6px 0;
  border-radius: 4px;
}
.smartBar .popup > li {
  display: none;
  color: var(--color-marineblue);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.6px;
  cursor: pointer;
  padding: 10px 30px 10px 12px;
  transition: all 0.3s ease-in;
}
.smartBar .popup.visible,
.smartBar .popup > li.visible {
  display: block;
}
.smartBar .popup > li:hover,
.smartBar .popup > li.active {
  color: var(--color-beige);
  background: var(--color-green);
}
.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: 1200px) {
  .smartBar .confirmed {
    top: -5rem;
    margin: 3px 0px 0;
  }
}
