.ui-carousel {
height: 100px;
margin: 0;
overflow: auto;
padding: 0;
position: relative; /*for ie7 to work e.g in html carousels*/
width: 300px
}
.ui-carousel > .wrapper {
margin: 0;
padding: 0;
width: 9999px;
}
.ui-carousel > .wrapper > * {
border: 0;
display: block;
float: left;
height: 100px;
overflow: hidden;
width: 100px;	
}
#container {
width: 100%;
position: relative;
}
#carousel {
margin: 0 auto;
}
#carousel img {
border: 0;
}
#ui-carousel-next > span, #ui-carousel-prev > span {
display: none;
}
#ui-carousel-next, 
#ui-carousel-prev {
width: 20px;
height: 100%;
display: block;
position: absolute;
top: 0;
z-index: 80;
box-sizing: border-box;
border: #ddd 1px solid;
}
#ui-carousel-prev{
    left: 0px;
    background:#31bde5 url(../images/arrow-left.png) center center no-repeat;
    background-size: 60% auto;
}
#ui-carousel-next {
right: 0;
background:#31bde5 url(../images/arrow-right.png) center center no-repeat;
background-size: 60% auto;
}

.gallery-viewer img{
width: 100%;
display: block;
height: auto;
}
.gallery_outer{
width: 100%;
display: block;
box-sizing: border-box;
padding: 0 25px;
position: relative;
}
#gallery_pdp img{
width: 100%;
display: block;
height: 100%;
object-fit: cover;
}
.gallery-viewer{
width: 100%;
height: auto;
display: inline-block;
margin-bottom: 4px;
position: relative;
}
#img-loader{
width: 100%;
height: 100%;
display: block;
position: absolute;
z-index: 99;
left: 0px;
top: 0px;

}
#img-loader:after{
content: '';
width: 40px;
height: 40px;
position: absolute;
z-index: 100;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
background: #FFF url(images/loader.gif) no-repeat 50% 50%;
background-size: 40px auto;
border-radius: 50%;
}