﻿

#autocomplete-container {
    display: flex;
    /* position: absolute; */
    top: 10px;
    left: 10px;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02);
    background: #fff;
    border-radius: 12px;
    padding: 0 12px;
    /* max-width: 320px; */
    width: 100%;
    height: 42px;
    border: none;
    box-sizing: border-box;
    align-items: center;
    cursor: text;
    font-size: 15px;
}

    #autocomplete-container .search-icon, #autocomplete-container .clear-icon {
        color: inherit;
        flex-shrink: 0;
        height: 16px;
        width: 16px;
    }

    #autocomplete-container .clear-icon {
        transform: scale(1.3);
    }

#autocomplete-input {
    box-sizing: border-box;
    padding: 0;
    height: 40px;
    line-height: 24px;
    vertical-align: top;
    transition-property: color;
    transition-duration: 0.3s;
    width: 100%;
    text-overflow: ellipsis;
    background: transparent;
    border-radius: 0;
    border: 0;
    margin: 0 8px;
    outline: 0;
    overflow: visible;
    appearance: textfield;
    font-size: 100%;
}

.clear-searchButton {
    display: none;
    height: 18px;
    width: 22px;
    background: none;
    border: none;
    vertical-align: middle;
    pointer-events: all;
    cursor: pointer;
}

#suggestions-list {
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
    position: absolute;
    max-width: 320px;
    width: 100%;
    top: 26%;
    left: 18;
    z-index: 1;
    list-style: none;
    max-height: 80vh;
    margin: 5px 0 0;
    padding: 0;
    display: none;
    overflow-y: auto;
    background-color: #fff;
}

    #suggestions-list li {
        padding: 12px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        #suggestions-list li:hover {
            background-color: #f2f2f2;
        }

#app {
    height: 100%;
    font-size: 13px;
}

.bold {
    font-weight: 700;
}

.light {
    font-size: 12px;
    color: #3d5afe;
    font-weight: 600;
}

.prediction-expandable {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='9' viewBox='0 0 5 9'%3E%3Cg fill='%23737373'%3E%3Cpath d='M0.714285714,8.57142857 C0.5,8.57142857 0.357142857,8.5 0.214285714,8.35714286 C-0.0714285714,8.07142857 -0.0714285714,7.64285714 0.214285714,7.35714286 L3.78571429,3.78571429 C4.07142857,3.5 4.5,3.5 4.78571429,3.78571429 C5.07142857,4.07142857 5.07142857,4.5 4.78571429,4.78571429 L1.21428571,8.35714286 C1.07142857,8.5 0.928571429,8.57142857 0.714285714,8.57142857 L0.714285714,8.57142857 Z'/%3E%3Cpath d='M4.28571429,5 C4.07142857,5 3.92857143,4.92857143 3.78571429,4.78571429 L0.214285714,1.21428571 C-0.0714285714,0.928571429 -0.0714285714,0.5 0.214285714,0.214285714 C0.5,-0.0714285714 0.928571429,-0.0714285714 1.21428571,0.214285714 L4.78571429,3.78571429 C5.07142857,4.07142857 5.07142857,4.5 4.78571429,4.78571429 C4.64285714,4.92857143 4.5,5 4.28571429,5 L4.28571429,5 Z'/%3E%3C/g%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: right 5px center;
    padding-right: 18px;
}

#suggestions-list {
    font-size: 13px;
}
