:root{
  --bnn-trans: 250ms;
}

body #bannerInsumos{
  width: 100%;
  min-width: 200px;
  /*
  max-width: 1500px;
  aspect-ratio: 5/1;
  */

  border-radius: 0 0 5px 5px !important;
  margin: auto;
  /*overflow: hidden;*/

  background: #000a;
}

body #bannerInsumos:focus {
    /* ADVERTENCIA: Esto elimina la indicación visual para usuarios de teclado. */
    outline: none !important;
    /* El !important puede ser necesario para anular estilos predeterminados de Bootstrap o del navegador. */
}

body #bannerInsumos .carousel-item{
  position: relative;
  width: 100%;
  min-width: 200px;
  max-width: 1500px;
  aspect-ratio: 5/1;

  text-align: center;
  overflow: hidden;
}

body #bannerInsumos .carousel-item .enlace{
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  color: #fff;
  font-weight: bold;
  transition: background-color var(--bnn-trans);
}

body #bannerInsumos .carousel-item .enlace:hover{
  background: #0002;
}

body #bannerInsumos .carousel-item img{
  width: 100%;
  height: auto;
}

body #bannerInsumos .sld_btnDireccion{
  width: 20px;
  transition: all var(--bnn-trans);
}

body #bannerInsumos .sld_btnDireccion span{
  opacity: 1 !important;
  border-radius: 3px;
  background: transparent !important;
}

body #bannerInsumos .sld_btnDireccion span i{
  transform: scale(1, 2);
  color: #000d;
  /*
  -webkit-text-stroke: 3pt;
  */
  -webkit-text-stroke: 2pt;
  transition: transform var(--bnn-trans);
}

body #bannerInsumos .sld_btnDireccion:hover{
  background: #0007 !important;
}


body #bannerInsumos .sld_btnDireccion:hover i{
  color: #f00f;
}

/* *** botones de control */
body #bannerInsumos .carousel-indicators{
  margin-bottom: -10px !important;
  align-items: flex-end;
  padding: 0;
}

body #bannerInsumos .sld_btnPos{
  padding: 0;
  border: 0;

  min-width: 15px;
  /*max-width: 30px;*/
  min-height: 5px;


  background: #000;
  opacity: 0.2;
  border-radius: 5px;

  width: calc(4vw/2);
  height: calc(3vw/8);

  transition: all var(--bnn-trans);
}

body #bannerInsumos .sld_btnPos:hover{
  height: 10px;
  border-radius: 10px 10px 0 0;
  background: #b00;
  opacity: 1;

  min-width: 20px;
  width: calc(4vw/2 + 1vw);
}

body #bannerInsumos .sld_btnPos.active{
  min-height: 8px;
  max-height: 15px;
  height: calc(3vw/3);
  border-radius: 15px 15px 0 0 !important;
  background: #0f6e64;

  min-width: 20px;
  width: calc(4vw/2 + 1vw);
  opacity: 0.7;
}

@media screen and (max-width: 600px) {
  body #bannerInsumos .sld_btnDireccion span i{
    transform: scale(1, 2.5);
    -webkit-text-stroke: 0.5pt;
  }

  body #bannerInsumos .carousel-indicators{
    margin-bottom: -8px !important;
  }
}