/*
    bxSlider CSS

    This contains all the default css for bxSlider

    _GLOBAL
    _SLIDERS
    _CAROUSELS
    _CRAWLERS

    Media Queries
    _LARGE


*/

/* ==============================================================================
/* ====== _GLOBAL
/* ============================================================================= */

.bxslider ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bxslider .bx-controls {
    display: block;
    text-align: center;
}

.bxslider .bx-controls-direction {
    left: 0;
    position: absolute;
    top: 50%;
    width: 100%;
}

/* ==============================================================================
/* ====== _SLIDERS
/* ============================================================================= */

.bxslider.slide {
    display: block;
    margin: 0 0 20px 0;
    /*max-height: 350px;*/
    /*overflow: hidden;*/
    position: relative;
    width: 100%;
}

.bxslider.slide li {
    text-align: center;
}

.bxslider.slide .bx-controls-direction {
    margin-top: -30px;
}

.bxslider.slide .bx-pager {
    display: inline-block;
    margin: 10px 0 0 0;
}

.bxslider.slide .bx-pager-item {
    float: left;
}

.bxslider.slide .bx-pager-item a {
    background: #e5e5e5;
    color: transparent;

    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;

    display: block;
    font: 0/0 a;
    height: 13px;
    margin-right: 5px;
    text-shadow: none;
    width: 13px;
}

.bxslider.slide .bx-controls-direction i {
    font-size: 50px;
}

.bxslider.slide .bx-pager-item a.active {
    background: #333;
}


/* ==============================================================================
/* ====== _THUMBNAILS
/* ============================================================================= */

.bxslider .slider-thumbnails {
    display: block;
    margin: 10px 0;
}

.bxslider .slider-thumbnails a {
    float: left;
    width: 24%;
    margin: 0 0.5%;
}

.bxslider .slider-thumbnails a.active {
    outline: 2px solid #2a87a5;
}

.bxslider .slider-thumbnails a:active {
    transform: none;
    -o-transform: none;
    -ms-transform: none;
    -moz-transform: none;
    -webkit-transform: none;
}


/* ==============================================================================
/* ====== _CAROUSELS
/* ============================================================================= */

.bx-slider.carousel ul {
    padding: 0 20px;
}

.bxslider .bx-controls-direction a {
    color: #B4B4B4;
    font-size: 30px;
    opacity: 0.5;
    position: absolute;

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.bxslider .bx-controls-direction a.bx-next {
    margin-right: 20px;
    right: 0;
}

.bxslider .bx-controls-direction a.bx-prev {
    margin-left: 20px;
    left: 0;
}


/* ==============================================================================
/* ====== _CRAWLERS
/* ============================================================================= */

.bxslider.crawler .bx-wrapper {
    max-width: 958px !important;
}



/* ==============================================================================
/* ====== SMALL (MIN 320px - 767px MAX) MOBILE SPECIFIC ELEMENTS & STYLES
/* ============================================================================ */

@media only screen and (min-width: 320px) and (max-width: 767px) {

    .bxslider.slide .bx-controls-direction i {
        font-size: 19px;
    }

}


/* ==============================================================================
/* ====== _LARGE (MIN WIDTH ONLY - 980px) PRIMARY DESKTOP ELEMENTS & STYLES
/* ============================================================================ */

@media only screen and (min-width: 980px) {

    .bxslider .bx-controls-direction a {
        opacity: 0.2;
    }

    .bxslider:hover .bx-controls-direction a {
        opacity: 1;
    }

}