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

/**********************/
/* Cover Flow 11
/* Main Carousel Style
/**********************/

/* 1 - Background color of carousel */
.cover-flow-11.sz-slider {
  background: #fff;
  -webkit-font-smoothing: antialiased !important;
}
/* 2 - Background Images Position */
.cover-flow-11.sz-slider[data-type=slider]:not([data-background=image]) > .carousel-inner > .carousel-item {
  height: 80% !important;
  background-position: center;
}
/* 3 - Slides - Wrapper */
.cover-flow-11.sz-slider[data-type=slider]:not([data-background=image]) > .carousel-inner {
  padding: 40px 0 0 0 !important;
}

/********************/
/* Cover Flow 11
/* Layer Settings
/********************/

/* 1 - Text - wrapper */
.cover-flow-11-layer {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  margin: auto;
  height: 100%;
  display: block;
  position: absolute;
}
/* 2 - Container */
.cover-flow-11-layer > div {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  font-size: 0;
  width: 227px;
  height: 90px;
  line-height: 1;
  display: block;
  text-align: left;
  position: absolute;
  background: rgba(0,0,0,.8);
  margin: auto auto 40px 40px;
  padding: 18px 50px 20px 23px;
}
/* 3 - Link */
.cover-flow-11-layer > div > a {
  display: block;
  text-decoration: none;
}
/* 4 - Heading - Tags */
.cover-flow-11-layer > div > a > span {
  display: block;
  letter-spacing: .1px;
  font-family: 'Barlow', sans-serif;
}
/* 5 - Heading - ( Creative ) */
.cover-flow-11-layer > div > a > span:nth-child(1) {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
}
/* 6 - Tags - ( Industrial, Creative, Ideas ) */
.cover-flow-11-layer > div > a > span:nth-child(2) {
  color: #d1d1d1;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

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

/*----- When the screen size gets = 768px and < 992px -----*/
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Container */
  .cover-flow-11-layer > div {
    width: 196px;
    margin: auto auto 40px 20px;
    padding: 18px 25px 20px 23px;
  }
}

/*----- When the screen size gets = 576px and < 768px -----*/
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Container */
  .cover-flow-11-layer > div {
    width: 145px;
    height: 65px;
    padding: 10px;
    margin: auto auto 40px 18px;
  }
  /* Heading - ( Creative ) */
  .cover-flow-11-layer > div > a > span:nth-child(1) {
    font-size: 28px;
  }
  /* Tags - ( Industrial, Creative, Ideas ) */
  .cover-flow-11-layer > div > a > span:nth-child(2) {
    font-size: 9px;
    margin-top: 5px;
  }
}

/*----- When the screen size gets <= 575.98px -----*/
@media (max-width: 575.98px) {
  /* Container */
  .cover-flow-11-layer > div {
    width: 90%;
    height: 50px;
    padding: 2px;
	text-align: center;
    margin: auto auto 40px auto;
  }
  /* Heading - ( Creative ) */
  .cover-flow-11-layer > div > a > span:nth-child(1) {
    font-size: 15px;
  }
  /* Tags - ( Industrial, Creative, Ideas ) */
  .cover-flow-11-layer > div > a > span:nth-child(2) {
    font-size: 8px;
    margin-top: 3px;
  }
}

/*********************/
/* Cover Flow 11
/* Indicators Buttons
/*********************/

/* 1 - Indicators - wrapper */
.sz-slider[data-type=slider][data-ind-direction=x] .cover-flow-11-indicators.carousel-indicators {
  padding: 0;
  width: 112px;
  height: 19px;
  margin: 0 auto 15px auto;
}
/* 2 - Indicators - children */
.sz-slider[data-type=slider] .cover-flow-11-indicators.carousel-indicators > li {
  padding: 0;
  margin: 4px;
  width: 10px;
  height: 10px;
  border: none;
  line-height: 10px;
  background: rgba(0,0,0,.5);
  border-radius: 0;
  -webkit-border-radius: 0;
  box-shadow: 0 0 0 2px rgba(0,0,0,.5);
  -webkit-box-shadow: 0 0 0 2px rgba(0,0,0,.5);
  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-11-indicators.carousel-indicators > li.active {
  border: none;
  background: transparent;
  box-shadow: 0 0 0 2px #286ed1;
  -webkit-box-shadow: 0 0 0 2px #286ed1;
}
/* 4 - Indicators - inside circle */
.sz-slider[data-type=slider] .cover-flow-11-indicators.carousel-indicators > li::after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  background: rgba(0,0,0,.5);
  transform: scale(.7);
  -webkit-transform: scale(.7);
  border-radius: 0;
  -webkit-border-radius: 0;
}
/* 5 - Indicator - active - inside circle */
.sz-slider[data-type=slider] .cover-flow-11-indicators.carousel-indicators > li.active::after {
  background: #286ed1;
}

/******************/
/* 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-11-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-11-indicators.carousel-indicators {
    display: none;
  }
}

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

/* 1 - Buttons */
.cover-flow-11-btn.sz-slider .carousel-control-btn {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  z-index: 15;
  color: #fff;
  width: 40px;
  height: 40px;
  font-size: 0;
  text-decoration: none;
  background: rgba(0,0,0,.5);
  border-radius: 0;
  -webkit-border-radius: 0;
  transition: color .2s ease, background .2s ease;
  -webkit-transition: color .2s ease, background .2s ease;
}
/* 2 - Prev - Button */
.cover-flow-11-btn.sz-slider .carousel-control-btn.carousel-control-prev {
  margin: auto auto auto 25px;
}
/* 3 - Next - Button */
.cover-flow-11-btn.sz-slider .carousel-control-btn.carousel-control-next {
  margin: auto 25px auto auto;
}
/* 4 - Hover */
.cover-flow-11-btn.sz-slider .carousel-control-btn:hover {
  color: #fff;
  background: #286ed1;
}
/* 5 - Icons */
.cover-flow-11-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-11-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-11-btn.sz-slider .carousel-control-btn.carousel-control-prev {
    margin: auto auto auto 15px;
  }
  /* Next - Button */
  .cover-flow-11-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-11-btn.sz-slider .carousel-control-btn {
    display: none;
  }
}

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