﻿
/*
Item Name: jQuery swipe-carousel2 Evolution
Author: Mapalla
Author URI: http://codecanyon.net/user/Mapalla
Version: 1.0
*/

/* _______________________________________________ */

/* CONTAINER */
/* _______________________________________________ */


.swipe-carousel2 {
    margin: 0 auto;
    width: 1114px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* _______________________________________________ */

/* SLIDES */
/* _______________________________________________ */

/* slide container */

.swipe-carousel2 .slides {
  margin : 0;
  padding : 0;
  border : none;
  list-style : none;
  position : relative;
  overflow : visible;
}

/* slide item */

.swipe-carousel2 .slides .slideItem {
    position: absolute;
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: none;
    /* border-radius: 45px; */
}
.swipe-carousel2 .slides .slideItem:after {
    content: "";
    /* background-image: url(../img/iphone-bg.png); */
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    /* z-index: 99999999999; */
    background-size: cover;
}

.swipe-carousel2 .slides .slideItem a {
  display: block;
  text-decoration : none;
  margin : 0;
  padding : 0;
  border : none;
  outline : none;
}

.swipe-carousel2 .slides .slideItem img {
  margin : 0;
  padding : 0;
  border : none;
  width : 100%;
  height : 100%;
}

/* _______________________________________________ */

/* DIRECTION BUTTON */
/* _______________________________________________ */


.swipe-carousel2 .nextButton {
  position : absolute;
  right : 10px;
  top : 133px;
  width : 35px;
  height : 35px;
  background : url("../images/next_button.png") no-repeat center;
  cursor : pointer;
  z-index : 9999;
}

.swipe-carousel2 .prevButton {
  position : absolute;
  left : 10px;
  top : 133px;
  width : 35px;
  height: 35px;
  background : url("../images/prev_button.png");
  cursor : pointer;
  z-index : 9999;
}

/* _______________________________________________ */

/* NAVIGATION BUTTON */
/* _______________________________________________ */

/* buttons container */

.swipe-carousel2 .buttonNav {
  position : relative;
  margin : 0 auto;
  z-index : 999;
}

/* numbers */

.swipe-carousel2 .buttonNav .numbers {
  position : relative;
  float : left;
  margin : 5px;
  color : #828282;
  cursor : pointer;
  font-weight : bold;
  text-decoration : none;
  font-size : 1em;
  font-family : Arial, Verdana;
}

.swipe-carousel2 .buttonNav .numbers:hover {
  color: #000;
  text-decoration : underline;
}

.swipe-carousel2 .buttonNav .numberActive {
  background : none;
  color : #000;
  cursor : default;
}

/* bullets */

.swipe-carousel2 .buttonNav .bullet {
  position : relative;
  float : left;
  width : 16px;
  height : 16px;
  background : url(../images/Bullet-White.png) no-repeat center;
  margin : 5px;
  float : left;
  cursor : pointer;
}

.swipe-carousel2 .buttonNav .bullet:hover { background : url(../images/Bullet-Black.png) no-repeat center; }

.swipe-carousel2 .buttonNav .bulletActive {
  background : url(../images/Bullet-Black.png) no-repeat center;
  cursor : default;
}

/* ____________________________________________________________ */

/* VIDEO */
/* ____________________________________________________________ */


.swipe-carousel2 .slides .videoOverlay { background : url("../images/video.png") no-repeat center; /* play button */ }

.swipe-carousel2 .slides .spinner { background : #000 url("../images/loading.gif") no-repeat center; /* video preloader */ }

/* _____________________________ *

/* SHADOW */
/* _____________________________ */


.swipe-carousel2 .shadow {
  width : 100%;
  height : 82px;
}

.swipe-carousel2 .shadow .shadowLeft {
  background : url("../images/shadowLeft.png") no-repeat;
  width : 100px;
  height : 82px;
  /* fix png problems in ie */
  -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src=images/shadowLeft.png, sizingmethod=scale)"; /* IE8 */
 filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=images/shadowLeft.png, sizingmethod=scale);   /* IE6 & 7 */
}

.swipe-carousel2 .shadow .shadowMiddle {
  height : 82px;
  background: url("../images/shadowTile.png") repeat-x;
  /* fix png problems in ie */
  -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src=images/shadowTile.png, sizingmethod=scale)"; /* IE8 */
 filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=images/shadowTile.png, sizingmethod=scale);   /* IE6 & 7 */
}

.swipe-carousel2 .shadow .shadowRight {
  width : 100px;
  height : 82px;
  background: url("../images/shadowRight.png") no-repeat;
  /* fix png problems in ie */
  -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src=images/shadowRight.png, sizingmethod=scale)"; /* IE8 */
 filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=images/shadowRight.png, sizingmethod=scale);   /* IE6 & 7 */
}

/* ____________________________________________________________ */

/* REFLECTION GRADIENT */
/* ____________________________________________________________ */

/* gradient color for Opera */

.swipe-carousel2 .gradient { background-image : url(../scripts/gradient.svg); }
