/*Galeri baslangic*/
.gallery{
	width: 100%; 
	position: relative;
	height:auto;
	padding-top: 100%; 
	margin-top:5px;
}


.gallery>img{
	position: absolute;
	left: 0; top: 0;
	transition: all 0.2s;
	width: 100%;

	height:auto;

}

.gallery input[name='gallery_switch'] {
	display: none;
}

.gallery label {

	margin: 5px 1px 1px 1px;
	border: 1px solid #999;
	float: left;
	cursor: pointer;
	transition: all 0.2s;
	opacity: 1;
}

.gallery label img{
	display: block;
}


.gallery input[name='gallery_switch']:checked+label {
	border-color: #666;
	opacity: 1;
}


.gallery input[name='gallery_switch'] ~ img {
	opacity: 0;
	transform: scale(1.1);
}


.gallery input[name='gallery_switch']:checked+label+img {
	opacity: 1;
	transform: scale(1);
}