
/* ============================================================
                        IOS SLIDER 
============================================================= */

/* BANNER INSIDE CONTAINER LAYOUT */

.ic-slider {
    height: auto !important;
    position: absolute !important;
    top: 0 !important;
    bottom: 0;
    width: 100% !important;
    overflow: visible !important;
    opacity: 0;
    transition: opacity .35s ease-in-out;
    -moz-transition: opacity .35s ease-in-out;
    -webkit-transition: opacity .35s ease-in-out;
}

    .ic-slider.visible {
        opacity: 1;
    }

    /* slider */
    .ic-slider .slider {
        height: auto !important;
        /* required */
        width: 100%;
        position: absolute !important;
        top: 0;
        bottom: 0;
        overflow: visible !important;
    }

        /* slide */
        .ic-slider .slider .slide {
            height: auto !important;
            /* required */
            float: left;
            position: absolute;
            top: 0;
            bottom: 0;
            width: 100%;
            overflow: visible !important;
        }

    .ic-slider.fade .slider .slide {
        display: none;
    }


.slide .bannerImage {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.slide .bannerImage {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -ms-behavior: url(/backgroundsize.min.htc);
}

/* ============================================================
                        BANNER TEXT
============================================================= */

.bannerText {
    position: absolute;
    bottom: 5px;
    font-size: .9em;
    right: 3%;
    border-radius: 3px;
    background: #333 url(../images/structure/iconCaption.png) 2px center no-repeat;
    background: rgba(0,0,0,0.8) url(../images/structure/iconCaption.png) 10px center no-repeat;
    color: #fff;
    padding: 4px 10px 4px 40px;
}

    .bannerText h2 {
        color: #fff;
        padding: 0;
        margin-bottom: 5px;
    }




/* ============================================================
                        CONTROLS
============================================================= */

.ic-slider-controls {
    width: 200px;
    position: absolute;
    bottom: 60px;
    left: 50%;
    margin-left: -100px;
    z-index: 1000;
    text-align: center;
    opacity: 0;
}

    .ic-slider-controls.visible {
        opacity: 1;
    }

    .ic-slider-controls a {
        display: inline-block;
        width: 40px;
        height: 40px;
    }

        .ic-slider-controls a:hover, .ic-slider-controls a:active {
            background-color: #000;
        }

    .ic-slider-controls .prev {
        background: #000 url(../images/structure/chevron-left-white2x.png) center center no-repeat;
        background: rgba(0,0,0,0.7) url(../images/structure/chevron-left-white2x.png) center center no-repeat;
        background-size: 20px auto;
    }

.no-backgroundsize .ic-slider-controls .prev {
    background: #000 url(../images/structure/chevron-left-white.png) center center no-repeat;
}

.ic-slider-controls .next {
    background: #000 url(../images/structure/chevron-left-white2x.png) center center no-repeat;
    background: rgba(0,0,0,0.7) url(../images/structure/chevron-right-white2x.png) center center no-repeat;
    background-size: 20px auto;
}

.no-backgroundsize .ic-slider-controls .next {
    background: #000 url(../images/structure/chevron-right-white.png) center center no-repeat;
}


.ic-slider-controls .pause {
    background: #000 url(../images/structure/slider-pause2x.png) center center no-repeat;
    background: rgba(0,0,0,0.7) url(../images/structure/slider-pause2x.png) center center no-repeat;
    background-size: 20px auto;
}

.no-backgroundsize .ic-slider-controls .pause {
    background: #000 url(../images/structure/slider-pause.png) center center no-repeat;
}



/* ============================================================
                        PAGINATION
============================================================= */


.ic-slider-pagination, .ic-slider-pagination li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ic-slider-pagination {
    display: block;
    width: 100%;
    text-align: center;
    padding-top: 20px;
}

    .ic-slider-pagination li {
        display: inline-block;
    }

        .ic-slider-pagination li a {
            display: block;
            margin: 0 7px;
            width: 10px;
            height: 10px;
            background: #545454;
            -webkit-border-radius: 90px;
            -moz-border-radius: 90px;
            border-radius: 90px;
        }

        .ic-slider-pagination li.current a {
            background: #f0702f;
        }

@media only screen and (max-width : 991px) {
}

@media only screen and (max-width : 767px) {
    .ic-slider-controls {
        display: none;
    }

    /* BANNER INSIDE CONTAINER LAYOUT */

    .ic-slider {
        bottom: 0 !important;
    }

    .bannerText {
        position: absolute;
        bottom: 0;
        font-size: .9em;
        right: 0;
        width: 100%;
        padding: 4px 40px 4px 40px;
        border-radius: 0;
    }

    .bannerTextCaption {
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

        .bannerText h2 {
            color: #fff;
            padding: 0;
            margin-bottom: 5px;
        }
}
