.gallery {
    position: relative;
    margin: 30px 0px;
    min-height: 200px;
    background: rgba(0,0,0,.8);
}

.gallery .expand{
    position: absolute;
    top: 7px;
    right: -4px;
    width: 40px;
    height: 40px;
    z-index: 100;
    cursor: pointer;
    background: url('../images/full_screen.png') 0 0 no-repeat;
    background-size: 70%;
}

.gallery .expand.open{
    background: url('../images/full_screen_close.png') 0 0 no-repeat;
    background-size: 70%;
}

.gallery__slider, .gallery__thumbslider {
    margin: 0;
    padding: 0;
    width: 100%;
    display: none;
}

.gallery__slider.slick-initialized, .gallery__thumbslider.slick-initialized {
    display: block;
}

.gallery__slide {
    outline: 0;
    width: 100%;
    height: 500px;
}

.gallery__slide p {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    margin: 0px;
    width: 100%;
    background: rgba(0,0,0,.8);
    padding: 15px;
    position: absolute;
    bottom: 0px;
}

.gallery__image {
    display: none;
}

.gallery__image--alt {
    height: 470px;
    margin: auto;
}

.gallery__thumbslider {
    display: none;
    padding: 0px 10px 20px;
    background: rgba(0,0,0,.8);
}

.gallery__thumbslide {
    outline: 0;
    width: 170px;
    margin: 0 5px;
}

.gallery__thumbslide img{
    margin: auto;
    width: 100%;
}

.gallery__pagination {
    cursor: pointer;
    display: inline;
    height: 65px;
    margin-top: -40px;
    position: absolute;
    top: 50%;
    width: 31px;
}

.gallery__pagination--prev {
    background: url('../images/icons/prevSlick.png') no-repeat center left;
    background-size: 100%;
    left: 0;
}

.gallery__pagination--next {
    background: url('../images/icons/nextSlick.png') no-repeat center right;
    background-size: 100%;
    right: 0;
}

@media all and (max-width: 750px) {
    .gallery {
        min-height: 300px;
    }

    .gallery__thumbslider.slick-initialized {
        display: none;
    }

    .gallery .expand{
        display: none;
    }

    .gallery__slide {
        outline: 0;
        width: 100%;
        height: auto;
    }

    .gallery__image {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 0;
        overflow: hidden;
        padding-bottom: 56.5%;
        width: 100%;
        display: block;
    }

    .gallery__image--alt {
        display: none !important;
    }

    .gallery__slide p {
         background: none;
         position: relative;
    }

    .gallery__pagination {
        height: 70px;
        width: 30px;
        top: 100px;
        position: absolute;
    }
}



/*------- FULL SCREEN GALLERY ----------*/

.gallery--fullscreen {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
}

.gallery--fullscreen .gallery__slide {
    height: 100% !important;
}

.gallery--fullscreen .gallery__slide img {
    max-width: 100% !important;
    max-height: 100% !important;
    height: auto;
    top: 0% !important;
    -webkit-transform: translateY(0%) !important;
    -ms-transform: translateY(0%) !important;
    transform: translateY(0%) !important;
}

.gallery--fullscreen .gallery__slide p {
    padding: 5px 10px 6% 25px !important;
    position: relative;
}

.gallery--fullscreen .gallery__thumbslider {
    display: none !important;
}

