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


/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
 body, html, img {
  margin: 0px;
  padding: 0px;
}

 .flex-container a:hover,
.flex-slider a:hover {
  outline: none;
}
.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.flex-pauseplay span {
  text-transform: capitalize;
}
/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
.flexslider {
  margin: 0;
  padding: 0;
  width:500px;
  height: 470px;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
.flexslider .slides img {
  width: 100%;
  display: block;
}
.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .flexslider .slides {
  display: block;
}
* html .flexslider .slides {
  height: 1%;
}
.no-js .flexslider .slides > li:first-child {
  display: block;
}
/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexslider {
  position: relative;
  zoom:1;
}
.flexslider .slides {
  zoom: 1;
}
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

@-moz-document url-prefix() {
  .loading .flex-viewport {
    max-height: none;
  }
}

.flex-direction-nav {
  *height: 0;
}
.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 50px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  overflow: hidden;
  cursor: pointer;
  font-size: 0px;
  display: block;
  background: url(../img/ko-freccia.png);
  background-size: 17px;
  background-repeat: no-repeat;
  background-position: center;
}



.flex-direction-nav a.flex-next {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
.flex-direction-nav .flex-prev {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  left: 0px;
}
.flex-direction-nav .flex-next {
  right: 0px;
  text-align: right;
}

.flex-direction-nav .flex-disabled {
  opacity: 0!important;
  filter: alpha(opacity=0);
  cursor: default;
  z-index: -1;
}

.flex-control-nav {
  width: 100%;
  display: none;
  position: absolute;
  right: 15px;
  text-align: right;
  font-size: 0px;
  width: 100%;
}

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

.flex-control-paging{
  display: none;
}


@media only screen and (min-width: 959px) {
  .flexslider .img {
      max-width: 50%;
      max-height: 50%;
      display: block;
      margin-left: auto;
              margin-right: auto;
  }
}


/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: -5px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: -5px;
  }
}



.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #fff;
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.flex-control-paging li a:hover,
.flex-control-paging li a.flex-active {
  background: #92531B; 
  cursor: default;
}