@charset "UTF-8";

.album_header {
	width: 100%;
	height: auto;
	position: relative;
	box-sizing: border-box;
	font-size: 0;
}
.album_image_small {
	    -webkit-filter: opacity(95%) brightness(90%);
    filter: opacity(95%) brightness(90%);
}
.album_image_large {
	    -webkit-filter: opacity(95%) brightness(90%);
    filter: opacity(95%) brightness(90%);
	display: none;
}
.album_gradient {
	width: 100%;
	height: 40%;
	position: absolute;
	bottom: 0;
	z-index: 5;
	background: rgb(0,0,0);
	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
}
.album_header_text {
	position: absolute;
	color: white;
	z-index: 10;
	font-size: 35px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	text-align: center;
}
.image_grid_container {
	width: 100%;
	padding: 5px;
	box-sizing: border-box;
	font-size: 0;
	margin-left: auto;
}
.image_grid_wrap {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.image_grid_row_image, .image_album {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
    -webkit-touch-callout:none;
	-moz-touch-callout:none;
	-ms-touch-callout:none;
	-o-touch-callout:none;
	-touch-callout:none;
}
.image_grid_row_image {
	width: 33.333%;
	height: 0;
	padding-top: 45%;
	position: relative;
	overflow: hidden;
	margin: 5px;
}

.image_album {
	top: 0;
    left: 0;
    position: absolute;
    vertical-align: top;
	display: inline-block;
    max-height: 100%;
	max-width: 100%;
    object-fit: cover;
	cursor: pointer;
	overflow: hidden;
	 -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
	z-index: 5;
	    -webkit-filter: opacity(95%) brightness(70%);
    filter: opacity(95%) brightness(70%);
	-webkit-transition: all .6s;
	-moz-transition: all .6s;
	-o-transition: all .6s;
	-ms-transition: all .6s;
	transition: all .6s;
}

.album_image_hover:hover {
	    -webkit-filter: none;
    filter: none;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.image_text {
	position: absolute;
	color: white;
	z-index: 10;
	font-size: 25px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	text-align: center;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


@media screen and (max-width:758px){
	
	.image_grid_container {
		width: 100%;
		padding: 2.5px;
	}
	.image_grid_row_image {
		margin: 2.5px;
	}
	.image_text {
		font-size: 15px;
	}
	.album_header_text {
		font-size: 25px;
	}
	.album_image_small {
		display: none;
	}
	.album_image_large {
		display: block;
	}
}


