/* MENSAGENS */
.message-error{
    color: red;
}
.message-success{
    color: rgb(6, 177, 72);
}

/* CORES FONTES */
.f-green{
    color: #085508;
}

/* CURSORES */
.c-pointer{
    cursor: pointer;
}
.c-not-allowed{
    cursor: not-allowed;
}
.c-wait{
    cursor: wait;
}
.c-help{
    cursor: help;
}

/* MENUS */
.inactive-menu{
    color: rgb(219, 198, 173);
}

/* Detalhes das páginas. */
.icon-page-help{
    color: rgb(245, 113, 5);
    font-size: 2em;
    cursor: pointer;
}

.title-page{
    font-size: 1.5em;
    font-weight: bold;
}

.base-background-color{
    background-color: rgb(249, 249, 252);
}

.page-background-color{
    background-color:#cecdcd;
}

.menupage-background-color{
    background-color: #b9b9b9;
}

.back-white{
    background-color: rgb(255, 255, 255);
}

[data-title]:hover:after {
    opacity: 1;
    transition: all 1s ease 0.1s;
    visibility: visible;
}
[data-title]:after {
    content: attr(data-title);
    background-color: #00FF00;
    color: #111;
    font-size: 100%;
    position: absolute;
    padding: 1px 5px 2px 5px;
    bottom: -1.6em;
    left: 100%;
    white-space: nowrap;
    box-shadow: 1px 1px 3px #222222;
    opacity: 0;
    border: 1px solid #111111;
    z-index: 99999;
    visibility: hidden;
}
[data-title] {
    position: relative;
}