﻿:root
{
    --theme-blue: #00318f;
    --theme-blue-rgb: 0,49,143;
    --theme-orange: #ff751f;
    --theme-orange-rgb: 255,117,31;
}

/*====================== COLOR ====================*/
.text-blue
{
    color: var(--theme-blue) !important;
}
.text-orange
{
    color: var(--theme-orange) !important;
}

/*====================== BACKGROUND ===============*/
.bg-blue
{
    background: var(--theme-blue) !important;
}
.bg-orange
{
    background: var(--theme-orange) !important;
}

/*====================== BUTTONS ===================*/
.theme-btn-blue
{
    background: var(--theme-blue);
    border-color: var(--theme-blue);
}
.theme-btn-orange
{
    background: var(--theme-orange);
    border-color: var(--theme-orange);
}

/*====================== TEXTS ===================*/
.title-theme
{
    color: var(--theme-blue);
}