/* Admin */
#post-gallery {
    text-align: center;
    overflow: hidden;
    border: transparent solid 1px;
    border-radius: 3px;
    margin: 2px 0 12px 0;
}
#post-gallery.active {
    border-color: #d8d8d8;
}
#post-gallery .images-wrapper {
    position: relative;
    padding: 12px 0 12px 0;
    display: block;
    height: 100%;
}
#post-gallery .images-wrapper > a {
    text-decoration: none;
}
#post-gallery .images-wrapper > a:hover > img {
    border-color: #d8d8d8;
    background-color: #f3f3f3;
}
#post-gallery .images-wrapper > a > img {
    border: transparent solid 1px;
    margin: 0 8px 0 8px;
    padding: 3px;
}
#post-gallery-controls {
    text-align: right;
    padding: 8px 0 8px 0;
}
/* Front-end */
.gallery {
    height: 320px;
    line-height: 320px;
    border: #dddddd solid 2px;
    *background-color: #f3f3f3;
    background: #f3f3f3 url(../img/sprites/gallery-bg.png);
}
.gallery.large {
    height: 512px;
    line-height: 512px;
}
.gallery .image-container img {
    width: 100%;
    height: auto;
    max-width: 256px;
    max-height: 276px;
}
.gallery.large .image-container img {
    max-width: 320px;
    max-height: 340px;
}

.gallery .image-wrapper a {
    display: none !important;
}
.gallery .image-wrapper a.active {
    display: inline-block !important;
}

.gallery .container-fluid, .gallery .row-fluid, .gallery .controls, .gallery .image-container, .gallery .image-wrapper {
    height: inherit;
    line-height: normal;
}

.gallery .image-wrapper {
    line-height: 320px;
    text-align: center;
}
.gallery.large .image-wrapper {
    line-height: 512px;
}

.gallery .container-fluid {
    padding: 0;
}
.gallery .image-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    
}
.gallery .image-wrapper > * {
    vertical-align: middle;
}
.controls {
    position: relative;
    overflow: hidden;
}
.controls a * {
    vertical-align: baseline;
}
.controls .ui-gallery-left, .controls .ui-gallery-right {
    position: absolute;
    top: 48%;
    padding: 6px;
    background-color: #dddddd;
}
.controls .ui-gallery-left:hover > i, .controls .ui-gallery-right:hover > i {
    background-image: url(../img/glyphicons-halflings-white.png);
}
.controls .ui-gallery-right {
    right: 0;
}
.controls .ui-gallery-left-small, .controls .ui-gallery-right-small {
    display: none;
    background-color: transparent;
}

.controls .pager {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 6px;
    margin: 0;
    background-color: #dddddd;
    font-weight: bold;
    color: #777777;
}

@media (max-width: 767px) {
    .gallery {
        height: auto !important;
        line-height: auto !important;
    }
    .gallery .controls .ui-gallery-left, .gallery .controls .ui-gallery-right {
        display: none;
    }
    .gallery .controls .ui-gallery-left-small, .gallery .controls .ui-gallery-right-small {
        display: inline-block;
    }
    .gallery .controls:first-child {
        display:none;
    }
    .gallery .controls .pager {
        position: relative;
        clear: both;
    }
    .gallery .image-wrapper {
        line-height: normal;
        margin: 1em;
    }
    .gallery .image-wrapper > a {
        float: none !important;        
    }
}