/**/
.csf-dropdown {
  position: relative;
}
#csf-category {
    width: 100%;
    outline: none;
    color: #505050;
    border-radius: 10px;
    margin-left: 10px;
    border: 1px solid #bebebe;
	font-size: 14px;
}

.csf-dropdown-selected {
    padding: 10px;
    cursor: pointer;
    border-radius: 6px;
}

.csf-dropdown-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 999;
}

.csf-dropdown-list.show {
  display: block;
}

.csf-dropdown-list li {
  padding: 10px;
  cursor: pointer;
}

.csf-dropdown-list li:hover {
  background: #f0f0f0;
}


/**/




.csf-search-box {
	margin-bottom: 20px;
	display: flex;
}
#csf-search {
	width: 100%;
    outline: none;
    border: 1px solid #bebebe;
    padding: 5px;
    border-radius: 10px;
	
	padding-left: 30px;
    background: url("/wp-content/plugins/custom-search-filter/assets/magnifier.png") no-repeat left center;
    background-size: 15px 15px;
    background-repeat: no-repeat;
    background-position-x: 7px;
}

/**/
/*#csf-category {
	width: 100%;
    outline: none;
    border: 1px solid #bebebe;
    border-radius: 10px;
    margin-left: 5px;
    padding: 0 10px;
    color: #a8a8a8;
}
#csf-category option {
	color: #505050;
    font-weight: bold;
}*/