.rc-toggle-switch-wrapper
{
    position: relative;
    width: 60px;
    height: 32px;
	background-color: #cccccc;
	border-radius: 24px;
	display: flex;
	transition: background 0.4s;
	cursor: pointer;
}
.rc-toggle-switch-wrapper_on
{
    background-color: #ff7e00;
}
.rc-toggle-switch-wrapper input
{
    display: none;
}
.rc-toggle-switch-knob
{
    position: absolute;
    width: 24px;
	height: 24px;
	background-color: #ffffff;
	border-radius: 100%;
	display: block;
	transition: 0.4s;
    top: 4px;
    left: 6px;
}
.rc-toggle-switch-knob_on
{
    -webkit-transform: translateX(24px);
    -ms-transform: translateX(24px);
    transform: translateX(24px);
}