/**FLASH BOTTOM********************************************************************/

.tipoletra {
  font-size:22px;
  font-weight:bold;
  color:#0093dd;
  
}
.parpadea {
  
  animation-name: parpadeo;
  animation-duration: 1.5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

  -webkit-animation-name:parpadeo;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}

@-moz-keyframes parpadeo{  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

@-webkit-keyframes parpadeo {  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
   100% { opacity: 1.0; }
}

@keyframes parpadeo {  
  0% { opacity: 1.0; }
   50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

/**CARROUSEL ************************************************************************/

@mixin white-gradient {
	background: linear-gradient(to right,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
}



/** Animation **/
@keyframes scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-200px * 22))}
}


/** Styling **/
.slider {
	background: #fcfcfc;
	/**box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);**/
	height: 100px;
	margin: auto;
	overflow:hidden;
	position: relative;
	width: 100%;
	
	&::before,
	&::after {
		@include white-gradient;
		content: "";
		height: 100px;
		position: absolute;
		width: 200px;
		z-index: 2;
	}
	
	&::after {
		right: 0;
		top: 0;
		transform: rotateZ(180deg);
	}

	&::before {
		left: 0;
		top: 0;
	}
}
.slide-track {
		animation: scroll 30s linear infinite;
		display: flex;
		width: calc(200px * 44);
	}
	
.slide {
		height: 100px;
		width: 200px;
        margin-left: 50px;
        
	}
