	
.switch-field {
	font-family: "Lucida Grande", Tahoma, Verdana, sans-serif;
	/*padding: 40px;*/
	overflow: hidden;
	float:right;
	margin-right: 300px;
}

.switch-title {
	margin-bottom: 6px;
}

.switch-field input {
	display: none;
}

.switch-field label {
	float: left;
}

.switch-field label {
	display: inline-block;
	width: 100px;
	background-color: #e4e4e4;
	color: rgba(0, 0, 0, 0.6);
	font-size: 14px;
	font-weight: normal;
	text-align: center;
	text-shadow: none;
	padding: 2px 14px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
	-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 label:hover {
	cursor: pointer;
}

.switch-field input:checked + label {
	background-color: #A5DC86;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.switch-field label:first-of-type {
	border-radius: 4px 0 0 4px;
}

.switch-field label:last-of-type {
	border-radius: 0 4px 4px 0;
}











.tgl {
	position: relative;
	outline: 0;
	display: inline-block;
	cursor: pointer;
	user-select: none;
	margin: 0 0 5px 0;
}
.tgl,
.tgl:after,
.tgl:before,
.tgl *,
.tgl *:after,
.tgl *:before,
.tgl + .tgl-btn {
	box-sizing: border-box;
}
.tgl::selection,
.tgl:after::selection,
.tgl:before::selection,
.tgl *::selection,
.tgl *:after::selection,
.tgl *:before::selection,
.tgl + .tgl-btn::selection {
	background: none;
}
.tgl span {
	position: relative;
	display: block;
	height: 1.8em;
	line-height: 1.2em;
	overflow: hidden;
	font-weight: normal;
	text-align: center;
	border-radius: 2em;
	padding: 0.2em 1em;
	border: 1px solid #fafafa;
	box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.2), 0 2px 0 rgba(255, 255, 255, 0.7);
	transition: color 0.3s ease, padding 0.3s ease-in-out, background 0.3s ease-in-out;
}
.tgl span:before {
  position: relative;
  display: block;
  line-height: 1.3em;
  padding: 0 0.2em;
  font-size: 1em;
}
.tgl span:after {
	position: absolute;
	display: block;
	content: '';
	border-radius: 2em;
	width: 1.3em;
	height: 1.3em;
	margin-left: -1.45em;
	top: 0.2em;
	background: #FFFFFF;
	transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 0.97), background 0.3s ease-in-out;
}
.tgl input[type="checkbox"] {
	display: none !important;
}
.tgl input[type="checkbox"]:not(:checked) + span {
	background: #de474e;
	color: #FFFFFF;
	padding-left: 1.6em;
	padding-right: 0.4em;
}
.tgl input[type="checkbox"]:not(:checked) + span:before {
	content: attr(data-off);
	color: #FFFFFF;
}
.tgl input[type="checkbox"]:not(:checked) + span:after {
	background: #FFFFFF;
	left: 1.6em;
}
.tgl input[type="checkbox"]:checked + span {
	background: #86d993;
	color: #FFFFFF;
	padding-left: 0.4em;
	padding-right: 1.6em;
}
.tgl input[type="checkbox"]:checked + span:before {
	content: attr(data-on);
}
.tgl input[type="checkbox"]:checked + span:after {
  background: #FFFFFF;
  left: 100%;
}
.tgl input[type="checkbox"]:disabled,
.tgl input[type="checkbox"]:disabled + span,
.tgl input[type="checkbox"]:read-only,
.tgl input[type="checkbox"]:read-only + span {
	cursor: not-allowed;
}