.toggle input {
    display: none;
  }
  
  .toggle span {
    display: block;
    width: 50px;
    height: 25px;
    background-color: #ccc;
    border-radius: 25px;
    position: relative;
    transition: 0.3s;
  }
  
  .toggle span::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 19px;
    height: 19px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
  }
  
  .toggle input:checked + span {
    background-color: #4CAF50;
  }
  
  .toggle input:checked + span::before {
    transform: translateX(25px);
  }

  h3.caption-text {
    color: black;
  }