* {
    --border-radius: 5px;
    --font-weight: 700;
}

/* ************************ */
/* *** COLORS OVERWRITE *** */
/* ************************ */

.btn, .btn:hover {
    color: #fff;
    font-weight: 600;
    padding: 9px 18px;
}

.navbar *, .footer *, .bottomMenu * {
    color: rgb(var(--text-secondary)) !important;
}
#globalnav .menuicon-bread-crust {
    background-color: rgb(var(--text-secondary)) !important;
}
.breadcrumb-item.active {
    color: rgba(var(--text-primary), var(--text-opacity)) !important;
}

/* ************************ */
/* * END COLORS OVERWRITE * */
/* ************************ */


.list-group-item {
    background-color: transparent;
    color: rgb(var(--text-tertiary)) !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.7;
    }
}