/***********************************************************************
*
*  Liquid Slider
*  Kevin Batdorf
*
*  http://liquidslider.com
*
*  GPL license 
*
************************************************************************/

/******************************************************
* No JavaScript
* Use this to apply styles when Javascript is disabled,
* and be sure to include the ".no-js" class in your html 
* markup.
*******************************************************/
.no-js .liquid-slider {
  height:350px;
  overflow:scroll;
}

/******************************************************
* Preloader
* Use this to apply styles when Javascript is disabled,
* and be sure to include the ".no-js" class in your html 
* markup.
*******************************************************/
.ls-wrapper .ls-preloader {  
  background: url(../images/loading.html) #f2f2f2 no-repeat center 75px;
  opacity:1;
  /* Do not edit below this line */
  width:100%;
  height:100%;
  position:absolute;
  top:0;
  left:0;
  z-index:2;
}

/******************************************************************
* Base Styles 
* The styles here will apply to everything. I recommend you keep
* the styles in here specific to mobile defices, then use
* the media queries at the bottom to define further styles for larger
* screen-sizes. Think Mobile First. But be cautious of how
* your site will look in older IE browsers.
*
* Additional media queries are at the bottom of this document
******************************************************************/
.ls-wrapper {
  margin:0 auto;
  /* Do not edit below this line */
  clear: both;
  /* overflow: auto; */
  position: relative;
}

/******************************************************
* Main Container
* This is the main container (minus the navigation).
* Be sure to match the width with the .panel class, 
* or it won't work properly. Also, width only applies
* if you are not using the responsive setting.
*
* The responsive slider will interpret the width as the
* max width instead
*******************************************************/
.ls-wrapper .liquid-slider {
  /* background: #f2f2f2; */
  /* width: 1030px; */
  /* Do not edit below this line */
  float: left;
  overflow: hidden;
  position: relative;
}
.ls-wrapper .panel-container {
  /* Do not edit below this line */
  position: relative;

}
.ls-wrapper .liquid-slider .panel-container .fade {
  /* Do not edit below this line */
  position: absolute;
  top: 0; 
  left: 0;
  display: block;
}

/******************************************************
* Panels
* This is for the panels. If you are using the 
* responsive setting, this will act as the max-width
* for the entire slider.
*******************************************************/
.ls-wrapper .liquid-slider .panel {  
  width: 1186px;
  /* Do not edit below this line */
  display: block;
  float: left;
}

/******************************************************
* These provide a base starting point for images and
* video. However, you will have to add more rules
* based on the content you use. Use the @media queries 
* at the bottom of this file.
*******************************************************/
.ls-wrapper .liquid-slider .panel img{
  /*
  width:100%;
  height:auto;  
  margin:0 5px;
  */
}

.ls-wrapper .liquid-slider .panel video {
  /*
  width:100%;  
  height:auto;
  */
}

/******************************************************
* This is mainly used to adjust the padding inside each 
* panel. If you are using the responsive setting, you
* need to use the settings below as this will not apply.
*******************************************************/
.ls-wrapper .liquid-slider .panel-wrapper {  
  /* padding: 20px; */
  /* Do not edit below this line */
  position:relative;
}

/*****************************************************
* This will adjust styles for all navigation tabs
* less of course the select box used for mobile 
* navigation. The .current styles will apply only to 
* the current tab.
*
* You may use this section to create navigation for
* mobile devices if you set mobileNavigation: false
* Be sure to edit media queries for larger devices below
* I have included an example below in comments.
*
* .currentCrossLink refers to external crosslinking.
*******************************************************/
.ls-wrapper .ls-nav a {
  /* background: #d8d8d8;
  color: #333333; */
  margin-right: 1px;
  padding: 10px 15px;  
}
.ls-wrapper .ls-nav a:hover {
  background: #f2f2f2;
  color: #333333;
  text-shadow: none;
}
.ls-wrapper .ls-nav .current {
  background: #f9f9f9;
}
.currentCrossLink {
  font-weight: bold;
}
.ls-wrapper .ls-nav ul {  
  padding:0;
  /* Do not edit below this line */
  clear: both;
  display: block;
  margin: auto;
  overflow: hidden;
}
.ls-wrapper .ls-nav ul li {
  /* Do not edit below this line */
  display: inline;
  border: none;
}
.ls-wrapper .ls-nav ul li a {
 
  /* Do not edit below this line */
  display: block;
  float: left;
  text-decoration: none;
}
/*****************************************************
* Mobile Menu
* This will adjust styles for selectbox styles. I have
* included a simple example to create a custom select
* box.
*******************************************************/
.ls-wrapper .ls-nav {
  overflow:hidden;
  clear:both;
}
.ls-wrapper .ls-select-box {  
  /* Delete these if you want the standard select box.
     Also delete the rules below */

  width: 100%;
  height: 35px;
  overflow: hidden;
  background: url(../images/menu.html) no-repeat right #ddd;
  
}
.ls-wrapper .ls-select-box select {  
  /* If you want the standard select box, use 
  width:100%
  And delete the rest of the styling here */

  width: 150%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance:none;
  background: transparent;
  padding: 5px;
  font-size: 110%;
  border: none;
  height: 35px;
  cursor:pointer;
  outline: 0;
}

/******************************************************
* Arrows
* This section refers to both the non-graphical and 
* graphical navigation arrows. 
*
* Some settings will be overwritten when using the 
* responsive setting.
*******************************************************/
.ls-wrapper .ls-nav-left, .ls-wrapper .ls-nav-right {
  /* Do not edit below this line */
  float: left;
}
.ls-wrapper .ls-nav-left a, .ls-wrapper .ls-nav-right a {
  /* non-graphical arrows */
  background: #000;
  color: #fff;
  padding: 5px;
  width: 100px;
  /* Do not edit below this line */
  display: block;
  text-align: center;
  text-decoration: none;
}
.ls-wrapper .ls-nav-left-arrow, .ls-wrapper .ls-nav-right-arrow {
  position: absolute;
  width: 42px;
  height: 42px;
  cursor: pointer;
  top:50%;
  margin-top: -21px;
}
.ls-wrapper .ls-nav-left-arrow a, .ls-wrapper .ls-nav-right-arrow a {
  /* Do not edit below this line */
  display: block;
}
.ls-wrapper .ls-nav-left, .ls-wrapper .ls-nav-left-arrow {
  /* Do not edit below this line */
  clear: both;
}
.ls-wrapper .ls-nav-right-arrow {
  background: url(../images/nav.png) no-repeat top right rgba(20,20,20,.9);
}
.ls-wrapper .ls-nav-left-arrow {
  background: url(../images/nav.png) no-repeat top left rgba(20,20,20,.9);
}
.ls-wrapper .ls-nav-left-arrow:hover, .ls-wrapper .ls-nav-right-arrow:hover {
  /* Left graphical arrows hover */
  background-color: rgba(0,0,0,.5);
}
.ls-wrapper .ls-nav-left-arrow:active {
  /* Left graphical arrows click */
}
.ls-wrapper .ls-nav-right-arrow:active {
  /* Right graphical arrows click */
}
.arrows .liquid-slider {
  /* Margin between slider and arrows */
  margin: 0 10px;
}

/* Here are the main responsive styles. This mostly covers the arrows, and most of the settings can be applied above.*/
.ls-responsive .liquid-slider { 
  /* Do not edit below this line */
  width: 100%;
  margin: 0;
}
.ls-responsive .liquid-slider .panel .panel-wrapper {
/*   padding: 10px; */
  width:100%;
}
.ls-responsive .ls-nav-left {
  /* Left non-graphical arrows */
  /* Do not edit below this line */
  position: absolute;
  left: 0;
  z-index: 2;
}
.ls-responsive .ls-nav-left a {
  /* Left non-graphical arrows */
  background: #9A9A9A;
  width: 80px;
}
.ls-responsive .ls-nav-left a:hover {
  /* Left non-graphical hover */
  background: #747474;
}
.ls-responsive .ls-nav-right {
  /* Right non-graphical arrows */
  /* Do not edit below this line */
  position: absolute;
  right: 0;
  z-index: 2;
}
.ls-responsive .ls-nav-right a {
  /* Right non-graphical arrows */
  background: #9A9A9A;
  width: 80px;
}
.ls-responsive .ls-nav-right a:hover {
  /* Right non-graphical arrows hover */
  background: #747474;
}
.ls-responsive .ls-nav-left-arrow {
  /* Do not edit below this line */
  left: 0;
  z-index: 2;
}
.ls-responsive .ls-nav-right-arrow {
  /* Do not edit below this line */
  position: absolute;
  right: 0;
  z-index: 2;
}

.tp-carousel-posts.row {margin-bottom:0;}
.tp-carousel-posts.portf-cols .hentry {float:left;}
.tp-carousel-posts.portf-cols .hentry > div > a { display:block; line-height:0; }
.tp-carousel-posts h4 a {text-decoration:none; font-size:14px; font-weight:bold;}
.tp-carousel-posts.portf-cols .hover a {}
.tp-carousel-posts.portf-cols a span.title {
  height:100%;
  position:absolute;
  text-decoration:none;
  width:100%; 
  z-index:100;
  top:0;
  right:0;
  display:inline-block;
  color:#FFF;
  padding:100px 8% 0;
  line-height:1.8;
  opacity: 0;
  filter: alpha(opacity=0);
}
.tp-carousel-posts.portf-cols a span.title > span{display:block; margin-bottom:10px;}
.tp-carousel-posts.portf-cols a:hover span.title {padding:70px 8% 0; opacity:0.8; filter:alpha(opacity=80);}
.liquid-slider .panel p.add-info {text-transform:uppercase; font-size:11px;}
.clasic h4 {padding:0 0 5px;}
.clasic p {margin:3px 0;}
.add-info span {padding-right:6px;}

.liquid-slider.hover div .margin {margin:0 0 1px 1px; position:relative; overflow:hidden;}
.liquid-slider.hover .hentry {position:relative; float:left;}
.tp-carousel-posts .margin.clasic {padding:18px 25px 20px; margin:0 0 1px 0; border-bottom:solid 1px #EEE; border-left:solid 1px #EEE;}
.tp-carousel-posts.cols-1 .margin.clasic {border-left:0;}
.tp-carousel-posts  h2 + .hentry .margin.clasic {border-left:0;}


/* For Woocommerce Product */
.tp-carousel-posts.portf-cols .hentry .hover .add-to-cart-group {line-height:22px; position:absolute; bottom:15px; left:15px; z-index:102;}
.tp-carousel-posts.portf-cols .hentry .hover .add-to-cart-group > a.button {display:inline-block; line-height:22px; }
.clasic-woo p, #homepage .clasic-woo p {margin:0 0 9px;}
.tp-carousel-posts.portf-cols .hentry > .margin .button {display:inline-block; line-height:inherit; padding:5px 14px;}
.tp-carousel-posts .product h4 {height:24px; overflow:hidden;}
.for-woocomm .tp-carousel-posts.portf-cols .margin {position:relative;}
.tp-carousel-posts.portf-cols .hover a span.title span.price {font-size:16px; font-weight:normal;}
.for-woocomm .tp-carousel-posts.portf-cols a.button.added:before, .tp-carousel-posts.portf-cols .woocommerce a.button.added:before {position:absolute;top:0.35em;left:auto;right:-26px;}
.tp-carousel-posts.portf-cols .added_to_cart {content:''; text-indent:-9999px; position:absolute!important; bottom:25px; right:0; }
.tp-carousel-posts.portf-cols .added_to_cart:before {content:"\f07a";font-size:20px;position:absolute;height:22px;width:20px;top:0.35em;left:0;text-indent:0;font-family:FontAwesome;}
.tp-carousel-posts.portf-cols .add-to-cart-group > a {visibility:hidden;}
.tp-carousel-posts.portf-cols .add-to-cart-group > a.added_to_cart { bottom:4px; right:-1px; }
.tp-carousel-posts.portf-cols .add-to-cart-group > a.added_to_cart:before {display:inline-block; padding:5px 9px 6px; top:0;}
.tp-carousel-posts.portf-cols .hover:hover .add-to-cart-group > a {visibility:visible;}


/* For Small Device. */
@media only screen and (max-width: 959px) {
  .tp-carousel-posts.portf-cols.cols-3 .hentry, .tp-carousel-posts.portf-cols.cols-4 .hentry, 
  .tp-carousel-posts.portf-cols.cols-5 .hentry, .tp-carousel-posts.portf-cols.cols-6 .hentry {width:50%!important;}
  .hover .tp-carousel-posts.portf-cols .hentry img {width:100%;}

}

@media only screen and (min-width: 768px) {
  .ls-wrapper .liquid-slider .panel img{
    /* Example */
    /*
    width:24%;
    */
  }
  .ls-responsive .liquid-slider .panel .panel-wrapper {
    /* padding: 20px 35px; */
  }
}