:root {
    /*  Talk to team about 70-20-10  */
    /*--primary: #fff;*/
    /*--secondary: #06548A;*/
    /*--accent: #4581B9;*/

    --primary-color: #1c3f94;
    --primary-orange: #fc8332;
    --secondary-blue: #2aaadf;
    --dark-blue: #001b35;
    --secondary-green: #8dbf3a;
    --secondary-red: #e71e26;
    --secondary-purple: #614c9f;

    /* Default Font Colors */
    --main-text-dk: #494949;
    --alt-text-dk: #707070;
    --main-text-lt: #ffffff;
    --alt-text-lt: #a7cdf1;

    /* Default background color */
    --background-gray: #F1F4F6;

    /* Other Default */
    --box-shadow: 2px 3px 10px rgb(69 75 79 / 50%);
    --box-shadow2: 3px 2px 7px 0 rgb(0 0 0 / 27%);
    --box-shadow3: 3px 2px 7px 0 rgb(0 0 0 / 10%);
    /*--box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);*/
    --border-radius: 5px;
}

:focus {
    outline: transparent solid 2px !important;
}

/************************/
/*      Over-rides      */
/************************/

/*:focus {*/
/*    outline-color: #FF0000 !important;*/
/*    outline-style: solid !important;*/
/*    outline-width: 2px !important;*/
/*}*/

/* Font Family Override */
/*body { font-family: 'Roboto', 'Poppins', 'Open Sans', Arial, sans-serif }*/

h1, h2, h3, h4, h5 {
    font-family: "Times New Roman", Times, serif;
}
p {
    font-family: 'Roboto', Arial, sans-serif;
}

/*a { color: var(--primary-color) }*/

/* Primary button */
/*Note: #field_selection is a class on the admin panel*/
/*.btn-primary:not(#field_selection .btn-primary) {*/
/*    background-color: var(--primary-color);*/
/*    border-color: var(--primary-color);*/
    /*color: ;*/
/*}*/

.btn-primary:hover:not(#field_selection .btn-primary) {

}

.btn-primary:active:focus:not(#field_selection .btn-primary) {

}

.btn-primary:focus:not(#field_selection .btn-primary)  {

}


/* Button Link */
.btn-link:not(#field_selection .btn-link) {
    color: var(--primary-color);
}

.btn-link:hover:not(#field_selection .btn-link) {

}

.btn-link:active:focus:not(#field_selection .btn-link) {

}

.btn-link:focus:not(#field_selection .btn-link)  {

}

/************************/
/*    Utility Classes   */
/************************/

.text-main { color: var(--main-text-dk)}
.text-alt { color: var(--alt-text-dk)}
.text-primary { color: var(--primary-color)}
