.zipcode-suggestion {
  list-style: none;
  position: absolute;
  display: block;
  min-width: 100%;
  padding-left: 0;
  padding-right: 30px;
  z-index: 500; }
  .zipcode-suggestion li {
    position: relative;
    display: block;
    padding: 5px;
    border: 1px solid #dcdcdc;
    background: #ececec;
    min-width: 100%;
    cursor: pointer;
    z-index: 1500; }
    .zipcode-suggestion li:hover {
      background: white; }

.zipcode-circle {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: grey;
  border-radius: 50%;
  margin-right: 15px;
  animation-name: circular;
  animation-duration: .5s;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
  animation-timing-function: ease-in-out; }
  .zipcode-circle.zipcode-left {
    margin-left: 42%; }
  .zipcode-circle.zipcode-middle {
    animation-delay: .3s; }
  .zipcode-circle.zipcode-right {
    animation-delay: .6s; }

@keyframes circular {
  from {
    transform: scale(1); }
  to {
    transform: scale(1.5); } }
