.mko-switch {
  position: relative;
  display: inline-block;
  height: 20px;
  cursor: pointer;
}

.mko-switch input {display:none;}

.mko-slider {
  position: absolute;
  width: 30px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .2s;
  transition: .2s;
}

.mko-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .2s;
  transition: .2s;
}

input:checked + .mko-slider {
  background-color: #84CC1E;
}

input:checked + .mko-checked-red {
  background-color: #F75D59;
}

input:focus + .mko-slider {
  box-shadow: 0 0 1px #84CC1E;
}

input:checked + .mko-slider:before {
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}

/* Rounded sliders */
.mko-slider.round {
  border-radius: 20px;
}

.mko-slider.round:before {
  border-radius: 50%;
}

.mko-switch-opis {
	display: inline-block;
	padding-left: 40px;
}

#oddSelect {
	display: inline-block;
	padding: 0px;
	height: 20px;
	width: 50px;
}

.mko-switch-kontener {
	padding-bottom: 2px;
}
.mko-switch-kontener label {
	font-weight: normal;
}