/** VARIABLES
===================================*/
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  margin-bottom: 0;
  padding: 0;
  *zoom: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.bx-wrapper img {
  max-width: 100%;
  display: block;
}

.bxslider {
  margin: 0;
  padding: 0;
}

ul.bxslider {
  list-style: none;
}

.bx-viewport {
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
}



/** THEME
===================================*/
.bx-wrapper {
  border: 0;
  background: #fff;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: -30px;
  width: 100%;
}

/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url('images/bx_loader.gif') center center no-repeat #ffffff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}



/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
  left: 2rem;
  transition: all 200ms;
  opacity: 0.2;
  background: top left no-repeat url('images/icon-arrow-circle-left-white.svg');
  background-size: 36px 36px;
}

.bx-wrapper .bx-prev:hover {
  opacity: 0.75;
}

.bx-wrapper .bx-next {
  right: 2rem;
  transition: all 200ms;
  opacity: 0.2;
  background: top left no-repeat url('images/icon-arrow-circle-right-white.svg');
  background-size: 36px 36px;
}

.bx-wrapper .bx-next:hover {
  opacity: 0.75;
}

.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -18px;
  outline: 0;
  width: 36px;
  height: 36px;
  text-indent: -9999px;
  z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}



@media screen and (min-width: 768px) {

  .bx-wrapper .bx-prev {
    left: 2.25rem;
  }

  .bx-wrapper .bx-next {
    right: 2.25rem;
  }

}


@media screen and (min-width: 1200px) {

  .bx-wrapper .bx-prev {
    left: 3rem;
    background-size: 44px 44px;
  }

  .bx-wrapper .bx-next {
    right: 3rem;
    background-size: 44px 44px;
  }

  .bx-wrapper .bx-controls-direction a {
    margin-top: -22px;
    width: 44px;
    height: 44px;
  }

}


@media screen and (min-width: 1500px) {

  .bx-wrapper .bx-prev {
    left: 4rem;
  }

  .bx-wrapper .bx-next {
    right: 4rem;
  }

}




