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

.photogallery-albums-list-item-image-container {
    border: 1px solid #e3e5e7;
    height: 280px;
    position: relative;
    width: 100%;
}

.photogallery-albums-list-item-image {
    background-color: #eee;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, .3);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.photogallery-albums-list-item-title {
    color: #000;
    display: block;
    font-size: 1rem;
    padding: 10px 5px;
    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-photo-images-container {
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
}

.photogallery-photo-item {
    display: inline-block;
    width: 280px;
    height: 280px;
    margin: 10px;
    position: relative;
    overflow: hidden;
}
.photogallery-photo-item-image {
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: 1.5s ease-out;
    z-index: 1;
}
.photogallery-photo-item:hover .photogallery-photo-item-image {
    transform: scale(1.25);
}

.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('/modules/PhotoGallery/tpl/images/runner.gif') 0 0 repeat-x;
}

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

.photogallery-load-button {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f9f9f9), color-stop(1, #e9e9e9));
    background: -moz-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
    background: -webkit-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
    background: -o-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
    background: -ms-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
    background: linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
    background-color: #f9f9f9;
    border: 1px solid #cacaca;
    border-radius: 3px;
    box-shadow: inset 0px 1px 0px 0px #ffffff;
    color: #444 !important;
    cursor: pointer;
    display: inline-block;
    font-family: Arial;
    font-size: .75rem;
    font-weight: bold;
    padding: 10px 65px;
    text-decoration: none;
    text-shadow: 0px 1px 0px #ffffff;
}

.photogallery-module-load-button:hover {
    background-color:#e9e9e9;
}

.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;
}

.photogallery-admin-link {
    margin: 10px 0;
}