.elem-togg-checkbox-togbtn-switch {
			  position: relative;
			  display: inline-block;
			  width: 50px;
			  height: 30px;
			
		  }
  
 .elem-togg-checkbox-togbtn-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.elem-togg-checkbox-togbtn-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  transition: 0.4s;
  border-radius: 30px;
}

.elem-togg-checkbox-togbtn-slider::before {
  position: absolute;
  content: "";
  height: 23px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

/* Styles for the checked state */
input:checked + .elem-togg-checkbox-togbtn-slider {
  background-color: #2196f3; /* Example: blue when checked */
}

input:checked + .elem-togg-checkbox-togbtn-slider::before {
  transform: translateX(22px);
}
