/*****************************************************************************
  GALLERY 
******************************************************************************/

.gallery-container {
    overflow: hidden;
    margin: 0 50px;
}

.gallery-container .gallery {
    overflow: hidden;
    display: inline-flex; /* Makes thumbnails not wrapping */
    min-width: 100%;
    justify-content: center;
}

.gallery-container .gallery.animate {
    transition: all 0.5s cubic-bezier(0.34, 0.76, 0.79, 1.01) 0s;
}

/* Left buttons */
.gallery-container .gallery-left {
    position: absolute;
    left: 20px;
}

.gallery-container .gallery-left .btn {
    margin-top: 42px;
}

/* Right buttons */
.gallery-container .gallery-right {
    position: absolute;
    right: 20px;
}

.gallery-container .gallery-right .btn {
    margin-top: 42px;
}

.gallery-container .gallery-thumbnail {
    margin: 5px;
    float: left;
    width: 90px;
    height: 105px;
    border-radius: 0.25em;
    /*background: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1) 2px, rgba(0, 0, 0, 0.2) 5px, rgba(0, 0, 0, 0.2) 4px);*/
    text-align: center;
    cursor: pointer;
}

.gallery-container .gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-container .helper {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

/*****************************************************************************
  GALLERY 
******************************************************************************/
