/*!
 * Template Name : cover-flow-10
 */

/**********************/
/* Cover Flow 10
/* Main Carousel Style
/**********************/

/* 1 - Background color of carousel */
.cover-flow-10.sz-slider {
  background: transparent !important;
  -webkit-font-smoothing: antialiased !important;
}
/* 2 - Background Images Position */
.cover-flow-10.sz-slider[data-type=slider]:not([data-background=image]) > .carousel-inner > .carousel-item {
  height: 80% !important;
  background-position: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
/* 2 - Background Images Position */
.cover-flow-10.sz-slider[data-type=slider]:not([data-background=image]) > .carousel-inner {
  padding: 40px 0 0 0 !important;
}
/* 3 - Background images wrapper color */
.cover-flow-10.sz-slider .carousel-item .sz-wrapper::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  position: absolute;
  background: transparent;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
/* 4 - Background images wrapper color change on active */
.cover-flow-10.sz-slider .carousel-item.active .sz-wrapper::before {
  background: rgba(0,0,0,.4);
}

/********************/
/* Cover Flow 10
/* Layer Settings
/********************/

/* 1 - Text - wrapper */
.cover-flow-10-layer {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 75%;
  margin: auto;
  height: 140px;
  display: block;
  line-height: 1;
  position: absolute;
  text-align: center;
}
/* 2 - Container */
.cover-flow-10-layer > div {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: block;
}
/* 3 - Play Button - center - wrapper */
.cover-flow-10-layer > div > div {
  margin: auto;
  width: 100px;
  height: 80px;
  position: relative;
  padding: 8px 0 0 0;
}
/* 4 - Play Button - link */
.cover-flow-10-layer > div > div > a {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  color: #fff;
  margin: auto;
  width: 60px;
  height: 60px;
  display: block;
  text-align: center;
  position: relative;
  background: rgba(34,181,230,1);
  text-decoration: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}
/* 5 - Play Button - icon */
.cover-flow-10-layer > div > div > a > i {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 9px;
  margin: auto;
  height: 17px;
  display: block;
  font-size: 16px;
  position: absolute;
}
/* 6 - Play Button - border */
.cover-flow-10-layer > div > div > a::before {
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  height: 100%;
  position: absolute;
  background: rgba(34,181,230,1);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  animation: glowingBr 2s infinite linear;
  -webkit-animation: glowingBr 2s infinite linear;
}
/* 7 - Text - ( We are a creative studio for better experience. ) */
.cover-flow-10-layer > div > span {
  color: #fff;
  display: block;
  font-size: 23px;
  font-weight: 700;
  margin-top: 10px;
  text-align: center;
  letter-spacing: .2px;
  font-family: 'Barlow Condensed', sans-serif;
}

/******************/
/* Responsiveness */
/******************/

/*----- When the screen size gets = 576px and < 768px -----*/
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Text - wrapper */
  .cover-flow-10-layer {
    width: 80%;
    height: 168px;
  }
  /* Text - ( We are a creative studio for better experience. ) */
  .cover-flow-10-layer > div > span {
    font-size: 18px;
  }
}

/*----- When the screen size gets <= 575.98px -----*/
@media (max-width: 575.98px) {
  /* Play Button - center - wrapper */
  .cover-flow-10-layer > div > div {
    width: 100%;
    height: 62px;
    padding: 8px 0 0 0;
  }
  /* Play Button - link */
  .cover-flow-10-layer > div > div > a {
    width: 40px;
    height: 40px;
  }
  /* Play Button - icon */
  .cover-flow-10-layer > div > div > a > i {
    width: 6px;
    height: 11px;
    font-size: 12px;
  }
  /* Text - wrapper */
  .cover-flow-10-layer {
    width: 80%;
    height: 136px;
  }
  /* Text - ( We are a creative studio for better experience. ) */
  .cover-flow-10-layer > div > span {
    font-size: 12px;
  }
}

/*********************/
/* Cover Flow 10
/* Indicators Buttons
/*********************/

/* 1 - Indicators - wrapper */
.sz-slider[data-type=slider][data-ind-direction=x] .cover-flow-10-indicators.carousel-indicators {
  padding: 0;
  width: 112px;
  height: 19px;
  margin: 0 auto 20px auto;
}
/* 2 - Indicators - children */
.sz-slider[data-type=slider] .cover-flow-10-indicators.carousel-indicators > li {
  padding: 0;
  margin: 4px;
  width: 10px;
  height: 10px;
  border: none;
  line-height: 10px;
  background: #ffffff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  box-shadow: 0 0 0 2px #ffffff;
  -webkit-box-shadow: 0 0 0 2px #ffffff;
  transition: background .2s ease, border .2s ease, box-shadow .2s ease;
  -webkit-transition: background .2s ease, border .2s ease, -webkit-box-shadow .2s ease;
}
/* 3 - Indicator - active - child */
.sz-slider[data-type=slider] .cover-flow-10-indicators.carousel-indicators > li.active {
  border: none;
  background: transparent;
  box-shadow: 0 0 0 2px #22b5e6;
  -webkit-box-shadow: 0 0 0 2px #22b5e6;
}
/* 4 - Indicators - inside circle */
.sz-slider[data-type=slider] .cover-flow-10-indicators.carousel-indicators > li::after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  background: #ffffff;
  transform: scale(.7);
  -webkit-transform: scale(.7);
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
/* 5 - Indicator - active - inside circle */
.sz-slider[data-type=slider] .cover-flow-10-indicators.carousel-indicators > li.active::after {
  background: #22b5e6;
}

/******************/
/* Responsiveness */
/******************/

/*----- When the screen size gets = 273px and < 576px -----*/
@media (min-width: 273px) and (max-width: 575.98px) {
  /* Indicators - wrapper */
  .sz-slider[data-type=slider][data-ind-direction=x] .cover-flow-10-indicators.carousel-indicators {
    display: none;
  }
}

/*----- When the screen size gets <= 272px -----*/
@media (max-width: 272.98px) {
  /* Indicators - wrapper */
  .sz-slider[data-type=slider][data-ind-direction=x] .cover-flow-10-indicators.carousel-indicators {
    display: none;
  }
}

/**************************/
/* Cover Flow 10
/* Left And Right Buttons
/**************************/

/* 1 - Buttons */
.cover-flow-10-btn.sz-slider .carousel-control-btn {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 15;
  width: 40px;
  height: 40px;
  font-size: 0;
  color: #ffffff;
  background: #6c757d;
  text-decoration: none;
  border-radius: 33px;
  -webkit-border-radius: 33px;
  transition: color .2s ease, background .2s ease;
  -webkit-transition: color .2s ease, background .2s ease;
}
.cover-flow-10-btn.sz-slider:hover .cover-flow-10-indicators.carousel-indicators {
    display: block;
  }
.cover-flow-10-btn.sz-slider:hover .carousel-control-btn  {
  opacity: 1;
  
}
/* 2 - Prev - Button */
.cover-flow-10-btn.sz-slider .carousel-control-btn.carousel-control-prev {
  margin: auto auto auto 25px;
}
/* 3 - Next - Button */
.cover-flow-10-btn.sz-slider .carousel-control-btn.carousel-control-next {
  margin: auto 25px auto auto;
}
/* 4 - Hover */
.cover-flow-10-btn.sz-slider .carousel-control-btn:hover {
  color: #fff;
  background: #0b3c4c;
}
/* 5 - Icons */
.cover-flow-10-btn.sz-slider .carousel-control-btn > i {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 16px;
  height: 14px;
  margin: auto;
  color: #ffffff;
  font-size: 14px;
  position: absolute;
  display: inline-block;
  transition: color .2s ease;
  -webkit-transition: color .2s ease;
}
/* 6 - Icons - hover */
.cover-flow-10-btn.sz-slider .carousel-control-btn:hover > i {
  color: #fff;
}

/******************/
/* Responsiveness */
/******************/

/*----- When the screen size gets = 576px and < 768px -----*/
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Prev - Button */
  .cover-flow-10-btn.sz-slider .carousel-control-btn.carousel-control-prev {
    margin: auto auto auto 15px;
  }
  /* Next - Button */
  .cover-flow-10-btn.sz-slider .carousel-control-btn.carousel-control-next {
    margin: auto 15px auto auto;
  }
}

/*----- When the screen size gets = 273px and < 576px -----*/
@media (min-width: 273px) and (max-width: 575.98px) {
  /* Buttons */
  .cover-flow-10-btn.sz-slider .carousel-control-btn {
    display: none;
  }
}

/*----- When the screen size gets <= 272px -----*/
@media (max-width: 272.98px) {
  /* Buttons */
  .cover-flow-10-btn.sz-slider .carousel-control-btn {
    display: none;
  }
}

/*********************/
/* Cover Flow 10
/* Indicators Buttons
/*********************/

/* 1 - Indicators - wrapper */
.sz-slider[data-type=carousel][data-ind-direction=x] .cover-flow-10-indicators.carousel-indicators {
  padding: 0;
  width: 180px;
  height: 19px;
  margin: 0 auto 20px auto;
}
/* 2 - Indicators - children */
.sz-slider[data-type=carousel] .cover-flow-10-indicators.carousel-indicators > li {
  padding: 0;
  margin: 4px;
  width: 10px;
  height: 10px;
  border: none;
  line-height: 10px;
  background: #ffffff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  box-shadow: 0 0 0 2px #ffffff;
  -webkit-box-shadow: 0 0 0 2px #ffffff;
  transition: background .2s ease, border .2s ease, box-shadow .2s ease;
  -webkit-transition: background .2s ease, border .2s ease, -webkit-box-shadow .2s ease;
}
/* 3 - Indicator - active - child */
.sz-slider[data-type=carousel] .cover-flow-10-indicators.carousel-indicators > li.active {
  border: none;
  background: transparent;
  box-shadow: 0 0 0 2px #6c757d;
  -webkit-box-shadow: 0 0 0 2px #6c757d;
}
/* 4 - Indicators - inside circle */
.sz-slider[data-type=carousel] .cover-flow-10-indicators.carousel-indicators > li::after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  background: #ffffff;
  transform: scale(.7);
  -webkit-transform: scale(.7);
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
/* 5 - Indicator - active - inside circle */
.sz-slider[data-type=carousel] .cover-flow-10-indicators.carousel-indicators > li.active::after {
  background: #fff;
}

/******************/
/* Responsiveness */
/******************/

/*----- When the screen size gets = 273px and < 576px -----*/
@media (min-width: 273px) and (max-width: 575.98px) {
  /* Indicators - wrapper */
  .sz-slider[data-type=carousel][data-ind-direction=x] .cover-flow-10-indicators.carousel-indicators {
    display: none;
  }
  .sz-slider[data-type=carousel][data-ind-direction=x]:hover .cover-flow-10-indicators.carousel-indicators {
    display: block;
  }
}

/*----- When the screen size gets <= 272px -----*/
@media (max-width: 272.98px) {
  /* Indicators - wrapper */
  .sz-slider[data-type=carousel][data-ind-direction=x] .cover-flow-10-indicators.carousel-indicators {
    display: none;
  }
	.sz-slider[data-type=carousel][data-ind-direction=x]:hover .cover-flow-10-indicators.carousel-indicators {
    display: block;
  }  
}