/**
 * EXO_wl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/EXO_wlCarousel2/EXO_wlCarousel2/blob/master/LICENSE
 */
/*
 *  EXO_wl Carousel - Core
 */
.exo_wl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .exo_wl-carousel .exo_wl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .exo_wl-carousel .exo_wl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .exo_wl-carousel .exo_wl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .exo_wl-carousel .exo_wl-wrapper,
  .exo_wl-carousel .exo_wl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .exo_wl-carousel .exo_wl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .exo_wl-carousel .exo_wl-item img {
    display: block;
    width: 100%; }
  .exo_wl-carousel .exo_wl-nav.disabled,
  .exo_wl-carousel .exo_wl-dots.disabled {
    display: none; }
  .exo_wl-carousel .exo_wl-nav .exo_wl-prev,
  .exo_wl-carousel .exo_wl-nav .exo_wl-next,
  .exo_wl-carousel .exo_wl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .exo_wl-carousel .exo_wl-nav button.exo_wl-prev,
  .exo_wl-carousel .exo_wl-nav button.exo_wl-next,
  .exo_wl-carousel button.exo_wl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .exo_wl-carousel.exo_wl-loaded {
    display: block; }
  .exo_wl-carousel.exo_wl-loading {
    opacity: 0;
    display: block; }
  .exo_wl-carousel.exo_wl-hidden {
    opacity: 0; }
  .exo_wl-carousel.exo_wl-refresh .exo_wl-item {
    visibility: hidden; }
  .exo_wl-carousel.exo_wl-drag .exo_wl-item {
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .exo_wl-carousel.exo_wl-grab {
    cursor: move;
    cursor: grab; }
  .exo_wl-carousel.exo_wl-rtl {
    direction: rtl; }
  .exo_wl-carousel.exo_wl-rtl .exo_wl-item {
    float: right; }

/* No Js */
.no-js .exo_wl-carousel {
  display: block; }

/*
 *  EXO_wl Carousel - Animate Plugin
 */
.exo_wl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.exo_wl-carousel .exo_wl-animated-in {
  z-index: 0; }

.exo_wl-carousel .exo_wl-animated-out {
  z-index: 1; }

.exo_wl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	EXO_wl Carousel - Auto Height Plugin
 */
.exo_wl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	EXO_wl Carousel - Lazy Load Plugin
 */
.exo_wl-carousel .exo_wl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the exo_wl-item that breaks page layouts
		 */ }
  .exo_wl-carousel .exo_wl-item .exo_wl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .exo_wl-carousel .exo_wl-item .exo_wl-lazy[src^=""], .exo_wl-carousel .exo_wl-item .exo_wl-lazy:not([src]) {
    max-height: 0; }
  .exo_wl-carousel .exo_wl-item img.exo_wl-lazy {
    transform-style: preserve-3d; }

/*
 * 	EXO_wl Carousel - Video Plugin
 */
.exo_wl-carousel .exo_wl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.exo_wl-carousel .exo_wl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("exo_wl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.exo_wl-carousel .exo_wl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
      transform: scale(1.3, 1.3); }

.exo_wl-carousel .exo_wl-video-playing .exo_wl-video-tn,
.exo_wl-carousel .exo_wl-video-playing .exo_wl-video-play-icon {
  display: none; }

.exo_wl-carousel .exo_wl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.exo_wl-carousel .exo_wl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }
