/**
 * @version     1.0.0
 * @package     Brand 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
 */

.brand-carousel {
    margin-bottom: 30px;
    padding: 0 30px;
}

.brand-carousel .owl-dots {
    position: absolute;
    bottom: -30px;
    width: 100%;
    text-align: center;
}
.brand-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;
}

.brand-carousel .owl-dots .owl-dot.active {
    background: rgba(54,54,54,1);
}


.brand-carousel .owl-prev, 
.brand-carousel .owl-next {
    position: absolute;
    top: calc(50% - 20px);
    height: 36px;
    width: 30px;
    color: #333;
    font-size: 32px;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
}

.brand-carousel .owl-prev{
    left: -30px;
}
.brand-carousel .owl-next {
    right: -30px;
}