/**
 * @version     1.0.0
 * @package     Testimonial Carousel
 *
 * @copyright   Copyright (C) 2017. Zolly Solutions. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      Asfaque Ali Ansari <info@zollysolutions.com> - http://www.zollysolutions.com
 */

.testimonial-carousel {
    margin-bottom: 20px;
    padding: 0 40px;
    position: relative;
}

.testimonial-inner {
    max-width: 1800px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    position: absolute;
    bottom: -30px;
    width: 100%;
    text-align: center;
}
.testimonial-carousel .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(54,54,54,0.6);
    border-radius: 100%;
    display: inline-block;
    margin: 0 4px;
    cursor: pointer;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    background: rgba(54,54,54,1);
}


.testimonial-carousel .owl-prev, 
.testimonial-carousel .owl-next {
    position: absolute;
    top: calc(50% - 18px);
    height: 36px;
    width: 36px;
    color: #fff;
    font-size: 32px;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
    background: #83b3e5;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.testimonial-carousel .owl-prev{
    left: -30px;
}
.testimonial-carousel .owl-next {
    right: -30px;
}

.testimonial {
    display: flex;
    justify-content: space-between;
}

.testimonial .img-wrapper {
    min-width: 130px;
    max-width: 140px;
    flex-grow: 1;
    margin: 5px 10px 10px;
}

.testimonial .img-wrapper img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

.testimonial-content .content-block {
    font-size: 16px;
    line-height: 22px;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial .content-author {
    color: #555;
}

@media (max-width: 767px) {
    .testimonial {
        display: block;
    }
    .testimonial .img-wrapper {
        margin: 0 auto 20px;
    }
    .testimonial .testi-content {
        text-align: center;
    }
}