#rt-bottom figure {
    display: table-cell;
}

.Cifras-Cooeban {
    font-size: 18px;
    line-height: 20px;
    padding: 6px 0 0;
    text-align: right;
}
    
.Cifras-Cooeban .Guess {
    max-width: 1110px;
    height: 28px;
    overflow: hidden;
    position: relative;
    padding: 0 20px;
}
    
.Cifras-Cooeban .Guess:before {
    background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(left, rgb(240, 196, 0) 0%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to right, rgb(240, 196, 0) 0%,rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 );
    left: 0;
    z-index: 300;
}
}
    
Cifras-Cooeban .Guess:before, .Cifras-Cooeban .Guess:after {
    content: '';
    display: block;
    width: 20px;
    height: 28px;
    position: absolute;
    top: 0;
    bottom: 0;
}
    
.Cifras-Cooeban .Guess:after {
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgb(240, 196, 0) 100%);
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgb(240, 196, 0) 100%);
    background: linear-gradient(to right, rgba(255, 0, 0, 0) 0%,rgb(240, 196, 0) 100%);
    right: 0;
}
    
.Cifras-Cooeban .Guess:before, .Cifras-Cooeban .Guess:after {
    content: '';
    display: block;
    width: 75px;
    height: 30px;
    position: absolute;
    top: 0;
    bottom: 0;
}
    
.Cifras-Cooeban .cifras-boxed {
    width: 2055px;
    height: 180px;
    -webkit-animation: cifrasSlider 15s linear infinite alternate;
    animation: CifrasSlider 15s linear infinite alternate;
}

.Cifras-Cooeban .cifras {
    display: block;
    float: left;
    padding: 4px 10px 4px 0px;
    color: #006a71;
}

.Cifras-Cooeban .cifras b {
    padding-right: 5px;
}

/*ANIMACIÓN*/
@-webkit-keyframes CifrasSlider{
	0%, 1%{
		-webkit-transform: translateX(0px);
		        transform: translateX(0px);
	}
	99%, 100%{
		-webkit-transform: translateX(-700px);
		        transform: translateX(-700px);
	}
}
@keyframes CifrasSlider{
	0%, 1%{
		-webkit-transform: translateX(0px);
		        transform: translateX(0px);
	}
	99%, 100%{
		-webkit-transform: translateX(-700px);
		        transform: translateX(-700px);
	}
}