/*
 * jQuery FlexSlider v2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */

/* Browser Resets */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* FlexSlider Necessary Styles
*********************************/
.flexslider {
  padding: 0;
  margin: 0;
}

.flexslider .slides > li {
  display: none;
  backface-visibility: hidden;
} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
  display: block;
  width: 100%;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

/* Clearfix for the .slides element */
.slides::after {
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  line-height: 0;
  content: ".";
}

html[xmlns] .slides {
  display: block;
}

* html .slides {
  height: 1%;
}

/* No JavaScript Fallback */

/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {
  display: block;
}

/* FlexSlider Default Theme
*********************************/
.flexslider {
  position: relative;
  margin: 0 0 60px;
  zoom: 1;
  background: #fff;
  border: 4px solid #fff;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgb(0 0 0 / 20%);
}

.flex-viewport {
  max-height: 2000px;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.flexslider .slides {
  zoom: 1;
}

.carousel li {
  margin-right: 5px;
}

/* Direction Nav */
.flex-direction-nav {
  *height: 0;
}

.flex-direction-nav a {
  position: absolute;
  top: 50%;
  display: block;
  width: 30px;
  height: 30px;
  margin: -20px 0 0;
  text-indent: -9999px;
  cursor: pointer;
  background: url("http://inzovucurve.org/wp-content/themes/hardy/css/images/bg_direction_nav.png")
    no-repeat 0 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.flex-direction-nav .flex-next {
  right: -36px;
  background-position: 100% 0;
}

.flex-direction-nav .flex-prev {
  left: -36px;
}

.flexslider:hover .flex-next {
  right: 5px;
  opacity: 0.8;
}

.flexslider:hover .flex-prev {
  left: 5px;
  opacity: 0.8;
}

.flexslider:hover .flex-next:hover,
.flexslider:hover .flex-prev:hover {
  opacity: 1;
}

.flex-direction-nav .flex-disabled {
  cursor: default;
  opacity: 0.3 !important;
  filter: alpha(opacity=30);
}

/* Control Nav */
.flex-control-nav {
  position: absolute;
  bottom: -40px;
  width: 100%;
  text-align: center;
}

.flex-control-nav li {
  display: inline-block;
  *display: inline;
  margin: 0 6px;
  zoom: 1;
}

.flex-control-paging li a {
  display: block;
  width: 11px;
  height: 11px;
  text-indent: -9999px;
  cursor: pointer;
  background: #666;
  background: rgb(0 0 0 / 50%);
  border-radius: 20px;
  box-shadow: inset 0 0 3px rgb(0 0 0 / 30%);
}

.flex-control-paging li a:hover {
  background: #333;
  background: rgb(0 0 0 / 70%);
}

.flex-control-paging li a.flex-active {
  cursor: default;
  background: #000;
  background: rgb(0 0 0 / 90%);
}

.flex-control-thumbs {
  position: static;
  margin: 5px 0 0;
  overflow: hidden;
}

.flex-control-thumbs li {
  float: left;
  width: 25%;
  margin: 0;
}

.flex-control-thumbs img {
  display: block;
  width: 100%;
  cursor: pointer;
  opacity: 0.7;
}

.flex-control-thumbs img:hover {
  opacity: 1;
}

.flex-control-thumbs .flex-active {
  cursor: default;
  opacity: 1;
}

@media screen and (width <= 860px) {
  .flex-direction-nav .flex-prev {
    left: 0;
    opacity: 1;
  }

  .flex-direction-nav .flex-next {
    right: 0;
    opacity: 1;
  }
}
