/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    padding-left: 0px !important;
    position: relative;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.2s;
    background-color: transparent;
    border-top: 1px solid #f1f1f1;
    transition: all 0.3s;
  }
  
  .accordion:first-child {
    border-top: none !important;
  }
  
  .accordion:before {
    content: "+";
    font-size: 35px;
    color: #555;
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-49%);
    margin-left: 5px;
  }
  
  .active:before {
    transform: translateY(-51%);
    top: 50%;
    content: "-"; /* Unicode character for "minus" sign (-) */
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .accordion:hover {
    padding-left: 27px !important;
    transition: all 0.3s;
    background: rgb(255, 255, 255);
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(241, 241, 241, 1) 65%
    );
  }
  
  /* Style the accordion panel. Note: hidden by default */
  .panel {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
  