:root {

    --blue:        #008ED6;
    --green:       #A5C400;

    --white:       #FFFFFF;
    --grey-light:  #F0F0F0;
    --black:       #1A0F0F;

    --soft-shadow: #00000029;
    --dark-shadow: #0000004A;
    --blue-shadow: #055C87;

    --debug:       #FF0000;}

body,html,
.bg-white{
    background: var(--white);
    color:var(--_text-color);

    --_text-color:var(--black);
    --_link-text-color:var(--blue);
    --_button-text-color:var(--black);
    --_button-underline-color:var(--blue);
}

.bg-blue{
    background:var(--blue);
    color:var(--_text-color);
    --_text-color:var(--white);
    --_link-text-color: var(--white);
    --_button-text-color:var(--white);
    --_button-underline-color:var(--green);
}

.bg-green{
    background:var(--green);
    color:var(--_text-color);
    --_text-color: var(--);
    --_text-color: var(--black);
    --_link-text-color: var(--black);
    --_button-text-color: var(--black);
    --_button-underline-color:var(--blue);
}

.bg-grey-light{
    background:var(--grey-light);
    color:var(--_text-color);

    --_text-color:var(--black);
    --_link-text-color:var(--blue);
    --_button-text-color:var(--black);
    --_button-underline-color:var(--blue);
}


.blue               {color:var(--blue)}
.green              {color:var(--green)}

.white,
.ao_txtlink.white   {color:var(--white)}



