/* BEGIN WORDLIFT */

#wordlift-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 55px 0;
  gap: 8px;
  border-top: 1px solid #C8CFE6;
  border-bottom: 1px solid #C8CFE6;
  margin-left: 16px;
  margin-right: 16px;
  max-width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
}

.wordlift-element {
  border: 1px solid #575D9B;
  border-radius: 4px;
  padding: 10px;
  min-width: 165px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
}

#faq-plp {
  transition: all .5s ease;
  padding: 20px 0;
}

#faq-plp h9 {

  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
  color: #222222;
  padding: 17px;
}

#faq-plp h8 {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  padding: 17px;
}

#faq-plp p {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #222222;
  margin-left: 15px;
}

#faq-plp #contact-us {
  margin-left: 17px;
  margin-top: 10px;
}

#faq-plp .accordion {
  background-color: #fff;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;

}

#faq-plp .accordion.qa-title{
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #222222;
  margin-top: -9px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  border-bottom: 1px solid #E5EBFE;
}

#faq-plp button.accordion .plus-minus-icon::after {
  content: '\002B';
  color: #575D9B;
  font-size: 24px;
  font-weight: bold;
  float: right;
  margin-left: 5px;
  text-align: right;
  letter-spacing: 0.5px;
}

#faq-plp button.accordion.active .plus-minus-icon::after {
  content: "\2212";
}

#faq-plp button.accordion .plus-minus-icon {
  aria-hidden: true;
}

#faq-plp button.accordion.qa-title.active {
  border-bottom: none !important;
}

#faq-plp .panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  transition: max-height 0.2s ease-out;
  overflow: hidden;
  margin-bottom: 8px;
}
/*END WORDLIFT */