/* Opção 1 */
.selo-ebit {
    display: none !important;
}

/* Opção 2 */
[class*="ebit"] {
    display: none !important;
}

/* Opção 3 */
.ebit {
    display: none !important;
}