body {
  padding: 15px;
}

.slider .slick-slide {
    background: #f5f5f5;
    border: solid 1px #dedede;
    padding: 10px;
}

input[type='checkbox']{
	display:inline-block; 
	position:relative; 
	width:45px; 
	height:20px;
}

input[type='checkbox']::before{
	content:""; 
	display:inline-block; 
	position:relative; 
	width:45px; 
	height:20px; 
	background:#fff; 
	border:1px solid #4C8DBD;
	border-radius:30px; 
    -moz-border-radius:30px;
}

	input[type='checkbox']::after{
    content:""; 
    display:inline-block; 
    position:absolute; 
    width:15px; 
    height:15px; 
    border-radius:25px; 
    -moz-border-radius:25px; 
    background:#eee; 
    left:3px; 
    top:3px; 
	transition:0.3s; 
    -moz-transition:0.3s; 
    -webkit-transition:0.3s; 
    -khtml-transition:0.3s;
}

input[type='checkbox']:checked::after{
    left:26px; 
    background: #4C8DBD;
}