@import '../../sass/vendor/owl/2.1.6/core';
@import '../../sass/vendor/owl/2.1.6/animate';
@import '../../sass/vendor/owl/2.1.6/lazyload';


/*
 * 	Destinia theme - Owl Carousel CSS File
 */

$color-base:			$interactive-color !default;
$color-white:			#FFF !default;
$color-gray:			$brand-brown-medium !default;

//nav

$nav-color: 			$color-base !default;
$nav-color-hover:		$color-base !default;
$nav-font-size: 		14px !default;
$nav-rounded: 			3px !default;
$nav-margin: 			0 !default;
$nav-padding: 			11px 0 !default;
$nav-background: 		$color-white !default;
$nav-background-hover:	$color-white !default;
$nav-disabled-opacity: 	0 !default;

//dots

$dot-width:				10px !default;
$dot-height:			10px !default;
$dot-rounded:			30px !default;
$dot-margin: 			5px !default;
$dot-background:		$color-gray !default;
$dot-background-active:	$color-base !default;

@import '../../sass/vendor/owl/2.1.6/theme';

.responsive-owl-carousel {
  .owl-item {
    text-align: center;
  }
  // Styling Next and Prev buttons
  .owl-nav {
    margin-top: 0;
    text-align: center;
    -webkit-tap-highlight-color: transparent;

    [class*='owl-'] {
      color: $nav-color;
      font-size: $nav-font-size;
      margin: $nav-margin;
      padding: $nav-padding;
      background: $nav-background;
      display: inline-block;
      cursor: pointer;
      border-radius: 20px;
      border: 1px solid $colorBordes;
      box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
      display: block;
      width: 40px;
      height: 40px;
      text-align: center;
      appearance: none;
      position: absolute;
      top: 85px;

      &:hover {
        background: $nav-background-hover;
        color:$nav-color-hover;
        box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.12);
        text-decoration: none;
      }
      &.owl-prev {
        left: -15px;
      }
      &.owl-next {
        right: -15px;
      }
      @media (min-width: 1230px) {
        &.owl-prev {
          left: -20px;
        }
        &.owl-next {
          right: -20px;
        }
      }
      .nav__icon {
        width: 18px;
        height: 18px;
        display: inline-block;
        /*rtl:ignore*/
        [dir="rtl"] & {
          transform: rotate(-180deg);
        }
      }
    }
    .disabled {
      opacity: $nav-disabled-opacity;
      cursor: default;
    }
  }
  // Styling dots
  .owl-dots {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;

    .owl-dot {
      display: inline-block;
      zoom: 1;
      *display: inline;

      span {
        width: $dot-width;
        height: $dot-height;
        margin: $dot-margin;
        background: $dot-background;
        display: block;
        -webkit-backface-visibility: visible;
        transition: opacity 200ms ease;
        border-radius: 30px;
      }

      &.active,
      &:hover {
        span {
          background: $dot-background-active;
        }
      }
    }
  }
}
.responsive-owl-carousel-mobile-alt {
  overflow-y: hidden;
  overflow-x: auto;
  white-space: nowrap;
  padding: 0;
  margin: 0 0 15px;
  font-size: 0;
  &::-webkit-scrollbar {
    display: none;
  }
  .container-limited > &, .container-limited > .carousel-module > &, .lazy-module > & {
    padding: 0 15px;
    margin: 0 -15px 15px;
    @media (min-width: 1025px) {
      padding: 0;
      margin: 0 0 15px;
    }
  }
  .responsive-elem {
    display: inline-block;
    width: 260px;
    margin-top: 0;
    margin-bottom: 0;
    white-space: normal;
    vertical-align: top;
    @media (min-width: $grid-float-breakpoint) {
      width: 290px;
    }
    @media (min-width: $screen-lg-min) {
      width: 270px;
    }
    & + .responsive-elem {
      margin-left: 15px;
      @media (min-width: $grid-float-breakpoint) {
        margin-left: 30px;
      }
    }
  }
}


/* Corrección de tamaños de fotos para Móvil: EOC */

/* Small devices (tablets, 768px and up) */
@media (min-width: $screen-sm-min) {

}

/* Medium devices (desktops, 992px and up) */
@media (min-width: $screen-md-min) {

}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: $screen-lg-min) {

}
