.switch-field {
  padding: 0px;
  overflow: hidden;
}

.switch-title {
  margin-bottom: 6px;
  color: #666666;
}

.switch-field input {
  display: none;
}

.switch-field label {
  float: left;
}

.switch-field label {
  display: inline-block;
  min-width: 60px;
  background-color: #e4e4e4;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-shadow: none;
  padding: 6px 14px;
  border: 1px solid rgba(0, 0, 0, 0.2);

  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition:    all 0.1s ease-in-out;
  -ms-transition:     all 0.1s ease-in-out;
  -o-transition:      all 0.1s ease-in-out;
  transition:         all 0.1s ease-in-out;
}

.switch-field input:disabled + label{
	color: #ccc;
	pointer-events: none;
	cursor:initial;
}

.switch-field.campaign-status.inactive label{
	color: #ccc;
	cursor:initial;
	pointer-events: none;
}

.switch-field.campaign-status.inactive input:checked + label{
  background-color: #0084ff;
  color: #ccc;
}
#slide-show .switch-field label{
	min-width: 60px;
	padding: 0px;
	padding-left:5px; padding-right: 5px;
}
#slide-show .switch-field{
	padding-left: 15px;
}
.switch-field label:hover {
    cursor: pointer;
}

.switch-field input:checked + label {
  background-color: #0084ff;
  -webkit-box-shadow: none;
  color: #fff;
  box-shadow: none;
}

.switch-field label:first-of-type {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.switch-field label:last-of-type {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}