
@mixin apply_transition($transition-property, $transition-duration, $transition-timing) {
transition-property: $transition-property;transition-duration: $transition-duration;transition-timing-function: $transition-timing;



}
@mixin boxsizing() {
-moz-box-sizing:    border-box;   -webkit-box-sizing: border-box;    box-sizing:        border-box;
}


@mixin centerit() {
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
}

$mainclass : ".advancedscroller";

$transition-property: all;
$transition-duration: 0.3s;
$transition-timing: ease-out;

.advancedscroller{

  @include boxsizing();
  *{

    @include boxsizing();
  }

  >.items{
    display: none;


  }
}

/* -- functional styling */
.advancedscroller-con{ position:relative; width:100%;
}

.advancedscroller{
  position:relative; width:100%;
  min-height: 50px;



  /* ==== hide the images until loaded */
  .item-tobe{
    display: none; -webkit-backface-visibility: hidden;
    position:relative;
  }

  .item-tobe, .item{

      .feed-description{
        display: none;
      }





  }

  .center-it{

    @include centerit();

    width: 100%;


    text-align: center;
    >.caption{
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      -webkit-transform: translate(-50%,-50%);
      max-width: 60%;
      white-space: normal;

      >*{

      }
    }
    >.caption.fly-in{

      transform: translate3d(-50%,-50%,0) ;
      -webkit-transform: translate3d(-50%,-50%,0) ;
    }
  }

  .item{
    .description-wrapper{
      position: absolute;
      bottom: 0;
      right:0;

      width: 100%;
      max-width: 400px;



      .description-wrapper--icon-con{
        width: 40px;
        height:40px;
        position: absolute;
        bottom: 0;
        right:0;
        background-color: rgba(0,0,0,.2);

        cursor: pointer;
        $transition-property: background;
        $transition-duration: 0.3s;
        $transition-timing: ease-out;

        @include apply_transition($transition-property, $transition-duration, $transition-timing);

        >i{
          font-size: 18px;
          color: #FFFFFF;
          font-family: "FontAwesome", arial, serif;

          position: absolute;

          top:50%; left:50%;

          transform: translate(-50%,-50%);

          opacity: 1;



          $transition-property: all;
          $transition-duration: 0.3s;
          $transition-timing: ease-out;

          @include apply_transition($transition-property, $transition-duration, $transition-timing);

        }

        >i.fa-times{
          opacity:0;

          font-size: 18px;
        }
      }


      .description-wrapper--text{
        white-space: normal;


        background-color: #FFFFFF;
        padding: 30px;

        line-height: 1.8;

        position: absolute;
        right: 40px;
        bottom:0;

        width : calc(100% - 40px);

        opacity: 0;
        visibility: hidden;

        $transition-property: all;
        $transition-duration: 0.3s;
        $transition-timing: ease-out;

        @include apply_transition($transition-property, $transition-duration, $transition-timing);

        h4{
          font-family: "Lato",arial, serif;
          font-size: 25px;
          color: #212121;

          margin: 7px 0 17px;
          font-weight: 900;
          line-height: 1;

        }

        p{

          line-height: 1.92;
          margin-bottom: 2px;
          color: #444444;
        }


      }
    }
    .description-wrapper:hover{

      .description-wrapper--icon-con{
        background-color: #e74c3c;
      }
    }
    .description-wrapper.active{


      .description-wrapper--text{
        opacity: 1;
        visibility: visible;
      }
      .description-wrapper--icon-con{
        background-color: #e74c3c;
      }

      i.fa-info{
        opacity: 0;
        filter: blur(10px);
        -webkit-filter: blur(10px);
      }
      i.fa-times{
        opacity: 1;
        filter: blur(0px);
        -webkit-filter: blur(0px);
      }
    }

    .row{
      white-space: normal;
    }
  }

  .loaded .item{
    position: relative;
  }
  ul{ display:block; list-style:none; padding:0; margin:0;
  }

  ul > li{ display:block; list-style:none; padding:0; margin:0;
  }

  ul:after{ content: '\0020';
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
    clear:both;
  }


  $transition-property: height;
  $transition-duration: 0.3s;
  $transition-timing: ease-out;

  .thumbsCon{ display:block; overflow:hidden; position:relative;
    height: auto;
    @include apply_transition($transition-property, $transition-duration, $transition-timing);
  }

  .bulletsCon{ display:block; position:relative; z-index:4;
  }

  .bulletsCon:after{
    display:block; content: " ";
    clear: both;
  }




  $transition-property: left;
  $transition-duration: 0.9s;
  $transition-timing: ease-out;
   .thumbsClip{
    position:relative;
     white-space: nowrap;
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    @include apply_transition($transition-property, $transition-duration, $transition-timing);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); /* older webkit */
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.1);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.1);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.1);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.1);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.1); /* easeOutBack */
  }

  .thumbsClip > *{


    display: inline-block;
    float:none;
    vertical-align: top;
  }



  .the-thumb-con{
    position: relative;
  }
  .item .the-thumb{
    width: 100%;
    height: 100%;
    background-size: cover;
  }
  .item p:empty{
    display: none;
  }

  .item.needs-loading:not(.loaded){
    height: 10px;
  }
}

.advancedscroller.with-shadow{
  margin-bottom: 35px;
}
.advancedscroller.item-padding-30{
  margin-left: -15px;
  margin-right: -15px;
  width: auto;

  .thumbsClip > .item{
    padding-left: 15px;
    padding-right: 15px;
  }
}
.advancedscroller.with-shadow:before{
  content: "";
  position: absolute;top:100%; left:0;
  width: 100%;
  height: 33px;
  background-image: url(img/shadow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
}

.advancedscroller.no-need-for-nav{
  .bulletsCon{ display:none;
  }
  .arrowsCon{ display:none;
  }
}



.advancedscroller:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
  clear: both;
}

.advancedscroller.from-zoomfolio{


  overflow: visible;
  .items{
    display: none;
  }
}

img.fullwidth{ width:100%; display:block;
    }
/* -- ----------- --------
--- estethic styling
*/


@-webkit-keyframes preloader-semicircles-tween {
  0% {transform: rotate(0deg);-webkit-transform: rotate(0deg);}
  50% {transform: rotate(180deg);-webkit-transform: rotate(180deg);}
  100% {transform: rotate(360deg);-webkit-transform: rotate(360deg);}
}
@keyframes preloader-semicircles-tween {
  0% {transform: rotate(0deg);-webkit-transform: rotate(0deg);}
  50% {transform: rotate(180deg);-webkit-transform: rotate(180deg);}
  100% {transform: rotate(360deg);-webkit-transform: rotate(360deg);}
}

$border-visible:1px solid rgba(0,0,0,0.3);
$border-invisible:1px solid rgba(0,0,0,0);

.advancedscroller{


  .preloader, .preloader-squares1{

    width:128px;
    height:40px;
    background: transparent url(img/preloader.gif) center center no-repeat;
    margin-left: -64px; margin-top: -20px;
    position: absolute;
    top:50%; left:50%;
  }


  .preloader-semicircles{
    width:15px;
    height:15px;
    background:rgba(230,230,230,0.5);
    border-radius:50px;


    position:absolute;
    top:50%;
    left:50%;



    margin-left: -15px;
    margin-right: -15px;

    animation: preloader-semicircles-tween 1.4s infinite linear;
    -webkit-animation: preloader-semicircles-tween 1.4s infinite linear;
  }
  .preloader-semicircles:after{
    position:absolute;
    width:30px;
    height:30px;
    border-top:2px solid rgba(200,200 ,200,0.5);
    border-bottom:2px solid rgba(200,200,200,0.5);
    border-left:2px solid transparent;
    border-right:2px solid transparent;
    border-radius:50px;
    content:'';
    top:-10px;
    left:-10px;
    box-sizing: content-box;
  }



  .thumbsClip > *.currItem{
  }
  .bulletsCon{ height:20px; text-align:center; margin:15px auto;
    cursor: pointer;
  }

  .arrowsCon{

  }

  $transition-property: border, padding, opacity, visibility;
  $transition-duration: 0.5s;
  $transition-timing: ease-out;
  .thumbsClip > *{
    padding:0px 10px;
    @include apply_transition($transition-property, $transition-duration, $transition-timing);
  }

  .thumbsClip > *.last-in-row{
    border-right:$border-invisible;
  }

  .thumbsClip > *:last-child{
    border-right:$border-invisible;
  }



  $transition-property: opacity;
  $transition-duration: 0.3s;
  $transition-timing: ease-out;
  $size_arrow: 30px;
   .arrowsCon > .arrow-left,  .arrowsCon > .arrow-right{
    background-position:center center; background-repeat:no-repeat; background-color:transparent;
    background-image: url('img/arrow-left.png');
    width:$size_arrow;
    height: $size_arrow;
    position:absolute;
    left:5px;
    top:45%;
    margin-top:- ($size_arrow/2);
    cursor: pointer;
    opacity:0.69;
    @include apply_transition($transition-property, $transition-duration, $transition-timing)
  }
   .arrowsCon > .arrow-right{
    background-image: url('img/arrow-right.png');
    left:auto;
    right:5px;
    top:45%;
  }
   .arrowsCon > .arrow-left:hover,  .arrowsCon > .arrow-right:hover{
    opacity:1;
  }


  $transition-property: background,opacity,width,height;
  $transition-duration: 0.3s;
  $transition-timing: ease-out;
  $bulletsize: 7px;
   .bulletsCon span.bullet{
     width:$bulletsize; height:$bulletsize;
     background-repeat:no-repeat;
     border-radius: 50%;

     background-color: #555555;

     position: relative;
     top:50%;
     transform: translateY(-50%);

     opacity: 0.7;

     display:inline-block;
     vertical-align: top;
    margin-right: 5px;
    @include apply_transition($transition-property, $transition-duration, $transition-timing)
  }

   .bulletsCon span.bullet:hover,.bulletsCon span.bullet.active{
    background-position: 0 100%;

     opacity: 1;

     width: ($bulletsize + 2px);
     height: ($bulletsize + 2px);
  }
   .name{
    text-align: center;
    margin-top: 10px;

     overflow: hidden;
     text-overflow: ellipsis;
  }
   .price{
    text-align:center;
    margin-top:5px;
    font-weight:bold;
  }
   .price > span{
    display:inline-block;
  }
   .addtocart-con{
    text-align:center;
    margin-top:10px;
  }
   .addtocart-con > .button-addtocart{
    margin-top:0px;
  }

}




.advancedscroller.transition-fade,.advancedscroller.transition-flyout {
  .thumbsClip > *{
    opacity: 0;
    visibility: hidden;


    position: absolute;


  }

}


@-webkit-keyframes rotateBottomSideFirst {
  0% { }
  40% { -webkit-transform: rotateX(-15deg); opacity: .8; -webkit-animation-timing-function: ease-out; }
  100% { -webkit-transform: scale(0.8) translateZ(-200px); opacity:0; }
}
@keyframes rotateBottomSideFirst {
  0% { }
  40% { -webkit-transform: rotateX(-15deg); transform: rotateX(-15deg); opacity: .8; -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; }
  100% { -webkit-transform: scale(0.8) translateZ(-200px); transform: scale(0.8) translateZ(-200px); opacity:0; }
}

.advancedscroller.transition-flyout {
  .thumbsClip {


    -webkit-perspective: 600px;
    perspective: 600px;
    transform-style: preserve-3d;

    perspective-origin: 10% 10%;


    >*{

      top:100%;

      backface-visibility: hidden;
      transform: translate3d(0, 0, 0) rotateY(0deg);

      -webkit-transform-origin: 50% 50%;
      transform-origin: 50% 50%;

      opacity:1;

      $transition-property: all;
      $transition-duration: 0.5s;
      $transition-timing: ease-out;
      @include apply_transition($transition-property, $transition-duration, $transition-timing);
    }


    > .transitioning-out{


      transform: rotateX(10deg) translateZ(-130px);

      top:-50%;

      opacity:1;


    }
    > .transitioning-in{

      top:0;

      z-index: 300;

    }

    > .currItem{

      top:0;
    }

  }

}
.advancedscroller.transition-testimonials_transition_1{

  .testimonial-col-name{
    position: relative;
    $transition-property: all;
    $transition-duration: 0.3s;
    $transition-timing: ease-out;
    @include apply_transition($transition-property, $transition-duration, $transition-timing);

    transform: translate(0,50%);
  }
  .testimonial-col-quote{
    position: relative;
    $transition-property: all;
    $transition-duration: 0.3s;
    $transition-timing: ease-out;
    @include apply_transition($transition-property, $transition-duration, $transition-timing);


    transform: translate(50%,0);
  }

  .thumbsClip > *{
    position:absolute;
    top:0;
    left:0;
    opacity: 0;
    visibility: hidden;


  }

}

.testimonial-slide-con{
  padding: 100px 30px;
}
.advancedscroller.transition-testimonials_transition_1 .thumbsClip > *.currItem{
  opacity: 1;
  visibility: visible;


  .testimonial-col-name,.testimonial-col-quote{
    transform: translate(0%,0);
  }
}

.advancedscroller.transition-wipeoutandfade{




  .thumbsClip{

    $transition-property: none;
    $transition-duration: 0s;
    $transition-timing: linear;
    @include apply_transition($transition-property, $transition-duration, $transition-timing);

    white-space: nowrap;

    > *{
      opacity: 0;
      visibility: hidden;
      width:0;
      position: relative;



      .wipeout-wrapper{
        overflow: hidden;
        position: relative;
        width: 100%;

        top:0;
        left:0;

        .wipeout-wrapper-inner{
          position: relative;
        }
      }

      .wipeout-wrapper{
        overflow: hidden;
        position: absolute;
        width: 100%;
        height: 100%;

        top:0;
        left:0;

        .wipeout-wrapper-inner{
          position: relative;
          width: 100%;
          height: 100%;

          > .vplayer{

            width: 100%!important;
            height: 100%;
          }
        }
      }

      .wipeout-wrapper.is-video.wipeout-wrapper-transitioning{

        .wipeout-wrapper-inner{

          > .vplayer{


          }
        }
      }
    }

  }
}
.advancedscroller.transition-fade .thumbsClip > *.currItem,.advancedscroller.transition-wipeoutandfade .thumbsClip > *.currItem,.advancedscroller.transition-testimonials_transition_1 .thumbsClip > *.currItem,.advancedscroller.transition-flyout .thumbsClip > *.currItem{
  opacity: 1;
  visibility: visible;


}

        
.advancedscroller.swipe-enabled{
            cursor: move;
            cursor: -moz-grab;
            cursor: grab;
            cursor: url(img/openhand.cur) 4 4, move;
            }

$transition-property: left;
$transition-duration: 0s;
$transition-timing: linear;
.advancedscroller.swipe-enabled.closedhand {
            cursor: url(img/closedhand.cur) 4 4, move;
  .thumbsClip{
    @include apply_transition($transition-property, $transition-duration, $transition-timing);
  }
            }
.advancedscroller.center-v{
  .thumbsCon{
    position: absolute;
    top:50%;
    transform: translate(0,-50%);
  }
}


.advancedscroller.mode-onlyoneitem:not(.transition-slide){
  .thumbsCon{
    .thumbsClip{
      > li{
        width: 100%;
        border-right: 0;

      }
      >li:not(.visible-item){

        iframe{
          display: none;
        }

      }
    }
  }

  .vplayer{
    position: absolute;
    width: 100%;
    height: 100%;
  }
}
.advancedscroller.mode-onlyoneitem.transition-slide{
  .thumbsCon{
    .thumbsClip{
      >li:not(.visible-item){
        iframe{
          display: none;
        }

      }
    }
  }

}
.advancedscroller.islastpage{
  .thumbsClip > *.last-in-row{
    border-right:$border-visible;
  }
  .thumbsClip > *:last-child{
    border-right:$border-invisible;
  }
}

div.button-addtocart a{
  color: #fff;
}



.button-addtocart{
	font-family:Helvetica, Arial, sans-serif; background:rgba(0,0,0,0.5); padding:8px 15px; font-size:12px; text-align:center; 
	
  cursor: pointer;
  display: inline-block;
  margin: 10px 0;
  padding: 4px 10px;
  text-decoration: none;
  border-radius:3px;
color:#fafafa; 
border:1px solid rgba(0,0,0,0.5);
background: rgb(186,43,0);
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2JhMmIwMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZjFhMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(top, rgba(186,43,0,1) 0%, rgba(255,26,0,1) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(186,43,0,1)), color-stop(100%,rgba(255,26,0,1)));
background: -webkit-linear-gradient(top, rgba(186,43,0,1) 0%,rgba(255,26,0,1) 100%);
background: -o-linear-gradient(top, rgba(186,43,0,1) 0%,rgba(255,26,0,1) 100%);
background: -ms-linear-gradient(top, rgba(186,43,0,1) 0%,rgba(255,26,0,1) 100%);
background: linear-gradient(to bottom, rgba(186,43,0,1) 0%,rgba(255,26,0,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba2b00', endColorstr='#ff1a00',GradientType=0 );
        font-family:  'Lucida Grande', 'Lucida Sans Unicode', sans-serif;
font-size: 9px;
}
.old-price{
    margin-right:5px;
    color:red;
    text-decoration: line-through;
    }






.advancedscroller.mode-onlyoneitem{

  $transition-property: height;
  $transition-duration: 0.3s;
  $transition-timing: ease-out;

  .thumbsClip.center-it{
    position: absolute;
    margin-left: -50%;
  }

  .thumbsClip > *{
    padding:0px;
  }


  .thumbsClip li > img{
    display: block;
  }
  .thumbsClip li > a > img{
    display: block;
  }


}


.advancedscroller.item-padding-20{

  margin-left: -10px;
  margin-right: -10px;
  width: auto;
  .thumbsClip{

  }
}

.advancedscroller.skin-default{
  .thumbsClip > *{
    border-right:1px solid rgba(0,0,0,0.3);
  }

}


.advancedscroller.skin-white{
  margin-top:10px;
  a{
    color: inherit;
    text-decoration: none;
  }
  a:hover{
    opacity: 0.7;
  }
  .thumbsClip > *{
    padding:10px;
    border-right: 0;
  }
  .thumbsClip > *.last-in-row{
    padding:10px;
    border-right: 0;
  }
  $size_arrow: 30px;
  .arrowsCon > .arrow-left, .arrowsCon > .arrow-right{
    background-position:center center; background-repeat:no-repeat; background-color:transparent;
    background-image: url('img/arrow-left-white.png');
    width:$size_arrow;
    height: $size_arrow;
    position:absolute;
    left: auto;
    right:65px;
    top:-15px;
    margin-top:- ($size_arrow/2);
    cursor:pointer;
    opacity:0.69;
    z-index:4;
    @include apply_transition($transition-property, $transition-duration, $transition-timing)
  }
  .arrowsCon > .arrow-right{
    background-image: url('img/arrow-right-white.png');
    left:auto;
    right:45px;
    top:-15px;
  }

  .arrowsCon > .arrow-left:hover, .arrowsCon > .arrow-right:hover{
    opacity:1;
  }
}

.advancedscroller.skin-black{
  margin-top:10px;
  margin-bottom:60px;
  a{
    color: inherit;
    text-decoration: none;
  }
  a:hover{
    opacity: 0.7;
  }
  .thumbsClip > *{
    padding:10px;
    border-right: 0;
  }

  $size_arrow: 30px;

  .arrowsCon > .arrow-left, .arrowsCon > .arrow-right{
    background-position:center center; background-repeat:no-repeat; background-color:transparent;
    background-image: url('img/arrow-left-black-small.png');
    width:$size_arrow;
    height: $size_arrow;
    position:absolute;
    left: auto;
    right:20px;
    top:-15px;
    margin-top:- ($size_arrow/2);
    cursor:pointer;
    opacity:0.69;
    z-index:4;
    @include apply_transition($transition-property, $transition-duration, $transition-timing)
  }

  .arrowsCon > .arrow-right{
    background-image: url('img/arrow-right-black-small.png');
    left:auto;
    right:0px;
    top:-15px;
  }

  .arrowsCon > .arrow-left:hover, .arrowsCon > .arrow-right:hover{
    opacity:1;
  }


}

.advancedscroller.skin-inset{
  .thumbsClip > *{
    padding:0px;
  }
  $size_arrow: 40px;
  .arrowsCon > .arrow-left, .arrowsCon > .arrow-right{
    background-position:center center; background-repeat:no-repeat; background-color:transparent;
    background-image: url('img/arrow-left-black.png');
    width:$size_arrow;
    height: $size_arrow;
    position:absolute;
    left:5px;
    top:45%;
    margin-top:- ($size_arrow/2);
    cursor:pointer;
    opacity:0.69;
    z-index:4;
    @include apply_transition($transition-property, $transition-duration, $transition-timing)
  }
  .arrowsCon > .arrow-right{
    background-image: url('img/arrow-right-black.png');
    left:auto;
    right:5px;
    top:45%;
  }

  .arrowsCon > .arrow-left:hover, .arrowsCon > .arrow-right:hover{
    opacity:1;
  }

  .transition-fade .thumbsClip > *{
    opacity: 0;
    visibility: hidden;

  }
  .transition-fade .thumbsClip > *.currItem{
    opacity: 1;
    visibility: visible;
  }

}





.advancedscroller.skin-karma-inset{
  .thumbsClip > *{
    padding:0px;
  }
  $size_arrow: 40px;
  .arrowsCon > .arrow-left, .arrowsCon > .arrow-right{
    background-position:center center; background-repeat:no-repeat; background-color:rgba(0,0,0,0.2);
    background-image: none;

    width:$size_arrow;
    height: $size_arrow;
    position:absolute;
    left:0px;
    top:50%;
    margin-top:- ($size_arrow/2);
    cursor:pointer;
    z-index:4;
    @include apply_transition($transition-property, $transition-duration, $transition-timing)
  }
  .arrowsCon > .arrow-left:before,.arrowsCon > .arrow-right:before{
    position: absolute;
    content: "\f104";
    font-family: FontAwesome, arial;
    font-size: 34px;
    top:50%;
    left:50%;

    color: #FFFFFF;

    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
  }
  .arrowsCon > .arrow-right:before {
    content: "\f105";
     }
  .arrowsCon > .arrow-right{
    left:auto;
    right:0px;
    top:50%;
  }

  .arrowsCon > .arrow-left:hover, .arrowsCon > .arrow-right:hover{
    background-color: #e74c3c;
  }

  .transition-fade .thumbsClip > *{
    opacity: 0;
    visibility: hidden;
  }
  .transition-fade .thumbsClip > *.currItem{
    opacity: 1;
    visibility: visible;
  }

}





.advancedscroller.skin-regen{
   .thumbsClip > *{
        padding:0px;
    }
  $size_arrow: 50px;

  .arrowsCon > .arrow-left, .arrowsCon > .arrow-right{
    background-position:center center; background-repeat:no-repeat; background-color:transparent;
    background-image: url('img/arrow-round-left.png');
    width:$size_arrow;
    height: $size_arrow;
    position:absolute;
    left:15px;
    top:50%;
    margin-top:- ($size_arrow/2);
    cursor:pointer;
    opacity:0.69;
    background-size: cover;
    z-index:4;
    @include apply_transition($transition-property, $transition-duration, $transition-timing)
  }
  .arrowsCon > .arrow-right{
    background-image: url('img/arrow-round-right.png');
    left:auto;
    right:15px;
    top:50%;
  }
  .arrowsCon > .arrow-left:hover, .arrowsCon > .arrow-right:hover{
    opacity:1;
  }


  .bulletsCon{ display:block; position:absolute; width: 100%;
    top:auto; bottom: 10px;
  }


  $transition-property: background;
  $transition-duration: 0.3s;
  $transition-timing: ease-out;
  $bulletsize: 10px;

  .bulletsCon span.bullet{ width:$bulletsize; height:$bulletsize; background-repeat:no-repeat;
    border-radius:50%;
    background-image: none; display:inline-block;
    margin-right:8px;
    background-color: rgba(0,0,0,0.4);
    @include apply_transition($transition-property, $transition-duration, $transition-timing);
  }


  $bulletsize: 14px;
  .bulletsCon span.bullet.active{
    background-color: rgba(0,0,0,0.7);
    width:$bulletsize; height:$bulletsize;
    position: relative;
    top:2px;
  }
}
$color_arrow_1: #e3e3e3;
$color_arrow_2: #383838;
$color_arrow_3: #00a99d;
.advancedscroller.skin-agata{

  .arrowsCon > .arrow-left,  .arrowsCon > .arrow-right{
    position:absolute;
    left:5px;
    top:45%;
  }
  .arrowsCon > .arrow-right{

    left:auto;
    right: 5px;
  }
}

$transition-property: background-color;
$transition-duration: 0.3s;
$transition-timing: ease-out;
$size_arrow: 30px;
.advancedscroller.skin-agata .arrowsCon > .arrow-left, .advancedscroller.skin-agata .arrowsCon > .arrow-right, .arrow-left.skin-agata, .arrow-right.skin-agata{

  background-position:center center; background-repeat:no-repeat;
  background-image: none;
  width:$size_arrow;
  height: $size_arrow;
  margin-top:- ($size_arrow/2);
  border-radius: 3px;
  cursor: pointer;
  background-color: $color_arrow_2;
  opacity: 1;
  @include apply_transition($transition-property, $transition-duration, $transition-timing);

}

.advancedscroller.skin-agata .arrowsCon > .arrow-left:before, .arrow-left.skin-agata:before{

  content: "";
  width: 0;
  height: 0;
  border-top: 6px inset transparent;
  border-bottom: 6px solid transparent;

  border-right:8px solid $color_arrow_1;

  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -5px;
  margin-top: -6px;
}
.advancedscroller.skin-agata .arrowsCon > .arrow-right:before, .arrow-right.skin-agata:before{

  content: "";
  width: 0;
  height: 0;
  border-top: 6px inset transparent;
  border-bottom: 6px solid transparent;

  border-left:8px solid $color_arrow_1;

  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -3px;
  margin-top: -6px;
}


.advancedscroller.skin-agata .arrowsCon > .arrow-left:hover, .arrow-left.skin-agata:hover,.advancedscroller.skin-agata .arrowsCon > .arrow-right:hover, .arrow-right.skin-agata:hover{
  background-color: $color_arrow_3;
}
/* -- END skin-agata */





/* -- skin-agata-inset */

.advancedscroller.skin-agata-inset{

  .thumbsClip > *{
    padding:0px;
  }
  $size_arrow: 40px;
  > .arrowsCon > .arrow-left, .arrowsCon > .arrow-right{
    background-position:center center; background-repeat:no-repeat;
    background-image: url('img/skin-agapa-arrow-left.png');
    width:$size_arrow;
    height: 60px;
    position:absolute;
    left:0px;
    top:45%;
    margin-top:-30px;
    cursor:pointer;
    background-color: rgba(33,33,33,0.3);
    z-index:4;
    border-radius: 0 5px 5px 0;
    @include apply_transition($transition-property, $transition-duration, $transition-timing)
  }
  > .arrowsCon > .arrow-right{
    background-image: url('img/skin-agapa-arrow-right.png');
    left:auto;
    right:0px;
    top:45%;
    border-radius: 5px 0 0 5px;
  }

  > .arrowsCon > .arrow-left:hover, .arrowsCon > .arrow-right:hover{
    background-color: rgba(33,33,33,0.7);
  }

  .transition-fade .thumbsClip > *{
    opacity: 0;
    visibility: hidden;
  }
  .transition-fade .thumbsClip > *.currItem{
    opacity: 1;
    visibility: visible;
  }

  .bulletsCon{
    position: absolute;
    width: 100%;
    bottom: 10px;
    margin:0;
    text-align: center;

    .bullet{
      width: 20px;
      height: 4px;
      border-radius: 3px;
      background-color: #4d4d4d;
      background-image: none;
    }

    .bullet.active{
      background-color: #00a99d;

    }
  }

}



/* -- skin-avanti-inset */

.advancedscroller.skin-avanti-inset, .advancedscroller.skin-bubble-inset{

  .thumbsClip > *{
    padding:0px;
  }
  $size_arrow: 40px;
  > .arrowsCon > .arrow-left, .arrowsCon > .arrow-right{

    background-image: none;
    left:15px;
    top:45%;
    margin-top:-15px;
    opacity: 1;
  }
  > .arrowsCon > .arrow-right{
    background-image: none;
    left:auto;
    right:15px;
    top:45%;
    margin-top:-15px;
    width: auto;
  }
  $transition-property: all;
  $transition-duration: 0.3s;
  $transition-timing: ease-out;
  > .arrowsCon > .arrow-left path, .arrowsCon > .arrow-right path{

    @include apply_transition($transition-property, $transition-duration, $transition-timing)
  }

  > .arrowsCon > .arrow-left:hover #Layer_1 path, .arrowsCon > .arrow-right:hover path{
    fill: #00a99d;
  }

  .transition-fade .thumbsClip > *{
    opacity: 0;
    visibility: hidden;
  }
  .transition-fade .thumbsClip > *.currItem{
    opacity: 1;
    visibility: visible;
  }

  .bulletsCon{
    position: absolute;
    width: 100%;
    bottom: 10px;
    margin:0;
    text-align: center;

    .bullet{
      width: 20px;
      height: 4px;
      border-radius: 3px;
      background-color: #4d4d4d;
      background-image: none;
    }

    .bullet.active{
      background-color: #00a99d;

    }
  }

}


/* -- END skin-avanti-inset */


/* -- skin-qcre-inset */

.advancedscroller.skin-qcre{

  .thumbsClip > *{
    padding:0px;
  }
  $size_arrow: 40px;
  > .arrowsCon > .arrow-left, .arrowsCon > .arrow-right{

    background-image: none;
    left:auto; right:0;
    top:auto; bottom: 0;
    margin-top:-0px;
    background-color: rgba(0,0,0,0.5);

    width: 30px;
    height: 30px;




    $transition-property: background;
    $transition-duration: 0.3s;
    $transition-timing: ease-out;

    @include apply_transition($transition-property, $transition-duration, $transition-timing)

  }
  > .arrowsCon > .arrow-left:before, .arrowsCon > .arrow-right:before{


    content: "\f105";
    font-family: FontAwesome,sans-serif;
    font-size: 30px;
    color: #fff;
    text-align: center;

    position: absolute;
    left: 50%; top: 50%;

    margin-top: -15px;
    margin-left: -5px;

    line-height: 1;
  }
  > .arrowsCon > .arrow-left:before{

    content: "\f104";
    margin-left: - 5px;
  }
  > .arrowsCon > .arrow-left{
    background-image: none;
    left:auto;
    right:30px;
    top:auto; bottom:0;
    margin-top:-0px;
  }

  > .arrowsCon > .arrow-left:hover , .arrowsCon > .arrow-right:hover {
    background-color: #e74c3c;
  }

  .transition-fade .thumbsClip > *{
    opacity: 0;
    visibility: hidden;
  }
  .transition-fade .thumbsClip > *.currItem{
    opacity: 1;
    visibility: visible;
  }

  .bulletsCon{
    position: absolute;
    width: 100%;
    bottom: 10px;
    margin:0;
    text-align: center;

    .bullet{
      width: 20px;
      height: 4px;
      border-radius: 3px;
      background-color: #4d4d4d;
      background-image: none;
    }

    .bullet.active{
      background-color: #00a99d;

    }
  }

}




/* -- skin-qcre-inset */

.advancedscroller.skin-trumpet{

  .thumbsClip > *{
    padding:0px;
  }
  $size_arrow: 40px;
  > .arrowsCon > .arrow-left, .arrowsCon > .arrow-right{

    background-image: none;
    left:auto; right:-15px;
    top:0; bottom: auto;
    margin-top:-0px;
    background-color: rgba(0,0,0,0.5);

    width: 30px;
    height: 100%;

    background-color: rgba(22,22,22,0);



    $transition-property: background;
    $transition-duration: 0.3s;
    $transition-timing: ease-out;

    @include apply_transition($transition-property, $transition-duration, $transition-timing);



    svg{
      transform: translate(-50%,-50%);
      position: absolute;
      top:50%;
      left:50%;

      path{
        fill: #222222;

        $transition-property: fill;
        $transition-duration: 0.3s;
        $transition-timing: ease-out;

        @include apply_transition($transition-property, $transition-duration, $transition-timing);
      }
    }
  }
  > .arrowsCon > .arrow-left:before, .arrowsCon > .arrow-right:before{


  }
  > .arrowsCon > .arrow-left:before{

  }
  > .arrowsCon > .arrow-left{
    background-image: none;
    right:auto;
    top:auto; bottom:0;
    margin-top:-0px;
    left: -15px;
    width: 30px;


  }

  > .arrowsCon > .arrow-left:hover , .arrowsCon > .arrow-right:hover {
    background-color: rgba(22,22,22,1);



    svg{

      path{
        fill: #fff;


      }
    }
  }

  .transition-fade .thumbsClip > *{
    opacity: 0;
    visibility: hidden;
  }
  .transition-fade .thumbsClip > *.currItem{
    opacity: 1;
    visibility: visible;
  }

  .bulletsCon{
    position: absolute;
    width: 100%;
    bottom: 10px;
    margin:0;
    text-align: center;

    .bullet{
      width: 20px;
      height: 4px;
      border-radius: 3px;
      background-color: #4d4d4d;
      background-image: none;
    }

    .bullet.active{
      background-color: #00a99d;

    }
  }

}


.advancedscroller.item-skin-trumpet{

  .item{
    position: relative;
    >.description-wrapper{
      width: 100%;
      height: 100%;
      position: absolute;

      pointer-events: none;

    }

    .description-wrapper--icon-con{
      display: none;
    }
    >.description-wrapper:before{
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;

      top: -100%;

      background-color: rgba(0,0,0,.5);


      $transition-property: top;
      $transition-duration: 0.3s;
      $transition-timing: ease-out;

      @include apply_transition($transition-property, $transition-duration, $transition-timing);

    }

    .description-wrapper--text{
      padding: 0;
      opacity: 0;
      visibility: hidden;

      background-color: transparent;



      right: auto;
      top: 50%;
      bottom: auto;
      left: 50%;

      width: 100%;

      text-align: center;

      color: #FFFFFF;

      transform: translate(-50%, -50%);


      margin-top: 20px;

      font-family: "Lato",sans-serif;
      font-size: 14px;
      font-weight: bold;




      $transition-property: opacity,visibility,margin;
      $transition-duration: 0.3s;
      $transition-timing: ease-out;

      @include apply_transition($transition-property, $transition-duration, $transition-timing);
    }
  }

  .item:hover{

    >.description-wrapper:before{
      top:0;
    }


    .description-wrapper--text{


      opacity: 1;
      visibility: visible;

      margin-top:0;
    }
  }
}
.advancedscroller.item-skin-trumpet.item-padding-30{

  .item{
    >.description-wrapper{
      width: calc(100% - 30px);
      left: 15px;

    }
  }
}


/* -- END skin-qcre-inset */

.advancedscroller.skin-bubble-inset{

  $size_arrow: 44px;
  > .arrowsCon > .arrow-left, .arrowsCon > .arrow-right{

    background-image: none;
    left:50%;
    margin-left: -( $size_arrow / 2) - 5;
    top:auto;
    bottom: 10px;
    margin-top:-15px;
    opacity: 1;
    width: $size_arrow;
    height: $size_arrow;
  }
  > .arrowsCon > .arrow-right{
    background-image: none;
    left:50%;
    margin-left: ($size_arrow / 2) + 5;
    top:auto;
    bottom: 10px;
    margin-top:-15px;
  }


  > .arrowsCon > .arrow-left:hover #Layer_1 path, .arrowsCon > .arrow-right:hover path{
    fill: #fff;
  }
}

.advancedscroller.skin-giza{

  margin-bottom: 10px;
  padding-bottom: 30px;
  $size_arrow: 30px;
  > .arrowsCon > .arrow-left, .arrowsCon > .arrow-right{

    background-image: none;
    left:50%;
    margin-left: - ( $size_arrow ) - 5;
    top:auto;
    bottom: 0px;
    margin-top:-15px;
    opacity: 1;
    width: $size_arrow;
    height: $size_arrow;
  }
  > .arrowsCon > .arrow-right{
    background-image: none;
    left:50%;
    margin-left: 5px;
    top:auto;
    bottom: 0px;
    margin-top:-15px;
  }


  $transition-property: all;
  $transition-duration: 0.3s;
  $transition-timing: ease-out;
  > .arrowsCon > .arrow-left circle, .arrowsCon > .arrow-right circle{

    @include apply_transition($transition-property, $transition-duration, $transition-timing)
  }
  > .arrowsCon > .arrow-left:hover #Layer_2 circle, .arrowsCon > .arrow-right:hover #Layer_2  circle{
    fill: #555555;
  }
  > .arrowsCon > .arrow-left:hover #Layer_4 circle, .arrowsCon > .arrow-right:hover #Layer_4  circle{
    stroke: #555555;
  }

}


.advancedscroller.skin-giza-bullets{


  .bulletsCon{

    margin-top: 15px;

    text-align: center;
    height: auto;

    span.bullet{
      $size_bullet: 14px;
      width: 12px;
      height: 12px;
      background-image: none;
      background-color: transparent;
      border-radius: 50%;
      border: 1px solid #d1b97e;
      margin-right: 4px;
    }
    > span.bullet:last-child{
      margin-right: 0;
    }
    span.bullet.active{
      background-color: #d1b97e;
    }
  }

}

.advancedscroller.skin-nonav{
  .arrowsCon{
    display: none;
  }
}

.advancedscroller.skin-whitefish{
  .arrowsCon{
    display: none;
  }
  .bulletsCon{

    position: absolute;
    width: 100%;
    bottom: 10px;
    margin:0;
    text-align: center;
    height: auto;
    line-height: 1;

    span.bullet{
      width: 8px;
      height: 8px;
      background-image: none;
      background-color: transparent;
      border-radius: 50%;
      border: 1px solid #fff;
      margin-right: 4px;
    }
    > span.bullet:last-child{
      margin-right: 0;
    }
    span.bullet.active{
      background-color: #ffffff;
    }
  }
}

.advancedscroller.skin-whitefish.is-thicker{
  .bulletsCon{

    bottom: 28px;
    span.bullet{
      width: 10px;
      height: 10px;
      background-image: none;
      background-color: transparent;
      border-radius: 50%;
      border: 2px solid #fff;
      margin-right: 4px;
    }
    > span.bullet:last-child{
      margin-right: 0;
    }
    span.bullet.active{
      background-color: #ffffff;
    }
  }
}


.dzsas-second-con{
  position: relative;
  overflow: hidden;


  @include boxsizing();



  padding: 10px 0;

  &:not(.dzspb_layb_one_third){

    width: 100%;
  }

  $transition-property: left;
  $transition-duration: 0.3s;
  $transition-timing: ease-out;
  .dzsas-second-con--clip{
    position: relative;
    @include apply_transition($transition-property, $transition-duration, $transition-timing);

    $transition-property: opacity,visibility;
    $transition-duration: 0.3s;
    $transition-timing: ease-out;
    > *{
      position: absolute;
      top:0;left:0;
      width: 100%;
      opacity: 0;
      visibility: hidden;
      @include apply_transition($transition-property, $transition-duration, $transition-timing);
    }
    > *.active{
      opacity: 1;
      visibility: visible;
    }
  }
}



/* ====== caption styling mami

*/

.advancedscroller{

  .caption{
    position: absolute;
  }

  $transition-property: bottom;
  $transition-duration: 1.2s;
  $transition-timing: ease-out;

  $c_bg: rgba(230,230,230,0.9);
  .caption.skin-underlay{

    bottom:-70%;
    left:0;
    width: 100%;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size:12px;
    font-weight: 300;
    padding: 10px 10px;
    background: $c_bg;
    color: #111;
    @include apply_transition($transition-property, $transition-duration, $transition-timing)
  }

  .item.currItem .caption.skin-underlay{
    bottom: 0;
  }

  $c_bg: rgba(255,255,255,0.9);
  .caption.skin-white{

    top: 0px;
    right: 25px;
    width: auto;
    white-space: nowrap;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size:13px;
    font-weight: 400;
    padding: 10px 10px;
    background: $c_bg;
    color: #111;

    $transition-property: top;
    $transition-duration: 0.5s;
    $transition-timing: ease-out;
    @include apply_transition($transition-property, $transition-duration, $transition-timing)
  }
  .item.currItem .caption.skin-white{
    top: 25px;
  }


  .imagediv{
    display: block;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }


  .caption.fly-in{

    transform: translate3d(0,-30px,0);

    opacity: 0;

    $transition-property: all;
    $transition-duration: 0.3s;
    $transition-timing: ease-out;
    @include apply_transition($transition-property, $transition-duration, $transition-timing)
  }

  .currItem{

      .caption.fly-in{

        transform: translate3d(0,0px,0);
        opacity: 1;
        transition-delay: 0.5s;
      }
    .center-it{
      >.caption.fly-in{

        transform: translate3d(-50%,-50%,0);
      }
    }

  }

  .transitioning-out{
    .caption{
      transition-delay: 0;
    }
  }

}


.skin-vive-heading{
  color: #FFFFFF;
  text-align: center;

  font-size: 14px;

  margin-bottom: 15px;

  font-size: 36px;
  padding:0;

  text-shadow: 0 0 1px rgba(0,0,0,.4);
  font-weight: 400;
}
hr.skin-vive{
  width: 80%;
  height: 1px;
  border:0;
  margin: 15px auto;
  background-color: rgba(255,255,255,0.5);
}



.skin-vive-heading+hr.skin-vive{
  margin-top: 0;
}

.skin-vive-subheading{

  color: #FFFFFF;
  text-align: center;


  margin-bottom: 25px;

  font-size: 18px;
  padding:0;

  font-family: "Open Sans", Arial;
  font-weight: 300;

  line-height: 1.6;

  text-shadow: 0 0 2px rgba(0,0,0,.4)
}

/* ====== misc

*/

$transition-property: background-color, color;
$transition-duration: 0.3s;
$transition-timing: ease-out-quart;
.giza-circle{
  border-radius: 50%;
  border: 4px solid #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;

  width: 100%;
  margin: 0 auto;

  box-shadow: 0 0 0 1px #e2e2e2;


  @include apply_transition($transition-property, $transition-duration, $transition-timing)
}


$color_highlight: #3dbcda;
.btn-skin-vive{
  background-color: $color_highlight;

  padding: 10px 12px;
  border-radius: 5px;

  font-size: 16px;

  color: #dddddd;
  cursor: pointer;

  opacity:1;

  $transition-property: opacity,color,background;
  $transition-duration: 0.3s;
  $transition-timing: ease-out-quart;
  @include apply_transition($transition-property, $transition-duration, $transition-timing)
}

a.btn-skin-vive{
  text-decoration: none;

  display: inline-block;
}

.btn-skin-vive:hover{

  $color_highlight: rgba(61, 188, 217, 0.5);
  background-color: $color_highlight;

  opacity: 0.7;
  color: #FFFFFF;
}

.social-meta-con{

  h4{

    color: inherit;
    float:left;
    margin-top:0;
    margin-bottom: 0;
  }
  .social-circle-con{
    float:right;
    margin-top: -4px;
  }
  h3{
    font-size: 30px;
    color: inherit;
    font-weight: 300;
    margin-top: 10px;
  }
}

.nicetext{
  color: #FFFFFF;
  font-style: italic;
  font-size: 17px;
  font-family: "Lato",arial, serif;
  line-height: 1.7;
}
.social-circle-con{

  position: relative;
  display: inline-block;
  margin-right: 2px;
  width: 24px;
  height: 24px;
  border: 1px solid #FFFFFF;
  border-radius: 50%;

  background-color: rgba(255,255,255,.1);
  > i{
    position: absolute;

    top: 50%;
    left:50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    color: #FFFFFF;

  }
}
.circle-con{
  border: 2px solid #FFFFFF;
  border-radius: 100%;
  width: 110px;
  height: 110px;

  position: relative;


  img{
    position: absolute;
    top:50%; left: 50%;
    display: block;

    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
  }
}





