/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


/** RESET AND LAYOUT
===================================*/

.bx-wrapper {
	position: relative;
	padding: 0;
	*zoom: 1;
}

.bx-wrapper img {
	max-width: 100%;
	display: block;
}

/** THEME
===================================*/

.bx-wrapper .bx-viewport {
	
	/*fix other elements on the page moving (on Chrome)*/
	-webkit-transform: translatez(0);
	-moz-transform: translatez(0);
    	-ms-transform: translatez(0);
    	-o-transform: translatez(0);
    	transform: translatez(0);
		

}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: 10px;
	width: 100%;
}


/* LOADER */

.bx-wrapper .bx-loading {
	min-height: 50px;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}

/* PAGER */

.bx-wrapper .bx-pager {
	text-align: right;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #ccc;
	width:1000px;
	left:50%;
	margin-left:-500px;
	bottom:37px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #ccc;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	display: block;
	width: 12px;
	height: 12px;
	margin: 0 4px;
	outline: 0;
	-moz-border-radius: 6px;
	-webkit-border-radius:6px;
	border-radius:6px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #2a6c50;
	opacity:1;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
	left:37px;
	background:url(../images/index/ico-prev_white_001.png) left top no-repeat;
	background-size:contain;
}

.bx-wrapper .bx-next {
	right:37px;
	background:url(../images/index/ico-next_white_001.png) left top no-repeat;
	background-size:contain;
}

.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -35px;
	outline: 0;
	width:36px;
	height:70px;
	text-indent: -9999px;
	z-index: 9999;
}

.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;
	text-indent: -9999px;
    width: 47px;
    height: 36px;
    background: url(../images/index/btn-slide_002.png) left top no-repeat;
    background-size: 47px auto;
    transition: none;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 47px;
    height: 36px;
    background: url(../images/index/btn-slide_001.png) left top no-repeat;
    background-size: 47px auto;
    border-left: 1px solid #767676;
    border-right: 1px solid #767676;
    transition: none;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
    background-position: left -36px;
    
}


/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
    width: 1000px;
    left: 50%;
    margin-left: -500px;
    bottom: 21px;
    text-align: right;
    box-sizing: border-box;
    line-height: 1;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}

.bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}

@media screen and (max-width: 760px) {
	
.bx-controls-direction {
    display: none;
}
.bx-wrapper .bx-pager {
    text-align: center;
    width: auto;
    margin-left: 0;
    left:auto;
    bottom:auto;
    text-align: center;
    position: static;
}

    .bx-controls {
        position: absolute;
        top:220px;
        display: flex;
        width: 100%;
        flex-direction: row-reverse;
        justify-content: center;
    }
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
    width: auto;
    bottom: auto;
    left: auto;
    margin-left: 0;
    text-align: center;
    position: static;
}
    
}
