.owl-theme {

    .owl-controls {
        margin-top: 10px;
        text-align: center;
        overflow: auto;

        .owl-buttons {
            float: right;

            div {
                font-family: "Verdana", "Helvetica", sans-serif;
                font-size: 25px;
                line-height: 1;
                display: inline-block;
                margin-right: 5px;
                opacity: 0.5;
                .transition;
                width: 28px;
                zoom: 1;

                &.owl-prev:before {
                    content: '<';
                }

                &.owl-next:before {
                    content: '>';
                }
            }
        }

        &.clickable .owl-buttons div:hover {
            /* Clickable class fix problem with hover on touch devices */
            /* Use it for non-touch hover action */
            opacity: 1;
            text-decoration: none;
            .transition;
        }

        .owl-pagination {
            float: left;
        }

        .owl-page {
            display: inline-block;
            zoom: 1;

            span {
                /* Styling Pagination*/
                background: @gray;
                display: block;
                height: 12px;
                margin: 5px 7px;
                opacity: 0.5;
                .radius(20px);
                width: 12px;

                &.owl-numbers {
                    color: @white;
                    font-size: 12px;
                    height: auto;
                    padding: 2px 10px;
                    .radius(30px);
                    width: auto;
                }

            }

        }

        &.clickable .owl-page:hover span,
        .owl-page.active span {
            /* If PaginationNumbers is true */
            opacity: 1;
        }

    }

    .owl-item > div {
        /* For positioning the caption box */
        position: relative;
    }

    p.flex-caption {
        background-color: @black;
        color: @white;
        bottom: 0;
        margin-bottom: 7px;
        .opacity(80);
        padding: 10px;
        position: absolute;
        text-decoration: none;
        width: 100%;
    }

}

.arconix-carousel .owl-item {
    margin-right: 3px;
}