/* Dropdown Button */
.dropbtn {
    background-color: #ffffff;
    color: #444;
    /* padding: 5px; */
    font-size: 14px;
    border: none;
    cursor: pointer;
    /* border: 1px solid #cfcfcf; */
    line-height: 16px;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  /* background-color: #3e8e41; */
}

/* The search field */
#myInput {
    box-sizing: border-box;
    background-image: url(../images/new/search.svg);
    background-position: 9px 6px;
    background-repeat: no-repeat;
    background-size: 12px;
    font-size: 13px;
    padding: 5px 5px 5px 30px;
    border: none;
    border-bottom: 1px solid #ddd;
    width: 100%;
}

/* The search field when it gets focus/clicked on */
#myInput:focus {outline: 0px 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: #f6f6f6;
  min-width: 230px;
  border: 1px solid #ddd;
  z-index: 1;
  max-height: 250px;
  overflow: auto;
}

/* Links inside the dropdown */
.dropdown-content a {
      color: black;
    padding: 5px;
    text-decoration: none;
    display: block;
    font-size: 13px;
}

/* Change color of dropdown links on hover */
.dropdown-content a: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;}

#dropdown-arrow{
	width: 10px;
    margin-left: 5px;
}