 /* PR2023-05-09 SVG icons */

 .svg_icon {
    stroke: currentColor;
    margin: 0px 0px;
    padding: 0;
    stroke-linejoin: round;
    stroke-linecap: round;
    /*stroke-width: 2;*/
}
.svg_fill_lightblue {
    fill: #b8cce4;  /* AWP lichtblauw RGB 184,204,228  */
    /*stroke: #2d4e77; /* HeaderBackColor Default Schema Blauw donkerblauw */
    stroke:  none;
    }
.svg_fill_darkblue {
    fill: #2d4e77; /* HeaderBackColor Default Schema Blauw donkerblauw RGB 45,78,119  */
    stroke:  none;
    }
.svg_fill_orange {
    /*fill: #ffa500;  /* orange RGB 255,165,0  */
    fill: #ff7f00;  /* primary orange RGB 255,127,0  */
    /*stroke: #b27300; /* dark orange RGB 178,115,0  */
    stroke:  none;
    }
.svg_fill_green {
    fill: #00cc00;  /* #00cc00 primary green RGB 0,204,0  */
    stroke:  none;
    }
.svg_fill_red {
    fill: #d81c24;  /* ##8e008e dark red RGB 237,28, 36  */
    stroke:  none;
    }
.svg_fill_purple {
    fill: #8e008e;  /* ##8e008e purple RGB 142,0, 142  */
    stroke:  none;
    }
.svg_fill_gray {
    fill: #989898;  /* #989898 tsa cube gray RGB 152,152,152   */
    stroke:  none;
    }
.svg_fill_darkgray {
    fill: #2d2400;   /* #2d2400 = RGB 45,36,0 Panta Rhei gray;*/
    stroke:  none;
    }
.svg_fill_mediumgray {
    fill: #5b5b5b;   /* #5b5b5b = RGB 91,91,91 medium gray used in tickmark ;*/
    stroke:  none;
    }

.svg_fill_lightgray {
    fill: #a5a5a5;   /* #a5a5a5 = RGB 165,165,165 light medium gray used in inactive ;*/
    stroke:  none;
    }
 .svg_fill_lightgray_tblheader {
    fill: #ececec;;   /* #ececec; = RGB 236,236,236 light gray used in table header .tsa_tbl th  ;*/
    stroke:  none;
    }
.svg_fill_lightlightgray {
    fill: #f5f5f5;   /* #f5f5f5;  /* licht licht licht grijs 245 245 245 */
    stroke:  none;
    }
.svg_fill_lightgray_oddrow {
    fill: #f2f5f8;   /* #f2f5f8;  /* light light bluish grey RGB 242 245 248*/
    stroke:  none;
    }

.svg_fill_black {
    fill: #000000;
    stroke:  none;
    }
.svg_fill_white {
    fill: #ffffff;  /* #ffffff primary white RGB 255,255,255  */
    stroke:  none;
    }
.svg_fill_cell_unchanged_odd {
    fill: #f2f5f8;  /* light light bluish grey */
    stroke:  none;
    }

.svg_fill_tsa_yellow {
    fill: #ffd01c; /* tsa yellow */
    stroke:  none;
    }

.svg_stroke_gray {
    fill: none;
    stroke:  #989898;  /* #989898 tsa cube gray RGB 152,152,152   */
    stroke-width: 2;
    }
.svg_stroke_darkblue {
    fill: none;
    stroke: #2d4e77; /* HeaderBackColor Default Schema Blauw donkerblauw */
    stroke-width: 2;
    }
.svg_stroke_white {
    fill: none;
    stroke: #ffffff;  /* #00cc00 primary white RGB 255,255,255  */
    stroke-width: 2;
    }


