.accordion {
  .accordion-item {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
  .no-border {
    border: none !important;
    outline: none;
    box-shadow: none;
  }

  .accordion-button {
    font-weight: 500;
    border-radius: 0 !important;
    transition: none !important;
    background-color: var(--gray5);
    font-size: 18px;
    color: var(--gray1);
    margin-bottom: 4px;

    &:after {
      background: none;
      content: "+";
      font-size: 26px;
      line-height: 0.7;
      font-weight: 100;
      transition: none !important;
      color: #007355;
    }

    &:not(.collapsed) {
      background: var(--primary);
      color: #fff;
      font-size: 20px;

      &:after {
        background: none;
        content: "-";
        font-size: 32px;
        line-height: 0.5;
        padding: 0 0 0 5px;
        color: #fff;
      }
    }
  }
}


.accordion-body{font-size:16px;}
.accordion-button:focus{
  box-shadow: none!important;
  border-color: transparent!important;
}
/* .side-padding{
  padding: 0 145px !important;

} */

@media screen and (max-width: 767px) {
  .accordion-button{
    font-size: 13px!important;
}
    /* .accordion-button:not(.collapsed) {
        font-size: 14px !important;
    } */

}
