/**
 * @file
 * Visual styles for Style+'s owl carousels.
 */

.owl-carousel {
  margin: 0;
  padding: 0;
}
.owl-carousel .owl-item li {
  list-style: none;
}

/* Styling Next and Prev buttons */
.owl-theme .owl-controls {
  position: absolute;
  top: -92px;
  width: 100%;
}
.owl-theme .owl-controls .owl-buttons {
  width: 100%;
  height: 0;
  position: relative;
}
.owl-theme .owl-controls .owl-buttons div {
  display: inline-block;
  font-size: 18px;
  position: absolute;
  line-height: 70px;
  text-transform: uppercase;
  color: #ebebeb;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.owl-theme .owl-controls .owl-buttons div:hover {
  text-decoration: none;
  color: #535353;
}
.region--light-typography .owl-theme .owl-controls .owl-buttons div:hover {
  color: #ffffff;
}
.owl-theme .owl-controls .owl-buttons div:after {
  font-family: "FontAwesome";
  position: absolute;
  font-size: 70px;
  line-height: 1;
  top: 0;
  width: 50px;
  text-align: left;
}
.owl-theme .owl-controls .owl-buttons .owl-prev {
  left: 15px;
  padding-left: 35px;
}
.owl-theme .owl-controls .owl-buttons .owl-prev:after {
  content: "\f104";
  left: 0px;
}
.owl-theme .owl-controls .owl-buttons .owl-next {
  right: 15px;
  left: auto;
  padding-right: 35px
}
.owl-theme .owl-controls .owl-buttons .owl-next:after {
  content: "\f105";
  right: 0px;
  text-align: right;
}
@media (max-width: 480px) {
  .owl-theme .owl-controls .owl-buttons div {
    font-size: 36px;
    line-height: 36px;
  }
  .owl-theme .owl-controls .owl-buttons div:after {
    font-size: 36px;
  }
  .owl-theme .owl-controls {
    top: -72px;
  }
}
