.imagemLeilaoContainer {
    position: relative;
    text-align: center;
    color: white;
}

img.em-pregao-border,
.em-pregao-border {
    border: solid white 1px;
    animation-name: bordaEmPregao;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

.em-pregao-box{
    animation-name: backgroundEmPregao;
    /*animation-name: bordaEmPregao;*/
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

@keyframes imagemEmPregao {
    0%   {
        content: url('../../img/website/icon-leilao-blue.png');
    }
    50%  {
        content: url('../../img/website/icon-leilao-ativo.png');
    }
    100% {
        content: url('../../img/website/icon-leilao-blue.png');
    }
}

@keyframes bordaEmPregao {
    0%   {
        border: solid rgba(0,0,0,0.1) 2px;
        background: initial;
    }
    50%  {
        border: solid #8DC73D 2px;
        /*background: #f3f3f3;*/
    }
    100% {
        border: solid rgba(0,0,0,0.1) 2px;
        background: initial;
    }
}


@keyframes backgroundEmPregao {
    0%   {
        background: #f3f3f3;
    }
    50%  {
        background: inherit;
    }
    100% {
        background: #f3f3f3;
    }
}
.carouseller [class*="car__"]{
    margin-left: 0.20% !important;
}