<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
  float: left;
}

.owl-carousel,
.owl-stage-outer,
.owl-stage,
.owl-item,
.owl-lazy {
    height: 100%;
    position: relative;

}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  height: 100%;
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  height: 100%;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* .owl-item {
  background-image: url("../images/loading.gif");
  background-repeat: no-repeat;
  background-position: center;
} */

.owl-lazy {
  height: 100%;
  padding: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.owl-prev,
.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  padding: 20px 12px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
}

.owl-prev:hover,
.owl-next:hover {
  background-color: orange;
}

.owl-prev {
  border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0;
}
.owl-next {
  right: 0;
  left: auto;
  border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px 0 0 4px;
}

/* .owl-carousel .owl-nav .owl-prev:before {
  content: "\f053";
}

.owl-carousel .owl-nav .owl-next:after {
  content: "\f054";
} */

.owl-dots {
  position: absolute;
  z-index: 12;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.owl-dot {
  background-color: #ffffff;
  display: inline-block;
  width: 35px;
  height: 10px;
  transition: all 200ms ease-in-out;
  margin: 4px;
}

.owl-dot.active {
  background-color: #f47933;
}
</pre></body></html>