
/*
*------------------------------------
* 
* GALLERY
* 
*------------------------------------
*/

.module-gallery--wrapper * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.module-gallery--wrapper {
    margin: 30px auto;
}

.module-gallery--lightbox-wrapper {
    background-color: transparent;
    margin: 15px auto;
}

ul.module-gallery--lightbox {
    padding: 0;
    list-style: none;
}


li.module-gallery--thumbnail {
    display: inline-block;
    margin: auto;
    padding: 0;
    min-width: 49.5%;
}


@media screen and (min-width: 768px) {
    li.module-gallery--thumbnail {
        min-width: 33%;
    }
}


@media screen and (min-width: 992px) {
    li.module-gallery--thumbnail {
        min-width: 24.5%;
    }
}

@media screen and (min-width: 1200px) {
    li.module-gallery--thumbnail {
        min-width: 19.5%;
    }
}

.module-gallery--thumbnail-inner {
    display: block;
    padding-bottom: 100%;
    position: relative;
}

.module-gallery--thumbnail-inner > a {
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
}


.module-gallery--thumbnail a:hover {
    color: #fff;
    text-decoration: none;
}