.gallery2 {
    text-align: center;
}
.gallery2 .category {
    text-align: center;
}
.gallery2 .catLinks {
    border-bottom: 1px solid #83D334;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.gallery2 .catLink {
    font-size: 20px;
    text-transform: uppercase;
    padding: 20px;
    cursor: pointer;
    color: #83D334;
}

.gallery2 .tagLinks {
    display: none;
    padding-bottom: 10px;
}
.gallery2 .tagLinks.all {
    display: block;
}
.gallery2 .tagLink {
    color: inherit;
    padding: 0 10px;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
}
.gallery2 .tagLink.active {
    border: 1px solid #83D334;
    border-radius: 10px;
    color: #83D334;
}
.gallery2 .tagLink:hover {
    color: #83D334;
}

.gallery2 .cat-title {
    border-bottom:  1px solid rgba(0,0,0,0.5);
    margin:  20px 0 5px;
    font-size:  28px;
    text-align: center;
    /*-- HIDE/SHOW CAT TITLES --*/
    display: none;
}
.gallery2 .album {
    position: relative;
    width: 33%;
    text-align: left;
    display: inline-block;
    vertical-align: top;
    border: none;
    transition: transform ease-in-out 0.25s;
}
.gallery2 .album.hide {
    -ms-transform: scale(0, 0); /* IE 9 */
    -webkit-transform: scale(0, 0); /* Safari */
    transform: scale(0, 0);
}

.gallery2 .thumbnail {
    display: inline-block;
    width: 100%;
    height: 200px;
    background-color: #333;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 10px;
    box-shadow: 3px 3px 5px rgba(0,0,0,0.25); 
}
.gallery2 .album-title {
    font-size: 20px;
}
.gallery2 .album-description {
    font-size: 12px;
}
.gallery2 img {
    display: none;
}

@media screen and (max-width: 678px) {
    .gallery2 .album { width: 48%; }
}
@media screen and (max-width: 525px) {
    .gallery2 .album { width: 100%; }
}

/* -- EXPANDED -- */
.album.expanded {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    z-index: 1002;
    background-color: #333;
    background-image: url(../images/loading-ring.gif);
    background-repeat: no-repeat;
    background-position: center center;
}
.album.expanded .thumbnail {
    background-color: transparent;
}
.album.expanded .thumbnail,
.album.expanded .gradient {
    position: absolute;
    border-radius: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.album.expanded .gradient {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+100,000000+100&0+0,0.8+100 */
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.2) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.2) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#33000000',GradientType=0 ); /* IE6-9 */
    pointer-events: none;
}
.album.expanded .album-title {
    position: absolute;
    top: 5px;
    left: 25px;
    color: #fff;
    font-size: 63px;
    text-transform: uppercase;
    text-shadow: 3px 3px 0 #000;
    padding-right: 100px;
}
.album.expanded .navigation {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    opacity: 0.45;
    transition: ease opacity 1s;
}
.album.expanded .navigation:hover {
    opacity: 0.9;
}
.album.expanded .close,
.album.expanded .sizeToggle,
.album.expanded .interfaceToggle {
    width: 100%;
    height: 50px;
    background-size: cover;
    cursor: pointer;
    margin-bottom: 10px;
}
.album.expanded .close {
    background-image: url(../images/close.png);
}
.album.expanded .sizeToggle {
    background-image: url(../images/toggleSize.png);
}
.album.expanded .interfaceToggle {
    background-image: url(../images/interface.png);
}
.album.expanded .album-footer {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    right: 0;
}
.album.expanded .album-description {
    text-align: right;
    padding-right: 10px;
    color: #fff;
    font-size: 33px;
    text-transform: uppercase;
}
.album.expanded .albumImages {
    position: relative;
    padding-right: 10px;
    text-align: right;
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
}
.album.expanded img {
    display: inline-block;
    height: 100px;
    margin: 5px;
    border: 1px solid #fff;
    border-color: rgba(255,255,255,0.5);
    cursor: pointer;
    opacity: 0.9;
}
.album.expanded img.active {
    opacity: 1;
    border-color: #fff;
}
.gallery2.dots .album.expanded img {
    width: 1px;
    height: 1px;
    border: 5px solid #fff;
    border-radius: 50%;
    opacity: 0.35;
}
.gallery2.dots .album.expanded img.active {
    opacity: 1;
}
.gallery2.arrows .album.expanded img {
    display: none;
}
.gallery2.arrows .arrow-left,
.gallery2.arrows .arrow-right {
    display: block;
    position: absolute;
    top: 0;
    width: 100px; 
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 75px;
    opacity: 0.1;
    transition: ease opacity 0.5s;
}
.gallery2.arrows .arrow-left:hover,
.gallery2.arrows .arrow-right:hover  {
    opacity: 1;
}
.gallery2.arrows .arrow-left {
    left: 0;
    background-image: url(../images/arrow-left.png);
}
.gallery2.arrows .arrow-right {
    right: 0;
    background-image: url(../images/arrow-right.png);
}

@media screen and (max-width: 678px) {
    .album.expanded .album-title { font-size: 43px; }
    .album.expanded .album-description { font-size: 20px; }
}
@media screen and (max-width: 525px) {
    .album.expanded .album-title { font-size: 23px; }
    .album.expanded .album-description { font-size: 16px; }
}