/**
@Author: Edinson Tique
@Name: QCSlider Pluggin
@Version: 1.4.3
@Year: 2018
@Contact: www.fb.com/QueCodigoPG
@Libraries: jQuery
**/
/*:root {
  --opacity-slide: 0.5;
  --height-slider: 500px;
  --color-slider: #ff3e00;
  --height-responsive: 500px;
}*/

body {
  margin: 0;
  padding: 0;
}

section.slide {
  position: relative;
  float: left;
  display: block;
  width: 100%;
/*  height: var(--height-slider);*/
  height: 650px;

}
@media only screen and (max-width: 766px) {
  section.slide {
    height: 450px;
/*    height: var(--height-responsive);*/
  }
}
section.slide .slider-container {
  width: 100%;
  height: 100%;
  float: left;
  display: block;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  background-color: #FFFFFF;
}
section.slide .slider-container .slider-wrapper {
  margin: 0;
  padding: 0;
  width: 100%;
  z-index: 90;
  height: 100%;
  position: relative;

}
section.slide .slider-container .slider-wrapper li {
  display: none;
}
section.slide .slider-container .slider-wrapper li.slide-current {
  display: block;
}
section.slide .slider-container .slider-wrapper li.video {
  height: 100%;
  position: relative;
  background: #000000;
}
section.slide .slider-container .slider-wrapper li.video .include {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: absolute;
}
section.slide .slider-container .slider-wrapper li.video .include::before {
  top: 0;
  left: 0;
  z-index: 4;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
}
section.slide .slider-container .slider-wrapper li.video .include iframe, section.slide .slider-container .slider-wrapper li.video .include object, section.slide .slider-container .slider-wrapper li.video .include embed, section.slide .slider-container .slider-wrapper li.video .include video {
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
}
section.slide .slider-container .slider-wrapper li img {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.slide .slider-container .slider-wrapper li .capa {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 92;
  height: 100%;
  display: block;
  position: absolute;
/*  background: rgba(0, 0, 0, 0.1);*/
}
section.slide .slider-container .drt-control {
  top: 40%;
  z-index: 90;
  color: white;
  padding: 30px;
  cursor: pointer;
  font-size: 22px;
  position: absolute;
  opacity: .1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 766px) {
  section.slide .slider-container .drt-control {
    padding: 20px;
    font-size: 20px;
  }
}
section.slide .slider-container .drt-control:hover {
  color: #bf1111;
  opacity: 1;
/*  background: black;*/
}
section.slide .slider-container .drt-control.control-left {
  left: -20px;
/*  border-radius: 0px 50px 50px 0px;*/
  border-radius: 0px 4px 4px 0px;
}
section.slide .slider-container .drt-control.control-right {
  right: -20px;
/*  border-radius: 50px 0 0 50px;*/
  border-radius: 4px 0 0 4px;
}
section.slide .slider-container .slider-controls {
  z-index: 90;
  width: 100%;
  bottom: 0px;
  padding: 5px;
  text-align: center;
  margin-bottom: 0px;
  position: absolute;
  padding-bottom: 15px;
}
@media only screen and (max-width: 766px) {
  section.slide .slider-container .slider-controls {
/*    background: rgb(0, 0, 0);*/
  }
}
section.slide .slider-container .slider-controls li {
  zoom: 1;
  width: 25px;
  height: 8px;
  margin: 0 6px;
  cursor: pointer;
  *display: inline;
  background: #DA4453;
  text-indent: -9999px;
  display: inline-block;
  background: rgba(65, 65, 65, 0.1);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);

  border-radius: 4px;
  transition: all ease-in-out .3s;
}
@media only screen and (max-width: 766px) {
  section.slide .slider-container .slider-controls li {
    width: calc(22% - 40px);
    border-radius: 2px;
  }
}
section.slide .slider-container .slider-controls li.active {
  background: rgba(65, 65, 65, .3);
}
section.slide .slider-container .tempo-bar {
  position: absolute;
  bottom: 0px;
  height: 2px;
  background: #bf1111;
/*  background: rgba(65,65, 65, .2);*/
/*  background: lime;*/
  width: 0%;
  z-index: 91;
  display: block;
  float: left;
}
