.am-switch {
	display: inline-block;
	direction: ltr;
	cursor: pointer;
	border-radius: 1px;
	border: 1px solid;
	border-color: #e6e6e6;
	position: relative;
	text-align: left;
	overflow: hidden;
	line-height: 8px;
	z-index: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	vertical-align: middle;
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow
		ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

.am-switch .am-switch-container {
	display: inline-block;
	top: 0;
	border-radius: 1px;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}

.am-switch .am-switch-handle-on, .am-switch .am-switch-handle-off,
	.am-switch .am-switch-label {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block !important;
	height: 100%;
	padding: .625em .875em;
	font-size: 1.6rem;
	line-height: 1.2
}

.am-switch .am-switch-handle-on, .am-switch .am-switch-handle-off {
	text-align: center;
	z-index: 1
}

.am-switch .am-switch-handle-on.am-switch-primary, .am-switch .am-switch-handle-off.am-switch-primary
	{
	color: #fff;
	background: #0e90d2
}

.am-switch .am-switch-handle-on.am-switch-secondary, .am-switch .am-switch-handle-off.am-switch-secondary
	{
	color: #fff;
	background: #3bb4f2
}

.am-switch .am-switch-handle-on.am-switch-success, .am-switch .am-switch-handle-off.am-switch-success
	{
	color: #fff;
	background: #5eb95e
}

.am-switch .am-switch-handle-on.am-switch-warning, .am-switch .am-switch-handle-off.am-switch-warning
	{
	background: #f37b1d;
	color: #fff
}

.am-switch .am-switch-handle-on.am-switch-danger, .am-switch .am-switch-handle-off.am-switch-danger
	{
	color: #fff;
	background: #dd514c
}

.am-switch .am-switch-handle-on.am-switch-default, .am-switch .am-switch-handle-off.am-switch-default
	{
	color: #000;
	background: #eee
}

.am-switch .am-switch-label {
	text-align: center;
	margin-top: -1px;
	margin-bottom: -1px;
	z-index: 100;
	color: #444;
	background: #fff
}

.am-switch .am-switch-handle-on {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0
}

.am-switch .am-switch-handle-off {
	border-bottom-right-radius: 0;
	border-top-right-radius: 0
}

.am-switch input[type='radio'], .am-switch input[type='checkbox'] {
	position: absolute !important;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: -1
}

.am-switch input[type='radio'].form-control, .am-switch input[type='checkbox'].form-control
	{
	height: auto
}

.am-switch.am-switch-xs .am-switch-handle-on, .am-switch.am-switch-xs .am-switch-handle-off,
	.am-switch.am-switch-xs .am-switch-label {
	font-size: 1.2rem
}

.am-switch.am-switch-sm .am-switch-handle-on, .am-switch.am-switch-sm .am-switch-handle-off,
	.am-switch.am-switch-sm .am-switch-label {
	font-size: 1.4rem
}

.am-switch.am-switch-lg .am-switch-handle-on, .am-switch.am-switch-lg .am-switch-handle-off,
	.am-switch.am-switch-lg .am-switch-label {
	font-size: 1.8rem
}

.am-switch.am-switch-disabled, .am-switch.am-switch-readonly, .am-switch.am-switch-indeterminate
	{
	cursor: default !important
}

.am-switch.am-switch-disabled .am-switch-handle-on, .am-switch.am-switch-readonly .am-switch-handle-on,
	.am-switch.am-switch-indeterminate .am-switch-handle-on, .am-switch.am-switch-disabled .am-switch-handle-off,
	.am-switch.am-switch-readonly .am-switch-handle-off, .am-switch.am-switch-indeterminate .am-switch-handle-off,
	.am-switch.am-switch-disabled .am-switch-label, .am-switch.am-switch-readonly .am-switch-label,
	.am-switch.am-switch-indeterminate .am-switch-label {
	opacity: .5;
	cursor: default !important
}

.am-switch.am-switch-animate .am-switch-container {
	-webkit-transition: margin-left .5s;
	transition: margin-left .5s
}

.am-switch.am-switch-inverse .am-switch-handle-on, .am-switch.am-switch-inverse .am-switch-handle-off
	{
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
	border-bottom-right-radius: 0;
	border-top-right-radius: 0
}

.am-switch.am-switch-focused {
	border-color: #3bb4f2;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px
		rgba(59, 180, 242, .6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px
		rgba(59, 180, 242, .6)
}

.am-switch.am-switch-on .am-switch-label, .am-switch.am-switch-inverse.am-switch-off .am-switch-label
	{
	border-bottom-right-radius: 0;
	border-top-right-radius: 0
}

.am-switch.am-switch-off .am-switch-label, .am-switch.am-switch-inverse.am-switch-on .am-switch-label
	{
	border-bottom-left-radius: 0;
	border-top-left-radius: 0
}