.pwaa-wrap {
  display: block;
  position: relative;
}

.pwaa-list {
  background: #fff;
  border: 1px solid #c7c7c7;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  color: #1f2933;
  left: 0;
  list-style: none;
  margin: 4px 0 0;
  max-height: 280px;
  overflow-y: auto;
  padding: 4px 0;
  position: absolute;
  right: 0;
  top: 100%;
  width: 100%;
  z-index: 10020;
}

.pwaa-list[hidden] {
  display: none;
}

.pwaa-option {
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  padding: 10px 12px;
  text-align: left;
}

.pwaa-option:hover,
.pwaa-option--active,
.pwaa-option[aria-selected="true"] {
  background: #eef5fb;
  color: #111827;
}

.pwaa-status {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.pwaa-status--visible {
  clip: auto;
  clip-path: none;
  color: inherit;
  font-size: 12px;
  height: auto;
  margin-top: 4px;
  opacity: 0.82;
  overflow: visible;
  position: static;
  white-space: normal;
  width: auto;
}

.pwaa-attribution {
  color: inherit;
  font-size: 10px;
  line-height: 1.4;
  margin-top: 3px;
  opacity: 0.72;
  text-align: right;
}

.pwaa-attribution a {
  color: inherit;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .pwaa-list {
    max-height: 220px;
  }

  .pwaa-option {
    font-size: 16px;
    padding: 12px;
  }
}

