/* Owl Dots Start */

.owl-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    right: 0;
    align-items: center;
    justify-content: center;
}

.owl-dot {
    border-radius: 50px;
    height: 10px;
    width: 10px;
    display: inline-block;
    background: #aaa;
    margin-left: 5px;
    margin-right: 5px;
    border: 1px solid #aaa;
}

.owl-dot.active {
    background: #f68936;
    border-color: #f68936;
    color: #f68936;
}

.owl-dots {
    text-align: center;
}

/* Owl Dots End */

/* Owl Nav Start */

.owl-nav.disabled {
    display: none;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 120px;
    height: 150px;
    font-size: 30px;
    background-color: #126b38;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width:1200px) {

    .owl-prev,
    .owl-next {
        width: 80px !important;
        height: 80px !important;
    }
}

.owl-prev {
    left: 10px;
    background: url('../../img/ArrowLeft.png') center no-repeat;
    background-size: cover;
}

.owl-next {
    right: 10px;
    background: url('../../img/ArrowRight.png') center no-repeat;
    background-size: cover;
}

/* Owl Nav End */