#carousel-wrapper {
    padding-bottom: 10px;
    position: relative;
}
#carousel,
#thumbs {
    overflow: hidden;
}
#carousel span,
#carousel img,
#thumbs a,
#thumbs img {
    display: block;
    float: left;
}
#carousel span,
#carousel a,
#thumbs span,
#thumbs a {
    position: relative;
}
#carousel img,
#thumbs img {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}
#carousel span {
    width: 100%;
    height: 500px;
}
#thumbs-wrapper {
    padding: 20px 40px;
    position: relative;
}
#thumbs a {
    border: 1px solid #e2e2e2;
    width: 150px;
    height: 100px;
    margin: 0 10px;
    overflow: hidden;
    -webkit-transition: border-color .5s;
    -moz-transition: border-color .5s;
    -ms-transition: border-color .5s;
    transition: border-color .5s;
}
#thumbs a:hover,
#thumbs a.selected {
    border-color: #8bc34a;
}
#prev,
#next {
    display: block;
    width: 19px;
    height: 20px;
    margin-top: -10px;
    position: absolute;
    top: 45%;
}
#prev {
    left: 0px;
    width: 13px;
    height: 13px;
    background: #000;
    border-radius: 100%;
    padding: 12px;
}
#next {
    right: 0px;
    width: 13px;
    height: 13px;
    background: #000;
    border-radius: 100%;
    padding: 12px;
}
#prev:hover,
#next:hover {
    background: #8bc34a;
}
#prev.disabled,
#next.disabled {
    display: none !important;
}
a#prev:after {
    position: absolute;
    content: "\f177";
    font-family: FontAwesome;
    color: #fff;
    line-height: 15px;
}
a#next:after {
    position: absolute;
    content: "\f178";
    font-family: FontAwesome;
    color: #fff;
    line-height: 15px;
}