<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.custom-faq-widget {
  width: 100%;
  height: fit-content;

  .questions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0px;

    .question-block {
      display: flex;
      flex-direction: column;
      padding-block: 16px;
      border-bottom: 1px solid #9e9e9e;
      transition: 0.3s ease-in-out;

      .question-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
        cursor: pointer;
        transition: 0.3s ease-in-out;

        .drop_title {
          font-size: 20px;
          font-weight: 500;
          font-family: "Open Sans", sans-serif;
          line-height: 1.1;
          color: hsla(0, 0%, 0%, 1);
          transition: 0.3s ease-in-out;
          @media (max-width: 1440px) {
            font-size: 18px;
          }
          @media (max-width: 1280px) {
            font-size: 16px;
          }
        }

        .faq-icon-wrapper {
          width: 35px;
          height: 35px;
          transition: 0.3s ease-in-out;

          @media (max-width: 1440px) {
            width: 30px;
            height: 30px;
          }
          @media (max-width: 1280px) {
            width: 25px;
            height: 25px;
          }

          svg {
            width: 100%;
            height: 100%;
            object-fit: contain;
          }
        }
      }

      .question-body {
        overflow: hidden;
        height: 0; /* Start collapsed */
        width: 100%;
        /* padding-block: 0 16px; */
        color: hsla(0, 0%, 0%, 1);
        font-size: 16px;
        font-weight: 300;
        font-family: "Open Sans", sans-serif;
        transition: 0.3s ease-in-out;
        @media (max-width: 1440px) {
          font-size: 16px;
        }
      }

      .active-question-body {
        width: 100% !important;
        max-height: fit-content !important;
        padding-block: 16px 0px !important;
      }
    }
  }
}

/* Side Block Mobile--------------------------------------------------- */
</pre></body></html>