/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* top: -3rem;
  right: 3.5rem; */
  z-index: 1;
  /* -webkit-tap-highlight-color: transparent;  */
}

.owl-theme .owl-nav .owl-prev span:first-child {
  font-size: 3rem;
  text-align: center;
  position: absolute;
  top: calc(100% - 250px);
  left: 0;
  background-color: #014156;
  color: white;
  padding-left: 1rem;
  padding-right: 1rem;
}

.owl-theme .owl-nav .owl-next span:first-child {
  font-size: 3rem;
  text-align: center;
  position: absolute;
  top: calc(100% - 250px);
  right: 0;
  background-color: #014156;
  color: white;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media screen and (max-width: 769px) {
  .owl-theme .owl-nav .owl-prev span:first-child {
    top: calc(100% - 240px);
  }

  .owl-theme .owl-nav .owl-next span:first-child {
    top: calc(100% - 240px);
  }
}

/* .owl-theme .owl-nav .owl-next span:hover {
  background-color: #f00;
  color: #FFF;
  position: absolute;
  top: calc(100% - 250px);
  right: 0;
  text-decoration: none;
} */

/* .owl-theme .owl-nav .owl-next span {
  left: 1rem;
} */

.owl-theme .owl-nav [class*='owl-'] {
  font-size: 4rem;
  /* margin-right: 1.1rem; */
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  outline: 0;
}

/* .owl-theme .owl-nav .owl-next {
  background-color: blueviolet;
} */

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default; 
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }
