/**
 * @file
 * Visual styles for Enterprise+'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: -40px;
  width: 100%;
}
.block > h2.title ~ .content .owl-theme .owl-controls {
  position: absolute;
  top: -80px;
  width: 100%;
}
.region-content .block > h2.title ~ .content .owl-theme .owl-controls {
  top: -70px;
}
.owl-theme .owl-controls .owl-buttons {
  width: 100%;
  height: 0;
  position: relative;
}
.owl-theme .owl-controls .owl-buttons div {
  display: inline-block;
  position: absolute;
  width: 25px;
  height: 50px;
  -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;
}
.region--light-typography .owl-theme .owl-controls .owl-buttons div {
  color: #ffffff;
}
.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: 15px;
  line-height: 1;
  top: 0;
  width: 25px;
  line-height: 50px;
  text-align: left;
}
.owl-theme .owl-controls .owl-buttons .owl-prev {
  left: auto;
  right: 40px;
  padding-left: 25px;
}
.owl-theme .owl-controls .owl-buttons .owl-prev:after {
  content: "\f060";
  left: 0px;
}
.owl-theme .owl-controls .owl-buttons .owl-next {
  right: 15px;
  left: auto;
  padding-right: 25px
}
.owl-theme .owl-controls .owl-buttons .owl-next:after {
  content: "\f061";
  right: 0px;
  text-align: right;
}
