#searchSidebar,
#searchSidebar ul,
#searchSidebar ul li,
#searchSidebar ul li a {
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#searchSidebar ul ul {
  display: none;
}
#searchSidebar > ul > li > a {
  padding: 16px 22px;
  cursor: pointer;
  z-index: 2;
  font-size: 16px;
  text-decoration: none;
  color: #ffffff;
  background: #a3c56d;
  -webkit-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
#searchSidebar > ul > li > a:hover {
  color: #d8f3f0;
}
#searchSidebar ul > li.has-sub > a:after {
    position: absolute;
    top: 15px;
    right: 22px;
    display: block;
    width: auto;
    height: auto;
    content: "\f105";
    font-size: 20px;
    font-weight: 400;
    font-family: "Font Awesome 5 Pro";
    -webkit-transition: all 0.1s ease-out;
    -moz-transition: all 0.1s ease-out;
    -ms-transition: all 0.1s ease-out;
    -o-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
}
#searchSidebar ul > li.has-sub.open > a:after {
    content: "";
}
#searchSidebar ul > li.has-sub.open > a:before {
	position: absolute;
	top: 15px;
    right: 22px;
    display: block;
    width: auto;
    height: auto;
    content: "\f107";
    font-size: 20px;
    font-weight: 400;
    font-family: "Font Awesome 5 Pro";
    -webkit-transition: all 0.1s ease-out;
    -moz-transition: all 0.1s ease-out;
    -ms-transition: all 0.1s ease-out;
    -o-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
}