.search_form_container {
    margin-bottom: 5px;
}

#search_input {
    width: 100%;

}
#search_form {
    position: relative;
    width: 100%;
    padding: 0;
    top: 10px;
}

#search_form>div{
    padding: 0;
}

#search_form .search_btn {
    position: absolute;
    background-color: transparent;
    border: none;
    right: 0;
    top: 3px;
}
#search_form .search_table {
    width: 100%;
}
#search_form .search_table td {
    height: 20px;
}

#search_results {
    display: none;
    position: absolute;
    width: 100%;
    z-index: 10000;
    background: white;

    top: 35px;
    border: 1px solid #bebebe;
    box-shadow: 2px 2px 5px rgba(91, 91, 91, 0.7);

    height: 200px;
    overflow: scroll;

}

#search_results ul {
    width: 100%;
}

#search_results a {
    display: inline-block;
    padding: 7px 15px;
    width: 100%;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    /*font-size: 0.8em;*/
    /*line-height: 1em;*/
}

#search_results a:hover {
    background-color: rgba(184, 184, 184, 0.13);
    border-top: 1px dotted grey;
    border-bottom: 1px dotted grey;
    color: black;
}

