/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none;
}

.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
}

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}

/* Setup item */
.owl-column-wrapp {
    padding: 0;
}

.item {
    margin: 0 15px;
}

.item img.img-responsive {
    display: block;
    width: 100%;
    height: auto;
}

.owl-theme {
    margin-top: 20px;
    text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-buttons div {
    font-family: 'FontAwesome';
    color: #FFF;
    display: inline-block;
    zoom: 1;
    *display: inline; /*IE7 life-saver */
    margin: 5px;
    padding: 3px 15px;
    width: 40px;
    text-align: center;
    font-size: 14px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background: #2b2b2b;
    filter: Alpha(Opacity=50); /*IE7 fix*/
    opacity: 0.5;
}

.owl-theme .owl-buttons div.owl-prev:after {
    content: "\f053";
}

.owl-theme .owl-buttons div.owl-next:after {
    content: "\f054";
}

.owl-theme.owl-rtl .owl-buttons div.owl-prev:after {
    content: "\f054";
}

.owl-theme.owl-rtl .owl-buttons div.owl-next:after {
    content: "\f053";
}

    /* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-buttons div:hover {
    filter: Alpha(Opacity=100); /*IE7 fix*/
    opacity: 1;
    text-decoration: none;
}

/* Top Controls */
.topControls,
.topControls-left,
.topControls-right {
    padding-top: 60px;
}

.topControls.owl-theme .owl-buttons div,
.topControls-left.owl-theme .owl-buttons div,
.topControls-right.owl-theme .owl-buttons div {
    position: absolute;
    top: 0;
}

.topControls.owl-theme .owl-buttons div.owl-prev {
    left: 50%;
    margin-left: -45px;
}

.topControls.owl-theme .owl-buttons div.owl-next {
    right: 50%;
    margin-right: -45px;
}

.topControls-left.owl-theme .owl-buttons div.owl-prev {
    left: 10px;
}

.topControls-left.owl-theme .owl-buttons div.owl-next {
    left: 60px;
}

.topControls-right.owl-theme .owl-buttons div.owl-prev {
    right: 10px;
}

.topControls-right.owl-theme .owl-buttons div.owl-next {
    right: 60px;
}

.leftControls-right.owl-theme .owl-buttons div {
    position: absolute;
    background: none;
    padding: 0;
    top: 50%;
    color: #616161;
    margin-top: -15px;
    font-size: 0;
    height: auto;
    width: auto;
    line-height: 1;
    cursor: pointer;
}

.leftControls-right.owl-theme .owl-buttons div:after {
    font-size: 34px;
}

.leftControls-right.owl-theme .owl-buttons div.owl-prev {
    left: 0;
    margin-left: 0;
}

.leftControls-right.owl-theme .owl-buttons div.owl-next {
    right: 0;
    margin-right: 0;
}

.leftControls-right.owl-theme.owl-rtl .owl-buttons div.owl-prev {
    left: auto;
    right: -5px;
    margin-left: 0;
}

.leftControls-right.owl-theme.owl-rtl .owl-buttons div.owl-next {
    right: auto;
    left: -5px;
    margin-right: 0;
}

.leftControls-right.owl-theme .owl-buttons div.owl-prev:hover,
.leftControls-right.owl-theme .owl-buttons div.owl-next:hover {
    background: none;
}

/* Styling Pagination*/

.owl-theme .owl-page {
    display: inline-block;
    zoom: 1;
    *display: inline; /*IE7 life-saver */
}

.owl-theme .owl-page span {
    display: block;
    width: 12px;
    height: 12px;
    margin: 5px 4px;
    filter: Alpha(Opacity=50); /*IE7 fix*/
    opacity: 0.5;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #2b2b2b;
}

.owl-theme .owl-page.active span,
.owl-theme .owl-page:hover span {
    filter: Alpha(Opacity=100); /*IE7 fix*/
    opacity: 1;
}

/* If PaginationNumbers is true */

.owl-theme .owl-page span.owl-numbers {
    height: auto;
    width: auto;
    color: #FFF;
    padding: 2px 10px;
    font-size: 12px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

/* preloading images */
.owl-item.loading {
    min-height: 150px;
    background: url(../../img/AjaxLoader.gif) no-repeat center center
}