.breadcrumb li:first-child {
 display: none;
}
.toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  /* margin: 20px 0; */
  width: 100%;
}
  
.toggle-container {
  display: block;
  width: 100%;
  height: 35px;
  padding: 6px 12px;
  font-size: 15px;
  line-height: 1.42857;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 6px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
  
.toggle-label {
  font-size: 15px;
  font-weight: 300;
  color: #333;
  margin: 0;
  line-height: 1.4;
  display: block;
  width: 100%;
}
  
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
  
.toggle-input {
  opacity: 0;
  width: 0;
  height: 0;
}
  
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
  display: block;
}
  
.toggle-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 2px;
  top: 1px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
  
.toggle-input:checked + .toggle-slider {
  background-color: #2196F3;
}
  
.toggle-input:focus + .toggle-slider {
  box-shadow: 0 0 1px #2196F3;
}
  
.toggle-input:checked + .toggle-slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
  
.toggle-slider:hover {
  background-color: #bbb;
}
  
.toggle-input:checked + .toggle-slider:hover {
  background-color: #218838;
}
  
/* Responsive design */
@media (max-width: 768px) {
  .toggle-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .toggle-container {
    width: 100%;
  }
  
  .toggle-label {
    font-size: 16px !important;
  }
  
  .toggle-switch {
    align-self: flex-end;
  }
}