.switch {
	position: relative;
	width: 50px;
	height: 23px;
}

.switch .switch-checkbox {
	display: none;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	/* Estado sin activar */
	background-color: transparent;
	transition: .4s;
	border: 2px solid var(--colorFuenteQuinario);
}

.slider.round {
	border-radius: 1em;
}

.slider.round:before {
	border-radius: 1em;
}

.slider:before {
	position: absolute;
	content: "";
	height: 15px;
	width: 16px;
	left: 0;
	bottom: -0px;
	border: 2px solid transparent;
	box-shadow: inset 0 0 0 2px var(--colorFuenteQuinario);
	transition: .6s;
}


.switch-checkbox:checked+.slider {
	border: 2px solid #43aa8b;
	background: #43aa8b;

}

.switch-checkbox:focus+.slider {
	/* Estado activado */
	box-shadow: 0 0 1px #43aa8b;

}

.switch-checkbox:checked+.slider:before {

	box-shadow: inset 0 0 0 8px var(--colorBackgroundTarjeta);
	border: 2px solid #43aa8b;

	transform: translateX(26px);
}