/* Custom Root Colors */
/* Primary Colors
These colors come dynamically fron the admin_dashboard app
as a Template*/
:root {
    /* General */
    --site-invalid: #757575;
    --site-bg-white: #f5f7f8;
    --site-element-white: #fff;

    /* Colored Text */
    --site-colored-text: var(--site-primary-color);

    /* Uncolored Text */
    --site-uncolored-text: #f5f6fa;

    /* Black Color */
    --site-friendly-black: #333;

    /* Fixied/Permanent Black */
    --site-friendly-black-fixed: #333;

    /* Anchor */
    --site-hover-anchor: #cfcfcf;

    /* Border */
    --site-border-white: #dee2e6;

    /* Alert Messages */

    /* Info */
    --site-info-bg: #e7f3fe;

    /* Error */
    --site-error-bg: #f8d7da;

    /* Success */
    --site-success-bg: #d1e7dd;

    /* Warning */
    --site-warning-bg: #fff3cd;

    /* Dashboard */
    --site-bg-sidenav: #fff;
}