﻿/**********Typeahead Class*************/
/*@font-face {
    font-family: 'Roboto Slab';
    src: url('/fonts/RobotoSlab.eot');
    src: local('☺'), url('/fonts/RobotoSlab.woff') format('woff'), url('/fonts/RobotoSlab.ttf') format('truetype'), url('/fonts/RobotoSlab.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}*/
.tt-menu {
    width: 300px;
    margin: 5px -44px;
    padding: 2px 0px;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
    left: 15px !important;
    font-family: 'Roboto Slab', serif;
}

.tt-suggestion {
    padding: 3px 20px;
    font-size: 14px;
    line-height: 24px;
}

    .tt-suggestion:hover {
        cursor: pointer;
        color: #fff;
        background-color: var(--primary);
    }
    .tt-suggestion:hover .item-description .fas,
    .tt-suggestion:hover .item-description i {
        color: var(--white) !important;
    }
    .tt-suggestion .item-description .fas {
        color: #e25111;
    }
    .tt-suggestion .item-description i {
        font-size: 0.7rem;
    }

    .tt-suggestion.tt-cursor {
        color: var(--white);
        background-color: var(--primary);
    }

    .tt-suggestion p {
        margin: 0;
    }

#scrollable-dropdown-menu .tt-menu {
    max-height: 300px;
    overflow-y: auto;
}
#table .tt-menu, #QRtableId .tt-menu {
    max-height: 150px !important;
    overflow-y: auto !important;
    border-radius: 10px;
}


.empty-message {
    padding: 5px 10px;
    text-align: center;
}

/**********Typeahead FlexWrap Disable*************/

.disable-flex-wrap {
    flex-wrap: nowrap !important;
}

/**********Mobile Search Typeahead*************/
.mobile-search-btn {
    padding: 0.30rem 0.5rem !important;
    background: none !important;
}

.search {
    position: relative;
}
    .search input {
        text-indent: 30px;
    }
    .search .fa-search {
        position: absolute;
        top: 18px;
        left: 22px;
        font-size: 15px;
    }

@media only screen and (max-width: 767px) {
    .twitter-typeahead {
        width: 100%;
    }

    .tt-menu {
        width: 100%;
        margin: 5px -15px;
        padding: 2px 0px;
        background-color: #fff;
        border: 1px solid #ccc;
        border: 1px solid rgba(0, 0, 0, 0.2);
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        border-radius: 8px;
        -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
        -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
        box-shadow: 0 5px 10px rgba(0,0,0,.2);
        left: 0px !important;
        font-family: 'Roboto Slab', serif;
    }
}