/*! ========================================================================
 * Bootstrap Toggle: bootstrap-toggle.css v2.2.0
 * http://www.bootstraptoggle.com
 * ========================================================================
 * Copyright 2014 Min Hur, The New York Times Company
 * Licensed under MIT
 * ======================================================================== */


.checkbox label .toggle,
.checkbox-inline .toggle {
	margin-left: -20px;
	margin-right: 5px;
}

.toggle {
	position: relative;
	overflow: hidden;
}

.toggle input[type="checkbox"] {
	display: none;
}

.toggle-group {
	position: relative;
	width: 200%;
	top: 0;
	bottom: 0;
	left: 0;
	transition: left 0.35s;
	-webkit-transition: left 0.35s;
	-moz-user-select: none;
	-webkit-user-select: none;
}

.toggle.off .toggle-group {
	left: -100%;
}
.toggle-on {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 50%;
	margin: 0;
	border: 0;
	border-radius: 0;
	background-color: #1eb75b;
}
.toggle-off {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	right: 0;
	margin: 0;
	border: 0;
	border-radius: 0;
}
.toggle-handle {
	position: relative;
	margin: 0 auto;
	height: 20px;
	width: 20px;
	background-color: #fff;
	border: 0 none;
	border-radius: 100%;
	padding: 0;
	top: 3px;
	right: 14px;
}

.toggle.off .toggle-handle {
	right: -14px;
}

.toggle.btn {
	width: 43px !important;
	height: 26px !important;
	border-radius: 20px;
	font-size: 0;
	border: 0 none;
}

.toggle-on.btn {
	border-radius: 20px;
	font-size: 0;
	border: 0 none;
	height: 26px;
}

.toggle-off.btn {
	border-radius: 20px;
	font-size: 0;
	border: 0 none;
	height: 26px;
}
