.vue-simple-suggest.designed {
    position: relative;
}

.vue-simple-suggest.designed,
.vue-simple-suggest.designed * {
    box-sizing: border-box;
}

.vue-simple-suggest.designed .input-wrapper input {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #cde;
    border-radius: 3px;
    color: black;
    background: white;
    outline: none;
    transition: all 0.1s;
    transition-delay: 0.05s;
}

.vue-simple-suggest.designed.focus .input-wrapper input {
    border: 1px solid #aaa;
}

.vue-simple-suggest.designed .suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    top: calc(100% + 5px);
    border-radius: 3px;
    border: 1px solid #aaa;
    background-color: #fff;
    opacity: 1;
    z-index: 1000;
}

.vue-simple-suggest.designed .suggestions .suggest-item {
    cursor: pointer;
    user-select: none;
}

.vue-simple-suggest.designed .suggestions .suggest-item,
.vue-simple-suggest.designed .suggestions .misc-item {
    padding: 5px 10px;
}

.vue-simple-suggest.designed .suggestions .suggest-item.hover {
    background-color: #2874d5 !important;
    color: #fff !important;
}

.vue-simple-suggest.designed .suggestions .suggest-item.selected {
    background-color: #2832d5;
    color: #fff;
}

.product-search-form:before {
    transition: color 0.2s ease-in-out;
    position: absolute;
    top: 12px;
    left: 16px;
    z-index: 1;
    font-family: FontAwesome;
    font-size: 16px;
    content: "\f002";
    pointer-events: none;
}

.product-search-form input {
    text-indent: 30px;
}
