/* Carousel */

#quote-carousel {
    padding: 0 10px 30px 10px;
    margin-top: 30px;
    /* Control buttons  */
    /* Previous button  */
    /* Next button  */
    /* Changes the position of the indicators */
    /* Changes the color of the indicators */
}

#quote-carousel .carousel-control {
    background: none;
    color: #CACACA;
    font-size: 2.3em;
    text-shadow: none;
    margin-top: 30px;
    position: absolute;
    top: 0;
    bottom: 0;

    width: 15%;
    font-size: 20px;

    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
    filter: alpha(opacity=50);
    opacity: .5;
}
#quote-carousel .carousel-control.left {
    left: -60px;
}
#quote-carousel .carousel-control.right {
    right: -60px;
}
#quote-carousel .carousel-indicators {
    right: 50%;
    top: auto;
    bottom: 0px;
    margin-right: -19px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;    
}
#quote-carousel .carousel-indicators li {
    width: 50px;
    height: 50px;
    margin: 5px;
    cursor: pointer;
    border: 4px solid #CCC;
    border-radius: 50px;
    opacity: 0.4;
    overflow: hidden;
    transition: all 0.4s;
    text-indent: initial;
}
#quote-carousel .carousel-indicators .active {
    background: #333333;
    width: 128px;
    height: 128px;
    border-radius: 100px;
    border-color: #3CA636;
    opacity: 1;
    overflow: hidden;
}
.carousel-inner {
    min-height: 300px;
}
#quote-carousel .carousel-item blockquote {
    border-left: none;
    margin: 0;
}
}
#quote-carousel .carousel-item blockquote p {
    font-size: 1.5em;
}
#quote-carousel .carousel-item blockquote p:before {
    content: "\f10d";
    font-family: 'Fontawesome';
    float: left;
    margin-right: 10px;
}

#quote-carousel .carousel-item {
     height: initial; 
     background-color: #fff; 
}

#quote-carousel .img-responsive{
    display: block;
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width: 480px) {
#quote-carousel .carousel-indicators .active {
    width: 80px;
    height: 80px;
 }

}