
.js-Carousel {
  margin: 0 auto 6vw 0;
  overflow: hidden;
  position: relative;
}

.js-Carousel > ul {
	margin: 0;
	padding: 0;
	width: 1000000px;
}

.js-Carousel > ul li {
	display: inline-block;
    list-style-type: none;
    text-align: center;
	transition: margin-left 0.8s ease;
}

.js-Carousel > ul li img {

	width: 100%;
	max-width: 100%;
}


.js-Carousel .js-Carousel-arrowPrev,
.js-Carousel .js-Carousel-arrowNext {

position: absolute;
    top: 50%;
    margin-top: -16px;
    outline: 0;
    border: none;
    width: 32px;
    height: 32px;
    text-indent: -9999px;
    z-index: 9999;
    cursor: pointer;
}
.js-Carousel .js-Carousel-arrowPrev:hover,
.js-Carousel .js-Carousel-arrowNext:hover {
  color: #aaaaaa;
}
.js-Carousel .js-Carousel-arrowPrev {
left: 10vw;
    background: url(/wp-content/themes/traction_factory/images/controls.png) 0 -32px no-repeat;
}
.js-Carousel .js-Carousel-arrowNext {
right: 10vw;
    background: url(/wp-content/themes/traction_factory/images/controls.png) -43px -32px no-repeat;
}




.js-Carousel .js-Carousel-dots {

	display: block;
    margin: 0 auto;
    width: 60vw;
    position: absolute;
    bottom: 0;
    left: 20vw;
    text-align: center;

  
  
}
.js-Carousel .js-Carousel-dots li {
  background: #666;
  border-radius: 0.75em;
  cursor: pointer;
  display: inline-block;
  height: 10px;
  margin: 0 5px;
  width: 10px;
  transition: all 0.2s ease;
}

.js-Carousel .js-Carousel-dots li.is-active {
  background: #feb62c;

}
.js-Carousel .js-Carousel-dots li:hover {
  background: #feb62c;
}


html.magnifying > body {
  overflow-x: hidden !important;
}
.magnify,
.magnify > .magnify-lens,
.magnify-mobile,
.lens-mobile { /* Reset */
  min-width: 0;
  min-height: 0;
  animation: none;
  border: none;
  float: none;
  margin: 0;
  opacity: 1;
  outline: none;
  overflow: visible;
  padding: 0;
  text-indent: 0;
  transform: none;
  transition: none;
}
.magnify {
  position: relative;
  width: auto;
  height: auto;
  box-shadow: none;
  display: inline-block;
  z-index: inherit;
}
.magnify > .magnify-lens { /* Magnifying lens */
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  /* Multiple box shadows to achieve the glass lens effect */
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.85),
    0 0 7px 7px rgba(0, 0, 0, 0.25),
    inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
  cursor: none;
  display: none;
  z-index: 99;
}
.magnify > .magnify-lens.loading {
  background: #333 !important;
  opacity: 0.8;
}
.magnify > .magnify-lens.loading:after { /* Loading text */
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  color: #fff;
  content: 'Loading...';
  font: italic normal 16px/1 Calibri, sans-serif;
  letter-spacing: 1px;
  margin-top: -8px;
  text-align: center;
  text-shadow: 0 0 2px rgba(51, 51, 51, 0.8);
  text-transform: none;
}

