/*
 |--------------------------------------------------------------------------
 | Helper mixins, feel free to add/remove any that you might not use
 | Won't be rendered in the output if not used
 |--------------------------------------------------------------------------
 */
.paragraph--type--faq {
  margin: 1rem 0; }
  .paragraph--type--faq.open .question-wrapper {
    color: #4D9FC9; }
  .paragraph--type--faq.open .faq-status:after {
    transform: rotate(90deg); }
  .paragraph--type--faq .question-wrapper {
    background-color: #f8f9fa;
    font-weight: 600;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s all linear;
    cursor: pointer; }
  .paragraph--type--faq .faq-status {
    width: 25px;
    height: 25px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px; }
    .paragraph--type--faq .faq-status:before {
      content: "";
      position: absolute;
      width: 15px;
      height: 3px;
      background-color: #4D9FC9;
      transition: 0.2s all linear; }
    .paragraph--type--faq .faq-status:after {
      content: "";
      position: absolute;
      width: 3px;
      height: 15px;
      background-color: #4D9FC9;
      transition: 0.15s all ease-in-out; }
  .paragraph--type--faq .field--name-field-question {
    line-height: 1.4;
    margin-bottom: 0 !important;
    font-size: 1.2rem; }
  .paragraph--type--faq .field--name-field-answer {
    padding: 0.5rem 1rem;
    background-color: white;
    display: none; }

