/* FL Slideshow Style */
.fl-slideshow {
    display: block;
    overflow: hidden;
    width: 100%;
    margin: 20px 0;
}
.fl-slideshow img { display: none; }
.fl-slideshow img:first-child { display: block; }
/* Display all images after fully loaded */
.fl-slideshow .owl-item img { display: block; }

/* Owl Controls */
.owl-carousel button,
.owl-carousel button:focus,
.owl-carousel button:active {
    background: transparent;
    box-shadow: none;
    border: none;
}
.owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
}
.owl-dots { text-align: center; line-height: 0; }
.owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    padding: 6px;
    text-align: center;
    vertical-align: middle;
}
.owl-dots .owl-dot span {
    display: block;
    font-size: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #ffffff;
    border-radius: 50%;
    transition: all 0.2s ease;
}
.owl-dots .owl-dot:hover span,
.owl-dots .owl-dot.active span { background: #ffffff; }
.owl-dots .owl-dot.active { padding: 3px; }

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    display: inline-block;
    top: 50%;
    margin-top: -24px;
    padding: 0;
    z-index: 5;
    width: 48px;
    line-height: 0;
    border-radius: 50%;
    text-align: center;
    font-size: 0;
    color: #ffffff;
    opacity: 0.5;
    transition: all 0.2s ease;
}
.owl-carousel .owl-nav button span { display: block; font-size: 50px; line-height: 48px; }
.owl-carousel .owl-nav button.owl-next { right: 0; }
.owl-carousel .owl-nav button.owl-prev { left: 0; }
.owl-carousel .owl-nav button:hover { opacity: 1; }


/* Transistions */
.fadeOut { animation-duration: 0.5s !important; }

.slideDown {
    animation-name: slideDown;
    animation-duration: 0.5s !important;
}

@-webkit-keyframes slideDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideUp {
    animation-name: slideUp;
    animation-duration: 0.5s !important;
}

@-webkit-keyframes slideUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}