

/*---------------------------- Thumbnails ----------------------------*/
#thumbnail-slider {
    height:100%;
    display:inline-block;
    padding:20px 0; /*Increse its value if want to move the arrows out of the div.inner */
    position:relative;
    -webkit-user-select: none;
    user-select:none;
}

#thumbnail-slider div.inner {
    background-color: transparent;
    box-sizing: border-box;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0 0px;
    position: relative;
    width: 129px;
}

#thumbnail-slider div.inner ul {
  float: left !important;
  font-size: 0;
  height: auto !important;
  left: 0;
  list-style: outside none none;
  margin: 0;
  padding: 0;
  position: relative;
  top: 0;
  width: 100% !important;
}

#thumbnail-slider ul li {
    backface-visibility: hidden;
    border: 2px solid #e3e3e3;
    box-sizing: content-box;
    display: block;
    /*filter: grayscale(100%);*/
    list-style: outside none none;
    margin: 5px 0;
    opacity: 1;
    padding: 0;
    position: relative;
    text-align: center;
    width: 124px !important;
}

/* #thumbnail-slider ul li.active {
    border-color: #ff1f1f;
	-webkit-filter: initial;
	filter: initial;
} */
#thumbnail-slider li:hover {
    border-color: #ff1f1f;
	/*-webkit-filter: grayscale(50%);
	filter: grayscale(50%);*/
}

#thumbnail-slider .thumb {
    width:100%;
    height: 100%;
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center center;
    display:block;
    /*position:absolute;*/
    font-size:0;
}

#thumbnail-slider .thumb .img-responsive.product-image-small {
  opacity: 0;
  width: 0;
}

/* --------- navigation controls ------- */
/* The nav id should be: slider id + ("-prev", "-next", and "-pause-play") */

#thumbnail-slider-pause-play {display:none;} /*.pause*/

#thumbnail-slider-prev, #thumbnail-slider-next
{
    position: absolute;
    /* background-color:rgba(0,0,0,0.4); */
    width:100%;
    height:20px;
    line-height:20px;
    text-align:center;
    margin:0;
    color: #000;
    z-index:10;
    cursor:pointer;
    transition:opacity 0.6s;
    *background-color:#ccc;/*IE7 hack*/
    backface-visibility:hidden;
}

#thumbnail-slider-prev {
    top:0;
}

#thumbnail-slider-next {
    bottom:0;
}
#thumbnail-slider-next.disabled, #thumbnail-slider-prev.disabled {
    opacity:0.1;
    cursor:default;
}


/* arrows */
#thumbnail-slider-prev::before, #thumbnail-slider-next::before {
    position:absolute;
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    margin-left:-5px;
    border-left: 3px solid #000;
    border-top: 3px solid #000;
}

#thumbnail-slider-prev::before {
    top:7px;
    -ms-transform:rotate(-45deg);/*IE9*/
    -webkit-transform:rotate(45deg);
    transform: rotate(45deg);
}

#thumbnail-slider-next::before {
    bottom:7px;
    -ms-transform:rotate(135deg);/*IE9*/
    -webkit-transform:rotate(-135deg);
    transform: rotate(-135deg);
}






/*------ slider for 500px below screens -------*/

#thumbnail-slider2 {
    margin:0 auto; /*center-aligned*/
    width:100%;/*width:400px;*/
    /* max-width:100px; */
    padding:20px;
    box-sizing:border-box;
    position:relative;
    -webkit-user-select: none;
    user-select:none;
}

#thumbnail-slider2 div.inner {
    /*the followings should not be changed */
    position:relative;
    overflow:hidden;
    padding:2px 0;
    margin:0;
}


#thumbnail-slider2 div.inner ul {
    /*the followings should not be changed */
    white-space:nowrap;
    position:relative;
    left:0; top:0;
    list-style:none;
    font-size:0;
    padding:0;
    margin:0;
    float:left!important;
    width:auto!important;
    height:auto!important;
}

#thumbnail-slider2 ul li {
    display:inline-block;
    *display:inline!important; /*IE7 hack*/
    border:2px solid #e3e3e3;
    margin:0;
    margin-right:10px; /* Spacing between thumbs*/
    transition:border-color 0.3s;
    box-sizing:content-box;
    text-align:center;
    vertical-align:middle;
    padding:0;
    position:relative;
    list-style:none;
    backface-visibility:hidden;
}

#thumbnail-slider2 ul li.active {
    border-color: #ff1f1f;
}

#thumbnail-slider2 .thumb {
    opacity:1;
    width:100%;
    height: 100%;
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center center;
    display:block;
    position:absolute;
    font-size:0;
}
#thumbnail-slider2 .thumb img {
    max-height: 60px;
    max-width: 59.2286px;
}

/* --------- navigation controls ------- */
/* The nav id should be: slider id + ("-prev", "-next", and "-pause-play") */

#thumbnail-slider2-pause-play {display:none;} /*.pause*/

#thumbnail-slider2-prev, #thumbnail-slider2-next
{
    opacity:1;
    position: absolute;
    /* background-color:#e3e3e3; */
    *background-color:#e3e3e3;/*IE7 hack*/
    backface-visibility:hidden;
    width:22px;
    height:60px;
    line-height:60px;
    top: 50%;
    margin:0;
    margin-top:-30px;
    color:white;
    z-index:10;
    cursor:pointer;
}

#thumbnail-slider2-prev {
    left:0px; right:auto;
}

#thumbnail-slider2-next {
    left:auto; right:0px;
}
#thumbnail-slider2-next.disabled, #thumbnail-slider2-prev.disabled {
    opacity:0.3;
    cursor:default;
}


/* arrows */
#thumbnail-slider2-prev::before, #thumbnail-slider2-next::before {
    position: absolute;
    top: 23px;
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-left: 3px solid black;
    border-top: 3px solid black;
}

#thumbnail-slider2-prev::before {
    left:7px;
    -ms-transform:rotate(-45deg);/*IE9*/
    -webkit-transform:rotate(-45deg);
    transform: rotate(-45deg);
}

#thumbnail-slider2-next::before {
    right:7px;
    -ms-transform:rotate(135deg);/*IE9*/
    -webkit-transform:rotate(135deg);
    transform: rotate(135deg);
}

/*Responsive settings*/
@media only screen and (max-width:736px){

    #thumbnail-slider2 {padding:10px 26px;}

    #thumbnail-slider2-prev {left:0px;}

    #thumbnail-slider2-next {right:0px;}
}
