﻿/* PROCENTIA CUSTOMIZED CAROUSEL
    RJT 11/15
-------------------------------------------------- */

/* Carousel base class */
.carousel {
    height: 250px;
    margin-bottom: 20px;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
    z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel .item {
    height: 250px;
    background-color: #777;
}

.carousel-inner > .item > img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 250px;
}

.carousel h1 {
    color: #FFFFFF;
    font-size: 42px !important;
}

.carousel p {
    color: #FFFFFF;
    font-size: 22px !important;
}

.carousel-caption {
    bottom: 40px;
}

.carousel-inner > .item > a > img {
    max-width:none;
}


/* Glyphicons: 
    By default, the carousel uses chevrons.
    To substitute "chevron" for "circle-arrow" need to include additional styling.
    To do this css has been taken from bootstap.css and modified for circle-arrows
    RJT 11/15
*/
@media screen and (min-width: 768px) {
    .carousel-control .glyphicon-circle-arrow-left {
        margin-left: -15px;
    }

    .carousel-control .glyphicon-circle-arrow-right {
        margin-right: -15px;
    }
}

.carousel-control .glyphicon-circle-arrow-left {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
    left: 50%;
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
}


.carousel-control .glyphicon-circle-arrow-right {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
    right: 50%;
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
}

/* end of Glyphicons */
