.awesomplete mark {
  color: #fff;
  background-color: #000;
}
.awesomplete ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(38, 38, 38, 0.7);
}
.awesomplete ::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(38, 38, 38, 0.7);
}
.awesomplete :-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(38, 38, 38, 0.7);
}
.awesomplete :-moz-placeholder {
  /* Firefox 18- */
  color: rgba(38, 38, 38, 0.7);
}

.dvz-autocomplete {
  display: inline-block;
  max-width: 320px;
  width: 100%;
  padding: 7px 0;
}
.dvz-autocomplete .awesomplete {
  max-width: 320px;
  width: 100%;
}
.dvz-autocomplete input {
  font-family: "BWHaasDingbat", "Publico Text Web", "TiemposText-Regular", "Georgia", serif;
  width: 100%;
  border: 1px solid rgba(38, 38, 38, 0);
  padding: 4px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.125rem;
  background-color: rgba(255, 255, 255, 0);
  color: #000;
}
.dvz-autocomplete input:focus {
  border: 1px solid rgba(38, 38, 38, 0.9);
  background-color: white;
  outline: none;
}

.awesomplete [hidden] {
  display: none;
}

.awesomplete .visually-hidden {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

.awesomplete {
  display: inline-block;
  position: relative;
}

.awesomplete > input {
  display: block;
  margin-left: 0px;
}

.awesomplete > ul {
  position: absolute;
  left: 0;
  z-index: 1;
  min-width: 100%;
  box-sizing: border-box;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
}

.awesomplete > ul:empty {
  display: none;
}

.awesomplete > input:focus {
  outline: 1px solid #767676;
}

.awesomplete > ul {
  border-radius: .1em;
  margin: .2em 0 0;
  background: hsla(0,0%,100%,.9);
  background: linear-gradient(to bottom right, white, hsla(0,0%,100%,.8));
  border: 1px solid rgba(0,0,0,.3);
  box-shadow: .05em .2em .6em rgba(0,0,0,.2);
  text-shadow: none;
}

@supports (transform: scale(0)) {
  .awesomplete > ul {
    transition: .3s cubic-bezier(.4,.2,.5,1.4);
    transform-origin: 1.43em -.43em;
  }

  .awesomplete > ul[hidden],
  .awesomplete > ul:empty {
    opacity: 0;
    transform: scale(0);
    display: block;
    transition-timing-function: ease;
  }
}

/* Pointer */
.awesomplete > ul:before {
  content: "";
  position: absolute;
  top: -.43em;
  left: 1em;
  width: 0; height: 0;
  padding: .4em;
  background: white;
  border: inherit;
  border-right: 0;
  border-bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.awesomplete > ul > li {
  position: relative;
  padding: .3em .5em;
  cursor: pointer;
  font-size: remify(16px);
  line-height: remify(18px);
}

.awesomplete > ul > li:hover {
  background: #dcdcdc;
  color: black;
}

.awesomplete > ul > li[aria-selected="true"] {
  background: #dcdcdc;
  color: #262626;
}

.awesomplete mark {
  background: #dcdcdc;
}

.awesomplete li:hover mark {
  background: #dcdcdc;
}

.awesomplete li[aria-selected="true"] mark {
  background: hsl(86, 100%, 21%);
  color: inherit;
}

@media(max-width: 760px){
  .dvz-autocomplete {
    display: inline-block;
    /*max-width: calc(100% - 44px);*/
    width: 100%;
    padding: 7px 0;
  }
  .dvz-autocomplete .awesomplete {
    max-width: calc(100% - 44px);
    width: 100%;
  }
} 
