// TOGGLE SWITCHES

.fupi_switch {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 22px;
	margin-right: 7px;
	input {
		opacity: 0;
		width: 0;
		height: 0;
	}
}

.fupi_switch_slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
	border-radius: 34px;
	&::before {
		position: absolute;
		content: "";
		height: 14px;
		width: 14px;
		left: 4px;
		bottom: 4px;
		background-color: white;
		-webkit-transition: .4s;
		transition: .4s;
		border-radius: 50%;
	}
}

input:checked + .fupi_switch_slider,
.fupi_switch_slider.fupi_active {
	background-color: #368aae;
}

input:focus + .fupi_switch_slider {
	box-shadow: 0 0 1px #368aae;
}

// #fupi_top_setup_info{
// 	input:checked + .fupi_switch_slider,
// 	.fupi_switch_slider.fupi_active {
// 		background-color: #6b99ad;
// 	}

// 	input:focus + .fupi_switch_slider {
// 		box-shadow: 0 0 1px #6b99ad;
// 	}
// }

input:checked + .fupi_switch_slider:before,
.fupi_active.fupi_switch_slider:before {
  	transform: translateX(18px);
}

tr.fupi_hide_fields{
	.fupi_switch_slider,
	textarea,
	input{
		display: none;
	}
}