 /*
*
* ==========================================
* CUSTOM UTIL CLASSES
* ==========================================
*
*/
/* Horizontal line */
.collapsible-link::before {
    content: '';
    width: 14px;
    height: 2px;
    background: #333;
    position: absolute;
    top: calc(50% - 1px);
    right: 1rem;
    display: block;
    transition: all 0.3s;
  }
  
  /* Vertical line */
  .collapsible-link::after {
    content: '';
    width: 2px;
    height: 14px;
    background: #333;
    position: absolute;
    top: calc(50% - 7px);
    right: calc(1rem + 6px);
    display: block;
    transition: all 0.3s;
  }
  
  .collapsible-link[aria-expanded='true']::after {
    transform: rotate(90deg) translateX(-1px);
  }
  
  .collapsible-link[aria-expanded='true']::before {
    transform: rotate(180deg);
  }

  .panel-collapse{
    padding: 10px 20px;
  }

.panel-default > .panel-heading {
    background-color: var(--portalThemeColor11) !important;
}
  
  
  /*
  *
  * ==========================================
  * 
  * ==========================================
  *
  */
  .FAQBackgroud {
    background: #135271;
    background: -webkit-linear-gradient(to left, #135271, #487A7B);
    background: linear-gradient(to left, #135271, #487A7B);
    min-height: 100vh;
  }


  /****FAQ CSS**********/

  details {
    border-bottom: 1px solid;
    max-width: 924px;
  }
  summary {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
    /* text-body200 */
    font-size: 20px;
    line-height: 28px;
  }
  summary > h5::before {
    content: "+";
  }
  [open] summary > h5::before {
    content: "–";
  }
  summary::-webkit-details-marker {
    display: none;
  }
  .buttonAC {
    border: 1px solid;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
    min-height: 32px;
    min-width: 40px;
    transition-property: color, background-color, border-color,
      text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.3s;
    /* rounded-xxl */
    border-radius: var(--radius-xxl, var(--spacing-40, 40px));
    /* px-small-s4 */
    padding-left: var(--small-s4, var(--spacing-16, 16px));
    padding-right: var(--small-s4, var(--spacing-16, 16px));
    /* py-small-s2 */
    padding-top: var(--small-s2, var(--spacing-8, 8px));
    padding-bottom: var(--small-s2, var(--spacing-8, 8px));
    /* bg-surface-primary */
    --tw-bg-opacity: 1;
    background-color: rgba(
      var(--colors-surface-primary),
      var(--tw-bg-opacity)
    );
    /* .text-text-primary */
    --tw-text-opacity: 1;
    color: rgba(var(--colors-text-primary), var(--tw-text-opacity));
    /* text-body25 */
    font-size: 12px;
    line-height: 16px;
  }
  .buttonAC:active {
    /* bg-surface-tertiary */
    --tw-bg-opacity: 1;
    background-color: rgba(
      var(--colors-surface-tertiary),
      var(--tw-bg-opacity)
    );
  }
  .buttonAC:hover {
    /* bg-surface-neutralLight */
    --tw-bg-opacity: 1;
    background-color: rgba(
      var(--colors-surface-neutralLight),
      var(--tw-bg-opacity)
    );
  }
  .buttonAC:not(:last-child) {
    margin-right: 12px;
  }
  .buttonAC.selected {
    --tw-bg-opacity: 1;
    background-color: #000000;
    --tw-text-opacity: 1;
    color: #ffffff;
  }
  .buttonAC.selected:active {
    /* bg-surface-neutralDark */
    --tw-bg-opacity: 1;
    background-color: rgba(
      var(--colors-surface-neutralDark),
      var(--tw-bg-opacity)
    );
  }
  .buttonAC.selected:hover {
    /* bg-surface-invertTertiary */
    --tw-bg-opacity: 1;
    opacity: 60%;
  }
  .tabs {
    display: flex;
  }
  .accordion {
    display: none;
  }
  .accordion-item-question {
    margin: 0;
  }
  .accordion-item-answer {
    margin: 0 0 24px;
  }
  .accordion-item-toggle {
    margin: 0;
    /* font-normal */
    font-weight: 400;
    /* text-h5 */
    font-size: 24px;
    line-height: 28px;
  }
  