@-webkit-keyframes scroll {
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 9));
            transform: translateX(calc(-250px * 9));
  }
}

@keyframes scroll {
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-250px * 9));
            transform: translateX(calc(-250px * 9));
  }
}
.slider {
  background: white;
  padding-top: 50px;	
  box-shadow: 0 0px 10px -5px rgba(0, 0, 0, 0.0);
  height: 250px;
  margin: auto;
  overflow: hidden;
  position: relative;

}
.slider::before, .slider::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 250px;
  position: absolute;
  width: 100px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg); 
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  -webkit-animation: scroll 28s linear infinite;
          animation: scroll 28s linear infinite;
  display: flex;
  width: calc(250px * 15);
}
.slider .slide {
  height: 100px;
  width: 250px;
}


















/*Estilos flechas para carrousel*/
#main-content {
  float: left;
  width: 900px;
}

#main-content img {
  max-width: 100%;
}


/* MISC */

.clearfix:after {
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  content: '.';
}

.clearfix {
  display: inline-block;
}

* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}


/* #Media Queries
================================================== */


/* Smaller than standard 960 (devices and browsers) */

@media only screen and (max-width: 959px) {}


/* Tablet Portrait size to standard 960 (devices and browsers) */

@media only screen and (min-width: 768px) and (max-width: 959px) {
  #main-content {
    width: 490px;
  }
  #main-content h1:before,
  #main-content h2:before,
  #main-content h3:before,
  #main-content h4:before,
  #main-content h5:before,
  #main-content h6:before {
    padding-right: 0;
    margin-left: 0;
    content: none;
  }
}


/* All Mobile Sizes (devices and browser) */

@media only screen and (max-width: 767px) {
  #main-content h1:before,
  #main-content h2:before,
  #main-content h3:before,
  #main-content h4:before,
  #main-content h5:before,
  #main-content h6:before {
    padding-right: 0;
    margin-left: 0;
    content: none;
  }
}

.carouselTicker__list {
  margin: 10px 0;
  padding: 0;
  list-style-type: none;
  overflow: hidden;
}

.carouselTicker__item {
  margin: 0 0 0 5px;
  float: left;
  border: 4px solid red;
  width: 100px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}

.carouselTicker__loader {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff url("../images/loader.gif") center center no-repeat;
}


/**
 * CSS style for vertical direction**/

.carouselTicker_vertical .carouselTicker__list {
  margin: 0;
}

.carouselTicker_vertical .carouselTicker__item {
  margin: 0 0 5px 0;
  border: 4px solid red;
  width: 100px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}

#carouselTicker .carouselTicker__item {
  width: auto;
  height: auto;
  line-height: normal;
}

.carouselTicker__item img {
  vertical-align: top;
}


/*Nuevo codigo Flechas*/
*{
  padding:0;
  margin:0;
}
#main-content{
  width:100% !important;
}

.con-carrusel{
  position:relative;
  overflow:hidden;
  width:100%;
}
.flecha1 {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index:100;
  background: rgb(255, 255, 255);
  color: rgb(86, 131, 191);
  border: 0px;
  outline: none;
  box-shadow: 5px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.flecha2 {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index:100;
  background: rgb(255, 255, 255);
  color: rgb(86, 131, 191);
  border: 0px;
  outline: none;
  box-shadow: -5px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.flecha1,.flecha2{
  font-size: 24px;
  cursor: pointer;
  transition: all .3s ease;
}
.flecha1:hover,.flecha2:hover{
  background: rgb(86, 131, 191);
  color: rgb(255, 255, 255);
}

