.bx-wrapper .bx-pager-item{
	position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    margin: 0 4px;
    text-align: center;
    z-index: 3;
}

.bx-wrapper .bx-pager.bx-default-pager a{
	position: absolute;
    width: 40px;
    height: 20px;
    left: 50%;
    margin-left: -20px;
    bottom: 0; 
    background-color: rgba(255,255,255,0);      
}
.bx-wrapper .bx-pager.bx-default-pager a:before{
	position: absolute;
	z-index: 1;
	bottom: 0;
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background-color: rgba(221,221,221,.9);
	-webkit-transition: all 0.3s 0.1s ease-out;
    transition: all 0.3s 0.1s ease-out;
}
.bx-wrapper .bx-pager.bx-default-pager a.active:before{	
	height: 5px;
}
.bx-wrapper .bx-pager.bx-default-pager a.active, .bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a:focus{
	background: none;
}
.bx-wrapper .bx-pager.bx-default-pager a:after{
	position: absolute;
	z-index: 2;
	bottom: 0;
	content: '';
	display: block;
	width: 0;
	height: 5px;
	-webkit-transition: width 0s ease;
    transition: width 0s ease;
}
.bx-wrapper .bx-pager.bx-default-pager a.active:after{		
	-webkit-animation: animations 5s ease;
    animation: animations 5s ease;
    width: 100%;
    -webkit-transition: width 5s ease;
    transition: width 5s ease;
	background-color: #e60012;
}

.bx-wrapper .bx-pager.bx-default-pager .ended a:before{		
	height: 5px;
	background-color: #e60012;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover:before, .bx-wrapper .bx-pager.bx-default-pager a:focus:before{	
	height: 5px;
}
@-webkit-keyframes animations{
	0%{width: 0}
	100%{width: 100%}
}
@keyframes animations{
	0%{width: 0}
	100%{width: 100%}
}