
.bx-wrapper {
	position: relative;
}
.bx-wrapper img {
	max-width: 100%;
}

.bx-viewport {
	-webkit-transform: translatez(0);
	-moz-transform: translatez(0);
  -ms-transform: translatez(0);
  -o-transform: translatez(0);
  transform: translatez(0);
}

/* PAGER */
.bx-pager {
	position: absolute;
	width: 100%;
	text-align: center;
	bottom: -25px;
}
.bx-pager .bx-pager-item {
	display: inline-block;
}
.bx-pager a {
	background: #d1c0a5;
	text-indent: -9999px;
	display: block;
	width: 15px;
	height: 15px;
	margin: 0 8px;
	outline: 0;
	border-radius: 50%;
}
.bx-pager a.active {
	background: #6c962a;
}

/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-controls-direction a {
	position: absolute;
	top: 50%;
	outline: 0;
	text-indent: -9999px;
	z-index: 50;
	width: 40px;
	height: 40px;
	background-size: 40px;
	margin-top: -20px;
}
.bx-prev {
	left: -10px;
	background-image: url(../img/common/btn_prev.png);
}
.bx-next {
	right: -10px;
	background-image: url(../img/common/btn_next.png);
}

@media screen and (max-width: 640px) {
	.bx-controls-direction a {
		width: 26px;
		height: 26px;
		background-size: 26px;
		margin-top: -13px;
	}
	.bx-prev {
		left: 5px;
	}
	.bx-next {
		right: 5px;
	}
}