/*********************************
* Slideshow Styling
*********************************/
#containerSlider {
    border: solid 1px #ebebeb;
    padding: 10px;
}

#slideshow {
    width: 100%;
    height: 100%;
    margin: 100px auto;
    position: relative;
    overflow: hidden;
}

    #slideshow.fullscreen {
        /*position: fixed;*/
        top: 0;
        left: 0;
        width: 100%;
        height: 400px;
        margin: 0;
        padding: 0;
        overflow: hidden;
        z-index: 1;
    }

.img-wrapper {
    min-width: 100%;
    /*min-height: 100%;*/
    height: 400px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    overflow: hidden;
    z-index: 8;
    background-size: cover;
    background-position: center center;
    border-radius: 10px;
}

#slideshow .img-wrapper.active {
    z-index: 10;
}

#slideshow .img-wrapper.last-active {
    z-index: 9;
}

/*********************************
	* Thumbnail Styling
	*********************************/
.thumbs-container {
    width: 100%;
    height: 120px;
    position: absolute;
    left: 0;
    z-index: 11;
    opacity: .9;
    border-bottom-left-radius: 10px 10px;
    border-bottom-right-radius: 10px 10px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

    .thumbs-container.top {
        top: 0;
    }

    .thumbs-container.bottom {
        bottom: 0;
    }

.prev, .next {
    width: 3%;
    min-width: 40px;
    height: 48px;
    padding: 36px 1%;
    color: #999999;
    cursor: pointer;
}

.prev {
    float: left;
}

.next {
    float: right;
}

    .prev:hover, .next:hover {
        color: #555555;
    }

ul.thumbs {
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 120px;
    padding: 0;
    margin: 0 5%;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
}

.thumb {
    display: inline-block;
    width: 100px;
    height: 100px;
    margin: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    cursor: pointer;
    border-radius: 10px;
}

    .thumb:first-of-type {
        margin-left: 0px;
    }

    .thumb.active {
        width: 100px;
        height: 100px;
        border: 5px solid #FFF;
        border-radius: 10px;
    }
