/*-------------Single Carousel -----------*/
.single-carousel .owl-nav {
    position: relative;
    width: 100%;
    height: 20px;
}
.single-carousel .owl-nav .owl-prev, .single-carousel .owl-nav .owl-next {
    font-size: 0;
    position: absolute;
}
.single-carousel .owl-nav .owl-prev {
    left: 5%;
}
.single-carousel .owl-nav .owl-next {
    right: 5%;
}
.single-carousel .owl-nav .owl-prev::before, .single-carousel .owl-nav .owl-next::before {
    font-family: 'Sportotvet';
    font-size: 20px;
    color:#00e676;
}
.single-carousel .owl-nav .owl-prev::before {
    content: '\e923';
}
.single-carousel .owl-nav .owl-next::before {
    content: '\e900';
}
.single-carousel .owl-dots {
    text-align: center;
    position: relative;
    top: -15px;
    width: 80%;
    margin: 0 auto;
}
.single-carousel .owl-dot {
    width: 10px;
    height: 10px;
    background-color: #01e576;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    cursor: pointer;
}
.single-carousel .owl-dot.active {
    background-color: #191a26;
}