/** VARIABLES
===================================*/
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
position: relative;
padding: 0;

*zoom: 1;
-ms-touch-action: pan-y;
touch-action: pan-y;
}
.bx-wrapper img {
display: block;
max-width: 100%;
}
.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 {
}
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
position: absolute;
bottom: -30px;
width: 100%;
}
/* LOADER */
.bx-wrapper .bx-loading {
position: absolute;
top: 0;
left: 0;
z-index: 2000;
min-height: 50px;
width: 100%;
height: 100%;
background: url('images/bx_loader.gif') center center no-repeat #fff;
}
/* PAGER */
.bx-wrapper .bx-pager {
color: #666;
text-align: center;
font-weight: bold;
font-size: .85em;
font-family: Arial;
}
.bx-wrapper .bx-pager.bx-default-pager a {
display: block;
margin: 0 5px;
width: 10px;
height: 10px;
outline: 0;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
background: #666;
text-indent: -9999px;
}
.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: #000;
}
.bx-wrapper .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
display: inline-block;
vertical-align: bottom;

*zoom: 1;
*display: inline;
}
.bx-wrapper .bx-pager-item {
font-size: 0;
line-height: 0;
}
/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev { position: relative; left: 0;}
.bx-wrapper .bx-prev:after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    margin: -4px 0 0 -4px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #939393;
    border-bottom: 2px solid #939393;
    content: "";
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.bx-wrapper .bx-next { position: relative; right: 0;}
.bx-wrapper .bx-next:after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    margin: -4px 0 0 -4px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #939393;
    border-bottom: 2px solid #939393;
    content: "";
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.bx-wrapper .bx-controls-direction a {
position: absolute;
top: 50%;
z-index: 9999;
margin-top: -32px;
width: 32px;
height: 32px;
outline: 0;
text-indent: -9999px;
background: rgba(255,255,255,.5);
}
@media screen and (min-width: 769px){
    .bx-wrapper .bx-controls-direction a{ width: 40px; height: 40px; margin-top: -40px;}
}
.bx-wrapper .bx-controls-direction a.disabled {
display: none;
}
/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
text-align: center;
}
.bx-wrapper .bx-controls-auto .bx-start {
display: block;
margin: 0 3px;
width: 10px;
height: 11px;
outline: 0;
background: url('images/controls.png') -86px -11px no-repeat;
text-indent: -9999px;
}
.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:focus {
background-position: -86px 0;
}
.bx-wrapper .bx-controls-auto .bx-stop {
display: block;
margin: 0 3px;
width: 9px;
height: 11px;
outline: 0;
background: url('images/controls.png') -86px -44px no-repeat;
text-indent: -9999px;
}
.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:focus {
background-position: -86px -33px;
}
/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
width: 80%;
text-align: left;
}
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
right: 0;
width: 35px;
}
/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
position: relative;
width: 100%;
padding: 0 0 15px;
}
.bx-wrapper .bx-caption span {
    padding: 10px 0 0;
    display: block;
    line-height: 1.5;
    font-size: 1.3rem;
    text-align: center;
}

@media screen and (min-width: 769px){
    .bx-wrapper .bx-caption{ padding: 0 0 20px;}
    .bx-wrapper .bx-caption span{ padding: 20px 0 0; font-size: 1.5rem;}
}