/*********************************
* Slideshow Styling
*********************************/
/*#slideshow {
    width: 100%;
    height: 100%;
    margin: 100px auto;
    position: relative;
    overflow: hidden;
}*/
#slideshow.product-slider {
    position: relative;
    width: 100%;
    min-height: 530px;
}
.img-wrapper {
    background-color: #fff;
    min-width: 100%;
    min-height: 417px;
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index:8;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
#slideshow .img-wrapper.active {
    z-index:10;
}
#slideshow .img-wrapper.last-active {
    z-index:9;
}
/*********************************
* Thumbnail Styling
*********************************/
.thumbs-container {
    width: 100%;
    position: absolute;
    left: 0;
    z-index: 8;
    background: transparent;
}
.thumbs-container.top {
    top: 0;
}
.thumbs-container.bottom {
    bottom: 0;
}
.prev, .next {
    width: 3%;
    min-width: 40px;
    padding: 19px 10px;
    color: #999999;
    cursor: pointer;
}
.prev { float: left; }
.next { float: right; }
.prev:hover, .next:hover {
    color: #555555;
}
.thumbs-container i{
    font-size: 36px;
    line-height: 24px;
}
ul.thumbs {
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    padding: 0;
    margin: 0 4%;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
}
.thumb {
    display: inline-block;
    width: 48px;
    height: 48px;
    margin: 10px 5px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    cursor: pointer;
    border: 1px solid #ccc;
}
.thumb:first-of-type {
    margin-left: 0px;
}
.thumb.active {
    border: 1px solid #cd0022;
}