.blink {
    animation: blink 2s steps(5, start) infinite;
    -webkit-animation: blink 1s steps(5, start) infinite;
}
@keyframes blink {
    to {
        visibility: hidden;
    }
}
@-webkit-keyframes blink {
    to {
        visibility: hidden;
    }
}

.badge-warning2 {
    background-color: #f87307;
    /* color: #ffffff; */
}

/* Fundo do chat (fundo WhatsAPP) */
.direct-chat-messages {
    background: url("./images/chat/WA_bckgnd.jpeg") repeat;
}

/* Fundo das msgs à esquerda (branco) */
.left .direct-chat-text {
    background-color: #ffffff;
    /* background-color: #ffffff !important; */
    border-color: #ffffff;
    color: #000000 !important;
}

/* Triangulos das msgs à esquerda (branco) */
.left .direct-chat-text::after,
.left .direct-chat-text::before {
    border-right-color: #ffffff !important;
}

/* Fundo das msgs à direita (verde) */
.right > .direct-chat-text {
    background-color: #e1ffc7;
    background-color: #e1ffc7 !important;
    border-color: #e1ffc7 !important;
    color: #000000 !important;
}

/* Triangulos das msgs à direita (verde) */
.direct-chat-primary .right > .direct-chat-text::after,
.direct-chat-primary .right > .direct-chat-text::before {
    border-left-color: #e1ffc7 !important;
}

.selected > .direct-chat-text {
    background-color: #a1f1c7 !important;
    color: #a8a9a8 !important;
}

.btn-group > .btn:not(:first-child) {
    margin-left: -4px;
}

/* Hide short text by default (resolution > 1200px) */
.short-text {
    display: none;
}

/* When resolution <= 1200px, hide full text and show short text */
@media (max-width: 1200px) {
    .short-text {
        display: inline-block;
    }
    .full-text {
        display: none;
    }
}


/* 
ADICIONADO POR JCASTRO

PARA RESOLVER PROBLEMA DO X-EDITABLE

*/


.glyphicon-ok::before {
/* content: "\f00c"; */
content: ""
}

.glyphicon-remove::before {
content: "\f00d";
}

.glyphicon {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-style: normal;

  }
/*   
  .editable-buttons .editable-submit {
    background: url('/images/check-white.png') rgb(11, 131, 179) center no-repeat !important;
    padding: 15px;
    border: none;
    border-radius: 3px !important;
    }
    
    .editable-buttons .editable-cancel {
    margin-left: 7px;
    background: url('clear.png') rgb(83, 85, 83) center no-repeat !important;
     background-image: url('check-white.png') center center no-repeat !important; 
    padding: 15px;
    border: none;
    border-radius: 3px !important;
    } */



.grab {cursor: grab;}