.bs-example {
    position: relative;
    margin: 100px;
}
.twitter-typeahead{width: 100%;}
.typeahead, .tt-query, .tt-hint {
    /*border: 2px solid #CCCCCC;*/
    border-radius: 8px;
    /*font-size: 13px;  Set input font size */
    height: 48px;
    line-height: 48px;
    outline: medium none;
}
.typeahead {
    background-color: #FFFFFF;
}
.typeahead:focus {
    /*border: 2px solid rgb(237, 171, 12);*/
}
.tt-query {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
}
.tt-hint {
    color: #999;
    top: 0px !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: 0px;
    padding: 0px 0;
    width: 100%;
    max-height: 290px;
    overflow: auto;
}
.tt-suggestion {
    padding: 5px 20px;
    border-bottom: 1px solid #ddd;
    color: #222;
}
.tt-suggestion:hover, .tt-suggestion:focus, .tt-suggestion:active {
    cursor: pointer;
    background-color: #003980;
    color: #FFFFFF;
}
.tt-cursor{
    background-color: #003980;
    color: #FFFFFF;
}
.tt-suggestion p {
    margin: 0;
    color: #222;
}
@media screen and (max-width: 700px){
    .typeahead, .tt-query, .tt-hint {
        height: 44px;
        line-height: 44px;
    }
    .tt-hint {
        top: 0px !important;
    }
    .searchBlock .btn{
        margin-top: -5px;
    }
}