﻿.autocomplete-wrapper {
    position: relative;
    width: 250px;
}

.suggestions-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    background: white;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    width: 98.6%;
    display: none;
}

    .suggestions-list li {
        padding: 8px;
        cursor: pointer;
    }

        .suggestions-list li:hover {
            background: #f0f0f0;
        }

.loadInput {
    background-image: url('/images/loader.svg');
    position: absolute;
    background-size: 30px;
    width: 30px;
    height: 30px;
    top: 3px;
    display: none;
    left: 50%;
    transform: translateX(-50%);
}
/*

html[lang=ar] .loadInput, html[dir=rtl] .loadInput {
    left: 20px;
}

html[lang=en] .loadInput, html[dir=ltr] .loadInput {
    right: 20px;
}*/
