  /* start toggle */
  
  .ns-toggle__label {
	box-sizing: border-box;
	margin: 0;
	user-select: none;
}

.ic-Form-group.ic-Form-group--horizontal .ns-toggle__label {
	display: inline-flex;
	align-items: center;
}

.ns-toggle__input {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
}

.ns-toggle__input:checked ~ label .ns-toggle-switch:after {
	transform: translate3d(100%, 0, 0);
}

.ns-toggle__input:checked ~ label .ns-toggle__disabled-msg:before {
	content: attr(data-checked);
}

.ns-toggle__input[disabled] ~ label .ns-toggle__disabled-msg {
	display: block;
}

.ns-toggle__input[disabled] ~ label .ns-toggle-switch,
  .ns-toggle__input[disabled] ~ label [class^="ns-toggle-option-"] {
	display: none;
}

.ns-toggle-switch {
	transition: background 0.1s, border-color 0.1s;
	display: inline-block;
	position: relative;
	line-height: 1;
	display: flex;
	align-items: center;
	background-clip: padding-box;
}

.ns-toggle-switch::after {
	transition: all 0.1s ease-in-out;
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	transform: translate3d(0, 0, 0);
	border-radius: 100%;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: 20px;
}

.ns-toggle__disabled-msg {
	display: none;
}

.ns-toggle__disabled-msg:before {
	content: attr(data-unchecked);
}

[class^="ns-toggle-option-"] {
	transition: opacity 0.2s, transform 0.2s;
	flex: 0 0 50%;
	text-align: center;
	position: relative;
	z-index: 1;
	font-family: "open_sansregular",Helvetica,Arial,Tahoma,sans-serif;
	font-weight: normal;
	line-height: 1;
	speak: none;
	box-sizing: border-box;
}

.ns-toggle__screenreader {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
}

.ns-toggle--on-off {
	display: inline-block;
	vertical-align: middle;
	position: relative;
}

.ns-toggle--on-off .ns-toggle__input:focus ~ label .ns-toggle-switch::after, .ns-toggle--on-off .ns-toggle__input:hover ~ label .ns-toggle-switch::after  {
	box-shadow: 0 0 0 3pt #F8D44C;
}

.ns-toggle--on-off .ns-toggle__input:checked ~ label .ns-toggle-switch {
	background: #009b16;
	border-color: #009b16;
}

.ns-toggle--on-off .ns-toggle__input:checked ~ label .ns-toggle-option-LEFT {
	color: white;
}

.ns-toggle--on-off .ns-toggle__input:checked ~ label .ns-toggle-option-LEFT .ns-toggle__svg > * {
	fill: white;
}

.ns-toggle--on-off .ns-toggle__input:checked ~ label .ns-toggle-option-RIGHT {
	color: white;
}

.ns-toggle--on-off .ns-toggle__input:checked ~ label .ns-toggle-option-RIGHT .ns-toggle__svg > * {
	fill: white;
}

.ns-toggle--on-off .ns-toggle__input:checked:focus ~ label .ns-toggle-switch::after {
	box-shadow: inset 0 0 0 1px white, inset 0 0 0 3px #009b16, 0 3px 6px rgba(0, 0, 0, 0.3);
}

.ns-toggle--on-off .ns-toggle-switch {
	width: 66px;
	height: 33px;
	background: #333;
	border: 2px solid #333;
	border-radius: 18.5px;
}

.ic-Form-group.ic-Form-group--horizontal .ns-toggle--on-off .ns-toggle-switch {
	flex: 0 0 66px;
}

.ns-toggle--on-off .ns-toggle-switch:after {
	background-color: white;
	width: 33px;
	height: 33px;
}

.ns-toggle--on-off .ns-toggle-option-LEFT {
	color: white;
}


.ns-toggle--on-off .ns-toggle-option-RIGHT {
	color: white;
}


.ns-toggle--on-off [class^="ns-toggle-option-"] {
	transition-delay: 0.1s;
}

.ns-toggle--on-off .ns-toggle-option-LEFT {
	opacity: 0;
}

.ns-toggle--on-off .ns-toggle-option-RIGHT {
	opacity: 1;
}

.ns-toggle--on-off .ns-toggle__input:checked ~ label .ns-toggle-option-LEFT {
	opacity: 1;
}

.ns-toggle--on-off .ns-toggle__input:checked ~ label .ns-toggle-option-RIGHT {
	opacity: 0;
}

.ns-toggle--ui-switch {
	display: inline-block;
	vertical-align: middle;
	position: relative;
}

.ns-toggle--ui-switch .ns-toggle__input:focus ~ label .ns-toggle-switch::after, .ns-toggle--ui-switch .ns-toggle__input:hover ~ label .ns-toggle-switch::after {
	box-shadow: 0 0 0 3pt #F8D44C;
}

.ns-toggle--ui-switch .ns-toggle__input:checked ~ label .ns-toggle-switch {
    background: #fff;
    border-color: #A2A2A2;
}

.ns-toggle--ui-switch .ns-toggle__input:checked:focus ~ label .ns-toggle-switch::after, .ns-toggle--ui-switch .ns-toggle__input:checked:hover ~ label .ns-toggle-switch::after {
	box-shadow: 0 0 0 3pt #F8D44C;
}

.ns-toggle--ui-switch .ns-toggle-switch {
    width: 42px;
    height: 24px;
    background: #fff;
    border: 1px solid #A2A2A2;
    border-radius: 18.5px;
}

.ic-Form-group.ic-Form-group--horizontal .ns-toggle--ui-switch .ns-toggle-switch {
	flex: 0 0 66px;
}

.ns-toggle--ui-switch .ns-toggle-switch:after {
	background-color: #0058A4;
	width: 18px;
	height: 18px;
}

.ns-toggle--ui-switch .ns-toggle__label {
	display: inline-flex;
	align-items: center;
}

.ns-toggle--ui-switch .ns-toggle-switch {
	display: block;
}

.ns-toggle--ui-switch [class^="ns-toggle-option-"] {
	flex: none;
	min-width: 24px;
}
  
/* end toggle */
  