.impuls-ga-switch {
  position: relative;
  display: inline-block;
  /*width: 60px;*/
  height: 34px;
	vertical-align:middle;
}

#impuls-ga-switch-label {
	display:inline-block;
	line-height:34px;
}

.impuls-ga-switch input {
	display:none;
}

.impuls-ga-switch .slider {
  position: relative;
  cursor: pointer;
  width:60px;
	height:34px;
  background-color: #f0f0f0;
  -webkit-transition: .4s;
  transition: .4s;
	width: 60px;
	display:inline-block;
	vertical-align:middle;
}

.impuls-ga-switch .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.impuls-ga-switch input:checked + .slider {
  background-color: #f38d00;
}

.impuls-ga-switch input:focus + .slider {
  box-shadow: 0 0 1px #f38d00;
}

.impuls-ga-switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}