/* Caja */
.bx-wrapper {
    position: relative;
    margin-bottom: 36px;
}

/* Imágenes */
.bx-wrapper img {
    display: block;
    max-width: 100%;
}

.bx-viewport {
    background: #444;
}

/* Botónes de selección */
.bx-pager, .bx-controls-auto {
    margin-bottom: 18px;
    padding-top: 9px;
    width: 100%;
    height: 36px;
    background-color: #3cd;
}

.bx-pager {
    float: left;
    width: 80%;
    padding-left: 2.5%;
    text-align: left;
    font-size: 1rem;
}

.bx-controls-auto {
    float: right;
	right: 0;
	width: 20%;
}

.bx-pager-item, .bx-controls-auto-item {
    display: inline-block;
}

.bx-default-pager a {
    display: block;
    margin: 0 3px;
    width: 18px;
    height: 18px;
    font-weight: 600;
    text-align: center;
    color: white;
    outline: 0;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.5);
}

.bx-default-pager a:hover {
    color: white;
    background-color: #444;
}

.bx-default-pager a.active {
    color: #444;
    background-color: white;
}

/* Cargador */
.bx-wrapper .bx-loading {
	min-height: 50px;
	background: url(../imagenes/iconos/loader.gif) center center no-repeat #fff;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}

/*---------- Botones ----------*/
/* Anterior */
.bx-prev {
    left: 2.5%;
    background: url(../imagenes/iconos/btn_0001.svg) no-repeat;
}

.bx-prev:hover {
    background: url(../imagenes/iconos/btn_0011.svg) no-repeat;
}

/* Proximo */
.bx-next {
    right: 2.5%;
    background: url(../imagenes/iconos/btn_0002.svg) no-repeat;
}

.bx-next:hover {
    background: url(../imagenes/iconos/btn_0012.svg) no-repeat;
}

.bx-controls-direction a {
    position: absolute;
    top: 45%;
    width: 36px;
    height: 36px;
    outline: 0;
}

.bx-controls-direction a.disabled {
    display: none;
}

/* Play/Stop */
.bx-controls-auto {
    padding-right: 2.5%;
    text-align: right;
}

.bx-start {
    display: block;
    width: 18px;
    height: 18px;
    outline: 0;
    background: url(../imagenes/iconos/btn_0101.svg) no-repeat;
}

.bx-start:hover, .bx-start.active {
    background: url(../imagenes/iconos/btn_0111.svg) no-repeat;
}

.bx-stop {
    display: block;
    width: 18px;
    height: 18px;
    outline: 0;
    background: url(../imagenes/iconos/btn_0102.svg) no-repeat;
}

.bx-stop:hover, .bx-stop.active {
    background: url(../imagenes/iconos/btn_0112.svg) no-repeat;
}

/* Texto */
.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;
}