<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.background_color {
    background-color: #547BB9!important;
  } 

  .accordion {
    cursor: pointer;
    transition: 0.4s;
    width: 100%;
    text-align: left;
  }

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  .chevron_down::after {
    font-family: "Font Awesome 5 Free";
    content: '\f078';
    font-weight: bold;
  }
  
  .chevron_up::after {
    font-family: "Font Awesome 5 Free";
    content: '\f077';
    font-weight: bold;
  }


  @media screen and (min-width: 1000px) {
    .left_panel {
      width: 60%;
    }
    .right_panel {
      width:40%;
    }
  }
  
  @media screen and (max-width: 1000px) {
    .left_panel {
      width: 100%;
    }
    .right_panel {
      width: 100%;
    }
  }
  </pre></body></html>