.container {
    width: 100%;
    max-width: 100%;
    margin: 6px auto;
  }
  
  button.accordion {
    width: 100%;
    background-color:rgb(233, 245, 250);
    border: 1px solid #dfeefa;
    outline: none;
    text-align: left;
    padding: 12px 12px;;
    font-size: 1.2rem;
    font-weight: bold;
    color: #484f5f;
    cursor: pointer;
    border-radius: 0.5rem;
    box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.25);
    transition-duration: 0.6s;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent rgba(0, 0, 0, 0);
  }
  
  button.accordion:after {
    content: "\002B";
    font-size: 1.7rem;
    float: right;
    font-weight: normal;
  }
  
  button.accordion.is-open:after {
    content: "\2212";
    font-size: 1.7rem;
    font-weight: normal;
  }
  
  button.accordion:hover {
    background-color:rgb(218, 242, 248);
  }

  button.accordion.is-open {
    background-color:rgb(233, 245, 250);
  }
  
  .accordion-content {
    background-color: white;
    padding: 0 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    margin-bottom: 18px;

}
  