.collapsible {
    background-color: white !important;
    color: #121212 !important;
    border: 1px solid #121212 !important;
    margin-top: 0.5em;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    border-radius: 10px;
  }
  
  .active, .collapsible:hover {
    background-color: #555;
  }
  .collapsible2 {
    background-color: #242424;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
  }
  
  .active, .collapsible2:hover {
    background-color: #555;
  }
  
  .content {
    padding: 0 18px;
    padding-bottom: 10px;
    display: none;
    overflow: hidden;
    border-radius: 10px;
    background-color: #f1f1f1;
  }

  
.switch-toggle {
  float: left;
  background: #242729;
}
.switch-toggle input {
 position: absolute;
 opacity: 0;
}
.switch-toggle input + label {
 width: 3rem;
 float:left;
 text-align:center;
 color: #fff;
 cursor: pointer;
}
.switch-toggle input:checked + label {
 background: green;
}