.linhaLateral{
    border: 1px solid #ddd;
    border-left: 4px solid #337ab7;
    border-radius: 5px;
    padding: 10px;
    padding-bottom: 25px;
    background-color: #FFF;
}

.tituloBloco{
    color: #337ab7;
    font-weight: bold;
    margin-bottom: 15px;
}

.marb0{
    margin-bottom: 0px !important;
}

.negrito{
    font-weight: bold;
}

/* tinymce */
.mce-container.mce-menubar.mce-toolbar.mce-first{
    display: none;
}
/* .mce-branding.mce-widget.mce-label.mce-flow-layout-item.mce-last{
    display: none;
} */
.mce-statusbar.mce-container.mce-panel.mce-stack-layout-item.mce-last{
    display: none;
}

.divider{
    clear: both;
    height: 10px;
}

.text-blue{
    color: #337ab7;
    font-size: 13px;
}
.text-gray{
    color: #777;
    font-size: 13px;
}
.text-yellow{
    color: #f0ad4e;
    font-size: 13px;
}
.text-green{
    color: #5cb85c;
    font-size: 13px;
}
.text-white{
    color: #FFF;
    font-size: 13px;
}

.bg-blue{
    background-color: #337ab7;    
}
.bg-gray{
    background-color: #777;    
}
.bg-yellow{
    background-color: #f0ad4e;    
}
.bg-green{
    background-color: #5cb85c;    
}
.bg-red{
    background-color: #d9534f;
}

.badge{
    padding: 5px;
    border-radius: 6px;
    font-size: 11px;
}

.redNotification{
    background-color: #d9534f;
    position: absolute; 
    top: 2px; 
    right: 10px; 
    height: 10px; 
    width: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(217, 83, 79, 0.7);
    }
    70% {
        transform: scale(1.2);
        box-shadow: 0 0 0 10px rgba(217, 83, 79, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(217, 83, 79, 0);
    }
}