.albums-album-wrapper {
    position: relative;
    background: #f3f3f3;
}

.albums-album-wrapper .album-title {
    font-size: 14px;
    opacity: 0;
    transition: all 300ms ease-out;
    background: #2b3a44;
    color: #ffffff;
    padding: 10px 10px 10px 10px;
    position: relative;
    z-index: 1;
    margin: 2px 4px;
}

.albums-album-wrapper .album-title:before {
    content: '';
    position: absolute;
    border-top: 10px solid #2b3a44;
    border-left: 10px solid rgba(0, 0, 0, 0);
    border-right: 10px solid rgba(0, 0, 0, 0);
    bottom: -10px;
}

.albums-album-wrapper .album-container {
    position: relative;
    min-height: 100px;
    max-height: 100px;
    opacity: 0;
    transition: all 300ms ease-out;
    float: left;
}

.albums-album-wrapper .js-ig-container {
    position: relative;
}

.albums-album-wrapper .js-ig-info {
    position: absolute;
    top: 4px;
    left: 4px;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    opacity: 0;
    transition: opacity 300ms ease-out;
}

.albums-album-wrapper .js-ig-info .js-ig-title {
    position: absolute;
    color: #FFF;
    bottom: 4px;
    left: 4px;
    right: 4px;
    font-size: 13px;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.42);
}

.albums-album-wrapper .js-ig-info .js-ig-descript {
    display: none;
}

.albums-album-wrapper .js-ig-info:hover {
    opacity: 1;
}

.albums-album-wrapper .photo {
    position: relative;
    display: none;
}

.albums-album-wrapper img {
    vertical-align: bottom;
}

.albums-album-wrapper .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 25px;
    margin: -12px 0 0 -12px;
    opacity: .3;
    background: url(/public/img/spinner.gif);
}

.albums-album-wrapper.-loaded {
    background: white;
}

.albums-album-wrapper.-loaded .album-title, .albums-album-wrapper.-loaded .album-container {
    opacity: 1;
}

.albums-album-wrapper.-loaded .album-container {
    max-height: 99999px;
}

.albums-album-wrapper.-loaded .photo {
    display: block;
}

.albums-album-wrapper.-loaded .loader {
    display: none;
}