/* 
 *  Core Owl Carousel CSS File
 *  v1.3.3
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
  float: left;
}

.owl-controls {
  top: -200px;
  width: 100%;
  text-align: center;
  display: inline-block;
  margin-top: -50px;
}

@media (max-width: 768px) {  /* adjust for smaller screens */
  .owl-controls {
    top: -120px;
  }
}

.owl-controls a {
  color: #336699;
}

.owl-controls a:hover {
  color: #336699;
}

.owl-controls .bg-prev,
.owl-controls .bg-next {
  position: absolute;
  z-index: 10;
  width: 50px;
  height: 50px;
  background: #fff;
  border: 1px solid #336699;
  transform: rotate(45deg);
}

.owl-controls .bg-prev:before,
.owl-controls .bg-next:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border: 2px solid #336699;
}

.owl-controls .prev,
.owl-controls .next {
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 32px;
}

.owl-controls .prev {
  left: 15px;
}

.owl-controls .next {
  right: 15px;
}

.owl-controls .prev.active,
.owl-controls .next.active {
  background-image: none;
  outline: 0;
  box-shadow: none;
}

.owl-controls .prev:active,
.owl-controls .next:active {
  background-image: none;
  outline: 0;
  box-shadow: none;
}

/* Pagination controls */
.owl-theme .owl-controls .owl-page {
  cursor: pointer;
  display: inline-block;
  zoom: 1; /* IE7 fix */
}

.owl-theme .owl-controls .owl-page a {
  display: block;
  width: 12px;
  height: 12px;
  margin: 0px 5px;
  opacity: 0.5;
  border-radius: 20px;
  background: transparent;
  border: 2px solid #888;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  opacity: 1;
  display: inline-block;
}

/* Prevent text selection */
.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Fix for backface visibility */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
