/**
 * @file
 * Visual styles for Team+'s owl carousels.
 */
.owl-carousel {
  margin: 0;
  padding: 0;
}
.owl-carousel .owl-item li {
  list-style: none;
}

/* Styling Next and Prev buttons */
.owl-nav {
  width: 100%;
  position: relative;
  height: 40px;
  margin-top: 0px;
}
.owl-nav div {
  display: inline-block;
  position: absolute;
  -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;
  font-size: 50px;
  top: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  border-width: 0;
  border-style: solid;
  border-color: transparent;
}
.owl-nav div:hover {
  text-decoration: none;
}
.owl-nav div:after {
  position: absolute;
  font-family: 'Font Awesome 5 Free', 'Font Awesome 5 Pro';
  font-weight: 900;
  font-size: 22px;
  left: 50%;
  top: 0;
  text-align: center;
  line-height: 40px;
  width: 20px;
  margin-left: -10px;
}
.owl-nav .owl-prev {
  margin-left: -50px;
  left: 50%;
}
.owl-nav .owl-prev:after {
  content: "\f060";
}
.owl-nav .owl-next {
  right: 50%;
  left: auto;
  margin-right: -50px;
}
.owl-nav .owl-next:after {
  content: "\f061";
}

/* Styling pager */
.owl-dots {
  text-align: center;
  margin-top: 20px;
}
.owl-nav ~ .owl-dots {
  margin-top: 0;
}
.owl-dot {
  display: inline-block;
  zoom: 1;
}
.owl-dot span {
  display: block;
  width: 20px;
  height: 5px;
  margin: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border-width: 2px;
  border-style: solid;
  -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;
}
.region--default-background .owl-dot span {
  border-color: var(--mt-color-default-contrast);
  background-color: var(--mt-color-default-contrast);
}
.region--bright-background .owl-dot span {
  border-color: var(--mt-color-bright-contrast);
  background-color: var(--mt-color-bright-contrast);
}
.region--pattern .owl-dot span {
  border-color: var(--mt-color-pattern-contrast);
  background-color: var(--mt-color-pattern-contrast);
}
.region--accent-background .owl-dot span {
  border-color: var(--mt-color-accent-contrast);
  background-color: var(--mt-color-accent-contrast);
}
.region--tint-background .owl-dot span {
  border-color: var(--mt-color-tint-contrast);
  background-color: var(--mt-color-tint-contrast);
}
.region--shade-background .owl-dot span {
  border-color: var(--mt-color-shade-contrast);
  background-color: var(--mt-color-shade-contrast);
}
.region--colored-background .owl-dot span {
  border-color: var(--mt-color-colored-contrast);
  background-color: var(--mt-color-colored-contrast);
}
.region--dark-colored-background .owl-dot span {
  border-color: var(--mt-color-dark-colored-contrast);
  background-color: var(--mt-color-dark-colored-contrast);
}
.region--dark-background .owl-dot span {
  border-color: var(--mt-color-dark-contrast);
  background-color: var(--mt-color-dark-contrast);
}
