.pps-wrap {
    position: relative;
    width: 100%;
    max-width: 640px;
}

.pps-input {
    width: 100%;
    padding: 14px 48px 14px 44px;
    font-size: 16px;
    border: 1px solid #dadce0;
    border-radius: 999px;
    background: #fff;
    box-sizing: border-box;
    outline: none;
}

.pps-input:focus {
    border-color: #1a73e8;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

/* ICON */
.pps-field::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml;utf8,<svg fill='%239aa0a6' xmlns='http://www.w3.org/2000/svg'><path d='M10 2a8 8 0 105.293 14.293l4.707 4.707 1.414-1.414-4.707-4.707A8 8 0 0010 2z'/></svg>") no-repeat center;
}

/* CLEAR */
.pps-clear {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: none;
}

.pps-wrap.has-value .pps-clear {
    display: block;
}

/* DROPDOWN */
.pps-results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,.15);
    max-height: 350px;
    overflow-y: auto;
}

.pps-results li {
    padding: 12px 16px;
    cursor: pointer;
}

.pps-results li:hover {
    background: #f1f3f4;
}