
/* GALLERY */

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: top;
}

.gallery1, .gallery2, .gallery3 {
  display: flex;
  margin: 10px auto;
  max-width: 600px;
  position: relative;
  padding-top: 66.6666666667%;
}

@media screen and (min-width: 600px) {
  .gallery1, .gallery2, .gallery3 {
    padding-top: 450px;
  }
}

@media screen and (max-width: 600px) {
  .gallery1, .gallery2, .gallery3 {
    padding-top: 200px;
  }
}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: portrait) {
  .gallery1, .gallery2, .gallery3 {
    padding-top: 200px;
  }
 }	  

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {
  .gallery1, .gallery2, .gallery3 {
    padding-top: 340px;
  }
 }	  
  
  
.gallery1__img, .gallery2__img, .gallery3__img, .gallery3__img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}


/* Caption style */
/* IE rgba() hack */
.gallery1-caption, .gallery2-caption, .gallery3-caption {
	background:none; 
	-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000); 
	zoom: 1;
}

.gallery1-caption, .gallery2-caption, .gallery3-caption {
	width: 90%; 
	padding: 2%; 
	position: absolute; 
	left: 10px; 
	bottom: 150px; 
	background: rgba(0,0,0,.8); 
	color: #fff; 
	text-shadow: 0 -1px 0 rgba(0,0,0,.2); 
	text-align: center;
	font-size: 14px; 
	line-height: 18px;
}

.gallery1__thumb, .gallery2__thumb, .gallery3__thumb {
  padding-top: 6px;
  margin: 6px;
  display: block;
}

.gallery1__selector, .gallery2__selector, .gallery3__selector {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.gallery1__selector:checked + .gallery1__img, .gallery2__selector:checked + .gallery2__img, .gallery3__selector:checked + .gallery3__img {
  opacity: 1;
}
.gallery1__selector:checked ~ .gallery1__thumb > img, .gallery2__selector:checked ~ .gallery2__thumb > img, .gallery3__selector:checked ~ .gallery3__thumb > img {
  box-shadow: 0 0 0 2px #ea4c88;
}

.selected {
    visibility: visible;   
}


@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px)
  and (-webkit-min-device-pixel-ratio: 2) {
	  
	.gallery1__selector, .gallery2__selector, .gallery3__selector {
	  position: absolute;
	  opacity: 0;
	  visibility: hidden;
	}

	.gallery1__selector:checked + .gallery1__img, .gallery2__selector:checked + .gallery2__img, .gallery3__selector:checked + .gallery3__img {
		opacity: 1;
	}
	  
	.gallery1__selector:checked ~ .gallery1__thumb > img, .gallery2__selector:checked ~ .gallery2__thumb > img, .gallery3__selector:checked ~ .gallery3__thumb > img {
	  box-shadow: none;
	}
	
	.selected {
		visibility: visible;   
	}	
}

