
.bx-wrapper {
  position: relative;
}
.bx-viewport {
}

/* PAGER */
.bx-pager {
  position: absolute;
	right: 0;
	left: 0;
  text-align: center;
}
.bx-pager-item {
	display: inline-block;
}
.bx-pager a {
  display: block;
  background: #666;
  text-indent: -9999px;
  width: 10px;
  height: 10px;
  outline: 0;
  border-radius: 50%;
}
.bx-pager a.active {
  background: #000;
}

/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-controls-direction a {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  text-indent: -9999px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.bx-controls-direction .bx-prev {
  left: 20px;
  background-image: url(../img/common/btn_prev.png);
}
.bx-controls-direction .bx-next {
  right: 20px;
  background-image: url(../img/common/btn_next.png);
}
@media screen and (max-width: 768px){
  .bx-controls-direction a {
    width: 40px; height: 40px;
    background-size: 8px;
  }
  .bx-controls-direction .bx-prev {
    left: 10px;
  }
  .bx-controls-direction .bx-next {
    right: 10px;
  }
}


