.bs-example {
    position: relative;
    margin: 100px;
}
.twitter-typeahead {
    width: 78%;
}
.typeahead,
.tt-query,
.tt-hint {
    border: 2px solid #cccccc;
    border-radius: 4px;
    /*font-size: 13px;  Set input font size */
    height: 45px;
    line-height: 18px;
    outline: medium none;
    width: 100%;
}
.typeahead {
    background-color: #ffffff;
    text-indent: 10px;
}
.typeahead:focus {
    border: 2px solid #222222;
}
.tt-query {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
}
.tt-hint {
    color: #999999;
    top: -10px !important;
}
.tt-menu {
    background-color: #ffffff;
    /* border: 1px solid rgba(0, 0, 0, 0.2); */
    border-radius: 0px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    margin-top: 16px;
    padding: 0px 0;
    width: 500px;
    max-height: 290px;
    overflow: auto;
    display: block !important;
}
.tt-suggestion {
    font-size: 14px;
    padding: 5px 20px;
    border-bottom: 1px solid #ddd;
}
.tt-suggestion:hover,
.tt-suggestion:focus,
.tt-suggestion:active {
    cursor: pointer;
    background-color: #dfdfdf;
    color: #222222;
}
.tt-cursor {
    background-color: #dfdfdf;
    color: #222222;
}
.tt-suggestion p {
    margin: 0;
}
@media screen and (max-width: 700px) {
    .typeahead,
    .tt-query,
    .tt-hint {
        height: 44px;
        line-height: 44px;
    }
    .tt-hint {
        top: -14px !important;
    }
    .tt-highlight{
        word-break: break-all;
    }
    .tt-menu{
        width: 100%;
    }
}
