﻿/** VARIABLES
		===================================*/
/** RESET AND LAYOUT
		===================================*/
.sr-carousel {
    position: relative;
    padding: 0;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

    .sr-carousel img {
        max-width: 100%;
        display: block;
    }
/** THEME
		===================================*/

    .sr-carousel .bx-pager,
    .sr-carousel .bx-controls-auto {
        position: absolute;
        bottom: 15px;
        width: 100%;
    }
    /* LOADER */
    .sr-carousel .bx-loading {
        /*
			min-height: 50px;
			background: url('images/bx_loader.gif') center center no-repeat #ffffff;
			height: 100%;
			width: 100%;
			position: absolute;
			top: 0;
			left: 0;
			z-index: 2000;
*/
        display: none;
    }
    /* PAGER */
    .sr-carousel .bx-pager {
        text-align: center;
        font-size: 0;
        color: #666;
        padding-top: 0;
        line-height: 0;
        z-index: 1000;
    }

        .sr-carousel .bx-pager.bx-default-pager a {
            background: #666;
            text-indent: -9999px;
            display: block;
            width: 10px;
            height: 10px;
            margin: 0 5px;
            outline: 0;
            border-radius: 50%;
            transition: 0.3s all;
            background: rgba(0,0,0,0.2);
        }

            .sr-carousel .bx-pager.bx-default-pager a.active {
                background: rgba(0,0,0,0.75);
            }

                .sr-carousel .bx-pager.bx-default-pager a.active:hover,
                .sr-carousel .bx-pager.bx-default-pager a.active:focus {
                    background: rgba(0,0,0,0.85);
                }

            .sr-carousel .bx-pager.bx-default-pager a:hover:not(.active),
            .sr-carousel .bx-pager.bx-default-pager a:focus:not(.active) {
                background: rgba(0,0,0,0.5);
            }

    .sr-carousel .bx-pager-item,
    .sr-carousel .bx-controls-auto .bx-controls-auto-item {
        display: inline-block;
        vertical-align: bottom;
        *zoom: 1;
        *display: inline;
    }

    .sr-carousel .bx-pager-item {
        font-size: 0;
        line-height: 0;
    }
    /* DIRECTION CONTROLS (NEXT / PREV) */
    .sr-carousel .bx-prev {
        left: 10px;
        transform: rotate(180deg);
    }

        .sr-carousel .bx-prev:hover,
        .sr-carousel .bx-prev:focus {
            background-position: 0 0;
        }

    .sr-carousel .bx-next {
        right: 10px;
    }

    .sr-carousel .bx-controls-direction a {
        position: absolute;
        top: 50%;
        margin-top: -12.5px;
        outline: 0;
        width: 25px;
        height: 25px;
        font-size: 0;
        z-index: 9999;
        border-radius: 50%;
        transition: 0.3s all;
    }

        .sr-carousel .bx-controls-direction a:hover {
            background-color: rgba(0,0,0,0.3);
        }

        .sr-carousel .bx-controls-direction a.disabled {
            display: none;
        }
    /* AUTO CONTROLS (START / STOP) */
    .sr-carousel .bx-controls-auto {
        text-align: center;
    }

        .sr-carousel .bx-controls-auto .bx-start {
            display: block;
            text-indent: -9999px;
            width: 10px;
            height: 11px;
            outline: 0;
            margin: 0 3px;
        }

            .sr-carousel .bx-controls-auto .bx-start:hover,
            .sr-carousel .bx-controls-auto .bx-start.active,
            .sr-carousel .bx-controls-auto .bx-start:focus {
                background-position: -86px 0;
            }

        .sr-carousel .bx-controls-auto .bx-stop:hover,
        .sr-carousel .bx-controls-auto .bx-stop.active,
        .sr-carousel .bx-controls-auto .bx-stop:focus {
            background-position: -86px -33px;
        }
    /* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
    .sr-carousel .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
        text-align: left;
        width: 80%;
    }

    .sr-carousel .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
        right: 0;
        width: 35px;
    }
    /* IMAGE CAPTIONS */
    .sr-carousel .bx-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        background: #666;
        background: rgba(80, 80, 80, 0.75);
        width: 100%;
    }

    .sr-carousel .slider {
        height: 100%;
    }

.sr-carousel-slide {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    min-height: 100%;
}

    .sr-carousel-slide > span {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-content: center;
        height: auto;
        padding: 1px 0;
    }

    .sr-carousel-slide > span > div {
        padding: -1px 0;
    }