/* CSS Document */
@keyframes showzoom {
	from {
		top: 200%;
	}
	to {
		top: 0px;
	}
}
@keyframes hidezoom {
	from {
		top: 0px;
	}
	to {
		top: 200%;
	}
}
#gallery-container {
	margin: 0px;
	padding: 55px 10px;
	width: 100%;
	box-sizing: inherit;
}
.gallery-title {
	padding: 0px 10px;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 24px;
	font-weight: 200;
}
.gallery-grid {
	display: grid;
	grid-template-columns: 16.67% 16.67% 16.67% 16.67% 16.67% 16.67%;
	box-sizing: inherit;
}
.gallery-other {
	padding: 10px;
	width: 100%;
	background-color: #242424;
	color: #888;
	box-sizing: inherit;
}
.gallery-other a {
	color: #888;
}
.gallery-other a:hover {
	color: #CCC;
}
.gallery-other-tag {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 18px;
	font-weight: 400;
	padding-bottom: 10px;
	border-bottom: thin #CCC solid;
}
.gallery-other-title {
	text-align: center;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 18px;
	font-weight: 200;
}
.thumb_container {
	padding: 10px;
	box-sizing: inherit;
}
.thumb_1_1 {
	width: auto;
	aspect-ratio: 1 / 1;
	position: relative;
	background-position: center;
	background-repeat: repeat;
	background-size: cover;
	cursor: pointer;
	overflow: hidden;
	/*opacity: 0;
	animation-name: fadein;
	animation-duration: 2s;
	animation-fill-mode: forwards;*/
	box-sizing: inherit;
}
.thumb-info-container {
	position: absolute;
	width: 100%;
	height: 100%;
	display: grid;
	align-content: space-around;
	background-color: hsla(0, 0%, 100%, 0.80);
	opacity: 0;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
}
.thumb-info {
	padding: 10px 0px 20px 0px;
	text-align: center;
}
.thumb-info-title {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
}
.thumb-info-description {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 14px;
	font-weight: 200;
	text-align: center;
}
#gallery-zoom {
	position: fixed;
	padding: 2%;
	box-sizing: inherit;
	top: 200%;
	z-index: 300;
	width: 100%;
	height: 100%;
	background-color: white;
	display: grid;
	grid-template-columns: 10% 80% 10%;
	grid-template-rows: auto 80px;
	grid-gap: 10px;
	align-items: center;
	justify-content: center;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}
#gallery-zoom-image {
	width: 100%;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
#gallery-zoom-description {
	text-align: center;
}
#gallery-zoom-description-title {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 16px;
	font-weight: 400;
}
#gallery-zoom-description-detail {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 14px;
	font-weight: 200;
}
/*#gallery-zoom-description-size {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 14px;
	font-weight: 200;
}
#gallery-zoom-description-status {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 14px;
	font-weight: 200;
}
#gallery-zoom-description-technique {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 14px;
	font-weight: 200;
}*/
.gallery-zoom-control {
	text-align: center;
	cursor: pointer;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 16px;
	font-weight: 200;
	padding: 10px;
}
@media only screen and (max-width: 2048px) {
	.gallery-grid {
		grid-template-columns: 25% 25% 25% 25%;
	}
}
@media only screen and (max-width: 1920px) {
	.gallery-grid {
		grid-template-columns: 33.33% 33.33% 33.33%;
	}
}
@media only screen and (max-width: 768px) {
	.gallery-grid {
		grid-template-columns: 50% 50%;
	}
}
@media only screen and (max-width: 500px) {
	.thumb-info {
		padding: 10px 0px 0px 0px;
	}
	.thumb-info-title {
		font-size: 13px;
		font-weight: 400;
	}
	.thumb-info-description {
		font-size: 13px;
		font-weight: 200;
	}
}