/* Theme Color CSS  */

:root {
    /* --theme_primary: #0077C0; */
    --theme_primary: #b71f25;
    --theme_secondary: #b29e44;
    --theme_dark: #000134;
}

.theme_color {
    color: var(--theme_primary);
}

.theme_bg {
    background-color: var(--theme_primary);
}

.theme_bg_border {
    border: 1px solid var(--theme_primary);
}

.theme_color_secondary {
    color: var(--theme_secondary);
}

.theme_bg_secondary {
    background-color: var(--theme_secondary);
}
