.collapsible {
    /* background-color: #5c5b5a; */
    background-color: #f1f1f1;
    /* color: white; */
    color: #5c5b5a;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
  }
  
  /* .active, .collapsible:hover {
    background-color: #606060;
  } */
  
  .collapsible:after {
    content: '\002B';
    /* color: white; */color: #5c5b5a;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  
  .active:after {
    content: "\2212";
  }
  
  .collapsible-content {
    padding: 0px 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    /* background-color: #f1f1f1; */
  }

  .collapsible-content p {
      padding-top: 18px;
  }

  i {
      font-size: 2em;
      border-radius: 50%;
      background-color: #f1f1f1;
  }

 input[type="checkbox"] {
    /* transform: scale(1.5); */
    accent-color: #5c5b5a;
  }

.form-check-input:checked {
    background-color: #5c5b5a;
    border-color: #5c5b5a;
}