/*
 * jQuery FlexSlider v1.8
 * http://flex.madebymufffin.com
 *
 * Copyright 2011, Tyler Smith
 * Free to use under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
 #container {width: 80%; max-width: 800px; margin: 0 auto;}
/* Browser Resets */
.flex-container a:active,
.flexslider a:active {outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav {margin: 0; padding: 0; list-style: none;} 

/* FlexSlider Necessary Styles
*********************************/ 
.flexslider {width: 100%; margin: 0; padding: 0;}
.flexslider .slides > li {display: none;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {max-width: 100%; width:100%; display:block; outline:none; }
.prod-especial-pad.flexslider  .slides img { width:auto; }
.flex-pauseplay span {text-transform: capitalize;}

/* Clearfix for the .slides element */
.slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;} 
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; zoom: 1; z-index:0;}
.flexslider .slides {zoom: 1;}
.flexslider .slides > li {position: relative; padding:0px; }
#home-slider.flexslider .slides > li { background-position:right top; background-repeat:no-repeat; background-size: auto 100%; }
/* Suggested container for "Slide" animation setups. Can replace this with your own, if you wish */
.flex-container {zoom: 1; position: relative;}

/* Caption style */
/* IE rgba() hack */
.flex-caption { background:none;zoom: 1; }
.flex-caption { position:absolute; top:31%; padding:0px 0px; text-align:center;  width:100%;}
.flex-caption .row { padding:0px 20px; }
.flex-caption h1 { float:left; position:relative; display:inline-block; width:100%; font-size:42px; font-weight:400; line-height:42px; text-align:left; color:#f1f1f1; padding:10px 0px 3px; width:700px; }
.left-caption { float:left; margin-top:18%!important; left:3%; margin-top:0; position:relative; border:10px solid #7ab51b; }
.right-caption { float:right; right:12%; margin-top:0%; position:relative; border:10px solid #7ab51b; }
.flex-caption p { float:left; position:relative; display:inline-block; width:645px; font-size:15px; font-weight:300; line-height:25px; text-align:left; color:#FFFFFF; padding:10px 0px; }
.flex-caption a.view-more { clear:both; float:left; background:#646464; position:relative; font-size:13px; font-weight:300; color:#FFFFFF; line-height:20px; padding:6px 25px 6px 15px; margin-top:10px; -webkit-border-radius:3px; -moz-border-radius:3px; border-radius:3px; }
.flex-caption a.view-more:hover { background:#ff6633; }
.flex-caption a.view-more::after { dislply:block; position:absolute; content:''; background:url(../img/view-arrow.png) right center no-repeat; top:12px; right:12px; width:9px; height:9px; }

.flex-caption {
	-webkit-transform: translateY(-300px);
	-moz-transform: translateY(-300px);
	transform: translateY(-300px);
	opacity:0;
}

.flex-active-slide .flex-caption  {
-webkit-animation:fadeInLeft ease-in 1;
-moz-animation:fadeInLeft ease-in 1;
-o-animation:fadeInLeft ease-in 1;
animation:fadeInLeft ease-in 1;
-webkit-animation-fill-mode:forwards;
-moz-animation-fill-mode:forwards;
-o-animation-fill-mode:forwards;
animation-fill-mode:forwards;
-webkit-animation-duration:1.5s;
-moz-animation-duration:1.5s;
-o-animation-duration:1.5s;
animation-duration:1.5s;
}
@-webkit-keyframes fadeInLeft {
	0% { opacity: 0; -webkit-transform: translatex(-300px); }
	40% { opacity: 0; -webkit-transform: translatex(-300px); }
	100% { opacity: 1; -webkit-transform: translatex(0);  }
}
@-moz-keyframes fadeInLeft { 
	0% { opacity: 0; -moz-transform: translatex(-300px); }
	40% { opacity: 0; -moz-transform: translatex(-300px); }
	100% { opacity: 1; -moz-transform: translatex(0); }
}
@-o-keyframes fadeInLeft {
	0% { opacity: 0; -o-transform: translatex(-300px); }
	40% { opacity: 0; -o-transform: translatex(-300px); }
	100% { opacity: 1; -o-transform: translateY(0); }
}
@keyframes fadeInLeft {
	0% { opacity: 0; transform: translatex(-300px); }
	40% { opacity: 0; transform: translatex(-300px); }
	100% { opacity: 1; transform: translatex(0); }
}

/* Direction Nav */
.flex-direction-nav { display:block; }
.flex-direction-nav li a {width:32px; height:32px; margin: 0px 0 0; display: block;  position: absolute; top: 50%; cursor: pointer; text-indent: -9999px; z-index:9999; }
.flex-direction-nav li .flex-next {background-position: -32px 0; right:20px;background: url(../img/directional-nav.png) no-repeat 0 0; background-position: -32px 0; }
.flex-direction-nav li .flex-prev {left:20px; background: url(../img/directional-nav.png) no-repeat 0 0; background-position: 0px 0; }
.flex-direction-nav li .disabled {opacity: .3; filter:alpha(opacity=30); cursor: default;}

/* Control Nav */
.flex-control-nav { width: 100%; position: absolute; bottom: 15px; z-index:9999; text-align: center; line-height:10px;}
.flex-control-nav li {margin: 0 0 0 5px; display: inline-block; zoom: 1; *display: inline;}
.flex-control-nav li:first-child {margin: 0;}
.flex-control-nav li a {width:18px; height:18px; display: block; position:relative; background:#d4d4d4; border:4px solid #ffffff; border-radius:50%; cursor: pointer; text-indent: -9999px;}
.flex-control-nav li a:hover, .flex-control-nav li a.flex-active { background: #1d1d1b; }



