@charset "utf-8";
/* CSS Document */


/**
 * A simple sample carousel skin.
 *
 * This skin includes a sample arrows.svg file that may be edited with the free
 * illustration application InkScape (http://inkscape.org).
 *
 * CSS and icons by Nathan Haug.
 */

#related-products {
  text-align: center;
}

#related-products .jcarousel-container-horizontal {
  width: 100%;
  height: 360px;
  padding: 20px 65px;
  margin: auto;
  box-sizing:border-box;
}

#related-products .jcarousel-container-vertical {
  width: 100%;
  max-width:265px;
  height: 390px;
  padding: 40px 20px;
  margin: auto;
}

#related-products .jcarousel-clip-horizontal {
  width: 100%;
  overflow: hidden;
}

#related-products .jcarousel-clip-vertical {
  height: 360px;
  overflow: hidden;
}

#related-products .jcarousel-item {
  padding: 0;
  width: 100%;
  height: 390px;
  overflow: hidden;
  list-style: none;
  background: transparent;
}

#related-products .jcarousel-item-horizontal {
  margin: 0 15px;
}

#related-products .jcarousel-item-vertical {
  margin: 10px 0;
}

#related-products .jcarousel-item-placeholder {
  background: transparent url('../images/throbber.gif') no-repeat center center;
  color: #000;
}

/**
 * Buttons
 */
#related-products .jcarousel-next {
  display: block;
  width: 53px;
  height: 50px;
  background-image: url('../images/arrow-right.png');
  -webkit-transition: all 0.5s ease 0s; /* Safari */
  transition: all 0.5s ease 0s;
}

#related-products .jcarousel-prev {
  display: block;
  width: 53px;
  height: 50px;
  background-image: url('../images/arrow-left.png');
  -webkit-transition: all 0.5s ease 0s; /* Safari */
  transition: all 0.5s ease 0s;
}

#related-products .jcarousel-next-disabled,
#related-products .jcarousel-prev-disabled {
  display: none;
  -webkit-transition: all 0.5s ease 0s; /* Safari */
  transition: all 0.5s ease 0s;
}

/**
 * Horizontal Buttons
 */
#related-products .jcarousel-prev-horizontal {
  position: absolute;
  top: 140px;
  left: 10px;
  background-position: 0 0;
  -webkit-transition: all 0.5s ease 0s; /* Safari */
  transition: all 0.5s ease 0s;
}
#related-products .jcarousel-prev-horizontal:hover {
  opacity: 0.6;
  filter: alpha(opacity=60); /* For IE8 and earlier */
}
#related-products .jcarousel-prev-horizontal:active {
  opacity: 0.5;
  filter: alpha(opacity=50); /* For IE8 and earlier */
}

#related-products .jcarousel-next-horizontal {
  position: absolute;
  top: 140px;
  right: 10px;
  background-position: 0 0;
  -webkit-transition: all 0.5s ease 0s; /* Safari */
  transition: all 0.5s ease 0s;
}
#related-products .jcarousel-next-horizontal:hover {
  opacity: 0.6;
  filter: alpha(opacity=60); /* For IE8 and earlier */
}
#related-products .jcarousel-next-horizontal:active {
  opacity: 0.5;
  filter: alpha(opacity=50); /* For IE8 and earlier */
}

/**
 * Vertical Buttons
 */
#related-products .jcarousel-prev-vertical {
  position: absolute;
  top: 10px;
  left: 55px;
  width: 38px;
  height: 25px;
  background-image: url('../images/arrow-up.png');
  -webkit-transition: all 0.5s ease 0s; /* Safari */
  transition: all 0.5s ease 0s;
}
#related-products .jcarousel-prev-vertical:hover {
  opacity: 0.6;
  filter: alpha(opacity=60); /* For IE8 and earlier */
}
#related-products .jcarousel-prev-vertical:active {
  opacity: 0.5;
  filter: alpha(opacity=50); /* For IE8 and earlier */
}

#related-products .jcarousel-next-vertical {
  position: absolute;
  bottom: 10px;
  left: 55px;
  width: 38px;
  height: 25px
  background-image: url('../images/arrow-down.png');
  -webkit-transition: all 0.5s ease 0s; /* Safari */
  transition: all 0.5s ease 0s;
}
#related-products .jcarousel-next-vertical:hover {
  opacity: 0.6;
  filter: alpha(opacity=60); /* For IE8 and earlier */
}
#related-products .jcarousel-next-vertical:active {
  opacity: 0.5;
  filter: alpha(opacity=50); /* For IE8 and earlier */
}

#related-products .jcarousel-navigation {
  margin: 0;
  padding: 0;
}

#related-products .jcarousel-navigation li {
  display: inline;
  margin: 0 2px 0 0;
  padding: 0;
  background: none;
}

#related-products .jcarousel-navigation li.active a {
  font-weight: bold;
  text-decoration: none;
}

