#wpsf .collapsible {
  /* cursor: pointer; */
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  position: relative;
  background-color:transparent;
  cursor: auto;
  font-size: 18px;
  font-weight: 600;
  background-color: #f9f9f9 !important;
  padding: 10px 15px;
}
#wpsf .collapsible:before {
  display: inline-block;
  content: "\002B";
  margin-right: 10px;
  font-size: 25px;
  vertical-align: text-bottom;
  line-height: 1.3;
  float: right;
}
html #wpsf .wp-schema-faq-title {
  padding: 5px 6px 10px 0px;
  line-height: normal;
  margin: 0;
  border-left: 0px solid #0e7c2e;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 23px;
  line-height: 1.4;
  margin-left: 6px;
  position: relative;
}
html #wpsf .wp-schema-faq-title:before {
  content: " ";
  width: 50px;
  height: 4px;
  background-color: green;
  position: absolute;
  bottom: 0px;
}

#wpsf .open .collapsible:before {
  content: "\2212" !important;
}
#wpsf .collapsible:before {
    content: "\002B" !important;
}

#wpsf .content {
  display: none;
  padding: 0 15px;
  /*max-height: 0;*/
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
}

#wpsf .wpsf-entry
{
  border-image: initial;
  border-radius: 5px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  padding: 5px;
  margin-bottom: 5px;
}


#wpsf .wpsf-entry.open .content {
    display: block;
}