/*
    Base theme for Stopline
*/
:root {    
    --primary: #3c5d5b;;
    --secondary: #84a8a6;
    --faded: #d2e8e7;
    --menu_bg: #c4c4c7;
    --text-color: #565657;
    --white: #ffffff;
    --off-white: #FAF9F6;

    --body_text: var(--text-color);
    --warning-text: red;
    --active_button: var(--primary);
    --active_button_text: var(--off-white);
    --action_button: var(--secondary);
    --action_button_text: var(--off-white);
    --nav_menu: var(--menu_bg);
    --menu_item: var(--primary);
    --submenu_item: var(--secondary);
    --menu_item_text: var(--off-white);
    --form_field: #aaaaaa;
}

@font-face {
    font-family: 'Poppins-Light';
    src: url("/static/font/Poppins-Light.ttf");
    /* font-weight: lighter; */
}

@font-face {
    font-family: 'Poppins';
    src: url("/static/font/Poppins-Medium.ttf");
    /* font-weight: regular; */
}

@font-face {
    font-family: 'Poppins-Bold';
    src: url("/static/font/Poppins-Bold.ttf");
    /* font-weight: bold; */
}

