/* Container alignment */
.toggle-container {
    font-size: 14px;
  }
  
  /* The switch container */
  .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
  }
  
  /* Hidden checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* Slider styles */
  .toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
  }
  
  .toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 2px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
  }
  
  /* Toggle ON styles */
  input:checked + .toggle-slider {
    background-color: #da0004;
  }
  
  input:checked + .toggle-slider:before {
    transform: translateX(26px);
  }
  
  /* Label spacing */
  .toggle-container label {
    margin-right: 10px;
  }
  .toggle-container{
    display: flex;width:15%; align-items: center;padding: 15px 0px;
  }
  @media(max-width: 767px) {
    .navbar-collapse {
      flex-direction: column;
    }

    .toggle-container {
      padding: 15px;
      width: 100%;
    }
  }