*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.accffw-autocomplete {
  position: relative;
  margin-bottom: 0.5em;
}
.accffw-autocomplete-items {
  position: relative;
  border: 1px solid #dedede;
  border-top: none;
  border-radius: 0px 0px 10px 10px;
  z-index: 9999;
  text-align: right;
  overflow-y: auto;
  max-height: 33vh;
}
.accffw-autocomplete-items div {
  padding: 4px 8px;
  cursor: pointer;
  font-size: 0.9em;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}

.accffw-autocomplete-items div:hover {
  background-color: #e9e9e9;
}

.accffw-autocomplete-active {
  background-color: DodgerBlue !important;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .accffw-autocomplete-items {
    max-height: 21vh;
  }
}
