.fl-switch {
	height: 2rem;
    position: relative;
    margin-bottom: 1rem;
    outline: 0;
    font-size: 0.875rem;
    font-weight: bold;
    color: #fefefe;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fl-switch-inner {
	position: relative;
	display: inline-block;
	width: 4rem;
    height: 2rem;
}

.fl-switch-input {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	margin: 0;
    padding: 0;
	opacity: 0;
	box-sizing: border-box;
	overflow: visible;
	cursor: pointer;
}

.fl-switch-paddle {
	position: relative;
    display: block;
    width: 4rem;
    height: 2rem;
    border-radius: 999px;
	background: #cacaca;
	vertical-align: baseline;
	-webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    font-weight: inherit;
	color: inherit;
	pointer-events: none;
}

.fl-switch-paddle::after {
	position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    border-radius: 999px;
    background: #fefefe;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
	content: '';
}

input + .fl-switch-paddle {
	margin: 0;
}

input:checked ~ .fl-switch-paddle {
	background: #1779ba;
}

input:checked ~ .fl-switch-paddle::after {
	left: 2.25rem;
}
