/*********************************
* Slideshow Styling
*********************************/
#slideshow.fullscreen {
    width: 100%;
    height: 90vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
#slideshow .img-wrapper {
    min-width: 100%;
    min-height: 100%;

    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    margin: auto;
    overflow: hidden;

    z-index: 8;

    background-size: cover;
    background-position: center center;
}
#slideshow .img-wrapper.active {
    z-index: 10;
}

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

/*********************************
* Thumbnail Styling
*********************************/
#slideshow .thumbs-container {
    width: 100%;
    height: 100px;
    position: absolute;
    left: 0;
    z-index: 11;
    background: #222222;
    opacity: 0.9;
}
#slideshow .thumbs-container.top {
    top: 0;
}
#slideshow .thumbs-container.bottom {
    bottom: 0;
}
#slideshow .prev,
#slideshow .next {
    width: 3%;
    min-width: 40px;
    line-height: 120px;
    color: #999999;
    cursor: pointer;
}
#slideshow .prev {
    float: left;
	text-align: right;
}
#slideshow .next {
    float: right;
}
#slideshow .prev:hover,
#slideshow .next:hover {
    color: #555555;
}
#slideshow ul.thumbs {
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    padding: 0;
    margin: 0 5%;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
}
#slideshow .thumb {
    display: inline-block;
    width: 120px;
    height: 80px;
    margin: 7px 1px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    cursor: pointer;
}
#slideshow .thumb:first-of-type {
    margin-left: 0px;
}
#slideshow .thumb.active {
    width: 120px;
    height: 80px;
    border: 2px solid #fff;
}
@media (max-width: 575.98px) {

}

@media (max-width: 767.98px) {
	#slideshow.fullscreen {
		height: 300px !important;
		position: relative;
	}
	#slideshow .thumb, #slideshow .thumb.active{
		width: 70px;
		height: 60px;
	}
	#slideshow .fa {
		font-size: 25px;
	}
	#slideshow .prev, #slideshow .next {
		width: 24px;
		min-width: inherit;
		line-height: 75px;
		padding: 0;
		height: inherit;
	}
	#slideshow .thumbs-container{
		height: initial;
	}
}

@media (max-width: 991.98px) {
	#slideshow.fullscreen {
		height: 700px;
	}
}

@media (max-width: 1199.98px) {
	
}