.slider{
	width: 100%;
	position: relative;
	height: 630px;	
}


/*Last thing remaining is to add transitions*/
.slider>div{
	position: absolute;
	left: 0; top: 0;
	transition: all 0.5s;
	display: flex;
	justify-content: center;
	width:100%;
}

.slider input[name='slide_switch'] {
	display: none;
}

.slider label {
	/*Lets add some spacing for the thumbnails*/
	margin: 18px 0 0 18px;
	cursor: pointer;
	transition: all 0.5s;
	
	/*Default style = low opacity*/
	opacity: 0.6;
}

.slider label img{
	display: block;
	width:100px;
}

/*Time to add the click effects*/
.slider input[name='slide_switch']:checked+label {
	opacity: 1;
}
/*Clicking any thumbnail now should change its opacity(style)*/
/*Time to work on the main images*/
.slider input[name='slide_switch'] ~ div {
	opacity: 0;
}
/*That hides all main images at a 110% size
On click the images will be displayed at normal size to complete the effect
*/
.slider input[name='slide_switch']:checked+label+div {
	opacity: 1;
}