.nav-tab-active{
    background-color:#0066CC;
	color:#FFFFFF;
}
#newcapmpaign #campaign_name{
  width:100% !important;
  min-width:300px;
}
.campaign input[type=checkbox]{
	height: 0;
	width: 0;
	visibility: hidden;
}

.campaign label {
	cursor: pointer;
	text-indent: -9999px;
	width: 50px;
	height:25px;
	background: grey;
	display: block;
	border-radius: 30px;
	position: relative;
}

.campaign label:after {
	content:'';
	position:absolute;
	top:5px;
	left:5px;
	width:15px;
	height:15px;
	background:#cfcfcf;
	border-radius:15px;
	transition:0.3s;
}

.campaign input:checked + label {
	background:#006600;
}

.campaign input:checked + label:after {
	left: calc(100% - 5px);
	transform: translateX(-100%);
	background:#fff;
}

.campaign label:active:after {
	width:30px;
}