:root { 
    /* Colours */
    --brand: #23233D;
    --brand_purple: #6247AA;
    --purple_bg: #6C51B4;
    --purple_border: #785DC0;
    --brand_purple_hov: #533B8E;
    --brand_blue_opac: rgba(39, 40, 71, 0.64);
    --brand_yellow: #FFEA82;
    --brand_yellow_hov: #F2DE7B;
    --brand_yellow_2: #FFF0AC;
    --yellow_alt: #FEFCEA;
    --brand_turq: #9CF0E0;
    --off_white: #FEFCED;
    --white: #FFF;
    --white_alt: #F9F9F9;
    --white_hov: #FBF9FF;
    --black: #000;
    --grey: #DDDBDD;
    --grey_alt: #F7F7F7;
    --blue_light: #57576F;
    --blue_alt: #23233D;
    --border_one: #D9D9D9;
    --border_two: #E6E7EA;
    --border_three: #C2C2CA;
    --seperator: #CFCFCF;
    --placeholder: #A8A8B6;
    --button_text: #23233D; /*This is now used for some text also, don't change*/
    --green: #72CE76;
    --green_alt: #8AD68D;
    --peach: #FC9D68;
    --peach_alt: #FDAD81;
    --peach_alt_2: #FEE5E4;
    --peach_alt_3: #FEDECD;
    --red: #D05252;
    --red_alt: #FF876D;
    --grey_alt_2: #535369;
    --grey_alt_3: #9493A2;
    --white_alt_2: #F9F9FB;
    --green_alt_2: #E8F7E8;
    --green_alt_3: #D0EFD2; 
    --bg_background: #F3F3F3;
    --green_alt_4: #D0F08C;
    --green_alt_5: #4D884F;
    --green_dark: #165510;
    --orange: #FAB300;
    --progress: #F2F2F5;
    --box: #E5E1F1;

    /* Helper Variables */

    /* Transitions */
    --ease: 0.3s;
    --big_ease: 0.5s;

    /* Font weights */
    --weight_100: 100;
    --weight_200: 200;
    --weight_300: 300;
    --weight_400: 400;
    --weight_500: 500;
    --weight_600: 600;
    --weight_700: 700;
    --weight_800: 800;
    --weight_900: 900;

    /* Z-index */
    --tier_1: 10;
    --tier_2: 20;
    --tier_3: 30;
    --tier_4: 40;
    --tier_5: 50;
    --tier_6: 60;
    --tier_7: 70;
    --tier_8: 80;
    --tier_9: 90;
    --tier_10: 100;

     /* Variables */
    --body_background_colour: var(--white);


    /* Line-height */
    --line_height: 1.35em;
    --line_height_tight: 1.25;
    --line_height_loose: 1.75;

    /* Body font */
    --body_font: "Rethink Sans", sans-serif;
    --body_line_height: var(--line_height);
    --body_font_weight: var(--weight_400);
    --body_margin: 0 0 24px;
    --body_font_size: 16px;

    /* Headings font */
    --heading_font: "Rethink Sans", sans-serif;
    --h1: 20px;
    --h2: 20px;
    --h3: 24px;
    --h4: 32px;
    --h5: 14px;
    --h6: 18px;
    --heading_font_weight: var(--weight_600);
    --heading_margin: 0 0 18px;

    /* Letter spacing */
    --letter_spacing: 0;

     /* Border radius */

    --border_radius: 8px;
    --border_radius_small: 4px;
    --border_radius_medium: 16px;
    --border_radius_large: 24px;
}