/* Dropdown Button */
.dropbtn {
    background-color: #04AA6D;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: #3e8e41;
}

/* The search field */
#myInput {
    box-sizing: border-box;
    background-image: url('searchicon.png');
    background-position: 14px 12px;
    background-repeat: no-repeat;
    font-size: 16px;
    padding: 14px 20px 12px 45px;
    border: none;
    border-bottom: 1px solid #ddd;
}

/* The search field when it gets focus/clicked on */
#myInput:focus {outline: 3px solid #ddd;}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 230px;
    border: 0px solid #ddd;
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
#search .dropdown-content li:hover {
    background-color: #f1f1f1
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

#search {
    min-height: 34px;
}

#search .dropdown-content {
    width: 100%;
}

#search > span
{
    float: left;
    margin-right: 20px;
    line-height: 34px;
    color: #fff;
    font-weight: bold;
}

#search .btn-group {
    width: calc(100% - 66px);
}

#search .dropdown-toggle {
    padding: 0px;
    border: 0px;
    width: 100%;
}

#search input {
    border-radius: 4px;
}

#search .form-container {
    margin-bottom: 15px;
}

#search .dropdown-menu li a {
    line-height: 1.7;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

#search .open>.dropdown-menu {
    padding: 6px 12px;
    width: 100%;
    max-width: 100%;
}

#search .open>.dropdown-menu.empty {
    display: none;
}

#search .btn-search,
#search .btn-reset {
    background-color: #600;
    color: white;
    outline: none;
    border-radius: 4px;
    border: 1px solid;
    max-height: 34px;
}

#search .btn-reset {
    margin-left: 10px;
}