/**
 * Element Name: Logo Carousel
 */

[class*="eplus-logo-carousel-"] .owl-nav button:before {
    display: none;
}

[class*="eplus-logo-carousel-"] .owl-nav {
    position: absolute;
    top: 40%;
    left: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    opacity: 0;
    transition: 0.3s;
    padding: 0 15px;
    pointer-events: none;
}

[class*="eplus-logo-carousel-"].owl-carousel .owl-nav button {
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 38px;
    text-align: center;
    background: #ddd;
    color: #999;
    border-radius: 4px;
    outline: none;
    transition: 0.3s;
    pointer-events: auto;
}

[class*="eplus-logo-carousel-"].owl-carousel .owl-nav button i {
    font-size: 24px;
    line-height: inherit;
}

[class*="eplus-logo-carousel-"].owl-carousel:hover .owl-nav {
    opacity: 1;
}

[class*="eplus-logo-carousel-"].owl-carousel .owl-nav button:hover {
    background: #3a3a3a;
    color: #fff;
}

/**
* Owl Dots
*/

[class*="eplus-logo-carousel-"].owl-carousel .owl-dots {
    position: absolute;
    width: 100%;
    text-align: center;
}

[class*="eplus-logo-carousel-"].owl-carousel .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    outline: none;
    background: #dedede;
    transition: 0.3s;
    border-radius: 10px;
}

[class*="eplus-logo-carousel-"].owl-carousel .owl-dots .owl-dot:hover {
    background: #3a3a3a;
}

[class*="eplus-logo-carousel-"].owl-carousel .owl-dots .active {
    width: 26px;
    background: #3a3a3a;
}

/**
* Single Item
*/

[class*="eplus-logo-carousel-"] .logo-single-link {
    display: block;
    color: #fff;
    text-align: center;
}