/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */

.owl-carouselAdr {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  overflow: hidden;
  z-index: 1; }
  .owl-carouselAdr .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carouselAdr .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carouselAdr .owl-stage-outer {
    position: relative;
    overflow: hidden;
    height: auto;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carouselAdr .owl-wrapper,
  .owl-carouselAdr .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carouselAdr .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carouselAdr .owl-item img {
    display: block;
    width: 100%; }
  .owl-carouselAdr .owl-nav.disabled,
  .owl-carouselAdr .owl-dots.disabled {
    display: none; }
  .owl-carouselAdr .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }

 .owl-carouselAdr .owl-nav .owl-next {
    width: 25px;
    height: 25px;
    display: block;
    border: 0;
    outline: none;
    background: url(../../images/arrow-right-hover.png) no-repeat center center;
    border: 2px solid #08865A;
    background-size: 18px;
    background-position: 2px;
    position: absolute;
    right: 0px;
    top: 10px;
    cursor: pointer;
    cursor: hand;
    z-index: 1000;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    -khtml-border-radius: 50px;
    border-radius: 50px;
    -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.owl-carouselAdr .owl-nav .owl-next:hover {
    background: url(../../images/arrow-right-hover.png) no-repeat center center;
    border: 2px solid #08865A;
    background-size: 18px;
    background-position: 3px;
}
.owl-carouselAdr .owl-nav .owl-prev {
    width: 25px;
    height: 25px;
    display: block;
    border: 0;
    outline: none;
    background: url(../../images/arrow-left-hover.png) no-repeat center center;
    border: 2px solid #08865A;
    background-size: 18px;
    background-position: 1px;
    position: absolute;
    right: 0px;
    top: 10px;
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    -khtml-border-radius: 50px;
    border-radius: 50px;
    -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.owl-carouselAdr .owl-nav .owl-prev:hover {
    background: url(../../images/arrow-left-hover.png) no-repeat center center;
    border: 2px solid #08865A;
    background-size: 18px;
    background-position: 1px;
}

.owl-carouselAdr .owl-next.disabled, .owl-carouselAdr .owl-prev.disabled  {
  display: none !important; /*Скрыть неактивную кнопку*/
}

@media only screen and (max-width: 675px) {
                   .owl-carouselAdr .owl-nav  {
                   position: relative;
                   margin: 10px auto 0 auto;
                   }
                   .owl-carouselAdr .owl-nav .owl-next {
                   right: 5px;
                   top: 20px;
                   }
                   .owl-carouselAdr .owl-nav .owl-prev {
                   right: 85px;
                   top: 20px;
                   }

}

  .owl-carouselAdr button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carouselAdr.owl-loaded {
    display: block; }
  .owl-carouselAdr.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carouselAdr.owl-hidden {
    opacity: 0; }
  .owl-carouselAdr.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carouselAdr.owl-drag .owl-item {
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carouselAdr.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carouselAdr.owl-rtl {
    direction: rtl; }
  .owl-carouselAdr.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carouselAdr {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carouselAdr .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carouselAdr .owl-animated-in {
  z-index: 0; }

.owl-carouselAdr .owl-animated-out {
  z-index: 1; }

.owl-carouselAdr .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carouselAdr .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
.owl-carouselAdr .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
.owl-carouselAdr .owl-item .owl-lazy[src^=""], .owl-carouselAdr .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
.owl-carouselAdr .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin: -10px 0 0 30px; }

.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 4px;
      background: #08865A;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 5px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #A1AFAA; }
