﻿.typeahead {
    position: relative;
}

    .typeahead .form-control {
        position: relative;
    }

    .typeahead.loading .form-control {
        padding-right: calc(2.4375rem + 2px);
    }

    .typeahead > .spinner {
        display: none;
        align-items: center;
        justify-content: center;
        right: 0;
        left: auto;
    }

        .typeahead > .spinner.active {
            display: flex;
        }

.typeahead-drop {
    position: absolute;
    display: none;
    inset-inline: 0;
    top: 100%;
    margin-top: -1px;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    /*min-height: 50px;*/
    border: 1px solid #ced4da;
    box-shadow: 0 10px 40px -4px rgba(26, 33, 75, 0.14), 0 12px 28px -12px rgba(0,0,0, 0.2);
    background-color: #fff;
    z-index: 1100;
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
}

    .typeahead-drop.open {
        display: block;
        clip-path: inset(0 -50px -50px -50px);
    }

.typeahead-drop-body {
    position: relative;
}

.typeahead-item {
    padding: 0.375rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

    .typeahead-item:hover {
        cursor: pointer;
        background-color: #f8f9fa;
        font-weight: 600;
    }

    .typeahead-item .highlight {
        font-weight: bold;
        text-decoration: underline;
    }
