/** VARIABLES
===================================*/
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
	/*margin-left: 30px;
  margin-bottom: 60px;*/
  padding: 0;
  *zoom: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.bx-wrapper img {
  max-width: 100%;
  display: block;
}
.bx-viewport {
  /* fix other elements on the page moving (in Chrome) */
  -webkit-transform: translateZ(0);
}



/** THEME
===================================*/
/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url('../img/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: -30px;
  background: url('../img/control.png') no-repeat 0 0;
}
.bx-wrapper .bx-prev:hover,
.bx-wrapper .bx-prev:focus {
  background-position: 0 -90px;
}
.bx-wrapper .bx-next {
  right: -30px;
  background: url('../img/control.png') no-repeat -20px 0;
}
.bx-wrapper .bx-next:hover,
.bx-wrapper .bx-next:focus {
  background-position: -20px -90px;
}
.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 20px;
  outline: 0;
  width: 20px;
  height: 90px;
  text-indent: -9999px;
  z-index: 999;
}
.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}


@media screen and (max-width: 519px) {
	.bx-wrapper .bx-prev {
		background-position: 0 -15px;
	}
	.bx-wrapper .bx-prev:hover,
	.bx-wrapper .bx-prev:focus {
		background-position: 0 -105px;
	}
	.bx-wrapper .bx-next {
		background-position: -20px -15px;
	}
	.bx-wrapper .bx-next:hover,
	.bx-wrapper .bx-next:focus {
		background-position: -20px -105px;
	}
	.bx-wrapper .bx-controls-direction a {
		top: 14px;
		height: 60px;
	}
}



