.fs_d, .ds_d {
    justify-content: center;
    position: relative;
    padding-top: 10px;
}

.fs_d1 {
    justify-content: center;
    position: relative;
}
.fs_d i, .fs_d1 i, ds_d i {
    position: absolute;
    left: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #888;
    z-index: 40;
    top: 50%;
}

.fs_s, ds_s {
    cursor: pointer;
    position: relative;
}

.fs_s::after, ds_s::after {
    content: "\f0dd";
    display: block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 1rem;
    right: 2rem;
}

.fs_s.plus::after {
    content: "\2b";
    display: block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 1rem;
    right: 2rem;
}

.fs_s1 {
    cursor: pointer;
    position: relative;
}
/* removed fs_i */
.ds_i::before {
    content: "\f002";
    display: block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 1.5rem;
    left: 1rem;
}

.fs_s1 input {
    cursor: pointer;
    outline: none;
    border: none;
    padding: .5rem .5rem .5rem 2rem;
}

.fs_s1 input::placeholder {
    transition: opacity .5s;
    opacity: var(--placeholder-opacity, 1);
}

.dropdown_search input {
	--placeholder-opacity: 1;
	width: 100%;
	height: 38px;
	padding-left: 1rem;
	font-size: 1rem;
}

.fs_c, .fs_c1, .ds_c {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 6px 6px;
    position: absolute;
    z-index: 99;
    background-color: rgb(255, 255, 255);
    width: 100%;
    display: none;
    max-height: 80vh;
    overflow-y: auto;
}

.fs_d.active .fs_c, .fs_d1.active .fs_c1, .ds_d.active .ds_c {
    display: block;
}

.fs_c ul, .fs_c1 ul, .results-container ul, .ds_c ul {
    list-style: none;
}

.results-container ul li {
    cursor: pointer;
    padding: 1rem;
}

.fs_c ul li, .ds_c ul li {
    cursor: pointer;
    padding: .5rem .5rem .5rem 1rem;
}

.fs_c1 ul li {
    cursor: pointer;
    padding: .5rem .5rem .5rem 1rem;
}

.fs_c1 ul li[class*="-group"] {
    cursor: pointer;
    padding-left: 3rem;
}
.fs_c1 i {
  top: 12px;
}

.fs_c ul li.hide, .fs_c1 ul li.hide, .results-container ul li.hide {
    display: none;
}

.fs_c ul li:hover, .fs_c1 ul .dropdown-item:hover, .ds_c ul li:hover, .ds_c ul li.active, 
.fs_c ul li.active, .fs_c1 ul .dropdown-item.active, .fs_c1 ul .dropdown-item.focused, .results-container .dropdown-item:hover {
    background-color: rgb(237, 237, 237);
}

.fs_c1 ul .dropdown-item .row, .fs_c1 ul .group, .results-container ul .group {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fs_c ul li.group, .fs_c1 ul li.group, .results-container ul li.group {
    font-weight: bold;
    cursor: default;
    border-bottom: 1px solid rgb(237, 237, 237);
}
.fs_c1 ul li.group {
    padding-left: 2.5rem;
}

.fs_c1 ul li .desc, .results-container ul li .desc {
    font-weight: 200;
    font-size: .875rem;
    text-wrap: none;
}

.results-container {
    padding: 1rem;
    border: 1px solid rgb(235, 235, 235);
    border-radius: 6px;
}

.results-container.no-pad {
    padding: 0;
}
.fs_i input {
    border-radius: 0px;
    border: none;
    border-bottom: 1px solid;
}

.dropdown-item[data-type="search"] {
  padding-left: 2rem;
  opacity: .5;
}

.highlight-match {
  opacity: 1;
  /* You can add more styles if you like, e.g., bold, color, background */
  /* Example: color: #000; background-color: #ff0; */
}

.dropdown-group .row i {
	left: 24px;
	top: 1rem;
	color: unset;
}

.dropdown-group {
	margin-left: 4px;
	pointer-events: none;
	opacity: .25;
	color: unset;
}

#search-bar span {
	padding-left: 2rem;
    pointer-events: none;
    position: absolute;
    z-index: 1;
    opacity: .5;
    left: 1px;
    top: calc(.25rem + 1px);
    letter-spacing: normal;
    word-spacing: 1px;
    line-height: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
}
#search-bar input {
text-shadow:
    -2px -2px 0 white,
    2px -2px 0 white,
    -2px 2px 0 white,
    2px 2px 0 white;
}

/* When in a modal give space */
.modal-wrapper .modal-content .fs_i input, .modal-wrapper .modal-content .ds_i input {
    padding-left: 3rem;
}

@media only screen and (max-width: 768px) {

}