@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700);
*{
    font-family: 'Lato', 'san-serif';
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.center-abs{
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
   
}
.charts{
    display: flex;
    flex-wrap: nowrap;
    
}
.chart {
    position: relative;
    width: 25%;
    height: 100px;
}

.chart h3 {
    color: #e55b26;     
    bottom: 0;
    text-align: center;
    width: 100%;
    text-shadow: 1px 1px 1px #000;
    position:absolute;
    top:70px;
}
.chart svg {
    z-index: 2;
}

.circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    z-index: 1;
    border: 8px #E55B26 solid;
}

span.text {
    z-index: 3;
    text-align: center;
    width: 100%;
    font-size: 1em;
    font-weight: 700;
    color: #E55B26;
}

.outer {
    fill: transparent;
    stroke: #fff;
    stroke-width: 8;
    /* 2 * RadioCircle* Pi = stroke-dasharray */
    /* 2 * 70 * 3.1415 = 439.81 */
    stroke-dasharray: 188; /* set in js file */
    transform: rotate(270deg) translate(-150px, 0);
}

#countdown-content {
    text-align: center;
    font-size: 2em;
    color: #E55B26;
    font-weight: 700;
    width: 100%;
   
}
#whatsapp {
   position: fixed;
   bottom: 20px;
   right:20px;
  z-index:99999
}


path {
   fill: #fff;
}

#kiko-slider {
    font-family: 'Lato', 'san-serif';
    margin: 0;
    background-color: white;
    max-width: 800px;
    width: 100%;
    padding: 0px;
    box-sizing: border-box;
}

#kiko-slider>ul,
li {
    padding: 0px;
    margin: 0;
    list-style: none;
}

#kiko-slider>ul.slider {
    position: relative;
    max-width: 800px;
    width: 100%;
    height: 400px;
}

#kiko-slider>ul.slider h1 {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 0px;
    left: 50%;
    top: 100px;
    transform: translate(-50%, -50%);
}

#kiko-slider>ul.slider li {
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0;
    width: inherit;
    height: inherit;
    transition: opacity .5s;
    background: #fff;
}

#kiko-slider>ul.slider li img {
    width: 100%;
    height: 400px;
    object-fit: flex;
}

#kiko-slider>ul.slider li:first-child {
    opacity: 1;
    /*Mostramos el primer <li>*/
}

#kiko-slider>ul.slider li:target {
    opacity: 1;
    /*Mostramos el <li> del enlace que pulsemos*/
}

#kiko-slider>.menu {
    text-align: center;
    margin: 20px;
    
}

#kiko-slider>.menu li {
    display: inline-block;
    text-align: center;
}

#kiko-slider>.menu li a {
    position: inline-block;
    color: white;
    text-decoration: none;
    background-color: #E55B26;
    padding: 0px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    border-radius: 100%;
}

#kiko-slider>.menu2 {
    text-align: center;
    margin: 20px;
    
}

#kiko-slider>.menu2 li {
    display: inline-block;
    text-align: center;
}

#kiko-slider>.menu2 li a {
  position: absolute;
  height: 100%;
  width: 1em;
  align-items: center;
  justify-content: center;
  display: none;
  user-select: none;
  color: #E55B26;
  font-size:50px;
}

h1 {
    text-align: center;
}

#carrusel-caja {
    -moz-animation: automatizacion 15s infinite linear;
    -o-animation: automatizacion 15s infinite linear;
    -webkit-animation: automatizacion 15s infinite linear;
    animation: automatizacion 15s infinite linear;

    -webkit-transition: all 0.75s ease;
    -moz-transition: all 0.75s ease;
    -ms-transition: all 0.75s ease;
    -o-transition: all 0.75s ease;
    transition: all 0.75s ease;

    height: 400px;
    width: 500%;
}

#carrusel-contenido {
    margin: 0 auto;
    overflow: hidden;
    text-align: left;
}

.imagenes{
    height: 400px;
    width: 100%;
}

.carrusel-elemento {
    float: left;
    width: 20%;
}

@-moz-keyframes automatizacion {
    0% {
    margin-left: 0;
    }

    20% {
        margin-left: 0;
    }

    25% {
        margin-left: -100%;
    }

    45% {
        margin-left: -100%;
    }

    50% {
        margin-left: -200%;
    }

    70% {
        margin-left: -200%;
    }

    75% {
        margin-left: -300%;
    }
    
    99% {
        margin-left: -300%;
    }
    
    100% {
        margin-left: 0;
    }
}

@-webkit-keyframes automatizacion {
    0% {
        margin-left: 0;
    }

    20% {
        margin-left: 0;
    }

    21% {
        margin-left: -100%;
    }

    35% {
        margin-left: -100%;
    }

    40% {
        margin-left: -200%;
    }

    50% {
        margin-left: -200%;
    }

    55% {
        margin-left: -300%;
    }
    
    65% {
        margin-left: -300%;
    }
    
    70% {
        margin-left: -400%;
    }
    
    80% {
        margin-left: -400%;
    }
    
    100% {
        margin-left: 0;
    }
    
}

@keyframes automatizacion {
     0% {
        margin-left: 0;
    }

    20% {
        margin-left: 0;
    }

    21% {
        margin-left: -100%;
    }

    35% {
        margin-left: -100%;
    }

    40% {
        margin-left: -200%;
    }

    50% {
        margin-left: -200%;
    }

    55% {
        margin-left: -300%;
    }
    
    65% {
        margin-left: -300%;
    }
    
    70% {
        margin-left: -400%;
    }
    
    80% {
        margin-left: -400%;
    }
    
    100% {
        margin-left: 0;
    }
    
}

