/*
 * easy-autocomplete
 * jQuery plugin for autocompletion
 * 
 * @author Łukasz Pawełczak (http://github.com/pawelczak)
 * @version 1.3.5
 * Copyright  License: 
 */

.easy-autocomplete {
    position: relative;
    width: 100%;
}

    .easy-autocomplete a {
        display: block;
    }

.input:focus {
    border-radius: 0;
}

.easy-autocomplete-container {
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 20;
}

    .easy-autocomplete-container ul {
        background: #fff;
        display: none;
        margin-top: 0;
        padding-bottom: 0;
        padding-left: 0;
        position: relative;
        top: -5px;
        width: calc(100% + 40px);
        max-width: 630px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        max-height: 400px;
        overflow: auto;
    }

        .easy-autocomplete-container ul li, .easy-autocomplete-container ul .eac-category {
            background: inherit;
            border-color: #fafafa;
            border-image: none;
            border-style: solid;
            border-width: 0 1px;
            display: block;
            font-size: 14px;
            font-weight: normal;
        }

            .easy-autocomplete-container ul li:last-child {
                border-radius: 0 0 2px 2px;
                border-width: 0 1px 1px;
            }

            .easy-autocomplete-container ul li.selected {
                color: var(--primary);
                background: none repeat scroll 0 0 #fafafa;
                cursor: pointer;
            }

                .easy-autocomplete-container ul li.selected div {
                    font-weight: normal;
                }

            .easy-autocomplete-container ul li div {
                display: flex;
                font-weight: normal;
                padding: 6px;
            }

            .easy-autocomplete-container ul li .eac-item img {
                max-height: 30px !important;
                padding-right: 5px;
            }

.eac-item .border-top {
    border-top: 1px solid #dee2e6 !important;
    width: 100%;
    height: 1px !important;
    font-size: 0px !important;
    padding: 0px !important;
}

/*# sourceMappingURL=easy-autocomplete.css.map */
