/** VARIABLES
===================================*/
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  margin: 0 auto;
  padding: 0;
  *zoom: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.bx-wrapper img {
  max-width: 100%;
  display: block;
}
.bx-viewport {
  -webkit-transform: translatez(0);
}
/** THEME
===================================*/
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  width: 100%;
}
/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
/* PAGER */
.bx-wrapper .bx-pager {
	bottom: 0;
}
.bx-wrapper .bx-pager.bx-default-pager a {
  background: #ccc;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
	border-radius: 5px;
  margin: 0 10px 0 0;
  outline: 0;
}
.bx-wrapper .bx-pager .bx-pager-item:last-child a {
	margin-right: 0;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active,
.bx-wrapper .bx-pager.bx-default-pager a:focus {
  background: #7dcdf4;
}
.bx-wrapper .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  vertical-align: bottom;
}
.bx-wrapper .bx-pager-item {
  font-size: 0;
  line-height: 0;
}
/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-controls-direction a {
  position: absolute;
	display: block;
  top: 50%;
  margin-top: -19px;
  outline: 0;
  width: 35px;
  height: 35px;
  text-indent: -9999px;
  z-index: 9;
}
.bx-wrapper .bx-controls-direction a:hover {
	opacity: 0.7;
}
.bx-wrapper .bx-controls-direction a.disabled {
	background-color: #eeeeee;
	pointer-events: none;
}
.bx-wrapper .bx-prev:before,
.bx-wrapper .bx-next:before{
	content: "";
	position: absolute;
	top: 50%;
	margin-top: -19px;
  width: 35px;
  height: 35px;
	left: 0px;
	background-repeat: no-repeat;
	background-size: contain;
}
.bx-wrapper .bx-next {right: 0;}
.bx-wrapper .bx-next:before{background-image: url(/common_2019/img/arrow/arrow_circleblu_r.svg);}
.bx-wrapper .bx-prev {left: 0;}
.bx-wrapper .bx-prev:before{background-image: url(/common_2019/img/arrow/arrow_circleblu_l.svg);}
