.photogallery-backlink {
	display: block;
	padding: 13px 0;
	margin-bottom: 20px;
	font: 14px Arial;
	font-weight: bold;
	color: #FFF !important;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
}

.photogallery-albums-list {
    padding-top: 10px;
    border-bottom: 3px solid #f1f1f1;
}
.photogallery-albums-list-item {
    color: #242424;
    display: block;
    margin: 10px;
    width: 300px;
    position: relative;
    text-decoration: none;
}

.photogallery-albums-list-item-image-container {
    width: 100%;
    height: 225px;
    position: relative;
}
.photogallery-albums-list-item-image {
    background-color: #eee;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .3), 6px -6px 0 -1px var(--theme-color-1);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}
.photogallery-albums-list-item-title {
    display: block;
    padding: 10px 5px;
    font-size: .875rem;
    text-align: center;
}
.photogallery-albums-list-item:hover .photogallery-albums-list-item-title {
    text-decoration: underline;
}
.photogallery-albums-list-item > a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.photogallery-content {
    padding: 20px 0;
    border-bottom: 3px solid #f1f1f1;
}

.photogallery-images-container {
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
}

.photogallery-photo-item {
    display: inline-block;
    height: 180px;
    margin: 2px;
    overflow: hidden;
    position: relative;
    width: 270px;
}
.photogallery-photo-item-image {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: 1.7s ease-out;
    width: 100%;
    z-index: 1;
}
.photogallery-photo-item:hover .photogallery-photo-item-image {
    transform: scale(1.2);
}
.photogallery-photo-item-title {
    background: rgba(0, 0, 0, .6);
    bottom: 0;
    box-sizing: border-box;
    color: #fff;
    font-size: .75rem;
    left: 0;
    overflow: hidden;
    padding: 5px;
    position: absolute;
    transition: all .2s ease;
    width: 100%;
    z-index: 3;
}
.photogallery-photo-item:hover .photogallery-photo-item-title {
    opacity: 0;
}

.photogallery-request-runner {
    width: 150px;
    height: 10px;
    margin: 20px auto;
    background: url('/static/img/inner/runner.gif') 0 0 repeat-x;
}

.photogallery-load-button-container {
    padding: 20px 0;
    text-align: center;
}

.photogallery-empty-notice {
    padding: 20px 0;
    text-align: center;
    font-size: 1rem;
    text-transform: uppercase;
    color: #d0d0d0;
}

.photogallery-empty-admin-notice {
    padding: 20px 0;
    text-align: center;
    font-size: .875rem;
    line-height: 20px;
}

@media (max-width: 768px) {
	.photogallery-albums-list .col-4 {
		flex-basis: 48%;
	}
}
@media (max-width: 576px) {
	.photogallery-albums-list-item-image-container {
		height: 150px;
	}

	.photogallery-photo-item {
		height: 150px;
		width: 190px;
	}
}
@media (max-width: 425px) {
	.photogallery-albums-list .col-4 {
		flex-basis: 100%;
	}
	.photogallery-albums-list-item {
		margin: 10px 0;
	}
	.photogallery-albums-list-item-image-container {
		height: 200px;
	}

	.photogallery-images-container {
		justify-content: center;
	}

	.photogallery-photo-item {
		height: 180px;
		width: 240px;
	}
}