/**
 * GC Liveticker
 * Module for PrestaShop E-Commerce Software
 *
 * @author    Markus Engel <info@onlineshop-module.de>
 * @copyright Copyright (c) 2020, Onlineshop-Module.de
 * @license   commercial, see licence.txt
 */

.gc_liveticker {
    clear: both;
    overflow: hidden;
    position: relative;
    background-color: #ecd20b;
    color: #232220;
    border: 1px solid #FF9800;
}
.gc_liveticker > .gc_run-box > p {
    margin: 0;
}
.gc_liveticker.run > .gc_run-box{
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;

    -moz-transform:translateX(100%);
    -webkit-transform:translateX(100%); 
    transform:translateX(100%);

    -moz-animation: scroll-left 20s linear infinite;
    -webkit-animation: scroll-left 20s linear infinite;
    animation: scroll-left 20s linear infinite;
} 

/* Move it (define the animation) */
@-moz-keyframes scroll-left {
    0%   { -moz-transform: translateX(100%); }
    100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes scroll-left {
    0%   { -webkit-transform: translateX(100%); }
    100% { -webkit-transform: translateX(-100%); }
}
@keyframes scroll-left {
    0%   { 
        -moz-transform: translateX(100%); 
        -webkit-transform: translateX(100%);
        transform: translateX(100%);        
    }
    100% { 
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%); 
    }
}
